.hamburger-container {
  width: 30px;
  height: 20px;
  position: relative; }

.steak, .top-bun, .bottom-bun {
  width: 100%;
  margin: 0 auto;
  height: 4px;
  background: green;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  transform: translateX(-50%) translateY(-50%); }

.top-bun {
  top: 0; }

.bottom-bun {
  top: 20px; }

.before {
  animation: before 1s ease forwards; }

.after {
  animation: after 1s ease forwards; }

.before-reverse {
  animation: before_reverse 1s ease forwards; }

.after-reverse {
  animation: after_reverse 1s ease forwards; }

@keyframes before {
  0% {
    transform: translateX(-50%) translateY(-50%); }
  50% {
    transform: translateX(-50%) translateY(8px); }
  100% {
    transform: translateX(-50%) translateY(8px) rotate(-135deg); } }
@keyframes after {
  0% {
    transform: translateX(-50%) translateY(-50%); }
  50% {
    transform: translateX(-50%) translateY(-12px); }
  100% {
    transform: translateX(-50%) translateY(-12px) rotate(135deg); } }
@keyframes before_reverse {
  0% {
    transform: translateX(-50%) translateY(8px) rotate(-135deg); }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(180deg); } }
@keyframes after_reverse {
  0% {
    transform: translateX(-50%) translateY(-12px) rotate(135deg); }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(-180deg); } }
@keyframes open {
  0% {
    width: 0; }
  50% {
    width: 0; }
  100% {
    width: 100%; } }
@keyframes close {
  0% {
    width: 100%; }
  100% {
    width: 0; } }
html {
  font-size: 62.5%;
  box-sizing: border-box; }
  @media screen and (max-width: 500px) {
    html {
      font-size: 55%; } }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(to right, #1A3441, #000); }

p {
  font-size: 1.6rem; }

video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -500; }

.header-container {
  width: 80%;
  height: 10vh;
  margin: 0 auto; }
  @media screen and (max-width: 900px) {
    .header-container {
      height: auto;
      width: 90%; } }

header {
  transition: background-color .5s linear; }

.header-mobile {
  justify-content: space-between;
  width: 100%;
  margin: 2rem auto;
  align-items: center;
  display: none; }
  .header-mobile h2 {
    margin: 0;
    font-size: 3rem;
    color: #fff;
    text-align: center; }
    @media screen and (max-width: 900px) {
      .header-mobile h2 {
        font-size: 2.5rem; } }
  .header-mobile .hamburger-container div {
    background: #2CDFFF; }
  @media screen and (max-width: 900px) {
    .header-mobile {
      display: flex; } }

.header-fixed {
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 999; }
  .header-fixed li a {
    color: #1A3441; }
  .header-fixed .title-mobile {
    color: #1A3441; }

.header-fixed + main {
  padding-top: 2rem; }

nav {
  width: 95%;
  box-sizing: border-box;
  padding: 5px;
  margin-left: 5%;
  display: flex;
  justify-content: space-between;
  transition: all .5s ease-in-out; }
  @media screen and (max-width: 900px) {
    nav {
      flex-direction: column;
      transform: translatey(-200%);
      display: none; } }

nav.nav-mobile-display {
  display: flex;
  margin: 0 auto; }

nav.nav-mobile-transform {
  transform: translate(0); }

li a {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  padding: 10px; }
  @media screen and (max-width: 900px) {
    li a {
      text-align: center; } }

nav .menu {
  display: flex;
  flex-direction: row;
  width: 75%;
  justify-content: space-around;
  padding-right: 10px; }
  @media screen and (max-width: 900px) {
    nav .menu {
      flex-direction: column;
      padding: 0;
      margin: 0 auto; } }

nav ul li {
  list-style: none;
  position: relative; }

.language a {
  text-decoration: none;
  color: #fff;
  height: 50px;
  font-size: 1.4rem;
  transition: all .3s ease-in; }

.language a:hover {
  color: #2CDFFF; }

.language {
  height: 40px;
  display: flex;
  width: 5%;
  justify-content: space-evenly;
  flex-direction: row; }
  @media screen and (max-width: 900px) {
    .language {
      padding: 0;
      margin: 0 auto;
      width: 20%; } }

.language li a {
  padding: 0;
  padding-top: 10px; }

.logo, .logo-mobile {
  background: url(../images/warpcore.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 50px;
  width: 50px; }

.logo-mobile {
  height: 35px; }

.logo {
  top: 2vh;
  position: absolute; }
  @media screen and (max-width: 900px) {
    .logo {
      display: none; } }

.underline {
  width: 0;
  height: 2px;
  background: #2CDFFF; }

.underline-back {
  animation: underlineBack forwards ease-in-out .5s; }

a:hover + .underline {
  animation: underline forwards ease-in-out .5s; }

.language .lg-selected {
  color: #2CDFFF; }

.link-selected {
  width: 100%;
  height: 2px;
  background: #2CDFFF; }

@keyframes underline {
  from {
    width: 0; }
  to {
    width: 100%; } }
@keyframes underlineBack {
  from {
    width: 100%; }
  to {
    width: 0; } }
main .first-screen {
  box-sizing: border-box;
  margin-top: 10vh;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: space-between;
  position: relative; }
  @media screen and (max-width: 900px) {
    main .first-screen {
      flex-direction: column;
      height: auto; } }
  main .first-screen .first-screen-left {
    width: 40%;
    position: relative; }
    @media screen and (max-width: 900px) {
      main .first-screen .first-screen-left {
        width: 100%; } }
    main .first-screen .first-screen-left h1 {
      margin: 0;
      width: 100%;
      color: #fff;
      text-align: center;
      font-size: 4.5rem;
      font-weight: 800;
      z-index: 2;
      position: absolute;
      top: -3.5rem; }
      @media screen and (max-width: 900px) {
        main .first-screen .first-screen-left h1 {
          position: relative;
          width: 95%;
          margin: 0 auto; } }
    main .first-screen .first-screen-left h2 {
      color: #fff;
      font-size: 3rem;
      font-weight: 600;
      margin: 0;
      position: absolute;
      top: 3.5rem;
      left: 20%;
      width: 105%;
      text-align: right; }
      @media screen and (max-width: 900px) {
        main .first-screen .first-screen-left h2 {
          position: static;
          text-align: center;
          width: 95%;
          margin: 0 auto; } }
    main .first-screen .first-screen-left div.home-description {
      font-size: 1.6rem;
      line-height: 2.5rem;
      color: #fff;
      position: absolute;
      top: 15vh;
      left: 27%;
      width: 65%; }
      main .first-screen .first-screen-left div.home-description em {
        color: #2CDFFF; }
      main .first-screen .first-screen-left div.home-description a {
        text-decoration: none;
        color: #2CDFFF; }
      @media screen and (max-width: 900px) {
        main .first-screen .first-screen-left div.home-description {
          position: static;
          text-align: center;
          width: 90%;
          margin: 1rem auto; } }
  main .first-screen .first-screen-right {
    width: 59%;
    position: relative; }
    @media screen and (max-width: 900px) {
      main .first-screen .first-screen-right {
        width: 100%;
        margin-top: 3rem; } }
    main .first-screen .first-screen-right .slider-container {
      overflow: hidden;
      height: 68vh; }
      @media screen and (max-width: 900px) {
        main .first-screen .first-screen-right .slider-container {
          height: auto; } }
    main .first-screen .first-screen-right .slider {
      position: absolute;
      top: -4rem;
      right: 0;
      display: flex;
      width: 1000px;
      max-width: 1000px;
      overflow: hidden; }
      @media screen and (max-width: 900px) {
        main .first-screen .first-screen-right .slider {
          position: static;
          width: 100%; } }
      main .first-screen .first-screen-right .slider img {
        transition: all .5s ease-in-out;
        position: relative;
        z-index: 0;
        width: 100%;
        filter: grayscale(100%); }
        @media screen and (max-width: 900px) {
          main .first-screen .first-screen-right .slider img {
            height: 100%; } }
      main .first-screen .first-screen-right .slider img:hover {
        filter: grayscale(0); }
      main .first-screen .first-screen-right .slider span {
        position: absolute;
        color: #fff;
        top: 77%;
        left: 15%; }
        @media screen and (max-width: 900px) {
          main .first-screen .first-screen-right .slider span {
            left: 3%; } }
    main .first-screen .first-screen-right .slider-bullet {
      width: 35%;
      margin: 2rem auto;
      display: flex;
      justify-content: space-between; }
      main .first-screen .first-screen-right .slider-bullet div {
        margin: 5px;
        width: 7px;
        height: 7px;
        border-radius: 10px;
        border: 2px solid #2CDFFF; }
      main .first-screen .first-screen-right .slider-bullet .selected {
        background: #2CDFFF; }

#services-anchor {
  height: 16vh; }

@media screen and (max-width: 900px) {
  .services {
    margin-top: 5rem; } }
.services h2 {
  color: #2CDFFF;
  width: 30%;
  margin: 0 auto;
  margin-top: 3rem;
  text-align: center;
  font-size: 2.5rem; }
.services .services-categories {
  display: flex;
  width: 40%;
  margin: 0 auto;
  margin-top: 3rem; }
  @media screen and (max-width: 900px) {
    .services .services-categories {
      flex-direction: column;
      width: 90%;
      align-items: center; } }
  .services .services-categories p {
    box-sizing: border-box;
    width: 50%;
    padding: 20px;
    border: solid 1px #2CDFFF;
    color: #2CDFFF;
    text-align: center;
    transition: all 0.2s ease-in; }
    @media screen and (max-width: 900px) {
      .services .services-categories p {
        width: 70%; } }
  .services .services-categories p:hover {
    background: #2CDFFF;
    color: #1A3441;
    cursor: pointer; }
  @media screen and (min-width: 900px) {
    .services .services-categories p:first-child {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .services .services-categories p:last-child {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; } }
  .services .services-categories .category-selected {
    background: #2CDFFF;
    color: #1A3441; }
.services .services-description {
  overflow: hidden;
  width: 60%;
  margin: 0 auto;
  margin-top: 4rem;
  position: relative; }
  @media screen and (max-width: 900px) {
    .services .services-description {
      width: 90%; } }
  .services .services-description .description-icon-people {
    background: url(../images/people.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -2rem;
    left: 0;
    transition: all 0.3s ease-in-out; }
    @media screen and (max-width: 900px) {
      .services .services-description .description-icon-people {
        position: relative;
        margin: 0 auto; } }
  .services .services-description .description-icon-0-responsive {
    left: -100%; }
  .services .services-description .description-icon-solo {
    background: url(../images/solo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 110px;
    height: 110px;
    position: absolute;
    top: 0;
    left: 100%;
    transition: all 0.3s ease-in-out; }
  .services .services-description .description-icon-1-responsive {
    left: 50%;
    transform: translate(-50%); }
  .services .services-description ul {
    width: 45%;
    margin: 0 auto;
    margin-top: 2rem;
    transition: all 0.3s ease-in-out; }
    @media screen and (max-width: 900px) and (min-width: 400px) {
      .services .services-description ul {
        width: 50%;
        padding: 0; } }
    @media screen and (max-width: 400px) {
      .services .services-description ul {
        width: 90%;
        padding: 0; } }
    .services .services-description ul li {
      margin-bottom: 1.5rem;
      font-size: 1.6rem;
      color: #fff; }
  .services .services-description ul.description-solo {
    position: absolute;
    bottom: 100%;
    left: 25.5%; }
.services a {
  display: block;
  margin: 0 auto;
  padding: 2rem;
  width: 15%;
  text-decoration: none;
  background: #1A3441;
  outline: solid 3px #2CDFFF;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-top: 3rem;
  transition: all 0.5s; }
  @media screen and (max-width: 900px) {
    .services a {
      width: 50%; } }
.services a:hover {
  background: #2CDFFF;
  color: #1A3441; }

@keyframes scroll {
  50% {
    margin-left: 50%; }
  62% {
    margin-left: 60%; }
  75% {
    margin-left: 50%; }
  87% {
    margin-left: 60%; }
  100% {
    margin-left: 50%; } }
@keyframes top {
  50% {
    padding-bottom: 10%; }
  62% {
    padding-bottom: 20%; }
  75% {
    padding-bottom: 10%; }
  87% {
    padding-bottom: 20%; }
  100% {
    padding-bottom: 10%; } }
@keyframes scrollLine {
  0% {
    width: 40%; }
  30% {
    width: 0%; }
  60% {
    width: 40%; } }
.clip-img {
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%); }

/**** artiste ****/
.artist {
  margin: 0 auto;
  margin-top: 10rem;
  width: 80%;
  position: relative;
  background: #fff;
  padding: 0 4% 4% 4%;
  box-sizing: border-box;
  color: #1A3441; }
  .artist h2 {
    text-align: center;
    padding-top: 20px;
    font-size: 2.5rem; }
  .artist h4 {
    text-align: center;
    font-size: 2rem; }
  .artist h3.artist-name {
    color: #1A3441;
    font-size: 2rem;
    font-weight: 900; }
    @media screen and (max-width: 900px) {
      .artist h3.artist-name {
        text-align: center; } }
  .artist .logo-social {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding-left: 70%; }
    @media screen and (max-width: 900px) {
      .artist .logo-social {
        padding: 0; } }
    .artist .logo-social a {
      display: block;
      width: 20px;
      height: 20px; }
    .artist .logo-social .social-sc {
      background: url(../images/soundcloud.png);
      background-size: contain;
      background-repeat: no-repeat;
      transition: all .2s ease-in; }
    .artist .logo-social .social-sc:hover {
      background: url(../images/soundcloud-hover.png);
      background-size: contain;
      background-repeat: no-repeat; }
    .artist .logo-social .social-fb {
      background: url(../images/facebook.png);
      background-size: contain;
      background-repeat: no-repeat;
      transition: all .2s ease-in; }
    .artist .logo-social .social-fb:hover {
      background: url(../images/facebook-hover.png);
      background-size: contain;
      background-repeat: no-repeat; }
    .artist .logo-social .social-ln {
      background: url(../images/linkedin.png);
      background-size: contain;
      background-repeat: no-repeat;
      transition: all .2s ease-in; }
    .artist .logo-social .social-ln:hover {
      background: url(../images/linkedin-hover.png);
      background-size: contain;
      background-repeat: no-repeat; }
    .artist .logo-social .social-yt {
      background: url(../images/youtube.png);
      background-size: contain;
      background-repeat: no-repeat;
      transition: all .2s ease-in; }
    .artist .logo-social .social-yt:hover {
      background: url(../images/youtube-hover.png);
      background-size: contain;
      background-repeat: no-repeat; }
  .artist .artist-presentation {
    position: relative;
    width: 70%; }
    @media screen and (max-width: 900px) {
      .artist .artist-presentation {
        width: 90%;
        margin: 0 auto; } }
    .artist .artist-presentation .quote {
      background: url(../images/quote.png);
      background-size: contain;
      background-repeat: no-repeat;
      width: 60px;
      height: 60px;
      position: absolute; }
    .artist .artist-presentation .quote#quote-left {
      top: -3rem;
      left: 0; }
    .artist .artist-presentation .quote#quote-right {
      bottom: 3rem;
      right: 0;
      transform: rotate(180deg); }
  .artist .artist-presentation .logo_social {
    position: absolute;
    right: 8%; }
  .artist p.artist-description {
    width: 100%;
    font-size: 1.5em;
    color: #1A3441;
    box-sizing: border-box;
    padding-left: 2.5rem;
    margin-top: 5rem; }
  .artist .artist-img-border {
    width: 30%;
    overflow: hidden;
    background: #2CDFFF;
    position: absolute;
    z-index: 2;
    top: -5rem;
    left: 80%; }
    @media screen and (max-width: 900px) {
      .artist .artist-img-border {
        position: static;
        margin: 0 auto; } }
  .artist .artist-img-container {
    overflow: hidden;
    width: 97%;
    background: #1A3441;
    margin: 1.5% auto; }
    .artist .artist-img-container div {
      width: 90%;
      margin: 5% auto; }
    .artist .artist-img-container img {
      box-sizing: border-box;
      width: 100%;
      filter: grayscale(100%) brightness(1.5);
      transition: all .3s ease-in; }
    .artist .artist-img-container img:hover {
      filter: grayscale(0) brightness(1.5); }
  .artist .clip-artist-img {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
  .artist p.portfolio-description {
    color: #1A3441;
    font-size: 1.5rem;
    text-align: center; }
  .artist #frame,
  .artist .description {
    margin: 50px auto;
    width: 100%; }
  .artist .playlists .special {
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: 420px; }
  .artist .playlists .ytv-list-header > a {
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite; }
  .artist .playlists .ytv-list-header.ytv-playlist-open > a {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none; }
@-webkit-keyframes pulse {
  0% {
    background: rgba(255, 255, 255, 0); }
  50% {
    background: rgba(255, 255, 255, 0.1); }
  100% {
    background: rgba(255, 255, 255, 0); } }
@-moz-keyframes pulse {
  0% {
    background: rgba(255, 255, 255, 0); }
  50% {
    background: rgba(255, 255, 255, 0.1); }
  100% {
    background: rgba(255, 255, 255, 0); } }
@-o-keyframes pulse {
  0% {
    background: rgba(255, 255, 255, 0); }
  50% {
    background: rgba(255, 255, 255, 0.1); }
  100% {
    background: rgba(255, 255, 255, 0); } }
@keyframes pulse {
  0% {
    background: rgba(255, 255, 255, 0); }
  50% {
    background: rgba(255, 255, 255, 0.1); }
  100% {
    background: rgba(255, 255, 255, 0); } }
  .artist a.yt-sub {
    display: block;
    outline: solid 3px #2CDFFF;
    background: #1A3441;
    color: #fff;
    padding: 2rem;
    width: 18%;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all .3s ease-in-out;
    text-decoration: none;
    text-align: center; }
    @media screen and (max-width: 900px) {
      .artist a.yt-sub {
        width: 50%;
        margin-top: 2rem; } }
  .artist a.yt-sub:hover {
    background: #2CDFFF;
    color: #1A3441; }

.know-more {
  display: block;
  outline: solid 3px #2CDFFF;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 2rem;
  background: #1A3441;
  color: #fff;
  width: 15%;
  text-decoration: none;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out; }
  @media screen and (max-width: 900px) {
    .know-more {
      width: 50%;
      margin: 2rem auto; } }

.know-more:hover {
  background: #2CDFFF;
  color: #1A3441; }

.comments {
  width: 80%;
  margin: 0 auto;
  margin-top: 10rem; }
  .comments h2 {
    color: #2CDFFF;
    font-size: 2.5rem;
    text-align: center; }
  .comments .comments-box {
    width: 100%;
    margin-top: 5rem;
    padding-bottom: 6rem;
    outline: solid 2px #2CDFFF;
    position: relative; }
    .comments .comments-box .comments-fb {
      background: url(../images/facebook.png);
      width: 50px;
      height: 50px;
      background-size: contain;
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translate(-50%); }
    .comments .comments-box a {
      display: block;
      text-decoration: none;
      background: #1A3441;
      color: #fff;
      position: absolute;
      font-size: 1.4rem;
      font-weight: 600;
      bottom: -2.8rem;
      left: 70%;
      width: 15%;
      text-align: center;
      outline: solid 3px #2CDFFF;
      padding: 2rem;
      transition: all 0.3s ease-in-out; }
      @media screen and (max-width: 900px) {
        .comments .comments-box a {
          left: 50%;
          transform: translate(-50%);
          width: 60%;
          text-align: center; } }
    .comments .comments-box a:hover {
      background: #2CDFFF;
      color: #1A3441; }
    .comments .comments-box .comments-content {
      width: 60%;
      margin: 0 auto;
      padding-top: 4rem;
      color: #fff; }
      .comments .comments-box .comments-content p {
        font-size: 1.3rem;
        line-height: 1.8rem; }

.scroll {
  transform: rotate(-90deg);
  transform-origin: center left;
  position: fixed;
  z-index: 1;
  right: 1%;
  bottom: 0;
  width: 8%;
  display: flex;
  justify-content: space-between; }
  .scroll span {
    margin-left: 50%;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.5s ease-in-out; }
  .scroll .scroll-anim {
    animation: scroll 1.5s infinite; }
  .scroll .to-top {
    transform: rotate(-270deg);
    padding-bottom: 10%;
    animation: top 1.5s infinite;
    margin-left: 25%;
    cursor: pointer; }
  .scroll .scroll-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 2px;
    background: #2CDFFF;
    animation: scrollLine 1.5s infinite; }

/**** footer ***/
footer {
  width: 100%;
  margin-top: 20rem;
  margin-bottom: 3rem; }
  @media screen and (max-width: 900px) {
    footer {
      margin-top: 10rem; } }
  footer p {
    color: #fff; }
  footer .footer-container {
    width: 80%;
    margin: 0 auto; }
    footer .footer-container .footer-content {
      width: 35%; }
      @media screen and (max-width: 900px) {
        footer .footer-container .footer-content {
          width: 80%; } }
      footer .footer-container .footer-content h2 {
        color: #fff;
        font-size: 1.8rem; }
      footer .footer-container .footer-content .contact-description {
        font-size: 1.4rem;
        line-height: 2rem; }
        footer .footer-container .footer-content .contact-description a {
          text-decoration: none;
          color: #2CDFFF; }
      footer .footer-container .footer-content h3 {
        color: #fff;
        font-size: 1.6rem;
        margin-top: 2.5rem; }
      footer .footer-container .footer-content h3 + p {
        font-size: 1.4rem;
        color: #2CDFFF; }
        footer .footer-container .footer-content h3 + p a {
          text-decoration: none;
          color: inherit; }
        footer .footer-container .footer-content h3 + p a:hover {
          text-decoration: underline; }
    footer .footer-container .logo-social {
      list-style: none;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 50%;
      padding: 0; }
      footer .footer-container .logo-social a {
        width: 30px;
        height: 30px; }
      footer .footer-container .logo-social .social-sc {
        background: url(../images/soundcloud.png);
        background-size: contain;
        background-repeat: no-repeat;
        transition: all .2s ease-in; }
      footer .footer-container .logo-social .social-sc:hover {
        background: url(../images/soundcloud-hover.png);
        background-size: contain;
        background-repeat: no-repeat; }
      footer .footer-container .logo-social .social-fb {
        background: url(../images/facebook.png);
        background-size: contain;
        background-repeat: no-repeat;
        transition: all .2s ease-in; }
      footer .footer-container .logo-social .social-fb:hover {
        background: url(../images/facebook-hover.png);
        background-size: contain;
        background-repeat: no-repeat; }
      footer .footer-container .logo-social .social-ln {
        background: url(../images/linkedin.png);
        background-size: contain;
        background-repeat: no-repeat;
        transition: all .2s ease-in; }
      footer .footer-container .logo-social .social-ln:hover {
        background: url(../images/linkedin-hover.png);
        background-size: contain;
        background-repeat: no-repeat; }
      footer .footer-container .logo-social .social-yt {
        background: url(../images/youtube.png);
        background-size: contain;
        background-repeat: no-repeat;
        transition: all .2s ease-in; }
      footer .footer-container .logo-social .social-yt:hover {
        background: url(../images/youtube-hover.png);
        background-size: contain;
        background-repeat: no-repeat; }
    footer .footer-container .legal {
      text-align: center;
      font-size: 1.1rem;
      margin-top: 5rem;
      color: #fff; }
      @media screen and (max-width: 900px) {
        footer .footer-container .legal {
          width: 60%;
          margin: 0 auto;
          margin-top: 5rem; } }
      footer .footer-container .legal a {
        text-decoration: none;
        color: #fff; }
      footer .footer-container .legal a:hover {
        text-decoration: underline; }

.devis_main {
  color: #2CDFFF; }
  .devis_main .devis_background_particular {
    width: 100%; }
    @media screen and (max-width: 900px) {
      .devis_main .devis_background_particular {
        background-position: center; } }
  .devis_main .devis_background_professional {
    width: 100%; }
    @media screen and (max-width: 900px) {
      .devis_main .devis_background_professional {
        background-position: center; } }
  .devis_main h1 {
    text-align: center;
    font-size: 3rem; }
  .devis_main .devis_info {
    display: flex;
    flex-direction: row;
    width: 50%;
    margin: auto;
    height: 5%; }
    @media screen and (max-width: 900px) {
      .devis_main .devis_info {
        flex-direction: column;
        width: 80%; } }
    .devis_main .devis_info ul {
      color: #fff;
      height: 30%;
      margin-top: 7.5rem;
      width: 50%; }
      @media screen and (max-width: 900px) {
        .devis_main .devis_info ul {
          margin-top: 0;
          padding: 0;
          text-align: center;
          width: 100%;
          box-sizing: border-box; } }
      .devis_main .devis_info ul li {
        font-size: 1.6rem;
        margin-top: 20px; }
        @media screen and (max-width: 900px) {
          .devis_main .devis_info ul li {
            list-style: none; } }
  .devis_main .devis_icon_container {
    width: 250px;
    height: 250px;
    background: #2CDFFF;
    margin: 1.5% auto;
    margin-top: 5%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
    @media screen and (max-width: 900px) {
      .devis_main .devis_icon_container {
        width: 30vw;
        height: 30vw; } }
  .devis_main .devis_icon_background {
    overflow: hidden;
    box-sizing: border-box;
    background-color: #1A3441;
    padding: 2rem;
    margin: 1.5% auto;
    width: 96%;
    height: 97%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
  .devis_main .particular_icon {
    background: url(../images/solo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 60%;
    height: 95%;
    margin: 1.5% auto;
    background-position: center; }
  .devis_main .professionnal_icon {
    background: url(../images/people.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 95%;
    margin: 1.5% auto;
    background-position: center; }
  .devis_main .description {
    margin: 0 auto;
    margin-top: 5rem;
    width: 80%; }
  .devis_main .description_line {
    box-sizing: border-box;
    color: #fff;
    width: 70%;
    line-height: 2rem;
    margin: 2rem auto;
    font-size: 1.6rem; }
    @media screen and (max-width: 900px) {
      .devis_main .description_line {
        width: 80%;
        text-align: center; } }
  .devis_main .form-container {
    color: #1A3441;
    width: 80%;
    margin: auto;
    margin-top: 5rem;
    background-color: #fff;
    padding: 0 5% 5% 5%;
    box-sizing: border-box; }
    @media screen and (max-width: 900px) {
      .devis_main .form-container {
        width: 95%; } }
    .devis_main .form-container h3 {
      text-align: center;
      font-size: 2rem;
      font-weight: 600;
      padding: 5%; }
  .devis_main .quotation_form {
    width: 80%;
    margin: auto; }
    .devis_main .quotation_form .text_zone {
      margin-bottom: 3%; }
      .devis_main .quotation_form .text_zone div {
        display: flex;
        flex-direction: column;
        margin-top: 3%; }
        .devis_main .quotation_form .text_zone div label {
          margin-bottom: 1.6rem;
          text-transform: uppercase;
          font-weight: 600;
          font-size: 1.3rem; }
          .devis_main .quotation_form .text_zone div label span {
            color: #FF7E7E; }
      .devis_main .quotation_form .text_zone div.particular_name {
        flex-direction: row;
        justify-content: space-between; }
        .devis_main .quotation_form .text_zone div.particular_name .name_container {
          flex-direction: column;
          width: 48%; }
      .devis_main .quotation_form .text_zone input, .devis_main .quotation_form .text_zone textarea {
        background: none;
        color: #1A3441;
        border: solid 1px #1A3441;
        box-sizing: border-box;
        padding: 1rem;
        font-family: "Montserrat", sans-serif; }
      .devis_main .quotation_form .text_zone textarea {
        resize: none; }
  .devis_main .form_bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    @media screen and (max-width: 900px) {
      .devis_main .form_bottom {
        flex-direction: column; } }
    .devis_main .form_bottom .services_type {
      display: flex;
      flex-direction: column;
      width: 50%; }
      @media screen and (max-width: 900px) {
        .devis_main .form_bottom .services_type {
          width: 100%; } }
      .devis_main .form_bottom .services_type label {
        margin-bottom: 1.6rem;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 1.3rem; }
        .devis_main .form_bottom .services_type label span {
          color: #FF7E7E; }
    .devis_main .form_bottom select {
      -webkit-appearance: none;
      background: url(../images/arrow.png);
      background-repeat: no-repeat;
      background-position: right;
      color: #1A3441;
      border: solid 1px #1A3441;
      border-radius: 0;
      font-family: "Montserrat", sans-serif;
      height: fit-content;
      padding: 1em;
      width: 70%; }
      @media screen and (max-width: 900px) {
        .devis_main .form_bottom select {
          width: 100%; } }
    .devis_main .form_bottom .musical_sample_container {
      width: 40%;
      display: flex;
      flex-direction: column; }
      @media screen and (max-width: 900px) {
        .devis_main .form_bottom .musical_sample_container {
          width: 100%;
          margin-top: 1rem; } }
      .devis_main .form_bottom .musical_sample_container p {
        margin-top: 0;
        margin-bottom: 1.6rem;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 1.3rem; }
      .devis_main .form_bottom .musical_sample_container .file_input {
        display: flex;
        flex-direction: row;
        width: 100%; }
        .devis_main .form_bottom .musical_sample_container .file_input label {
          width: 50px;
          height: 50px;
          background: url(../images/upload.png);
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          transition: all .3s ease-in; }
        .devis_main .form_bottom .musical_sample_container .file_input label:hover {
          background: url(../images/upload-hover.png);
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          cursor: pointer; }
        .devis_main .form_bottom .musical_sample_container .file_input input {
          display: none;
          background: #1A3441;
          color: #fff;
          font-family: "Montserrat", sans-serif; }
        .devis_main .form_bottom .musical_sample_container .file_input #fileName {
          margin: auto;
          margin-left: 1rem;
          text-transform: none; }
  .devis_main .submit_button {
    display: block;
    border: solid 3px #2CDFFF;
    background: #1A3441;
    color: #fff;
    width: 15%;
    margin: 0 auto;
    margin-top: 5rem;
    text-transform: uppercase;
    padding: 1.5rem 1rem;
    transition: all .3s ease-in-out;
    font-weight: 600;
    cursor: pointer; }
    @media screen and (max-width: 900px) {
      .devis_main .submit_button {
        width: 50%; } }
  .devis_main .submit_button:hover {
    background: #2CDFFF;
    color: #1A3441; }
  .devis_main .submit_button + p {
    text-align: center;
    color: #2CDFFF; }
  .devis_main .submit_button + p.error {
    color: #FF7E7E; }

.contact-container {
  width: 80%;
  margin: 0 auto; }
  .contact-container h1 {
    font-size: 3rem;
    color: #2CDFFF;
    text-align: center; }
  .contact-container .contact-form-container {
    width: 80%;
    margin: 0 auto; }
    .contact-container .contact-form-container .contact-form {
      display: flex;
      flex-direction: column; }
      .contact-container .contact-form-container .contact-form label {
        color: #2CDFFF;
        font-size: 1.5rem;
        padding: 2rem;
        padding-left: 0;
        margin-top: 1rem; }
        .contact-container .contact-form-container .contact-form label span {
          color: #FF7E7E; }
      .contact-container .contact-form-container .contact-form .contact-form-names {
        display: flex;
        flex-direction: row;
        justify-content: space-between; }
        .contact-container .contact-form-container .contact-form .contact-form-names div {
          width: 48%;
          display: flex;
          flex-direction: column; }
      .contact-container .contact-form-container .contact-form input, .contact-container .contact-form-container .contact-form textarea {
        background: none;
        color: #fff;
        border: solid 1px #2CDFFF;
        box-sizing: border-box;
        padding: 1rem;
        font-family: "Montserrat", sans-serif; }
      .contact-container .contact-form-container .contact-form textarea {
        resize: none; }
      .contact-container .contact-form-container .contact-form input:active, .contact-container .contact-form-container .contact-form textarea:active {
        border: solid 1px #1A3441; }
      .contact-container .contact-form-container .contact-form input.submit {
        border: solid 3px #2CDFFF;
        background: #1A3441;
        width: 15%;
        margin: 0 auto;
        margin-top: 3rem;
        text-transform: uppercase;
        padding: 1.5rem 1rem;
        transition: all .3s ease-in-out;
        font-weight: 600;
        cursor: pointer; }
        @media screen and (max-width: 900px) {
          .contact-container .contact-form-container .contact-form input.submit {
            width: 50%; } }
      .contact-container .contact-form-container .contact-form input.submit:hover {
        background: #2CDFFF;
        color: #1A3441; }
      .contact-container .contact-form-container .contact-form .submit + p {
        text-align: center;
        color: #2CDFFF; }
      .contact-container .contact-form-container .contact-form .submit + p.error {
        color: #FF7E7E; }

.legal-container {
  width: 80%;
  margin: 0 auto;
  margin-top: 5rem;
  color: #fff; }
  .legal-container h1 {
    font-size: 3rem; }
  .legal-container a#back {
    display: block;
    padding: 2rem;
    outline: solid 3px #2CDFFF;
    background: #1A3441;
    color: #fff;
    text-decoration: none;
    width: 15%;
    margin: 0 auto;
    margin-top: 5rem;
    transition: all .3s ease-in-out;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600; }
    @media screen and (max-width: 900px) {
      .legal-container a#back {
        width: 40%; } }
  .legal-container a#back:hover {
    background: #2CDFFF;
    color: #1A3441; }
  .legal-container h2 {
    margin-top: 3rem;
    font-size: 2.5rem; }
  .legal-container p {
    line-height: 2.5rem; }
    .legal-container p a {
      text-decoration: none;
      color: #2CDFFF; }
    .legal-container p a:hover {
      text-decoration: underline; }

.about-container {
  width: 80%;
  margin: 0 auto;
  color: #fff; }
  @media screen and (max-width: 900px) {
    .about-container {
      width: 95%; } }
  .about-container h1 {
    text-align: center;
    font-size: 3rem;
    color: #2CDFFF; }
  .about-container .about-history {
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    color: #1A3441;
    padding: 1% 4%; }
    .about-container .about-history h2 {
      text-align: center;
      font-size: 2.5rem; }
    .about-container .about-history .history-content {
      position: relative;
      margin-bottom: 4rem; }
      .about-container .about-history .history-content p {
        width: 75%;
        line-height: 2.3rem; }
        @media screen and (max-width: 900px) {
          .about-container .about-history .history-content p {
            text-align: center;
            width: 100%; } }
        .about-container .about-history .history-content p a {
          text-decoration: none;
          color: #2CDFFF;
          transition: all .3s ease-in-out; }
        .about-container .about-history .history-content p a:hover {
          color: #1A3441; }
      .about-container .about-history .history-content .artist-img-border {
        width: 30%;
        overflow: hidden;
        background: #2CDFFF;
        position: absolute;
        top: -5rem;
        left: 80%; }
        @media screen and (max-width: 900px) {
          .about-container .about-history .history-content .artist-img-border {
            position: static;
            margin: 0 auto; } }
      .about-container .about-history .history-content .artist-img-container {
        overflow: hidden;
        width: 97%;
        background: #1A3441;
        margin: 1.5% auto; }
        .about-container .about-history .history-content .artist-img-container div {
          width: 90%;
          margin: 5% auto; }
        .about-container .about-history .history-content .artist-img-container img {
          box-sizing: border-box;
          width: 100%;
          transition: all .3s ease-in; }
      .about-container .about-history .history-content .clip-artist-img {
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
  .about-container .about-location {
    margin-top: 5rem;
    width: 100%;
    background: #fff;
    color: #1A3441;
    padding: 2% 4%;
    box-sizing: border-box; }
    .about-container .about-location h2 {
      font-size: 2.5rem;
      text-align: center; }
    .about-container .about-location ul {
      padding: 0;
      font-size: 1.6rem; }
      .about-container .about-location ul li {
        margin-top: 3rem; }
      .about-container .about-location ul .location-content {
        width: 100%;
        display: flex;
        justify-content: space-between; }
        @media screen and (max-width: 900px) {
          .about-container .about-location ul .location-content {
            flex-direction: column-reverse; } }
        .about-container .about-location ul .location-content iframe {
          width: 50%; }
          @media screen and (max-width: 900px) {
            .about-container .about-location ul .location-content iframe {
              width: 100%;
              margin: 2rem 0 3rem 0; } }
        .about-container .about-location ul .location-content .location-info {
          width: 42%; }
          @media screen and (max-width: 900px) {
            .about-container .about-location ul .location-content .location-info {
              width: 100%;
              text-align: center; } }
          .about-container .about-location ul .location-content .location-info img {
            width: 100%; }
          .about-container .about-location ul .location-content .location-info > a {
            display: block;
            width: 40%;
            text-align: center;
            margin: 0 auto;
            margin-top: 2.5rem;
            text-transform: none;
            padding: 2rem;
            outline: solid 3px #2CDFFF;
            text-decoration: none;
            background: #1A3441;
            color: #fff;
            font-weight: 600;
            font-size: 1.5rem;
            transition: all .3s ease-in-out; }
          .about-container .about-location ul .location-content .location-info > a:hover {
            background: #2CDFFF;
            color: #1A3441; }
          .about-container .about-location ul .location-content .location-info .equipment {
            position: fixed;
            padding: 2% 4%;
            height: 60vh;
            top: 15vh;
            left: 50%;
            transform: translate(-50%) scale(0);
            width: 30%;
            overflow: scroll;
            overflow-x: hidden;
            outline: solid 10px #1A3441;
            background: #fff;
            color: #1A3441;
            transition: all .3s ease-in; }
            @media screen and (max-width: 900px) {
              .about-container .about-location ul .location-content .location-info .equipment {
                width: 70%; } }
            .about-container .about-location ul .location-content .location-info .equipment h4 {
              text-align: center; }
            .about-container .about-location ul .location-content .location-info .equipment ul {
              padding: 0;
              font-size: 1.6rem; }
              @media screen and (max-width: 900px) {
                .about-container .about-location ul .location-content .location-info .equipment ul li {
                  list-style: none; } }
  .about-container div.buttons {
    display: flex;
    width: 60%;
    margin: 0 auto;
    justify-content: space-between;
    margin-top: 5rem; }
    @media screen and (max-width: 900px) {
      .about-container div.buttons {
        flex-direction: column;
        width: 100%; } }
    .about-container div.buttons a.button {
      display: block;
      padding: 2rem;
      width: 43%;
      outline: solid 3px #2CDFFF;
      background: #1A3441;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
      text-decoration: none;
      text-align: center;
      transition: all .3s ease-in-out; }
      @media screen and (max-width: 900px) {
        .about-container div.buttons a.button {
          margin: 2rem auto; } }
    .about-container div.buttons .button:hover {
      color: #1A3441;
      background: #2CDFFF; }

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