:root {
  --white: #ffffff;
  --black: #000000;
  --light-grey: #6a6b6c;
  --lighten: #efefef;
  --orange: rgb(255, 77, 0);
  --blue: #002364;
  --backdrop: rgba(0, 0, 0, 0.4);
  --success: #7CCF91;
  --error: #CF7D7D;
  --text-color: var(--black);
  --subtext-color: var(--light-grey);
  --highlight-color: var(--orange);
  --background-color: var(--white);
  --border-color: var(--light-grey);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  touch-action: manipulation;
}

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

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

body {
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Variable.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Smooch";
  src: url("./fonts/Smooch_Sans/SmoochSans-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Apotek";
  src: url("./fonts/apotek/fonnts.com-Apotek_Extended_Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "LexaCourier";
  src: url("./fonts/courrier/couriernewpsmt.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "LexaCourier";
  src: url("./fonts/courrier/couriernewps_boldmt.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  font-size: 10px;
  --title-font: 'Apotek';
  --text-font: 'LexaCourier', sans-serif;
  --text-size: 1.6rem;
  --huge-size: clamp(4rem, 11vw, 12rem);
  color: var(--text-color);
  background: var(--background-color);
}

body {
  font-family: var(--text-font);
}

.light-text {
  color: var(--subtext-color);
}

h1,
h2,
a {
  font-family: var(--title-font);
}

a svg {
  transition: fill 0.2s ease-out;
}

a:hover svg {
  fill: var(--orange);
}

p,
a {
  font-size: var(--text-size);
}

* {
  color: var(--text-color);
}

.social-link-item svg {
  fill: var(--text-color);
}

.heading {
  font-size: clamp(3rem, 4vw, 5rem) !important;
  line-height: 1.5;
  margin-bottom: 5vh;
}
.heading span {
  display: block;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--subtext-color);
  margin-bottom: 2vh;
}

.footer {
  --text-color: white;
  display: flex;
  align-items: end;
  color: var(--text-color);
  padding: 10% 0 10vh;
  min-height: 130vh;
  position: relative;
  overflow: hidden;
}
.footer .footer-circle {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  background: var(--black);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 0;
  pointer-events: none;
}
.footer a:hover {
  color: var(--orange);
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footer .footer-socials h3 {
  font-size: 2rem;
  text-transform: uppercase;
}
.footer .footer-socials .footer-socials-list .social-link-item {
  display: flex;
  justify-content: center;
}
.footer .footer-socials .footer-socials-list a {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
}
.footer .footer-socials .footer-socials-list a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .footer-content {
  width: 100%;
}
.footer .footer-menu {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  margin-bottom: 10vh;
  padding-left: var(--wrapper-h-padding);
  padding-right: var(--wrapper-h-padding);
}
.footer .footer-contacts {
  display: grid;
  gap: 2rem;
}
.footer .contact-info-label {
  text-transform: uppercase;
  font-size: 2rem;
}
.footer .heading.footer-title {
  margin-bottom: 15vh;
  text-align: center;
  grid-column: span 3;
}
.footer .site-title {
  text-align: center;
  font-size: 3rem;
}
.footer .footer-baseline {
  font-size: 2rem;
  text-align: center;
  color: var(--subtext-color);
}
.footer .footer-bottom {
  display: flex;
  padding: 0 var(--wrapper-h-padding);
}
.footer .footer-sitemap h3 {
  color: var(--subtext-color);
  text-transform: uppercase;
  font-size: 1.5rem;
}
.footer .footer-sitemap .nav {
  display: grid;
  gap: 1rem;
}
.footer .footer-sitemap .nav a {
  font-size: 2rem;
  text-decoration: underline;
}
.footer .all-rights {
  text-align: center;
  margin-top: 10vh;
}
.footer .by-who {
  text-align: center;
}
@media screen and (max-width: 770px) {
  .footer .footer-menu {
    grid-auto-flow: row dense;
    grid-template-columns: 1fr 1fr;
  }
  .footer .footer-title heading {
    grid-column: span 2;
  }
  .footer .footer-branding {
    padding: 5vh 0;
    grid-column: span 2;
    grid-row: 3/4;
  }
  .footer .footer-socials {
    text-align: end;
  }
}

.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
}
.header .header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.header .header-wrapper .header-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header .header-wrapper .nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}
.header .header-wrapper .nav a {
  writing-mode: sideways-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--text-color, #222);
  transition: color 0.2s;
  line-height: 1.2;
  cursor: pointer;
}
.header .header-wrapper .nav a:hover, .header .header-wrapper .nav a:focus {
  color: var(--primary-color, #bd1b1b);
}
.header .header-logo {
  width: 5rem;
  padding: 1rem;
  display: block;
}
.header .header-close {
  margin-top: auto;
  align-self: flex-end;
  padding: 2rem 0;
}
.header .header-close .header-label-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .header-close .header-label-btn input[type=checkbox] {
  display: none;
}

@media screen and (max-width: 770px) {
  .main-container {
    margin-top: 70px;
  }
  .header {
    pointer-events: none;
  }
  .header .header-wrapper {
    pointer-events: all;
    flex-direction: row;
    height: unset;
    justify-content: space-between;
  }
  .header .header-wrapper .nav a {
    writing-mode: unset;
    transform: none;
  }
  .header .header-content-wrapper {
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    z-index: 100;
    width: 100%;
    transition: transform 1s cubic-bezier(0.5, 0, 0.38, 1);
    background: white;
  }
  .header .header-logo {
    position: relative;
    z-index: 1000;
  }
  .header .header-close {
    position: relative;
    z-index: 100;
    padding: 2rem;
  }
  .header .burger-icon,
  .header .close-icon {
    width: 40px;
    height: 40px;
    stroke: var(--text-color);
  }
  .header .burger-icon {
    display: block;
  }
  .header .close-icon {
    display: none;
  }
  .header .header-wrapper:has(input:checked) .burger-icon {
    display: none;
  }
  .header .header-wrapper:has(input:checked) .close-icon {
    display: block;
  }
  .header .header-wrapper:has(input:checked) .header-content-wrapper {
    pointer-events: all;
    transform: translateY(0);
  }
}
.body {
  --big-radius: 120px;
  --body-height: 100vh;
  --wrapper-h-padding: 40px;
  --border: solid 2px var(--lighten);
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0;
  width: 100vw;
  height: var(--body-height);
}

.body.logged-in {
  --body-height: calc(100vh - 32px);
}

.main-container {
  overflow-y: scroll;
  height: 100%;
  width: 100%;
}

.main {
  min-height: 100vh;
}

@media screen and (max-width: 770px) {
  .body {
    grid-template-columns: 1fr;
  }
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
  }
}
.cover,
.contain {
  display: block;
  width: 100%;
  height: 100%;
}

.cover {
  object-fit: cover;
}

.contain {
  object-fit: contain;
}

.wrapper {
  padding: 0 var(--wrapper-h-padding);
}

.infinite-scroll {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.infinite-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, white, transparent 4rem), linear-gradient(to left, white, transparent 4rem);
}
.infinite-scroll .scroll-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}
.infinite-scroll .scroll-list > * {
  flex-shrink: 0;
}

.service-tag {
  --text-color: var(--subtext-color);
  padding: 1rem 2rem;
  border: solid 1px var(--text-color);
  border-radius: 2rem;
}
.service-tag p {
  font-size: 1.6rem;
}

.catchline {
  font-size: 1.5rem;
  color: var(--subtext-color);
  font-weight: 300;
  opacity: 0.5;
  text-transform: uppercase;
}

.appear {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
}

.appear.visible {
  opacity: 1;
  transform: translateY(0);
}

.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-flow: dense row;
  width: 100%;
}

.bento-item {
  grid-column: span 2;
  grid-row: span 2;
  background: white;
}

.bento-item:nth-child(2),
.bento-item:nth-child(5) {
  grid-column: span 4;
}

.bento-item:nth-child(3),
.bento-item:nth-child(7) {
  grid-row: span 4;
}

.bento-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 4;
}

.bento-item:nth-child(6) {
  /* Normal, no wide or tall */
}

.bento-item:nth-child(8) {
  grid-column: span 4;
}

.bento-item:nth-child(1) {
  /* Normal, no wide or tall */
}

@media (max-width: 800px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
  .bento-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox .lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox .lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.lightbox .lightbox-close:hover {
  opacity: 0.7;
}
.lightbox .lightbox-close:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  padding: 1rem;
  transition: opacity 0.3s ease;
}
.lightbox .lightbox-prev:hover:not(:disabled),
.lightbox .lightbox-next:hover:not(:disabled) {
  opacity: 0.7;
}
.lightbox .lightbox-prev:disabled,
.lightbox .lightbox-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.lightbox .lightbox-prev {
  left: 2rem;
}
.lightbox .lightbox-next {
  right: 2rem;
}

@media screen and (max-width: 768px) {
  .lightbox .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  .lightbox .lightbox-content img {
    max-height: 95vh;
  }
  .lightbox .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
  }
  .lightbox .lightbox-prev,
  .lightbox .lightbox-next {
    font-size: 2.5rem;
    padding: 0.5rem;
  }
  .lightbox .lightbox-prev {
    left: 1rem;
  }
  .lightbox .lightbox-next {
    right: 1rem;
  }
}
@media screen and (max-width: 770px) {
  .body {
    --wrapper-h-padding: 2rem;
  }
}
.page-template-homepage {
  --side-width: 300px;
  --delay-one: 0.4s;
  --delay-two: 0.8s;
  --delay-three: 1.2s;
}
.page-template-homepage .hero {
  overflow-y: 0;
  margin-bottom: 5vh;
}
.page-template-homepage .hero .hero-head {
  display: flex;
  gap: 4vw;
}
.page-template-homepage .hero .hero-title {
  position: relative;
  font-size: var(--huge-size);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-100%);
  animation: fadeD 0.4s var(--delay-one) ease-out forwards;
}
@keyframes fadeD {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-template-homepage .hero .hero-logo-container {
  width: var(--huge-size);
  aspect-ratio: 1/1;
}
.page-template-homepage .hero .service-anim {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}
.page-template-homepage .hero .service-anim .services-list {
  flex: 1;
  opacity: 0;
  animation: fadeS 0.4s var(--delay-two) ease-out forwards;
}
@keyframes fadeS {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-template-homepage .hero .service-anim .call-to-action, .page-template-homepage .hero .service-anim .page-template-contact .wpcf7-form input[type=submit], .page-template-contact .wpcf7-form .page-template-homepage .hero .service-anim input[type=submit] {
  animation: fadeR 0.4s var(--delay-two) ease-out forwards;
  transform: translateX(100%);
}
@keyframes fadeR {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (max-width: 770px) {
  .page-template-homepage .hero .hero-title {
    text-align: center;
  }
  .page-template-homepage .hero .service-anim {
    display: block;
    width: 100%;
  }
  .page-template-homepage .hero .call-to-action, .page-template-homepage .hero .page-template-contact .wpcf7-form input[type=submit], .page-template-contact .wpcf7-form .page-template-homepage .hero input[type=submit] {
    margin-top: 2rem;
  }
}
.page-template-homepage .huge-pic .huge-pic-fig {
  height: 99vh;
  width: 100%;
  border-bottom-left-radius: var(--big-radius);
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: fade 0.5s var(--delay-three) ease-out forwards;
}
@keyframes fade {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.page-template-homepage .clients {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3rem;
  padding: 5vh;
}
.page-template-homepage .clients .clients-title {
  text-transform: uppercase;
  color: var(--subtext-color);
  font-size: 0.8rem;
  font-weight: 700;
}
.page-template-homepage .clients .infinite-scroll {
  flex: 1;
}
.page-template-homepage .clients .client-fig {
  height: 3rem;
  width: auto;
}
.page-template-homepage .gallery {
  padding-top: 10vh;
}
.page-template-homepage .gallery .gallery-title {
  font-size: clamp(5rem, 6vw, 10rem);
  text-align: center;
  margin-bottom: 3vh;
}
.page-template-homepage .gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.page-template-homepage .gallery .gallery-fig {
  width: 100%;
  aspect-ratio: 1/1;
}
.page-template-homepage .catchlines {
  padding: 6vw;
}
.page-template-homepage .about {
  --top-padding: 5vh;
  display: grid;
  grid-template-columns: 2fr 3fr var(--side-width);
}
.page-template-homepage .about .about-fig {
  position: sticky;
  top: 1px;
  border-top-left-radius: var(--big-radius);
  border-bottom-right-radius: var(--big-radius);
  overflow: hidden;
  height: 90vh;
  max-height: 1000px;
}
.page-template-homepage .about .about-content {
  padding-top: var(--top-padding);
  border-top: var(--border);
}
.page-template-homepage .about .about-desc {
  font-size: 2.5rem;
  line-height: 1.7;
}
.page-template-homepage .about .about-contact {
  padding-top: var(--top-padding);
  border-top: var(--border);
  border-left: var(--border);
}
.page-template-homepage .about .about-contact .about-socials a {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
}
.page-template-homepage .about .about-contact .about-socials a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-socials-list{
  display: flex;
  gap: 16px;
  align-items: center;
}
.page-template-homepage .about .about-signature {
  font-size: 3rem;
  color: var(--subtext-color);
  text-transform: uppercase;
  margin-bottom: 10vh;
}
.page-template-homepage .about .about-info {
  margin-bottom: 3vh;
}
.page-template-homepage .about .about-info p {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--subtext-color);
  margin-bottom: 1rem;
}
.page-template-homepage .about .about-info a {
  color: var(--text-color);
}
@media screen and (max-width: 700px) {
  .page-template-homepage .about {
    grid-template-columns: 1fr;
  }
  .page-template-homepage .about .about-fig {
    position: initial !important;
    //
    height: 600px !important;
    max-height: 600px !important;
  }
  .page-template-homepage .about-contact {
    //display: grid;
    //grid-template-columns: 1fr 1fr;
    border-left: 0;
  }
  .page-template-homepage .about-signature {
    grid-column: span 2;
  }
}
.page-template-homepage .services {
  --space-top: 10vh;
  display: grid;
  grid-template-columns: 1fr var(--side-width);
}
.page-template-homepage .services .services-content {
  padding-top: var(--space-top);
}
.page-template-homepage .services .services-desc {
  font-size: 1.2rem;
  color: var(--subtext-color);
  margin-bottom: 5vh;
}
.page-template-homepage .services .services-list {
  border: var(--border);
  border-right: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.page-template-homepage .services .service {
  padding: 2rem 2rem 1rem;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  gap: 3rem;
}
.page-template-homepage .services .service .service-number {
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  height: 50px;
  align-items: center;
  border: var(--border);
  font-size: 2rem;
  text-transform: uppercase;
}
.page-template-homepage .services .service .service-title {
  font-size: 2.5rem;
  font-family: "Apotek";
}
.page-template-homepage .services .service .service-desc p {
  font-size: 1.9rem;
  margin-top: auto;
  color: var(--subtext-color);
}
.page-template-homepage .services .service + .service {
  border-left: var(--border);
}
.page-template-homepage .services .services-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  gap: 2rem;
  padding: var(--space-top) 1rem 1rem;
  border-left: var(--border);
  border-bottom: var(--border);
}
.page-template-homepage .services .services-side h3 {
  font-size: 3rem;
  text-transform: uppercase;
  width: 100%;
}
.page-template-homepage .services .services-side .tag {
  border: var(--border);
  border-radius: 3rem;
  padding: 10px;
}
@media screen and (max-width: 700px) {
  .page-template-homepage .services {
    grid-template-columns: 1fr;
  }
  .page-template-homepage .services .services-title,
  .page-template-homepage .services .services-desc {
    padding-left: var(--wrapper-h-padding);
    padding-right: var(--wrapper-h-padding);
  }
  .page-template-homepage .services .services-list {
    grid-template-columns: 1fr;
  }
  .page-template-homepage .services .services-side {
    padding-top: 2rem;
  }
  .page-template-homepage .services .service + .service {
    border-top: var(--border);
    border-left: 0;
  }
}
.page-template-homepage .faq {
  width: 100%;
  max-width: 1000px;
  margin: 10vh auto;
}
.page-template-homepage .faq .faq-title {
  margin-bottom: 5vh;
}
.page-template-homepage .faq .drawers {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-template-homepage .faq .drawer {
  border-top: var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.page-template-homepage .faq .drawer:last-child {
  border-bottom: var(--border);
}
.page-template-homepage .faq .drawer .drawer-question {
  padding: 3vh 0;
  cursor: pointer;
  font-size: 2rem;
  font-family: var(--text-font);
  color: var(--text-color);
  transition: color 0.3s ease;
  position: relative;
  user-select: none;
}
.page-template-homepage .faq .drawer .drawer-question:hover {
  color: var(--subtext-color);
}
.page-template-homepage .faq .drawer .drawer-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}
.page-template-homepage .faq .drawer .drawer-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.4s ease, opacity 0.4s ease 0.1s, padding 0.3s ease;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--text-color);
}
.page-template-homepage .faq .drawer .drawer-answer > * {
  min-height: 0;
  overflow: hidden;
}
.page-template-homepage .faq .drawer.active .drawer-question {
  color: var(--subtext-color);
}
.page-template-homepage .faq .drawer.active .drawer-question::after {
  transform: rotate(45deg);
}
.page-template-homepage .faq .drawer.active .drawer-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 0 3vh 0;
  transition: grid-template-rows 0.4s ease, opacity 0.3s ease, padding 0.3s ease 0.1s;
}

.page-template-gallerypage h1 {
  font-size: var(--huge-size);
}
.page-template-gallerypage .logo-container {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  padding: 0;
  transform: scale(0.7)
}
@media screen and (max-width: 800px) {
  .page-template-gallerypage .logo-container {
    max-width: 150px;
  }
}

.page-template-portfolio .portfolio-hero {
  padding: 8vh 6vw 4vh;
}
.page-template-portfolio .portfolio-hero .heading.huge {
  text-align: center;
}
.page-template-portfolio .portfolio-hero .logo-container {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  padding: 0;
  transform: scale(0.7)
}
.page-template-portfolio .portfolio-hero .hero-content {
  --top-padding: 5vh;
  display: grid;
  gap: 1rem;
  //grid-template-columns: 3fr 2fr;
  grid-template-columns: 1fr minmax(0, 800px) 1fr;
}
.page-template-portfolio .portfolio-hero .hero-content .hero-content-left {
  align-self: center;
  grid-column : 2; //
}
.page-template-portfolio .portfolio-hero .hero-content .portfolio-subtitle {
  font-size: 3rem;
}
.page-template-portfolio .portfolio-hero .hero-content .portfolio-hero-image {
  position: sticky;
  top: 0;
  border-top-left-radius: var(--big-radius);
  border-bottom-right-radius: var(--big-radius);
  overflow: hidden;
  height: 60vh;
  max-height: 1000px;
}
.page-template-portfolio .portfolio-hero .hero-content .portfolio-intro {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 770px) {
  .page-template-portfolio .portfolio-hero {
    padding: 2vh var(--wrapper-h-padding);
  }
  .page-template-portfolio .portfolio-hero .hero-content {
    //grid-template-columns: 1fr;
  }
}
.page-template-portfolio .portfolio-grid-section {
  padding: 4vh 0 8vh;
}
.page-template-portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 7rem;
}
.page-template-portfolio .portfolio-motif-card .portfolio-motif-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.page-template-portfolio .portfolio-motif-card .portfolio-motif-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 0.75rem;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
}
.page-template-portfolio .portfolio-motif-card .portfolio-motif-title {
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-transform: uppercase;
}
.page-template-portfolio .portfolio-motif-card:hover .portfolio-motif-image-wrapper {
  transform: scale(1.1);
}
.page-template-portfolio .portfolio-empty-state {
  padding: 4vh 6vw;
  text-align: center;
  color: var(--subtext-color);
}

@media (max-width: 767px) {
    .page-template-portfolio .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .page-template-portfolio .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.motif-hero {
  --image-size: 65vh;
  display: grid;
  grid-template-columns: 1fr var(--image-size);
  width: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.motif-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.motif-licence-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2vh;
}

.lic-tag {
  border: var(--border);
  padding: 1rem 2rem;
  border-radius: var(--big-radius);
}

.motif-carac {
  display: flex;
  justify-content: center;
  align-items: center;
}

.motif-hero-terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4vh 0;
}

.motif-hero-term {
  color: var(--subtext-color);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  opacity: 0.4;
  font-size: 2em;
}

.motif-hero-image {
  overflow: hidden;
  border-radius: 0px 0px 0px var(--big-radius);
  height: var(--image-size);
}

.motif-colors {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  margin: 10vh 0;
}

.motif-color {
  width: 100%;
}

.motif-color-swatch {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}

.motif-gallery .motif-gallery-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.motif-gallery .motif-gallery-item {
  height: 70vh;
  width: 45%;
  max-width: 400px;
}
.motif-gallery .motif-gallery-item:nth-child(2n) {
  height: 80vh;
}

.motif-usage {
  padding: 5vh 0;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.motif-usage-content {
  font-size: 1.6rem;
}

@media screen and (max-width: 1000px) {
  .motif-hero {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 770px) {
  .motif-hero {
    --image-size: 50vh;
  }
  .motif-colors {
    padding: 2vh var(--wrapper-h-padding);
  }
  .motif-usage {
    padding: 5vh var(--wrapper-h-padding);
  }
  .motif-gallery .motif-gallery-grid {
    display: grid;
  }
  .motif-gallery .motif-gallery-item {
    align-self: center;
    justify-self: center;
    height: 70vh;
    width: 90%;
    max-width: 400px;
  }
}
.page-template-contact {
  --form-h-wrapper: 1000px;
}
.page-template-contact .contact-template {
  max-width: var(--form-h-wrapper);
  margin: 0 auto;
}
.page-template-contact .contact-template .contact-hero {
  padding-top: 12vh;
  padding-bottom: 8vh;
}
.page-template-contact .contact-template .contact-hero .contact-hero-head {
  display: grid;
  gap: 4vw;
  align-items: flex-start;
}
.page-template-contact .contact-template .contact-hero .contact-hero-logo {
  width: max(5rem, 15vh);
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.page-template-contact .contact-template .contact-hero .contact-hero-title {
  margin-bottom: 2vh;
  text-transform: uppercase;
}
.page-template-contact .contact-template .contact-hero .contact-hero-subtitle {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 770px) {
  .page-template-contact .contact-template .contact-hero .contact-hero-head {
    flex-direction: column;
    gap: 2rem;
  }
  .page-template-contact .contact-template .contact-hero .contact-hero-subtitle {
    max-width: none;
  }
}
.page-template-contact .contact-template .contact-section {
  padding-top: 8vh;
  padding-bottom: 8vh;
}
.page-template-contact .contact-template .contact-section .contact-section-head {
  margin-bottom: 4vh;
}
.page-template-contact .contact-template .contact-section .contact-section-title {
  margin-bottom: 2vh;
  text-align: center;
}
.page-template-contact .contact-template .contact-section .contact-section-intro {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7;
}
.page-template-contact .contact-template .contact-portfolio .contact-form-wrapper {
  margin-top: 4vh;
}

.page-template-contact .wpcf7-form {
  max-width: 700px;
  margin: 0 auto;
  gap: 2rem;
}
.page-template-contact .wpcf7-form label {
  border-radius: 0;
  font-size: 1.6rem;
  padding: 0;
  border: 0;
  flex-direction: column;
  align-items: stretch;
  white-space: normal;
}
.page-template-contact .wpcf7-form label .label-text {
  font-family: var(--title-font);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--subtext-color);
  margin-bottom: 0.5rem;
}
.page-template-contact .wpcf7-form input:not([type=submit]),
.page-template-contact .wpcf7-form textarea {
  font-family: var(--text-font);
  font-size: 1.6rem;
  border: 0;
  border-bottom: 1px solid var(--text-color);
  background: none;
  padding: 0.6rem 0;
  width: 100%;
}
.page-template-contact .wpcf7-form textarea {
  min-height: 7rem;
}
.page-template-contact .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
}
.page-template-contact .wpcf7-form .wpcf7-response-output {
  font-size: 1.4rem;
}
.page-template-contact .wpcf7-form input[type=submit] {
  margin-top: 3rem;
  margin-left: auto;
  border: 0;
}
@media screen and (max-width: 760px) {
  .page-template-contact .wpcf7-form {
    grid-template-columns: 1fr;
  }
  .page-template-contact .wpcf7-form label,
  .page-template-contact .wpcf7-form .wpcf7-response-output {
    grid-column: auto;
  }
}

.call-to-action, .page-template-contact .wpcf7-form input[type=submit] {
  background: var(--highlight-color);
  color: var(--white);
  align-content: center;
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem 3rem;
  position: relative;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */