/*
Theme Name: SU—F Fix for Shopify
Author: So Uncalled—For
Description: Custom Theme for SU—F Fix
Version: 0.0.1
Tags: custom, su-f, souncalledfor, sufsufstudio, design studio, design, studio
*/

/*
 * Globals
 */

@font-face {
    font-family: "suf font";
    src: url("assets/fonts/AkkuratLight.woff") format("woff"),
         url("assets/fonts/AkkuratLight.woff2") format("woff2");
    font-weight: 300;
}

@font-face {
    font-family: "suf font";
    src: url("assets/fonts/AkkuratRegular.woff") format("woff"),
    url("assets/fonts/AkkuratRegular.woff2") format("woff2");
    font-weight: 400;
}

:root {
    --fs-xlarge: 3.6vw;
    --fs-large: 2.4vw;
    --fs-medium: 1.6vw;
    --fs-small: 1.2vw;
    --fs-xsmall: 0.9vw;
    --line-height-l: 1.16;
    --line-height-m: 1.33;
    --line-height-s: 1.5;
    --white: 255, 255, 255;
    --light-grey: 230, 230, 230;
    --grey: #999999;
    --dark-grey: #444444;
    --black: #000000;
    --blurple: 88, 77, 255;
    --mid-blurple: 215, 218, 255;
    --light-blurple: 215, 218, 255;
    --orange: 255, 102, 0; 

    -webkit-font-smoothing: antialiased;
}

html,
body {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
}

body {
    -ms-autohiding-scrollbar: auto;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    scroll-behavior: smooth;
    overflow-x: hidden;
    color: black;
    font-family: "suf font", Helvetica, Arial, sans-serif;
}

body.dark {
    color: #eeeeee;
    background-color: #141414;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*
 * Fundamentals
 */

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p,
input,
textarea,
figcaption,
label,
button,
details {
    font-family: "suf font", Helvetica, Arial, sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

h1,
.section-footer {
    font-size: var(--fs-xlarge);
    line-height: var(--line-height-l);
    letter-spacing: -0.03vw;
    margin-bottom: calc(var(--fs-xlarge) * var(--line-height-m));
}

h2,
.wp-block-group:has(h2) {
    font-size: var(--fs-large);
    line-height: var(--line-height-m);
    margin-bottom: calc(var(--fs-large) * var(--line-height-m));
}

.section-intro p,
h3,
h4,
.section-marquee {
    font-size: var(--fs-medium);
    line-height: var(--line-height-m);
    margin-bottom: calc(var(--fs-medium) * var(--line-height-m));
}

.section-header .header-container > ul > li:not(:first-of-type) {
    font-size: var(--fs-small);
    line-height: var(--line-height-s);
    font-weight: 400;
}

.services-list h3,
.support-list h3,
.store-container li,
h5,
p,
input,
summary {
    font-size: var(--fs-small);
    line-height: var(--line-height-s);
}

.services-list h3 {
    line-height: var(--line-height-m);
}

p,
.store-container li {
    margin-bottom: calc(var(--fs-small) * var(--line-height-s));
}

p + h5,
p + .wp-block-buttons,
p + .wp-block-group {
    margin-top: auto;
}

.services-list p {
    font-size: var(--fs-xsmall);
    line-height: var(--line-height-s);
    letter-spacing: 0.025vw;
    margin-bottom: calc((var(--fs-xsmall) * var(--line-height-s)) * 2);
}

a {
    text-decoration: none;
    color: var(--black);
}

body.dark a {
    color: #eeeeee;
}


h6,
.cat-menu,
a.wp-block-button__link,
.lang-button,
figcaption,
.footer-legal-box {
    font-size: var(--fs-xsmall);
    font-weight: 400;
    letter-spacing: 0.025vw;
    line-height: var(--line-height-s);
}

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

strong, b {
    font-weight: 400;
}

figure {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    margin: 0;
    width:100%;
}

img,
video {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.section-content figcaption {
    margin-top: 1vw;
    margin-bottom: 0 !important;
}

#mc-embedded-subscribe {
    font-family: "suf font", Helvetica, Arial, sans-serif;
}

/*
 * Background
 */


@keyframes shape-1 {
    0% {
        transform: translate(-30%,40%);
    }

    25% {
        transform: translateY(20%);
    }

    50% {
        transform: translate(30%,-10%);
    }

    75% {
        transform: translate(-30%,40%);
    }

    to {
        transform: translate(-30%,40%);
    }
}

@keyframes shape-2 {
    0% {
        transform: translate(20%,-40%);
    }

    20% {
        transform: translate(0);
    }

    40% {
        transform: translate(-40%,50%);
    }

    60% {
        transform: translate(-20%,-20%);
    }

    80% {
        transform: translate(10%,-30%);
    }

    to {
        transform: translate(20%,-40%);
    }
}

.background {
    position: fixed;
    inset: 0;
    z-index: -10;
}

.background-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: blur(150px);
    transform: translateZ(0);
    overflow:hidden;
}

.background-shape {
    width: 25vw;
    height: 25vw;
    animation-duration: 20s;
    position: absolute;
    border-radius: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.1,0,.9,1);
}

.shape-1 {
    bottom: 0;
    left: 0;
    background: #43ffc5;
    transform: translate(-25%, 25%);
    animation-name: shape-1;
}

.shape-2 {
    top: 0;
    right: 0;
    background: #5b70ff;
    transform: translate(-25%, 50%);
    animation-name: shape-2;
}

.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url(assets/noise.gif);
    background-size: 100px;
}

/*
 * Global
 */

main {
    display: block;
    height: auto;
    position: relative;
    min-height: 100vh;
}

section:not(.section-header),
.section {
    display: block;
    position: relative;
    height: auto;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 1s 0.5s;
    animation-fill-mode: forwards;
}

section > * {
    width: 100%;
    padding: 8vw 4vw 10vw;
    box-sizing: border-box;
    margin: auto;
    background-color: var(--white);
}

/*
 * Header
 */

header {
    position: sticky;
    top: 1.5vw;
    margin: 0 4vw;
    z-index: 250;
}

header .section-header {
    display: grid;
    align-items: center;
    position: relative;
    border-radius: 1.5vw;
    background: transparent;
    padding: 1vw 2vw;
    width: 100%;
    box-sizing: border-box;
}

.section-header::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    border-radius: 1.5vw;
    background-color: rgba(var(--light-grey), .33);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: -1;
    border: solid 0.1vw rgba(var(--white), .5);
}

body.dark .section-header::before {
    background-color: rgba(50, 50, 50, .33);
    border: solid 0.1vw rgba(100, 100, 100, .5);
}

header .header-container {
    background-color: transparent;
    padding: 0;
}

header ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header li {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1vw;
}

header li svg {
    height: 1.33vw;
    fill: rgba(var(--blurple), 1);
    margin-bottom: 0.25vw;
}

header li a, body.dark header li a {
    color: var(--grey);
}

header li:first-of-type a {
    display: flex;
    align-items: center;
}

header li a:hover {
    color: black;
}

body.dark header li > a:hover {
    color: #eeeeee;
}

header li:first-of-type a {
    letter-spacing: -0.05vw;
}

header li:first-of-type a span {
    transform: translateY(-0.1vw);
    display: inline-block;
}

/* Define the initial state for all paths */
header li svg > * {
    opacity: 0;
    transition: opacity 0s ease;
}
  
  /* Animation for each path (except the first) */
.letter-6, .line-8 {
    opacity: 1; /* First path is already visible */
}
  
.letter-1 {
    animation: fadeIn 0s ease 2s forwards;
}
  
.letter-2 {
    animation: fadeIn 0s ease 2.33s forwards;
}
  
.letter-3 {
    animation: fadeIn 0s ease 2.66s forwards;
}
  
.letter-4 {
    animation: fadeIn 0s ease 3s forwards;
}
  
.letter-5 {
    animation: fadeIn 0s ease 3.33s forwards;
}
  
.letter-7 {
    animation: fadeIn 0s ease 3.66s forwards;
}

.line-8 {
    animation:  flicker 1.5s linear infinite,
                fadeOut 0s ease 2s forwards;
}

.line-9 {
    animation: flicker 1s linear 2s infinite,
               fadeOut 0s ease 2.33s forwards;
}

.line-10 {
    animation: flicker 1s linear 2.33s infinite,
               fadeOut 0s ease 2.66s forwards;
}

.line-11 {
    animation: flicker 1s linear 2.66s infinite,
               fadeOut 0s ease 3s forwards;
}

.line-12 {
    animation: flicker 1s linear 3s infinite,
               fadeOut 0s ease 3.33s forwards;
}

.line-13 {
    animation: flicker 1s linear  3.33s infinite,
               fadeOut 0s ease 3.66s forwards;
}

.line-14 {
    animation: flicker 1.5s linear 3.66s infinite,
               fadeOut 0s ease 5.16s forwards;
}
  
@keyframes fadeIn {

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {

    to {
        opacity: 0;
    }
}

@keyframes flicker {
    0% {
      opacity: 1;
    }
    25% {
        opacity: 0;
      }
    50% {
      opacity: 1;
    }
    75% {
        opacity: 0;
      }
    100% {
      opacity: 1;
    }
}

/* Intro */

.section-intro .intro-container {
    padding: 8vw 4vw;
}

.section-intro .intro-container > h1 {
    width: 63.33%;
}

.section-intro .intro-container > p {
    width: 50%;
}

.section-intro .intro-container > p + .wp-block-buttons {
    margin-top: 4vw;
}

/*  
 * Gallery
 */

.section-gallery {
    overflow: hidden;
}

.section-gallery .gallery-container {
    padding: 0vw 4vw 10vw ;
}

.section-gallery .gallery-container > .wp-block-heading {
    margin-bottom: 4vw;
}

.section-gallery .swiper {
    width: 100%;
    display: flex;
    position: relative;
    overflow: visible;
}

.section-gallery .swiper > .swiper-wrapper {
    width: 100%;
    max-width: 100%;
}

.section-gallery .swiper .swiper-wrapper > figure {
    margin: 0;
    display: flex;
    width: auto;
    height: auto;
}

.section-gallery .swiper .swiper-wrapper > figure img {
    object-fit: contain;
    object-position: center center;
    max-width: 9vw;
    max-height: 6vw;
    height: auto;
    width: auto;
    margin: 0 2.5vw;
    opacity:0.5;
    filter: invert(0.5);
}

/*
 * Offer
 */

section.section-offer, section.section-contact {
    margin: 0 4vw;
    width:auto;
    display: grid;
    gap: 4vw;
    grid-template-columns: repeat(3, 1fr);
}

section.section-contact {
    grid-template-columns: repeat(4, 1fr);
}

.section-offer > *, .section-contact > * {
    min-height: 4vw;
    position: relative;
    border-radius: 1.5vw;
    background: transparent;
    padding: 2vw 2.5vw 2.5vw;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-offer > *:before, .section-contact > *:before{
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    border-radius: 1.5vw;
    background-color: rgba(var(--light-grey), .33);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: -1;
    border: solid 0.1vw rgba(var(--white), .75);
}

body.dark .section-offer > *:before, body.dark .section-contact > *:before {
    background-color: rgba(50, 50, 50, .33);
    border: solid 0.1vw rgba(100, 100, 100, .5);
}

.section-offer .services-container {
    grid-column: span 3;
    padding: 2vw 1.5vw 2.5vw;
}

.services-container > *:not(.services-list) {
    margin-left: 1vw;
    margin-right: 1vw;
}

.services-cat-list {
    display: flex;
    flex-wrap: wrap;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    gap: 0.5vw;
    overflow: hidden;
    transition: max-height 0.5s ease,
                margin 0.5s ease,
                opacity 0.5s ease 1s;
}

.services-cat-list.show-list {
    max-height:300px;
    margin-top: 4vw;
    opacity: 1;
    transition: max-height 0.5s ease,
                margin-top 0.5s ease,
                opacity 0.5s ease 1s;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3vw;
    max-height: 1000px;
    transition: max-height 0.5s ease,
                height 0.5s ease;

}

.services-list.expand {
    max-height: 2500px;
    transition: max-height 0.5s ease,
                height 0.5s ease;
}

.services-list > * {
    flex: 0 0 calc(25% - 2.02vw);
    width: calc(25% - 2.02vw);
    min-height: 4vw;
    max-height: 600px;
    position: relative;
    border-radius: 1vw;
    background: transparent;
    padding: 1.5vw;
    margin: 1vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: max-height 0.5s ease,
                opacity 0.5s ease 0.5s;
}

.services-list.expand > * {
    max-height: 500px;
    transition: max-height 0.5s ease,
                opacity 0.5s ease 0.5s;
}

.services-list > *::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    border-radius: 1vw;
    background-color: rgba(var(--white), .33);
    z-index: -1;
    border: solid 0.1vw rgba(var(--white), .75);
}

body.dark .services-list > *::before {
    background-color: rgba(100, 100, 100, .33);
    border: solid 0.1vw rgba(100, 100, 100, .75);
}

.services-list > *:hover::before {
    background-color: rgba(var(--white), .5);
    border: solid 0.1vw rgba(var(--white), 1);
}

body.dark .services-list > *:hover::before {
    background-color: rgba(100, 100, 100, .5);
    border: solid 0.1vw rgba(100, 100, 100, 1);
}

.services-list > *:not(:nth-of-type(-n+4)) {
    display: none;
    opacity:0;
}

.services-list.expand > *:not(:nth-of-type(-n+4)) {
    display: flex;
}

.services-list.show-more > *:not(.hide) {
    opacity: 1;
    transition: opacity 0.5s ease 0.5s;
}

.services-list .service-item.hide {
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.service-item-heading {
    display: grid;
    gap: 1.25vw;
    margin-bottom: 2vw;
    grid-template-columns: 1fr 4.5fr;
}

.service-item-heading figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0.75vw;
    overflow: hidden;
}

.service-item-heading figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.service-item-heading h3 {
    margin-bottom: 0;
    margin-top: -0.2vw;
}

.section-offer .services-load-more, .section-offer .services-contact {
    margin-top: 1.5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-list.expand + .services-load-more, .services-list:not(.expand) ~ .services-contact {
    display: none;
}

.section-offer .services-load-more > *, .section-offer .services-contact > * {
    flex: 0 0 1;
    margin: 0;
}

.section-offer .support-container {
    grid-row: 2;
    grid-column: span 1;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2vw;
    margin-top: 4vw;
}

.support-list > * {
    position: relative;
    border-radius: 1vw;
    background: transparent;
    padding: 1vw 1.5vw;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-list > *::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    border-radius: 1vw;
    background-color: rgba(var(--white), .33);
    z-index: -1;
    border: solid 0.1vw rgba(var(--white), .75);
}

body.dark .support-list > *::before {
    background-color: rgba(100, 100, 100, .33);
    border: solid 0.1vw rgba(100, 100, 100, .75);
}

.support-list > *:hover::before {
    background-color: rgba(var(--white), .5);
    border: solid 0.1vw rgba(var(--white), 1);
}

body.dark .support-list > *:hover::before {
    background-color: rgba(100, 100, 100, .5);
    border: solid 0.1vw rgba(100, 100, 100, 1);
}

.support-list h3 {
    margin:0;
}

.section-offer .store-container, .section-contact .demo-container {
    grid-column: span 2;
}

.store-container > .wp-block-group {
    position: relative;
    border-radius: 1vw;
    background: transparent;
    padding: 1vw 1.5vw;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.store-container > .wp-block-group::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    border-radius: 1vw;
    background-color: rgba(var(--white), .33);
    z-index: -1;
    border: solid 0.1vw rgba(var(--white), .75);
}

body.dark .store-container > .wp-block-group::before {
    background-color: rgba(100, 100, 100, .33);
    border: solid 0.1vw rgba(100, 100, 100, .75);
}

.store-container > .wp-block-group:hover::before {
    background-color: rgba(var(--white), .5);
    border: solid 0.1vw rgba(var(--white), 1);
}

body.dark .store-container > .wp-block-group:hover::before {
    background-color: rgba(100, 100, 100, .5);
    border: solid 0.1vw rgba(100, 100, 100, 1);
}

.section-contact .signup-container {
    grid-column: span 2;
}

.demo-container:before, .store-container:before {
    background-color: rgba(var(--mid-blurple), .5);
}

body.dark .demo-container:before, body.dark .store-container:before {
    background-color: rgba(var(--blurple), .2);
}

.demo-container > .wp-block-group {
    position: relative;
    border-radius: 1vw;
    background: transparent;
    padding: 1vw 1.5vw;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.demo-container > .wp-block-group::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    border-radius: 1vw;
    background-color: rgba(var(--white), .33);
    z-index: -1;
    border: solid 0.1vw rgba(var(--white), .75);
}

body.dark .demo-container > .wp-block-group::before {
    background-color: rgba(100, 100, 100, .33);
    border: solid 0.1vw rgba(100, 100, 100, .75);
}

.demo-container > .wp-block-group:hover::before {
    background-color: rgba(var(--white), .5);
    border: solid 0.1vw rgba(var(--white), 1);
}

body.dark .demo-container > .wp-block-group:hover::before {
    background-color: rgba(100, 100, 100, .5);
    border: solid 0.1vw rgba(100, 100, 100, 1);
}


/*
 * Signup
 */

.block-signup {
    margin: auto 0 0;
}

.mc-field-group {
    position: relative;
    flex-grow: 1;
}

.mc-field-group input {
    background-color: rgba(var(--white), .5);
    border-radius: 1vw;
    padding: 1.33vw 1.25vw 0vw 1.25vw;
    border: solid 0.1vw rgba(var(--white), .75);
    box-sizing: border-box;
    height: 4.33vw;
    width: 100%;
}

body.dark .mc-field-group input {
    border: solid 0.1vw rgba(100, 100, 100, .75);
    background-color: rgba(100, 100, 100, .5);
    color: #eeeeee;
}

.mc-field-group input::placeholder {
    opacity: 0;
}

body.dark .mc-field-group input::placeholder {
    color: #eeeeee;
}

.mc-field-group label {
    font-size: 1.2vw;
    left: 1.5vw;
    top: 1.33vw;
    margin-bottom: 0;
    pointer-events: none;
    position: absolute;
    transition: top 0.2s ease, font-size 0.2s ease;
    color: black;
}

body.dark .mc-field-group label {
    color: #eeeeee;
}

.mc-field-group input:focus+label,
.mc-field-group input:not(:placeholder-shown)+label,
.mc-field-group input:-webkit-autofill+label {
    font-size: 0.9vw;
    font-weight: 400;
    top: 0.75vw;
}

#mc-embedded-subscribe {
    border: solid 0vw rgba(var(--orange), 0.12);
    border-radius: 0.75vw;
    box-sizing: border-box;
    padding: 0.4vw 1vw 0.5vw;
    color: rgba(var(--orange), 1);
    background-color: rgba(var(--orange), 0.12);
    font-weight: 400;
    font-size: var(--fs-xsmall);
    cursor: pointer;
}

#mc-embedded-subscribe:hover {
    background-color: rgba(var(--orange), 0.25);
}

.optionalParent {
    display: flex;
    justify-content: space-between;
    gap: 1.5vw;
    position: relative;
}

.optionalParent .foot {
    position: absolute;
    right: 1.5vw;
    top: 50%;
    transform: translateY(-50%);
}


/*
 * Buttons
 */

.wp-block-button > a.wp-block-button__link {
    display: block;
    border: solid 0.1vw rgba(var(--orange), 0);
    border-radius: 0.75vw;
    box-sizing: border-box;
    padding: 0.4vw 1vw 0.5vw;
    color: rgba(var(--orange), 1);
    background-color: rgba(var(--orange), 0.12);
}

.wp-block-button:hover > a.wp-block-button__link {
    background-color: rgba(var(--orange), 0.25);
}

.wp-block-button.current > a.wp-block-button__link {
    background-color: rgba(var(--orange), 1);
    color: rgba(var(--white), 1);
}

.lang-button {
    display: flex;
    border: solid 0.1vw rgba(var(--white), .0);
    border-radius: 0.75vw;
    color: rgba(var(--black), 1);
    background-color: rgba(var(--white), .33);
    position: relative;
}

.lang-button li {
    box-sizing: border-box;
    padding: 0.4vw 0.66vw 0.5vw;
}

.lang-background {
    background-color: rgba(var(--white), 0.5);
    position: absolute;
    inset: 0.05vw;
    border-radius: 0.7vw;
    z-index:-1;
    width: 50%;
    transition: inset 0.5s ease;
}

.lang-button li.lang-item:not(.current-lang) a {
    color: var(--grey);
}


.lang-button li.lang-item.current-lang a, .lang-button li.lang-item:not(.current-lang):hover a {
    color: rgba(var(--black), 1);
}

.lang-button li.current-lang:first-child ~ .lang-background {
    right: unset;
}

.lang-button li.current-lang:not(.first-child) + .lang-background {
    left: unset;
}

.lang-button li:not(.current-lang):first-child:hover ~ .lang-background {
    right: calc(50% - 0.05vw);
}

.lang-button li:not(.current-lang):not(:first-child):hover ~ .lang-background {
    left: calc(50% - 0.05vw);
}


/*
 * About
 */


.section-about .about-container .wp-block-group > * {
    display: grid;
    gap: 1.25vw;
    margin-bottom: 2vw;
    grid-template-columns: 1fr 6fr;
}

.section-about .about-container .wp-block-group figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0.75vw;
    overflow: hidden;
}

.section-about .about-container .wp-block-group figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.section-about .about-container .wp-block-group h3 {
    margin-bottom: 0;
    margin-top: -0.25vw;
}

/*
 * Overview
 */


.wp-block-columns {
    gap: 4vw;
    margin: 0;
    justify-content: space-between;
}

.wp-block-column {
    display: flex;
    flex-direction: column;
}


/*
 * Footer
 */

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-container {
    background: transparent;
    padding: 8vw 4vw 3vw;
}

.footer-legal-box ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 4vw 0 0;
}

.footer-contact-box {
    padding: 0 0 6.5vw;
}

footer li {
    margin: 0;
    padding: 0;
}

.footer-legal-box li a {
    font-weight: 400;
    color: var(--grey);
}

footer h1 a {
    color: var(--grey);
}

.footer-legal-box li a:hover, footer h1 a:hover {
    color: black;
}

body.dark .footer-legal-box li a:hover {
    color: white;
}

@media (max-width: 781px) {

    :root {
        --fs-xlarge: 9.5vw;
        --fs-large: 7.2vw;
        --fs-medium: 5vw;
        --fs-small: 3.8vw;
        --fs-xsmall: 3vw;
    }

    /*
    * Global
    */

    section > * {
        padding: 8vw 4vw 10vw;
    }

    /*
    * Backogrund
    */

    .background-container {
        filter: blur(100px);
    }

    .background-shape {
        width: 50vw;
        height: 50vw;
    }

    /*
    * Header
    */

    header {
        top: 4vw;
    }

    header .section-header {
        border-radius: 3.5vw;
        padding: 2.5vw 4vw;
    }

    .section-header::before {
        border-radius: 3.5vw;
        border: solid 0.33vw rgba(var(--white), .5);
    }


    body.dark .section-header::before {
        border: solid 0.33vw rgba(100, 100, 100, .5);
    }

    header li svg {
        height: 4vw;
        margin-bottom:0.25vw;
    }

    header li {
        gap:2vw;
    }

    header .header-container > ul > li:not(:first-of-type):not(:last-of-type) {
        display: none;
    }

    /* Intro */

    .section-intro .intro-container {
        padding: 16vw 4vw;
    }

    .section-intro .intro-container > h1 {
        width: 100%;
    }

    .section-intro .intro-container > p {
        width: 100%;
    }

    .section-intro .intro-container > p + .wp-block-buttons {
        margin-top: 8vw;
    }

    /*
    * Buttons
    */

    .wp-block-button > a.wp-block-button__link {
        border: solid 0.33vw rgba(var(--orange), 0);
        border-radius: 1.75vw;
        padding: 0.8vw 2.5vw 1vw;
    }

    .lang-button {
        border: solid 0.33vw rgba(var(--white), .0);
        border-radius: 1.75vw;
    }
    
    .lang-button li {
        padding: 0.8vw 1.5vw 1vw;
    }
    
    .lang-background {
        inset: 0.1vw;
        border-radius: 1.55vw;
    }

    /*  
    * Gallery
    */

    .section-gallery .gallery-container {
        padding: 0vw 4vw 20vw ;
    }

    .section-gallery .gallery-container > .wp-block-heading {
        margin-bottom: 10vw;
    }

    .section-gallery .swiper .swiper-wrapper > figure img {
        max-width: 18vw;
        max-height: 12vw;
        margin: 0 4vw;

    }

    /*
    * Offer
    */

    section.section-offer, section.section-contact {
        grid-template-columns: repeat(1, 1fr);
        gap: 8vw;
    }

    section.section-contact {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-offer > *, .section-contact > * {
        border-radius: 3.5vw;
        padding: 4vw 5vw 5vw;
    }

    .section-offer > *:before, .section-contact > *:before{
        border-radius: 3.5vw;
        border: solid 0.33vw rgba(var(--white), .75);
    }

    body.dark .section-offer > *:before, body.dark .section-contact > *:before {
        border: solid 0.33vw rgba(100, 100, 100, .5);
    }

    .section-offer .services-container {
        grid-column: span 2;
        padding: 4vw 5vw 5vw;
    }

    .services-cat-list {
        gap: 1vw;
    }

    .services-cat-list.show-list {
        margin-bottom: 6vw;
    }

    .services-list {
        margin-top: 0vw;
        max-height: 1000px;
    }

    .services-list.expand {
        max-height: 5000px;
    }

    .services-list > * {
        flex: 0 0 calc(100%);
        width: calc(100%);
        margin: 2vw 0;
        border-radius: 2vw;
        padding: 3.5vw;
    }

    .services-container > *:not(.services-list) {
        margin-left: 0;
        margin-right: 0;
    }

    .services-list > *::before {
        border-radius: 3vw;
        border: solid 0.33vw rgba(var(--white), .75);
    }

    body.dark .services-list > *::before {
        border: solid 0.33vw rgba(100, 100, 100, .75);
    }

    .services-list > *:hover::before {
        border: solid 0.33vw rgba(var(--white), 1);
    }

    body.dark .services-list > *:hover::before {
        border: solid 0.33vw rgba(100, 100, 100, 1);
    }

    .service-item-heading {
        gap: 3vw;
        margin-bottom: 6vw;
        grid-template-columns: 1fr 6.66fr;
    }

    .service-item-heading figure {
        border-radius: 1.5vw;
    }

    .service-item-heading h3 {
        margin-top: -0.5vw;
    }

    .section-offer .services-load-more, .section-offer .services-contact {
        margin-top: 4vw;
    }

    .section-offer .support-container {
        grid-row: unset;
        grid-column: span 2;
    }

    .support-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 4vw;
        margin-top: 4vw;
    }

    .support-list > * {
        border-radius: 3vw;
        padding: 2.5vw 3.5vw;
    }

    .support-list > *::before {
        border-radius: 3vw;
        border: solid 0.33vw rgba(var(--white), .75);
    }

    body.dark .support-list > *::before {
        border: solid 0.33vw rgba(100, 100, 100, .75);
    }

    .support-list > *:hover::before {
        border: solid 0.33vw rgba(var(--white), 1);
    }

    body.dark .support-list > *:hover::before {
        border: solid 0.33vw rgba(100, 100, 100, 1);
    }

    .section-offer .store-container, .section-contact .demo-container {
        grid-column: span 2;
    }

    .store-container > .wp-block-group {
        border-radius: 3vw;
        padding: 2.5vw 3vw;
        margin-top: 4vw;
    }

    .store-container > .wp-block-group::before {
        border-radius: 3vw;
        border: solid 0.33vw rgba(var(--white), .75);
    }

    body.dark .store-container > .wp-block-group::before {
        border: solid 0.33vw rgba(100, 100, 100, .75);
    }

    .store-container > .wp-block-group:hover::before {
        border: solid 0.33vw rgba(var(--white), 1);
    }

    body.dark .store-container > .wp-block-group:hover::before {
        border: solid 0.33vw rgba(100, 100, 100, 1);
    }

    .section-contact .signup-container {
        grid-column: span 2;
    }

    .demo-container > .wp-block-group {
        padding: 2.5vw 3vw;
        border-radius: 2vw;
    }

    .demo-container > .wp-block-group::before {
        border-radius: 2vw;
        border: solid 0.33vw rgba(var(--white), .75);
    }

    body.dark .demo-container > .wp-block-group::before {
        border: solid 0.33vw rgba(100, 100, 100, .75);
    }

    .demo-container > .wp-block-group:hover::before {
        border: solid 0.33vw rgba(var(--white), 1);
    }

    body.dark .demo-container > .wp-block-group:hover::before {
        border: solid 0.33vw rgba(100, 100, 100, 1);
    }

    /*
    * About
    */

    .section-about > * {
        padding: 16vw 4vw 12vw;
    }

    /*
    * Signup
    */

    .block-signup {
        margin-top:4vw;
    }
    .mc-field-group input {
        border-radius: 2vw;
        padding: 4.25vw 2.5vw 0vw 2.5vw;
        border: solid 0.33vw rgba(var(--white), .75);
        height: 11.66vw;
    }

    body.dark .mc-field-group input {
        border: solid 0.33vw rgba(100, 100, 100, .75);
    }

    .mc-field-group label {
        font-size: 3.8vw;
        left: 3vw;
        top: 3.33vw;
    }

    .mc-field-group input:focus+label,
    .mc-field-group input:not(:placeholder-shown)+label,
    .mc-field-group input:-webkit-autofill+label {
        font-size: 3vw;
        top: 1.5vw;
    }

    #mc-embedded-subscribe {
        border-radius: 1.75vw;
        padding: 0.8vw 2.5vw 1vw;
    }

    .optionalParent {
        gap: 3vw;
    }

    .optionalParent .foot {
        right: 3vw;
    }


    /*
    * Footer
    */

    .footer-container {
        padding: 16vw 4vw 6vw;
    }

    .footer-container .wp-block-columns {
        gap: 0;
    }

    .footer-container .wp-block-column:first-of-type h1 {
        margin: 0;
    }

    .footer-container .wp-block-column:last-of-type h1 {
        text-align: left
    }

    .footer-container .wp-block-columns:nth-of-type(2) .wp-block-column:first-of-type {
        flex: 0 0 80% !important;
    }

    .footer-container .wp-block-columns:nth-of-type(2) .wp-block-column:last-of-type {
        flex: 0 0 15% !important;
    }

    .footer-legal-box ul {
        margin: 16vw 0 0;
    }

}