.ham {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--white-font);
  stroke-width:5.5;
  stroke-linecap:round;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.menu-burger .top {
  stroke-dasharray: 40 160;
}
.menu-burger .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.menu-burger .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.menu-burger.active .top {
  stroke-dashoffset: -64px;
}
.menu-burger.active .middle {
  //stroke-dashoffset: -20px;
  transform: rotate(90deg);
}
.menu-burger.active .bottom {
  stroke-dashoffset: -64px;
}

.logo-container {
    position: absolute;
    width: 100px;
    height: 150px;
    border-radius: 0 0 100px 100px;
    z-index: 10;
}
.logo-container img {
  border-radius: 0 0 100px 100px;
}
body.nav-black .ham path {
  stroke: var(--black-font);
}
body.show-menu .ham path {
  stroke: var(--white-font);
}
body.sticky-header header {
  position: fixed;
  background-color: var(--black-bg-70);
  backdrop-filter: blur(20px);
  min-height: 100px;
}
body.sticky-header.nav-black header {
  background-color: var(--white-bg);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: all .1s ease-in-out;
}
header .container,
header .header-menu {
    gap: 30px;
}
header .header-mobile-menu {
  position: fixed;
  padding: 60px 20px;
  background-color: var(--black-bg);
  color: var(--white-font);
  top: 0;
  width: 100%;
  height: 100vh;
  padding-top: 130px;
  justify-content: space-evenly;
  align-items: center;
  right: -100%;
  transition: .3s;
}
header .container:before,
header .container:after {
    content: none;
}
header .header-menu {
    align-items: center;
    padding: 30px 0 35px 150px;
}
header .desktop-menu ul {
    gap: 15px;
}
header .mobile-menu {
  align-items: center;
}
header .desktop-menu ul li,
header .mobile-menu li {
    position: relative;
    color: var(--white-font);
    text-wrap: nowrap;
}
header .mobile-menu li {
  width: fit-content;
}
body.nav-black header .desktop-menu ul li {
    color: var(--black-font);
}
body.nav-white header .desktop-menu ul li {
    color: var(--white-font);
}
header .desktop-menu ul li::after,
header .mobile-menu li::after,
footer .footer-menu li::after,
.underline::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60%;
    background-color: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
header .desktop-menu ul li:hover::after,
header .desktop-menu ul li.current-menu-item::after,
header .mobile-menu li:hover::after,
header .mobile-menu li.current-menu-item::after,
footer .footer-menu li:hover::after,
footer .footer-menu li.current-menu-item::after,
.underline:hover::after {
    transform: scaleX(1);
}
@media only screen and (max-width: 769px) {
  .ham {
    top: 10px;
    right: 10px;
  }
  body.sticky-header header {
    min-height: 70px;
  }
  .logo-container {
    width: 75px;
    height: 100px;
  }
}
@media only screen and (max-width: 1366px) {
  header .header-menu {
    display: none;
  }
  .ham {
    display: block;
    float: right;
  }
  body.show-menu header {
    position: fixed;
  }
  body.show-menu header .header-mobile-menu {
    right: 0;
  }
  body.show-menu header .header-mobile-menu ul.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  body.show-menu .mobile-menu-footer .language-toggle {
    margin-bottom: 10px;
  }
}

.language-toggle {
	color: var(--white-font);
}
.language-toggle ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.language-toggle a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	width: 35px;
	height: 35px;
	z-index: 1;
}
.language-toggle a span {
	z-index: 1;
}
.language-toggle a::after {
	display: none;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--pink);
	border-radius: 100%;
	width: 100%;
	height: 100%;
}
.language-toggle a:hover {
	background-color: var(--pink);
}
.language-toggle a:has(.wpml-ls-native)::after {
	display: block;
}
/* END HEADER */

/* START HOMEPAGE */
.home .featured-artists ul {
  flex-direction: row;
  text-align: start;
}
.home .hero-info p {
  margin-bottom: 50px;
}
.home section.sisi50 {
  background-color: var(--aqua-bg);
}
.home .latest-news-articles .title-info-description {
  align-items: center;
}
.home .latest-news-articles .title-info-description p {
  width: 100%;
  max-width: 820px;
}
.home .latest-news-articles ul {
  min-height: 521px;
  margin-bottom: 50px
}
.home .latest-news-article .article-preview {
  text-align: start;
}
.home .sisi60 .info p {
	margin-bottom: 20px;
}
.home .sisi60,
.home .contact,
.home .contact-addresses {
  background-color: var(--beige-bg);
}
@media only screen and (max-width: 1025px) {
  .home .side-image-side-info {
    text-align: center;
  }
  .home .latest-news-articles ul {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 769px) {
  .home section.sisi50 {
    padding-bottom: 20px;
  }
  .home section.banner {
    padding-bottom: 75px;
  }
  .home section.contact {
    padding: 0;
  }
}
/* END HOMEPAGE */

/* START ABOUT PAGE */
.about-page {
  color: var(--white-font);
}
.about-page .about-projects-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.about-page .about-projects-links a {
  display: inline;
  position: relative;
  text-transform: uppercase;
  font-family: 'seravek';
  font-size: 24px;
}
.about-page .flex-row figure,
.about-page .flex-row .video-wrapper {
  width: 100%;
  min-height: auto;
  aspect-ratio: 16 / 9;
}
.about-page .sisi60 .flex-row.mb100:last-of-type {
  margin-bottom: 0;
}
.about-page .sisi60 .animation {
  position: absolute;
  top: 0;
  right: 0;
}
.about-page .sisi60 .flex-row:nth-child(odd) .animation {
  max-width: fit-content;
  position: absolute;
  top: -40px;
  left: 10px;
}
.about-page .sisi60 .flex-row:nth-child(even) .animation {
  max-width: fit-content;
  position: absolute;
  top: -40px;
  right: 10px;
}
.about-page .sisi60 .container {
  align-items: center;
}
.about-page .title-wrapper {
  width: 100%;
  max-width: 760px;
}
.about-page section.animated-1 {
  flex-direction: row-reverse;
  gap: 50px;
  padding: 0;
}
.about-page section.mission {
  position: relative;
  padding: 100px 0;
}
.about-page section.mission .animation {
  position: absolute;
  top: -30px;
  right: 0;
}
.about-page .mission h2 {
  width: 100%;
  max-width: 1290px;
}
.about-page .mission h2 p {
  font-size: 60px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: math-auto;
}
.about-page .mission h2 p strong {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}
.about-page .mission h2 strong::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -25px;
  width: 50px;
  height: 30px;
  background-image: url('../img/shape-scris.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.about-page .mission h2 strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 85%;
  height: 8px;
  background-image: url(../img/linie-text.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.about-page .mission figure {
  width: 80%;
  height: 480px;
  margin-bottom: 60px;
}
.about-page .mission figure img {
  border-radius: 0 240px 240px 0;
}
.about-page .mission .container.medium {
  display: flex;
  justify-content: flex-end;
}
.about-page .mission .container.medium p {
  width: 100%;
  max-width: 590px;
}
.about-page .swiper-button-next path,
.about-page .swiper-button-prev path {
  stroke: var(--white-font);
  transition: stroke .3s ease-in-out;
}
.about-page section.animated-2 .animation svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1600px) {
  .about-page section.animated-1 {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media only screen and (max-width: 769px) {
  .about-page .about-us-section h2 {
    margin-bottom: 20px;
  }
  .about-page section.animated-1 {
    flex-direction: column-reverse;
    gap: 0;
  }
  .about-page section.animated-1 {
    display: none;
  }
  .about-page section.animated-1 .animation {
    margin-bottom: 20px;
  }
  .about-page .sisi60 {
    padding: 0;
  }
  .about-page .title-wrapper {
    margin-bottom: 60px;
  }
  .about-page .sisi60 .animation {
    position: relative;
    width: 100%;
    max-width: 100px;
    margin-bottom: 20px;
  }
  .about-page .sisi60 .animation svg {
    width: 100%;
    height: auto;
  }
  .about-page .sisi60 .flex-row:nth-child(odd) .animation {
    left: 25px;
  }
  .about-page .sisi60 .flex-row:nth-child(even) .animation {
    right: 25px;
  }
  .about-page section.animated-2 {
    padding: 0;
  }
  .about-page section.mission {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
  }
  .about-page section.mission .animation {
    position: relative;
    align-self: end;
    max-width: 130px;
  }
  .about-page section.mission .animation svg {
    width: 100%;
    height: auto;
  }
  .about-page .mission h2 p {
    font-size: 28px;
  }
  .about-page .mission h2 strong::before {
    top: -10px;
    left: -15px;
    width: 30px;
    height: 18px;
  }
  .about-page .mission h2 strong::after {
    bottom: -2px;
    right: 14px;
  }
  .about-page .mission figure {
    width: 90%;
    height: 210px;
  }
  .about-page section.contact {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .about-page .about-projects-links {
    flex-direction: column;
  }
}
/* END ABOUT PAGE */

/* START BLOG PAGE */
.blog .wpml-ls-item {
  color: var(--black-font);
}
.blog .wpml-ls-item:hover {
  color: var(--white-font);
}
.blog .wpml-ls-current-language {
  color: var(--white-font);
}
.blog-page section.hero-banner {
    padding: 140px 0 20px;
}
.blog-page section.hero-banner .title-wrapper {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}
.blog-page article.featured {
  width: 100%;
  min-height: 600px;
  align-items: flex-end;
  padding: 60px;
}
.blog-page article.featured::after {
  height: 90%;
}
.blog-page article.featured figure {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all .3s ease-in-out;
}
.blog-page article.featured .featured-article-info {
    width: 100%;
    max-width: 880px;
    color: var(--white-font);
    z-index: 1;
}
.blog-page article.featured .article-date {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
}
.blog-page .post-previews ul {
    flex-wrap: wrap;
    row-gap: 20px;
}
.blog-page .post-previews ul li {
    width: 100%;
    max-width: 33%;
    min-height: 520px
}
.blog-page .flex-row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  text-align: left;
}
.blog-page .flex-row .item100 {
  flex: 1 1 100%;
  width: 100%;
  margin-bottom: 40px;
}
.blog-page .flex-row .item32 {
  flex: 1 1 33%;
  max-width: 34%;
  min-height: 521px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1025px) {
  .blog-page .flex-row .item32 {
    flex: 1 1 50%;
    max-width: 49%;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page article.featured {
    min-height: 400px;
    justify-content: flex-end;
    padding: 15px;
  }
  .blog-page article.featured h2,
  .blog-page article.featured .featured-article-info {
    text-align: start;
  }
  .blog-page .flex-row .item32 {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 416px;
  }
}

@media only screen and (min-width: 1025px) {
  .blog-page .flex-row .item32 {
    flex: 1 1 32%;
    /* max-width: 34%; */
  }
}
/* END BLOG PAGE */

/* START SINGLE ARTICLE */
.article-page section.hero {
  min-height: 70vh;
}
.article-page h1 {
  font-size: 28px;
}
.content-header .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 2;
}
.content-header h1,
.content-header time {
  color: var(--white-font);
}
.content-header .article-category {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 20px;
}
.article-tags {
  flex-direction: row;
  gap: 15px;
}
.article-tags li {
  font-size: 10px;
  line-height: normal;
  font-weight: 700;
  color: var(--purple);
  padding: 5px 10px;
  border: 1px solid var(--purple);
  border-radius: 5px;
  transition: all .3s ease-in-out;
}
.article-tags li:hover {
  background-color: var(--purple);
  color: var(--white-font);
}
@media only screen and (max-width: 769px) {
  .content-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .content-header .inner {
    padding: 20px;
  }
  .content-header h1 {
    text-align: start;
  }
  .article-tags {
    gap: 10px;
  }
  .article-tags li {
    font-size: 14px;
  }
}
/* END SINGLE ARTICLE */

/* START ARTISTS PAGE */
.artists-page {
  section.hero {
    min-height: 70vh;
  }
}
/* END ARTISTS PAGE */

/* START SINGLE ARTIST */
.single-artist .hero {
  min-height: 70vh;
}
.single-artist section.artist-content-section {
    padding: 300px 0 100px;
}
.artist-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 100;
    width: 100%;
    min-height: 350px;
    transform: translate(-50%, 50%);
    padding: 0;
}
.artist-card img {
    border-radius: 20px 0 0 20px;
}
.artist-card .artist-info {
  justify-content: center;
  color: var(--white-font);
  padding: 50px;
}
.artist-card .artist-info h1 {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
}
.artist-contact-section .container.black-bg {
    color: var(--white-font);
    padding: 90px 15px;
    border-radius: 120px;
}
@media only screen and (max-width: 769px) {
  .single-artist section.artist-content-section {
    padding: 230px 0 50px;
  }
  .artist-card {
    min-height: 0;
  }
  .artist-card .artist-info h1 {
    line-height: 1.2;
  }
  .artist-card figure {
    display: none;
  }
  .artist-card .social-media-container {
    margin: 0;
  }
  .artist-card .artist-info {
    align-items: center;
    padding: 25px;
    margin: 0;
  }
  .artist-contact-section .container.black-bg {
    border-radius: 20px;
  }
}
@media only screen and (min-width: 1320px) {
    .artist-card.container {
        padding: 0;
    }
}
@media only screen and (max-width: 769px) {
  .artist-contact-section .container.black-bg {
    padding: 50px 15px;
  }
}
/* END SINGLE ARTIST */

/* START CONTACT PAGE */
.contact-page section.hero {
    min-height: 70vh;
}
.contact-page .contact-form .form-header {
    align-items: center;
    margin-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .contact-page section.contact {
    padding-bottom: 0;
  }
}
/* END CONTACT PAGE */

/* START FOOTER */
footer {
  color: var(--white-font);
}
footer .footer-header {
  position: relative;
  padding: 50px 0;
}
footer .footer-header figure {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 150px;
  border-radius: 100px 100px 0 0;
}
footer .footer-header figure img {
  border-radius: 100px 100px 0 0;
}
footer .footer-menu-wrapper {
  border-bottom: 2px solid var(--pink);
}
footer .footer-menu-wrapper .container {
  position: relative;
  justify-content: center;
}
footer .footer-menu {
  gap: 15px;
  margin-bottom: 30px;
}
footer .footer-menu li {
  position: relative;
}
footer .footer-footer::before,
footer .footer-footer::after {
  display: none;
}
footer .footer-footer {
  justify-content: space-between;
  padding: 20px 0;
}
footer .footer-footer .gdpr {
  align-items: center;
}
footer .footer-footer a.underline {
  display: inline;
  margin-right: 20px;
}
footer .footer-footer span {
  position: relative;
  font-size: 12px;
}
footer .footer-footer span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  width: 6px;
  height: 6px;
  transform: translate(0, -50%);
  background-color: var(--pink);
  border-radius: 100%;
}
@media only screen and (max-width: 769px) {
  footer .footer-menu {
    align-items: center;
  }
  footer .footer-menu li {
    width: fit-content;
  }
  footer .social-media-container {
    justify-content: center;
  }
  footer .footer-footer .gdpr {
    gap: 25px;
  }
  footer .footer-footer a.underline {
    margin-right: 0;
  }
  footer .footer-footer span::before {
    top: -10px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
