/* # Reset */
html, body, a, article, aside, div, em, fieldset, footer, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, label, legend, li, menu, nav, ol, p, section, small, span, strong, ul, blockquote, cite, video {
	margin: 0;
	padding: 0;
	border: 0;
}
article, aside, footer, header, menu, nav, section {
	display: block;
}
strong {
	font-weight: bold;
}
img {
	vertical-align: middle;
}
li {
	display: list-item;
	list-style: none;
}

/* # Variables */
:root {
    --page--width: 1754px;
    --page--spacing: 82px;
    
    --color--font: #fff;
    --color--font-1: #dcdcdc;
    --color--font-2: #c3c3c3;
    --color--background: #282828;
    --color--background-contrast: #1a1a1a;
    
    --border--radius: 12px;
    
    --header--menu-gap: clamp(24px, 2.2vw, 36px);
    
    --modal--spacing: min(64px, var(--page--spacing));
    
    --intro--font-size-landscape: clamp(32px, 4vw, 72px);
    --intro--font-size-portrait: clamp(32px, 4.4vh, 72px);
    --intro--height-offset: 0px;
    
    --theme-preview--header-height: 80px;
    
    --about--list-padding: clamp(32px, 4vw, 58px);
    
    --form--row-gap: calc(var(--page--spacing) / 2);
    --form--control-padding: 18px 22px;
}
@media (min-height: 560px) {
    :root {
        --intro--height-offset: 146px;
    }
}
@media (max-width: 1920px) {
    :root {
        --intro--font-size-landscape: clamp(32px, 4vw, 74px);
    }
}
@media (max-width: 1440px) {
    :root {
        --page--spacing: 64px;
    }
}
@media (max-width: 1280px) {
    :root {
        --page--spacing: 42px;
        
        --form--row-gap: 32px;
    }
}
@media (max-width: 1080px) {
    :root {
        --theme-preview--header-height: 64px;
    }
}
@media (max-width: 1023px) {
    :root {
        --intro--font-size-landscape: clamp(34px, 9.6vw, 46px);
    }
}
@media (max-width: 680px) {
    :root {
        --page--spacing: 25px;
        
        --border--radius: 8px;
        
        --modal--spacing: calc(var(--page--spacing) * 1.4);
    }
}
@media (max-width: 360px) {
    :root {
        --page--spacing: 20px;
    }
}

/* # Animations */
@-webkit-keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* # General */
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/*-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;*/
}
html,
body {
	width: 100%;
	min-height: 100%;
}
html.smooth-scroll-on:not(.scroll-behavior-snap) {
    scroll-behavior: smooth;
}
body {
    visibility: hidden;
    font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
    line-height: 1.2;
	color: var(--color--font);
    opacity: 0;
    transition: opacity .2s ease;
    background-color: var(--color--background);
}
body.page-show {
    visibility: visible;
    opacity: 1;
}
a {
    color: inherit;
    text-decoration: none;
}
a:not(.button) {
    position: relative;
    display: inline-block;
}
a:not(.button):after {
    visibility: hidden;
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    transform: scaleX(1);
    transform-origin: bottom right;
    background-color: var(--color--font);
}
body.transitions-on a:not(.button):after {
    visibility: visible;
    transition: transform .3s ease;
}
.no-touch a:not(.button):hover:after {
    transform: scaleX(0);
    transform-origin: bottom right;
}
.no-touch a.animate-in:not(.button):after,
.no-touch .anchor-animate-in a:not(.button):after {
    transform: scaleX(0);
    transform-origin: bottom left;
}
.no-touch a.animate-in:not(.button):hover:after,
.no-touch .anchor-animate-in a:not(.button):hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.touch a.animate-in:not(.button):after,
.touch .anchor-animate-in a:not(.button):after {
    display: none;
}
::placeholder {
    color: var(--color--font);
    opacity: 1;
}
::-ms-input-placeholder { /* Edge */
    color: var(--color--font);
}

/* # Structure */
.inner {
    max-width: calc(var(--page--width) + (var(--page--spacing) * 2));
    margin: 0 auto;
    padding-left: var(--page--spacing);
    padding-right: var(--page--spacing);
}

/* # Transitions */
body:not(.transitions-on) * { /* Disable transitions on page-load */
	transition: none !important;
}
.intro h1,
.intro .intro-sub-titles,
.themes {
    opacity: 0;
    transform: translateY(40px);
}
body.transitions-on.transition-content .intro h1,
body.transitions-on.transition-content .intro .intro-sub-titles,
body.transitions-on.transition-content .themes {
    transition: opacity 1s ease, transform .5s ease;
}
body.transitions-on.transition-content .intro h1 {
    transition-delay: .2s;
}
body.transitions-on.transition-content .intro .intro-sub-titles {
    transition-delay: .4s;
}
body.transitions-on.transition-content .themes {
    transition-delay: .8s;
}
body.transitions-on .intro h1,
body.transitions-on .intro .intro-sub-titles,
body.transitions-on .themes {
    opacity: 1;
    transform: translateY(0px);
}

/* # Elements */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: inherit;
    color: var(--color--font);
    height: 42px;
    padding-left: 24px;
    padding-right: 24px;
    text-decoration: none;
    border: 2px solid var(--color--font);
    border-radius: 50px;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
    background-color: transparent;
}
.no-touch .button:hover {
    color: var(--color--background);
    background-color: var(--color--font);
}
.label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
    height: 22px;
    padding-left: 12px;
    padding-right: 12px;
    text-decoration: none;
    border: 2px solid var(--color--font);
    border-radius: 50px;
}

/* # Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 132px;
    z-index: 101;
    transition: height .4s ease;
}
@media (min-width: 681px) {
    .header-scroll-state #header {
        height: 110px;
    }
}
#header:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    opacity: .25;
    transition: opacity .4s ease;
    background: linear-gradient(180deg, rgb(40, 40, 40) 50%, rgba(40,40,40,0) 100%);
}
.header-scroll-state #header:before {
    opacity: 1;
}
#header .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
#header .inner > *:not(#header-menu-button) {
    flex: 1;
}
#header a:after {
    bottom: -2px;
}
@media (max-width: 1024px) {
    #header {
        height: 128px;
    }
}
@media (max-width: 680px) {
    #header {
        height: 94px;
    }
}
@media (max-width: 360px) {
    #header {
        height: 80px;
    }
}

/* # Header: Logo */
.header-logo img {
    display: block;
    height: auto;
}
.header-logo a {
    display: block;
    transition: opacity .4s ease;
}
.no-touch .header-logo a:hover {
    opacity: .82;
}
.header-logo a:after {
    display: none;
}
@media (max-width: 1024px) {
    .header-logo img {
        width: 70px;
    }
}
@media (max-width: 360px) {
    .header-logo img {
        width: 50px;
    }
}

/* # Header: Menu button */
#header-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    flex: initial;
    width: 32px;
    height: 28px;
    cursor: pointer;
}
#header-menu-button:after {
    display: none;
}
.header-menu-icon {
    position: relative;
    display: block;
    width: 16px;
    height: 2px;
    margin-left: -8px;
    background-color: var(--color--font);
}
.mobile-menu-open .header-menu-icon {
    background-color: transparent;
}
.header-menu-icon:before,
.header-menu-icon:after {
    position: absolute;
    left: 0;
    display: block;
    content: "";
    width: calc(100% + 8px);
    height: 2px;
    transform: none;
    transform-origin: left;
    transition: transform 0.2s ease;
    background-color: var(--color--font);
}
.header-menu-icon:before {
    top: -8px;
}
.header-menu-icon:after {
    top: 8px;
}
body.mobile-menu-open:not(.mobile-menu-fade-out) .header-menu-icon:before {
    transform: rotate(45deg);
}
body.mobile-menu-open:not(.mobile-menu-fade-out) .header-menu-icon:after {
    transform: rotate(-45deg);
}
@media (max-width: 1024px) {
    #header-menu-button {
        display: flex;
    }
}

/* # Header: Menu center */
.header-menu-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--header--menu-gap);
    font-weight: 600;
}
@media (max-width: 1024px) {
    .header-menu-center {
        display: none;
    }
}

/* # Header: Menu right */
.header-menu-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--header--menu-gap);
    font-weight: 600;
}
.header-menu-right li:first-child {
    display: none;
}
@media (max-width: 1280px) {
    .header-menu-right .button {
        height: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1024px) {
    .header-menu-right {
        margin-right: var(--page--spacing);
    }
    .header-menu-right li {
        display: none;
    }
    body:not(.mobile-menu-open) .header-menu-right li:first-child {
        display: inline-block;
    }
}

/* # Mobile menu */
body.mobile-menu-open {
    overflow: hidden;
}
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 1px;
    height: 1px;
    opacity: 0;
    transition: opacity .2s ease;
    background-color: var(--color--background-contrast);
}
.mobile-menu-open #mobile-menu {
    z-index: 100;
    width: 100%;
    height: 100%;
    padding-top: 128px;
    opacity: 1;
}
.mobile-menu-fade-out #mobile-menu {
    opacity: 0;
}
#mobile-menu .inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 42px;
}
#mobile-menu a:after {
    display: none;
}
.mobile-menu-main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.36em;
    font-size: clamp(36px, 10.5vw, 44px);
    font-weight: 600;
    line-height: 1;
}
.mobile-menu-secondary {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 18px;
}
.mobile-menu-icons {
    display: flex;
    align-items: center;
}
.mobile-menu-icons a {
    display: block;
}
.mobile-menu-icons li:first-child a {
    padding-right: 18px;
    margin-right: 18px;
    border-right: 0px solid #707070;
}
.mobile-menu-icons .envato svg {
    display: block;
	width: auto;
	height: 24px;
}
.mobile-menu-icons .envato .inline-svg-icon {
    display: block;
    width: 20px;
    height: 40px;
    background-size: 28px auto;
    background-position: center;
	background-repeat: no-repeat;
}
.mobile-menu-icons .woocommerce svg {
    display: block;
	height: 40px;
	width: auto;
}
@media (min-width: 1025px) {
    #mobile-menu {
        display: none;
    }
}
@media (max-width: 680px) {
    .mobile-menu-open #mobile-menu {
        padding-top: 112px;
    }
}
@media (max-width: 360px) {
    .mobile-menu-open #mobile-menu {
        padding-top: 100px;
    }
}

/* # Video background */
#video-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-image: url(../img/trees-loop-poster2.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.video-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0, 0.46);
}
.video-cover:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 280px;
    background: linear-gradient(0deg, rgb(40, 40, 40) 0%, rgba(0,0,0,0.0) 100%)
}
#video-wrapper video {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* # Intro */
.intro {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: calc(100vh - var(--intro--height-offset));
    padding-top: 92px;
    padding-left: var(--page--spacing);
    padding-right: var(--page--spacing);
    text-align: center;
}
.intro .inner {
    /*max-width: 1800px;*/
    max-width: 1754px;
}
.intro h1 {
    font-size: var(--intro--font-size-landscape);
}
.intro-sub-titles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-top: 42px;
}
.intro-sub-titles h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color--font-1);
}
@media only screen and (max-width: 1024px) and (min-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) { /* Use "--intro--font-size-portrait" variable for iPad Pro */
    .intro h1 {
        font-size: var(--intro--font-size-portrait);
    }
}
@media (max-width: 1024px) {
    .intro {
        padding-top: 86px;
    }
    .intro-sub-titles {
        gap: 30px;
    }
    .intro-sub-titles h3 {
        font-size: 16px;
    }
}
@media (max-width: 1023px) and (min-height: 500px) {
    .intro {
        padding-left: 0;
        padding-right: 0;
    }
    /*.intro h1 {
        font-size: var(--intro--font-size-portrait);
    }*/
}
@media (max-width: 767px) {
    .intro-sub-titles {
        row-gap: 16px;
        column-gap: 30px;
        margin-top: 34px;
    }
    .intro-sub-titles h3 {
        font-size: 15px;
    }
}
@media (max-width: 680px) {
    .intro {
        padding-top: 70px;
    }
}
@media (max-width: 360px) {
    .intro {
        height: calc(100vh - 60px);
        padding-top: 60px;
    }
}

/* # Themes */
/*.themes {
    position: relative;
}
.themes:before,
.themes:after {
    position: absolute;
    left: 0;
    z-index: -1;
    content: "";
    width: 100%;
}
.themes:before {
    bottom: calc(100% - var(--intro--height-offset));
    height: 280px;
    background: linear-gradient(0deg, rgb(40, 40, 40) 0%, rgba(0,0,0,0.0) 100%);
}
.themes:after {
    top: var(--intro--height-offset);
    bottom: 0;
    background: var(--color--background);
}*/
.themes .inner {
    display: flex;
    flex-wrap: wrap;
    gap: var(--page--spacing);
}
.theme {
    flex: 1;
}
.theme .theme-images {
    position: relative;
    display: block;
    padding-right: min(42px, var(--page--spacing));
}
.theme-images:after {
    display: none;
}
.theme-images .theme-image-desktop {
    width: 100%;
    height: auto;
    border-radius: var(--border--radius);
}
.theme-images .theme-image-mobile {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 20%;
    height: auto;
    border-radius: calc(var(--border--radius) * 1.5);
    /*transform: translateY(-40%);*/
    transform: translateY(calc(-1 * (40% + 6px)));
    transition: transform .4s ease;
    box-shadow: 0px 0px 22px 2px rgba(0,0,0,0.4);
}
.theme.hover .theme-images .theme-image-mobile,
.no-touch .theme:hover .theme-images .theme-image-mobile {
	transform: translateY(-50%);
}
.theme-preview-cursor {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    width: 96px;
    height: 96px;
    margin: -48px 0 0 -48px;
    border-radius: 96px;
    transform: translate3d(0px, 0px, 0);
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
    background-color: #0598fa;
}
.theme-preview-cursor:after {
    content: "Me Interesa";
}
.no-touch .theme-images:hover .theme-preview-cursor {
    opacity: 1;
}
.theme-details {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}
.theme-details h4 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 600;
}
.theme-details h4 a {
    display: inline-block;
}
.theme-details h4 a:after {
    bottom: 0.06em;
}
.theme-details h4 .label {
    position: relative;
    top: 3px;
}
.theme-details p {
    line-height: 1.6;
    color: var(--color--font-1);
}
.theme-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 26px;
}
.theme-actions .button {
    height: 38px;
}
.theme.hover .theme-actions .button {
	color: var(--color--background);
	background-color: var(--color--font);
}
/*.no-touch .theme.hover .theme-actions a:not(.button):after {
	transform: scaleX(0);
	transform-origin: bottom right;
}*/
/*@media (max-width: 1366px) {
    .themes .inner {
        gap: min(40px, var(--page--spacing));
    }
}*/
@media (max-width: 1280px) {
    .theme-details h4 .label {
        top: auto;
        padding-left: 10px;
        padding-right: 10px;
    }
    .theme-actions .button {
        height: 36px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1023px) {
    .themes .inner {
        gap: 82px;
    }
    .theme {
        flex: auto;
        width: 100%;
    }
}
@media (max-width: 680px) {
    .themes .inner {
        gap: 56px;
    }
    .theme-details {
        margin-top: 22px;
    }
    .theme-actions {
        margin-top: 14px;
    }
}

/* #Theme preview */
body.theme-preview-open {
    overflow: hidden;
}
#theme-preview {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    transition: opacity .3s ease;
    background-color: #fff;
}
.theme-preview-open #theme-preview {
    visibility: visible;
    z-index: 1001;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.theme-preview-fade-out #theme-preview {
    opacity: 0;
}
.theme-preview-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: var(--theme-preview--header-height);
    padding-left: var(--page--spacing);
    padding-right: var(--page--spacing);
    background-color: var(--color--background);
}
.theme-preview-header-left {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
}
.theme-preview-header-left svg {
	display: block;
    width: auto;
	height: 38px;
    margin-left: -14px;
}
#theme-preview-back-button {
	margin-left: -7px;
}
#theme-preview-size-selector {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}
#theme-preview-size-selector li {
    opacity: .5;
    transition: opacity .2s ease;
}
#theme-preview-size-selector li:first-child {
    position: relative;
    margin-right: 9px;
    padding-right: 15px;
}
#theme-preview-size-selector li:first-child:after {
    position: absolute; 
    top: 5px;
    right: 0;
    bottom: 5px;
    content: "";
    border-right: 1px solid #777;
}
.no-touch #theme-preview-size-selector li:hover,
#theme-preview-size-selector li.selected {
    opacity: 1;
}
#theme-preview-size-selector a {
    display: block;
}
#theme-preview-size-selector a:after {
    display: none;
}
#theme-preview-size-selector svg {
    display: block;
    width: auto;
    height: 40px;
}
.theme-preview-header-right {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}
.theme-preview-header-right .button {
    height: 40px;
    padding-left: 22px;
    padding-right: 22px;
    white-space: nowrap;
}
.theme-preview-iframe-wrapper {
    display: flex;
    width: 100%;
    height: calc(100% - var(--theme-preview--header-height));
}
.theme-preview-iframe-inner {
	display: flex;
	align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #dadada;
}
#theme-preview-iframe-size {
    position: relative;
    width: 100%;
	height: 100%;
    opacity: 1;
    transition: opacity .2s ease;
    background-color: #fff;
}
#theme-preview-iframe-size.fade-out {
    opacity: 0;
}
#theme-preview-iframe-size.mobile {
    max-width: 375px;
    max-height: 812px;
    box-shadow: 3px 3px 40px 0 rgba(0,0,0,0.05);
}
#theme-preview-iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 1920px) {
    .theme-preview-header {
        padding-left: calc(var(--page--spacing) / 2);
        padding-right: calc(var(--page--spacing) / 2);
    }
}
@media (max-width: 1770px) {
    .theme-preview-header {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 1080px) {
    #theme-preview-back-button:after {
        display: none;
    }
    #theme-preview-link {
        display: none;
    }
    .theme-preview-header-right .button {
        height: 34px;
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media (max-width: 768px) {
    .theme-preview-header {
        padding-left: 18px;
        padding-right: 18px;
    }
    #theme-preview-size-selector {
        display: none;
    }
}
@media (max-width: 430px) {
    #theme-preview-iframe-size.mobile {
        max-width: none;
        max-height: none;
        border: 0 none;
        box-shadow: none;
    }
}

/* #Section headers */
.section-header {
    max-width: calc(var(--page--width) / 2);
    margin: 0 auto;
    padding-top: 105px;
    padding-bottom: 110px;
}
.section-header h2 {
    font-size: var(--intro--font-size-landscape);
    font-weight: 600;
    text-align: center;
}
.section-header p {
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.4;
    color: var(--color--font-2);
    margin-top: 20px;
}
@media (max-width: 1440px) {
    .section-header {
        padding-top: 88px;
        padding-bottom: 94px;
    }
}
@media only screen and (max-width: 1024px) and (min-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) { /* Use "--intro--font-size-portrait" variable for iPad Pro */
    .section-header h2 {
        font-size: var(--intro--font-size-portrait);
    }
}
@media (max-width: 1023px) and (min-height: 500px) {
    .section-header h2 {
        font-size: var(--intro--font-size-portrait);
    }
}
@media (max-width: 1280px) {
    .section-header {
        padding-top: 80px;
        padding-bottom: 84px;
    }
}
@media (max-width: 680px) {
    .section-header {
        padding-top: 64px;
        padding-bottom: 66px;
    }
}
@media (max-width: 360px) {
    .section-header p {
        font-size: 16px;
    }
}

/* # About */
.about {
    margin-top: 120px;
    padding-bottom: 120px;
    background-color: var(--color--background-contrast);
}
.about-list {
	display: flex;
	flex-wrap: wrap;
    gap: var(--page--spacing);
}
.about-list li {
    position: relative;
    width: calc(50% - (var(--page--spacing) / 2));
    padding: var(--about--list-padding);
    border-radius: var(--border--radius);
    background-color: var(--color--background);
}
.about-list li:last-child {
    padding-bottom: 0;
    background-color: transparent;
}
.about-list .badge {
    position: absolute;
    top: calc(var(--about--list-padding) / 2);
    right: calc(var(--about--list-padding) / 2);
    display: block;
    width: auto;
    height: clamp(52px, 5vw, 70px);
}
.about-list h4 {
    font-size: clamp(28px, 2.5vw, 40px);
}
.about-list p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color--font-1);
    margin-top: 16px;
}
.about-list .button {
    margin-top: 28px;
}
.about-list-image-cover {
    position: relative;
    overflow: hidden;
}
.about-list-image-cover span {
	position: absolute;
	top: calc(var(--about--list-padding) / 2);
	right: calc(var(--about--list-padding) / 2);
	z-index: 100;
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	border-radius: 6px;
    background-color: #333;
}
.about-list-image-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1440px) {
    .about {
        margin-top: 100px;
        padding-bottom: 100px;
    }
    .about-list p {
        font-size: 16px;
        line-height: 1.6;
    }
}
@media (max-width: 1280px) {
    .about {
        margin-top: 90px;
        padding-bottom: 90px;
    }
}
@media (max-width: 1023px) {
    .about-list li {
        width: 100%;
    }
    .about-list-image-cover {
        aspect-ratio: 16 / 6;
        max-height: 230px;
    }
    .about-list p {
        margin-bottom: 6px;
    }
}
@media (max-width: 680px) {
    .about {
        margin-top: 72px;
        padding-bottom: 72px;
    }
}
@media (max-width: 460px) {
    .about-list-image-cover {
        min-height: 300px;
        max-height: none;
    }
}
@media (max-width: 360px) {
    .about-list .badge {
        height: 44px;
    }
}

/* # Showcase */
.showcase-list {
	display: flex;
	flex-wrap: wrap;
    row-gap: 76px;
    column-gap: var(--page--spacing);
}
.showcase-list li {
    width: calc(50% - (var(--page--spacing) / 2));
    opacity: 1;
    transition: opacity .2s ease;
}
.showcase-list li.hidden {
    opacity: 0;
}
.showcase-list li > a {
    display: block;
}
.showcase-list li > a:after {
    display: none;
}
.showcase-list img {
    width: 100%;
    height: auto;
    border-radius: var(--border--radius);
    transition: opacity .4s ease;
}
.showcase-list a:hover img {
    opacity: .82;
}
.showcase-list h4 {
	display: flex;
	align-items: center;
    gap: 15px;
    font-size: clamp(24px, 2.5vw, 40px);
	font-weight: 600;
	margin-top: 34px;
}
.showcase-list h4 a {
    display: inline-block;
}
.showcase-list h4 a:after {
    bottom: 0.06em;
}
.showcase-list h4 .label {
	position: relative;
	top: 3px;
}
.showcase-list p {
    line-height: 1.6;
    color: var(--color--font-1);
    margin-top: 8px;
}
.showcase-list p a:after {
    bottom: 2px;
}
.showcase-pagination {
    position: relative;
    margin-top: 76px;
    text-align: center;
}
.showcase-pagination.loading:before {
    position: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	display: block;
	content: " ";
	width: 28px;
	height: 28px;
	margin: -14px 0 0 -14px;
	border-width: 3px;
	border-style: solid;
	border-color: var(--color--font) var(--color--font) var(--color--background) var(--color--background);
	border-radius: 28px;
	transform: translateZ(0);
	-webkit-animation: spinner 0.4s infinite linear;
	animation: spinner 0.4s infinite linear;
}
.showcase-pagination.pages-loaded {
    display: none;
}
.showcase-pagination .button {
    height: 46px;
    padding-left: 30px;
    padding-right: 30px;
}
.showcase-pagination.loading .button {
    visibility: hidden;
}
@media (max-width: 1440px) {
    .showcase-list {
        row-gap: 66px;
    }
    .showcase-pagination {
        margin-top: 66px;
    }
}
@media (max-width: 1280px) {
    .showcase-list h4 .label {
        top: auto;
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 1023px) {
    .showcase-list li {
        width: 100%;
    }
}
@media (max-width: 680px) {
    .showcase-list {
        row-gap: 50px;
    }
    .showcase-list h4 {
        margin-top: 22px;
    }
    .showcase-pagination {
        margin-top: 50px;
    }
}

/* # Services */
.services {
    margin-top: 120px;
    padding-bottom: 120px;
    background-color: var(--color--background-contrast);
}
.services-columns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--page--spacing);
}
.services-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
}
.services-info > * {
    max-width: 730px;
}
.services-info h4 {
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 600;
}
.services-info > p {
	font-size: 18px;
	line-height: 1.5;
	color: var(--color--font-2);
	margin-top: 26px;
}
/* Clients */
.clients-wrapper {
    margin-top: auto;
    padding-top: 82px;
}
.clients-wrapper h5 {
    font-size: 20px;
    margin-bottom: 36px;
}
.client {
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    transform: translateX(40px);
}
.client.active {
    visibility: visible;
    position: relative;
    z-index: 1;
	width: auto;
    height: auto;
    padding: 2px 0;
    opacity: 1;
    transform: translateX(0px);
}
.client.fade-out {
    opacity: 0;
}
.client-header {
	display: flex;
	align-items: center;
    gap: 18px;
}
.client-header img {
    display: block;
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: var(--border--radius);
}
.client-header h6 {
    font-size: 24px;
    font-weight: 600;
}
.client-header cite {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	font-style: normal;
    color: var(--color--font-2);
	margin-top: 8px;
}
.client p {
    display: block;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color--font-2);
    margin-top: 22px;
}
#clients-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px -5px 0;
    overflow: hidden;
}
#clients-pagination li {
    padding: 5px;
    cursor: pointer;
}
#clients-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 8px;
    text-indent: -100em;
    border-radius: 8px;
    overflow: hidden;
    transition: width .2s ease;
    /*user-select: none;*/
    background-color: var(--color--font);
}
#clients-pagination a:after {
    display: none;
}
#clients-pagination .active a {
    width: 28px;
}
/* Form */
.services-form-wrapper {
    width: calc(50% - 41px);
}
#services-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: clamp(32px, 4vw, 58px);
    border-radius: var(--border--radius);
    background-color: var(--color--background);
}
.services-form-row {
    position: relative;
    margin-top: var(--form--row-gap);
}
.services-form-row.first {
    display: flex;
    flex-wrap: wrap;
    gap: var(--form--row-gap);
    margin-top: 0;
}
.services-form-column {
    flex: 1;
}
#services-form select,
#services-form textarea,
#services-form input {
    display: block;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    color: var(--color--font);
    width: 100%;
    margin: 0;
    padding: var(--form--control-padding);
    border: 0 none;
    border-radius: var(--border--radius);
    -webkit-appearance: none;
    appearance: none;
    transition: box-shadow .2s ease;
    background-color: var(--color--background-contrast);
}
#services-form select:active,
#services-form select:focus,
#services-form textarea:active,
#services-form textarea:focus,
#services-form input:active,
#services-form input:focus {
    outline: none;
    box-shadow: 0px 0px 0px 2px rgb(255,255,255,1) inset;
}
#services-form select {
    cursor: pointer;
    padding-right: 58px;
    text-overflow: ellipsis;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9999 13.9394L17.4696 8.46973L18.5303 9.53039L11.9999 16.0607L5.46961 9.53039L6.53027 8.46973L11.9999 13.9394Z" fill="%23ffffff"></path></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 18px) 50%;
    background-size: 26px;
}
/* Form: Validation */
#alert-statut {
    display: none;
}
#alert-statut:not(:empty) {
    display: block;
}
#alert-statut .alert {
    color: #ff9547;
    margin-bottom: var(--form--row-gap);
    padding: var(--form--control-padding);
    border: 2px solid #ff9547;
    border-radius: var(--border--radius);
}
#alert-statut .alert.alert-success {
    color: #47ffcb;
    border-color: #47ffcb;
}
.invalid-feedback {
    height: 0px;
    opacity: 0;
    transition: opacity .4s ease;
    overflow: hidden;
}
.is-invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-feedback {
    height: auto;
    margin-top: 10px;
    opacity: 1;
}
.alert-error {
  color: #ff6f00;
  border: 2px solid #ff6f00;
  background: #2e1f0e;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Form: Loader */
#loading-spinner {
	position: absolute;
    top: 0;
	left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color--background);
}
#loading-spinner.d-none {
    display: none;
}
#loading-spinner:before {
    position: absolute;
	top: 50%;
	left: 0;
	z-index: 100;
	display: block;
	content: " ";
	width: 28px;
	height: 28px;
	margin-top: -14px;
	border-width: 3px;
	border-style: solid;
	border-color: var(--color--font) var(--color--font) var(--color--background) var(--color--background);
	border-radius: 28px;
	transform: translateZ(0);
	-webkit-animation: spinner 0.4s infinite linear;
	animation: spinner 0.4s infinite linear;
}
/* Form: Recaptcha */
.grecaptcha-badge {
    display: none !important;
}
@media (max-width: 1440px) {
    .services {
        margin-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 1280px) {
    .services {
        margin-top: 90px;
        padding-bottom: 90px;
    }
    .services-form-row.first {
        gap: var(--form--row-gap);
        margin-top: 0;
    }
    .services-form-column {
        flex: auto;
        width: 100%;
    }
}
@media (max-width: 1023px) {
    .services-form-wrapper,
    .services-info {
        flex: auto;
        width: 100%;
    }
    .services-info h4 {
        margin-top: -12px;
    }
    .services-info h4 br {
        display: none;
    }
    .services-info > * {
        max-width: none;
    }
    .services-form-wrapper {
        margin-top: 12px;
    }
    .clients-wrapper {
        display: none;
    }
}
@media (max-width: 680px) {
    .services {
        margin-top: 72px;
        padding-bottom: 72px;
    }
    .services-info h4 {
        font-size: 22px;
    }
    .services-info > p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* # Support modal */
body.support-modal-open {
    overflow: hidden;
}
#support-modal {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 1px;
    height: 1px;
    padding: var(--page--spacing);
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(2vh);
    transition: opacity .2s ease, transform .2s ease;
    background: rgba(0,0,0, 0.9);
}
.support-modal-open #support-modal {
    visibility: visible;
    z-index: 1001;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateY(0vh);
}
.support-modal-fade-out #support-modal {
    opacity: 0;
    transform: translateY(2vh);
}
.support-modal-wrapper {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: var(--modal--spacing) var(--modal--spacing) calc(var(--modal--spacing) + 10px);
    border-radius: var(--border--radius);
    background-color: var(--color--background);
}
#support-modal-close-button {
    position: absolute;
    top: calc(var(--modal--spacing) / 2);
    right: calc(var(--modal--spacing) / 2);
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: opacity .2s ease;
}
.no-touch #support-modal-close-button:hover {
    opacity: .82;
}
#support-modal-close-button:before,
#support-modal-close-button:after {
    position: absolute;
    left: 0;
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    transform-origin: left;
    background-color: var(--color--font);
}
#support-modal-close-button:before {
    top: 0;
    transform: rotate(45deg);
}
#support-modal-close-button:after {
    bottom: 0;
    transform: rotate(-45deg);
}
.support-modal-wrapper h4 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    text-align: center;
}
.support-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: var(--modal--spacing);
}
.support-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding-top: 10px;
    padding-bottom: 20px;
}
.support-column:first-child {
    padding-right: var(--modal--spacing);
    border-right: 1px solid #464646;
}
.support-column:last-child {
    padding-left: var(--modal--spacing);
}
.support-column h5 {
    margin-top: 6px;
}
.support-column .inline-svg-icon,
.support-column svg {
    display: block;
    width: auto;
    height: 64px;
}
.support-column .inline-svg-icon {
    width: 64px;
    background-size: 44px auto;
    background-position: center;
	background-repeat: no-repeat;
}
.support-column h5 {
    font-size: 20px;
}
.support-column p {
    line-height: 1.5;
    color: var(--color--font-1);
    margin-top: 32px;
}
.support-column .button {
    margin-top: 36px;
}
.support-column span {
    display: block;
    font-size: 13px;
    color: var(--color--font-2);
    margin-top: 40px;
}
@media (max-width: 680px) {
    .support-modal-wrapper {
        position: relative;
        max-width: 1120px;
        margin: 0 auto;
        padding: calc(var(--modal--spacing) + 10px) var(--modal--spacing);
        border-radius: var(--border--radius);
        background-color: var(--color--background);
    }
    #support-modal-close-button {
        width: 16px;
        height: 16px;
    }
    #support-modal-close-button:before,
    #support-modal-close-button:after {
        width: 20px;
    }
    .support-column {
        flex: auto;
        width: 100%;
    }
    .support-column:first-child {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: calc(var(--modal--spacing) + 10px);
        border-right: 0 none;
        border-bottom: 1px solid #464646;
    }
    .support-column:last-child {
        padding-top: var(--modal--spacing);
        padding-bottom: 0;
        padding-left: 0;
    }
    
    .support-column .inline-svg-icon,
    .support-column svg {
        height: 58px;
    }
    .support-column .inline-svg-icon {
        width: 58px;
        background-size: 40px auto;
    }
    .support-column h5 {
        font-size: 18px;
    }
    
    .support-column p {
        margin-top: 26px;
    }
    .support-column .button {
        margin-top: 30px;
    }
    .support-column span {
        margin-top: 34px;
    }
}

/* # Footer */
.footer .inner {
    display: grid;
    grid-template-columns: 3fr repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 42px;
    grid-row-gap: 42px;
    color: var(--color--font-2);
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer-info img {
    width: 54px;
    height: auto;
}
.footer-info p {
    margin-top: 27px;
}
.footer-info p span {
    display: block;
    margin-top: 15px;
}
.footer-info svg {
    display: inline;
    width: 16px;
    height: 16px;
    fill: #fff;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-menu li {
    display: block;
}
.footer-menu h5 {
    font-size: inherit;
    font-weight: 400;
    margin-bottom: 10px;
}
.footer-menu a {
    color: var(--color--font);
}
.footer-menu a:after {
    transform: scaleX(0);
    transform-origin: bottom left;
}
.no-touch .footer-menu a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
@media (max-width: 1280px) {
    .footer .inner {
        grid-template-columns: 2fr repeat(3, 1fr);
        grid-column-gap: var(--page--spacing);
        grid-row-gap: var(--page--spacing);
        padding-top: 64px;
        padding-bottom: 72px;
    }
}
@media (max-width: 1023px) {
    .footer .inner {
        display: flex;
        flex-wrap: wrap;
        grid-row-gap: 52px;
        padding-bottom: 54px;
    }
    .footer-info {
        order: 1;
        display: flex;
        flex: 100%;
        align-items: center;
        gap: 16px;
        margin-top: 8px;
    }
    .footer-info img {
        width: 38px;
    }
    .footer-info p {
        display: flex;
        flex: 1;
        align-items: center;
        font-size: 15px;
        margin-top: 0;
    }
    .footer-info p span {
        display: inline;
        margin-top: 0;
        margin-left: auto;
    }
    .footer-menu {
        flex: 1;
    }
}
@media (max-width: 680px) {
    .footer .inner {
        padding-top: 56px;
    }
    .footer-info {
        margin-top: 4px;
    }
    .footer-info img {
        width: 50px;
    }
    .footer-info p {
        display: inline;
        margin-top: 0;
    }
    .footer-info p span {
        display: block;
        margin-top: 8px;
    }
    .footer-menu:last-child {
        flex: auto;
        width: 100%;
    }
}