/*--------------------VARIABLES - MIXINS------------------------------*/
/*--------------------GENERAL------------------------------*/
html,
body {
  width: 100%;
  height: 100%;
  min-width: 330px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased !important;
  -webkit-tap-highlight-color: transparent;
}

a:active,
a:visited {
  color: #000;
}

a:focus-visible {
  outline: none;
}

.link_gradient {
  margin-right: 50px;
  text-decoration: none;
  font-family: "AkzidenzGrotesk-Medium", sans-serif;
  font-size: 22px;
  line-height: 22px;
  color: #000;
  position: relative;
  cursor: pointer;
}
.link_gradient::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  left: 0;
  height: 2.6px;
  background: #000;
}
.link_gradient:visited {
  color: #000;
}
.link_gradient:hover {
  background: conic-gradient(from 180deg, #42FBCE 60deg, #FF7D34 179deg, #3E32BD 324deg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.link_gradient:hover:before {
  background: linear-gradient(to right, #42FBCE 0 50%, #3E32BD 50% 100%);
}

.container {
  width: 90%;
  max-width: 1282px;
  margin: 0 auto;
}

nav {
  padding-top: 48px;
}
nav .container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
nav .logo {
  width: 12vw;
  max-width: 170px;
  min-width: 120px;
  position: absolute;
  left: 0;
  top: min(-8vw, -100px);
  cursor: pointer;
  transition: 0.1s all ease-in-out;
}
nav .logo:hover {
  transform: translateY(60px) rotate(24deg);
}
nav .logo img {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  nav .logo {
    top: -115px;
  }
}
nav .menu {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
nav .menu .menu_ico_hover {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
nav .menu:hover .menu_ico {
  display: none;
}
nav .menu:hover .menu_ico_hover {
  display: block;
}
nav .menu_content {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 100%;
  z-index: 999;
  background: conic-gradient(from 180deg, #42FBCE 60deg, #FF7D34 179deg, #3E32BD 324deg);
  padding-top: 110px;
  transition: 0.3s all ease-in-out;
}
nav .menu_content .close {
  position: absolute;
  top: 51px;
  right: 45px;
  cursor: pointer;
}
nav .menu_content img {
  display: block;
  margin: 0 auto 30px;
}
nav .menu_content a {
  display: block;
  text-align: center;
  font-family: "AkzidenzGrotesk-Super", sans-serif;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: max(5vw, 50px);
  line-height: max(6.8vw, 65px);
}
@media screen and (min-width: 1440px) {
  nav .menu_content a {
    font-size: 74px;
    line-height: 100px;
  }
}
nav .menu_content a:hover {
  transform: translateY(12px);
}
nav .menu_content a:nth-of-type(1):hover {
  transform: translateY(25px);
}
nav .menu_content a:nth-of-type(1):hover img {
  transform: rotate(24deg);
}
nav .menu_content.active {
  transform: translateX(-100vw);
}

/*------------------------ HOMEPAGE ------------------------------*/
.home .content {
  margin-top: 40px;
  margin-bottom: 100px;
}
.home .content .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}
.home .content .item {
  max-width: 304px;
  max-height: 304px;
}
.home .content .item:not(.filter) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .content .item img {
  width: 100%;
  transform: scale(0.9);
  transition: 0.1s all ease-in-out;
}
.home .content .item img:hover {
  cursor: pointer;
  transform: scale(1);
}
.home .content .item.filter {
  position: relative;
  text-decoration: none;
}
.home .content .item.filter p {
  display: block;
  width: -moz-max-content;
  width: max-content;
  font-family: "AkzidenzGrotesk-Bold", sans-serif;
  font-size: 40px;
  line-height: 40px;
  color: #d9d9d9;
  text-align: center;
  transition: 0.1s all ease-in-out;
  margin: auto;
}
.home .content .item.filter p::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  left: 0;
  height: 2.6px;
  background: transparent;
}
.home .content .item.filter:hover {
  color: #d9d9d9;
  cursor: pointer;
}
.home .content .item.filter:hover p {
  background: conic-gradient(from 180deg, #42FBCE 60deg, #FF7D34 179deg, #3E32BD 324deg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(30px);
}
.home .content .item.filter:hover p::before {
  background: conic-gradient(from 180deg, #42FBCE 60deg, #FF7D34 179deg, #3E32BD 324deg);
}
@media screen and (max-width: 768px) {
  .home .content .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .home .content .item.white_space {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .home .content .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .home .content .item {
    width: 100%;
    max-width: inherit;
  }
  .home .content .item.filter {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*------------------------ ARTISTS ------------------------------*/
.artists {
  margin-top: 90px;
}
.artists a {
  display: block;
  font-family: "AkzidenzGrotesk-Super", sans-serif;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: max(4.2vw, 40px);
  line-height: max(5vw, 55px);
  color: #000;
}
@media screen and (min-width: 1440px) {
  .artists a {
    font-size: 60px;
    line-height: 90px;
  }
}

.artist-bio {
  margin-top: 100px;
  margin-bottom: 300px;
}
.artist-bio .name {
  font-family: "AkzidenzGrotesk-Super", sans-serif;
  font-size: max(11.5vw, 55px);
  line-height: max(17vw, 97px);
}
@media screen and (min-width: 1440px) {
  .artist-bio .name {
    font-size: 170px;
    line-height: 255px;
  }
}
.artist-bio .bio {
  font-family: "AkzidenzGrotesk-Medium", sans-serif;
  font-size: max(1.6vw, 20px);
  line-height: max(2.1vw, 28px);
}
@media screen and (min-width: 768px) {
  .artist-bio .bio {
    font-size: 24px;
    line-height: 34px;
  }
}
.artist-bio .links {
  margin-top: 30px;
  display: flex;
}
.artist-bio .images {
  margin-top: 90px;
}
.artist-bio .images .image--main {
  display: block;
  width: 50%;
  max-width: 680px;
  margin: 0 auto;
}
.artist-bio .images .image--left {
  width: 38%;
  max-width: 480px;
  margin-top: 55px;
}
.artist-bio .images .image--right {
  display: block;
  width: 50%;
  max-width: 630px;
  margin-top: 55px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .artist-bio .images {
    margin-top: 50px;
  }
  .artist-bio .images img {
    width: 100% !important;
    position: relative !important;
    bottom: inherit !important;
    right: inherit !important;
    margin: 30px auto 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .artist-bio {
    margin-top: 50px;
    margin-bottom: 150px;
  }
}

/*------------------------ ATELIER ------------------------------*/
.atelier .atelier_content {
  margin-top: 90px;
  margin-bottom: 800px;
}
.atelier .atelier_content .description {
  font-family: "AkzidenzGrotesk-Medium", sans-serif;
  font-size: max(1.6vw, 20px);
  line-height: max(2.1vw, 28px);
}
@media screen and (min-width: 768px) {
  .atelier .atelier_content .description {
    font-size: 24px;
    line-height: 32px;
  }
}
.atelier .atelier_content .images {
  position: relative;
  margin-top: 110px;
}
.atelier .atelier_content .images .image--main {
  display: block;
  width: 50%;
  max-width: 630px;
  margin: 0 auto;
}
.atelier .atelier_content .images .image--left {
  width: 35%;
  max-width: 480px;
  margin-top: 55px;
}
.atelier .atelier_content .images .image--right {
  width: 46%;
  max-width: 493px;
  margin-top: 50px;
  position: absolute;
  right: -80px;
  bottom: -500px;
}
@media screen and (max-width: 767px) {
  .atelier .atelier_content .images {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .atelier .atelier_content .images img {
    width: 100% !important;
    position: relative !important;
    bottom: inherit !important;
    right: inherit !important;
    margin: 30px auto 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .atelier .atelier_content {
    margin-bottom: 600px;
  }
}
@media screen and (max-width: 767px) {
  .atelier .atelier_content {
    margin-bottom: 150px;
  }
}

/*------------------------ EVENTS ------------------------------*/
.events {
  padding-bottom: 400px;
  overflow-x: initial;
  height: auto;
}
.events nav {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .events nav {
    margin-bottom: 60px;
  }
}
.events .event_content .container {
  padding-top: 40px;
  border-top: 1px solid rgb(242, 242, 242);
}
.events .event_content .event_name {
  font-family: "AkzidenzGrotesk-Super", sans-serif;
  font-size: max(4vw, 32px);
  line-height: max(4vw, 35px);
  margin-bottom: 40px;
}
@media screen and (min-width: 1440px) {
  .events .event_content .event_name {
    font-size: 60px;
    line-height: 60px;
  }
}
.events .event_content .event_infos {
  margin-bottom: 40px;
}
.events .event_content .event_description {
  display: flex;
}
.events .event_content .event_description img {
  width: 35%;
  max-width: 544px;
  margin-left: 40px;
  margin-right: 60px;
}
.events .event_content .event_description p {
  width: 375px;
  font-family: "AkzidenzGrotesk-MEdium", sans-serif;
  font-size: max(1.6vw, 20px);
  line-height: max(2.1vw, 28px);
}
@media screen and (min-width: 1024px) {
  .events .event_content .event_description p {
    font-size: 24px;
    line-height: 36px;
  }
}
.events .event_content .event_description p a {
  text-decoration: none;
  color: #000;
}
.events .event_content .event_description p a:hover {
  text-decoration: underline;
}
.events .event_content .separator {
  margin-top: 60px;
  margin-bottom: 40px;
  width: 100%;
  height: 1px;
  background-color: #F2F2F2;
}
@media screen and (max-width: 768px) {
  .events .event_content .container {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .events .event_content .event_description {
    flex-wrap: wrap;
    justify-content: center;
  }
  .events .event_content .event_description img {
    width: 100%;
    max-width: 320px;
    margin: 0 0 30px;
  }
  .events .event_content .event_description p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .events {
    padding-bottom: 200px;
  }
}

/*------------------------ CONTACT ------------------------------*/
.contact .contact_content {
  margin-top: 90px;
  margin-bottom: 150px;
}
.contact .contact_content img {
  width: 93px;
  margin-bottom: 30px;
}
.contact .contact_content .contact_name {
  font-family: "AkzidenzGrotesk-Super", sans-serif;
  font-size: 34px;
  line-height: 51px;
  margin-bottom: 25px;
}
.contact .contact_content .contact_infos {
  font-family: "AkzidenzGrotesk-MEdium", sans-serif;
  font-size: 24px;
  line-height: 36px;
}
.contact .contact_content .contact_infos a {
  text-decoration: none;
  color: #000;
}
.contact .contact_content .contact_infos a:hover {
  text-decoration: underline;
}

/*------------------------ ARTWORK ------------------------------*/
.artwork .container {
  position: relative;
}
.artwork .artwork_content {
  margin-top: 90px;
}
.artwork .artwork_content .artwork_thumbnail {
  position: absolute;
  max-width: 304px;
  right: 0;
  top: -10px;
}
@media screen and (max-width: 767px) {
  .artwork .artwork_content .artwork_thumbnail {
    position: relative;
    top: 0;
    margin-bottom: 20px;
    max-width: 90%;
  }
}
.artwork .artwork_content .artwork_name {
  margin-top: 10px;
  font-family: "AkzidenzGrotesk-Super", sans-serif;
  font-size: max(11.5vw, 55px);
  line-height: max(17vw, 97px);
}
@media screen and (min-width: 1440px) {
  .artwork .artwork_content .artwork_name {
    font-size: 170px;
    line-height: 255px;
  }
}
.artwork .artwork_content .artwork_desciprion {
  font-family: "AkzidenzGrotesk-MEdium", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.artwork .artwork_content .artwork_images {
  margin-top: 60px;
  position: relative;
}
.artwork .artwork_content .artwork_images .artwork--all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 130px;
}
.artwork .artwork_content .artwork_images .artwork--all img {
  width: 19.2%;
}
.artwork .artwork_content .artwork_images img {
  display: block;
}
.artwork .artwork_content .artwork_images .image--main {
  display: block;
  width: 70%;
  max-width: 842px;
  margin: 0 auto;
}
.artwork .artwork_content .artwork_images .image--main--small {
  display: block;
  width: 70%;
  max-width: 615px;
  margin: 90px auto 0;
}
.artwork .artwork_content .artwork_images .image--left {
  width: 41%;
  max-width: 522px;
  margin-top: 110px;
}
.artwork .artwork_content .artwork_images .image--left--big {
  width: 70%;
  max-width: 848px;
  margin-top: 140px;
}
.artwork .artwork_content .artwork_images .image--right {
  width: 41%;
  max-width: 520px;
  margin-top: -60px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .artwork .artwork_content .artwork_images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
  .artwork .artwork_content .artwork_images .artwork--all {
    display: none;
  }
  .artwork .artwork_content .artwork_images img {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    bottom: inherit !important;
    right: inherit !important;
    margin: 30px auto 0 !important;
  }
}
.artwork .artwork_others {
  margin-top: 200px;
}
.artwork .artwork_others a {
  font-family: "AkzidenzGrotesk-MEdium", sans-serif;
  font-size: 21px;
  line-height: 21px;
  color: #000;
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .artwork .artwork_others {
    margin-top: 15vw;
  }
}
.artwork .order {
  margin-bottom: 300px;
}
.artwork .order p {
  font-family: "AkzidenzGrotesk-Super", sans-serif;
  font-size: max(8vw, 40px);
  line-height: max(11vw, 75px);
}
@media screen and (min-width: 1440px) {
  .artwork .order p {
    font-size: 90px;
    line-height: 135px;
  }
}
.artwork .order a {
  font-family: "AkzidenzGrotesk-MEdium", sans-serif;
  font-size: max(2.7vw, 21px);
  line-height: max(2.7vw, 21px);
  color: #000;
}
@media screen and (min-width: 1440px) {
  .artwork .order a {
    font-size: 25px;
    line-height: 37px;
  }
}
@media screen and (max-width: 768px) {
  .artwork .order {
    margin-bottom: 150px;
  }
}