@import 'typo.css';
/*@import "swiper.css";*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a, a:hover, a:focus, a:active, a:visited,
button, button:hover, button:focus, button:active, button:visited {
    outline: none;
}

.clear:after {
    content: "";
    float: none;
    clear: both;
    overflow: hidden;
    display: table;
    width: 100%;
}

img, svg {
    display: block;
    padding: 0;
    margin: 0;
    outline: none;
}

a, a:hover {
    color: inherit;
    text-decoration: none;
}

a:active, a:visited {
    /*color: inherit!important;*/
}

html {
    position: relative;
    width: 100%;
    height: 100%;
    font-weight: 300;
    font-size: 16px;
    padding: 0;
    margin: 0;
    --Black: #141414;
    --White: rgba(242, 242, 242, 1);
    --Grey: #333333;
    --Dark-Grey: #222222;
    --Light-Grey: #4C4C4C;
    --Vio-regular: rgba(111, 36, 255, 1);
    --Vio-regular-rgb: 111, 36, 255;
    scroll-behavior: smooth;
}

body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    background-color: var(--Black);
    min-width: 320px;
    color: #ffffff;
    top: 0;
    left: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    padding: 0;
    margin: 0;
    min-height: 100%;
    scroll-behavior: smooth;
}

body.preload {
    pointer-events: none;
}

body.locked {
    overflow: hidden;
}

/* general */

main {
    position: relative;
    width: 100%;
    margin: auto;
    display: block;
}

#page-footer {
    background-color: var(--Black);
}

.size--0 {
    width: 100%;
    max-width: 1280px;
}

.size--1 {
    width: 100%;
    padding: 0;
}

.size--2 {
    width: 100vw;
    height: 100vh;
}

/**/

section {
    position: relative;
    z-index: 1;
}

.c-main {
    color: var(--Vio-regular);
}

.bgc-white {
    background-color: #fff;
}

.bgc-blue {
    background-color: #001fca;
}

.bgc-green {
    background-color: #00FFBE;
}

.bgc-red {
    background-color: #FF0078;
}

svg, img {
    display: block;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.bg-wrapper {
    width: 100%;
    height: 100%;
    background: no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
}


.bg-5-gradient {
    background: rgb(3, 1, 75);
    background: linear-gradient(0deg, rgba(3, 1, 75, 1) 0%, rgba(38, 0, 119, 1) 25%, rgba(69, 0, 157, 1) 50%, rgba(38, 0, 119, 1) 75%, rgba(3, 1, 75, 1) 100%);
}

#noise--wrapper {
    opacity: 0.05;
    position: fixed;
    z-index: 2;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#noise--wrapper canvas {
    width: 100%;
    height: 100%;
    display: block;
}

#page-header {
    position: fixed;
    bottom: calc(70px + 80px);
    left: 0;
    width: 100%;
    z-index: 3;
    height: 0;
    justify-content: center;
    display: flex;
    padding: 0 20px;
}

.header--wrapper {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 35px;
    height: 70px;
    border-radius: 15px;
    background: var(--Dark-Grey, #222);
    padding: 10px 32px;
    opacity: 0.4;
    transition: opacity 0.6s ease-out;
    max-width: 100%;
    width: 100%;
}

@media all and (min-width: 1px) {

    #page-header {
        bottom: calc(45px + 30px);
    }

    .header--wrapper {
        gap: 12px;
        height: 45px;
        border-radius: 8px;
        background: var(--Dark-Grey, #222);
        padding: 5px 12px;
        opacity: 1;
        transition: none;
    }
}

@media all and (min-width: 1200px) {

    #page-header {
        bottom: calc(70px + 80px);
    }

    .header--wrapper {
        gap: 35px;
        height: 70px;
        border-radius: 15px;
        padding: 10px 32px;
        opacity: 0.4;
        transition: opacity 0.6s ease-out;
        width: auto;
    }
}

.header--wrapper:hover {
    opacity: 1;
    transition: opacity 0.2s ease-out;
}

.header--logo {
    display: block;
    cursor: pointer;
}

.header--logo svg {
    fill: #f2f2f2;
}

.header--menu {
    display: flex;
    align-self: stretch;
    align-items: center;
    flex: 1 1 100%;
}

.header--menu--item {
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 15px;
    padding-inline: 25px;
    text-transform: lowercase;
    cursor: pointer;
    border-radius: 5px;
    align-self: stretch;
    background-color: rgba(41, 41, 41, 0);
    transition: background-color 0.6s ease-out, color 0.6s ease-out;
    flex: 1 1 100%;
}

@media all and (min-width: 1px) {

    .header--menu {
        flex: 1 1 100%;
    }

    .header--menu--item {
        display: none;
    }

    .header--menu--item.active {
        display: flex;
        transition: background-color 0.2s ease-out;
        background-color: rgba(41, 41, 41, 1);
    }
}

@media all and (min-width: 1200px) {
    .header--menu {
        flex: 0 0 auto;
    }

    .header--menu--item {
        display: flex;
    }

    .header--menu--item.active {
        transition: background-color 0.2s ease-out;
        background-color: var(--Vio-regular);
    }

    .header--menu--item:hover {
        background-color: rgba(41, 41, 41, 1);
        transition: background-color 0.2s ease-out;
    }

    .header--menu--item.active:hover {
        background-color: var(--Vio-regular);
        transition: background-color 0.2s ease-out;
    }
}

.main-menu--button {
    width: 21px;
    height: 21px;
    position: relative;
    user-select: none;
}

.main-menu--button span {
    display: block;
    height: 1px;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    transform-origin: 50% 50%;
    position: absolute;
    transition: transform 0.2s ease-out;
}

.main-menu--button span:before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    position: absolute;
    background-color: var(--White);
    transition: transform 0.2s;
}

.main-menu--button span:first-child {
    top: 0;
    transform: translateY(3px);
    transition: transform 0.2s 0.2s;
}

.main-menu--button span:nth-child(2) {
    top: 10px;
    transform: scaleX(1);
}

.main-menu--button span:last-child {
    bottom: 0;
    transform: translateY(-3px);
    transition: transform 0.2s 0.2s;
}

body.with--main-menu .main-menu--button span:first-child {
    transform: translateY(10px);
    transition: transform 0.2s;
}

body.with--main-menu .main-menu--button span:nth-child(2) {
    transform: scaleX(0);
    transition: transform 0.2s;
}

body.with--main-menu .main-menu--button span:last-child {
    transform: translateY(-10px);
    transition: transform 0.2s;
}

body.with--main-menu .main-menu--button span:first-child:before {
    transform: rotate(45deg);
    transition: transform 0.2s 0.2s;
}

body.with--main-menu .main-menu--button span:last-child:before {
    transform: rotate(-45deg);
    transition: transform 0.2s 0.2s;
}


.main-menu {
    position: absolute;
    bottom: 60px;
    border: none;
    left: 0;
    width: 100%;
    display: flex;
    padding: 26px 30px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;

    border-radius: 8px;
    background: var(--Dark-Grey, #222);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

/*body.with--main-menu{*/
/*    overflow: hidden;*/
/*}*/

body.with--main-menu .main-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.with--main-menu .main-menu--overlay {
    display: block;
}

.main-menu--overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    overscroll-behavior: contain;
}

.main-menu--item {
    display: flex;
    padding: 13px 25px;
    justify-content: center;
    align-items: center;
    color: var(--White);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 1px;
    text-transform: lowercase;
}


a.main-menu--item {
    color: var(--White);
}

.language-selector {
    display: flex;
    justify-content: center;
}

.language-selector li {
    display: block;
    padding: 0 10px;
}

.language-selector a {
    color: var(--Light-Grey, #4C4C4C);
    text-transform: lowercase;
    font-size: 16px;
    font-weight: 400;
}

.language-selector a:hover {
    color: var(--White, #F2F2F2);
}

.language-selector li.active a {
    color: var(--White, #F2F2F2);
}

.mode-switcher {
    display: block;
    width: 37px;
    height: 20px;
    border-radius: 30px;
    background: var(--Light-Grey, #4C4C4C);
    position: relative;
}

.mode-switcher--trigger {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--Dark-Grey, #222);
    position: absolute;
    top: 3px;
    left: 3px;
}

.main-menu {

}


.--stroke-1 {

    transform: translate(-50%, -50%) rotate(0deg);
}

.--stroke-2 {

    transform: translate(-50%, -50%) rotate(0deg);
}

#page-header.opened .--stroke-1 {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.4s ease-out, opacity 0.2s;
}

#page-header.opened .--stroke-2 {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: transform 0.4s ease-out, opacity 0.2s;
}

.header--content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: -1;

    transition: visibility 0s 0.2s, opacity 0.2s ease-out;
}

#page-footer {
    position: relative;
    padding-top: 50px;
    color: #4C4C4C;
    font-size: 0.75rem;
}

@media all and (min-width: 1px) {
    #page-footer {
        padding-bottom: 120px;
    }
}

@media all and (min-width: 1200px) {
    #page-footer {
        padding-bottom: 200px;
    }
}

/* typo */
.stroked-title {
    -webkit-text-stroke: 1px #001fca;
    color: rgba(0, 0, 0, 0);
    font-family: Steelfish, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}

.parallax-title {
    font-size: 160px;
    font-weight: 700;
    top: 0;
}

.primary-title {
    font-family: Steelfish, sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/**/

/* cases navigation */
.cases-navigation--wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.cases-navigation--item {
    padding: 30px;
    align-items: center;
    gap: 42px;
    border-radius: 20px;
    border: 2px solid var(--Grey);
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.cases-nav--title {
    color: var(--Vio-regular, #6F24FF);

    /* H2 A */
    font-family: Steelfish, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    text-transform: uppercase;
}

.cases-nav--description {
    color: var(--Vio-regular, #6F24FF);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 18px */
    margin-top: 20px;
}

.cases-navigation--item svg path {
    fill: var(--Vio-regular);
    transition: fill 0.6s ease-out;
}

@media all and (min-width: 1px) {

    .cases-navigation--wrapper {
        flex-direction: column-reverse;
        gap: 20px;

    }

    .cases-navigation--item {
        padding: 30px 25px;
        gap: 20px;
        border-radius: 20px;
        width: 100%;
    }

    .cases-nav--title {
        font-size: 30px;
    }

    .cases-nav--description {
        font-size: 15px;
    }

    .cases-nav--icon {
        min-width: 40px;
    }
}

@media all and (min-width: 1200px) {
    .cases-navigation--wrapper {
        flex-direction: row;
    }

    .cases-navigation--item {
        padding: 30px;
        align-items: center;
        gap: 42px;
        border-radius: 20px;
        border: 2px solid var(--Grey);
        max-width: 500px;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        transition: border-color 0.6s ease-out;
    }

    .cases-navigation--item:hover {
        border-color: var(--Vio-regular);
        transition: border-color 0.2s ease-out;
    }

    .cases-navigation--item:hover svg path {
        fill: var(--White);
        transition: fill 0.2s ease-out;
    }

    .cases-nav--title {
        font-size: 40px;
    }

    .cases-nav--description {
        font-size: 15px;
        margin-top: 20px;
    }
}

/**/

/* home intro section */
.intro-video--wrapper {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    z-index: 0;
}

.intro-video {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    -o-object-fit: cover;
    width: 101%;
    height: 101%;
    margin-left: -0.5%;
    margin-top: -0.5%;
    z-index: 0;
}

.intro-video.horizontal {
    width: auto;
    height: 100%;
}

.intro-video.vertical {
    width: 100%;
    height: auto;
}

.intro--wrapper {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media all and (min-width: 1px) {

    .intro-video--wrapper {
        border-radius: 0;
    }

    .intro--wrapper {
        padding: 20px 0 80px 0;
    }

}

@media all and (min-width: 1200px) {

    .intro-video--wrapper {
        border-radius: 30px;
    }

    .intro--wrapper {
        padding: 50px 50px 150px;
    }

}

/**/

/* tags */
.tag {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--White);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background-color 0.6s ease-out, color 0.4s ease-out;
    cursor: pointer;
    background-color: rgba(51, 51, 51, 1);
    user-select: none;
}

.tag:hover {
    color: var(--White);
    background-color: var(--Vio-regular);
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
}

.tag.active {
    background-color: var(--Vio-regular);
    color: var(--White);
}

@media all and (min-width: 1px) {
    .tag {
        padding: 9px 13px;
        font-size: 12px;
    }

}

@media all and (min-width: 1200px) {
    .tag {
        padding: 12px 20px;
        border-radius: 5px;
        font-size: 1rem;
    }

}

/**/


.slider-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 50px;
    bottom: 0;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #333333;
    transition: background-color 0.2s ease-out;
}

.slider-dot.active {
    background-color: #fff;
}

/* cases section */
.case-summary--wrapper {
    display: block;
    padding: 80px 0;
}

.case-summary--wrapper:last-child {
    margin-bottom: 0;
}

.case-summary {
    display: flex;
    align-items: center;
    border-radius: 30px;
    border: 2px solid var(--Grey, #333);
    transition: border-color 0.2s ease-out;
}

.case-summary:hover {
    transition: border-color 0.6s ease-out;
    border: 2px solid var(--Vio-regular, #6F24FF);;
}

.case-summary:first-child {
    transform: none;
}

.case-summary-image--wrapper {
    display: block;
    position: relative;
    z-index: 0;
    flex: 1 1 50%;
}

.case-summary--image {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: no-repeat center/contain;
}

.case-summary-title--wrapper {
    text-align: center;
    z-index: 2;
    margin-top: -50px;
}

.case-summary--title {
    font-family: Steelfish, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 90px;
    line-height: 1;
}

.case-summary--subtitle {
    display: block;
    color: var(--Vio-regular, #6F24FF);
    text-align: center;
    /* H5 */
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 36px */
}

.case-summary--text {
    color: var(--White, #F2F2F2);
    text-align: center;

    /* Text 1 */
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 27px */
    letter-spacing: 1px;
}

.case-summary--tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.case-summary--tags .tag {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--Vio-regular, rgba(111, 36, 255, 1));
    background-color: rgba(0, 0, 0, 0);
    font-family: Unbounded, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background-color 0.6s ease-out;
}

@media all and (min-width: 1px) {


    .case-summary--wrapper {
        display: block;
        padding: 50% 0 0 0;
    }

    .case-summary--wrapper:last-child {
        margin-bottom: 0;
    }

    .case-summary {
        display: flex;
        align-items: center;
        border-radius: 20px;
        border: 2px solid var(--Grey, #333);
        transition: border-color 0.2s ease-out;
        flex-direction: column;
        padding: 15px;
    }

    .case-summary:first-child {
        transform: none;
    }

    .case-summary-image--wrapper {
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        margin-top: -50%;
    }


    .case-summary--image {
        transform: none;
        transition: none;
        transform-origin: 50% 50%;
        position: relative;
        top: 0;
        left: 0;
    }

    .case-summary-title--wrapper {
        text-align: center;
        z-index: 2;
        margin-top: 0;
    }

    .case-summary--title {
        font-family: Steelfish, sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 1;
    }

    .case-summary--subtitle {
        display: block;
        color: var(--Vio-regular, #6F24FF);
        text-align: center;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.2;
    }

    .case-summary--text {
        color: var(--White, #F2F2F2);
        text-align: center;

        font-size: 10px;
        font-weight: 300;
        line-height: 1.5;
    }

    .case-summary--tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .case-summary--tags .tag {
        padding: 9px 13px;
        border-radius: 5px;
        font-size: 10px;
        transition: none;
    }
}

@media all and (min-width: 1200px) {

    .case-summary--wrapper {
        display: block;
        padding: 100px 0;
    }

    .case-summary--wrapper:last-child {
        margin-bottom: 0;
    }

    .case-summary {
        display: flex;
        align-items: center;
        border-radius: 30px;
        border: 2px solid var(--Grey, #333);
        transition: border-color 0.2s ease-out;
        flex-direction: row;
        padding: 0;
    }

    .case-summary--wrapper .case-summary {
        flex-direction: row;
    }

    .case-summary--wrapper:nth-child(odd) .case-summary {
        flex-direction: row-reverse;
    }


    .case-summary:hover {
        transition: border-color 0.6s ease-out;
        border: 2px solid var(--Vio-regular, #6F24FF);;
    }

    .case-summary:first-child {
        transform: none;
    }

    .case-summary .case-summary-image--wrapper {
        display: block;
        position: relative;
        z-index: 0;
        width: 50%;
        margin-top: 0;
    }

    .case-summary .case-summary--image {
        transform: translate(-50%, -50%) scale(0.95);
        transition: transform 1s ease-out;
        position: absolute;
        top: 50%;
        left: 50%;
    }


    .case-summary:hover .case-summary--image {
        transform: translate(-50%, -50%) scale(1);
        transition: transform 0.4s ease-out;
    }

    .case-summary .case-summary-title--wrapper {
        text-align: center;
        z-index: 2;
        margin-top: -50px;
    }

    .case-summary .case-summary--title {
        font-family: Steelfish, sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 90px;
        line-height: 1;
    }

    .case-summary .case-summary--subtitle {
        display: block;
        color: var(--Vio-regular, #6F24FF);
        text-align: center;
        /* H5 */
        font-size: 2rem;
        font-style: normal;
        font-weight: 500;
        line-height: 120%; /* 36px */
    }

    .case-summary .case-summary--text {
        color: var(--White, #F2F2F2);
        text-align: center;

        /* Text 1 */
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: 150%; /* 27px */
        letter-spacing: 1px;
    }

    .case-summary--tags .tag {
        display: flex;
        padding: 12px 20px;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        color: var(--Vio-regular, rgba(111, 36, 255, 1));
        font-family: Unbounded, sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 1rem;
        letter-spacing: 1px;
        transition: color 0.6s ease-out, background-color 0.6s ease-out;
        background-color: rgba(51, 51, 51, 0);
    }

    .case-summary--tags .tag:hover {
        background-color: var(--Vio-regular);
        color: var(--White);
        transition: color 0.2s ease-out, background-color 0.2s ease-out;
    }
}

/**/


/* case tile */
.case-tile--wrapper {
    display: block;
    padding: 80px 0;
}

.case-tile--wrapper:last-child {
    margin-bottom: 0;
}

.case-tile {
    display: flex;
    align-items: center;
    border-radius: 30px;
    border: 2px solid var(--Grey, #333);
    transition: border-color 0.2s ease-out;
    margin-top: 50%;
}

.case-tile:hover {
    transition: border-color 0.6s ease-out;
    border: 2px solid var(--Vio-regular, #6F24FF);;
}

.case-tile:first-child {
    transform: none;
}

.case-tile--image-wrapper {
    display: block;
    position: relative;
    z-index: 0;
    flex: 1 1 50%;
}

.case-tile--image {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: no-repeat center/contain;
}

.case-tile-title--wrapper {
    text-align: center;
    z-index: 2;
    margin-top: -50px;
}

.case-tile--title {
    font-family: Steelfish, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 90px;
    line-height: 1;
}

.case-tile--subtitle {
    display: block;
    color: var(--Vio-regular, #6F24FF);
    text-align: center;
    /* H5 */
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 36px */
}

.case-tile--text {
    color: var(--White, #F2F2F2);
    text-align: center;

    /* Text 1 */
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 27px */
    letter-spacing: 1px;
}

.case-tile--tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.case-tile--tags .tag {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--Vio-regular, rgba(111, 36, 255, 1));
    background-color: rgba(51, 51, 51, 0);
    font-family: Unbounded, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background-color 0.6s ease-out;
}

@media all and (min-width: 1px) {


    .case-tile--wrapper {
        display: block;
        padding: 50% 0 0 0;
    }

    .case-tile--wrapper:last-child {
        margin-bottom: 0;
    }

    .case-tile {
        display: flex;
        align-items: center;
        border-radius: 20px;
        border: 2px solid var(--Grey, #333);
        transition: border-color 0.2s ease-out;
        flex-direction: column;
        padding: 15px;
    }

    .case-tile:hover {
        transition: border-color 0.6s ease-out;
        border: 2px solid var(--Vio-regular, #6F24FF);;
    }

    .case-tile:first-child {
        transform: none;
    }

    .case-tile--image-wrapper {
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        margin-top: -50%;
    }

    .case-tile--image {
        transform: none;
        transition: none;
        transform-origin: 50% 50%;
        position: relative;
        top: 0;
        left: 0;
    }

    .case-tile-title--wrapper {
        text-align: center;
        z-index: 2;
        margin-top: 0;
    }

    .case-tile--title {
        font-family: Steelfish, sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 1;
    }

    .case-tile--subtitle {
        display: block;
        color: var(--Vio-regular, #6F24FF);
        text-align: center;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.2;
    }

    .case-tile--text {
        color: var(--White, #F2F2F2);
        text-align: center;

        font-size: 10px;
        font-weight: 300;
        line-height: 1.5;
    }

    .case-tile--tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .case-tile--tags .tag {
        padding: 9px 13px;
        border-radius: 5px;
        font-size: 10px;
        transition: none;
    }
}

@media all and (min-width: 1200px) {

    .case-tile--wrapper {
        display: block;
        padding: 50% 0 0 0;
    }

    .case-tile--wrapper:last-child {
        margin-bottom: 0;
    }

    .case-tile {
        display: flex;
        align-items: center;
        border-radius: 20px;
        border: 2px solid var(--Grey, #333);
        transition: border-color 0.2s ease-out;
        flex-direction: column;
        padding: 15px;
    }

    .case-tile:hover {
        transition: border-color 0.6s ease-out;
        border: 2px solid var(--Vio-regular, #6F24FF);;
    }

    .case-tile:first-child {
        transform: none;
    }

    .case-tile--image-wrapper {
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        margin-top: -50%;
    }

    .ccase-tile--image {
        transform: none;
        transition: none;
        transform-origin: 50% 50%;
        position: relative;
        top: 0;
        left: 0;
    }

    .case-tile-title--wrapper {
        text-align: center;
        z-index: 2;
        margin-top: 0;
    }

    .case-tile--title {
        font-family: Steelfish, sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 40px;
        line-height: 1;
    }

    .case-tile--subtitle {
        display: block;
        color: var(--Vio-regular, #6F24FF);
        text-align: center;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.2;
    }

    .case-tile--text {
        color: var(--White, #F2F2F2);
        text-align: center;
        font-size: 12px;
    }

    .case-tile--tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .case-tile--tags .tag {
        padding: 9px 13px;
        border-radius: 5px;
        font-size: 12px;
        background-color: rgba(51, 51, 51, 0);
        transition: background-color 0.2s ease-out, color 0.2s ease-out;
    }

    .case-tile--tags .tag:hover {
        background-color: var(--Vio-regular, #6F24FF);
        color: var(--White);
    }
}

/**/

/* heritage section */
.heritage--items {
    display: block;
    white-space: nowrap;
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-100%) translateY(-50%);
}

.heritage--item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px;
}

.heritage--item:first-child {
    margin-left: 0;
}

.heritage--item--image {
    max-width: 460px;
    max-height: 460px;
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.heritage--item--description {
    display: flex;
    width: 460px;
    padding: 60px 60px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    border-radius: 20px;
    background: var(--Dark-Grey);
}

.heritage--item--title {
    align-self: stretch;
    color: var(--Vio-regular, #6F24FF);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    font-family: Steelfish, sans-serif;
    line-height: 110%; /* 66px */
    text-transform: uppercase;
    white-space: normal;
}

.heritage--item--text {
    white-space: normal;
    font-size: 1rem;
}

@media all and (min-width: 1px) {
    #heritage {
        height: auto;
    }

    .heritages--wrapper {
        position: relative;
        top: 0;
        height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 0 20px;
    }

    .heritage--items {
        display: flex;
        white-space: normal;
        font-size: 0;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .heritage--item {
        vertical-align: middle;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .heritage--item:first-child {
        margin-left: 0;
    }

    .heritage--item--image {
        max-width: 100%;
        max-height: 100%;
        display: block;
        position: relative;
        border-radius: 10px;
    }

    .heritage--item--description {
        width: 100%;
        display: flex;
        padding: 25px;
        flex-direction: column;
        gap: 20px;
        border-radius: 10px;
    }

    .heritage--item--title {
        font-size: 40px;
    }

    .heritage--item--text {
        white-space: normal;
        font-size: 12px;
    }
}

@media all and (min-width: 1200px) {
    #heritage {
        height: 300vh;
    }

    .heritages--wrapper {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: block;
    }

    .heritage--items {
        display: block;
        white-space: nowrap;
        font-size: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-100%) translateY(-50%);
        width: auto;
    }

    .heritage--item {
        vertical-align: middle;
        margin-left: 50px;
        display: inline-flex;
        flex-wrap: nowrap;
        align-items: center;
        flex-direction: row;
    }

    .heritage--item:first-child {
        margin-left: 0;
    }

    .heritage--item--image {
        max-width: 460px;
        max-height: 460px;
        display: block;
        position: relative;
        border-radius: 20px;
    }

    .heritage--item--description {
        display: flex;
        width: 460px;
        padding: 60px 60px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        border-radius: 20px;
        background: var(--Dark-Grey);
    }

    .heritage--item--title {
        align-self: stretch;
        color: var(--Vio-regular, #6F24FF);
        font-size: 60px;
        font-style: normal;
        font-weight: 700;
        font-family: Steelfish, sans-serif;
        line-height: 110%; /* 66px */
        text-transform: uppercase;
        white-space: normal;
    }

    .heritage--item--text {
        white-space: normal;
        font-size: 1rem;
    }
}

/**/

/* clients section */

.clients--wrapper {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.clients--title--1,
.clients--title--2 {
    font-family: Steelfish, sans-serif;
    color: var(--White);
    text-align: center;
    font-size: 220px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 220px */
    text-transform: uppercase;
}

.client--logos {
    width: 380px;
    height: 190px;
    position: relative;
}

.client--logo {
    visibility: visible;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
}

.client--logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.client--logo.active {
    opacity: 1;
    transition: opacity 0.2s ease-out;
}

@media all and (min-width: 1px) {
    .clients--title--1,
    .clients--title--2 {
        text-align: center;
        font-size: 25vw;;
        width: 100%;
        margin: auto;
    }

    .client--logos {
        width: 100%;
        height: 90px;
        position: relative;
        margin: 15px auto;
    }
}

@media all and (min-width: 1200px) {
    .clients--title--1,
    .clients--title--2 {
        font-size: 180px;
        width: auto;
        margin: 0;
    }

    .clients--title--1 {
        text-align: left;
    }

    .clients--title--2 {
        text-align: right;
    }

    .client--logos {
        width: 380px;
        height: 190px;
        position: relative;
        margin: 18px 0 0 40px;
    }
}

@media all and (min-width: 1600px) {
    .clients--title--1,
    .clients--title--2 {
        font-size: 220px;
    }

    .client--logos {
        width: 380px;
        height: 190px;
        position: relative;
        margin: 18px 0 0 40px;
    }
}

/**/

/* team section */
.team--slot {
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

.team--slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media all and (min-width: 1px) {
    .team--slot.team--slot-1 {
        width: 100%;
        height: 100%
    }
}

@media all and (min-width: 1200px) {
    .team--slot.team--slot-1 {
        width: calc(50% - 5px);
        height: 100%
    }
}

.team--slot.team--slot-2 {
    height: calc(50% - 5px);
}

.team--slot.team--slot-3 {
    height: calc(50% - 5px);
}

.team--cursor-trigger {
    cursor: pointer;
}

.team--cursor {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    z-index: 3;
    transform: translate(-50%, -50%) scale(0);
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.2s, transform 0.2s ease-out, opacity 0.2s ease-out;
}

.team--cursor--icon {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: team-cursor-rotate 10s linear infinite;
}

@keyframes team-cursor-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.team--cursor.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: visibility 0s, transform 0.2s ease-out, opacity 0.2s ease-out;
}

@media all and (min-width: 1px) {
    .team--cursor {
        position: absolute;
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
        transition: none;
        width: 300px;
        height: 300px;
    }
}

@media all and (min-width: 1200px) {
    .team--cursor {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        width: 200px;
        height: 200px;
        transform: translate(-50%, -50%) scale(0);
        transition: visibility 0s 0.2s, transform 0.2s ease-out, opacity 0.2s ease-out;
    }
}

.team--cursor--icon svg {
    width: 100%;
    height: 100%;
}

.team--popup {
    opacity: 0;
    transition: opacity 0.4s ease-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
}

.team--popup--overlay {
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #111111;
    opacity: 0.95;
}

.team--popup[open] {
    opacity: 1;
}

.team--popup--body {
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    align-items: center;
    min-width: 0;
}

.team--item--image {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.team--item--image picture {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.team--item--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
}

.team--item--description {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border: 2px solid var(--Grey, #333);
    width: 100%;
}

.team--item--title {
    color: var(--White);
    font-family: Steelfish, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team--item--subtitle {
    color: var(--Vio-regular);
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

.team--item {
    display: block;
    user-select: none;
    align-self: center;
}

.team-swiper--scrollbar {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: auto;
    height: 2px;
    background-color: var(--Grey);
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.team-swiper--scrollbar .bar {
    display: block;
    margin: auto;
    height: 2px;
    border-radius: 2px;
    width: 200px;
    background-color: var(--Vio-regular);
    transform-origin: 0 0;
    transform: translateX(0);
    left: 0;
    position: absolute;
    top: 0;
}

.team--popup--close {
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.team--popup--close svg {
    width: 100%;
    height: 100%;
}

.team--popup--close svg path {
    fill: var(--Vio-regular);
    transition: fill 0.2s ease-out;
}

@media all and (min-width: 1px) {

    #team-swiper {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }

    .team--popup--body {
        padding: 80px 10px;
        height: auto;
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    .team--item {
        width: 100%;
    }

    .team--item--image {
        display: block;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        height: 30vh;
    }

    .team--item--description {
        padding: 18px;
        border-radius: 10px;
    }

    .team--item--title {
        font-size: 22px;
    }

    .team--item--subtitle {
        font-size: 14px;
        margin-top: 10px;
    }

    .team--item {
        display: block;
        user-select: none;
        align-self: center;
        height: auto;
    }

    .team--item.type-1 {
        width: 100%;
        margin-left: 0;
    }

    .team--item.type-2 {
        width: 100%;
    }

    .team--item.type-3 {
        width: 100%;
        margin-right: 0;
    }

    .team--item.type-2 {
        flex-direction: column;
    }

    .team--item.type-1 .team--item--description {
        max-width: 100%;
    }

    .team--item.type-2 .team--item--description {
        max-width: 100%;
    }

    .team--item.type-3 .team--item--description {
        max-width: 100%;
    }

    .team-swiper--scrollbar {
        display: none;
    }

    .team--popup--wrapper {
        overflow-y: auto;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .team--popup--close {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 25px;
        height: 25px;
        z-index: 2;
    }
}

@media all and (min-width: 1200px) {
    #team-swiper {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .team--popup--wrapper {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: relative;
        min-width: 0;
        min-height: 0;
        display: flex;
    }

    .team--popup--body {
        padding: 80px 300px;
        height: auto;
    }

    #team-swiper .swiper-wrapper {
        flex-direction: row;
        gap: 0;
    }

    .team--item--image {
        border-radius: 20px;
    }

    .team--item.type-1 .team--item--image {
        max-width: 100%;
        height: 30vh;
    }

    .team--item.type-2 .team--item--image {
        max-width: 100%;
        height: 30vh;
    }

    .team--item.type-3 .team--item--image {
        max-width: 100%;
        height: 30vh;
    }

    .team--item--description {
        padding: 40px;
        border-radius: 20px;
    }

    .team--item--title {
        font-size: 50px;
    }

    .team--item--subtitle {
        font-size: 22px;
        margin-top: 20px;
    }

    .team--item {
        display: flex;
        user-select: none;
        align-self: center;
    }

    .team--item.type-1 {
        max-width: 600px;
        width: 100%;
    }

    .team--item.type-2 {
        max-width: 700px;
        width: 100%;
    }

    .team--item.type-3 {
        max-width: 600px;
        width: 100%;
    }

    .team--item.type-2 {
        flex-direction: row;
    }

    .team--item.type-1 .team--item--image {
        width: 100%;
        height: 370px;
    }

    .team--item.type-2 .team--item--image {
        width: 100%;
        max-width: 300px;
        height: 600px;
    }

    .team--item.type-3 .team--item--image {
        width: 100%;
        height: 500px;
    }

    .team--item.type-1 .team--item--description {
        width: 100%;
    }

    .team--item.type-2 .team--item--description {
        max-width: 400px;
    }

    .team--item.type-3 .team--item--description {
        width: 100%;
    }

    .team-swiper--scrollbar {
        display: block;
    }

    .team--popup--close {
        top: 40px;
        right: 40px;
        width: 50px;
        height: 50px;
    }

    .team--popup--close:hover svg path {
        fill: var(--White);
        transition: fill 0.2s ease-out;
    }
}

/**/

/* background title */
.team-member--title:after,
.team-member--subtitle:after,
.video--title:after,
.case-summary--title:after,
.case-summary--subtitle:after {
    content: "";
    display: block;
    float: none;
    clear: both;
}

.team-member--title span,
.team-member--subtitle span,
.video--title span,
.case-summary--title span,
.case-summary--subtitle span {
    display: block;
    position: relative;
    float: left;
    line-height: 1;
    margin-left: -1px;
    margin-top: -1px;
}


.team-member--title span:before,
.team-member--subtitle span:before,
.video--title span::before,
.case-summary--title span::before,
.case-summary--subtitle span::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    z-index: -1;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

/**/

/* contacts section */
.contacts--content {
    z-index: 2;
    font-family: Steelfish, sans-serif;
    color: var(--White);
    font-style: normal;
    font-weight: 700;
    line-height: 1.1; /* 60.5px */
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts--social-icon {
    width: 68px;
    height: 68px;
    padding: 8px;
}

.contacts--social-icon svg {
    width: 100%;
    height: 100%;
}

.contacts--social-icon svg path {
    transition: fill 0.6s ease-out;
}

@media all and (min-width: 1px) {
    .contacts--content {
        font-size: 42px;
        flex-direction: column;
        gap: 24px;
        justify-content: center;
    }

    .contacts--social-icon {
        min-width: 36px;
        max-width: 36px;
        min-height: 36px;
        max-height: 36px;
        padding: 4px;
    }
}

@media all and (min-width: 1200px) {
    .contacts--content {
        font-size: 40px;
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }

    .contacts--social-icon {
        min-width: 45px;
        max-width: 45px;
        min-height: 45px;
        max-height: 45px;
        padding: 8px;
    }

    .contacts--social-icon:hover svg path {
        transition: fill 0.2s ease-out;
        fill: var(--White);
    }
}

@media all and (min-width: 1600px) {
    .contacts--content {
        font-size: 55px;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }

    .contacts--social-icon {
        min-width: 68px;
        max-width: 68px;
        min-height: 68px;
        max-height: 68px;
        padding: 8px;
    }
}

/**/

/*feedback section */
.feedback {
    width: 100%;
    display: block;
}

.feedback--body {
    width: 100%;
    display: block;
    border: 2px solid var(--Grey, #333);
}

@media all and (min-width: 1px) {
    .feedback--body {
        padding: 10px 20px;
        border-radius: 10px;
    }
}

@media all and (min-width: 1200px) {
    .feedback--body {
        padding: 50px;
        border-radius: 30px;
    }
}

/* */

/* prediction section */
.prediction--wrapper {
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.prediction--video--wrapper {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 35%;
}

.prediction--item {
    position: absolute;
    display: flex;
    width: 30%;
    padding: 30px 40px;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 15px 15px 15px 0;
    background: var(--Vio-regular, #6F24FF);
    color: var(--White);
    font-size: 1rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.4s, opacity 0.4s ease-out;
}

.prediction--item.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.4s ease-out;
}

.prediction--item:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: calc(100% - 1px);
    width: 26px;
    height: 40px;
    background: url(/images/prediction-item-corner.svg) no-repeat center/contain;
}

@media all and (min-width: 1px) {
    .prediction--wrapper {
        border-radius: 0;
        border: none;
    }

    .prediction--video--wrapper {
        padding-bottom: 80%;
    }

    .prediction--item {
        width: 75%;
        padding: 20px 25px;
        border-radius: 10px 10px 10px 0;
        font-size: 12px;
    }

    .prediction--item:before {
        width: 20px;
        height: 30px;
    }
}

@media all and (min-width: 1200px) {
    .prediction--wrapper {
        border-radius: 30px;
    }

    .prediction--video--wrapper {
        padding-bottom: 40%;
    }

    .prediction--item {
        width: 30%;
        padding: 30px 40px;
        border-radius: 15px 15px 15px 0;
        font-size: 1rem;
    }

    .prediction--item:before {
        width: 26px;
        height: 40px;
    }
}

/**/

/* team */
.team-member--image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: no-repeat center/cover;
}

.team-member--title--wrapper {
    padding-left: 80px;
    font-size: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.team-member--title {
    font-style: normal;
    font-weight: bold;
}

.team-member--title span {
    display: inline-block;
    background-color: #000;
}

.team-member--subtitle span {
    font-style: italic;
    font-weight: normal;
    text-transform: uppercase;
    color: #001fca;
    line-height: 1;
    display: inline-block;
}

/**/

/* production */
#js-showreel--video {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    -o-object-fit: cover;
    width: 101%;
    height: 101%;
    margin-left: -0.5%;
    margin-top: -0.5%;
    visibility: hidden;
}

#js-showreel.played #js-showreel--video {
    visibility: visible;
}

#js-showreel.played .btn--showreel {
    display: none;
}

.video--frame iframe {
    position: absolute;
    top: -0.5%;
    left: -0.5%;
    width: 101%;
    height: 101%;
    display: none;
    z-index: 1;
}

.video--frame.active .video--image {
    /*visibility: hidden;*/
    opacity: 0.75;
    z-index: 0;
}

.video--frame.active iframe {
    display: block;
}


.video--image:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.video-title--wrapper {
    padding-left: 80px;
    font-size: 0;
    text-align: left
}

.video--title {
    font-style: normal;
    font-weight: bold;
}

/**/

/* services */
.service {
    display: block;
}

.service--title {
    color: var(--Vio-regular);
    font-family: Steelfish, sans-serif;
    line-height: 1;
    font-weight: 700;
}

@media all and (min-width: 1px) {
    .service--title {
        font-size: 40px;
    }
}

@media all and (min-width: 756px) {
}

@media all and (min-width: 1200px) {
    .service--title {
        font-size: 90px;
    }
}

/**/

/* agency */
.client-logo {
    width: 90px;
    height: 90px;
    background: no-repeat center/contain;
    display: inline-block;
    margin: 20px;
}

/**/

/* preloader */
#page-preloader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #141414;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.6s, z-index 0s 0.6s, opacity 0.6s ease-out;
}

body.preload #page-preloader {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.preloader--wrapper {
    display: flex;
    width: 100%;
    position: relative;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    top: 0;
    left: 0;
}

.preloader--icon {
    display: block;
    overflow: hidden;
    width: 150px;
    height: 150px;
}

.preloader--stroke {
    display: block;
    width: 100%;
    height: 100%;
}

.preloader--stroke path {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    stroke: red;
}

/**/

/* buttons */
.btn {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: max-content;
    background-color: var(--Color-Button, #fff);
    color: var(--Color-Button-Caption, #111111);
    border: 2px solid var(--Color-Button-Border, transparent);
    font-family: Steelfish, sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn.main {
    background: var(--Vio-regular, #6F24FF);
}

.btn.secondary {
    background: rgba(var(--Vio-regular-rgb), 0);
    border: 2px solid var(--Vio-regular, #6F24FF);
}

.btn.main {
    color: var(--White, #F2F2F2);
}

.btn.secondary {
    color: var(--White, #F2F2F2);
}

.btn:hover {
    background-color: var(--Color-Button-Hover, #111111);
    color: var(--Color-Button-Caption-Hover, #fff);
    border-color: var(--Color-Button-Border-Hover, transparent);
}

.btn--more-cases {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid var(--Vio-regular, #6F24FF);
    background: rgba(0, 0, 0, 0);
    padding: 20px 100px;
    transition: background-color 0.6s ease-out;
}


.btn--more-cases .btn--caption {
    color: var(--White, #F2F2F2);

    /* H4 1920 */
    font-family: Steelfish, sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn--more-cases:hover {
    background-color: var(--Vio-regular, #6F24FF);
    transition: background-color 0.2s ease-out;
}

@media all and (min-width: 1px) {

    .btn {
        border-radius: 10px;
        transition: none;
        padding: 10px 40px;
        font-size: 1.25rem;
    }

    .btn--more-cases {
        display: inline-flex;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 2px solid var(--Vio-regular, #6F24FF);
        background: rgba(0, 0, 0, 0);
        padding: 14px 40px;
    }

    .btn--more-cases .btn--caption {
        color: var(--White, #F2F2F2);

        /* H4 1920 */
        font-family: Steelfish, sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media all and (min-width: 1200px) {

    .btn {
        border-radius: 20px;
        padding: 20px 80px;
        font-size: 3rem;
        transition: background-color 0.2s ease-out,
        color 0.2s ease-out,
        border 0.2s ease-out;
    }

    .btn.main:hover {
        background-color: var(--Vio-regular, #6F24FF);
        transition: background-color 0.2s ease-out;
    }

    .btn--more-cases {
        display: inline-flex;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        border: 2px solid var(--Vio-regular, #6F24FF);
        background: rgba(0, 0, 0, 0);
        padding: 20px 100px;
        transition: background-color 0.6s ease-out;
    }

    .btn--more-cases .btn--caption {
        color: var(--White, #F2F2F2);

        /* H4 1920 */
        font-family: Steelfish, sans-serif;
        font-size: 50px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .btn--more-cases:hover {
        background-color: var(--Vio-regular, #6F24FF);
        transition: background-color 0.2s ease-out;
    }

    .btn--more-cases.small {
        padding: 20px 50px;
        border-radius: 15px;
    }

    .btn--more-cases.small .btn--caption {
        font-family: Steelfish, sans-serif;
        font-size: 2rem;
    }

    .btn.main:hover {
        background-color: rgba(var(--Vio-regular-rgb), 0);
        transition: background-color 0.2s ease-out;
    }

    .btn.secondary:hover {
        background: rgba(var(--Vio-regular-rgb), 1);
    }
}

.btn--showreel {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: url(/images/btn--showreel.svg) no-repeat center right/contain;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.btn--showreel .btn--caption {
    font-family: 'Helios', sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.btn--video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(/images/btn--showreel.svg) no-repeat center right/contain;
    cursor: pointer;
    z-index: 2;
}

.btn--video .btn--caption {
    font-family: 'Helios', sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

/**/

/*dropdown*/
[data-role="dropdown"] {
    user-select: none;
    -webkit-user-select: none;
}

[data-role="dropdown"] input {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

[data-role="dropdown--heading"] {
    cursor: pointer;
}

[data-role="dropdown--list"] {
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 1;
    visibility: visible;
    left: 0;
    pointer-events: initial;
}

[data-role="dropdown--list"] li.active {
    display: none;
}

[data-role="dropdown--placeholder"] {
    display: none;
}

.dropdown {
    display: block;
    position: relative;
    border: 3px solid transparent;
}

[data-role="dropdown--list"]:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #fff;
    transform: scaleY(1);
    transform-origin: 50% 0;
    transition: transform 0.2s ease-out;
}

.dropdown--list li {
    opacity: 1;
    text-align: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.4s ease-out, opacity 0.2s 0.2s;
}

.dropdown--list li a {
    display: block;
    width: 100%;

}

.dropdown--list li:hover {
    color: #FFD600;
}

.dropdown--heading {
    display: block;
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
}

.dropdown--heading:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 10px;
    background: url(/images/dropdown-arrow.svg) no-repeat center/contain;
    transform: translateY(-50%) rotate(180deg);
    transform-origin: 50% 45%;
    transition: transform 0.2s ease-out;
}

[data-role="dropdown"][data-state="idle"] [data-role="dropdown--list"] {
    z-index: -1;
    pointer-events: none;
    visibility: hidden;
}

[data-role="dropdown"][data-state="idle"] .dropdown--heading:after {
    transform: translateY(-50%) rotate(0);
}

[data-role="dropdown"][data-state="idle"] [data-role="dropdown--list"]:before {
    transform: scaleY(0);
    transition: none;
}

[data-role="dropdown"][data-state="idle"] .dropdown--list li {
    opacity: 0;
    transition: none;
}

/**/

.about--image {
    opacity: 0.8;
    margin-left: auto;
    margin-right: auto;
}

p:last-child {
    margin-bottom: 0;
}

.widget {
    margin-top: 100px;
}

.widget:first-child {
    margin-top: 0;
}

.widget-primary-title + .widget,
.widget-secondary-title + .widget {
    margin-top: 50px;
}

.widget-video--frame {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
}

.widget-video--frame iframe {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}

.widget-video--frame video {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}

.widget-secondary-title {
    /*font-style: italic;*/
    font-weight: 300;
    font-size: 25px;
    line-height: 29px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.widget-secondary-title a {
    text-decoration: underline;
}

.widget-secondary-title a:hover {
    text-decoration: none;
}

.widget-text--content strong {
    font-weight: 700;
}

.widget-footnote {
    margin-top: 50px;
}

.result--number {
    font-weight: bold;
    width: 100%;
    line-height: 1
}

.result--caption {
    font-weight: 700;
}

/* forms */

/* Forms */
.form--heading {
    text-transform: uppercase;
    text-align: center;
    color: var(--Color-Title, #fff);
    margin-bottom: 3rem;
    font-size: 6rem;
    font-weight: 600;
    font-family: Steelfish, sans-serif;
    line-height: 1.1;
}

.form--description {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    font-family: Steelfish, sans-serif;
    font-size: 3rem;
    color: var(--Color-Description, #fff);
    line-height: 1.1;
}

.form-row {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}

.form-input {
    display: block;
    position: relative;
    padding: 0;
}


.form-input input {
    display: block;
    width: 100%;
    color: var(--White, #F2F2F2);
    font-family: Steelfish, sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    height: 60px;
    margin-top: 0;
}

.form-input ::placeholder {
    color: var(--Vio-regular);
    line-height: 1;
}


.form-input textarea {
    color: var(--White, #F2F2F2);
    font-family: Steelfish, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    resize: none;
    background-color: transparent;
    border: none;
    min-height: 50px;
    width: 100%;
}

.textarea-icon {
    display: block;
    position: absolute;
    width: 49px;
    height: 49px;
    bottom: 10px;
    right: 0;
}

.textarea-icon svg path {
    transition: fill 0.2s ease-out;
}

.form-input textarea:focus + .textarea-icon svg path {
    fill: var(--White);
}

.the-input,
.the-textarea {
    position: relative;
    will-change: auto;
}

.form-input-label {
    display: block;
    position: absolute;
    top: 33px;
    left: 0;
    pointer-events: none;
    transform: translate(0, -50%);
    color: var(--Vio-regular);
    font-family: Steelfish, sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

@media all and (min-width: 1px) {

    .form-input input {
        font-size: 35px;
        height: 35px;
    }

    .form-input textarea {
        font-size: 35px;
        min-height: 35px;
        padding-right: 40px;
    }

    .form-input-label {
        top: 20px;
        font-size: 35px;
    }

    .textarea-icon {
        display: block;
        position: absolute;
        width: 30px;
        height: 30px;
        bottom: 3px;
        right: 0;
    }
}

@media all and (min-width: 1200px) {
    .form-input input {
        font-size: 45px;
        height: 45px;
    }

    .form-input textarea {
        font-size: 45px;
        min-height: 30px;
        padding-right: 50px;
    }

    .form-input-label {
        top: 24px;
        font-size: 45px;
    }

    .textarea-icon {
        display: block;
        position: absolute;
        width: 40px;
        height: 40px;
        bottom: 4px;
        right: 0;
    }

}

@media all and (min-width: 1600px) {
    .form-input input {
        font-size: 60px;
        height: 60px;
    }

    .form-input textarea {
        font-size: 60px;
        min-height: 30px;
        padding-right: 70px;
    }

    .form-input-label {
        top: 33px;
        font-size: 60px;
    }

    .textarea-icon {
        display: block;
        position: absolute;
        width: 49px;
        height: 49px;
        bottom: 10px;
        right: 0;
    }

}

.form-input--caption {
    position: relative;
    color: var(--Grey);
    font-family: Steelfish, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: top;
    text-align: right;
    white-space: nowrap;
}

@media all and (min-width: 1200px) {
    .form-input--caption {
        font-size: 45px;
        padding-right: 24px;
    }
}

@media all and (min-width: 1600px) {
    .form-input--caption {
        font-size: 60px;
        padding-right: 30px;
    }
}

.the-input,
.the-textarea,
.form-input-label {
    animation-name: none;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.form-input.animated-error .form-input-label {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

.the-input.invalid,
.the-textarea.invalid {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

.form-submit-button {
    display: inline-flex;
    padding: 30px 100px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 2px solid var(--Vio-regular, #6F24FF);
}

.form-submit-button--caption {
    color: var(--White, #F2F2F2);
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    font-family: Steelfish, sans-serif;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input input:focus + .form-input-label,
.form-input input:active + .form-input-label,
.form-input textarea:focus + .form-input-label,
.form-input textarea:active + .form-input-label,
.form-input.filled .form-input-label {
    display: none;
}

form {
    display: block;
    position: relative;
}

form:before {
    content: "";
    position: absolute;
    display: none;
    z-index: -1;
    width: 110%;
    height: 110%;;
}

form[data-state="busy"] {
    opacity: 0.5;
}

form[data-state="busy"]:before {
    display: block;
    z-index: 3;
}

span.error {
    font-size: 12px;
    color: #E40040;
    text-align: left;
    display: block !important;
    margin-top: 5px;
    bottom: 0;
    position: relative;
}

.form-input.error {
    border-color: #E40040 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    border: 1px solid rgba(0, 0, 0, 0);
    -webkit-text-fill-color: #666666;
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset;
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0) inset;
    transition: background-color 5000s ease-in-out 0s;
    filter: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 9999s;
    transition-delay: 9999s;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-animation: autofill 0s forwards;
    animation: autofill 0s forwards;
}

.form-response--success,
.form-response--error {
    position: relative;
    font-style: normal;
    font-family: Steelfish, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.form-response--success {
    color: rgba(135, 211, 37, 1);
}

.form-response--error {
    color: rgba(228, 29, 41, 1);
}

.form--body {
    display: table;
    width: 100%;
}

form[data-state="success"] .form--body,
form[data-state="error"] .form--body {
    display: none;
}

form[data-state="success"] .form--button,
form[data-state="error"] .form--button {
    display: none;
}

form[data-state="success"] .form-response--success {
    display: block;
}


form[data-state="error"] .form-response--error {
    display: block;
}

@media all and (min-width: 1px) {
    .form-response--success,
    .form-response--error {
        font-size: 30px;
    }
}

@media all and (min-width: 1200px) {

    .form-response--success,
    .form-response--error {
        font-size: 45px;
    }
}

@media all and (min-width: 1600px) {

    .form-response--success,
    .form-response--error {
        font-size: 60px;
    }
}


@keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
    }
}

@-webkit-keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
    }
}

@keyframes shakeX {
    0%,
    to {
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
}

.cookie-warning--dialog {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: transparent;
    border: none;
    color: var(--White);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-25%);
    transition: visibility 0s 0.4s, opacity 0.4s, transform 0.4s ease-out;
}

.cookie-warning--dialog[open] {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.cookie-warning {
    display: block;
    background: rgba(34, 34, 34, 0.95);
}

@media all and (min-width: 1px) {
    .cookie-warning {
        border-radius: 15px;
        padding: 40px;
        display: flex;
        flex-direction: column;
    }

    .cookie-warning--text {
        color: var(--White);
        text-align: center;
        font-size: 0.75rem;
    }
}

@media all and (min-width: 1200px) {
    .cookie-warning {
        border-radius: 30px;
        padding: 40px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .cookie-warning--text {
        text-align: left;
        font-size: 1rem;
    }
}

.widget-hero {
}

.widget-hero-title {
    font-family: 'Steelfish', sans-serif;
    font-size: 180px;
    font-weight: bold;
    line-height: 100%;
    color: var(--Color-Title)
}

.widget-hero-description {
    font-weight: 300;
    line-height: 120%;
    max-width: 600px;
    color: var(--Color-Description)
}

@media all and (min-width: 1px) {
    .widget-hero-title {
        font-size: 72px;
    }

    .widget-hero-description {
        font-size: 14px;
        width: 100%;
    }
}

@media all and (min-width: 1200px) {
    .widget-hero-title {
        font-size: 180px;
    }

    .widget-hero-description {
        font-size: 22px;
        max-width: 600px;
    }
}

.widget-collection-list-title {
    font-family: 'Steelfish', sans-serif;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--Color-Title, #fff);
}

.widget-collection-list-description {
    font-weight: 300;
    line-height: 120%;
    color: var(--Color-Description, #fff);
}

.widget-collection-list-items {
    flex-wrap: wrap;
    position: relative;
}

.widget-collection-list-item {
    position: relative;
}

.widget-collection-list-item-title {
    color: var(--Color-Item-Title, #fff)
}

.widget-collection-list-item-description {
    color: var(--Color-Item-Description, #fff)
}


.widget-collection-list-item-title-numerator {
    display: none;
    color: var(--Color-Item-Element, #fff)
}

.widget-collection-list .slider-dot.active {
    background-color: var(--Color-Item-Element, #fff);
}

.style-1 .widget-collection-list-items {
    row-gap: 70px;
    justify-content: space-between;
}

.style-1 .widget-collection-list-slot {
    width: 40%;
    position: relative;
}

.style-1 .widget-collection-list-item-title {
    font-family: Steelfish, sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid var(--Color-Item-Element, #fff);
}

.style-1 .widget-collection-list-item-description {
    line-height: 1.2;
}

.style-2 .widget-collection-list-items {
    row-gap: 70px;
    margin-left: -70px;
    justify-content: flex-start;
}

.style-2 .widget-collection-list-slot {
    width: 33.33%;
    position: relative;
    padding-left: 70px;
}

.style-2 .widget-collection-list-item-title {
    font-family: Steelfish, sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
}

.style-2 .widget-collection-list-item-title-numerator {
    display: block;
    font-size: 90px;
    font-weight: bold;
}

.style-2 .widget-collection-list-item-description {
    line-height: 1.2;
}

.style-3 .widget-collection-list-items {
    row-gap: 100px;
    justify-content: space-between;
}

.style-3 .widget-collection-list-slot {
    width: 40%;
    position: relative;
}


.style-3 .widget-collection-list-item:before,
.style-3 .widget-collection-list-item:after {
    content: '';
    display: block;
    border: 1px solid var(--Color-Item-Element, #fff);
    width: 60px;
    height: 60px;
    position: absolute;
}

.style-3 .widget-collection-list-item:before {
    top: -30px;
    left: -30px;
    border-bottom: none;
    border-right: none;
}

.style-3 .widget-collection-list-item:after {
    bottom: -30px;
    right: -30px;
    border-top: none;
    border-left: none;
}

.style-3 .widget-collection-list-item-title {
    font-family: Steelfish, sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
    align-items: center;
}

.style-3 .widget-collection-list-item-description {
    line-height: 1.2;
}

@media all and (min-width: 1px) {
    .widget-collection-list-title {
        font-size: 75px;
        line-height: 1;
    }

    .widget-collection-list-description {
        font-size: 14px;
        line-height: 120%;

    }

    .widget-collection-list-title + .widget-collection-list-description {
        margin-top: 40px;
    }

    .widget-collection-list-items {
        display: block;
    }

    * + .widget-collection-list-items {
        margin-top: 60px;
    }

    .widget-collection-list-item-description {
        font-size: 18px;
        margin-top: 20px;
    }

    .style-1 .widget-collection-list-items {
        border-top: 1px solid var(--Color-Item-Element, #fff);
        border-bottom: 1px solid var(--Color-Item-Element, #fff);
    }

    .style-1 .widget-collection-list-item {
        padding: 60px 0;
    }

    .style-1 .widget-collection-list-item-title {
        border-bottom: none;
    }

    .style-1 .widget-collection-list-item-title + .widget-collection-list-item-description {
        margin-top: 25px;
    }

    .style-2 .widget-collection-list-items {
        margin-left: 0;
    }

    .style-3 .widget-collection-list-title {
        transform: rotate(3deg);
    }

    .style-3 .widget-collection-list-description {
        transform: rotate(3deg);
    }

    .style-3 .widget-collection-list-item {
        padding: 30px;
    }

    .style-3 .widget-collection-list-item::before {
        top: 0;
        left: 0;
        border-bottom: none;
        border-right: none;
    }

    .style-3 .widget-collection-list-item::after {
        bottom: 0;
        right: 0;
        border-top: none;
        border-left: none;
    }
}

@media all and (min-width: 1200px) {
    .widget-collection-list-title {
        font-size: 110px;
        line-height: 1;
    }

    .widget-collection-list-description {
        font-size: 22px;
        line-height: 120%;
    }

    .widget-collection-list-title + .widget-collection-list-description {
        margin-top: 75px;
    }

    .widget-collection-list-items {
        display: flex;
    }

    * + .widget-collection-list-items {
        margin-top: 150px;
    }

    .widget-collection-list-item-description {
        font-size: 26px;
        margin-top: 20px;
    }

    .style-1 .widget-collection-list-items {
        border: none;
    }

    .style-1 .widget-collection-list-item {
        border-top: none;
        border-bottom: none;
        padding: 0;
    }

    .style-1 .widget-collection-list-item-title {
        border-bottom: 1px solid var(--Color-Item-Element, #fff);
        padding-bottom: 20px;
    }

    .style-1 .widget-collection-list-item-title + .widget-collection-list-item-description {
        margin-top: 20px;
    }

    .style-2 .widget-collection-list-items {
        margin-left: -70px;
    }

    .style-3 .widget-collection-list-item {
        padding: 0;
    }

    .style-3 .widget-collection-list-item::before {
        top: -30px;
        left: -30px;
        border-bottom: none;
        border-right: none;
    }

    .style-3 .widget-collection-list-item::after {
        bottom: -30px;
        right: -30px;
        border-top: none;
        border-left: none;
    }
}

.widget-running-line {
    height: 0;
    margin-left: -10%;
    z-index: 2;
    width: 120%;
}

.infinite-scroll {
    --time: 10s;
    --direction: none;
    --name: none;
    display: flex;
    align-items: center;
    background-color: var(--Color-Background, #c5c5c5);
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 25px 0;
    top: -75px;
}


.style-1 .infinite-scroll {
    transform: rotate(3deg);
}

.style-2 .infinite-scroll {
    transform: rotate(-3deg);
}

.infinite-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.infinite-scroll-wrapper {
    animation: var(--time) infinite linear;
    animation-name: var(--name);
    animation-direction: var(--direction);
}

.infinite-scroll-wrapper:nth-child(2) {
    animation: var(--time) infinite linear;
    animation-name: var(--name);
    animation-direction: var(--direction);
}

.infinite-scroll-wrapper > img {
    object-fit: contain;
    object-position: center;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media all and (min-width: 1px) {
    .infinite-scroll {
        padding: 10px 0;
        top: -47px;
    }

    .infinite-scroll-wrapper > img {
        height: 50px;
        width: 100px;
    }
}

@media all and (min-width: 1200px) {
    .infinite-scroll {
        padding: 25px 0;
        top: -75px;
    }

    .infinite-scroll-wrapper > img {
        height: 100px;
        width: 200px;
    }
}

/* recaptcha */
.recaptcha {
    position: relative;
    height: 78px;
    width: 304px;
    margin: auto;
}

.recaptcha:before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 48px;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 150"><path fill="none" stroke="rgb(111, 36, 255)" stroke-width="15" stroke-linecap="round" stroke-dasharray="300 385" stroke-dashoffset="0" d="M275 75c0 31-27 50-50 50-58 0-92-100-150-100-28 0-50 22-50 50s23 50 50 50c58 0 92-100 150-100 24 0 50 19 50 50Z"><animate attributeName="stroke-dashoffset" calcMode="spline" dur="2" values="685;-685" keySplines="0 0 1 1" repeatCount="indefinite"></animate></path></svg>') no-repeat center/contain;
}

.recaptcha .g-recaptcha{
    opacity: 1;
    transition: opacity 0.4s ease-out;
}

@keyframes rotate {
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.recaptcha.locked:before{
    display: block;
}

.recaptcha.locked .g-recaptcha{
    opacity: 0;
}

/**/

/* themed colors */

main {
    background: var(--Constructor-Bg, var(--Black));
    color: var(--Constructor-Text, #fff);
}

.theme--primary-color {
    color: var(--Constructor-Primary, #fff);
}

.theme--primary-bg {
    background-color: var(--Constructor-Primary, #fff);
}

.theme--stroke-color {
    -webkit-text-stroke: 1px var(--Constructor-Primary, #fff);
    color: rgba(0, 0, 0, 0);
}

.theme--secondary-color {
    color: var(--Constructor-Secondary, #fff);
}

.theme--accent-color {
    color: var(--Constructor-Accent, #fff);
}

/**/
.widget-results .result--title,
.widget-results .result--caption {
    color: var(--Color-Item-Title, var(--Constructor-Primary));
}

.widget-results .result--description {
    color: var(--Color-Item-Description, var(--Constructor-Primary));
}

