/*
-----------------
Table of Contents
-----------------
01. GENERAL
    1.1 - Basics Styles
    1.2 - Containers
    1.3 - Flex Grid
    1.4 - Grid
    1.5 - Page Background
    1.6 - Disable Selections

02. TYPOGRAPHY
    2.1 - General
    2.2 - Text Sizes
    2.3 - Headings
    2.4 - Alignment

03. FORMS AND FIELDS

04. HEADER
    4.1 - General
    4.2 - Logo
    4.3 - Mode Switcher
    4.4 - Menu Toggler
    4.5 - Sticky Header

05. MAIN MENU POPUP
    5.1 - General
    5.2 - Main Menu
    5.3 - Contact Info
    5.4 - Menu Overlay

06. COOKIES POPUP

07. CONTENT
    07.1 - General
    07.2 - Hero Section
    07.3 - Intro Section
    07.4 - Counter Section

08. POST CONTENT

09. ELEMENTS
    09.01 - Icon Box
    09.02 - Portfolio Grid
    09.03 - Marquee
    09.04 - Toggles
    09.05 - Partners Grid
    09.06 - Testimonials
    09.07 - Coutners
    09.08 - Team Carousel
    09.09 - Journal
    09.10 - Contact Links
    09.11 - Accordeon
    09.12 - Table
    09.13 - Shop Content
    09.14 - Shop Partners List
    09.15 - Stylized List
    09.16 - Ordered List
    09.17 - Offer Section

10. FOOTER
    10.1 - General
    10.2 - Footer Info
    10.3 - Footer Menu
    10.4 - Footer Contacts
    10.5 - Footer Socials

11. ICONS

12. ANIMATIONS

13. HOVERS

-------------- */
/* 01. GENERAL
-------------- */
* {
    box-sizing: border-box;
    outline: none;
}
body,
html {
    padding: 0;
    margin: 0;
    min-height: 100%;
    max-width: 100svw;
}
body {
    position: relative;
    -webkit-tap-highlight-color: transparent;
    font-family: var(--content-ff);
    font-weight: var(--content-fw);
    font-size: var(--t-content-fs);
    line-height: var(--t-content-lh);
    letter-spacing: var(--t-content-ls);
    color: var(--s-content-text);
    background: var(--s-body-bg);
    opacity: 0;
    transition: opacity 0.5s, background-color 0.3s;
    --header-height: 0;
    --footer-height: 0;
}
body.is-loaded {
    opacity: 1;
}
.is-light,
.dark-mode .is-dark {
    display: block;
}
.is-dark,
.dark-mode .is-light {
    display: none;
}

/* --- Containers --- */
.container {
    width: var(--d-container-width);
    margin: 0 auto;
}
section.hero-section,
.is-fullwidth {
    max-width: 100svw;
    --fw-spacing: calc(0.5 * (100svw - var(--d-container-width)));
    margin-left: calc(-1 * var(--fw-spacing));
    margin-right: calc(-1 * var(--fw-spacing));
    padding-left: var(--fw-spacing);
    padding-right: var(--fw-spacing);
}
.is-fullwidth.is-stretched {
    padding-left: 0;
    padding-right: 0;
}
.is-fullwidth.is-stretched-to-right {
    padding-right: 0;
}
.is-fullwidth.is-stretched-to-left {
    padding-left: 0;
}
section.hero-section,
.is-fullwidth.is-stretched.with-gap {
    padding-left: var(--d-fw-spacing);
    padding-right: var(--d-fw-spacing);
}
section.hero-section {
    padding-top: 82px;
}

/* --- Flex Grid --- */
.flex-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 calc(-0.5 * var(--d-gap));
    position: relative;
    z-index: 3;
    width: calc(100% + var(--d-gap));
}
.flex-row.v-align-middle {
    align-items: center;
}
.flex-row.v-align-bottom {
    align-items: flex-end;
}
.flex-row.v-align-stretch {
    align-items: stretch;
}
.flex-no-gap,
.flex-row.flex-no-gap {
    margin: 0 auto;
    width: 100%;
}
.flex-row > [class*='flex-col-'] {
    margin: 0 calc(0.5 * var(--d-gap));
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
[class*='flex-col-'] > div:not(.flex-row) {
    width: 100%;
}
.flex-row.flex-no-gap > [class*='flex-col-'] {
    margin: 0;
}

/* Column Sizes */
.flex-row > .flex-col-1 {
    width: calc(8.333% - var(--d-gap));
}
.flex-row > .flex-col-16,
.flex-row > .flex-col-2 {
    width: calc(16.666% - var(--d-gap));
}
.flex-row > .flex-col-20 {
    width: calc(20% - var(--d-gap));
}
.flex-row > .flex-col-25,
.flex-row > .flex-col-3 {
    width: calc(25% - var(--d-gap));
}
.flex-row > .flex-col-33,
.flex-row > .flex-col-4 {
    width: calc(33.333% - var(--d-gap));
}
.flex-row > .flex-col-5 {
    width: calc(41.666% - var(--d-gap));
}
.flex-row > .flex-col-50,
.flex-row > .flex-col-6 {
    width: calc(50% - var(--d-gap));
}
.flex-row > .flex-col-7 {
    width: calc(58.333% - var(--d-gap));
}
.flex-row > .flex-col-66,
.flex-row > .flex-col-8 {
    width: calc(66.666% - var(--d-gap));
}
.flex-row > .flex-col-9 {
    width: calc(75% - var(--d-gap));
}
.flex-row > .flex-col-10 {
    width: calc(83.333% - var(--d-gap));
}
.flex-row > .flex-col-11 {
    width: calc(91.666% - var(--d-gap));
}
.flex-row > .flex-col-100,
.flex-row > .flex-col-12 {
    width: calc(100% - var(--d-gap));
}

.flex-row.flex-no-gap > .flex-col-1 {
    width: 8.333%;
}
.flex-row.flex-no-gap > .flex-col-16,
.flex-row.flex-no-gap > .flex-col-2 {
    width: 16.666%;
}
.flex-row.flex-no-gap > .flex-col-20 {
    width: 20%;
}
.flex-row.flex-no-gap > .flex-col-25,
.flex-row.flex-no-gap > .flex-col-3 {
    width: 25%;
}
.flex-row.flex-no-gap > .flex-col-33,
.flex-row.flex-no-gap > .flex-col-4 {
    width: 33.333%;
}
.flex-row.flex-no-gap > .flex-col-5 {
    width: 41.666%;
}
.flex-row.flex-no-gap > .flex-col-50,
.flex-row.flex-no-gap > .flex-col-6 {
    width: 50%;
}
.flex-row.flex-no-gap > .flex-col-7 {
    width: 58.333%;
}
.flex-row.flex-no-gap > .flex-col-66,
.flex-row.flex-no-gap > .flex-col-8 {
    width: 66.666%;
}
.flex-row.flex-no-gap > .flex-col-9 {
    width: 75%;
}
.flex-row.flex-no-gap > .flex-col-10 {
    width: 83.333%;
}
.flex-row.flex-no-gap > .flex-col-11 {
    width: 91.666%;
}
.flex-row.flex-no-gap > .flex-col-100,
.flex-row.flex-no-gap > .flex-col-12 {
    width: 100%;
}

/* Column Offsets */
.flex-row > .flex-offset-1 {
    margin-left: calc(0.5 * var(--d-gap) + 8.333%);
}
.flex-row > .flex-offset-2 {
    margin-left: calc(0.5 * var(--d-gap) + 16.666%);
}
.flex-row > .flex-offset-3 {
    margin-left: calc(0.5 * var(--d-gap) + 25%);
}
.flex-row > .flex-offset-4 {
    margin-left: calc(0.5 * var(--d-gap) + 33.333%);
}
.flex-row > .flex-offset-5 {
    margin-left: calc(0.5 * var(--d-gap) + 41.666%);
}
.flex-row > .flex-offset-6 {
    margin-left: calc(0.5 * var(--d-gap) + 50%);
}
.flex-row > .flex-offset-7 {
    margin-left: calc(0.5 * var(--d-gap) + 58.333%);
}
.flex-row > .flex-offset-8 {
    margin-left: calc(0.5 * var(--d-gap) + 66.666%);
}
.flex-row > .flex-offset-9 {
    margin-left: calc(0.5 * var(--d-gap) + 75%);
}
.flex-row > .flex-offset-10 {
    margin-left: calc(0.5 * var(--d-gap) + 83.333%);
}
.flex-row > .flex-offset-11 {
    margin-left: calc(0.5 * var(--d-gap) + 91.666%);
}
.flex-row > .flex-offset-100,
.flex-row > .flex-offset-12 {
    margin-left: calc(0.5 * var(--d-gap) + 100%);
}

/* --- Grid --- */
[class*='grid-container'] {
    display: grid;
    grid-column-gap: var(--d-gap);
    grid-row-gap: var(--d-gap);
}
[class*='grid-container'].no-gap {
    grid-column-gap: 0;
    grid-row-gap: 0;
}
.grid-container-1col {
    grid-template-columns: repeat(1, 1fr);
}
.grid-container-2cols {
    grid-template-columns: repeat(2, 1fr);
}
.grid-container-3cols {
    grid-template-columns: repeat(3, 1fr);
}
.grid-container-4cols {
    grid-template-columns: repeat(4, 1fr);
}
.grid-container-5cols {
    grid-template-columns: repeat(5, 1fr);
}
.grid-container-6cols {
    grid-template-columns: repeat(6, 1fr);
}
[class*='subgrid-item'] {
    display: grid;
    grid-template-rows: subgrid;
}
.subgrid-item-2rows {
    grid-row: span 2;
}
.subgrid-item-3rows {
    grid-row: span 3;
}
.subgrid-item-4rows {
    grid-row: span 4;
}
.subgrid-item-5rows {
    grid-row: span 5;
}
.subgrid-item-5rows {
    grid-row: span 6;
}

/* --- Page Background --- */
.page-background {
    --compose-width: 157.5vw;
    --compose-height: 86.19975vw;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(0.76254 * var(--compose-height));
    contain: paint;
    pointer-events: none;
}
@media (orientation: portrait) {
    .page-background {
        --compose-width: 182.72svh;
        --compose-height: 100svh;
    }   
    .page-background > div {
        transform: translate(-50%, -23.746%);
        left: 50%;
    }
}
.page-background > div {
    position: absolute;
    width: var(--compose-width);
    height: var(--compose-height);
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s;
    transform: translate(-16.104%, -23.746%);
}
.page-background > div.fader {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    z-index: 33;
    width: var(--compose-width);
    opacity: 1;
    height: calc(0.25 * var(--compose-height));
    
}
.page-background > div.fader::before,
.page-background > div.fader::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: block;
    background: linear-gradient(to top, var(--s-body-bg), transparent);
}
.page-background svg {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.page-background .shape01 {
    filter: blur(5vw);
    -webkit-filter: blur(5vw);
}
.page-background .shape01 path {
    fill: var(--s-body-bg);
    transition: fill 0.3s;
}
.page-background [class*='el0'] {
    position: absolute;
    border-radius: 50%;
    filter: blur(12vw);
    transition: opacity 0.3s;
}
.el01 {
    width: 31.42%;
    height: 18.18%;
    background-color: #99A2F8;
    opacity: 0.52;
    right: 0;
    top: 13.89%;
    transform-origin: 50% 50%;
    animation: move01 4s linear infinite;
}
.el02 {
    background: #99DBF8;
    width: 14.81%;
    height: 18.18%;
    left: 27.24%;
    top: 10.03%;
    transform-origin: 50% 100%;
    animation: move02 3s ease-in-out infinite;
}
.el03 {
    background: #99BFF8;
    width: 21.79%;
    height: 18.18%;
    left: 16.43%;
    top: 12.44%;
    animation: spin01 5s linear infinite
}
.el04 {
    background: #4200FF;
    width: 16.45%;
    height: 33.24%;
    left: 4.017%;
    top: 5.767%;
    opacity: 0.29;
    transform: rotate(-135.54deg);
    animation: spin 4s linear infinite;
    transform-origin: 75% 75%;
    animation: move03 4s ease-in-out infinite;
}
.dark-mode .page-background .el01 {
    opacity: 0.25;
}
.dark-mode .page-background .el02,
.dark-mode .page-background .el03 {
    opacity: 0.5;
}
.dark-mode .page-background .el04 {
    opacity: 0.15;
}


@keyframes move01 {
	0% {
		transform: translate(25%,-25%) rotate(0) scale(1);
	}
    25% {
        transform: translate(-25%, 0%) rotate(-10deg) scale(1);
    }
    50% {
        transform: translate(-50%, 50%) rotate(10deg) scale(1.1);
    }
    75% {
        transform: translate(-25%, 25%) rotate(-10deg) scale(1);
    }
	100% {
		transform: translate(25%,-25%) rotate(0) scale(1);
	}
}
@keyframes move02 {
	0% {
		transform: translate(0,0) rotate(0) scale(1);
	}
    50% {
        transform: translate(50%, 50%) rotate(180deg) scale(1.1);
    }
	100% {
		transform: translate(0,0) rotate(360deg) scale(1);
	}
}
@keyframes move03 {
	0% {
		transform: translate(0,0) rotate(-135.53deg) scale(1);
	}
    50% {
        transform: translate(50%, 50%) rotate(-150.53deg) scale(1.1);
    }
	100% {
		transform: translate(0,0) rotate(-135.53deg) scale(1);
	}
}
@keyframes spin01 {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
.page-background > div.page-background-elements,
body:not(.dark-mode) .page-background .bg-light,
.dark-mode .page-background .bg-dark {
    opacity: 1;
}

/* --- Disable Selections --- */
img,
a img,
.counter,
header#main-header,
.disable-selection {
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img {
    max-width: 100%;
    height: auto;
}
video {
    width: 100%;
    height: auto;
}

/* 02. TYPOGRAPHY
----------------- */
p {
	margin: 0 0 var(--p-gap) 0;
}
p:last-child {
	margin: 0;
}
p:empty {
	display: none;
}
a {
    position: relative;
}
a,
a:focus,
a:visited {
    text-decoration: none;
    color: var(--s-headings);
}
a {
    transition: color 0.3s;
}
hr {
    border: none;
	width: 100%;
    height: 1px;
    background: var(--s-headings);
	margin: calc(1.65em - 2px) 0;
}
hr:first-child {
	margin-top: 0;
}
hr:first-child {
	margin-bottom: 0;
}

.title {
    font-size: 21px;
    height: 36px;
    letter-spacing: -0.02em;
}
.title i {
    margin-left: 10px;
    width: 12px;
    height: 12px;
}

/* --- Text Sizes --- */
.text-xl {
    --p-gap: calc(var(--t-content-xl-lh) + 7px);
    font-size: var(--t-content-xl-fs);
    line-height: var(--t-content-xl-lh);
    letter-spacing: var(--t-content-xl-ls);
}
.text-large {
    --p-gap: var(--t-content-large-lh);
    font-size: var(--t-content-large-fs);
    line-height: var(--t-content-large-lh);
    letter-spacing: var(--t-content-large-ls);
}
.text-small {
    --p-gap: var(--t-content-small-lh);
    font-size: var(--t-content-small-fs);
    line-height: var(--t-content-small-lh);
    letter-spacing: var(--t-content-small-ls);
}
.text-xs {
    --p-gap: var(--t-content-xs-lh);
    font-size: var(--t-content-xs-fs);
    line-height: var(--t-content-xs-lh);
    letter-spacing: var(--t-content-xs-ls);
}
.highlight {
    color: var(--s-headings);
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--heading-ff);
    font-weight: var(--heading-fw);
    color: var(--s-headings);
}

h1.light-weight, 
h2.light-weight, 
h3.light-weight,
h4.light-weight, 
h5.light-weight, 
h6.light-weight {
    font-weight: 400;
}
h1 .highlight, 
h2 .highlight, 
h3 .highlight,
h4 .highlight, 
h5 .highlight, 
h6 .highlight {
    color: var(--s-headings-gray);
}
h1 {
    font-size: var(--t-h1-fs);
    line-height: var(--t-h1-lh);
    letter-spacing: var(--t-h1-ls);
    margin: 0 0 34px -7px;
}
h1.page-title,
h1.post-title,
h2 {
    font-size: var(--t-h2-fs);
    line-height: var(--t-h2-lh);
    letter-spacing: var(--t-h2-ls);
    margin: 0 0 34px -6px;
}
h3 {
    font-size: var(--t-h3-fs);
    line-height: var(--t-h3-lh);
    letter-spacing: var(--t-h3-ls);
    margin: 0 0 30px -3px;
}
h4 {
    font-size: var(--t-h4-fs);
    line-height: var(--t-h4-lh);
    letter-spacing: var(--t-h4-ls);
    margin: 0 0 24px -2px;
}
h5 {
    font-size: var(--t-h5-fs);
    line-height: var(--t-h5-lh);
    letter-spacing: var(--t-h5-ls);
    margin: 0 0 20px -2px;
}
h6 {
    font-size: var(--t-h6-fs);
    line-height: var(--t-h6-lh);
    letter-spacing: var(--t-h6-ls);
    margin: 0 0 20px -1px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
    margin-bottom: 0;
}
.sub-title {
    color: var(--s-headings-gray);
    margin-bottom: 28px;
}
.gradient-text {
    background: linear-gradient(to right, #3984F4, #2275F2 40%, #4C49E1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    contain: paint;
    display: inline!important;
}
.gradient-text * {
    position: static;
}
h2.elements-title {
    margin-bottom: 51px;
}

/* --- Alignment --- */
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.align-center img {
	margin-left: auto;
	margin-right: auto;
}
.align-right img {
	margin-left: auto;
}

/* 03. FORMS AND FIELDS
----------------------- */
form {
    width: 100%;
}
label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--s-label);
    margin-bottom: 8px;
}
input,
textarea {
    display: inline-block;
    width: 100%;
    border: 1px solid var(--s-border);
    font-size: 13px;
    line-height: 1;
    padding: 10px 12px;
    margin-bottom: var(--d-input-gap);
    border-radius: var(--br-input);
    font-family: var(--content-xs-ff);
    font-weight: var(--content-xs-fw);
    font-size: var(--t-content-xs-fs);
    line-height: 1;
    letter-spacing: var(--t-content-xs-ls);
    color: var(--s-content-text);
}
textarea {
    height: 120px;
    line-height: var(--t-content-xs-lh);
}
label input,
label textarea {
    margin-top: 8px;
}
label:has(input),
label:has(textarea) {
    margin-bottom: var(--d-input-gap);
}

label:has(input[type="checkbox"]) {
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
    padding-left: 35px;
    cursor: pointer;
}
label input[type="checkbox"] {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}
label:has(input[type="checkbox"])::before,
label:has(input[type="checkbox"])::after {
    content: '';
    position: absolute;
}
label:has(input[type="checkbox"])::before {
    width: 22px;
    height: 22px;
    border-radius: var(--br-input);
    left: 0;
    top: 0;
    transition: border-color 0.3s, background-color 0.3s;
}
label:has(input[type="checkbox"])::before {
    border: 1px solid var(--c-input-border);
    background-color: var(--c-input-background);
}
label:has(input[type="checkbox"]:checked)::before {
    border: 1px solid var(--c-checkbox-active);
    background-color: var(--c-checkbox-active);
}
label:has(input[type="checkbox"]:disabled)::before {
    opacity: 0.5;
}
label:has(input[type="checkbox"]:checked:disabled)::before {
    opacity: 1;
    border: 1px solid var(--c-checkbox-disabled);
    background-color: var(--c-checkbox-disabled);
}
label:has(input[type="checkbox"])::after {
    background: var(--c-checkbox-mark);
    width: 10px;
    height: 7px;
    display: block;
    top: 9px;
    left: 7px;
    z-index: 3;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: var(--icon-checkbox-mark);
    mask-image: var(--icon-checkbox-mark);
    transition: opacity 0.3s;
}
label:has(input[type="checkbox"]:not(:checked))::after {
    opacity: 0;
}

input[type="button"],
input[type="reset"],
input[type="submit"],
button,
a.button {
    display: inline-block;
    padding: var(--d-button-padding);
    border: 1px solid var(--c-button-border);
    background: var(--c-button-bg);
    color: var(--c-button-color);
    cursor: pointer;
    border-radius: 25px;
    font-family: var(--t-button-ff);
    font-weight: var(--t-button-fw);
    font-size: var(--t-button-fs);
    line-height: var(--t-button-lh);
    letter-spacing: var(--t-button-ls);
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    white-space: nowrap;
}
input[type="button"]:has(i):not(.is-solid),
input[type="reset"]:has(i):not(.is-solid),
input[type="submit"]:has(i):not(.is-solid),
button:has(i):not(.is-solid),
a.button:has(i):not(.is-solid) {
    font-size: var(--t-button-w-icon-fs);
    line-height: var(--t-button-w-icon-lh);
    letter-spacing: var(--t-button-w-icon-ls);
}
button.is-solid,
a.button.is-solid {
    border-color: var(--c-button-solid-bg);
    background-color: var(--c-button-solid-bg);
    color: var(--c-button-solid-color);
}
button i::before,
a.button i::before {
    background-color: var(--c-button-color);
    transition: background-color 0.3s;
}
button i,
a.button i {
    margin-left: 13px;
    margin-right: -3px;
    transform: translateY(-1px);
}
button.is-solid i::before,
a.button.is-solid i::before {
    background-color: var(--c-button-solid-color);
}
button.is-large,
a.button.is-large {
    padding: var(--d-button-large-padding);
    letter-spacing: -0.03em;
    border-radius: 35px;
}
button.is-large i,
a.button.is-large i {
    margin-left: 14px;
    margin-right: -4px;
}
button.is-solid i,
a.button.is-solid i {
    margin-left: 5px;
    margin-right: -3px;
    transform: translateY(0);
}
.link-with-arrow {
    color: var(--s-link-with-arrow);
    font-family: var(--t-button-ff);
    font-weight: var(--t-button-fw);
    font-size: var(--t-button-w-icon-fs);
    line-height: var(--t-button-w-icon-lh);
    letter-spacing: var(--t-button-w-icon-ls);
    transition: color 0.3s;
}
.link-with-arrow i {
    margin: 0 0 0 13px;
    transform: translateY(-2px);
}
.link-with-arrow i::before {
    background-color: var(--s-link-with-arrow);
}

/* 04. HEADER
------------- */
header#main-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}
header#main-header::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background-color: var(--s-body-bg);
    opacity: 0;
    box-shadow: 0 4px 34px var(--s-header-shadow);
    transition: background-color 0.3s;
}
.header-inner {
    padding: var(--d-header-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}
.right-part {
    display: flex;
    justify-content: flex-end;
    gap: 44px;
    align-items: center;
    transform: translateY(-3px);
}
/* --- Logo --- */
.logo {
    width: 91px;
    display: block;
    transform-origin: 0 50%;
}
.logo img {
    width: 100%;
    height: auto;
}
.logo-dark,
.dark-mode .logo-light {
    display: none;
}
.logo-light,
.dark-mode .logo-dark {
    display: block;
}

img.logo-image-awards {
    max-height: 92px !important;
    width: auto !important;
}


/* --- Mode Switcher --- */
.mode-switcher {
    width: 46px;
    height: 26px;
    border-radius: 13px;
    display: block;
    border: 1px solid #181818;
    background-color: #FFFFFF;
    transition: background-color 0.2s, border-color 0.2s;
    contain: paint;
}
.dark-mode .mode-switcher {
    border: 1px solid #7EAAFE;
    background-color: #7EAAFE;
}
.mode-switcher i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
}
.mode-switcher i::before,
.mode-switcher i::after {
    content: '';
    position: absolute;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}
.dark-mode .mode-switcher i.sw-light-mode,
.mode-switcher i.sw-dark-mode {
    opacity: 1;
    transform: translateX(0);
}
.mode-switcher i.sw-light-mode {
    opacity: 0;
    transform: translateX(20px);
}
.dark-mode .mode-switcher i.sw-dark-mode {
    opacity: 0;
    transform: translateX(-20px);
}
.mode-switcher i.sw-dark-mode::before,
.mode-switcher i.sw-dark-mode::after {
    background-color: #181818;
    width: 15px;
    height: 15px;
}
.mode-switcher i.sw-light-mode::after {
    background-color: #ffffff;
    transition: transform 0.3s;
}
.mode-switcher i.sw-dark-mode::before {
    left: 23px;
    top: 5px;
    -webkit-mask-image: var(--icon-switcher-moon);
    mask-image: var(--icon-switcher-moon);
}
.mode-switcher i.sw-dark-mode::after {
    left: 6px;
    top: 5px;
    -webkit-mask-image: var(--icon-switcher-stars);
    mask-image: var(--icon-switcher-stars);
    transition: transform 0.3s;
}
.mode-switcher i.sw-light-mode::after,
.dark-mode .mode-switcher i.sw-dark-mode::after {
    transform: scale(0.5);
}
.dark-mode .mode-switcher i.sw-light-mode::after {
    transform: scale(1);
}
.mode-switcher i.sw-light-mode::after {
    width: 17px;
    height: 13px;
    left: 22px;
    top: 6px;
    -webkit-mask-image: var(--icon-switcher-clouds);
    mask-image: var(--icon-switcher-clouds);
}
.mode-switcher::before {
    content: '';
    z-index: 3;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    right: 5px;
    top: 5px;
    background: #ffffff;
    box-shadow: 0 1px 9px 0px #ffffff5a;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}
.dark-mode .mode-switcher::before {
    transform: translateX(-20px);
    opacity: 1;
}

/* --- Menu Toggler --- */
.menu-toggler {
    width: 31px;
    height: 30px;
    display: block;
    position: relative;
}
.menu-toggler span {
    background: var(--s-headings);
    border-radius: 2px;
    height: 2px;
    width: 31px;
    display: block;
    position: absolute;
    left: 0;
}
.menu-toggler span:nth-child(1) {
    top: 4px;
}
.menu-toggler span:nth-child(2) {
    top: 14px;
}
.menu-toggler span:nth-child(3) {
    top: 24px;
    width: 24px;
    transform-origin: 0 50%;
    transition: transform 0.3s;
}

/* --- Sticky Header --- */
header#main-header.sticky-appearance.changing-appearance {
    transition: unset;
}
header#main-header.sticky-appearance {
    position: fixed;
    transition: transform 0.3s;
    transform: translateY(-100%);
    opacity: .9;
}
header#main-header.sticky-appearance::before {
    opacity: 1;
}
header#main-header.sticky-appearance.is-sticky {
    transform: translateY(0);
    opacity: 0.9;
}
.sticky-appearance .logo {
    transform: scale(0.6923076923);
}
.sticky-appearance .header-inner {
    padding: 3px var(--d-fw-spacing) 4px var(--d-fw-spacing);
}
.sticky-appearance .right-part {
    transform: translateY(-1px);
}

/* 05. MAIN MENU POPUP
---------------------- */
.main-menu-popup {
    display: block;
    position: absolute;
    pointer-events: all;
    z-index: 101;
    width: 789px;
    background: var(--s-popup-bg);
    right: var(--d-fw-spacing);
    top: var(--d-fw-spacing);
    border-radius: 40px 0px 40px 40px !important;
    padding: 85px 65px 48px 65px;
    box-shadow: 0 4px 175px 0 var(--s-popup-shadow);
    transform-origin: calc(100% - 20px) 20px;
    transition: transform 0.3s;
    transform: scale(0);
    pointer-events: none;
}
.has-sticky-header .main-menu-popup {
    position: fixed;
}
.main-menu-popup a {
    transition: opacity 0.3s;
}
.menu-popup-inner {
    transition: opacity 0.3s;
    opacity: 0;
}
.menu-close {
    position: absolute;
    top: 39px;
    right: 51px;
    font-size: 17px;
    line-height: 29px;
    letter-spacing: -0.01px;
    display: flex;
    gap: 16px;
}
.menu-close i {
    width: 29px;
    height: 29px;
    display: block;
    border-radius: 50%;
    border: 1.5px solid var(--s-menu-close);
    position: relative;
}
.menu-close i::before,
.menu-close i::after {
    content: '';
    width: 12px;
    height: 1.5px;
    border-radius: 2px;
    display: block;
    position: absolute;
    left: 7px;
    top: 12.5px;
    background: var(--s-menu-close);
}
.menu-close i::before {
    transform: rotate(45deg);
}
.menu-close i::after {
    transform: rotate(-45deg);
}

/* --- Main Menu --- */
.main-menu-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 33px;
}
.main-menu-list li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu-list li a {
    font-family: var(--t-main-menu-ff);
    font-weight: var(--t-main-menu-fw);
    font-size: var(--t-main-menu-fs);
    line-height: var(--t-main-menu-lh);
    letter-spacing: var(--t-main-menu-ls);
    color: var(--s-headings);
}
.main-menu-list li a::after {
    content: '';
    width: 24px;
    height: 23px;
    background-color: var(--s-headings);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    display: inline-block;
    -webkit-mask-image: var(--icon-menu-arrow);
    mask-image: var(--icon-menu-arrow);
    margin-left: 14px;
    transform: translate(-2px,0) scale(0.5);
    opacity: 0;
    transform-origin: 0 100%;
    transition: opacity 0.3s, transform 0.3s;
}
.main-menu-list li.current a::after {
    transform: translate(0,-2px) scale(1);
    opacity: 1;
}

/* --- Contact Info --- */
.main-menu-popup .title {
    color: var(--s-headings);
    margin-bottom: 5px;
    display: block;
}
.main-menu-popup p {
    opacity: 0.8;
}
.main-menu-popup .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--d-gap);
    padding: 84px 0 103px 0;
}
.main-menu-popup .contact-info > div {
    margin-top: -8px;
}
.main-menu-popup .contact-info > div {
    width: calc(50% - 0.5* var(--d-gap));
}
/* .main-menu-popup .contact-info > div:nth-child(odd) {
    width: calc(50% + 30px - 0.5 * var(--d-gap));
}
.main-menu-popup .contact-info > div:nth-child(even) {
    width: calc(50% - 30px - 0.5 * var(--d-gap));
} */
.main-menu-popup .contact-links a {
    margin-bottom: 0;
}
.main-menu-popup .contact-info ul {
    padding: 0;
    margin: 0;
}
.main-menu-popup .contact-info li {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: none;
    position: relative;
}
.main-menu-popup .contact-info li::before {
    content: '';
    width: 4px;
    height: 4px;
    display: block;
    background-color: var(--s-headings);
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 13px;
}

.menu-popup-footer {
    border-top: 1px solid var(--s-border);
    padding: 47px 0 0 0;
}
.menu-popup-footer .social-links {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: row;
    gap: 30px;
}

/* --- Menu Overlay --- */
.menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--s-body-bg);
    opacity: 0;
    z-index: 99;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* --- Show Menu --- */
.show-menu .main-menu-popup {
    transform: scale(1);
    pointer-events: all;
}
.show-menu .menu-popup-inner {
    opacity: 1;
}
.show-menu .menu-overlay {
    opacity: 0.5;
    pointer-events: all;
}

/* --- Smaller Screens --- */
@media only screen and (max-height: 1100px) and (min-width: 739px) {
    :root {
        --t-main-menu-fs: 26px;
    }
    .main-menu-popup {
        padding: 54px 30px 22px 30px;
        width: 470px;
        border-radius: 25px;
    }
    .has-sticky-header .main-menu-popup {
        top: calc(0.5 * var(--d-fw-spacing));
    }
    .menu-close {
        font-size: 12px;
        line-height: 20px;
        right: 22px;
        top: 24px;
        gap: 9px;
    }
    .menu-close i {
        width: 18px;
        height: 18px;
        border-width: 1px;
    }
    .menu-close i::before, 
    .menu-close i::after {
        width: 8px;
        height: 1px;
        left: calc(50% - 4px);
        top: calc(50% - 0.5px);
    }
    .main-menu-popup .title {
        font-size: 13px;
        line-height: 23px;
        letter-spacing: -0.02em;
        height: auto;
    }
    .main-menu-popup .title i {
        width: 9px;
        height: 9px;
        margin-left: 3px;
    }
    .main-menu-popup .social-links li,
    .main-menu-popup .text-small {
        font-size: 12px;
        line-height: 18px;
    }
    .main-menu-list li a::after {
        width: 15px;
        height: 14px;
        transform: translate(0) scale(0.5);
        margin-left: 18px;
    }
    .main-menu-list li.current a::after {
        transform: translate(0) scale(1);
    }
    .main-menu-list {
        gap: 15px;
    }
    .main-menu-popup .contact-info {
        padding: 37px 0 38px 0;
        --d-gap: 20px;
    }
    /* .main-menu-popup .contact-info > div:nth-child(even) {
        width: calc(50% + 6px - 0.5 * var(--d-gap));
    }
    .main-menu-popup .contact-info > div:nth-child(odd) {
        width: calc(50% - 6px - 0.5 * var(--d-gap));
    } */
    .main-menu-popup .contact-info > div:last-child {
        padding-top: 7px;
    }
    .main-menu-popup .contact-info ul.text-small {
        padding-top: 3px;
    }
    .main-menu-popup .contact-info ul.text-small li {
        font-size: 13px;
        line-height: 19px;
        padding-left: 11px;
    }
    .main-menu-popup .contact-info li::before {
        top: 10px;
        left: 2px;
        width: 2px;
        height: 2px;
        border-radius: 1px;
        display: block;
    }
    .main-menu-popup .social-links {
        gap: 20px;
    }
    .main-menu-popup .social-links li i {
        width: 9px;
        height: 9px;
        margin-left: 3px;
    }
    .menu-popup-footer {
        padding: 19px 0 3px 0;
    }
}

/* 06. COOKIES POPUP
-------------------- */
.cookies-popup {
    display: block;
    position: fixed;
    background: var(--s-popup-bg);
    border-radius: 25px;
    padding: 40px 32px 36px 32px;
    box-shadow: 0 4px 175px 0 var(--s-popup-shadow);
    width: 429px;
    left: 50vw;
    top: 50vh;
    z-index: 111;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5) translate(-50%, -50%);
    transition: transform 0.3s, opacity 0.3s;
}
.cookies-popup h5 {
    margin-bottom: 14px;
}
.cookies-popup p {
    opacity: 0.8;
}
.cookies-buttons {
    padding: 19px 0 0 0;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
}
a.cookies-details {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--s-label);
    font-weight: 500;
    margin-top: 28px;
    gap: 10px;
}
.cookies-details span {
    opacity: 0.8;
    transition: opacity 0.3s;
}
.cookies-details i {
    transform: translateY(1px);
}
.cookies-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--s-body-bg);
    opacity: 0;
    z-index: 105;
    pointer-events: none;
    transition: opacity 0.3s;
}
.request-cookies .cookies-overlay {
    opacity: 0.5;
    pointer-events: all;
}
.request-cookies .cookies-popup {
    pointer-events: all;
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}

/* 07. CONTENT
-------------- */
main#content-area {
    position: relative;
    z-index: 1;
    contain: paint;
    padding-top: 266px;
}
section {
    margin-bottom: var(--d-section-gap);
}
section.no-bottom-spacing {
    margin-bottom: 0;
}
.block-type01 {
    background-color: var(--s-block-bg01);
}
.block-type02 {
    background-color: var(--s-block-bg02);
    --s-content-text: var(--s-bg02-text);
    --s-border: var(--s-bg02-border);
    --s-headings: var(--s-bg02-title);
    --s-headings-gray: var(--s-bg02-title-gray);
}
.block-type03 {
    background-color: var(--s-block-bg03);
    --s-border: var(--s-border-dashed);
}
.block-type01,
.block-type02,
.block-type03 {
    padding-top: var(--d-section-gap);
    padding-bottom: var(--d-section-gap);
}

.section-title {
    margin-bottom: 64px;
}

/* --- Hero Section --- */
.page-title-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--d-section-gap) - 6px);
}
.page-title-wrap {
    max-width: 930px;
    width: calc(75% - var(--d-gap));
}
.page-title-additional {
    width: 25%;
    padding-top: 28px;
    position: relative;
    max-width: 433px;
}
.page-title-additional hr {
    margin-bottom: 60px;
}

/* Shop Page Hero Section */
.page-title-row.shop-page {
    align-items: flex-end;
}
.shop-page .page-title-wrap {
    width: 50%;
}
.shop-page .page-title-additional {
    max-width: 797px;
    width: 50%;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 79px;
}
.shop-page .page-title-additional::before {
    content: '';
    width: 434px;
    height: 1px;
    background: var(--s-headings);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}
.shop-page h5 {
    max-width: 420px;
    margin: 0;
}
.shop-page .page-title-button {
    text-align: right;
    padding-bottom: 6px;
}

/* --- Intro Section --- */
.intro-section {
    margin-top: -10px;
}
.intro-content {
    padding-top: 66px;
}
.intro-below-title {
    max-width: 420px;
}

/* --- Counter Section --- */
.counter-section {
    margin-bottom: calc(var(--d-section-gap) - 16px);
}

/* 08. POST CONTENT
------------------- */
.post-intro {
    max-width: 910px;
    margin: 0 auto;
}
.post-meta {
    color: var(--s-headings-gray);
    display: block;
    margin-bottom: 17px;
}
h1.post-title {
    margin-bottom: 31px;
} 
.post-intro p {
    margin-bottom: 67px;
}
.post-image {
    margin-bottom: 60px;
}
.post-button {
    padding-top: 50px;
}
.recent-posts {
    padding-top: 57px;
}
.recent-posts .section-title {
    margin-bottom: 57px;
}

/* 09. ELEMENTS
--------------- */
.content-image {
    margin-bottom: 70px;
}
.content-image img {
    display: block;
    width: 100%;
    height: auto;
}
.expandable-wrap {
    overflow: hidden;
}

/* --- Icon Box --- */
.iconbox-item {
    border: 1px solid var(--s-border);
    padding: var(--d-gap);
    transition: background-color 0.3s;
    grid-row-gap: 0;
}
.iconbox-item > i {
    transform: translate(-5px,-4px);
    margin-bottom: 99px;
}
.iconbox-item h3 {
    margin-bottom: 13px;
}
.iconbox-item h4 {
    margin-top: 17px;
    margin-bottom: 13px;
}
.iconbox-item p {
    margin-bottom: 32px;
}
.iconbox-footer {
    border-top: 1px dashed var(--s-border-dashed);
    padding: 25px 0 0 0;
    margin-bottom: -6px;
}
.iconbox-footer a i {
    transform: translate(4px, 0);
}
.iconbox-footer a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Portfolio Grid --- */
.portfolio-grid {
    display: grid;
    grid-gap: var(--d-gap);
    grid-template-columns: repeat(4, 1fr);
}
.portfolio-grid > div:nth-child(6n-3),
.portfolio-grid > div:nth-child(6n-2) {
    grid-column: auto /span 2;
    grid-row: auto /span 2;
}
.portfolio-card {
    position: relative;
}
.portfolio-card a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.portfolio-card-image {
    overflow: hidden;
    margin-bottom: 18px;
}
.portfolio-card img {
    display: block;
    transition: transform 0.3s;
}
.portfolio-card h6 {
    margin-bottom: 1px;
    margin-left: 0;
    transition: opacity 0.3s;
}
.portfolio-card span {
    color: var(--s-headings-gray);
    margin-left: 0;
    display: block;
}
.portfolio-grid-wrap {
    position: relative;
}
.portfolio-grid-cursor {
    --this-mouse-x: 0;
    --this-mouse-y: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 54px;
    height: 54px;
    margin: -27px 0 0 -27px;
    border-radius: 50%;
    background: var(--s-port-cursor);
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(var(--this-mouse-x), var(--this-mouse-y));
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}
.portfolio-grid-cursor.is-hover {
    opacity: 1;
}
.portfolio-grid.hide-cursor,
.portfolio-grid.hide-cursor a {
    cursor: none;
}
    
.portfolio-grid-cursor i {
    transform: translate(0);
}
.portfolio-grid-cursor i::before {
    background-color: var(--s-headings);
}
.portfolio-button-wrap {
    padding: 68px 0 10px 0;
}

/* --- Marquee --- */
.marquee-on-scroll {
    max-width: 100%;
    border-top: 1px solid var(--s-border);
    padding-top: 85px;
    margin-bottom: -56px;
    --this-progress: 0%;
    transform: translateZ(0);
}
.marquee-on-scroll-inner {
    font-size: 331px;
    width: min-content;
    transform: translateX(calc((-1 * var(--this-progress) + 50%)));
    line-height: 1.1;
    color: var(--s-headings);
    white-space: nowrap;
    font-family: var(--additional-ff);
    font-weight: var(--additional-fw);
    letter-spacing: -0.08em;
}

/* --- Toggles --- */
.togglers-list {
    padding-top: 16px;
}
.toggled-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 43px 0 47px 0;
    position: relative;
    cursor: pointer;
}
.toggled-item:last-child {
    padding-bottom: 1px;
}
.toggled-item:not(:last-child)::before {
    content: '';
    width: calc(100% - var(--d-gap));
    height: 1px;
    background: var(--s-headings);
    transition: opacity 0.3s;
    position: absolute;
    bottom: 0;
    left: calc(0.5 * var(--d-gap));
}
.toggled-item.is-active::before {
    opacity: 0.15;
}
.toggled-item:last-child {
    border-bottom: none;
}
.toggled-item h4 {
    margin-bottom: 0;
}
.toggled-item .toggled-item-content {
    padding-top: 16px;
    letter-spacing: 0;
    margin-bottom: -3px;
}
.toggled-item.is-active .toggled-item-content {
    display: block;
    color: var(--s-headings);
    opacity: 0.7;
}
.toggled-item.is-active {
    border-bottom: 1px solid var(--s-headings-o15);
}
.toggled-item i {
    transition: transform 0.3s;
}
.toggled-item i::before {
    background-color: var(--s-headings);
}
.toggled-item.is-active i {
    transform: rotate(-90deg);
}
.toggled-item .flex-col-2 {
    display: flex;
    align-items: flex-end;
    padding-top: 15px;
}

/* --- Partners Grid --- */
.partners-title {
    margin-bottom: 120px;
}
.partners-grid {
    row-gap: 0;
    column-gap: 0;
    border: 0.5px solid var(--s-border);
    margin-bottom: 10px;
}
.partners-grid > div {
    border: 0.5px solid var(--s-border);
    border-collapse: collapse;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Stellt sicher, dass der Flex-Container nicht die Sichtbarkeit beeinflusst */
    flex-shrink: 0; 
}
.partners-grid a {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.partners-grid.reverse-hover a {
    opacity: 1;
}
.partners-button-wrap {
    padding-top: 50px;
}

/* --- Testimonials --- */
.partners-testimonials {
    padding: 114px 0 10px 0;
}
.testimonial-author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding-top: 27px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.testimonial-author h6 {
    margin: 0 0 -5px 0;
}
.testimonial-author span {
    color: var(--s-label);
}
.testimonial-author-name {
    transform: translateY(2px);
}

/* --- Coutners --- */
.counter-button-wraper {
    padding: 24px 0 69px 0;
}
.counter-number {
    font-family: var(--additional-ff);
    font-weight: var(--additional-fw);
    color: #E5EBF0;
    font-size: 120px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.counter-number::before {
    content: attr(data-prefix);
}
.counter-number::after {
    content: attr(data-suffix);
}
.counter-label {
    font-size: 18px;
    line-height: 33px;
    padding-left: 7px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--s-headings-gray);
}

/* --- Team Carousel --- */
.carousel-wrapper {
    max-width: 100%;
    --this-step: 0;
    --items-view: 3;
    --item-width: calc((var(--d-container-width) - (var(--items-view) - 1) * var(--d-gap))/var(--items-view));
}
.team-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--d-gap);
    width: min-content;
    transition: transform 0.3s;
    cursor: grab;
}
.is-grabbed .team-carousel {
    cursor: grabbing;
    transition: unset;
}
.team-card {
    min-width: var(--item-width);
    max-width: var(--item-width);
    padding-bottom: 43px;
}
.team-card img {
    margin-bottom: 20px;
}
.team-card h5 {
    margin: 0 0 5px -2px;
}
.team-card span {
    display: block;
    margin: 0 0 0 -1px;
    color: var(--s-label);
}
ul.team-socials {
    padding: 18px 0 0 0;
    margin: 0 0 0 -2px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 23px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}
ul.team-socials li {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.team-socials a {
    width: 20px;
    height: 20px;
    display: block;
}
ul.team-socials a i {
    display: block;
}
/* Carousel Progress Bar */
.carousel-progress {
    width: 224px;
    height: 1px;
    background-color: var(--s-border-dashed);
    position: relative;
}
.carousel-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    background-color: var(--s-headings);
    width: 100%;
    transition: transform 0.3s;
    transform-origin: 0% 50%;
    transform: scale( calc(((var(--items-view) + var(--this-step))/var(--item-count))), 1 );

}
/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 19px;
    padding-top: 43px;
}
.carousel-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    position: relative;
    border-radius: 50%;
    transition: opacity 0.3s;
}
.carousel-nav a.is-disabled {
    opacity: 0.5;
}
.carousel-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--s-carousel-nav);
    transition: opacity 0.3s;
    opacity: 0.6;
}
.carousel-nav a i {
    width: 12px;
    height: 10px;
    position: relative;
    z-index: 3;
}

/* --- Journal ---  */
.journal-item {
    position: relative;
}
.journal-item-image {
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
}
.journal-item-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}
.journal-item h5 {
    transition: opacity 0.3s;
}
.journal-item img {
    transition: transform 0.3s;
}
.journal-item span {
    color: var(--s-headings-gray);
    display: block;
    margin-bottom: 9px;
}
.journal-item h5 {
    margin: 0;
}
.journal-item a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* --- Contact Links --- */
.contact-links {
    display: flex;
    flex-direction: column;
}
footer#main-footer .contact-links a,
.contact-links a {
    color: var(--s-headings);
    transition: opacity 0.3s;
}

/* --- Accordeon --- */
.accordeon-wrap {
    counter-reset: accordeon_count 0;
}
.accordeon-item {
    border: 1px solid var(--s-border);
    background: var(--s-body-bg);
    padding: 24px 29px 25px 29px;
    transition: background-color 0.3s;
    cursor: pointer;
}
.accordeon-item:not(:last-child) {
    margin-bottom: 8px;
}
.accordeon-item h6::before {
    counter-increment: accordeon_count;
    content: "0" counter(accordeon_count) ".";
    display: inline-block;
    width: 43px;
}
.accordeon-item:nth-child(n+10) h6::before {
    content: counter(accordeon_count) ".";
}
.accordeon-item h6 {
    margin: 0;
}
.accordeon-content {
    border-top: 1px solid transparent;
    padding: 33px 0 10px 0;
    margin: 25px 0 0 0;
    opacity: 0;
    transition: border-color 0.3s, opacity 0.3s;
}
.accordeon-item.is-toggled {
    background: var(--s-input-hbg);
}
.accordeon-item.is-toggled .accordeon-content {
    opacity: 1;
    border-color: var(--s-accordeon-content-border);
}
.is-toggled .accordeon-content {
    display: block;
    cursor: default;
}

/* --- Table --- */
table {
    padding: 0;
    margin: 0 0 var(--t-content-lh) 0;
    border-collapse: collapse;
    border: 1px solid var(--s-border);
    width: 100%;
}
table th,
table td {
    padding: 25px 30px;
    text-align: left;
}
table th:first-child,
table td:first-child {
    padding: 24px 35px;
}
table th {
    position: relative;
}
table th:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--s-th-border);
    
}
table th,
table td {
    border: 1px solid var(--s-border);
}
table th {
    padding-top: 24px;
    padding-bottom: 25px;
    border-color: var(--s-headings);
    font-family: var(--heading-ff);
    font-weight: var(--heading-fw);
    font-size: var(--t-h6-fs);
    line-height: var(--t-h6-lh);
    letter-spacing: var(--t-h6-ls);
    color: var(--s-body-bg);
    background-color: var(--s-headings);
}
.table-container {
    max-width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
}
.table-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}
tbody tr:nth-child(even) {
    background-color: var(--s-input-hbg);
}

/* --- Shop Content --- */
.shop-partners-grid h2 {
    margin-bottom: 80px;
}
.shop-page-content {
    text-align: center;
    margin: 0 0 130px 0;
}
.shop-page-content p {
    margin-bottom: 34px;
    display: block;
    padding: 0 var(--d-gap);
}
.shop-page-content h2 {
    width: 100%;
    margin-bottom: 30px;
}
.shop-content-list-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--d-gap);
}
.shop-content-list-container .list-wrap {
    width: calc(41.666% - var(--d-gap));
}
.devices-wrap {
    position: relative;
    max-width: 678px;
    width: 100%;
    aspect-ratio: 5/2.97;
    display: block;
}
.devices-wrap img {
    position: absolute;
}
.devices-wrap .iphone {
    width: 19.5%;
    height: auto;
    left: 0;
    bottom: 0;
}
.devices-wrap .macbook {
    width: 93.5%;
    height: auto;
    right: 0;
    top: 0;
}

/* --- Shop Partners List --- */
.shop-partners-section {
    padding-top: 11px;
}
.shop-partners {
    /* border-top: 1px solid var(--s-border); */
    padding-top: 30px!important;
    padding-bottom: 5px!important;
    overflow: hidden;
}
.shop-partners-list {
    align-items: center;
}
.shop-partners .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.shop-partners .swiper-slide:nth-child(3n + 1) {
    justify-content: flex-start;
}
.shop-partners .swiper-slide:nth-child(3n + 2) {
    justify-content: center;
}
.shop-partners .swiper-slide:nth-child(3n + 3) {
    justify-content: flex-end;
}
.shop-partners-list a {
    display: block;
    transition: opacity 0.3s;
    opacity: 0.2;
}
.shop-partners h5 {
    margin: 0;
}
.h5-logoslider {
    margin-bottom: 30px;
    text-align: left;
}

/* --- Stylized List --- */
ul.stylized-list {
    padding: 0 0 0 var(--d-gap);
    margin: 0;
}
ul.stylized-list li {
    padding: 12px 0 12px 35px;
    list-style: none;
    position: relative;
    font-family: var(--heading-ff);
    font-weight: var(--heading-fw);
    color: var(--s-headings);
    font-size: var(--t-h6-fs);
    line-height: var(--t-h6-lh);
    letter-spacing: var(--t-h6-ls);
}
ul.stylized-list li::before,
ul.stylized-list li::after {
    content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    left: 1px;
    top: 19px;
}
ul.stylized-list li span {
    display: block;
    font-size: var(--t-content-xs-fs);
    line-height: var(--t-content-xs-lh);
    letter-spacing: var(--t-content-xs-ls);
    color: var(--s-content-text);
    font-family: var(--content-ff);
    font-weight: var(--content-fw);
    margin-top: 5px;
    margin-bottom: -4px;
}
ul.stylized-list li::before {
    background-color: #4BAE4F;
    border-radius: 50%;
}
ul.stylized-list li::after {
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: var(--list-marker);
    mask-image: var(--list-marker);
    background-color: #ffffff;
}

/* --- Ordered List --- */
.shop-ordered-list-wrap {
    padding-top: 48px;
}
ol.ordered-list-h5 {
    padding: 4px 0 0 18px;
    margin: 0;
    counter-reset: ordered_list 0;
}
ol.ordered-list-h5 li {
    counter-increment: ordered_list;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--s-headings);
    font-family: var(--heading-ff);
    font-weight: var(--heading-fw);
    color: var(--s-headings);
    font-size: var(--t-h6-fs);
    line-height: var(--t-h6-lh);
    letter-spacing: var(--t-h6-ls);
}
ol.ordered-list-h5 li:not(:last-child) {
    margin-bottom: 46px;
}
ol.ordered-list-h5 li::before {
    content: "0" counter(ordered_list) ".";
    width: 44px;
    color: var(--s-content-text);
    display: inline-block;
}
ol.ordered-list-h5 li:nth-child(n+10)::before {
    content: counter(ordered_list) ".";
}

/* --- Offer Section --- */
.offer-title h3 {
    margin-bottom: 44px;
}
.offer-banner {
    position: relative;
    padding: 0 0 28px 100px;
}
.offer-banner img {
    display: block;
}
.offer-banner a {
    background-color: #1841B5;
    width: 250px;
    display: flex;
    flex-direction: column;
    padding: 19px 18px 23px 28px;
    position: absolute;
    bottom: 0;
    right: 0;
    gap: 16px;
}
.offer-banner a i {
    align-self: flex-end;
    width: 18px;
    height: 18px;
    transform-origin: 0% 100%;
    transition: transform 0.3s;
}
.offer-banner a i::before {
    background-color: #ffffff;
}
.offer-banner a h5 {
    align-self: flex-start;
    line-height: calc(var(--t-h5-lh) - 2px);
    color: #ffffff;
    margin: 0;
}

/* 10. FOOTER
------------- */
footer#main-footer {
    background: var(--s-footer-bg);
    color: var(--s-footer-text);
    --s-headings: var(--s-footer-title);
    --s-content-text: var(--s-footer-text);
    --s-border: var(--s-footer-border);
}
footer#main-footer a {
    color: var(--s-footer-link);
    transition: color 0.3s;
}
footer#main-footer .title,
footer#main-footer h1,
footer#main-footer h2,
footer#main-footer h3,
footer#main-footer h4,
footer#main-footer h5,
footer#main-footer h6,
footer#main-footer a.title {
    color: var(--s-footer-title);
}
.footer-widgets {
    display: flex;
    justify-content: flex-start;
    padding: 145px 0 73px 0;
    contain: paint;
}
.footer-widgets > div:not(:first-child) {
    padding-top: 170px;
}
.footer-widgets h6 {
    margin-bottom: 31px;
}

/* --- Footer Info --- */
.footer-widgets > div.footer-info {
    width: 40.4%;
    padding-right: var(--d-gap);
}
.footer-info .contact-links {
    padding-top: 24px;
}
/* --- Footer Menu --- */
.footer-widgets > div.footer-menu {
    width: 16.3%;
    padding-right: var(--d-gap);
}
.footer-menu ul {
    padding: 0;
    margin: 0;
    font-size: 21px;
    line-height: 27px;
    letter-spacing: -0.01em;
}
.footer-menu ul li {
    padding: 4px 0 20px 0;
    margin: 0;
    list-style: none;
}
/* --- Footer Contacts --- */
.footer-widgets > div.footer-contacts {
    width: 27.7%;
    padding-right: 60px;
}
.footer-contacts div .title {
    margin: 0 0 5px 0;
}
.footer-contacts div:last-child {
    margin-top: 32px;
}
/* --- Footer Socials --- */
.social-links {
    padding: 0;
    margin: 0;
}
.social-links li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 17px;
}
.social-links li i {
    width: 12px;
    height: 12px;
    margin-left: 4px;
}
.footer-widgets .social-links li {
    padding: 0 0 7px 0;
}

.footer-widgets h2 {
    font-size: 110px;
    line-height: 1em;
}
.copyright {
    border-top: 1px solid var(--s-footer-border);
    padding: 40px 0 44px 0;
    font-size: var(--t-content-small-fs);
    line-height: var(--t-content-small-lh);
    letter-spacing: 0;
}

/* 11. ICONS
------------ */
i[class*='icon-'] {
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    display: inline-block;
    position: relative;
}
i[class*='icon-arrow']::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    transition: background-color 0.3s;
    background-color: var(--s-headings);
}
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-ne,
.icon-arrow-se,
.icon-arrow-nw,
.icon-arrow-sw {
    width: 17px;
    height: 12px;
}
.icon-arrow-left::before,
.icon-arrow-nw::before,
.icon-arrow-sw::before {
    -webkit-mask-image: var(--icon-arrow-left);
    mask-image: var(--icon-arrow-left);
}
.icon-arrow-ne::before,
.icon-arrow-sw::before {
    transform: rotate(-45deg);
}
.icon-arrow-se::before,
.icon-arrow-nw::before {
    transform: rotate(45deg);
}
.icon-arrow-right::before,
.icon-arrow-ne::before,
.icon-arrow-se::before {
    -webkit-mask-image: var(--icon-arrow-right);
    mask-image: var(--icon-arrow-right);
}

.icon-arrow-big-left,
.icon-arrow-big-right,
.icon-arrow-big-ne,
.icon-arrow-big-se,
.icon-arrow-big-nw,
.icon-arrow-big-sw {
    width: 23px;
    height: 24px;
}
.icon-arrow-big-left::before,
.icon-arrow-big-nw::before,
.icon-arrow-big-sw::before {
    -webkit-mask-image: var(--icon-arrow-big-left);
    mask-image: var(--icon-arrow-big-left);
}
.icon-arrow-big-ne::before,
.icon-arrow-big-sw::before {
    transform: rotate(-45deg);
}
.icon-arrow-big-se::before,
.icon-arrow-big-nw::before {
    transform: rotate(45deg);
}
.icon-arrow-big-right::before,
.icon-arrow-big-ne::before,
.icon-arrow-big-se::before {
    -webkit-mask-image: var(--icon-arrow-big-right);
    mask-image: var(--icon-arrow-big-right);
}

.icon-small-arrow-left,
.icon-small-arrow-right {
    width: 13px;
    height: 12px;
    background-color: var(--s-headings);
}
.icon-small-arrow-left {
    -webkit-mask-image: var(--icon-arrow-small-left);
    mask-image: var(--icon-arrow-small-left);
}
.icon-small-arrow-right {
    -webkit-mask-image: var(--icon-arrow-small-right);
    mask-image: var(--icon-arrow-small-right);
}
.icon-menu-arrow {
    -webkit-mask-image: var(--icon-menu-arrow);
    mask-image: var(--icon-menu-arrow);
}

.icon-gear {
    width: 24px;
    height: 24px;
    -webkit-mask-image: var(--icon-gear);
    mask-image: var(--icon-gear);
    background-color: var(--s-headings-gray);
}

.icon-speed,
.icon-dashboard,
.icon-magicpen,
.icon-note,
.icon-basket,
.icon-trophy {
    width: 49px;
    height: 49px;
    background-color: var(--s-headings);
}
.icon-note {
    -webkit-mask-image: var(--icon-note);
    mask-image: var(--icon-note);
}
.icon-basket {
    -webkit-mask-image: var(--icon-bag);
    mask-image: var(--icon-bag);
}
.icon-trophy {
    -webkit-mask-image: var(--icon-cup);
    mask-image: var(--icon-cup);
}
.icon-speed {
    -webkit-mask-image: var(--icon-speed);
    mask-image: var(--icon-speed);
}
.icon-dashboard {
    -webkit-mask-image: var(--icon-dashboard);
    mask-image: var(--icon-dashboard);
}
.icon-magicpen {
    -webkit-mask-image: var(--icon-magicpen);
    mask-image: var(--icon-magicpen);
}

.icon-facebook,
.icon-twitter,
.icon-instagram,
.icon-linkedin {
    width: 20px;
    height: 20px;
    background-color: var(--s-headings);
}
.icon-facebook {
    -webkit-mask-image: var(--icon-facebook);
    mask-image: var(--icon-facebook);
}
.icon-twitter {
    -webkit-mask-image: var(--icon-twitter);
    mask-image: var(--icon-twitter);
}
.icon-instagram {
    -webkit-mask-image: var(--icon-instagram);
    mask-image: var(--icon-instagram);
}
.icon-linkedin {
    -webkit-mask-image: var(--icon-linkedin);
    mask-image: var(--icon-linkedin);
}
/* 12. ANIMATIONS
----------------- */
:root {
    --ea-move: var(--d-gap);
    --ea-zoom-in: 0.9;
    --ea-zoom-out: 1.1;
    --ea-duration: 0.5s;
}
[data-split-appear] {
    --ea-move: 0.5em;
}
.setting-up,
[data-stc-appear]:not(.is-done) > *,
[data-split-appear].setting-up [data-appear] {
    transition: unset!important;
}
[data-unload*='fade-'].is-unloading,
[data-unload*='zoom-'].is-unloading,
[data-appear*='fade-']:not(.setting-up),
[data-appear*='zoom-']:not(.setting-up) {
    transition: opacity var(--ea-duration), transform var(--ea-duration);
    will-change: opacity, transform;
}
[data-unload*='fade-'].is-unloading,
[data-unload*='zoom-'].is-unloading,
[data-appear*='fade-'],
[data-appear*='zoom-'] {
    opacity: 0;
}
[data-appear*="zoom-"].in-view,
[data-appear*="fade-"].in-view {
    opacity: 1;
    transform: scale(1) translate(0,0);
}
[data-unload="zoom-out"].is-unloading,
[data-appear="zoom-in"],
[data-appear="fade-zoom"] {
    transform: scale(var(--ea-zoom-in));
}
[data-unload="fade-down"].is-unloading,
[data-appear="fade-up"] {
    transform: translateY(var(--ea-move));
}
[data-unload="fade-up"].is-unloading,
[data-appear="fade-down"] {
    transform: translateY(calc(-1 * var(--ea-move)));
}
[data-unload="fade-right"].is-unloading,
[data-appear="fade-left"] {
    transform: translateX(var(--ea-move));
}
[data-unload="fade-left"].is-unloading,
[data-appear="fade-right"] {
    transform: translateX(calc(-1 * var(--ea-move)));
}
[data-unload="fade-down-right"].is-unloading,
[data-appear="fade-up-left"] {
    transform: translate(var(--ea-move), var(--ea-move));
}
[data-unload="fade-down-left"].is-unloading,
[data-appear="fade-up-right"] {
    transform: translate(calc(-1 * var(--ea-move)), var(--ea-move));
}
[data-unload="fade-up-right"].is-unloading,
[data-appear="fade-down-left"] {
    transform: translate(var(--ea-move), calc(-1 * var(--ea-move)));
}
[data-unload="fade-up-left"].is-unloading,
[data-appear="fade-down-right"] {
    transform: translate(calc(-1 * var(--ea-move)), calc(-1 * var(--ea-move)));
}
[data-unload="zoom-out-down"].is-unloading,
[data-appear="zoom-in-up"] {
    transform: translateY(var(--ea-move)) scale(var(--ea-zoom-in));
}
[data-unload="zoom-out-up"].is-unloading,
[data-appear="zoom-in-down"] {
    transform: translateY(calc(-1 * var(--ea-move))) scale(var(--ea-zoom-in));
}
[data-unload="zoom-out-right"].is-unloading,
[data-appear="zoom-in-left"] {
    transform: translateX(var(--ea-move)) scale(var(--ea-zoom-in));
}
[data-unload="zoom-out-left"].is-unloading,
[data-appear="zoom-in-right"] {
    transform: translateX(calc(-1 * var(--ea-move))) scale(var(--ea-zoom-in));
}
[data-unload="zoom-out-down-right"].is-unloading,
[data-appear="zoom-in-up-left"] {
    transform: translate(var(--ea-move), var(--ea-move)) scale(var(--ea-zoom-in));
}
[data-unload="zoom-out-down-left"].is-unloading,
[data-appear="zoom-in-up-right"] {
    transform: translate(calc(-1 * var(--ea-move)), var(--ea-move)) scale(var(--ea-zoom-in));
}
[data-unload="zoom-out-up-right"].is-unloading,
[data-appear="zoom-in-down-left"] {
    transform: translate(var(--ea-move), calc(-1 * var(--ea-move))) scale(var(--ea-zoom-in));
}
[data-unload="zoom-out-up-left"].is-unloading,
[data-appear="zoom-in-down-right"] {
    transform: translate(calc(-1 * var(--ea-move)), calc(-1 * var(--ea-move))) scale(var(--ea-zoom-in));
}
[data-unload="fade-zoom"].is-unloading,
[data-unload="zoom-in"].is-unloading,
[data-appear="zoom-out"] {
    transform: scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-down"].is-unloading,
[data-appear="zoom-out-up"] {
    transform: translateY(var(--ea-move)) scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-up"].is-unloading,
[data-appear="zoom-out-down"] {
    transform: translateY(calc(-1 * var(--ea-move))) scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-right"].is-unloading,
[data-appear="zoom-out-left"] {
    transform: translateX(var(--ea-move)) scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-left"].is-unloading,
[data-appear="zoom-out-right"] {
    transform: translateX(calc(-1 * var(--ea-move))) scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-down-right"].is-unloading,
[data-appear="zoom-out-up-left"] {
    transform: translate(var(--ea-move), var(--ea-move)) scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-down-left"].is-unloading,
[data-appear="zoom-out-up-right"] {
    transform: translate(calc(-1 * var(--ea-move)), var(--ea-move)) scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-up-right"].is-unloading,
[data-appear="zoom-out-down-left"] {
    transform: translate(var(--ea-move), calc(-1 * var(--ea-move))) scale(var(--ea-zoom-out));
}
[data-unload="zoom-in-up-left"].is-unloading,
[data-appear="zoom-out-down-right"] {
    transform: translate(calc(-1 * var(--ea-move)), calc(-1 * var(--ea-move))) scale(var(--ea-zoom-out));
}

/* 13. HOVERS
------------- */
@media (hover:hover) {
    /* --- Buttons and Links --- */
    input[type="button"]:hover,
    input[type="reset"]:hover,
    input[type="submit"]:hover,
    button:hover,
    a.button:hover {
        border-color: var(--c-button-hborder);
        background-color: var(--c-button-hbg);
        color: var(--c-button-hcolor);
    }
    button.is-solid:hover,
    a.button.is-solid:hover {
        border-color: var(--c-button-solid-hbg);
        background-color: var(--c-button-solid-hbg);
        color: var(--c-button-solid-hcolor);
    }
    button:hover i::before,
    a.button:hover i::before {
        background-color: var(--c-button-hcolor);
    }
    button.is-solid:hover i::before,
    a.button.is-solid:hover i::before {
        background-color: var(--c-button-solid-hcolor);
    }
    .link-with-arrow:hover {
        color: var(--s-link-with-arrow-h);
    }
    .link-with-arrow:hover i::before {
        background-color: var(--s-link-with-arrow-h);
    }

    /* --- Menu --- */
    .menu-toggler:hover span:nth-child(3) {
        transform: scale(1.292, 1);
    }
    .main-menu-popup a:hover {
        opacity: 0.6;
    }
    .main-menu-list li a:hover::after {
        transform: translate(0,-2px) scale(1);
        opacity: 1;
    }

    /* --- Cookies --- */
    a.cookies-details:hover {
        color: var(--s-label);
    }
    .cookies-details:hover span {
        opacity: 1;
    }

    /* --- Elements --- */
    .iconbox-item:hover {
        background-color: var(--s-block-hover);
    }
    .portfolio-card:hover img {
        transform: scale(1.08);
    }
    .portfolio-grid > div:nth-child(6n-3):hover img,
    .portfolio-grid > div:nth-child(6n-2):hover img {
        transform: scale(1.06);
    }
    .portfolio-card:hover h6 {
        opacity: 0.6;
    }
    .toggled-item:hover::before {
        opacity: 0.15;
    }
    .partners-grid a:hover {
        opacity: 1;
    }
    .partners-grid.reverse-hover a:hover {
        opacity: 0.3;
    }
    .team-card:hover ul.team-socials {
        opacity: 1;
        transform: translate(0);
    }
    .carousel-nav a:hover::before {
        opacity: 1;
    }
    .journal-item:hover img {
        transform: scale(1.08);
    }
    .journal-item:hover h5 {
        opacity: 0.6;
    }
    .contact-links a:hover {
        opacity: 0.6;
    }
    .shop-partners-list a:hover {
        opacity: 1;
    }
    .offer-banner a:hover i {
        transform: scale(1.2);
    }

    /* --- Footer --- */
    footer#main-footer a:hover {
        color: var(--s-footer-hlink);
    }
}

/* CUSTOM */
h2.accordeon-title {
    font-size: var(--t-h6-fs);
    line-height: var(--t-h6-lh);
    letter-spacing: var(--t-h6-ls);
    font-family: var(--heading-ff);
    font-weight: var(--heading-fw);
    color: var(--s-headings);
    margin: 0;
}

.accordeon-item h2::before {
    counter-increment: accordeon_count;
    content: "0" counter(accordeon_count) ".";
    display: inline-block;
    width: 43px;
}