/* =================================================================== 
 * TOC:
 * # SETTINGS
 *      ## fonts
 *      ## colors
 *      ## spacing and typescale
 *      ## grid variables
 * # NORMALIZE
 * # BASE SETUP
 * # GRID 
 *      ## large screen devices 
 *      ## medium screen devices 
 *      ## tablet devices 
 *      ## mobile devices 
 *      ## small screen devices 
 *      ## additional column stackpoints 
 * # UTILITY CLASSES
 * # TYPOGRAPHY 
 *      ## base type styles
 *      ## additional typography & helper classes
 *      ## lists
 *      ## spacing
 * # PRELOADER
 * # FORM
 *      ## style placeholder text
 *      ## change autocomplete styles in Chrome
 * # BUTTONS
 * # TABLE
 * # COMPONENTS
 *      ## pagination
 *      ## alert box 
 *      ## skillbars 
 *      ## stats tabs
 * # PROJECT-WIDE SHARED STYLES
 *      ## theme-specific typography classes
 *      ## media classes
 *      ## swiper overrides
 * # PAGE WRAP
 * # SITE HEADER
 *      ## branding
 *      ## main navigation
 *      ## header social
 *      ## mobile menu toggle
 * # INTRO
 *      ## intro text
 *      ## intro bg
 * # ABOUT
 *      ## about timelines
 *      ## about skills
 *      ## about clients
 * # WORKS
 *      ## portfolio list
 *      ## testimonial slider
 * # FOOTER
 *      ## copyright
 *      ## go top
 *
 *
 * ------------------------------------------------------------------ */


/* ===================================================================
 * # SETTINGS
 *
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts 
 * ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;600;700&display=swap');

@font-face {
    font-family: 'dot';
    src: url('led_counter-7.ttf');
}

:root {
    --font-1: 'Poppins', sans-serif;
    --font-2: 'Poppins', sans-serif;

    /* monospace
     */
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/* ------------------------------------------------------------------- 
  * ## colors
  * ------------------------------------------------------------------- */
:root {

    /* color-1(#5F9295)
      * color-2(#2D2327)
      */
    --color-1: hsla(183, 22%, 48%, 1);
    --color-2: #2e2328;

    /* theme color variations
      */
    --color-1-lighter: hsla(183, 22%, 68%, 1);
    --color-1-light: hsla(183, 22%, 58%, 1);
    --color-1-dark: #36c761;
    --color-1-darker: hsla(183, 22%, 28%, 1);

    --color-2-lighter: hsla(336, 13%, 36%, 1);
    --color-2-light: hsla(336, 13%, 26%, 1);
    --color-2-dark: hsla(336, 13%, 10%, 1);
    --color-2-darker: hsla(336, 13%, 5%, 1);

    /* feedback colors
      * color-error(#ffd1d2), color-success(#c8e675), 
      * color-info(#d7ecfb), color-notice(#fff099)
      */
    --color-error: hsla(359, 100%, 91%, 1);
    --color-success: hsla(76, 69%, 68%, 1);
    --color-info: hsla(205, 82%, 91%, 1);
    --color-notice: hsla(51, 100%, 80%, 1);
    --color-error-content: hsla(359, 50%, 50%, 1);
    --color-success-content: hsla(76, 29%, 28%, 1);
    --color-info-content: hsla(205, 32%, 31%, 1);
    --color-notice-content: hsla(51, 30%, 30%, 1);


    --color-black: #000000;
    --color-gray-19: #444444;
    --color-gray-18: #1b1e1e;
    --color-gray-17: #282d2e;
    --color-gray-16: #363c3d;
    --color-gray-15: #444b4c;
    --color-gray-14: #515a5b;
    --color-gray-13: #5f696a;
    --color-gray-12: #6c787a;
    --color-gray-11: #7a8789;
    --color-gray-10: #879698;
    --color-gray-9: #93a1a2;
    --color-gray-8: #9fabad;
    --color-gray-7: #abb6b7;
    --color-gray-6: #b7c0c1;
    --color-gray-5: #c3cbcc;
    --color-gray-4: #cfd5d6;
    --color-gray-3: #dbe0e0;
    --color-gray-2: #e7eaea;
    --color-gray-1: #f3f5f5;
    --color-white: #ffffff;

    /* text
      */
    --color-text: var(--color-gray-17);
    --color-text-dark: var(--color-gray-19);
    --color-text-light: var(--color-gray-12);
    --color-placeholder: var(--color-gray-12);

    /* buttons
      */
    --color-btn: var(--color-gray-4);
    --color-btn-text: var(--color-text);
    --color-btn-hover: var(--color-gray-5);
    --color-btn-hover-text: var(--color-text);
    --color-btn-primary: var(--color-1-dark);
    --color-btn-primary-text: var(--color-white);
    --color-btn-primary-hover: var(--color-text-dark);
    --color-btn-primary-hover-text: var(--color-white);
    --color-btn-stroke: var(--color-1-dark);
    --color-btn-stroke-text: var(--color-1-darker);
    --color-btn-stroke-hover: var(--color-text-dark);
    --color-btn-stroke-hover-text: var(--color-white);

    /* preloader
      */
    --color-preloader-bg: #fff;
    --color-loader: var(--color-1-dark);
    --color-loader-light: var(--color-1-lighter);

    /* others
      */
    --color-body: #efeeeeb3;
    --color-border: rgba(0, 0, 0, .08);
    --border-radius: 10px;
}

/* ------------------------------------------------------------------- 
  * ## spacing and typescale
  * ------------------------------------------------------------------- */
:root {

    /* spacing
      * base font size: 19px 
      * vertical space unit : 32px
      */
    --base-size: 62.5%;
    --multiplier: 1;
    --base-font-size: calc(1.9rem * var(--multiplier));
    --space: calc(3.2rem * var(--multiplier));

    /* vertical spacing 
      */
    --vspace-0_125: calc(0.125 * var(--space));
    --vspace-0_25: calc(0.25 * var(--space));
    --vspace-0_375: calc(0.375 * var(--space));
    --vspace-0_5: calc(0.5 * var(--space));
    --vspace-0_625: calc(0.625 * var(--space));
    --vspace-0_75: calc(0.75 * var(--space));
    --vspace-0_875: calc(0.875 * var(--space));
    --vspace-1: calc(var(--space));
    --vspace-1_25: calc(1.25 * var(--space));
    --vspace-1_5: calc(1.5 * var(--space));
    --vspace-1_75: calc(1.75 * var(--space));
    --vspace-2: calc(2 * var(--space));
    --vspace-2_5: calc(2.5 * var(--space));
    --vspace-3: calc(3 * var(--space));
    --vspace-3_5: calc(3.5 * var(--space));
    --vspace-4: calc(4 * var(--space));
    --vspace-4_5: calc(4.5 * var(--space));
    --vspace-5: calc(5 * var(--space));

    /* type scale
      * ratio 1:2 | base: 19px
      * -------------------------------------------------------
      *
      * --text-display-3 = (81.70px)
      * --text-display-2 = (68.08px)
      * --text-display-1 = (56.73px)
      * --text-xxxl      = (47.28px)
      * --text-xxl       = (39.40px)
      * --text-xl        = (32.83px)
      * --text-lg        = (27.36px)
      * --text-md        = (22.80px)
      * --text-size      = (19.00px) BASE
      * --text-sm        = (15.83px)
      * --text-xs        = (13.19px)
      *
      * ---------------------------------------------------------
      */
    --text-scale-ratio: 1.2;
    --text-size: var(--base-font-size);
    --text-xs: calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
    --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-display-1: calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-display-2: calc(var(--text-display-1) * var(--text-scale-ratio));
    --text-display-3: calc(var(--text-display-2) * var(--text-scale-ratio));

    /* default button height
      */
    --vspace-btn: var(--vspace-2);
}

/* on mobile devices below 600px, change the value of '--multiplier' 
  * to adjust the values of base font size and vertical space unit.
  */
@media screen and (max-width: 600px) {
    :root {
        --multiplier: .875;
    }
}

/* ------------------------------------------------------------------- 
  * ## grid variables
  * ------------------------------------------------------------------- */
:root {

    /* widths for rows and containers
      */
    --width-full: 100%;
    --width-max: 1100px;
    --width-wide: 1400px;
    --width-wider: 1600px;
    --width-widest: 1800px;
    --width-narrow: 1000px;
    --width-narrower: 800px;
    --width-grid-max: var(--width-max);

    /* gutter
      */
    --gutter: 2rem;
}

.three-dee-box {
    width: 100%;
    height: 40vw;
    border: 1px #bebebe solid;


}

/* on medium screen devices
  */
@media screen and (max-width: 1200px) {
    :root {
        --gutter: 1.8rem;
    }
}

/* on mobile devices
  */
@media screen and (max-width: 600px) {
    :root {
        --gutter: 1rem;
    }
}



/* ====================================================================
  * # NORMALIZE
  *
  *
  * --------------------------------------------------------------------
  * normalize.css v8.0.1 | MIT License |
  * github.com/necolas/normalize.css
  * -------------------------------------------------------------------- */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;

}

main {
    display: block;
}

h1 {
    font-size: 1em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}



/* ===================================================================
  * # BASE SETUP
  *
  *
  * ------------------------------------------------------------------- */
html {
    font-size: var(--base-size);
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html,
body {
    height: 100%;
}

body {
    background-color: var(--color-body);
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-size: 16px;
    color: #444;
    line-height: 32px;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

svg,
img,
video {
    max-width: 100%;
    height: auto;
    pointer-events: none;

}

html>div {
    display: none;
}

pre {
    overflow: auto;
}

#policy h3,
#policy h5 {
    font-weight: 600;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



/* ===================================================================
  * # GRID v4.0.0
  *
  *
  *   -----------------------------------------------------------------
  * - Grid breakpoints are based on MAXIMUM WIDTH media queries, 
  *   meaning they apply to that one breakpoint and ALL THOSE BELOW IT.
  * - Grid columns without a specified width will automatically layout 
  *   as equal width columns.
  *
  * - BLOCK GRID columns(columns inside BLOCK GRID containers) are 
  *   equally-sized columns define at parent/row level. 
  *   A BLOCK GRID container's class attribute value begins with "block-".
  *
  * ------------------------------------------------------------------- */
/* row 
  */
.row {
    width: 92%;
    max-width: var(--width-grid-max);
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
}

.row .row {
    width: auto;
    max-width: none;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
}

/* column
  */
.column {
    display: block;
    flex: 1 1 0%;
    padding: 0 var(--gutter);
}

.collapse>.column,
.column.collapse {
    padding: 0;
}

/* row utility classes
  */
.row.row-wrap {
    flex-wrap: wrap;
}

.row.row-nowrap {
    flex-wrap: nowrap;
}

.row.row-y-top {
    align-items: flex-start;
}

.row.row-y-bottom {
    align-items: flex-end;
}

.row.row-y-center {
    align-items: center;
}

.row.row-stretch {
    align-items: stretch;
}

.row.row-baseline {
    align-items: baseline;
}

.row.row-x-left {
    justify-content: flex-start;
}

.row.row-x-right {
    justify-content: flex-end;
}

.row.row-x-center {
    justify-content: center;
}

/* --------------------------------------------------------------------
  * ## large screen devices 
  * -------------------------------------------------------------------- */
.lg-1 {
    flex: none;
    width: 8.33333%;
}

.lg-2 {
    flex: none;
    width: 16.66667%;
}

.lg-3 {
    flex: none;
    width: 25%;
}

.lg-4 {
    flex: none;
    width: 33.33333%;
}

.lg-5 {
    flex: none;
    width: 41.66667%;
}

.lg-6 {
    flex: none;
    width: 50%;
}

.lg-7 {
    flex: none;
    width: 58.33333%;
}

.lg-8 {
    flex: none;
    width: 66.66667%;
}

.lg-9 {
    flex: none;
    width: 75%;
}

.lg-10 {
    flex: none;
    width: 83.33333%;
}

.lg-11 {
    flex: none;
    width: 91.66667%;
}

.lg-12 {
    flex: none;
    width: 100%;
}

.block-lg-one-eight>.column {
    flex: none;
    width: 12.5%;
}

.block-lg-one-sixth>.column {
    flex: none;
    width: 16.66667%;
}

.block-lg-one-fifth>.column {
    flex: none;
    width: 20%;
}

.block-lg-one-fourth>.column {
    flex: none;
    width: 25%;
}

.block-lg-one-third>.column {
    flex: none;
    width: 33.33333%;
}

.block-lg-one-half>.column {
    flex: none;
    width: 50%;
}

.block-lg-whole>.column {
    flex: none;
    width: 100%;
}

/* --------------------------------------------------------------------
  * ## medium screen devices 
  * -------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .md-1 {
        flex: none;
        width: 8.33333%;
    }

    .md-2 {
        flex: none;
        width: 16.66667%;
    }

    .md-3 {
        flex: none;
        width: 25%;
    }

    .md-4 {
        flex: none;
        width: 33.33333%;
    }

    .md-5 {
        flex: none;
        width: 41.66667%;
    }

    .md-6 {
        flex: none;
        width: 50%;
    }

    .md-7 {
        flex: none;
        width: 58.33333%;
    }

    .md-8 {
        flex: none;
        width: 66.66667%;
    }

    .md-9 {
        flex: none;
        width: 75%;
    }

    .md-10 {
        flex: none;
        width: 83.33333%;
    }

    .md-11 {
        flex: none;
        width: 91.66667%;
    }

    .md-12 {
        flex: none;
        width: 100%;
    }

    .block-md-one-eight>.column {
        flex: none;
        width: 12.5%;
    }

    .block-md-one-sixth>.column {
        flex: none;
        width: 16.66667%;
    }

    .block-md-one-fifth>.column {
        flex: none;
        width: 20%;
    }

    .block-md-one-fourth>.column {
        flex: none;
        width: 25%;
    }

    .block-md-one-third>.column {
        flex: none;
        width: 33.33333%;
    }

    .block-md-one-half>.column {
        flex: none;
        width: 50%;
    }

    .block-md-whole>.column {
        flex: none;
        width: 100%;
    }

    .hide-on-md {
        display: none;
    }
}

/* --------------------------------------------------------------------
  * ## tablet devices 
  * -------------------------------------------------------------------- */
@media screen and (max-width: 800px) {


    .tab-1 {
        flex: none;
        width: 8.33333%;
    }

    .tab-2 {
        flex: none;
        width: 16.66667%;
    }

    .tab-3 {
        flex: none;
        width: 25%;
    }

    .tab-4 {
        flex: none;
        width: 33.33333%;
    }

    .tab-5 {
        flex: none;
        width: 41.66667%;
    }

    .tab-6 {
        flex: none;
        width: 50%;
    }

    .tab-7 {
        flex: none;
        width: 58.33333%;
    }

    .tab-8 {
        flex: none;
        width: 66.66667%;
    }

    .tab-9 {
        flex: none;
        width: 75%;
    }

    .tab-10 {
        flex: none;
        width: 83.33333%;
    }

    .tab-11 {
        flex: none;
        width: 91.66667%;
    }

    .tab-12 {
        flex: none;
        width: 100%;
    }

    .block-tab-one-eight>.column {
        flex: none;
        width: 12.5%;
    }

    .block-tab-one-sixth>.column {
        flex: none;
        width: 16.66667%;
    }

    .block-tab-one-fifth>.column {
        flex: none;
        width: 20%;
    }

    .block-tab-one-fourth>.column {
        flex: none;
        width: 25%;
    }

    .block-tab-one-third>.column {
        flex: none;
        width: 33.33333%;
    }

    .block-tab-one-half>.column {
        flex: none;
        width: 50%;
    }

    .block-tab-whole>.column {
        flex: none;
        width: 100%;
    }

    .hide-on-tab {
        display: none;
    }
}

/* --------------------------------------------------------------------
  * ## mobile devices 
  * -------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .row {
        width: 100%;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .row .row {
        padding-left: 0;
        padding-right: 0;
    }

    .mob-1 {
        flex: none;
        width: 8.33333%;
    }

    .mob-2 {
        flex: none;
        width: 16.66667%;
    }

    .mob-3 {
        flex: none;
        width: 25%;
    }

    .mob-4 {
        flex: none;
        width: 33.33333%;
    }

    .mob-5 {
        flex: none;
        width: 41.66667%;
    }

    .mob-6 {
        flex: none;
        width: 50%;
    }

    .mob-7 {
        flex: none;
        width: 58.33333%;
    }

    .mob-8 {
        flex: none;
        width: 66.66667%;
    }

    .mob-9 {
        flex: none;
        width: 75%;
    }

    .mob-10 {
        flex: none;
        width: 83.33333%;
    }

    .mob-11 {
        flex: none;
        width: 91.66667%;
    }

    .mob-12 {
        flex: none;
        width: 100%;
    }

    .block-mob-one-eight>.column {
        flex: none;
        width: 12.5%;
    }

    .block-mob-one-sixth>.column {
        flex: none;
        width: 16.66667%;
    }

    .block-mob-one-fifth>.column {
        flex: none;
        width: 20%;
    }

    .block-mob-one-fourth>.column {
        flex: none;
        width: 25%;
    }

    .block-mob-one-third>.column {
        flex: none;
        width: 33.33333%;
    }

    .block-mob-one-half>.column {
        flex: none;
        width: 50%;
    }

    .block-mob-whole>.column {
        flex: none;
        width: 100%;
    }

    .hide-on-mob {
        display: none;
    }
}

/* --------------------------------------------------------------------
  * ## small screen devices 
  * --------------------------------------------------------------------*/

/* stack columns on small screen devices
  */
@media screen and (max-width: 400px) {

    .row {
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .row .row {
        margin-left: 0;
        margin-right: 0;
    }

    .block-stack>.column,
    .column {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .hide-on-sm {
        display: none;
    }
}

/* --------------------------------------------------------------------
  * ## additional column stackpoints 
  * -------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
    .mobile-only {
        display: block !important;
    }

    .sub-price span {
        font-size: 22px !important;
    }

    .num-step {
        display: none;
    }

    .box-info {
        padding: 30px !important;
    }

    .box {
        flex-direction: column-reverse !important;
        margin: 20px !important;
    }

    .three-dee-box {

        height: 100vw !important;
    }

    .logo-hero h1 {

        font-size: 70px !important;
        margin-bottom: 10px !important;
    }

    #watch-intro {
        display: none;
    }

    button::after {
        display: none;
    }

    .stack-on-900,
    .block-stack-on-900>.column {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 700px) {

    .stack-on-700,
    .block-stack-on-700>.column {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 550px) {

    #playvid-mob {
        display: block !important;
    }

    #playvid {
        display: none !important;
    }


    .stack-on-550,
    .block-stack-on-550>.column {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}



/* ===================================================================
  * # UTILITY CLASSES
  *
  *
  * ------------------------------------------------------------------- */

/* flex item alignment classes
  */
.u-flexitem-center {
    margin: auto;
    align-self: center;
}

.u-flexitem-left {
    margin-right: auto;
    align-self: center;
}

.u-flexitem-right {
    margin-left: auto;
    align-self: center;
}

.u-flexitem-x-center {
    margin-right: auto;
    margin-left: auto;
}

.u-flexitem-x-left {
    margin-right: auto;
}

.u-flexitem-x-right {
    margin-left: auto;
}

.u-flexitem-y-center {
    align-self: center;
}

.u-flexitem-y-top {
    align-self: flex-start;
}

.u-flexitem-y-bottom {
    align-self: flex-end;
}

/* misc helper classes
  */
.u-screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    border: 0;
    position: absolute;
    word-wrap: normal !important;
}

.u-clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.u-hidden {
    display: none;
}

.u-invisible {
    visibility: hidden;
}

.u-antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.u-overflow-hidden {
    overflow: hidden;
}

.u-remove-top {
    margin-top: 0;
}

.u-remove-bottom {
    margin-bottom: 0;
}

.u-add-half-bottom {
    margin-bottom: var(--vspace-0_5);
}

.u-add-bottom {
    margin-bottom: var(--vspace-1);
}

.u-no-border {
    border: none;
}

.u-fullwidth {
    width: 100%;
}

.u-pull-left {
    float: left;
}

.u-pull-right {
    float: right;
}



/* ===================================================================
  * # TYPOGRAPHY 
  *
  *
  * ------------------------------------------------------------------- 
  * type scale - ratio 1:2 | base: 19px
  * -------------------------------------------------------------------
  *
  * --text-display-3 = (81.70px)
  * --text-display-2 = (68.08px)
  * --text-display-1 = (56.73px)
  * --text-xxxl      = (47.28px)
  * --text-xxl       = (39.40px)
  * --text-xl        = (32.83px)
  * --text-lg        = (27.36px)
  * --text-md        = (22.80px)
  * --text-size      = (19.00px) BASE
  * --text-sm        = (15.83px)
  * --text-xs        = (13.19px)
  *
  * -------------------------------------------------------------------- */

/* --------------------------------------------------------------------
  * ## base type styles
  * -------------------------------------------------------------------- */
body {
    font-family: var(--font-1);
    font-size: 16px;
    font-weight: 400;
    line-height: var(--vspace-1);
    color: var(--color-text);

}



.at {

    font-weight: 800;
    background-color: #9a9a9a !important;
    color: #9a9a9a !important;
    border-radius: 30px;
    padding: 0px 1.9px;
    font-size: 12px;
    margin-left: 3px;
    margin-right: 3px;
}


/* links
  */
a {
    color: #444444;
    transition: all 0.3s ease-in-out;
    font-weight: 700;

}


a:hover,
a:active {
    color: #8e8e8e !important;
}

a:hover,
a:active {
    outline: 0;
}

/* headings
  */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-2);
    font-weight: 400;
    color: var(--color-text-dark);
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
}

h1,
.h1 {
    margin-top: var(--vspace-2_5);
    margin-bottom: var(--vspace-0_75);
}

h2,
.h2,
h3,
.h3,
h4,
.h4 {
    margin-top: var(--vspace-2);
    margin-bottom: var(--vspace-0_75);
}

.title-tutorial {
    color: #444444 !important;

    font-weight: 700;
}

h5,
.h5,
h6,
.h6 {
    margin-top: var(--vspace-1_75);
    margin-bottom: var(--vspace-0_5);
}

h1,
.h1 {
    font-size: var(--text-display-1);
    line-height: calc(2.25 * var(--space));
    letter-spacing: -.01em;
}

@media screen and (max-width: 500px) {

    h1,
    .h1 {
        font-size: var(--text-display-1);
        line-height: calc(1.875 * var(--space));
    }
}

h2,
.h2 {
    font-size: var(--text-xxl);
    line-height: calc(1.375 * var(--space));
}

h3,
.h3 {
    font-size: var(--text-xl);
    line-height: calc(1.125 * var(--space));
}

h4,
.h4 {
    font-size: var(--text-lg);
    line-height: var(--vspace-1);
}

h5,
.h5 {
    font-size: var(--text-md);
    line-height: var(--vspace-0_875);
}

h6,
.h6 {
    font-family: var(--font-1);
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: var(--vspace-0_75);
    text-transform: uppercase;
    letter-spacing: .3rem;
}

/* emphasis, italic,
  * strong, bold and small text
  */
em,
i,
strong,
b {
    font-size: inherit;
    line-height: inherit;
}

em,
i {
    font-style: italic;
}

strong,
b {
    font-weight: 600;
}

small {
    font-size: 80%;
    font-weight: 400;
    line-height: var(--vspace-0_5);
}

/* blockquotes
  */
blockquote {
    margin: 0 0 var(--vspace-1) 0;
    padding: var(--vspace-1) var(--vspace-1_5);
    border-left: 2px solid var(--color-text-dark);
    position: relative;
}

blockquote p {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-lg);
    font-style: normal;
    line-height: var(--vspace-1_25);
    color: var(--color-text-dark);
    padding: 0;
}

blockquote cite {
    display: block;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-sm);
    line-height: var(--vspace-0_75);
    font-style: normal;
}

blockquote cite:before {
    content: "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
    color: var(--color-text-light);
    border: none;
}

@media screen and (max-width: 500px) {
    blockquote {
        padding: var(--vspace-0_75) var(--vspace-0_75);
    }

    blockquote p {
        font-size: var(--text-md);
        line-height: var(--vspace-1);
    }
}

/* figures
  */
figure img,
p img {
    margin: 0;
    vertical-align: bottom;
}

figure {
    display: block;
    margin-left: 0;
    margin-right: 0;
}

figure img+figcaption {
    margin-top: var(--vspace-1);
}

figcaption {
    /* font-style: italic; */
    font-size: var(--text-sm);
    text-align: center;
    margin-bottom: 0;
}

/* preformatted, code
  */
var,
kbd,
samp,
code,
pre {
    font-family: var(--font-mono);
}

pre {
    padding: var(--vspace-0_75) var(--vspace-1) var(--vspace-1);
    background: var(--color-gray-3);
    overflow-x: auto;
}

code {
    font-size: var(--text-sm);
    line-height: 1.6rem;
    margin: 0 .2rem;
    padding: calc(((var(--vspace-1) - 1.6rem) / 2) - .1rem) calc(.8rem - .1rem);
    white-space: nowrap;
    background: var(--color-gray-3);
    border: 1px solid var(--color-gray-5);
    color: var(--color-text);
    border-radius: 3px;
}

pre>code {
    display: block;
    white-space: pre;
    line-height: var(--vspace-1);
    padding: 0;
    margin: 0;
    border: none;
}

/* deleted text, abbreviation,
  * & mark text
  */
del {
    text-decoration: line-through;
}

abbr {
    font-family: var(--font-1);
    font-weight: 600;
    font-variant: small-caps;
    text-transform: lowercase;
    letter-spacing: .1em;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
    text-decoration: none;
}

mark {
    background: var(--color-1-lighter);
    color: var(--color-text);
}

/* horizontal rule
  */
hr {
    border: solid var(--color-border);
    border-width: .1rem 0 0;
    clear: both;
    margin: var(--vspace-2) 0 calc(var(--vspace-2) - 1px);
    height: 0;
}

hr.fancy {
    border: none;
    margin: var(--vspace-2) 0;
    height: var(--vspace-1);
    text-align: center;
}

hr.fancy::before {
    content: "*****";
    letter-spacing: .3em;
}

/* --------------------------------------------------------------------
  * ## additional typography & helper classes
  * -------------------------------------------------------------------- */
.lead,
.attention-getter {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: 1.8275;
    color: var(--color-text-dark);
}

@media screen and (max-width: 900px) {

    .lead,
    .attention-getter {
        font-size: calc(var(--text-size) * 1.2636);
    }
}

@media screen and (max-width: 500px) {

    .lead,
    .attention-getter {
        font-size: var(--text-md);
    }
}

@media screen and (max-width: 460px) {

    .lead,
    .attention-getter {
        font-size: 1.9rem;
    }
}

.pull-quote {
    position: relative;
    padding: 0;
    margin-top: 0;
    text-align: center;
}

.pull-quote blockquote {
    border: none;
    margin: 0 auto;
    max-width: 62rem;
    padding-top: var(--vspace-2_5);
    position: relative;
}

.pull-quote blockquote p {
    font-weight: 400;
    color: var(--color-text-dark);
}

.pull-quote blockquote:before {
    content: "";
    display: block;
    height: var(--vspace-1);
    width: var(--vspace-1);
    background-repeat: no-repeat;
    background: center center;
    background-size: contain;
    background-image: url(../images/icons/icon-quote.svg);
    transform: translate(-50%, 0, 0);
    position: absolute;
    top: var(--vspace-1);
    left: 50%;
}

.drop-cap:first-letter {
    float: left;
    font-family: var(--font-1);
    font-weight: 700;
    font-size: calc(3 * var(--space));
    line-height: 1;
    padding: 0 0.125em 0 0;
    text-transform: uppercase;
    background: transparent;
    color: var(--color-text-dark);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* --------------------------------------------------------------------
  * ## lists
  * -------------------------------------------------------------------- */
ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}

.config li {
    padding-bottom: 20px !important;
}

li {
    display: list-item;
}

ol,
ul {
    margin-left: 1.6rem;
}

ul li {
    padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.6rem 0 1.6rem 1.6rem;
}

ul.disc li {
    display: list-item;
    list-style: none;
    padding: 0 0 0 .8rem;
    position: relative;
}

ul.disc li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-1-dark);
    position: absolute;
    left: -.9em;
    top: 11px;
    vertical-align: middle;
}

dt {
    margin: 0;
    color: var(--color-1-dark);
}

dd {
    margin: 0 0 0 2rem;
}

/* definition list line style 
  */
.lining dt,
.lining dd {
    display: inline;
    margin: 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
    content: "\A";
    white-space: pre;
}

.lining dd+dd:before {
    content: ", ";
}

.lining dd+dd:before {
    content: ", ";
}

.lining dd:before {
    content: ": ";
    margin-left: -0.2em;
}

/* definition list dictionary style 
  */
.dictionary-style dt {
    display: inline;
    counter-reset: definitions;
}

.dictionary-style dt+dt:before {
    content: ", ";
    margin-left: -0.2em;
}

.dictionary-style dd {
    display: block;
    counter-increment: definitions;
}

.dictionary-style dd:before {
    content: counter(definitions, decimal) ". ";
}

/* --------------------------------------------------------------------
  * ## spacing
  * -------------------------------------------------------------------- */
fieldset,
button,
.btn {
    margin-bottom: var(--vspace-0_5);
}

input,
textarea,
select,
pre,
blockquote,
figure,
figcaption,
table,
p,
ul,
ol,
dl,
form,
img,
.video-container,
.ss-custom-select {
    margin-bottom: var(--vspace-1);
}



/* ===================================================================
  * # PRELOADER
  * 
  * 
  * -------------------------------------------------------------------
  * - markup:
  *
  * <div id="preloader">
  *     <div class="loader line"></div>
  * </div>
  *
  *
  * ------------------------------------------------------------------- */
#preloader {
    position: fixed;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background: var(--color-preloader-bg);
    z-index: 500;
    height: 100dvh;
    width: 100%;
    opacity: 1;
    overflow: hidden;
}



#loader {
    background-color: transparent;
    margin-bottom: 5%;

}

@-webkit-keyframes line {
    from {
        background-position: -60px 0;
    }

    to {
        background-position: 60px 0;
    }
}

@keyframes line {
    from {
        background-position: -60px 0;
    }

    to {
        background-position: 60px 0;
    }
}

.line:before {
    -webkit-animation: line .75s infinite alternate ease-in-out;
    animation: line .75s infinite alternate ease-in-out;
    background: -webkit-gradient(linear, left top, right top, from(#1db54a), to(#1db54a));
    background: linear-gradient(90deg, #1db54a, #1db54a);
    background-repeat: no-repeat;
    background-size: 80px 4px;
    content: '';
    display: block;
    height: 4px;
    width: 80px;
}



/* ===================================================================
  * # FORM
  *
  *
  * ------------------------------------------------------------------- */
fieldset {
    border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    --input-height: var(--vspace-2);
    --input-line-height: var(--vspace-1);
    --input-vpadding: calc((var(--input-height) - var(--input-line-height)) / 2);
    display: block;
    height: var(--input-height);
    padding: var(--input-vpadding) 0 calc(var(--input-vpadding) - 1px) !important;
    border: 0 !important;
    outline: 0 !important;
    color: var(--color-text-light) !important;
    font-family: var(--font-1) !important;
    font-size: calc(var(--text-size) * 0.7895) !important;
    line-height: var(--input-line-height) !important;
    max-width: 100% !important;
    background: transparent !important;
    border-bottom: 1px solid #d4d4d4 !important;
    transition: all .3s ease-in-out !important;
}

#success-message {
    font-size: 16px;
    text-align: left;
    font-family: var(--font-1) !important;
    font-weight: 600;
    border: 0px;
    border-radius: 3px;
    background-color: var(--color-success);
    color: var(--color-success-content);
    padding: 10px;
    line-height: normal !important;

}

#error-message {
    font-size: 16px;
    text-align: left;
    font-family: var(--font-1) !important;
    font-weight: 600;
    border: 0px;
    padding: 10px;
    border-radius: 3px;
    background-color: var(--color-error);
    color: var(--color-error-content);
    line-height: normal !important;

}

.ss-custom-select {
    position: relative;
    padding: 0;
}

.ss-custom-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    margin: 0;
    vertical-align: middle;
    line-height: var(--vspace-1);
}

.ss-custom-select select option {
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: var(--color-body);
}

.ss-custom-select select::-ms-expand {
    display: none;
}

.ss-custom-select::after {
    border-bottom: 1px solid #141414;
    border-right: 1px solid #141414;
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 2.4rem;
    top: 50%;
    transition: all 0.15s ease-in-out;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
}

textarea {
    min-height: calc(8 * var(--space));
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    color: var(--color-text);
    border-bottom: 1px solid var(--color-text-dark);
}

label,
legend {
    font-family: var(--font-1);
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: var(--vspace-0_5);
    margin-bottom: var(--vspace-0_5);
    color: var(--color-text-dark);
    display: block;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label>.label-text {
    display: inline-block;
    margin-left: 1rem;
    font-family: var(--font-1);
    line-height: inherit;
}

label>input[type="checkbox"],
label>input[type="radio"] {
    margin: 0;
    position: relative;
    top: 2px;
}

/* ------------------------------------------------------------------- 
  * ## style placeholder text
  * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: var(--color-placeholder) !important;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--color-placeholder) !important;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--color-placeholder) !important;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--color-placeholder) !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--color-placeholder) !important;
}

::placeholder {
    /* Most modern browsers support this now. */
    color: var(--color-placeholder) !important;
}

/* ------------------------------------------------------------------- 
  * ## change autocomplete styles in Chrome
  * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-1);
    transition: background-color 5000s ease-in-out 0s;
}

#waitlist-form input {
    font-weight: 700;
    font-size: 14px !important;
}

/* ===================================================================
  * # BUTTONS
  *
  *
  * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    --btn-height: var(--vspace-btn);
    display: inline-block;
    font-family: var(--font-1);
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    padding: 15px 30px !important;
    line-height: normal;
    cursor: pointer;
    min-height: 51px;
    transition: all .3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0px;
    font-size: 14px;
    border: 0px solid #d4d4d4 !important;
    background-color: #444444 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button::after {
    content: 'x';
    position: absolute;
    /* Adjust this to position the square next to the button */
    transform: translateY(-50%);
    width: 51px !important;
    /* Width of the square */
    height: 51px;
    margin-top: 10.5px;
    /* Height of the square */
    color: #444444;
    background-color: #444444;
    margin-left: 48px;
    /* Color of the square */
}



.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {

    outline: 0;
    margin-left: 3px;
    padding: 15px 40px !important;

}

/* button primary
  */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
    background: var(--color-btn-primary);
    border-color: var(--color-btn-primary);
}

.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus,
.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover {
    background: var(--color-btn-primary-hover);
    border-color: var(--color-btn-primary-hover);
    color: var(--color-btn-primary-hover-text);
}

/* button modifiers
  */
.btn.u-fullwidth,
button.u-fullwidth {
    width: 100%;
    margin-right: 0;
}

.btn--small,
button.btn--small {
    --btn-height: calc(var(--vspace-btn) - 1.6rem);
}

.btn--medium,
button.btn--medium {
    --btn-height: calc(var(--vspace-btn) + .8rem);
}

.btn--large,
button.btn--large {
    --btn-height: calc(var(--vspace-btn) + 1.6rem);
}

.btn--stroke,
button.btn--stroke {
    background: transparent !important;
    font-weight: 700;
    border: 2px solid var(--color-btn-stroke);
    color: var(--color-btn-stroke-text);
}

.btn--stroke:focus,
button.btn--stroke:focus,
.btn--stroke:hover,
button.btn--stroke:hover {
    background: var(--color-btn-stroke-hover) !important;
    border: 2px solid var(--color-btn-stroke-hover);
    color: var(--color-btn-stroke-hover-text);
}

.btn--pill,
button.btn--pill {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
    border-radius: 1000px !important;
}



/* ===================================================================
  * # TABLE
  *
  *
  * ------------------------------------------------------------------- */
table {
    border-width: 0;
    width: 100%;
    max-width: 100%;
    font-family: var(--font-1);
    border-collapse: collapse;
}

th,
td {
    padding: var(--vspace-0_5) 3.2rem calc(var(--vspace-0_5) - 1px);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

th {
    padding: var(--vspace-0_5) 3.2rem;
    color: var(--color-text-dark);
    font-family: var(--font-1);
    font-weight: 600;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}



/* ===================================================================
  * # COMPONENTS
  *
  *
  * ------------------------------------------------------------------- */

/* -------------------------------------------------------------------
  * ## pagination
  * ------------------------------------------------------------------- */
.pgn {
    --pgn-num-height: calc(var(--vspace-1) + .4rem);
    margin: 0 auto var(--vspace-1);
    text-align: center;
}

.pgn ul {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: center;
    list-style: none;
    margin-left: 0;
    position: relative;
    padding: 0 6rem;
}

.pgn ul li {
    margin: 0;
    padding: 0;
}

.pgn__num {
    font-family: var(--font-1);
    font-weight: 600;
    font-size: var(--text-size);
    line-height: var(--vspace-1);
    display: block;
    padding: .2rem 1.2rem;
    height: var(--pgn-num-height);
    margin: .2rem .2rem;
    color: var(--color-text-dark);
    border-radius: var(--border-radius);
    transition: all, .3s, ease-in-out;
}

.pgn__num:focus,
.pgn__num:hover {
    background: var(--color-text-dark);
    color: var(--color-white);
}

.pgn .current,
.pgn .current:focus,
.pgn .current:hover {
    background: var(--color-text-dark);
    color: var(--color-white);
}

.pgn .inactive,
.pgn .inactive:focus,
.pgn .inactive:hover {
    opacity: 0.4;
    cursor: default;
}

.pgn__prev,
.pgn__next {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    height: var(--pgn-num-height);
    width: 4.8rem;
    line-height: var(--vspace-1);
    border-radius: 4px;
    padding: 0;
    margin: 0;
    opacity: 1;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    transition: all, .3s, ease-in-out;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.pgn__prev:focus,
.pgn__prev:hover,
.pgn__next:focus,
.pgn__next:hover {
    background: var(--color-text-dark);
}

.pgn__prev svg,
.pgn__next svg {
    height: 2.4rem;
    width: 2.4rem;
    transition: all, .3s, ease-in-out;
}

.pgn__prev svg path,
.pgn__next svg path {
    fill: var(--color-text-dark);
}

.pgn__prev:focus svg path,
.pgn__prev:hover svg path,
.pgn__next:focus svg path,
.pgn__next:hover svg path {
    fill: white;
}

.pgn__prev {
    left: 0;
}

.pgn__next {
    right: 0;
}

.pgn__prev.inactive,
.pgn__next.inactive {
    opacity: 0.4;
    cursor: default;
}

.pgn__prev.inactive:focus,
.pgn__prev.inactive:hover,
.pgn__next.inactive:focus,
.pgn__next.inactive:hover {
    background-color: transparent;
}

/* ------------------------------------------------------------------- 
  * responsive:
  * pagination
  * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .pgn ul {
        padding: 0 5.2rem;
    }
}

/* ------------------------------------------------------------------- 
  * ## alert box 
  * ------------------------------------------------------------------- */
.alert-box {
    padding: 20px;
    margin-bottom: var(--vspace-1);
    border-radius: var(--border-radius);
    font-family: var(--font-1);
    font-weight: 500;
    font-size: 14px;
    opacity: 1;
    visibility: visible;
    position: relative;
}

.alert-box p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
    font-weight: 700;

}

.alert-box__close {
    position: absolute;
    display: block;
    right: 1.6rem;
    top: 1.6rem;

    cursor: pointer;
    width: 12px;
    height: 12px;
}

.alert-box__close::before,
.alert-box__close::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 12px;
    position: absolute;
    top: 0;
    left: 5px;
}

.alert-box__close::before {
    transform: rotate(45deg);
}

.alert-box__close::after {
    transform: rotate(-45deg);
}

.entry__error {
    color: var(--color-error-content) !important;
    background-color: white !important;
    font-family: var(--font-1) !important;
    padding-top: 10px;
    max-width: 100% !important;
    font-size: 16px !important;
    font-weight: 600px;
    line-height: normal !important;
}

.alert-box--error {
    background-color: var(--color-error);
    color: var(--color-error-content);
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
    background-color: var(--color-error-content);
}

.alert-box--success {
    background-color: var(--color-success);
    color: var(--color-success-content);
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
    background-color: var(--color-success-content);
}

.alert-box--info {
    background-color: var(--color-info);
    color: var(--color-info-content);
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
    background-color: var(--color-info-content);
}

.alert-box--notice {
    background-color: var(--color-notice);
    color: var(--color-notice-content);
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
    background-color: var(--color-notice-content);
}

.alert-box.hideit {
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

/* ------------------------------------------------------------------- 
  * ## skillbars 
  * ------------------------------------------------------------------- */
.skill-bars {
    --bar-padding: 4rem;
    --bar-height: 0.4rem;
    list-style: none;
    margin: var(--vspace-2) 0 var(--vspace-1);
    counter-reset: ctr;
}

.skill-bars li {
    height: var(--bar-height);
    background: transparent;
    padding-left: var(--bar-padding);
    margin-bottom: var(--vspace-2);
    position: relative;
}

.skill-bars li::before {
    display: block;
    content: counter(ctr, decimal-leading-zero) ".";
    counter-increment: ctr;
    font-family: var(--font-1);
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: var(--vspace-1_5);
    letter-spacing: .1em;
    color: var(--color-1);
    position: absolute;
    top: calc(var(--vspace-1_5) * -1);
    left: 0;
}

.skill-bars li strong {
    font-family: var(--font-1);
    font-weight: 600;
    font-size: calc(var(--text-size) * 0.7895);
    line-height: var(--vspace-1_5);
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: .2em;
    position: absolute;
    top: calc(var(--vspace-1_5) * -1);
    left: var(--bar-padding);
}

.skill-bars li .progress {
    background: var(--color-1-lighter);
    position: relative;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.skill-bars li .progress::before {
    content: "";
    display: block;
    height: 100%;
    background-color: var(--color-text-dark);
}

.skill-bars li .percent5::before {
    width: 5%;
}

.skill-bars li .percent10::before {
    width: 10%;
}

.skill-bars li .percent15::before {
    width: 15%;
}

.skill-bars li .percent20::before {
    width: 20%;
}

.skill-bars li .percent25::before {
    width: 25%;
}

.skill-bars li .percent30::before {
    width: 30%;
}

.skill-bars li .percent35::before {
    width: 35%;
}

.skill-bars li .percent40::before {
    width: 40%;
}

.skill-bars li .percent45::before {
    width: 45%;
}

.skill-bars li .percent50::before {
    width: 50%;
}

.skill-bars li .percent55::before {
    width: 55%;
}

.skill-bars li .percent60::before {
    width: 60%;
}

.skill-bars li .percent65::before {
    width: 65%;
}

.skill-bars li .percent70::before {
    width: 70%;
}

.skill-bars li .percent75::before {
    width: 75%;
}

.skill-bars li .percent80::before {
    width: 80%;
}

.skill-bars li .percent85::before {
    width: 85%;
}

.skill-bars li .percent90::before {
    width: 90%;
}

.skill-bars li .percent95::before {
    width: 95%;
}

.skill-bars li .percent100::before {
    width: 100%;
}

/* --------------------------------------------------------------------
  * ## stats tabs
  * -------------------------------------------------------------------- */
.stats-tabs {
    padding: 0;
    margin: var(--vspace-1) 0;
}

.stats-tabs li {
    display: inline-block;
    margin: 0 1.6rem var(--vspace-0_5) 0;
    padding: 0 1.5rem 0 0;
    border-right: 1px solid var(--color-border);
}

.stats-tabs li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.stats-tabs li a {
    display: block;
    font-family: var(--font-1);
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: var(--vspace-1_5);
    border: none;
    color: var(--color-text-dark);
}

.stats-tabs li a:hover {
    color: var(--color-1-dark);
}

.stats-tabs li a em {
    display: block;
    margin: 0;
    font-family: var(--font-1);
    font-size: var(--text-sm);
    line-height: var(--vspace-0_5);
    font-weight: 400;
    font-style: normal;
    color: var(--color-text-light);
}



/* ===================================================================
  * # PROJECT-WIDE SHARED STYLES
  *
  *
  * ------------------------------------------------------------------- */
.wide {
    max-width: var(--width-wide);
}

.wider {
    max-width: var(--width-wider);
}

.narrow {
    max-width: var(--width-narrow);
}

.body-text-sm {
    font-size: calc(var(--text-size) * 0.8947);
    line-height: calc(0.9375 * var(--space));
}

[data-animate-el] {
    opacity: 0;
}

/* ------------------------------------------------------------------- 
  * ## theme-specific typography classes
  * ------------------------------------------------------------------- */
.text-pretitle {
    font-family: var(--font-1);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: var(--vspace-1);
    color: #444;
    margin-top: 0;
    margin-bottom: var(--vspace-0_25);
    margin-left: .1em;
    position: relative;
}

.text-huge-title {
    --text-huge: 5.4rem;
    --text-multiplier: 1;
    text-wrap: nowrap;
    font-family: var(--font-2);
    font-weight: 700;
    font-size: calc(var(--text-huge) * var(--text-multiplier));
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
    margin-top: 0;
}

.text-huge-title sup {
    position: relative;
    font-weight: 100;
    font-size: 20px !important;
    top: -30px;
    left: -10px;
}

.text-subtitle {
    font-family: var(--font-1);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-transform: uppercase;
    padding-left: 0px !important;
    line-height: 1.5 !important;
    letter-spacing: .2em;
    margin-top: 0;
    margin-bottom: var(--vspace-0_5);
}

/* ------------------------------------------------------------------- 
  * ## media classes
  * ------------------------------------------------------------------- */

/* floated image
  */
img.u-pull-right {
    margin: var(--vspace-0_5) 0 var(--vspace-0_5) var(--vspace-0_875);
}

img.u-pull-left {
    margin: var(--vspace-0_5) var(--vspace-0_875) var(--vspace-0_5) 0;
}

/* responsive video container
  */
.video-container {
    --aspect-ratio: 16/9;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: calc(100%/(var(--aspect-ratio)));
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ------------------------------------------------------------------- 
  * ## swiper overrides
  * ------------------------------------------------------------------- */
.swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1.2rem;
}

.swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.swiper .swiper-pagination-bullet-active {
    background: var(--color-1);
    opacity: 1;
}

/* ------------------------------------------------------------------- 
  * responsive:
  * project-wide and shared styles
  * ------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
    .text-pretitle {
        font-size: calc(var(--text-size) * 1.0526);
    }

    .text-huge-title sup {

        font-size: 14px !important;

        top: -20px;
        left: -0px;
    }

    .text-huge-title {
        --text-multiplier: .9;
        text-wrap: wrap !important;

    }
}

@media screen and (max-width: 800px) {
    p {
        font-size: 14px;

    }

    .s-footer__bottom {
        font-size: 14px !important;
    }

    .s-footer__bottom a {
        font-size: 14px !important;
    }

    .s-footer .link-list a {
        font-size: 14px !important;
    }

    .text-pretitle {
        font-size: 14px;
    }


    .text-huge-title {
        --text-multiplier: .84;

    }
}

@media screen and (max-width: 700px) {
    .text-huge-title {
        --text-multiplier: .74;
    }
}

@media screen and (max-width: 600px) {




    .text-huge-title {
        --text-multiplier: .70;
    }

    .entry__error {

        font-size: 14px !important;

    }

    #error-message {
        font-size: 14px !important;
    }

    #success-message {
        font-size: 14px !important;
    }

}

@media screen and (max-width: 500px) {


    .text-huge-title {
        --text-multiplier: .70;
    }
}

@media screen and (max-width: 480px) {
    .text-huge-title {
        --text-multiplier: .70;
    }
}

@media screen and (max-width: 400px) {


    .text-huge-title {
        --text-multiplier: .70;
    }
}



/* ===================================================================
  * # PAGE WRAP
  *
  *
  * ------------------------------------------------------------------- */
.s-pagewrap {
    --header-height: 10rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}



/* ===================================================================
  * # SITE HEADER
  *
  *
  * ------------------------------------------------------------------- */
.s-header {

    z-index: 100;
    display: flex;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.684);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 100%;
    transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: fixed;
    height: 68px;
    top: 0;
    left: 0;
    margin: 0;
    border-bottom: 1px #44444414 solid;



}

.play-pc {
    display: block;
}

.play-mob {
    display: none;
}



.s-header__block {
    z-index: 101;
}

/* --------------------------------------------------------------------
  * ## branding
  * -------------------------------------------------------------------- */
.s-header__branding {
    z-index: 2;
    font-family: var(--font-2);
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 600;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 25px;
}

.s-header__branding .site-title {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-title a {
    display: flex;
    align-items: center;
    padding: 10px 0px !important;

}

.site-title span {
    font-size: 10px;
    letter-spacing: -0.3px;
    line-height: 12px;
    color: #9e9c9c;
}


.site-title img {
    width: 60px;

}

.s-header__branding a {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    color: var(--color-text-dark);
}

/* --------------------------------------------------------------------
  * ## main navigation
  * -------------------------------------------------------------------- */
.s-header__nav-wrap {
    justify-content: center;
    padding: 18px;
    align-items: center;
}

.s-header__nav a {
    display: block;
    font-size: 14px !important;
    font-weight: 700;
    line-height: var(--vspace-1);
    color: #444;
    padding: 0 1.8rem;
    transition-property: color, background-color;
}


.s-header__nav a:hover {
    color: var(--color-1);
}

.s-header__nav ul {
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    margin: 0;
    padding: 0;
}

.s-header__nav li {
    padding-left: 0;
}

/* --------------------------------------------------------------------
  * ## header social
  * -------------------------------------------------------------------- */
.s-header__social {
    list-style: none;
    display: flex;
    margin: 0;
    transform: translateY(-50%);
    position: absolute;
    top: calc(50% - 0px);
    right: 15px;
}

.s-header__social a {
    margin-bottom: 0px;
}

.s-header__social li {
    padding-left: 0;
    margin-right: 1rem;
    line-height: 1;
}

.s-header__social li:last-child {
    margin-right: 0;
}

.s-header__social svg {
    height: 2.8rem;
    width: 2.8rem;
}

.s-header__social svg path {
    fill: var(--color-text-dark);
}

/* --------------------------------------------------------------------
  * ## mobile menu toggle
  * -------------------------------------------------------------------- */
.s-header__menu-toggle {
    display: block;
    width: 6.8rem;
    height: 68px;
    position: absolute;
    top: 0;
    right: 0rem;
}

.s-header__menu-toggle span {
    display: block;
    background-color: var(--color-text-dark);
    width: 28px;
    height: 3.5px;
    margin-top: -1px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    transition: background-color 0.2s ease-in-out;
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    left: auto;
}

.s-header__menu-toggle span::before,
.s-header__menu-toggle span::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: inherit;
    transition-duration: 0.2s, 0.2s;
    transition-delay: 0.2s, 0s;
    position: absolute;
    left: 0;
}

.s-header__menu-toggle span::before {
    top: -8px;
    transition-property: top, transform;
}

.s-header__menu-toggle span::after {
    bottom: -8px;
    transition-property: bottom, transform;
}

/* is clicked 
  */
.s-header__menu-toggle.is-clicked span {
    background-color: rgba(255, 255, 255, 0);
}

.s-header__menu-toggle.is-clicked span::before,
.s-header__menu-toggle.is-clicked span::after {
    background-color: var(--color-text-dark);
    transition-delay: 0s, 0.2s;
}

.s-header__menu-toggle.is-clicked span::before {
    top: 0;
    transform: rotate(45deg);
}

.s-header__menu-toggle.is-clicked span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ------------------------------------------------------------------- 
  * responsive:
  * site-header
  * ------------------------------------------------------------------- */


.kio-vid {
    align-self: flex-end;
    opacity: 0.9;

}



@media screen and (max-width: 900px) {
    .s-header {
        --header-height: 6.8rem;
        display: block;
        height: var(--header-height);


    }

    .s-header__block {
        width: 100%;
        height: var(--header-height);




    }

    .s-header__branding {
        top: calc(var(--header-height) / 2);
        left: 1.8rem;

    }



    .s-header__nav,
    .s-header__social {
        transform: translateY(-2rem);
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .s-header__nav {
        padding: 0 0 var(--vspace-1_25);
    }

    .s-header__nav a {
        font-family: var(--font-1);
        font-size: var(--text-md);
        font-weight: 600;
        line-height: var(--vspace-1);
        padding: var(--vspace-0_375) 0;
    }

    .s-header__nav ul {
        display: block;
        background-color: transparent;
        text-align: left;
        margin: 0;
        border: none;
    }

    .s-header__nav ul li {
        display: block;
    }

    .s-header__social {
        position: static;
    }

    .s-header__menu-toggle {
        display: block;
        right: 0rem;

    }


}



/* ===================================================================
  * # INTRO
  *
  *
  * ------------------------------------------------------------------- */
.s-intro {
    /* padding-top : calc(10 * var(--space));*/
    width: 100%;
    position: relative;
    padding-top: calc(10 * var(--space))
}

.s-intro__content {
    position: relative;
}

/* --------------------------------------------------------------------
  * ## intro text
  * -------------------------------------------------------------------- */
.s-intro__text {
    z-index: 2;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.s-intro__text h3 {
    font-family: var(--font-1);
    font-size: var(--text-xxxl);
    font-weight: 600;
    line-height: 1.0998;
    letter-spacing: -.01em;
    position: relative;
    color: #444444;

}

.tagline {
    margin-top: 20px;
}



.setup {
    display: flex;
    margin-bottom: 20px;
}

.setup-mini {
    background-color: #eaeaea;
    flex: 1;
    padding: 15px;
    border-radius: 16px;
    flex-direction: column;
    display: flex;
}

.setup-mini img {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.setup-mini p {
    font-size: 14px;
    background-color: #fff;
    border-radius: 5px;
    color: #1db54a;

    margin: 0px;
    display: none;
    margin-bottom: 20px;
    flex: 0;
    text-align: center;
    font-weight: 600;
}

.setup-mini h3 {
    font-size: 18px;
    margin: 0px;
    text-align: center;
    line-height: 24px;
    font-weight: 700;
}

.setup-mini h3 span {
    font-size: 14px;
    margin: 0px;
    color: #1db54a;
    text-align: center;
    line-height: 24px;
    font-weight: 700;
}

.docs {

    display: flex;
    background-color: #eaeaea;
    border-radius: 16px;
    padding: 15px;
    align-items: center;
    margin-top: 10px;
    flex-direction: row;
    justify-content: center;
}

.docs h3 {
    flex: 1;
    margin: 0px;
    font-size: 16px;
    font-weight: 700;
    padding: 0px 20px;

}

.docs button {
    margin: 0px;
    display: flex;
    margin-left: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


.s-intro__text h3 span {
    color: var(--color-2-light);
}

.s-intro__text-huge {
    --text-huge-size: 24.6rem;
    font-size: var(--text-huge-size);
    line-height: 1;
    font-weight: 700;
    margin-top: calc(var(--text-huge-size) / 2 * -1.45);
    margin-bottom: var(--vspace-1_25);
    color: #fff !important;
    position: relative;
    text-shadow: 0 0 100px #c3c3c3;
}






#kio-trailer_video {

    box-shadow: 0 0 50px #ebebeb;
    position: relative;
    border-radius: 20px;
    cursor: pointer;
    pointer-events: all !important;

}

#embed {
    aspect-ratio: 16/9;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;

}


/* --------------------------------------------------------------------
  * ## intro bg
  * -------------------------------------------------------------------- */
.s-intro__bg {
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: calc(100dvh - 100px);

    border: 0px !important;
    background-size: cover;
    /* <------ */
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/kio_thumb.png);
    position: relative;
}

.s-intro__bg video {
    position: absolute;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 0px !important;

    height: 100%;
    z-index: 1;
    object-fit: cover;
}


.s-intro__bg::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .12;
}

/* ------------------------------------------------------------------- 
  * responsive:
  * intro
  * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
    .s-intro__text-huge {
        --text-huge-size: 27rem;
    }
}

@media screen and (max-width: 1200px) {
    .s-intro__text-huge {
        --text-huge-size: 27vw;
    }
}

@media screen and (max-width: 1100px) {
    .s-intro__text h3 {
        font-size: var(--text-xxl);
    }
}

@media screen and (max-width: 1000px) {

    .docs {
        flex-direction: column !important;
        align-items: center;
    }


    .docs button {
        width: 100%;
        margin: 0px;
        margin-top: 20px;
    }


    .s-intro {
        padding-top: calc(7 * var(--space));
    }
}

@media screen and (max-width: 900px) {
    .s-intro__text h3 {
        font-size: 3.2rem;
    }



    .s-intro__text-huge {
        margin-bottom: var(--vspace-1);
    }
}

@media screen and (max-width: 800px) {
    .s-intro__text h3 {
        font-size: 2.8rem;
    }

    .s-intro__text-huge {
        margin-bottom: var(--vspace-0_5);
    }
}

@media screen and (max-width: 600px) {





    .s-intro__bg {
        aspect-ratio: 4/3;
    }

    .s-intro__text h3 {
        font-size: 4.6vw;
    }
}



/* ===================================================================
  * # ABOUT
  *
  *
  * ------------------------------------------------------------------- */
.s-about {
    --subtitle-line-height: var(--vspace-1_5);
    --timeline-left-padding: var(--vspace-1_75);
    --timeline-top-adjust: calc(var(--subtitle-line-height) / 2);
    --timeline-vertical-border-pos: 8px;

    padding-top: var(--vspace-2);
    padding-bottom: var(--vspace-2);
}

.s-about__block {
    margin-bottom: var(--vspace-2);
}

.s-about__timeline {
    padding-top: var(--vspace-1_5);
}

.s-about__timeline-section {
    position: relative;
}

.s-about__timeline-section::before {
    content: "";
    width: 1px;
    height: calc(100% - var(--timeline-top-adjust));
    background-color: var(--color-border);
    position: absolute;
    top: var(--timeline-top-adjust);
    left: calc(var(--timeline-vertical-border-pos) + var(--gutter));
}

.s-about .text-subtitle {
    padding-left: var(--timeline-left-padding);
    line-height: var(--subtitle-line-height);
    margin-bottom: var(--vspace-0_25);
    position: relative;
}



/* --------------------------------------------------------------------
  * ## about timelines
  * -------------------------------------------------------------------- */
.timeline {
    margin-top: var(--vspace-1_5);
    padding-right: 1vw;
    position: relative;
}

.timeline__block {
    padding-left: var(--timeline-left-padding);
    padding-bottom: var(--vspace-0_5);
    position: relative;
}

.timeline__block:last-child {
    padding-bottom: 0;
}

.timeline__bullet {
    display: block;
    height: 4.4rem;
    width: 3px;
    background-color: var(--color-text-dark);
    position: absolute;
    top: 0;
    left: calc(var(--timeline-vertical-border-pos) - 1px);
}

.timeline__title {
    font-family: var(--font-2);
    font-weight: 400;
    font-size: var(--text-xl);
    line-height: 1.0966;
    margin-top: 0;
    margin-bottom: var(--vspace-0_125);
}

.timeline__meta {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: calc(var(--text-size) * 1.1053);
    margin-top: 0;
    margin-bottom: var(--vspace-0_125);
}

.timeline__timeframe {
    font-size: calc(var(--text-size) * 0.7368);
    line-height: var(--vspace-0_75);
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--color-1-dark);
    margin-top: -.2rem;
}

/* --------------------------------------------------------------------
  * ## about skills
  * -------------------------------------------------------------------- */
.s-about__skills {
    padding-top: var(--vspace-3);
}

.s-about__skills .text-subtitle::after {
    display: none;
}

.s-about__skills .skill-bars {
    --bar-padding: var(--timeline-left-padding);
    margin-top: var(--vspace-2_5);
    display: flex;
    flex-flow: row wrap;
}

.s-about__skills .skill-bars li {
    margin-bottom: calc(2.25 * var(--space));
    flex: none;
    width: 50%;
}

.s-about__skills .skill-bars li::before {
    left: .4rem;
}

.s-about__skills .skill-bars li:nth-child(2n+1) {
    padding-right: var(--gutter);
}

.s-about__skills .skill-bars li:nth-child(2n+2) {
    padding-left: calc(var(--gutter) + var(--bar-padding));
}

.s-about__skills .skill-bars li:nth-child(2n+2)::before {
    left: var(--gutter);
}

.s-about__skills .skill-bars li:nth-child(2n+2) strong {
    left: calc(var(--gutter) + var(--bar-padding));
}

.s-about__skills .skill-bars strong {
    font-weight: 400;
    font-size: calc(var(--text-size) * 1.1053);
    text-transform: none;
    letter-spacing: 0;
}

/* --------------------------------------------------------------------
  * ## about clients
  * -------------------------------------------------------------------- */
.s-about__clients {
    padding-top: var(--vspace-0_5);
    overflow: hidden;
}

.s-about__clients .clients-list {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    margin-left: 0;
}

.s-about__clients .clients-list a {
    color: var(--color-text-dark);
}

.s-about__clients .clients-list a:focus,
.s-about__clients .clients-list a:hover {
    color: var(--color-1);
}

.s-about__clients .clients-list li {
    display: inline-block;
    padding-left: 0;
    position: relative;
}

.s-about__clients .clients-list li:not(:last-child)::after {
    content: "/";
    font-family: var(--font-1);
    font-weight: 300;
    font-size: .48em;
    color: var(--color-1-light);
    margin: 0 .2em 0 .3em;
    position: relative;
    bottom: .05em;
}

/* ------------------------------------------------------------------- 
  * responsive:
  * about
  * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .s-about {
        --timeline-left-padding: var(--vspace-1_25);
    }

    .s-about .text-subtitle::before {
        width: 2.4rem;
    }
}

@media screen and (max-width: 900px) {
    .s-about {
        --timeline-left-padding: var(--vspace-1_75);
    }

    .s-about .text-subtitle::before {
        width: 3.2rem;
    }

    .s-about__timeline .s-about__timeline-section:first-child {
        margin-bottom: var(--vspace-2);
    }

    .s-about__skills .skill-bars {
        display: block;
    }

    .s-about__skills .skill-bars li {
        width: auto;
    }

    .s-about__skills .skill-bars li:nth-child(2n+1) {
        padding-right: 0;
    }

    .s-about__skills .skill-bars li:nth-child(2n+2) {
        padding-left: var(--bar-padding);
    }

    .s-about__skills .skill-bars li:nth-child(2n+2)::before {
        left: .4rem;
    }

    .s-about__skills .skill-bars li:nth-child(2n+2) strong {
        left: var(--bar-padding);
    }
}

@media screen and (max-width: 600px) {

    .play-pc {
        display: none !important;
    }

    .play-mob {
        display: block !important;
    }

    .s-about {
        --timeline-left-padding: var(--vspace-1_25);
        padding-top: var(--vspace-4);
        padding-bottom: var(--vspace-2);
    }

    .s-about .text-subtitle::before {
        width: 1.6rem;
    }
}

@media screen and (max-width: 500px) {



    .s-about {
        --timeline-left-padding: 0;
        --subtitle-line-height: var(--vspace-0_625);
    }

    .s-about__timeline-section::before {
        display: none;
    }

    .s-about .text-subtitle::before {
        display: none;
    }

    .timeline {
        margin-top: var(--vspace-1);
        padding-right: 0;
    }

    .timeline__block {
        padding-bottom: 0;
    }

    .timeline__bullet {
        display: none;
    }

    .s-about__skills .skill-bars li::before {
        display: none;
    }
}



/* ===================================================================
  * # WORKS
  *
  *
  * ------------------------------------------------------------------- */
.s-works {
    padding-top: calc(3 * var(--space));
    padding-bottom: calc(5.5 * var(--space));
    background-color: white;
}

/* ------------------------------------------------------------------- 
  * ## portfolio list
  * ------------------------------------------------------------------- */
.folio-list {
    margin-top: var(--vspace-2_5);
    margin-bottom: var(--vspace-2);
}

.folio-list .column {
    margin-bottom: var(--vspace-1_25);
}

.folio-list .column:nth-child(2n+1) {
    padding-right: calc(var(--gutter) + 1.6rem);
}

.folio-list .column:nth-child(2n+2),
.model-box {
    padding-left: calc(var(--gutter) + 1.6rem);
}

.folio-item__caption {
    display: none;
}

.watch-kio {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.485);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    /* Initial opacity */
    transition: opacity 0.2s ease-in;
    /* Smooth transition */
}

/* Hover state */
.watch-kio:hover {
    opacity: 1;
    /* Full opacity on hover */
}

.watch-kio h2 {
    max-width: 40%;
    line-height: 30px !important;
    text-align: center;
}

.play-vid {
    border: 1px #bebebe solid;
    height: auto;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0px;
    display: flex;
    cursor: pointer;
}

.play-vid img {
    margin: 0px;
    padding: 0px;
}

/* thumbnail
  */
.folio-item__thumb-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    margin-bottom: 20px;
    border: 1px #bebebe solid;

}

.folio-item__thumb-link::before {
    z-index: 1;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all, .5s;
}

.folio-item__thumb-link::after {
    z-index: 1;
    content: "+";
    text-align: center;
    font-family: var(--font-1);
    font-weight: 300;
    font-size: 3rem;
    color: white;
    display: block;
    height: 3.2rem;
    width: 3.2rem;
    line-height: 3.2rem;
    margin-left: -1.6rem;
    margin-top: -3rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: absolute;
    left: 50%;
    top: 50%;
}

.folio-item__thumb img {
    vertical-align: bottom;
    margin-bottom: 0px;
    transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* portfolio info
  */
.folio-item__info {
    opacity: 0;
    display: none;
}

.folio-item__title {
    margin: 0;
    display: none;
}

.folio-item__meta {
    font-family: var(--font-1);
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 0.2rem;
    color: var(--color-gray-8);
}

.folio-item__meta .project-link {
    color: var(--color-text);
    margin: 0 .8rem;
}

.folio-item__meta .project-link:focus,
.folio-item__meta .project-link:hover {
    color: var(--color-1);
}



.folio-item__thumb:hover .folio-item__thumb-link img {
    transform: scale(1.05);
}

/* on hover
 
 .folio-item__thumb:hover .folio-item__thumb-link::before {
     opacity: 1;
     visibility: visible;
 }
 
 .folio-item__thumb:hover .folio-item__thumb-link::after {
     opacity: 1;
     visibility: visible;
     transform: scale(1);
 }
 */

/* ------------------------------------------------------------------- 
  * ## testimonial slider
  * ------------------------------------------------------------------- */
.testimonials {
    margin-top: var(--vspace-4_5);
}

.testimonial-slider {
    padding-right: var(--vspace-4);
    padding-left: var(--vspace-4);
    padding-bottom: var(--vspace-1_5);
}

.testimonial-slider__slide {
    background-color: white;
    text-align: center;
    width: 100%;
    position: relative;
}

.testimonial-slider__slide p {
    font-size: var(--text-xl);
    line-height: 1.6244;
}

.testimonial-slider__author {
    display: inline-block;
    text-align: left;
    min-height: var(--vspace-2);
    margin-top: var(--vspace-0_75);
    margin-bottom: var(--vspace-0_625);
    padding-left: calc(2.25 * var(--space));
    position: relative;
}

.testimonial-slider__avatar {
    width: var(--vspace-1_75);
    height: var(--vspace-1_75);
    border-radius: 100%;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-slider__cite {
    display: block;
}

.testimonial-slider__cite strong,
.testimonial-slider__cite span {
    font-style: normal;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider__cite strong {
    font-family: var(--font-2);
    font-size: calc(var(--text-size) * 1.1053);
    font-weight: 400;
    line-height: var(--vspace-1);
    color: var(--color-text-dark);
}

.testimonial-slider__cite span {
    display: block;
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: var(--vspace-0_5);
    color: var(--color-gray-8);
}

.testimonial-slider__next,
.testimonial-slider__prev {
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--color-gray-2);
    height: var(--vspace-1_75);
    width: var(--vspace-1_75);
    cursor: pointer;
    transform: translateY(-50%);
    position: absolute;
    top: calc(50% - var(--vspace-1_5));
}

.testimonial-slider__next svg,
.testimonial-slider__prev svg {
    height: var(--vspace-0_75);
    width: var(--vspace-0_75);
}

.testimonial-slider__next svg path,
.testimonial-slider__prev svg path {
    fill: var(--color-text-dark);
}

.testimonial-slider__next {
    right: 0;
}

.testimonial-slider__prev {
    left: 0;
}

.swiper-button-disabled {
    cursor: default;
}

.swiper-button-disabled svg path {
    fill: var(--color-gray-8);
}

/* ------------------------------------------------------------------- 
  * responsive:
  * works
  * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .folio-list .column:nth-child(2n+1) {
        padding-right: calc(var(--gutter) + .8rem);
    }

    .folio-list .column:nth-child(2n+2),
    .model-box {
        padding-left: calc(var(--gutter) + .8rem);
    }

    .testimonial-slider {
        padding-right: var(--vspace-3_5);
        padding-left: var(--vspace-3_5);
    }

    .testimonial-slider__slide p {
        font-size: var(--text-lg);
    }

    .testimonial-slider__next,
    .testimonial-slider__prev {
        height: var(--vspace-1_5);
        width: var(--vspace-1_5);
    }

    .testimonial-slider__next svg,
    .testimonial-slider__prev svg {
        height: var(--vspace-0_625);
        width: var(--vspace-0_625);
    }
}

@media screen and (max-width: 900px) {
    .folio-item__title {
        font-size: var(--text-md);
        line-height: var(--vspace-0_875);
    }

    .folio-item__meta {
        font-size: calc(var(--text-size) * 0.7368);
    }

    .testimonial-slider {
        padding-right: var(--vspace-2_5);
        padding-left: var(--vspace-2_5);
    }
}

@media screen and (max-width: 800px) {





    .folio-list .column:nth-child(2n+1) {
        padding-right: var(--gutter);
    }

    .folio-list .column:nth-child(2n+2),
    .model-box {
        padding-left: var(--gutter);
    }

    .testimonials {
        margin-top: var(--vspace-3);
        max-width: 600px;
    }

    .testimonial-slider {
        padding-right: 0;
        padding-left: 0;
    }

    .testimonial-slider__next,
    .testimonial-slider__prev {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .s-works {
        padding-top: var(--vspace-5);
        padding-bottom: var(--vspace-4_5);
    }

    .folio-item__title {
        font-size: var(--text-lg);
        line-height: var(--vspace-1);
    }

    .folio-item__meta {
        font-size: var(--text-sm);
    }
}

@media screen and (max-width: 400px) {
    .folio-list .column:nth-child(2n+1) {
        padding-right: 0;
    }

    .folio-list .column:nth-child(2n+2),
    .model-box {
        padding-left: 0;
    }

    .s-footer {
        padding-bottom: var(--vspace-1) !important;

    }

}



/* ===================================================================
  * # FOOTER
  *
  *
  * ------------------------------------------------------------------- */
.s-footer {
    padding-bottom: var(--vspace-2_5);
    font-weight: 400;
    position: relative;
}

.s-footer .text-subtitle {
    margin-bottom: 20px;
}

.s-footer .link-list {
    list-style: none;
    margin-left: 0;
}

.s-footer .link-list li {
    padding-left: 0;
    font-weight: 700;
}

.s-footer .link-list a {
    color: var(--color-gray-14);
    border: none;
    font-size: 14px;
}

.s-footer .link-list a:focus,
.s-footer .link-list a:hover {
    color: var(--color-1);
}

.s-footer__contact-header {}

.s-footer__contact-content .left-block {
    padding-top: var(--vspace-0_25);
}

.s-footer__contact-content .right-block {
    margin-left: 15%;
}

.s-footer__bottom {
    padding-top: var(--vspace-1_25);
    font-size: 14px;
    line-height: 30px;
    color: var(--color-gray-14);
    font-weight: 700;

}

.s-footer__bottom a {
    color: #444;
    font-weight: 700;
    font-size: 14px;
}

/* ------------------------------------------------------------------- 
  * ## copyright
  * ------------------------------------------------------------------- */
.ss-copyright span {
    display: inline-block;
}

.ss-copyright span::after {
    content: "•";
    display: inline-block;
    padding: 0 .8rem 0 1rem;
    color: var(--color-gray-10);
}

.ss-copyright span:last-child::after {
    display: none;
}






/* ------------------------------------------------------------------- 
  * ## go top
  * ------------------------------------------------------------------- */
.ss-go-top {
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 200%);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: fixed;
    bottom: 6rem;
    right: 4rem;
}

.ss-go-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    background-color: var(--color-text-dark);
    transition: all .3s;
    position: relative;
}

.ss-go-top svg {
    height: 2.4rem;
    width: 2.4rem;
}

.ss-go-top svg path {
    fill: white;
}

.ss-go-top.link-is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

/* ------------------------------------------------------------------- 
  * responsive:
  * footer
  * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-footer__contact-content .right-block {
        margin-left: auto;
    }
}

@media screen and (max-width: 1000px) {
    .ss-go-top {
        bottom: 4.8rem;
    }

    .ss-go-top a {
        height: 5.2rem;
        width: 5.2rem;
    }
}

#playvid-mob {
    display: none;
}


@media screen and (max-width: 600px) {

    .logo-hero {

        margin-right: 5px !important;
        margin-bottom: 20px !important;
    }

    .second-tag {
        display: none !important;

    }

    #cursor-tag {
        width: 16px !important;

        height: 16px !important;

        top: 2px !important;

    }

    .s-footer {
        padding-top: var(--vspace-1);
    }

    .ss-copyright span {
        display: block;
    }

    .ss-copyright span::after {
        display: none;
    }

    .ss-go-top {
        right: 3.2rem;
    }

    .ss-go-top a {
        height: 4.8rem;
        width: 4.8rem;
    }
}

@media screen and (max-width: 400px) {


    .s-intro__text-huge {
        text-shadow: 0 0 100px #989898;
    }

    .second-tag {
        display: none !important;
    }



    .s-intro {
        padding-top: calc(5.8 * var(--space));
    }

    .ss-go-top {
        bottom: 4rem;
        right: 2rem;
    }

    .ss-go-top a {
        height: 4rem;
        width: 4rem;
    }

    .ss-go-top svg {
        height: 1.6rem;
        width: 1.6rem;
    }
}

.neonText {
    color: #fff;

}

#sib-container input:-ms-input-placeholder {
    text-align: left;

}

#sib-container input::placeholder {
    text-align: left;
}

#sib-container textarea::placeholder {
    text-align: left;
}

.arrow {
    display: block;
    width: 110px;
    height: 110px;
    position: absolute;
    margin-bottom: 30px;
    cursor: pointer;
}

.arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: gray;
}

#cursor {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    pointer-events: none;
    will-change: transform;
}

#playvid {
    background-color: #36c761;
    position: absolute;
    z-index: 99;
    bottom: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px 8px 15px !important;
    color: white !important;
    border-radius: 20px 0px 20px 0px;
    margin-bottom: 0px;
}

#playvid a {
    color: white !important;
    font-size: 14px;
    margin-bottom: 2px;
    cursor: pointer;

}


@media (hover: hover) and (pointer: fine) {
    .cursor__circle {
        width: 64px;
        height: 64px;
        margin-top: -50%;
        margin-left: -50%;
        border-radius: 50%;
        border: solid 2px rgba(121, 121, 121, 0.4);
        transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    #cursor.arrow .cursor__circle {
        width: 128px;
        height: 128px;
        background-color: transparent;
        border-color: rgba(121, 121, 121, 0.4);
    }

    #cursor.arrow::after {
        content: '';
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    #cursor.subtle .cursor__circle {
        opacity: 0.16;
    }

    #cursor.overlay .cursor__circle {
        width: 48px;
        height: 48px;
        background-color: rgba(227, 222, 193, 0.08);
        border-color: transparent;
    }
}

#lucid-mode-button {
    display: none;
    visibility: hidden !important;
}

.loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top-color: transparent;
    animation: loading 0.6s linear infinite;
    margin-left: 10px;
    margin-bottom: 2px;
    vertical-align: middle;
}


@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}

.sign-up {
    position: absolute;
    left: -80px;
    padding: 5px;
    font-size: 14px;
}

.spaced {
    line-height: 36px;
}


#cursor-tag {
    width: 18px;
    position: relative;
    display: inline-block;
    height: 18px;
    margin-left: 5px;
    border-radius: 50%;
    opacity: 0;
    top: 3px;
    background-color: #1db54a;

}



@keyframes blink {

    0%,
    50% {
        visibility: visible;
    }

    51%,
    100% {
        visibility: hidden;
    }
}

.second-tag {
    display: inline-block;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    padding-left: 2px;
    min-height: 80px;

}


/* Style the tab */
.tab {
    overflow: hidden;
    display: flex;
    background-color: #eaeaea69;
    border-radius: 10px;
    margin-bottom: 20px;

}

/* Style the buttons inside the tab */
.tab button {
    border: 0px;
    flex: 1;
    background-color: #eaeaea;
    margin: 10px;
    color: #444444;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #c3cbcc !important;
    color: #444444 !important;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #c3cbcc !important;
    color: #444444 !important;
}

/* Style the tab content */
.tabcontent {
    display: none;

    margin: 20px 0px;
}

.device-list {
    overflow-x: auto;
    /* Make the container horizontally scrollable */
    overflow-y: hidden;
    /* Hide vertical scrollbar */
    white-space: nowrap;
    /* Prevent items from wrapping to the next line */
    -webkit-overflow-scrolling: touch;
    /* Enable smooth scrolling on iOS */
}

.device-item {
    display: inline-flex;
    border-radius: 16px;
    background-color: white;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 30px;
    overflow: hidden;

    width: 420px;
    flex-direction: column;
    cursor: pointer;
}

b {
    font-weight: 700;
}

.device-item img {
    margin-bottom: 0px;
    overflow: hidden;
    cursor: pointer;
}

.device-item h3 {
    margin: 0px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 24px;
    color: #444444;

    padding: 15px;
}

.device-item h3 span {
    font-size: 14px;
    line-height: 14px;
    color: #1db54a;
    overflow: hidden;
    /* Hide overflowing text */
    white-space: nowrap;
    /* Prevent text from wrapping */
    text-overflow: ellipsis;
    /* Truncate text with ellipsis */
}



.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}

.lds-spinner {
    color: currentColor;
    display: inline-block;
    position: relative;
    width: 80px;
    z-index: 0;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3.2px;
    left: 36.8px;
    width: 6.4px;
    height: 17.6px;
    border-radius: 20%;
    background: #393939;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.lds-grid {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-grid div {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #979797;
    animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
    top: 8px;
    left: 8px;
    animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
    top: 8px;
    left: 32px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
    top: 8px;
    left: 56px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
    top: 32px;
    left: 8px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
    top: 32px;
    left: 32px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
    top: 32px;
    left: 56px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
    top: 56px;
    left: 8px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
    top: 56px;
    left: 32px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
    top: 56px;
    left: 56px;
    animation-delay: -1.6s;
}

@keyframes lds-grid {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.intro2 {
    height: 100dvh;
    overflow: hidden;
    background-color: #909090;


}

.intro-over {
    /* From https://css.glass */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);

    width: 100vw;
    position: absolute;
    height: 100dvh;
    display: flex;
    justify-content: end;
    align-items: end;

    flex-direction: column;
}

.hero-vid {
    object-fit: cover;
    object-position: 37% center;

    height: 100%;
    width: 100%;
}

.logo-hero {
    /* From https://css.glass */

    padding: 10px 20px;
    margin-right: 30px;
    margin-bottom: 40px;
}

.logo-hero h1 {
    margin: 0px;
    width: auto;
    text-align: right;
    font-size: 100px;

}

.logo-hero h2 {
    margin: 0px;
    color: #fff;
    line-height: 20px;
    text-align: right;
    margin-left: auto;
    max-width: 450px;

}


.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%;

}

.icon-scroll {
    width: 30px;
    height: 50px;
    margin-left: -20px;
    bottom: 50px;
    margin-top: -35px;
    border: 2px solid #fff;
    border-radius: 25px
}

@media (max-width: 767px) {
    .icon-scroll {
        position: relative
    }
}

.icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll
}

@keyframes scroll {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translateY(26px)
    }
}



/* Hide mobile main menu items */
.mobile-only {
    display: none;
}

/* Mobile menu */
.mobile-main-menu {
    position: fixed;
    top: 68px;
    right: 0;
    width: 350px;
    height: 100%;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.684);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    border-left: 1px #44444414 solid;
    z-index: 4;
    display: flex;
    align-items: start;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Bring menu from right */
.show-menu {
    transform: translateX(0);
}

.mobile-main-menu ul {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 50px;
    width: 100%;
}

.mobile-main-menu ul li sup {
    width: 100%;
    margin-top: 10px;
    display: block;
}

#watch-intro {
    background-color: rgba(255, 255, 255, 0.186);
    color: white !important;
    position: absolute;
    border: 1px #eaeaea5d solid;
    bottom: 50px;
    cursor: pointer;
    left: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 15px 30px;
}

.mobile-main-menu ul li {
    margin-bottom: 20px;
    font-size: 14px;
    list-style: none;
    border-bottom: 1px #44444414 solid;
    width: 100%;
    text-align: right;
    padding-bottom: 10px;
}

.mobile-main-menu ul li a {
    color: #444;
    transition: color 0.6s;
}

.mobile-main-menu ul li a:hover {
    color: #aaa;
}

.sub-plans {
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px #dddddd solid;
    margin-bottom: 10px;
    margin-top: 10px;
}

.std {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sub-plans button {
    margin-bottom: 5px;
}

.sub-plans .text {
    flex: 1;
}

.sub-price span {
    font-size: 30px;
    color: #979797;
}

.sub-price {
    margin-bottom: 20px;
}

.ent {
    background-color: #444444;
    color: white;
}

.ai_temp {
    -webkit-appearance: none;
    height: 20px;
    background: #e3e3e3;
    border-radius: 20px;
    width: 100%;
    outline: none;
    opacity: 1;
    margin-bottom: 43px;
}


.ai_temp::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #444444;
    cursor: pointer;
}

#ai_temp {
    padding: 12px !important;

}

.ai_temp::-webkit-slider-thumb:hover {
    width: 40px;
    height: 40px;
}

.ai_temp::-moz-range-thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #36c761;
    cursor: pointer;
}

.carousel {
    background: #f0f0f0;
    /* Carousel background color */
    width: 100%;
    /* Maximum width of the carousel */
    margin: auto;
    /* Center the carousel */
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflow */
}

.carousel-cell {
    width: 100%;
    /* Width of each cell */
    min-height: 300px;
    /* Height of each cell */
    flex: 1;
    margin-right: 10px;
    /* Space between cells */
    background: white;
    /* Background color of cells */
    /* Text color */
    display: flex;
    font-size: 24px;
    /* Font size */
    position: relative;
    padding: 50px 0px;
    /* Rounded corners for cells */
}

/* Optional: Change the dot indicators style */
.flickity-page-dots {
    bottom: 10px;
    /* Positioning of dots */
}

.flickity-page-dots .dot {
    background: #7f8c8d;
    /* Dot color */
    opacity: 0.7;
    /* Dot opacity */
}

.flickity-page-dots .dot.is-selected {
    background: #e74c3c;
    /* Color for the selected dot */
}

.box {
    background-color: white;
    padding: 20px;
    min-height: 440px;
    display: flex;
    padding: 0px;
    flex-direction: row;
    border: 1px #cdcdcd solid;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.box-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.box-col img {
    object-fit: cover;
    margin: 0px;
}

.box-info {
    padding: 50px;
}

.box-info h2 {
    position: relative;
    font-size: 100px;
    color: #c6c6c6;
    font-family: dot;
    margin: 0px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.box-col .text-subtitle {
    margin-bottom: 0px;
}

.caro-title {
    font-size: 42px;
}

.caro-body {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 30px;
    flex: 1;
}

.box-info hr {
    margin: 20px 0px;
}

.box-info button {

    margin: 0px;

}

.play-btn {
    position: absolute !important;
    z-index: 9;
    left: 0px;
    top: 0px;
    background-color: #f4f4f4;
    border: 1px solid #bebebe;
    margin: 0px;
    padding: 5px 20px !important;
    text-align: center;
    pointer-events: none;
    border-top: 0px;
    border-left: 0px;
}

.next-btn::after {
    color: #fff;
    content: "▶";
    padding: 15px;
}

.get-start {
    background-color: #444444;
    color: white !important;
    margin-left: 20px;
    padding: 0px 15px !important;
    border-radius: 50px;
}

.get-start:hover {
    background-color: #727272;
    color: white !important;

}


/*start styles*/
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accordion__item {
    background-color: white;
    border: 1px #bebebe solid;
    overflow: hidden;
}

.accordion__header {
    padding: 20px;
    font-weight: 700;
    color: #444444;
    cursor: pointer;
    position: relative;
}

.accordion__header b {
    margin-right: 35px;
}

.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 25px;
    z-index: 1;
}

.accordion__header.active {
    background: #f4f4f4;
}

.accordion__header.active::after {
    transform: rotateX(180deg);
}

.accordion__item .accordion__content {
    padding: 0px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
}

.accordion__content p {
    margin-bottom: 0px;
    padding: 20px;
}


.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #71717A;
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}