/*------------------------
1. Base
------------------------*/
/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* BASE */
@-moz-keyframes fadein { /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein { /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-delay-1 {
  opacity: 1;
  -moz-animation: fadein 500ms linear; /* Firefox */
  -webkit-animation: fadein 500ms linear; /* Safari and Chrome */
  -o-animation: fadein 500ms linear; /* Opera */
  animation: fadein 500ms linear;
}

body {
  font-family: sans-serif;
  margin: 0;
}

img {
  border: 0;
}

ul {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:active, a:focus {
  color: inherit;
  outline: none;
}

input, select {
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  width: 100%;
  outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: inherit;
}

::-moz-placeholder { /* Firefox 19+ */
  color: inherit;
}

:-ms-input-placeholder { /* IE 10+ */
  color: inherit;
}

:-moz-placeholder { /* Firefox 18- */
  color: inherit;
}

#navigation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  transition: opacity 0.3s;
}

#projets, #formcontact {
  background-color: #f7f7f7;
  padding: 40px 0;
}

.newsContainer, .contactContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* SLICK */
.slick-slider {
  margin-bottom: 0;
}

.slick-prev, .slick-next {
  top: 48%;
  top: -webkit-calc(50% - 15px);
  top: -moz-calc(50% - 15px);
  top: calc(50% - 15px);
}

.slick-prev, .slick-prev:hover, .slick-prev:focus {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
  width: 27px;
  height: 44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  left: -50px;
  z-index: 99;
}

.slick-next, .slick-next:hover, .slick-next:focus {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
  width: 27px;
  height: 44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  right: -50px;
  z-index: 99;
}

.slick-next:before, .slick-prev:before {
  content: "";
}

/* MENU */
.menu {
  max-width: 1200px;
  margin: 0 auto;
  /* Correction pour le bug d'overlap lors d'un scroll rapide et que le menu est en position fixed */
  /*overflow-x: hidden;*/
  /*overflow-y:auto;*/
  /*-webkit-transform: translate3d(0,0,0);*/
  /*-webkit-overflow-scrolling: touch;*/
}

.menuDesktop {
  text-align: center;
}

.menuSelected {
  font-weight: 600;
  color: #98b99c;
}

.menuList ul {
  margin-top: 50px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
}

.menuList ul a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: roboto;
  border-right: 1px solid #ddd;
  padding: 0 40px;
  display: inline-block;
}

.menuList ul a:last-child {
  border-right: 0px solid;
}

/* MENU MOBILE */
.menuMobile {
  display: none;
}

#logo {
  padding-top: 80px;
}

#logo img {
  width: 400px;
  max-width: 100%;
}

#mobile-logo {
  width: 163px;
  margin: 0 auto;
}

#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f2f2f2;
  z-index: 1;
  text-align: center;
  /* Correction pour le bug d'overlap lors d'un scroll rapide et que le menu est en position fixed */
  /*overflow-x: hidden;*/
  /*overflow-y:auto;*/
  /*-webkit-transform: translate3d(0,0,0);*/
  /*-webkit-overflow-scrolling: touch;*/
}

#mobile-menu-content {
  display: none;
  position: fixed;
  top: 76px;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  overflow: auto;
  background-color: white;
}

#mobile-search {
  position: absolute;
  top: 2px;
  right: 15px;
}

#mobile-search-close {
  display: none;
}

#nav {
  margin-top: 20px;
}

#nav > li > a {
  display: block;
  padding: 10px 18px;
}

#nav li ul {
  display: none;
  padding: 0 17px;
}

#nav li ul li {
  padding: 5px;
}

/* SEARCH */
#searchBar {
  display: none;
  margin-top: 74px;
}

#searchBar .searchBarInput {
  max-width: 300px;
  margin: 0 auto 30px;
  position: relative;
}

#searchBar .searchBarInput::placeholder, #searchBar .searchBarInput::-webkit-input-placeholder, #searchBar .searchBarInput::-moz-placeholder, #searchBar .searchBarInput:-ms-input-placeholder, #searchBar .searchBarInput::-moz-placeholder {
  color: #7e7e7e;
}

.searchModels {
  width: 100vh;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  text-align: center;
  line-height: 32px;
  outline: none;
}

@font-face {
  font-family: "Gill Sans Nova Light";
  font-style: normal;
  font-weight: normal;
  src: local("Gill Sans Nova Light"), url("../../fonts/3.- Gill Sans Nova Light.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans Nova Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Gill Sans Nova Medium"), url("../../fonts/7.- Gill Sans Nova Medium.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans Nova SemiBold";
  font-style: normal;
  font-weight: normal;
  src: local("Gill Sans Nova SemiBold"), url("../../fonts/9.- Gill Sans Nova Semibold.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans Nova Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Gill Sans Nova Bold"), url("../../fonts/11.- Gill Sans Nova Bold.woff") format("woff");
}
/*------------------------
2. Style
------------------------*/
body {
  font-family: "Gill Sans Nova Medium";
}

.menu {
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 175px;
}
.menu .extra {
  background: #fff;
  padding: 10px 50px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 20;
}
.menu .extra div, .menu .extra a {
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #000;
  font-family: "Gill Sans Nova SemiBold";
  cursor: pointer;
  width: 50px;
  text-align: right;
  font-size: 16px;
  cursor: pointer;
  display: block;
}
.menu .extra div .inactive, .menu .extra a .inactive {
  display: none;
}
.menu .extra div.head, .menu .extra a.head {
  width: auto;
  text-transform: uppercase;
  margin-left: 30px;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.menu .search {
  position: absolute;
  top: -200px;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(100% - 37px);
  background: white;
  z-index: 10;
  transition: 1s;
}
.menu .search #searchForm {
  height: 100%;
}
.menu .search input {
  height: 100%;
  width: calc(100% - 100px);
  border: none;
  font-family: "Gill Sans Nova Bold";
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 30px;
  padding: 0 50px;
  text-align: left;
}
.menu .search input::placeholder {
  color: #cccccc;
}
.menu .search.active {
  top: 37px;
  bottom: 0;
}
.menu .menufixe {
  background: #fff;
  width: 100%;
  transition: 0.5s;
}
.menu .menufixe .head {
  text-align: center;
  position: relative;
}
.menu .menufixe .head h1 img {
  width: 150px;
}
.menu .menufixe .menuDesktop {
  margin-top: 40px;
  padding-bottom: 5px;
  position: relative;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
}
.menu .menufixe .menuDesktop ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.menu .menufixe .menuDesktop ul li a {
  font-family: "Gill Sans Nova Bold";
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin: 0 10px;
  position: relative;
  padding: 5px;
  transition: all 0.5s;
  cursor: pointer;
}
.menu .menufixe .menuDesktop ul li a:hover {
  color: #000 !important;
}
.menu .menufixe .menuDesktop ul li.menuSelected a {
  font-weight: 900;
  color: #ddd;
}
.menu .menufixe .menuDesktop ul li.menuSelected a::after {
  width: 100%;
}
.menu .menufixe .menuDesktop ul:hover li a {
  color: #cccccc;
}
.menu .menufixe.stick {
  position: fixed;
  z-index: 999;
  top: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-items: center;
  padding: 10px 0px;
}
.menu .menufixe.stick .head {
  padding-left: 50px;
}
.menu .menufixe.stick .head h1 img {
  width: 100px;
}
.menu .menufixe.stick .menuDesktop {
  margin-top: 0;
  margin-right: 30px;
}

#footer {
  border-top: 1px solid #000;
  padding: 50px;
  position: relative;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
}
#footer .agency,
#footer .other {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  letter-spacing: 0.2em;
}
#footer .agency .part,
#footer .other .part {
  width: 50%;
  font-size: 12px;
  line-height: 1.5;
}
#footer .agency .part h3,
#footer .other .part h3 {
  font-family: "Gill Sans Nova Bold";
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin-bottom: 10px;
}
#footer .agency .part a.tel,
#footer .other .part a.tel {
  color: #cccccc;
}
#footer .agency .part {
  width: 300px;
}
#footer .other .part {
  width: 150px;
}
#footer .other .part.social {
  font-size: 17px;
  display: flex;
}
#footer .other .part.social a {
  display: block;
  margin-left: 20px;
  cursor: pointer;
}
#footer .other .part.social a.contact {
  font-size: 17px;
}
#footer .other .part .privacy {
  letter-spacing: 0.1em;
  font-size: 12px;
  font-family: "Gill Sans Nova Medium";
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

.about.page {
  padding: 20px 0;
}
.about.page .information {
  width: 55%;
  position: relative;
  transition: 1s;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;
}
.about.page .information .videoAbout {
  margin-bottom: 50px;
}
.about.page .information .videoAbout video, .about.page .information .videoAbout img {
  max-width: 100%;
}
.about.page .information .newsDetailTitle {
  font-family: "Gill Sans Nova Light";
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 30px;
  position: relative;
  margin-bottom: 20px;
  line-height: 35px;
}
.about.page .information p {
  color: #000;
  font-family: "Gill Sans Nova Light";
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1px;
}
.about.page .pictureabout {
  width: 30%;
}
.about.page .pictureabout img {
  width: 100%;
}

#popcontact {
  display: none;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
#popcontact .contactcontent {
  position: relative;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-content: center;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  height: 100%;
  color: #000;
}
#popcontact .contactcontent h1 {
  margin-top: 50px;
}
#popcontact .contactcontent h1 img {
  width: 200px;
}
#popcontact .contactcontent .infoContact {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
#popcontact .contactcontent .infoContact h2 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin: 10px 0;
}
#popcontact .contactcontent .infoContact span.tel {
  margin-top: 10px;
  display: block;
  color: #000;
  font-weight: bold;
}
#popcontact .contactcontent .infoContact .miami {
  margin-top: 50px;
}
#popcontact .contactcontent .infoContact .founder {
  margin-top: 50px;
  display: flex;
}
#popcontact .contactcontent .infoContact .founder .onefounder {
  margin: 0 30px;
}
#popcontact .contactcontent .infoContact .founder .onefounder h3 {
  font-weight: normal;
}
#popcontact .contactcontent .infoContact .founder .onefounder a {
  font-size: 14px;
}
#popcontact .contactcontent .close {
  position: fixed;
  right: 20px;
  top: 20px;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  cursor: pointer;
}
#popcontact .contactcontent .close i {
  font-size: 14px;
  margin-left: 20px;
}

.home_overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  z-index: 99999;
}
.home_overlay .overlay_container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 100%;
}
.home_overlay .overlay_container .videoBackground {
  height: 100%;
  width: 100%;
  position: relative;
}
.home_overlay .overlay_container .videoBackground .voile {
  position: absolute;
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  cursor: pointer;
}
.home_overlay .overlay_container .videoBackground iframe {
  height: 100vh;
  width: 100vw;
  position: relative;
  z-index: -1;
}

/*
.home_overlay {
  position: fixed;
  width:100%;
  height: 100vh;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background: $black;
  z-index: 99999;
  transition: 1s;
  .overlay_container {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    .overlay_logo {
      width: 30%;
      //max-width: 500px;
      margin: 0 auto;
      img{
        width: 100%;
      }

      animation: moresize 18s linear;

      @-webkit-keyframes moresize {from {width: 20%;} to {width: 80%;}}
      @-keyframes moresize {from {width: 20%;} to {width: 80%;}}
    }
  }

  &.white {
    background: white;
  }
}

.voile {
  position: absolute;
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  cursor: pointer;
}

*/
#navigation {
  max-width: 100%;
  padding: 30px 50px;
  transition: opacity 0.3s;
}
#navigation .listhomemobile {
  display: none;
}
#navigation .listhome {
  position: relative;
  font-size: initial !important;
  overflow: hidden;
  height: 75vh;
}
#navigation .listhome .verticalScroll {
  display: flex;
}
#navigation .listhome .infiniteslide_wrap {
  width: calc(33.33% - 20px);
  overflow: hidden;
  margin: 5px;
  display: flex;
  flex-direction: column;
  height: 200% !important;
}
#navigation .listhome .simply-scroll {
  width: 100%;
  margin-bottom: 1em;
}
#navigation .listhome .simply-scroll .simply-scroll-clip {
  width: 100%;
  height: 100%;
}
#navigation .listhome .grid-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}
#navigation .listhome .grid-item .title {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  padding: 30px;
  padding-right: 50px;
  z-index: 10;
  color: #000;
  font-size: 20px;
  font-family: "Gill Sans Nova Medium";
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  transition: all 0.5s;
}
#navigation .listhome .grid-item .title i {
  position: absolute;
  right: 20px;
  bottom: 30px;
  animation: goback 1s linear infinite alternate;
}
@-webkit-keyframes goback {
  from {
    right: 20px;
  }
  to {
    right: 40px;
  }
}
@-keyframes goback {
  #navigation .listhome .grid-item .title i from {
    right: 20px;
  }
  #navigation .listhome .grid-item .title i to {
    right: 40px;
  }
}
#navigation .listhome .grid-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#navigation .listhome .grid-item:hover .title {
  bottom: 0;
}

.cookie-validator {
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  z-index: 1000;
  position: fixed;
  right: 0 !important;
  left: initial !important;
  background: rgba(0, 0, 0, 0.9);
  color: #f2f2f2;
  font-size: 12px !important;
  line-height: 16px !important;
  height: auto !important;
  min-width: 250px;
  max-width: 300px;
  width: 100%;
}
.cookie-validator .cookie-text {
  padding: 20px 20px;
  text-align: justify;
}
.cookie-validator .cookie-confirmation {
  border: none;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
}

.verticalScroll {
  height: 100% !important;
}
.verticalScroll .vert {
  width: calc(33.33% - 5px) !important;
  padding: 5px;
  height: 100% !important;
  margin-bottom: 0 !important;
}
.verticalScroll .vert .simply-scroll-clip {
  width: 100% !important;
  height: 100% !important;
}

.photography h3 {
  font-family: "Gill Sans Nova Medium";
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  letter-spacing: 0.33em;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0;
}
.photography .listContainer {
  justify-content: center;
}
.photography.creative-director .listContainer .element {
  width: calc(50% - 10px);
}

.listContainer {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.listContainer .element {
  width: calc(33.33% - 10px);
  margin-bottom: 40px;
  padding: 5px;
}
.listContainer .element .picture {
  height: auto;
  zmax-height: 510px;
  overflow: hidden;
  position: relative;
}
.listContainer .element .picture a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.listContainer .element .picture a::after {
  transition: all 1s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transform: scale3d(1.9, 2.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
}
.listContainer .element .picture a img {
  position: relative;
  top: 0%;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.listContainer .element .picture a img.bookLandscape {
  width: auto;
  height: 100%;
}
.listContainer .element .picture:hover a::after {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 105%, 0);
}
.listContainer .element .picture:hover a img {
  transform: scale(1.1);
}
.listContainer .element .listText {
  color: #000;
  font-size: 16px;
  font-family: "Gill Sans Nova Light";
  letter-spacing: 0;
  line-height: 1;
  margin-top: 20px;
}
.listContainer .element .listCategory {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #000;
  font-style: italic;
}

.overviewmasonry {
  margin: 0 auto;
}

.artistBook {
  padding-bottom: 20px;
}
.artistBook .artistBookMaker {
  width: 100%;
  position: relative;
  transition: 0.5s;
  margin: 0 auto;
  padding-bottom: 50px;
}
.artistBook .artistBookMaker .modelBookName {
  margin-top: 50px;
  font-family: "Gill Sans Nova Light";
  letter-spacing: 0.3em;
  font-size: 25px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
  line-height: 35px;
  text-align: center;
  display: block;
}
.artistBook .artistBookMaker .instagram {
  text-align: center;
  display: block;
}
.artistBook .artistBookMaker .listMenuModel {
  margin-top: 20px;
}
.artistBook .artistBookMaker .listMenuModel ul {
  display: flex;
  justify-content: center;
}
.artistBook .artistBookMaker .listMenuModel ul li {
  padding: 5px 10px;
  text-align: center;
}
.artistBook .artistBookMaker .listMenuModel ul li a {
  color: #cccccc;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.5s;
  font-family: "Gill Sans Nova Bold";
  text-align: center;
  width: 100%;
}
.artistBook .artistBookMaker .listMenuModel ul li:hover a {
  color: #000;
}
.artistBook .artistBookMaker .listMenuModel ul li.active a {
  font-weight: 700;
  color: #000;
}
.artistBook .artistBookMaker.stick {
  position: fixed;
  top: 50px;
  margin-top: 67px;
  width: 22%;
}
.artistBook .copie.visible {
  width: 22%;
  height: 0px;
}
.artistBook #popinoverview {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  bottom: 0;
  z-index: 9990;
  display: none;
}
.artistBook #popinoverview .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
  z-index: 9999;
}
.artistBook #popinoverview .contentslide {
  margin: 20px;
  height: calc(100vh - 40px);
}
.artistBook #popinoverview .contentslide .popslide {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  border: none;
  outline: none;
}
.artistBook #popinoverview .contentslide .popslide .pictureslide {
  max-height: calc(100vh - 40px);
  max-width: calc(100vw - 40px);
  border: none;
  outline: none;
  height: 100vh;
  display: flex;
  align-items: center;
}
.artistBook #popinoverview .contentslide .popslide .pictureslide img {
  height: auto;
  max-height: 95vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  outline: none;
}
.artistBook .contentRight {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.artistBook .contentRight .contentInfo, .artistBook .contentRight .contentVideo {
  display: none;
}
.artistBook .contentRight .contentInfo .onevideo, .artistBook .contentRight .contentVideo .onevideo {
  margin-bottom: 15px;
}
.artistBook .contentRight .contentInfo .onevideo iframe, .artistBook .contentRight .contentVideo .onevideo iframe {
  width: 100%;
}
.artistBook .contentRight .contentInfo.active, .artistBook .contentRight .contentVideo.active {
  display: block;
}
.artistBook .contentRight .contentOverview.inactive {
  display: none;
}
.artistBook .contentRight .clear {
  clear: both;
}
.artistBook .contentRight .flexInfo .bioArtist {
  width: 80%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  margin: 0 auto;
  text-align: center;
  font-family: "Gill Sans Nova Light";
  letter-spacing: 0.3em;
  font-size: 16px;
}
.artistBook .contentRight .flexInfo .bioArtist .biography {
  margin-bottom: 50px;
}
.artistBook .contentRight .flexInfo .bioArtist .biography p, .artistBook .contentRight .flexInfo .bioArtist .biography span {
  font-size: 16px !important;
  line-height: 1.5;
  letter-spacing: 1px;
}
.artistBook .contentRight .flexInfo .imageArtist {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.artistBook .contentRight .flexInfo .imageArtist .onevideo {
  width: 48%;
}
.artistBook .contentRight .flexInfo .imageArtist .picture {
  max-width: 400px;
  margin: 0 auto;
}
.artistBook .contentRight .contentOverview, .artistBook .contentRight .contentPress {
  margin-right: -15px;
}
.artistBook .contentRight .contentOverview .overviewmasonry, .artistBook .contentRight .contentOverview .pressmasonry, .artistBook .contentRight .contentPress .overviewmasonry, .artistBook .contentRight .contentPress .pressmasonry {
  float: left;
  width: 33.33%;
}
.artistBook .contentRight .contentOverview .overviewmasonry .picture, .artistBook .contentRight .contentOverview .pressmasonry .picture, .artistBook .contentRight .contentPress .overviewmasonry .picture, .artistBook .contentRight .contentPress .pressmasonry .picture {
  padding: 5px;
  padding-top: 0;
  padding-bottom: 5px;
  cursor: pointer;
}
.artistBook .contentRight .contentOverview .overviewmasonry .picture img, .artistBook .contentRight .contentOverview .pressmasonry .picture img, .artistBook .contentRight .contentPress .overviewmasonry .picture img, .artistBook .contentRight .contentPress .pressmasonry .picture img {
  width: 100%;
  height: auto;
}
.artistBook .contentRight .contentEditorial {
  width: 90%;
  margin: 0 auto;
}
.artistBook .contentRight .contentEditorial .editorialslideshow .picture img {
  height: 580px;
  outline: none;
}
.artistBook .contentRight .contentEditorial .editorialslideshow .picture img:focus {
  outline: none;
}
.artistBook .contentRight .contentEditorial .editorialslideshow .picture:focus {
  outline: none;
}
.artistBook .contentRight .contentEditorial .editorialslideshow:focus {
  outline: none;
}
.artistBook .contentRight .contentEditorial .editorialmobile {
  display: none;
}

.contentRight.bookMusic {
  display: flex;
}
.contentRight.bookMusic.inactive {
  display: none;
}
.contentRight.bookMusic .left {
  width: 30%;
}
.contentRight.bookMusic .left .bioArtist {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.8px;
  font-family: "Gill Sans Nova Light";
}
.contentRight.bookMusic .left .bioArtist h3 {
  font-family: "Gill Sans Nova Light";
  letter-spacing: 0.1em;
  font-size: 20px;
  position: relative;
  margin-bottom: 20px;
  line-height: 35px;
  display: block;
  border-bottom: 1px solid #000;
}
.contentRight.bookMusic .left .bioArtist .biography {
  margin-bottom: 50px;
}
.contentRight.bookMusic .center {
  width: 60%;
  margin: 0 40px;
}
.contentRight.bookMusic .center .topTracks, .contentRight.bookMusic .center .tvfilm {
  margin-bottom: 30px;
}
.contentRight.bookMusic .center .topTracks h3, .contentRight.bookMusic .center .tvfilm h3 {
  font-family: "Gill Sans Nova Light";
  letter-spacing: 0.1em;
  font-size: 20px;
  position: relative;
  margin-bottom: 20px;
  line-height: 35px;
  display: block;
  border-bottom: 1px solid #000;
}
.contentRight.bookMusic .center .topTracks .spotifyTracks iframe, .contentRight.bookMusic .center .tvfilm .spotifyTracks iframe {
  width: 100%;
  height: 360px;
}
.contentRight.bookMusic .right {
  width: 30%;
}
.contentRight.bookMusic .right h3 {
  font-family: "Gill Sans Nova Light";
  letter-spacing: 0.1em;
  font-size: 20px;
  position: relative;
  margin-bottom: 20px;
  line-height: 35px;
  display: block;
  border-bottom: 1px solid #000;
}
.contentRight.bookMusic .right a {
  display: block;
  font-family: "Gill Sans Nova Medium";
  letter-spacing: 0.1em;
  font-size: 18px;
  margin-bottom: 20px;
}
.contentRight.bookMusic .right a i {
  width: 20px;
  text-align: center;
}

/* PLUGINS MP3 */
.OneAudio h4 {
  color: white;
  background: rgba(0, 0, 0, 0.8) !important;
  border-radius: 5px 5px 0 0 !important;
  padding: 10px 15px;
  padding-bottom: 5px;
}

.audioWrapper {
  position: relative;
  min-height: 36px;
  border-radius: 0 0 5px 5px !important;
  background: rgba(0, 0, 0, 0.8) !important;
  margin-bottom: 10px;
}

.news.page {
  margin: 20px 0;
}
.news.page .newsElement {
  float: left;
  width: 33.33%;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}
.news.page .newsElement .newsSpace {
  padding: 15px;
  padding-top: 0;
  padding-bottom: 30px;
}
.news.page .newsElement .newsSpace .newsElementContent {
  margin-bottom: 40px;
  position: relative;
}
.news.page .newsElement .newsSpace .newsElementContent .newsTitle {
  color: #000;
  font-size: 20px;
  font-family: "Gill Sans Nova Medium";
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 20px 0;
}
.news.page .newsElement .newsSpace .newsElementContent .newsDate {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #000;
  font-style: italic;
}
.news.page .newsElement .newsSpace .newsElementContent .overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.news.page .newsElement .newsSpace .newsElementContent .overlay::after {
  transition: all 1s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
}
.news.page .newsElement .newsSpace .newsElementContent .overlay img {
  transition: all 0.5s;
}
.news.page .newsElement .newsSpace .newsElementContent:hover .overlay::after {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 105%, 0);
}
.news.page .newsElement .newsSpace .newsElementContent:hover .overlay img {
  transform: scale(1.1);
}

.newsDetail {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  padding: 20px 0;
}
.newsDetail .information {
  width: 25%;
  position: relative;
  transition: 1s;
}
.newsDetail .information .newsDetailTitle {
  font-family: "Gill Sans Nova Medium";
  letter-spacing: 0.1em;
  font-size: 30px;
  position: relative;
  margin-bottom: 20px;
  line-height: 35px;
}
.newsDetail .information .newsDetailTitle::after {
  content: "";
  position: absolute;
  left: -101vw;
  width: 100vw;
  height: 100%;
  background: #000;
  top: 0;
  bottom: 0;
}
.newsDetail .information .newsDetailDate {
  color: #000;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-family: "Gill Sans Nova Medium";
}
.newsDetail .information .newsDetailTags {
  color: #cccccc;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Gill Sans Nova Bold";
}
.newsDetail .information.stick {
  position: fixed;
  top: 50px;
  margin-top: 67px;
  width: 23.5%;
}
.newsDetail .copie.visible {
  width: 25%;
  height: 0px;
}
.newsDetail .newsDetailText {
  width: 66%;
  font-size: 16px;
  font-family: "Gill Sans Nova Medium";
  line-height: 1.5;
  letter-spacing: 1px;
}
.newsDetail .newsDetailText .list {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.newsDetail .newsDetailText .list img {
  width: 49%;
  margin-bottom: 20px;
}
.newsDetail .newsDetailText .list img.fullwidth {
  width: 100%;
}
.newsDetail .back a {
  cursor: pointer;
  display: block;
  margin-top: 20px;
  font-family: "Gill Sans Nova Medium";
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  padding-left: 20px;
  position: relative;
}
.newsDetail .back a i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  transition: 0.5s;
}
.newsDetail .back a:hover i {
  left: -10px;
}

/*------------------------
3. Responsive
------------------------*/
@media screen and (max-width: 1300px) {
  .menu .menufixe .menuDesktop ul li a {
    letter-spacing: 0.1em;
    margin: 0 10px;
    padding: 5px;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 1100px) {
  .menufixe.stick .menuDesktop {
    display: none;
  }
  .menufixe.stick .menuMobile {
    display: block;
    margin-right: 50px;
  }
  .menufixe.stick .menuMobile .burger {
    color: #000;
    font-size: 24px;
    cursor: pointer;
  }
  .menufixe.stick .menuMobile .burger .close {
    display: none;
  }
  .menufixe.stick .menuMobile .burgerMenu {
    display: none;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    background: #000;
    height: 100%;
  }
  .menufixe.stick .menuMobile .burgerMenu ul {
    height: 85%;
    padding: 0 50px;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menufixe.stick .menuMobile .burgerMenu ul li {
    font-font: "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 10px;
  }
  .menufixe.stick .menuMobile .burgerMenu ul li a {
    color: #fff;
  }
}
@media screen and (max-width: 950px) {
  #navigation {
    padding-top: 80px !important;
  }
  .menu {
    height: auto;
  }
  .menu .extra {
    background: #000;
    left: 0;
    right: 0;
    top: 0;
    padding: 10px 50px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
    z-index: 20;
  }
  .menu .menufixe {
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: fixed;
    top: 0;
  }
  .menu .menufixe .head {
    padding-left: 50px;
  }
  .menu .menufixe .head h1 img {
    width: 100px;
  }
  .menu .menufixe .menuDesktop {
    display: none;
  }
  .menu .menufixe .menuMobile {
    display: block;
    margin-right: 50px;
  }
  .menu .menufixe .menuMobile .burger {
    color: #000;
    font-size: 24px;
    cursor: pointer;
  }
  .menu .menufixe .menuMobile .burger .close {
    display: none;
  }
  .menu .menufixe .menuMobile .burgerMenu {
    display: none;
    position: fixed;
    top: 70px;
    z-index: 999;
    left: 0;
    right: 0;
    background: #000;
    height: 100%;
  }
  .menu .menufixe .menuMobile .burgerMenu ul {
    height: 85%;
    padding: 0 50px;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu .menufixe .menuMobile .burgerMenu ul li {
    font-font: "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 10px;
  }
  .menu .menufixe .menuMobile .burgerMenu ul li a {
    color: #fff;
  }
  .menu .menufixe.stick {
    height: auto;
  }
  .menu .menufixe.stick .burgerMenu {
    top: 66px;
  }
  .menu .search {
    height: 66px;
  }
}
@media screen and (max-width: 768px) {
  .menu .extra {
    display: none;
  }
  .menu .menufixe .head {
    padding-left: 30px;
  }
  .menu .menufixe .menuMobile {
    margin-right: 30px;
  }
  #navigation {
    max-width: 100%;
    padding: 10px 30px;
  }
}
@media screen and (max-width: 1100px) {
  #footer .agency .part {
    width: 220px;
  }
}
@media screen and (max-width: 900px) {
  #footer .other .part.social {
    flex-direction: column;
    width: 65px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 30px;
    flex-direction: column;
  }
  #footer .agency {
    justify-content: flex-start;
  }
  #footer .other {
    justify-content: space-between;
    margin-top: 20px;
  }
  #footer .other .part {
    width: 100%;
  }
  #footer .other .part a {
    width: 100%;
    display: block;
  }
  #footer .other .part.social a {
    margin-left: 0;
  }
}
@media screen and (max-width: 450px) {
  #footer .agency {
    flex-direction: column;
  }
  #footer .agency .part {
    margin-bottom: 20px;
  }
  #footer .other {
    margin-top: 0;
  }
}
@media screen and (max-width: 900px) {
  #navigation .listhome .grid-item .title {
    bottom: 0;
    padding: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 20px;
  }
  #navigation .listhome .grid-item .title a i {
    display: none;
  }
  .listhome {
    display: none;
  }
  .vert {
    width: 49% !important;
    height: 100% !important;
  }
  .vert .simply-scroll-clip {
    width: 100% !important;
    height: 100% !important;
  }
  .listhomemobile {
    overflow: hidden;
    height: 88vh;
    margin-bottom: 20px;
    padding: 10px !important;
    display: flex !important;
    justify-content: space-between;
  }
  .listhomemobile .grid-item {
    margin-bottom: 10px;
  }
  .listhomemobile .element .title {
    display: none;
  }
  .listhomemobile .element img {
    width: 100%;
    height: auto;
  }
  .verticalScrollMobile {
    display: flex;
    justify-content: center;
    width: calc(150vw - 8px);
    position: relative;
    left: -50vw;
    padding: 5px;
  }
  .verticalScrollMobile .infiniteslide_wrap {
    width: calc(50% - 20px);
    overflow: hidden;
    margin: 3px;
    display: flex;
    flex-direction: column;
  }
  .verticalScrollMobile .infiniteslide_wrap .grid-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
  }
  .verticalScrollMobile .infiniteslide_wrap .grid-item .title {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 30px;
    padding-right: 50px;
    z-index: 10;
    color: #000;
    font-size: 20px;
    font-family: "Gill Sans Nova Medium";
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: left;
    transition: all 0.5s;
  }
  .verticalScrollMobile .infiniteslide_wrap .grid-item .title i {
    position: absolute;
    right: 20px;
    bottom: 30px;
    animation: goback 1s linear infinite alternate;
  }
  @-webkit-keyframes goback {
    from {
      right: 20px;
    }
    to {
      right: 40px;
    }
  }
  @-keyframes goback {
    .verticalScrollMobile .infiniteslide_wrap .grid-item .title i from {
      right: 20px;
    }
    .verticalScrollMobile .infiniteslide_wrap .grid-item .title i to {
      right: 40px;
    }
  }
  .verticalScrollMobile .infiniteslide_wrap .grid-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .verticalScrollMobile .infiniteslide_wrap .grid-item:hover .title {
    bottom: 0;
  }
  #navigation .listhomemobile {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  #navigation .listhomemobile {
    padding: 0px;
  }
  #navigation .listhomemobile .grid-item {
    width: 100%;
    margin: 0;
    margin-bottom: 5px;
  }
  #navigation {
    max-width: 100%;
    padding: 0px;
  }
  #navigation .listhome .grid-item .title {
    bottom: 0;
    padding: 10px;
    padding-right: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  #popcontact .contactcontent .infoContact .founder {
    margin-top: 20px;
    display: flex;
  }
  #popcontact .contactcontent .infoContact .founder .onefounder {
    margin: 0 10px;
  }
  #popcontact .contactcontent .infoContact .miami {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .contentRight.bookMusic .right {
    width: 18%;
  }
  .contentRight.bookMusic .center {
    width: 50%;
    margin: 0 40px;
  }
}
@media screen and (max-width: 1100px) {
  .contentRight.bookMusic {
    display: flex;
    flex-wrap: wrap;
  }
  .contentRight.bookMusic .left {
    width: 40%;
  }
  .contentRight.bookMusic .center {
    width: calc(60% - 80px);
    margin: 0 40px;
  }
  .contentRight.bookMusic .right {
    width: 100%;
  }
  .listContainer .element .picture {
    height: 200px;
  }
  .artistBook .artistBookMaker {
    width: 22%;
    min-width: 220px;
  }
  .artistBook .contentRight .flexInfo {
    flex-direction: column;
  }
  .artistBook .contentRight .flexInfo .bioArtist {
    width: 100%;
  }
  .artistBook .contentRight .flexInfo .imageArtist .pictures {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .listContainer .element .picture {
    height: 180px;
  }
  .artistBook {
    flex-direction: column;
  }
  .artistBook .artistBookMaker {
    width: 100%;
    max-width: 100%;
  }
  .artistBook .artistBookMaker .listMenuModel {
    margin: 10px 0;
  }
  .artistBook .artistBookMaker .listMenuModel ul {
    display: flex;
  }
  .artistBook .artistBookMaker .listMenuModel ul li {
    width: 33%;
    border-top: 0;
    margin-right: 0;
    padding: 5px 20px;
  }
  .artistBook .contentRight {
    width: 100%;
    margin-top: 10px;
  }
  .artistBook .contentRight .contentOverview, .artistBook .contentRight .contentPress {
    margin: 0 -15px;
  }
  .artistBook .contentRight .contentOverview .overviewmasonry,
  .artistBook .contentRight .contentOverview .pressmasonry,
  .artistBook .contentRight .contentPress .overviewmasonry,
  .artistBook .contentRight .contentPress .pressmasonry {
    width: 50%;
  }
  .artistBook .contentRight .contentOverview .overviewmasonry .picture,
  .artistBook .contentRight .contentOverview .pressmasonry .picture,
  .artistBook .contentRight .contentPress .overviewmasonry .picture,
  .artistBook .contentRight .contentPress .pressmasonry .picture {
    padding: 3px;
    padding-top: 0;
    padding-bottom: 5px;
  }
  .artistBook .contentRight .contentEditorial .editorialslideshow .picture img {
    height: 400px;
  }
  .artistBook .contentRight .flexInfo .imageArtist .onevideo {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contentRight.bookMusic {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .contentRight.bookMusic .left, .contentRight.bookMusic .right, .contentRight.bookMusic .center {
    width: 100%;
    margin: 0;
  }
  .artistBook .contentRight .flexInfo .bioArtist .biography {
    margin-bottom: 50px;
    padding: 0 20px;
  }
  .menu .menufixe.stick .head {
    padding-left: 30px !important;
  }
  .page.photography {
    margin-top: 20px;
  }
  .listContainer .element {
    width: 48%;
    padding: 10px;
    box-sizing: border-box;
  }
  .artistBook .artistBookMaker .listMenuModel ul {
    display: flex;
    flex-wrap: wrap;
  }
  .artistBook .artistBookMaker .listMenuModel ul li {
    width: calc(50% - 40px);
  }
  .artistBook .contentRight .contentEditorial {
    width: 100%;
  }
  .artistBook .contentRight .contentEditorial .editorialmobile {
    display: block;
  }
  .artistBook .contentRight .contentEditorial .editorialmobile img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .artistBook .contentRight .contentEditorial .editorialslideshow {
    display: none;
  }
  .artistBook .contentRight .flexInfo .bioArtist .biography p span {
    font-size: 14px !important;
  }
  .artistBook .contentRight .flexInfo .imageArtist .pictures img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .contentRight.bookMusic .left .bioArtist .biography {
    margin-bottom: 0px;
  }
  .contentRight.bookMusic {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .contentRight.bookMusic .left, .contentRight.bookMusic .right, .contentRight.bookMusic .center {
    width: calc(100% - 60px);
    padding: 30px;
  }
  .contentRight.bookMusic .left {
    padding-top: 0;
  }
  .listContainer .element {
    width: 100%;
    margin-bottom: 30px;
  }
  .artistBook .artistBookMaker .modelBookName {
    font-size: 28px;
  }
  .artistBook .artistBookMaker .modelBookName::after {
    left: -103vw;
  }
}
@media screen and (max-width: 1100px) {
  .news.page .newsElement {
    width: 50%;
  }
  .newsDetail {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    flex-direction: column;
  }
  .newsDetail .information {
    width: 100%;
  }
  .newsDetail .information.stick {
    position: relative;
    top: 0px;
    margin-top: 0px;
    width: 100%;
  }
  .newsDetail .newsDetailText {
    width: 100%;
    margin-top: 40px;
  }
  .about.page {
    display: flex;
    flex-direction: column;
  }
  .about.page .information, .about.page .pictureabout {
    width: 100%;
  }
  .about.page .pictureabout {
    margin: 20px auto;
    text-align: center;
    padding: 20px;
  }
  .about.page .pictureabout img {
    width: calc(100% - 40px);
  }
  .about.page .videoAbout video, .about.page .videoAbout img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news.page .newsElement .newsSpace {
    padding: 5px;
  }
  .news.page .newsElement .newsSpace .newsElementContent {
    margin-bottom: 20px;
  }
  .news.page .newsElement .newsSpace .newsElementContent .newsTitle {
    font-size: 16px;
    margin: 10px 0;
  }
  .news.page .newsElement .newsSpace .newsElementContent .newsDate {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .news.page .newsElement {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .newsDetail .information .newsDetailTitle {
    font-size: 28px;
  }
  .newsDetail .information .newsDetailTitle::after {
    left: -103vw;
  }
  .newsDetail .newsDetailText .list img {
    width: 100%;
    margin-bottom: 20px;
  }
  .about.page .information .newsDetailTitle {
    font-size: 28px;
  }
  .about.page .information .newsDetailTitle::after {
    left: -103vw;
  }
  .about.page .information p {
    font-size: 14px;
    line-height: 1.3;
    padding: 0 20px;
  }
}

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