@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;600&family=Castoro&display=swap');


/* =================================================================== 
 * TOC:
 * # SETTINGS
 *      ## fonts 
 *      ## colors
 *      ## spacing and typescale
 *      ## grid variables
 * # CSS RESET
 * # GRID
 * # BASE SETUP
 * # UTILITY CLASSES
 * # TYPOGRAPHY 
 *      ## base type styles
 *      ## additional typography & helper classes
 *      ## lists
 *      ## media 
 *      ## spacing
 * # PRELOADER
 *      ## page loaded
 * # FORM 
 *      ## style placeholder text
 * # BUTTONS
 * # TABLE
 * # COMPONENTS
 *      ## pagination
 *      ## alert box 
 *      ## skillbars
 *      ## stats tabs
 * # PROJECT-WIDE SHARED STYLES
 *      ## section header
 *      ## social list
 *      ## swiper overrides
 *      ## glightbox overrides
 * # GRID-BASED LAYOUTS
 *      ## grid block
 *      ## list grid
 * # PAGE WRAP
 * # SITE HEADER
 *      ## logo
 *      ## main navigation
 *      ## mobile menu toggle
 * # INTRO
 *      ## intro content
 *      ## intro btn cv download
 *      ## intro social
 *      ## intro scroll down
 *      ## intro transitions
 * # ABOUT
 *      ## about blocks
 * # WORKS
 *      ## folio entries 
 *      ## testimonials
 * # NUMBERS
 * # FOOTER
 *      ## copyright
 *      ## go top
 *
 * ------------------------------------------------------------------ */

:root {
    --font-1: "Public Sans", Sans-serif;
    --font-2: "Castoro", Serif;

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

:root {

  /* main brand colors */
  --color-1: hsla(144, 45%, 40%, 1);  /* fresh green */
  --color-2: hsla(150, 20%, 20%, 1);  /* deep green */
  --color-3: hsla(0, 0%, 10%, 1);     /* dark neutral (unchanged) */

  /* theme color variations */
  --color-1-lightest: hsla(144, 45%, 85%, 1);
  --color-1-lighter : hsla(144, 45%, 65%, 1);
  --color-1-light   : hsla(144, 45%, 55%, 1);
  --color-1-dark    : hsla(144, 45%, 30%, 1);
  --color-1-darker  : hsla(144, 45%, 25%, 1);
  --color-1-darkest : hsla(144, 45%, 15%, 1);

  --color-2-lightest: hsla(150, 20%, 45%, 1);
  --color-2-lighter : hsla(150, 20%, 35%, 1);
  --color-2-light   : hsla(150, 20%, 25%, 1);
  --color-2-dark    : hsla(150, 20%, 15%, 1);
  --color-2-darker  : hsla(150, 20%, 8%, 1);

  --color-3-light: hsla(0, 0%, 16%, 1);
  --color-3-dark : hsla(0, 0%, 8%, 1);

  /* feedback colors */
  --color-error          : hsla(359, 100%, 91%, 1);
  --color-success        : hsla(144, 45%, 65%, 1); /* softened green */
  --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(144, 45%, 30%, 1);
  --color-info-content   : hsla(205, 32%, 31%, 1);
  --color-notice-content : hsla(51, 30%, 30%, 1);

  /* neutrals (kept as-is from Antartika Light) */
  --color-black  : #000000;
  --color-gray-19: #181818;
  --color-gray-18: #2f302f;
  --color-gray-17: #474747;
  --color-gray-16: #5e5f5e;
  --color-gray-15: #767776;
  --color-gray-14: #8e8f8e;
  --color-gray-13: #a5a7a5;
  --color-gray-12: #bdbebd;
  --color-gray-11: #d4d6d4;
  --color-gray-10: #eceeec;
  --color-gray-9 : #eef0ee;
  --color-gray-8 : #f0f1f0;
  --color-gray-7 : #f2f3f2;
  --color-gray-6 : #f4f5f4;
  --color-gray-5 : #f6f7f6;
  --color-gray-4 : #f7f8f7;
  --color-gray-3 : #f9faf9;
  --color-gray-2 : #fbfcfb;
  --color-gray-1 : #fbfcfb;
  --color-white  : #ffffff;

  /* text */
  --color-text       : var(--color-gray-19);
  --color-text-dark  : var(--color-3-dark);
  --color-text-light : var(--color-gray-15);
  --color-placeholder: var(--color-gray-13);

  /* link */
  --color-link       : var(--color-1);
  --color-link-hover : var(--color-1-dark);
  --color-link-active: var(--color-1-dark);

  /* buttons */
  --color-btn                   : var(--color-gray-10);
  --color-btn-text              : var(--color-text);
  --color-btn-hover             : var(--color-gray-11);
  --color-btn-hover-text        : var(--color-text);
  --color-btn-primary           : var(--color-1);
  --color-btn-primary-text      : var(--color-white);
  --color-btn-primary-hover     : var(--color-1-light);
  --color-btn-primary-hover-text: var(--color-white);
  --color-btn-stroke            : var(--color-text-dark);
  --color-btn-stroke-text       : var(--color-text-dark);
  --color-btn-stroke-hover      : var(--color-1-dark);
  --color-btn-stroke-hover-text : var(--color-white);

  /* preloader */
  --color-preloader-bg: var(--color-gray-10);
  --color-loader      : var(--color-3);
  --color-loader-light: var(--color-gray-14);

  /* others */
  --color-body-bg: var(--color-gray-1);
  --color-border : rgba(0, 0, 0, .1);
  --border-radius: 5px;
}

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

  /* spacing
   * base font size: 20px 
   * vertical space unit : 32px
   */
    --base-size     : 62.5%;
    --multiplier    : 1;
    --base-font-size: calc(2rem * 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));
    --vspace-5_5  : calc(5.5 * var(--space));
    --vspace-6    : calc(6 * var(--space));
    --vspace-6_5  : calc(6.5 * var(--space));
    --vspace-7    : calc(7 * var(--space));
    --vspace-7_5  : calc(7.5 * var(--space));
    --vspace-8    : calc(8 * var(--space));
    --vspace-8_5  : calc(8.5 * var(--space));
    --vspace-9    : calc(9 * var(--space));
    --vspace-9_5  : calc(9.5 * var(--space));
    --vspace-10   : calc(10 * var(--space));

  /* type scale
   * ratio 1        :2 | base: 20px
   * -------------------------------------------------------
   *
   * --text-huge-3    = (148.60px)
   * --text-huge-2    = (123.83px)
   * --text-huge-1    = (103.20px)
   * --text-display-3 = (86.00px)
   * --text-display-2 = (71.66px)
   * --text-display-1 = (59.72px)
   * --text-xxxl      = (49.77px)
   * --text-xxl       = (41.47px)
   * --text-xl        = (34.56px)
   * --text-lg        = (28.80px)
   * --text-md        = (24.00px)
   * --text-size      = (20.00px) BASE
   * --text-sm        = (16.67px)
   * --text-xs        = (13.89px)
   *
   * ---------------------------------------------------------
   */
    --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));
    --text-huge-1     : calc(var(--text-display-3) * var(--text-scale-ratio));
    --text-huge-2     : calc(var(--text-huge-1) * var(--text-scale-ratio));
    --text-huge-3     : calc(var(--text-huge-2) * var(--text-scale-ratio));

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

/* 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: .9375;
    }
}

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

  /* widths for rows and containers
   */
    --width-sixteen-cols: 1760px;
    --width-default     : 1280px;
    --width-wide        : 1600px;
    --width-wider       : 1800px;
    --width-narrow      : 1200px;
    --width-narrower    : 1000px;
    --width-narrowest   : 800px;
    --width-full        : 100%;
    --width-grid-max    : var(--width-default);

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

/* on large screen devices
 */
@media screen and (max-width: 1000px) {
    :root {
        --gutter: 2.2rem;
    }
}

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


/* ====================================================================
 * # CSS RESET
 *
 *
 * --------------------------------------------------------------------
 * http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
 * -------------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin        : 0;
    padding       : 0;
    border        : 0;
    font-size     : 100%;
    font          : var(--font-1);
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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


/* ===================================================================
 * # GRID v5.0.0
 *
 *
 * -------------------------------------------------------------------
 * - Grid system based on the flex display property.
 *
 * - 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.
 *
 * - On viewports 400px and below, all grid columns will stacked 
 *   vertically
 *
 * ------------------------------------------------------------------- */

/* row 
 */
.row {
    display  : flex;
    flex-flow: row wrap;
    width    : min(92%, var(--width-grid-max));
    margin   : 0 auto;
}

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

/* column
 */
.column {
    flex   : 1;
    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;
}

.row.row-center {
    align-items    : center;
    justify-content: center;
}

/* ------------------------- -------------------------------------------
 * ## extra large devices (1201px and above)
 * -------------------------------------------------------------------- */
.xl-1 {
    flex : none;
    width: 8.3333333333%;
}

.xl-2 {
    flex : none;
    width: 16.6666666667%;
}

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

.xl-4 {
    flex : none;
    width: 33.3333333333%;
}

.xl-5 {
    flex : none;
    width: 41.6666666667%;
}

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

.xl-7 {
    flex : none;
    width: 58.3333333333%;
}

.xl-8 {
    flex : none;
    width: 66.6666666667%;
}

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

.xl-10 {
    flex : none;
    width: 83.3333333333%;
}

.xl-11 {
    flex : none;
    width: 91.6666666667%;
}

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

/* --------------------------------------------------------------------
 * ## large devices (1001px to 1200px)
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .lg-1 {
        flex : none;
        width: 8.3333333333%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------
 * ## tablet devices (601px to 800px)  
 * -------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .tab-1 {
        flex : none;
        width: 8.3333333333%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------
 * ## small mobile devices (up to 400px)
 * -------------------------------------------------------------------- */

 /* stack columns vertically
 */
@media screen and (max-width: 400px) {
    .row .row {
        margin-left : 0;
        margin-right: 0;
    }

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

/* --------------------------------------------------------------------
 * ## additional column stackpoints 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
    .stack-on-900 {
        flex        : none;
        width       : 100%;
        margin-left : 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 700px) {
    .stack-on-700 {
        flex        : none;
        width       : 100%;
        margin-left : 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 550px) {
    .stack-on-550 {
        flex        : none;
        width       : 100%;
        margin-left : 0;
        margin-right: 0;
    }
}


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

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

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

p {
    font-size     : inherit;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

svg,
img,
video {
    max-width: 100%;
    height   : auto;
}

pre {
    overflow: auto;
}

/* Remove margins and paddings for common elements 
 */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin : 0;
    padding: 0;
}

/* Remove default styles for input elements 
 */
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;
}


/* ===================================================================
 * # 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);
    -webkit-clip-path: inset(50%);
    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-flex-center {
    align-items    : center;
    justify-content: center;
}

.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: 20px
 * -------------------------------------------------------------------
 *
 * --text-huge-3    = (148.60px)
 * --text-huge-2    = (123.83px)
 * --text-huge-1    = (103.20px)
 * --text-display-3 = (86.00px)
 * --text-display-2 = (71.66px)
 * --text-display-1 = (59.72px)
 * --text-xxxl      = (49.77px)
 * --text-xxl       = (41.47px)
 * --text-xl        = (34.56px)
 * --text-lg        = (28.80px)
 * --text-md        = (24.00px)
 * --text-size      = (20.00px) BASE
 * --text-sm        = (16.67px)
 * --text-xs        = (13.89px)
 *
 * -------------------------------------------------------------------- */

/* --------------------------------------------------------------------
 * ## base type styles
 * -------------------------------------------------------------------- */

/* montserrat ace regular */
@font-face {
  font-family: 'Montserrat Ace';
  src: url('../fonts/montserrat-ace-regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* saved by zero regular */
@font-face {
  font-family: 'Saved By Zero';
  src: url('../fonts/saved-by-zero-webfont.woff2') format('woff2'),
       url('../fonts/saved-by-zero-webfont.woff') format('woff'),
       url('../fonts/saved-by-zero.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



body {
    font-family: var(--font-2);
    font-size  : var(--base-font-size);
    font-weight: 400;
    line-height: var(--vspace-1);
    color      : var(--color-text);
}

/* links
 */
a{
    color     : var(--color-link);
    transition: all 0.3s ease-in-out;
}

a:focus,
a:hover,
a:active {
    color: var(--color-link-hover);
}

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

/* headings
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family           : var(--font-1);
    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);
}

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

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

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

    h1,
    .h1 {
        font-size  : var(--text-xxxl);
        line-height: calc(1.625 * var(--space));
    }
}

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

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: 0.25rem;
}

/* 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;
    color      : var(--color-text-dark);
}

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: "— ";
}

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-5);
    overflow-x: auto;
}

code {
    font-size    : var(--text-sm);
    line-height  : 1.6rem;
    margin       : 0 0.2rem;
    padding      : calc((var(--vspace-1) - 1.6rem) / 2 - 0.1rem) 0.7rem;
    white-space  : nowrap;
    background   : var(--color-gray-5);
    border       : 1px solid var(--color-gray-10);
    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: 0.1em;
    color         : var(--color-text-dark);
}

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

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

/* horizontal rule
 */
hr {
    border      : solid var(--color-border);
    border-width: 0.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: 0.3em;
}

/* --------------------------------------------------------------------
 * ## additional typography & helper classes
 * -------------------------------------------------------------------- */
.lead,
.attention-getter {
    font-family: var(--font-2);
    font-size  : var(--text-md);
    line-height: var(--vspace-1_25);
}
.attention-getter a {
  color: var(--color-1); /* choose any color you like */
  text-decoration: none; /* optional: remove underline */
}

.attention-getter a:hover {
  color: var(--color-2) ; /* color when hovering */
  text-decoration: underline; /* optional hover effect */
}
@media screen and (max-width: 800px) {

    .lead,
    .attention-getter {
        font-size  : calc(var(--text-size) * 1.1);
        line-height: calc(1.125 * var(--space));
    }
}

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

    .lead,
    .attention-getter {
        font-size  : var(--text-size);
        line-height: var(--vspace-1);
    }
}

.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;
}

li {
    display: list-item;
}

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

ul li {
    padding-left: 0.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 0.8rem;
    position  : relative;
}

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

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

dt strong {
    color: var(--color-1);
}

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) ". ";
}

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

/* 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%;
}

/* --------------------------------------------------------------------
 * ## 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 id="loader" class="dots-fade">
 *         <div></div>
 *         <div></div>
 *         <div></div>
 *     </div>
 * </div>
 *
 * - loader class:
 * <dots-fade | dots-jump | dots-pulse>
 *
 * ------------------------------------------------------------------- */
#preloader {
    position       : fixed;
    display        : flex;
    flex-flow      : row wrap;
    justify-content: center;
    align-items    : center;
    background     : var(--color-preloader-bg);
    z-index        : 500;
    height         : 100vh;
    width          : 100%;
    opacity        : 1;
    overflow       : hidden;
}

.no-js #preloader {
    display: none;
}

#loader {
    position: relative;
    width   : 4px;
    height  : 4px;
    padding : 0;
    display : inline-block;
}

#loader>div {
    content      : "";
    background   : var(--color-loader);
    width        : 4px;
    height       : 4px;
    position     : absolute;
    top          : 0;
    left         : 0;
    border-radius: 50%;
}

#loader>div:nth-of-type(1) {
    left: 15px;
}

#loader>div:nth-of-type(3) {
    left: -15px;
}

/* dots jump */
.dots-jump>div {
    animation      : dots-jump 1.2s infinite ease;
    animation-delay: 0.2s;
}

.dots-jump>div:nth-of-type(1) {
    animation-delay: 0.4s;
}

.dots-jump>div:nth-of-type(3) {
    animation-delay: 0s;
}

@keyframes dots-jump {
    0% {
        top: 0;
    }

    40% {
        top: -6px;
    }

    80% {
        top: 0;
    }
}

/* dots fade */
.dots-fade>div {
    animation      : dots-fade 1.6s infinite ease;
    animation-delay: 0.4s;
}

.dots-fade>div:nth-of-type(1) {
    animation-delay: 0.8s;
}

.dots-fade>div:nth-of-type(3) {
    animation-delay: 0s;
}

@keyframes dots-fade {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
    }

    80% {
        opacity: 1;
    }
}

/* dots pulse */
.dots-pulse>div {
    animation      : dots-pulse 1.2s infinite ease;
    animation-delay: 0.2s;
}

.dots-pulse>div:nth-of-type(1) {
    animation-delay: 0.4s;
}

.dots-pulse>div:nth-of-type(3) {
    animation-delay: 0s;
}

@keyframes dots-pulse {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.3);
    }

    80% {
        transform: scale(1);
    }
}

/* ------------------------------------------------------------------- 
 * ## page loaded
 * ------------------------------------------------------------------- */
.ss-loaded #preloader {
    opacity   : 0;
    visibility: hidden;
    transition: all 0.6s 0.9s ease-in-out;
}

.ss-loaded #preloader #loader {
    opacity   : 0;
    transition: opacity 0.6s ease-in-out;
}


/* ===================================================================
 * # 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);
    border             : 0;
    outline            : 0;
    color              : var(--color-text-light);
    font-family        : var(--font-1);
    font-size          : calc(var(--text-size) * 0.8);
    line-height        : var(--input-line-height);
    max-width          : 100%;
    background         : transparent;
    border-bottom      : 1px solid var(--color-text-light);
    transition         : all 0.3s ease-in-out;
}

.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 rgb(20, 20, 20);
    border-right    : 1px solid rgb(20, 20, 20);
    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-1);
}

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
 * ------------------------------------------------------------------- */
::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color  : var(--color-placeholder);
    opacity: 1;
}

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

/* ------------------------------------------------------------------- 
 * ## 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);
    -webkit-transition     : background-color 5000s ease-in-out 0s;
    transition             : background-color 5000s ease-in-out 0s;
}


/* ===================================================================
 * # 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            : 500;
    font-size              : calc(var(--text-size) * 0.6);
    text-transform         : uppercase;
    letter-spacing         : 0.3em;
    height                 : var(--btn-height);
    line-height            : calc(var(--btn-height) - 4px);
    padding                : 0 3.6rem;
    margin                 : 0 0.4rem var(--vspace-0_5) 0;
    color                  : var(--color-btn-text);
    text-decoration        : none;
    text-align             : center;
    white-space            : nowrap;
    cursor                 : pointer;
    transition             : all 0.3s;
    background-color       : var(--color-btn);
    border                 : 2px solid var(--color-btn);
    border-radius          : 0.5rem;
    -webkit-font-smoothing : antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.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 {
    background-color: var(--color-btn-hover);
    border-color    : var(--color-btn-hover);
    color           : var(--color-btn-hover-text);
    outline         : 0;
}

/* 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);
    color       : var(--color-btn-primary-text);
}

.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);
    font-size   : var(--text-xs);
}

.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;
    font-size  : var(--text-sm);
}

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      : 0.2rem 1.2rem;
    height       : var(--pgn-num-height);
    margin       : 0.2rem 0.2rem;
    color        : var(--color-text-dark);
    border-radius: var(--border-radius);
    transition   : all, 0.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, 0.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, 0.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      : var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
    margin-bottom: var(--vspace-1);
    border-radius: var(--border-radius);
    font-family  : var(--font-1);
    font-weight  : 500;
    font-size    : var(--text-sm);
    line-height  : var(--vspace-0_75);
    opacity      : 1;
    visibility   : visible;
    position     : relative;
}

.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   : 1px;
    height  : 12px;
    position: absolute;
    top     : 0;
    left    : 5px;
}

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

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

.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 0.5s;
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
    list-style: none;
    margin    : var(--vspace-2) 0 var(--vspace-1);
}

.skill-bars li {
    height       : 0.4rem;
    background   : var(--color-gray-5);
    width        : 100%;
    margin-bottom: calc(var(--vspace-2) - 0.4rem);
    padding      : 0;
    position     : relative;
}

.skill-bars li strong {
    position      : absolute;
    left          : 0;
    top           : calc(var(--vspace-1) * 1.25 * -1);
    font-family   : var(--font-1);
    font-weight   : 600;
    color         : var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size     : var(--text-xs);
    line-height   : var(--vspace-0_75);
}

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

.skill-bars li .progress span {
    display      : block;
    font-family  : var(--font-1);
    color        : white;
    font-size    : 1rem;
    line-height  : 1;
    background   : var(--color-text);
    padding      : var(--vspace-0_25);
    border-radius: 4px;
    position     : absolute;
    right        : 0;
    top          : calc((var(--vspace-1) + 0.8rem) * -1);
}

.skill-bars li .progress span::after {
    position        : absolute;
    left            : 50%;
    bottom          : -10px;
    margin-left     : -5px;
    width           : 0;
    height          : 0;
    border          : 5px solid transparent;
    border-top-color: var(--color-text, var(--color-black));
    content         : "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.skill-bars li .percent100 {
    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);
}

.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
 *
 *
 * ------------------------------------------------------------------- */
.width-sixteen-col {
    --width-grid-max: var(--width-sixteen-cols);
}

.width-narrower {
    --width-grid-max: var(--width-narrower);
}

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

.text-pretitle {
    font-family   : var(--font-1);
    font-weight   : 600;
    font-size     : var(--text-size);
    line-height   : var(--vspace-1);
    /* text-transform: uppercase; */
    letter-spacing: 0.15em;
    color         : var(--color-1);
    transform     : translate(0.2em, 0);
    margin-top    : 0;
}

.text-display-title {
    font-size     : var(--text-display-1);
    line-height   : 1.0717;
    letter-spacing: -0.015em;
    margin-top    : 0;
    margin-bottom : var(--vspace-1_5);
}

/* ------------------------------------------------------------------- 
 * ## section header
 * ------------------------------------------------------------------- */
.section-header {
    display      : flex;
    align-items  : flex-start;
    margin-bottom: var(--vspace-3_5);
    position     : relative;
}

.section-header .text-display-title {
    padding-top  : 0.5em;
    margin-bottom: 0;
    position     : relative;
}

.section-header::before {
    content       : attr(data-num);
    font-family   : var(--font-1);
    font-weight   : 600;
    font-size     : 10em;
    letter-spacing: -0.05em;
    line-height   : 1;
    color         : var(--color-gray-11);
    margin-right  : var(--vspace-0_5);
    position      : absolute;
    top           : -0.25em;
    left          : -0.1em;
    opacity       : 0.5;
}

.section-header.light-on-dark .text-display-title {
    color: white;
}

.section-header.light-on-dark::before {
    color: rgba(255, 255, 255, 0.15);
}

/* ------------------------------------------------------------------- 
 * ## social list
 * ------------------------------------------------------------------- */
.social-list {
    display    : flex;
    align-items: center;
    list-style : none;
    margin     : 0;
}

.social-list li {
    padding-left: 0;
    margin-right: 0.8rem;
}

.social-list li:last-child {
    margin-right: 0;
}

.social-list a {
    display    : flex;
    align-items: center;
}

.social-list a:focus svg path,
.social-list a:focus svg circle,
.social-list a:hover svg path,
.social-list a:hover svg circle {
    fill: var(--color-white);
}

.social-list svg {
    height: var(--vspace-0_875);
    width : var(--vspace-0_875);
}

.social-list svg path,
.social-list svg circle {
    fill      : rgba(255, 255, 255, 0.5);
    transition: all 0.5s;
}

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

.swiper-container .swiper-pagination-bullet {
    width     : 8px;
    height    : 8px;
    background: var(--color-gray-11);
    opacity   : 1;
}

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

.swiper-container .swiper-pagination-bullet:only-child {
    visibility: hidden;
}

/* ------------------------------------------------------------------- 
 * ## glightbox overrides
 * ------------------------------------------------------------------- */
.glightbox-container a {
    font-weight  : 500 !important;
    color        : var(--color-1);
    border-bottom: 1px dotted var(--color-1);
}

.glightbox-container .gslide-inner-content {
    width      : min(100%, 1050px);
    padding-top: 10vh;
}

.glightbox-container .gslide-description {
    background: rgb(0, 0, 0);
    width     : 100%;
    text-align: center;
}

.glightbox-container .gdesc-inner {
    padding: var(--vspace-1_25) var(--vspace-0_75) var(--vspace-2);
}

.glightbox-container .gslide-title,
.glightbox-container .gslide-desc {
    width : min(100%, 600px);
    margin: 0 auto;
}

.glightbox-container .gslide-title {
    font-family  : var(--font-1);
    font-weight  : 400;
    font-size    : 1.7rem !important;
    color        : white;
    margin-top   : 0;
    margin-bottom: var(--vspace-0_375);
}

.glightbox-container .gslide-desc {
    font-family: var(--font-1);
    font-weight: 300;
    font-size  : 1.4rem;
    line-height: 1.571;
    color      : rgba(255, 255, 255, 0.5) !important;
}

.glightbox-container .gprev,
.glightbox-container .gnext,
.glightbox-container .gclose {
    margin : 0;
    padding: 0;
}

.glightbox-container .gprev svg,
.glightbox-container .gnext svg,
.glightbox-container .gclose svg {
    width: 24px;
}

.glightbox-container .goverlay {
    background: #000;
}

.glightbox-mobile .gslide-inner-content {
    padding-top: 0;
}

.glightbox-mobile .glightbox-container .gslide-desc a,
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
    color: var(--color-link);
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
    opacity: 1;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * project-wide and shared styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
    .section-header .text-display-title {
        font-size: var(--text-xxxl);
    }

    .section-header::before {
        font-size: 8.6em;
    }
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
}

.section-header .attention-getter {
  font-size: 1.6rem;
  color: #555;
  max-width: 700px;  /* ensures text doesn't stretch too wide */
  margin: 0 auto;    /* centers the description */
  line-height: 1.6;
}

@media screen and (max-width: 800px) {
    .testimonials__slide {
        text-align: center;
    }

    .testimonials__cite {
        text-align: left;
    }
}

@media screen and (max-width: 500px) {
    .text-pretitle {
        font-size  : var(--text-size);
        line-height: var(--vspace-0_75);
    }

    .section-header {
        margin-bottom: var(--vspace-2_5);
    }

    .section-header .text-display-title {
        font-size: var(--text-xxl);
    }

    .section-header::before {
        font-size: 7em;
        left     : 0;    }
}


/* ===================================================================
 * # GRID-BASED LAYOUTS
 *
 *
 * ------------------------------------------------------------------- */

/* --------------------------------------------------------------------
 * ## grid block
 * -------------------------------------------------------------------- */
.grid-block {
    --col                : 12;
    --grid-gap-h         : calc(var(--gutter) * 2);
    --grid-gap-v         : var(--vspace-1);
    display              : grid;
    grid-template-columns: repeat(var(--col), [col] 1fr);
    -moz-column-gap      : var(--grid-gap-h);
    column-gap           : var(--grid-gap-h);
    row-gap              : var(--grid-gap-v);
}

.grid-block.no-h-gutter {
    --grid-gap-h: 0;
}

.grid-block.no-v-gutter {
    --grid-gap-h: 0;
}

.grid-block.grid-16 {
    --col: 16;
}

.grid-block .grid-full {
    grid-column: 1/-1;
}

/* ------------------------------------------------------------------- 
 * ## list grid
 * ------------------------------------------------------------------- */
.grid-list-items {
    --gap                : calc(var(--gutter) * 2);
    --min-width          : 300px;
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-width), 100%), 1fr));
    -moz-column-gap      : var(--gap);
    column-gap           : var(--gap);
}

.grid-list-items__item {
    margin-bottom: var(--vspace-1);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * grid layouts
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {

    .grid-block,
    .grid-block.grid-16 {
        --col: 8;
    }
}

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

    .grid-block,
    .grid-block.grid-16 {
        --col: 4;
    }
}


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


/* ===================================================================
 * # SITE HEADER
 *
 *
 * ------------------------------------------------------------------- */
.s-header {
    --header-height : 72px;
    --logo-width    : 10.2rem;
    --width-grid-max: calc(var(--width-sixteen-cols) - calc(var(--gutter) * 2));
    --box-shadow    : 0 1px 1px rgba(0, 0, 0, 0.02),
                      0 2px 2px rgba(0, 0, 0, 0.02),
                      0 4px 4px rgba(0, 0, 0, 0.02),
                      0 8px 8px rgba(0, 0, 0, 0.02);
    --box-shadow-2: 0 2px 2px rgba(0, 0, 0, 0.03),
                    0 4px 4px rgba(0, 0, 0, 0.03),
                    0 8px 8px rgba(0, 0, 0, 0.03),
                    0 16px 16px rgba(0, 0, 0, 0.03);
    z-index         : 100;
    background-color: transparent;
    height          : var(--header-height);
    width           : 100%;
    position        : absolute;
    top             : min(var(--vspace-0_75), 4vh);
    left            : 0;
}

.s-header.offset {
    transform          : translateY(-100%);
    transition-property: transform, background-color;
    transition-duration: 0.5s;
}

.s-header.scrolling {
    transform: translateY(0);
}

.s-header.sticky {
    opacity         : 0;
    visibility      : hidden;
    background-color: #fff;
    box-shadow      : var(--box-shadow);
    border          : none;
    border-bottom   : 1px solid rgba(255, 255, 255, 0.03);
    position        : fixed;
    top             : 0;
    left            : 0;
    height: auto;
}

.s-header.sticky .s-header__inner {
    --width-grid-max: var(--width-default);
    background-color: transparent;
    border          : none;
    box-shadow      : none;
}

.s-header.sticky.scrolling {
    opacity   : 1;
    visibility: visible;
}

.s-header__inner {
    display         : flex;
    align-items     : center;
    justify-content : space-between;
    background-color: #fff;
    border          : 1px solid rgba(0, 0, 0, 0.05);
    padding         : 0 calc(var(--gutter) * 2); /* more padding on sides */
    padding-right   : calc(var(--gutter) * 4);   /* extra margin on right */
    box-shadow      : var(--box-shadow);
    height          : auto;
    min-height      : 80px;
    border-radius   : 24px; /* more rounded corners */
}

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

/* --------------------------------------------------------------------
 * ## logo
 * -------------------------------------------------------------------- */

.s-header__logo {
    z-index    : 3;
    line-height: 1;
    transform: none;
    width :auto;
    height :auto;
}

.s-header__logo a {
    display: block;
    margin : 0;
    padding: 0;
    outline: 0;
    border : none;
} 

.s-header__logo svg {
    width: 60px;
  height: 60px;     
}

/* --------------------------------------------------------------------
 * ## main navigation
 * -------------------------------------------------------------------- */
.s-header__nav {
    margin-left: var(--vspace-1);
}

.s-header__menu-links {
    list-style: none;
    display   : inline-flex;
    flex-flow : row nowrap;
    margin    : 0;
    padding   : 0;
}

.s-header__menu-links li {
    padding-left: 0;
}


.s-header__menu-links .current a {
    color: black;
}
/* Contact button inside navbar */
.s-header__menu-links li:last-child a {
    background-color   : var(--color-1);   /* your green */
    color              : var(--color-white);
    font-weight        : 600;
    padding            : 0.5rem 1.2rem;   /* match other links’ line height */
    border-radius      : 6px;
    display            : inline-flex;     /* align text vertically */
    align-items        : center;
    justify-content    : center;
    height             : 100%;            /* keep same height as siblings */
    line-height        : 1.5;             /* ensure consistent vertical rhythm */
    margin-left        : 1rem;            /* add spacing from previous link */
    transition         : background-color 0.3s ease;
}

.s-header__menu-links li:last-child a:hover {
    background-color: var(--color-1-light);
}

.s-header__menu-links li:last-child a:hover {
    background-color: var(--color-1-light); /* lighter shade on hover */
}

/* Make navlinks bigger */
.s-header__menu-links a {
    display            : block;
    font-family        : var(--font-1);
    font-weight        : 500;
    font-size          : 1.7rem;  /* bigger than 1.5rem */
    line-height        : var(--vspace-1);
    color              : var(--color-gray-14);
    padding            : 0 1.4rem; /* a little more padding */
    transition-property: color, background-color;
}
/* --------------------------------------------------------------------
 * ## mobile menu toggle
 * -------------------------------------------------------------------- */
.s-header__menu-toggle {
    --toggle-block-width: 44px;
    --toggle-line-width : 28px;
    --toggle-line-height: 1px;
    display             : none;
    width               : var(--toggle-block-width);
    height              : var(--toggle-block-width);
    position            : absolute;
    top                 : calc((var(--header-height) - var(--toggle-block-width)) / 2);
    right               : calc(var(--gutter) * 2 - 0.8rem);
}

.s-header__menu-toggle span {
    display         : block;
    background-color: white;
    width           : var(--toggle-line-width);
    height          : var(--toggle-line-height);
    margin-top      : -1px;
    font            : 0/0 a;
    text-shadow     : none;
    color           : transparent;
    transition      : all 0.5s;
    position        : absolute;
    right           : calc((var(--toggle-block-width) - var(--toggle-line-width)) / 2);
    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      : all 0.5s;
    position        : absolute;
    left            : 0;
}

.s-header__menu-toggle span::before {
    top: -10px;
}

.s-header__menu-toggle span::after {
    bottom: -10px;
}

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

.s-header__menu-toggle.is-clicked span::before,
.s-header__menu-toggle.is-clicked span::after {
    background-color: white;
}

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

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

/* -------------------------------------------------------------------
 * responsive:
 * site-header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
    .s-header {
        --header-height: auto;
        top            : 0;
    }

    .s-header.sticky {
        box-shadow: var(--box-shadow);
        border    : none;
        background: white;
    }

    .s-header__inner {
        width        : 100%;
        margin       : 0;
        padding      : 0 var(--gutter);
        border       : 1px solid rgba(0, 0, 0, 0.05);
        box-shadow   : var(--box-shadow);
        border-radius: 0; /* remove rounding */
    }

    .s-header__block {
        width  : 100%;
        height : auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: none;
        box-shadow: none;
    }

    .s-header__logo {
        position : relative;
        left     : 0;
        top      : auto;
        transform: none;
    }

    .s-header__logo img {
        height: 60px;
        width : auto;
    }

    .s-header__nav {
        display         : block;
        width           : 100%;
        transform       : scaleY(0);
        transform-origin: top center;
        background-color: white;
        box-shadow      : var(--box-shadow-2);
        border-radius   : 0; /* remove rounding */
        padding-top     : var(--vspace-1_25);
        padding-right   : calc(var(--gutter) * 2);
        padding-left    : calc(var(--gutter) * 2);
        padding-bottom  : var(--vspace-1_5);
        margin          : 0;
        position        : absolute;
        top             : 100%;
        left            : 0;
    }

    .s-header__menu-links {
        margin    : 0;
        transform : translateY(-1rem);
        opacity   : 0;
        visibility: hidden;
        display   : block;
        text-align: center;
    }

    .s-header__menu-links a {
        font-size : 1.4rem;   /* larger for mobile */
        font-weight: 600;
        padding   : 1rem 0;
        display   : block;
    }

    .s-header__menu-links li:last-child a {
        background-color: var(--color-1);
        color           : white;
        font-weight     : 600;
        margin-top      : 1rem;
        padding         : 1rem;
        border-radius   : 4px;
        font-size       : 1.5rem;
    }

    .s-header__menu-links li:last-child a:hover {
        background-color: var(--color-1-light);
    }

    .s-header__contact {
        margin-top: var(--vspace-1);
    }

    .s-header__contact .btn {
        width : 100%;
        margin: 0;
        border-radius: 0; /* square button */
    }

    .s-header__menu-toggle {
        display: block;
        z-index: 200;
    }

    /* Make burger lines black */
    .s-header__menu-toggle span,
    .s-header__menu-toggle span::before,
    .s-header__menu-toggle span::after {
        background-color: black;
    }

    .menu-is-open .s-header__nav {
        transform       : scaleY(1);
        transition      : transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-delay: 0s;
    }

    .menu-is-open .s-header__menu-links,
    .menu-is-open .s-header__contact {
        transform       : translateY(0);
        opacity         : 1;
        visibility      : visible;
        transition      : all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-delay: 0.2s;
    }
}

@media screen and (max-width: 600px) {
    .s-header__logo img {
        height: 50px;
    }

    .s-header__menu-toggle {
        right: calc(var(--gutter) * 2);
    }

    .s-header__nav {
        padding-left : calc(var(--gutter) * 2);
        padding-right: calc(var(--gutter) * 2);
    }
}

@media screen and (max-width: 400px) {
    .s-header__menu-toggle {
        right: calc(var(--gutter) * 1.5);
    }
}


/* ===================================================================
 * # INTRO
 *
 *
 * ------------------------------------------------------------------- */
.s-intro {
    --content-padding-top   : max(20rem, 18vh);
    --content-padding-bottom: 8rem;
    --content-min-height    : calc(var(--vspace-1) * 27);
    z-index                 : 2;
    background-color        : var(--color-gray-10);
    width                   : 100%;
    height                  : max(var(--content-min-height), 100vh);
    overflow                : hidden;
    position                : relative;
}

/* --------------------------------------------------------------------
 * ## intro content
 * -------------------------------------------------------------------- */
.s-intro__content {
    z-index       : 2;
    align-items   : flex-end;
    height        : 100%;
    padding-top   : var(--content-padding-top);
    padding-bottom: var(--content-padding-bottom);
    position      : relative;
}

.s-intro__content-text {
    z-index    : 2;
    grid-column: 1/span 8;
    margin-top: 1rem;
}

.s-intro__content-pretitle {
    font-family: 'Montserrat Ace', sans-serif;
    font-weight  : 600;
    margin-bottom: var(--vspace-0_125);
    color        : var(--color-1);
}

.s-intro__content-title {
    font-family: 'Saved By Zero', cursive;
    font-size     : clamp(4rem, 6vw, 8.8rem); /* always larger */
    line-height   : 1.05;
    letter-spacing: -0.025em;
    margin-top    : 0;
    margin-bottom : 1rem; /*tighter spacing*/
    font-weight   : 800;
    text-transform: uppercase;
}

.s-intro__content-title-sub {
    font-family: 'Montserrat Ace', sans-serif;
    font-size     : clamp(1.8rem, 2.625vw, 3.3rem); /* always smaller */
    line-height   : 1.2;
    letter-spacing: -0.015em; /* lighter tracking */
    margin-top    : 0;
    margin-bottom : var(--vspace-1_25);
    font-weight   : 400;
}

.founders-title {
  font-family: var(--font-1);  
  font-weight: 600;
  text-transform: none;
}

.s-intro__content-title-sub .veda {
  font-family: 'Saved By Zero', cursive;
  font-weight: 800;
  text-transform: uppercase;
}

.s-intro__content-title-sub .tech {
  font-family: 'Montserrat Ace', sans-serif;
  font-weight: 400;
}

.s-intro__content-btns {
    --color-btn           : var(--color-text-dark);
    --color-btn-text      : var(--color-white);
    --color-btn-hover     : var(--color-1);
    --color-btn-hover-text: var(--color-white);
    margin-top            : var(--vspace-2);
}

.s-intro__content-btns .btn {
    margin-right: var(--vspace-0_375);
}

.s-intro__content-btns .btn:last-child {
    margin-right: 0;
}

.s-intro__content-media {
    position: absolute;
    top     : 0;
    right   : 0;
    bottom  : 0;
    left    : 50%;
}

.s-intro__content-media::before {
    display       : block;
    content       : "";
    position      : absolute;
    top           : 0;
    left          : 0;
    right         : 0;
    bottom        : 0;
    width         : 100%;
    height        : 100%;
    background    : rgba(0, 0, 0, 0);
    pointer-events: none;
}

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

.s-intro__content-media .hero-wave-svg {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    display: block;
    pointer-events: none; 
}

.s-intro__content-media svg {
  preserveAspectRatio: none; 
}


/* --------------------------------------------------------------------
 * ## intro btn cv download
 * -------------------------------------------------------------------- */
.s-intro__btn-download {
    --color-btn-stroke           : white;
    --color-btn-stroke-text      : white;
    --color-btn-stroke-hover     : white;
    --color-btn-stroke-hover-text: var(--color-text-dark);
    --hline-width                : min(16rem, 8vw);
    z-index                      : 2;
    position                     : absolute;
    bottom                       : var(--content-padding-bottom);
    left                         : calc(50% + var(--hline-width) / 2);
}

.s-intro__btn-download .btn--stroke {
    position: relative;
}

.s-intro__btn-download .btn--stroke::before {
    content         : "";
    display         : block;
    height          : 2px;
    width           : var(--hline-width);
    background-color: white;
    position        : absolute;
    top             : calc(50% - 2px);
    left            : calc(var(--hline-width) * -1);
}

/* --------------------------------------------------------------------
 * ## intro social
 * -------------------------------------------------------------------- */
.s-intro__social {
    z-index : 2;
    display : block;
    position: absolute;
    bottom  : calc(var(--vspace-2) + var(--vspace-1_75) + 12rem);
    right   : calc(var(--gutter) + var(--vspace-1_25));
}

.s-intro__social li {
    padding-right: 0;
    margin-right : 0;
    margin-bottom: var(--vspace-0_625);
}

.s-intro__social svg {
    height: var(--vspace-0_75);
    width : var(--vspace-0_75);
}

.s-intro__social svg path,
.s-intro__social svg circle {
    fill: rgb(255, 255, 255);
}

/* --------------------------------------------------------------------
 * ## intro scroll down
 * -------------------------------------------------------------------- */
.s-intro__scroll-down {
    --line-length: 8rem;
    z-index      : 2;
    position     : absolute;
    bottom       : var(--vspace-2);
    right        : calc(var(--gutter) + var(--vspace-0_75));
}

.s-intro__scroll-down::before {
    content         : "";
    display         : block;
    height          : var(--line-length);
    width           : 1px;
    background-color: rgba(255, 255, 255, 0.5);
    position        : absolute;
    top             : calc(var(--line-length) * -1 - var(--vspace-1));
    left            : 50%;
}

body.founders-page .s-intro__scroll-down::before {
  display: none !important;
}

.s-intro__scroll-down a {
    display    : inline-flex;
    align-items: center;
    color      : var(--color-3);
}

.s-intro__scroll-down span {
    display    : block;
    font-family: var(--font-1);
    font-size  : var(--text-size);
    font-weight: 300;
    line-height: var(--vspace-2);
}

.s-intro__scroll-down .scroll-icon {
    display        : flex;
    justify-content: center;
    align-items    : center;
    height         : var(--vspace-1_75);
    width          : var(--vspace-1_75);
    border-radius  : 50%;
    border         : 2px solid white;
}

.s-intro__scroll-down svg {
    height: calc(0.3 * var(--space));
    width : calc(0.3 * var(--space));
}

.s-intro__scroll-down svg path {
    fill: white;
}

/* --------------------------------------------------------------------
 * ## intro transitions
 * -------------------------------------------------------------------- */
.s-header__inner,
.s-intro__content-media,
.s-intro__content-title,
.s-intro__content-title-sub,
.s-intro__content-pretitle,
.s-intro__content-btns,
.s-intro__btn-download,
.s-intro__social,
.s-intro__scroll-down {
    transition-timing-function: cubic-bezier(0.28, 0.12, 0.22, 1);
    transition-duration       : 0.6s;
    transition-delay          : 0s;
    opacity                   : 0;
}


.s-header__inner,
.s-intro__content-media,
.s-intro__social,
.s-intro__scroll-down {
    transition-property: opacity;
}

.s-intro__content-pretitle {
    transition-property: opacity, transform;
    transform          : translate(0.2em, 150px);
}

.s-intro__content-title,
.s-intro__content-btns {
    transition-property: opacity, transform;
    transform          : translateY(150px);
}

.s-intro__content-title-sub{
    transition-property: opacity, transform;
    transform          : translateY(150px);
}
.s-intro__btn-download {
    transition-property: opacity, transform;
    transform          : translateX(-150px);
}

.no-js .s-header__inner,
.no-js .s-intro__content-media,
.no-js .s-intro__social,
.no-js .s-intro__scroll-down,
.ss-show .s-header__inner,
.ss-show .s-intro__content-media,
.ss-show .s-intro__social,
.ss-show .s-intro__scroll-down {
    opacity: 1;
}

.no-js .s-intro__content-pretitle,
.ss-show .s-intro__content-pretitle {
    opacity  : 1;
    transform: translate(0.2em, 0);
}

.no-js .s-intro__content-title,
.no-js .s-intro__content-btns,
.ss-show .s-intro__content-title,
.ss-show .s-intro__content-btns,
.no-js .s-intro__content-title-sub,
.ss-show .s-intro__content-title-sub{
    opacity  : 1;
    transform: translateY(0);
}

.no-js .s-intro__btn-download,
.ss-show .s-intro__btn-download {
    opacity  : 1;
    transform: translateX(0);
}

.no-js .s-intro__content-media img,
.ss-show .s-intro__content-media img {
    transition-delay: 0.15s;
}

.no-js .s-intro__content-pretitle,
.ss-show .s-intro__content-pretitle {
    transition-delay: 0.3s;
}

.no-js .s-intro__content-title,
.ss-show .s-intro__content-title {
    transition-delay: 0.45s;
}

.no-js .s-intro__content-title-sub,
.ss-show .s-intro__content-title-sub {
    transition-delay: 0.55s;
}
.no-js .s-intro__content-btns,
.ss-show .s-intro__content-btns {
    transition-delay: 0.6s;
}

.no-js .s-intro__btn-download,
.ss-show .s-intro__btn-download {
    transition-delay: 0.75s;
}

.no-js .s-intro__social,
.no-js .s-intro__scroll-down,
.ss-show .s-intro__social,
.ss-show .s-intro__scroll-down {
    transition-delay: 1.2s;
}

.no-js .s-header__inner,
.ss-show .s-header__inner {
    transition-delay: 1.5s;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
    .s-intro__content-pretitle {
        font-size  : var(--text-sm);
        line-height: var(--vspace-0_75);
    }

    .s-intro__social {
        right: calc(var(--gutter) + var(--vspace-0_5));
    }

    .s-intro__scroll-down {
        right: var(--gutter);
    }
}

@media screen and (max-width: 1200px) {
    .s-intro__content-btns {
        padding-right: min(2rem, 2vw);
    }

    .s-intro__content-btns .btn {
        width       : 100%;
        margin-right: 0;
    }

    .s-intro__btn-download {
        --hline-width: min(4rem, 4vw);
        left         : calc(50% + var(--hline-width) - 2px);
    }
}

@media screen and (max-width: 1080px) {
    .s-intro {
        --content-padding-top   : max(12rem, 16vh);
        --content-padding-bottom: 9.6rem;
    }

    .s-intro__content {
        padding-bottom: var(--vspace-0_75);
        align-items   : center;
    }

    .s-intro__content-text {
        grid-column: 1/-1;
        text-align : center;
        max-width  : 70vw;
        margin     : 0 auto;
    }

    .s-intro__content-title {
        font-size: clamp(4.4rem, 9vw, 8.8rem);
        color    : black;
        font-weight: 800;
        text-transform: uppercase;
    }

    .s-intro__content-title-sub {
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        color    : black;
        font-weight: 400;
    }
    .s-intro__content-title br {
        display: none;
    }

    .s-intro__content-btns {
        --color-btn                  : black;
        --color-btn-text             : white;
        --color-btn-hover            : var(--color-1);
        --color-btn-hover-text       : white;
        --color-btn-stroke           : black;
        --color-btn-stroke-text      : black;
        --color-btn-stroke-hover     : white;
        --color-btn-stroke-hover-text: var(--color-text-dark);
        padding-right                : 0;
        max-width                    : 400px;
        margin                       : var(--vspace-1) auto 0;
      }

      

    .s-intro__content-btns .btn {
        margin-right: 0;
    }

    .s-intro__content-media {
        left: 0;
    }

    .s-intro__content-media::before {
        opacity: 0.2;
    }

    .s-intro__social {
        right: calc(2.4rem + var(--vspace-0_375));
    }

    .s-intro__social svg {
        height: var(--vspace-0_625);
        width : var(--vspace-0_625);
    }

    .s-intro__btn-download {
        --hline-width: 8vw;
        left         : var(--hline-width);
        bottom       : var(--vspace-0_75);
    }

    .s-intro__btn-download .btn--stroke {
        --btn-height: var(--vspace-1_25);
        background  : transparent !important;
        border      : 2px solid transparent;
        padding     : 0 2.4rem;
    }

    .s-intro__btn-download .btn--stroke::before {
        height : 1px;
        opacity: 0.5;
        top    : calc(50% - 1px);
    }

    .s-intro__btn-download .btn--stroke::after {
        content         : "";
        display         : block;
        background-color: var(--color-1);
        height          : 2px;
        width           : 0;
        bottom          : 0;
        left            : 2rem;
        transition      : width 0.2s ease-in-out;
    }

    .s-intro__btn-download .btn--stroke:hover {
        color: black;
    }

    .s-intro__btn-download .btn--stroke:hover::after {
        width: 100%;
    }

    .s-intro__scroll-down {
        bottom: var(--vspace-1);
        right : 2.4rem;
    }

    .s-intro__scroll-down .scroll-icon {
        height: var(--vspace-1_5);
        width : var(--vspace-1_5);
    }
}

@media screen and (max-width: 600px) {
    .s-intro__content-text {
        max-width: 80vw;
    }

    .s-intro__social {
        display: none;
    }

    .s-intro__scroll-down {
        bottom: var(--vspace-1_25);
    }

    .s-intro__scroll-down::before {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .s-intro {
        --content-padding-top: max(10rem, 10vh);
    }
}


/* ===================================================================
 * # ABOUT
 *
 *
 * ------------------------------------------------------------------- */
.s-about {
    padding-top: var(--vspace-7);
    color      : var(--color-3);
    position: relative;
}

/* --------------------------------------------------------------------
 * ## about blocks
 * -------------------------------------------------------------------- */
.s-about__blocks {
    margin-top: var(--vspace-3);
}

.s-about__blocks .s-about__block-title {
    margin-top   : 0;
    margin-bottom: var(--vspace-1);
    padding-left : 1.45rem;
    position     : relative;
}

.s-about__blocks .s-about__block-title::before {
    content         : "";
    height          : 0.7em;
    width           : 3px;
    background-color: var(--color-1);
    transform       : translateY(-50%);
    position        : absolute;
    left            : 0;
    top             : 50%;
}

.s-about__list {
    list-style : none;
    font-size  : calc(var(--text-size) * 1.05);
    margin-left: 0;
}

.s-about__list a {
    color: var(--color-text);
}

.s-about__list li {
    font-weight  : 500;
    margin-bottom: var(--vspace-0_625);
    padding-left : 0;
}

.s-about__list span {
    display    : block;
    font-size  : var(--text-sm);
    font-weight: 300;
    line-height: 1.2;
    color      : var(--color-text-light) !important;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-about {
        padding-top: var(--vspace-5);
    }
}



/* ===================================================================
 * # WORKS
 *
 *
 * ------------------------------------------------------------------- */
.s-works {
    padding-top   : var(--vspace-6);
    padding-bottom: var(--vspace-1);
}

.folio-entries {
    --width-grid-max: 1400px;
    margin-top      : var(--vspace-0_5);
}

/* ------------------------------------------------------------------- 
 * ## folio entries 
 * ------------------------------------------------------------------- */
.folio-entries .entry {
    flex    : none;
    width   : 50%;
    margin  : 0;
    padding : 0;
    overflow: hidden;
    position: relative;
}

.folio-entries .entry__link {
    display : block;
    position: relative;
}

.folio-entries .entry__link img {
    vertical-align: bottom;
    transition    : all 0.3s ease-in-out;
    margin        : 0;
}

.folio-entries .entry__link::before {
    z-index         : 1;
    content         : "";
    display         : block;
    background-color: var(--color-text-dark);
    width           : 100%;
    height          : 100%;
    transition      : all, 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity         : 0;
    visibility      : hidden;
    position        : absolute;
    top             : 0;
    left            : 0;
}

.folio-entries .entry {
    position: relative;
}

.folio-entries .entry__info {
    z-index   : 2;
    transform : translate(-50%, 100%);
    opacity   : 0;
    visibility: hidden;
    text-align: center;
    position  : absolute;
    top       : 50%;
    left      : 50%;
}

.folio-entries .entry__cat,
.folio-entries .entry__title {
    font-family: var(--font-1);
}

.folio-entries .entry__cat {
    font-size  : calc(var(--text-size) * 0.8);
    line-height: 1.75;
    color      : var(--color-gray-15);
}

.folio-entries .entry__title {
    font-weight  : 500;
    font-size    : var(--text-size);
    line-height  : 1.2;
    margin-top   : 0;
    margin-bottom: var(--vspace-0_125);
    color        : white;
}

/* on hover
 */
.folio-entries .entry:focus .entry__link::before,
.folio-entries .entry:hover .entry__link::before {
    opacity   : 1;
    visibility: visible;
}

.folio-entries .entry:focus .entry__info,
.folio-entries .entry:hover .entry__info {
    transform       : translate(-50%, -50%);
    transition      : all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0.3s;
    opacity         : 1;
    visibility      : visible;
}

/* ------------------------------------------------------------------- 
 * ## testimonials
 * ------------------------------------------------------------------- */
.s-testimonials {
    padding-top   : var(--vspace-4_5);
    padding-bottom: var(--vspace-4);
}

.s-testimonials__header {
    margin-top   : 0;
    margin-bottom: var(--vspace-2);
    text-align   : center;
}

.s-testimonials .swiper-container {
    padding-bottom: var(--vspace-2);
}

.s-testimonials__slide {
    position: relative;
}

.s-testimonials__author {
    display      : inline-block;
    min-height   : var(--vspace-2);
    margin-bottom: var(--vspace-0_625);
    padding-left : calc(2.25 * var(--space));
    position     : relative;
}

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

.s-testimonials__cite {
    display: block;
}

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

.s-testimonials__cite strong {
    font-size  : calc(var(--text-size) * 0.9);
    font-weight: 500;
    line-height: var(--vspace-0_75);
    color      : var(--color-text-dark);
}

.s-testimonials__cite span {
    display    : block;
    font-size  : calc(var(--text-size) * 0.75);
    font-weight: 400;
    line-height: var(--vspace-0_5);
    color      : var(--color-text-light);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * works
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .folio-entries .entry__cat {
        font-size: calc(var(--text-size) * 0.7);
    }

    .folio-entries .entry__title {
        font-size: calc(var(--text-size) * 0.85);
    }

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

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

@media screen and (max-width: 500px) {
    .folio-entries .entry {
        width: 100%;
    }
}


/* ===================================================================
 * # NUMBERS
 *
 *
 * ------------------------------------------------------------------- */
.s-numbers {
    padding-top     : var(--vspace-5_5);
    padding-bottom  : var(--vspace-4);
    background-color: var(--color-gray-10);
    color           : var(--color-text-light);
}

.s-numbers h5 {
    font-family  : var(--font-1);
    font-weight  : 500;
    margin-top   : 0;
    margin-bottom: var(--vspace-0_75);
}

.counter-items__item {
    flex         : none;
    width        : 50%;
    margin-bottom: var(--vspace-0_625);
}

.counter-items .num {
    display       : inline-flex;
    align-items   : center;
    font-family   : var(--font-1);
    font-weight   : 700;
    font-size     : var(--text-huge-3);
    letter-spacing: -0.035em;
    line-height   : 1;
    color         : var(--color-3-dark);
}

.counter-items span {
    font-size  : 0.5em;
    margin-left: 0.1em;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * numbers
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .counter-items .num {
        font-size: var(--text-huge-1);
    }
}

@media screen and (max-width: 700px) {
    .counter-items__item {
        width: 100%;
    }
}

/* =================== Section Styling =================== */
.s-team,
.s-founders {
  padding: 80px 3rem;
  text-align: center;
  background: transparent;
}

.section-header {
  margin-bottom: 6rem;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #111;
}

.section-header .attention-getter {
  font-size: 2.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: var(--font-2);
}


/* ==================== Founders detailed container ============================= */
.founders-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.founder-row.reverse {
  flex-direction: row-reverse;
  align-items: center;
}


.founder-card-col {
  flex: 0 0 340px;
}


.founders-card {
 position: relative;
  flex: 1 1 300px;       
  max-width: 300px;      
  aspect-ratio: 2 / 3;
  height: 450px;
  border-radius: 20px;
  background-color: rgba(7, 59, 58, 0.1); 
  box-shadow: inset 0px -2px 4px rgba(7, 59, 58, 0.5),
              inset 0px 2px 4px rgba(7, 59, 58, 0.5),
              0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(25px) brightness(100%);
  -webkit-backdrop-filter: blur(25px) brightness(100%);
  overflow: visible; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.founders-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 68px rgba(0,0,0,0.35);
}

.founders-image {
  width: 100%;
}

.founders-image img {
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  overflow: visible;

}


.founders-image.ebzzry img {
  bottom: -31px;   
  left: 54%;   
}


.founders-image.docjem img {
  bottom: -32px;   
  left: 50%;     
}

/* Text column */
.founder-text-col {
  flex: 1;
  min-width: 280px;
  font-family: var(--font-2);
  text-align: left; 
  margin-top: -5rem;
}

.founder-row.reverse .founder-text-col {
  text-align: right;
}

.founder-text-col h2 {
  font-size: 4rem;
  margin-bottom: 0.75rem;
}

.founder-text-col h4 {
  font-size: 3rem;
  color: #777;
  margin-bottom: 1rem;
}

.founder-text-col p {
  font-size: 1.75rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-align: justify;
}

/* Mobile stacking */
@media (max-width: 768px) {
   .founders-image img {
    bottom: 0;
  }

  .founders-image.ebzzry img {
    bottom: -29px;
    left: 54%;
  }

  .founders-image.docjem img {
    bottom: -30px;
    left: 50%;
  }
  
  .founder-row,
  .founder-row.reverse {
    flex-direction: column;
    align-items: center;  
    text-align: center; 
  }

  .founder-text-col,
  .founder-row.reverse .founder-text-col {
    margin-top: 2rem;
    text-align: center !important;
  }
  
   .founder-card-col {
    flex: unset;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .founders-card {
    margin: 0 auto;
    
   
  }

  .founder-text-col {
    margin-top: 2rem;    
    text-align: center;  
  }
}




/* =================== Founders =================== */
/* Row layout */
.leader-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 68px rgba(0,0,0,0.35);
}

.leader-card {
  position: relative;
  width: 370px;
  height: 420px;
  max-width: 400px;
  border-radius: 20px;
  background-color: rgba(7, 59, 58, 0.1);
  box-shadow: inset 0px -2px 4px rgba(7, 59, 58, 0.5),
              inset 0px 2px 4px rgba(7, 59, 58, 0.5),
              0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(25px) brightness(100%);
  -webkit-backdrop-filter: blur(25px) brightness(100%);
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1; 
}

.leader-image .ebzzry {
  position: absolute;
  max-width: 400px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.leader-image .ebzzry {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  clip-path: inset(0 0 20% 0);
}


.leader-image .docjem {
  position: absolute;
  max-width: 400px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  overflow: visible; 
}

.leader-image .docjem  {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: top center; 
  clip-path: inset(0 0 25% 0);
}


.leader-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 1rem;
  text-align: center;
  z-index: 3; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: var(--font-2);
}


.leader-content h3 {
  font-weight: 600;
  font-size: 1.50rem;
  font-weight: 700;
  margin: 0.2rem 0;
  padding: 0 1rem;
  color: #111;
  font-family: var(--font-2);
}

.leader-content h4 {
  font-weight: 400;
  font-size: 1.25rem;
  color: #444;
  margin: 0.2rem 0 0.4rem 0;
  font-family: var(--font-2);
}

.leader-content p {
  font-weight: 400;
  font-size: 1.1875rem;
  color: #333;
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
  font-family: var(--font-2);
}


.leader-content .read-more {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #073b3a;
  background: #fff;
  border: 2px solid #073b3a;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.leader-content .read-more:hover {
  background: #073b3a;
  color: #fff;
}


p .veda {
  font-family: 'Saved By Zero', cursive;
  font-weight: 200;
}

p .tech {
  font-family: 'Montserrat Ace', sans-serif;
  font-weight: 100;
  text-transform: uppercase;
}

/* =================== Development Team =================== */
/* Row layout */
.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

/* .team-card {
  position: relative;
  flex: 1 1 300px;       
  max-width: 340px;      
  aspect-ratio: 2 / 3;   
  border-radius: 20px;
} */

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 68px rgba(0,0,0,0.35);
}

.team-card {
  position: relative;
  width: 100%;
  /* height: 510px; */
  height: auto;
  flex: 1 1 340px;       
  max-width: 380px;      
  aspect-ratio: 2 / 3;   
  border-radius: 20px;
  background-color: rgba(7, 59, 58, 0.1);
  box-shadow: inset 0px -2px 4px rgba(7, 59, 58, 0.5),
              inset 0px 2px 4px rgba(7, 59, 58, 0.5),
              0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(25px) brightness(100%);
  -webkit-backdrop-filter: blur(25px) brightness(100%);
  overflow: visible; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1; 
}


.team-image {
  position: absolute;
  top: -70px; 
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  overflow: visible; 
}

.team-image img {
  width: 100%;
  height: auto; 
  object-fit: contain; 
  object-position: top center; 
}


.team-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* height: 170px; */
  height: auto;        
  min-height: 170px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 1rem;
  text-align: center;
  z-index: 3; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: var(--font-2);
}


.team-content h3 {
  font-weight: 600;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.2rem 0; 
  color: #111;
  font-family: var(--font-2);
}

.team-content h4 {
  font-weight: 400;
  font-size: 1.75rem;
  color: #444;
  margin: 0.2rem 0 0 0;
  font-family: var(--font-2);
}

.team-content p {
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 1.1875rem;
  color: #333;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-2);
}

.team-content .boldify {
  font-weight: bold;
}


.team-icons .arrow-icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  pointer-events: none;
  z-index: 10;
  transform: rotate(-90deg) translateY(1px); 
}


.team-icons {
  position: absolute;
  top: -50px;  
  right: 15px;
  width: 45px;
  height: 45px;
  background: #0B6E4F;
  border-radius: 50%;
  padding: 1rem;
  display: flex;    
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 5;
}

/* icon styles */
.team-icons a {
  position: absolute;
  background: #333;
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(0);
  z-index: 2;
}

.team-icons a svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.team-icons a.linkedin-icon {
  background: #0B6E4F;
}

.team-icons a.github-icon {
  background: #333;
}

/* animation */
.team-icons:hover .linkedin-icon {
  opacity: 1;
  transform: translateY(-60px);
}

.team-icons:hover .github-icon {
  opacity: 1;
  transform: translateY(-120px);
}

.team-icons a:hover {
  transform: scale(1.1) translateY(-60px);
}


/* =================== Development Stack =================== */
/* Floaty attributes */
.card {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(163deg, #00ff75 0%, #014742 100%);
  border-radius: 9px;
  transition: all .3s;
}

.card2 {
  width: 100%;
  height: 100%;
  background-color: #ECEEEC;
  border-radius: 9px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}

.card2:hover {
  transform: scale(0.98);
  border-radius: 9px;
}

.card:hover {
  box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.30);
}

/* Tab design attributes */
.top {
  display: flex;
  align-items: center;
  padding-right: 10px;
  background-color: #282c34;
  border-radius: 10px 10px 0 0;
}

.circle {
  padding: 0 2px;
  margin: 0;
}

.circle2 {
  display: inline-block;
  align-items: center;
  width: 8px;
  height: 8px;
  padding: 1px;
  border-radius: 5px;
}

.green1 {
  background-color: #0B6E4F;
}

.green2 {
  background-color: #005448;
}

.green3 {
  background-color: #014742;
}

.header {
  margin: 5px;
  margin-top: 5px;
  border-radius: 5px;
}

.title {
  margin-right: auto;
  padding-left: 10px;
}

#title2 {
  color: white;
  font-size: 15px;
}


/* ======================= */


/* Actual components */
.s-stack {
  padding: 12rem 0;
  margin-top: 4rem;
  margin-bottom: 4rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
}


.s-stack .attention-getter {
  color: #555;
  font-size: 2.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Cards container */
.stack-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}


.dev-stack-item:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translateY(-10px);
  box-shadow:
              0 28px 68px rgba(0,0,0,0.35); /* Outer shadow for lift */
}


/* ======================= */


/* Card */
.dev-stack-item {
  position: relative;
  flex: 1 1 calc(25% - 3rem);
  min-width: 120px;
  max-width: 170px;
  height: 225px;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow:
              0 6px 20px rgba(0,0,0,0.15),
              0 10px 15px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Icon container */
.stack-icon-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}

.stack-icon-container img {
  width: 100%;
  height: auto;
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
  padding: 2rem;
}

/* Card title */
.dev-stack-item h5 {
  font-family: "Domine-Bold", Helvetica,i sans-serif;
  font-size: 3rem;       /* slightly larger */
  font-weight: 700;         /* stronger bold */
  margin: 0.5rem 0;         /* more breathing room */
  color: #111;
  letter-spacing: 0.5px;    /* adds clarity */
  text-transform: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* -----------------------
   Responsive Adjustments
   ----------------------- */
@media (max-width: 1024px) {
  .stack-row {
    gap: 1.5rem;
  }
  .dev-stack-item {
    max-width: 170px;
    height: 225px;
  }
  .stack-icon-container img {
    max-width: 180px;
    max-height: 180px;
  }
}

@media (max-width: 768px) {
  .stack-row {
    justify-content: center;
    gap: 1.25rem;
  }
  .dev-stack-item {
    min-width: 170px;
    height: 220px;
  }
  .stack-icon-container img {
    max-width: 160px;
    max-height: 160px;
  }
}

@media (max-width: 480px) {
  .dev-stack-item {
    flex: 1 1 100%;
    max-height: 225px;
    min-width: 170px
  }
  .stack-icon-container img {
    max-width: 150px;
    max-height: 150px;
  }
}
/* =================== Autoplay Carousel =================== */

.slider {
  background: #fff;
  box-shadow: inset 0px -2px 4px rgba(255, 255, 255, 0.5),
              inset 0px 2px 4px rgba(255, 255, 255, 0.5),
              0 8px 32px rgba(255,255,255,0.2);  height: 100px; /* adjust as needed */
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}



@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}


/* =================== Responsive =================== */

/* Medium screens */
@media (min-width: 820px) and (max-width: 1200px) {
  .team-row {
    gap: 5rem;
  }
  .team-card {
    flex: 0 0 45%;
  }
  .team-content h3 {
    font-size: 2.2rem;
  }

  .leader-row {
    gap: 6rem;
  }


}

/* Small screens */
@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
  .team-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .team-content h3 {
    font-size: 2rem;
  }
  .team-content h4 {
    font-size: 1.4rem;
  }
  .team-content p {
    font-size: 1.3rem;
  }

   .leader-card {
    flex: 0 0 90%;
  }

}

/* Extra small screens */
@media (max-width: 480px) {
  .team-content h3 {
    font-size: 1.8rem;
  }
  .team-content h4 {
    font-size: 1.2rem;
  }
  .team-content p {
    font-size: 1.1rem;
  }

   .leader-content h3 {
    font-size: 1.8rem;
  }
  .leader-content h4 {
    font-size: 1.2rem;
  }
  .leader-content p {
    font-size: 1.1rem;
  }
}

/* Small screens: remove offset for stacking */
@media (max-width: 768px) {
  /* .founder-card {
    transform: none !important;
  } */
}



/* ==================================================
 * Products and Services Section
 * ================================================== */
.s-services {
    position: relative; 
    padding: 6rem 0;
    background-color: #000000; /* dark background */
    text-align: center;
    overflow: hidden; 
    background: url("../images/backgrounds/blob-bg.svg") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;   
    min-height: 700px; 
}

.service-icon-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0px 2px 6px rgba(255, 255, 255, 0.1),
                inset 0px -2px 6px rgba(0, 0, 0, 0.3);
}

.service-icon-container img {
    max-width: none;  
    width: 180px;     
    height: 180px;
    display: block;     
    margin: 0 auto; 
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.service-items__item {
    flex: 1 1 375px;
    max-width: 450px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 3rem 2.25rem;
    box-shadow: inset 0px 2px 4px rgba(255, 255, 255, 0.2),
                inset 0px -2px 4px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-items__item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.service-items__item h5 {
    font-size: 24px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
    font-family: var(--font-2);

}

.service-items__item p {
    font-size: 21px;
    line-height: 1.6;
    color: #000;
    text-align: center; 
}

.service-icon img {
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}


/* =================== Responsive =================== */

/* medium screen */
@media (max-width: 1024px) {
  .s-services {
    background: #ECEEEC; 
  }

  /* top-left blob */
  .s-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;  
    height: 350px;
    background: url("../images/backgrounds/top-left-blob.svg ") no-repeat;
    background-size: contain;
    z-index: 0;
  }

  /* bottom-right blob */
  .s-services::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: url("../images/backgrounds/bottom-right-blob.svg") no-repeat;
    background-size: contain;
    z-index: 0;
  }

  .s-services > * {
    position: relative;
    z-index: 1;
  }

   .service-items__item {
      flex: 1 1 300px;
      max-width: 360px;
      padding: 2.5rem 2rem;
  }

  .service-items__item h5 {
      font-size: 20px;
  }
  .service-items__item p {
      font-size: 18px;
  }

  .service-icon-container img {
      width: 140px;
      height: 140px;
  }

}

/* smaller screen */
@media (max-width: 768px) {
  .s-services::before,
  .s-services::after {
    width: 280px;
    height: 280px;
    opacity: 0.9;
  }

  .service-items__item {
      flex: 1 1 250px;
      max-width: 300px;
      padding: 2rem 1.5rem;
  }

  .service-items__item h5 {
      font-size: 18px;
  }
  .service-items__item p {
      font-size: 16px;
  }

  .service-icon-container img {
      width: 100px;
      height: 100px;
  }
}



/* ===================================================================
 * # WHITE PAPER 
 *
 *
 * ------------------------------------------------------------------- */
.s-whitepaper {
    padding-top: var(--vspace-6);
    padding-bottom: var(--vspace-6);
}

.s-whitepaper .section-header h2 {
    color: #000;
}

.s-whitepaper__about {
    padding-top: var(--vspace-0_5);
}
.s-whitepaper__download {
    display: flex;
    align-items: center;
    justify-content: center;
}





/* ===================================================================
 * # FOOTER
 *
 *
 * ------------------------------------------------------------------- */
.s-footer {
    --bottom-padding: var(--vspace-2_5);
    background-color: var(--color-gray-10);
    margin-top      : auto;
    padding-top     : var(--vspace-6);
    padding-bottom  : var(--bottom-padding);
    color: #000;

     background-image: url("../images/backgrounds/footer-frames-2.svg");
    background-repeat: no-repeat;
    background-size: contain;       
    background-position: right;
}

.s-footer h5 {
    color     : white;
    margin-top: 0;
}

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

.s-footer__block a {
    color: var(--color-gray-12);
}

.s-footer__block a:focus,
.s-footer__block a:hover {
    color: white;
}

.s-footer__about {
    padding-top: var(--vspace-0_25);
}

.s-footer__about>* {
    width: min(100%, 560px);
}

.s-footer__buttons {
    --color-btn-stroke           : white;
    --color-btn-stroke-text      : white;
    --color-btn-stroke-hover     : white;
    --color-btn-stroke-hover-text: var(--color-text-dark);
    margin-top                   : var(--vspace-0_75);
    margin-bottom                : var(--vspace-2_5);
}

.s-footer__bottom {
    font-size  : calc(var(--text-size) * 0.8);
    color      : rgba(255, 255, 255, 0.2);
    padding-top: var(--vspace-1_25);
    margin-top : var(--vspace-0_75);
    position   : relative;
}

.s-footer__bottom::before {
    content         : "";
    display         : block;
    height          : 1px;
    width           : calc(100% - 2 * var(--gutter));
    position        : absolute;
    top             : 0;
    left            : var(--gutter);
}

.s-footer__social svg path,
.s-footer__social svg circle {
    /* fill      : var(--color-gray-15); */
    fill: black;
    transition: all 0.5s;
}

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

.s-footer .link-list li {
    padding: 0;
}

.s-footer .link-list a {
    color : var(--color-gray-15);
    border: none;
}

.s-footer .link-list a:focus,
.s-footer .link-list a:hover {
    color: white;
}

/* ------------------------------------------------------------------- 
 * ## copyright
 * ------------------------------------------------------------------- */
.ss-copyright {
    margin     : 0 var(--vspace-2) 0 0;
    line-height: var(--vspace-0_875);
}

.ss-copyright a {
    color: var(--color-3-dark);
}

.ss-copyright a:focus,
.ss-copyright a:hover {
    color: var(--color-3);
}

.ss-copyright span {
    display: inline-block;
    color: var(--color-3-dark);
}

/* .ss-copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 0.8rem 0 1rem;
    color  : var(--color-3-dark);
} */

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

/* ------------------------------------------------------------------- 
 * ## SEC number
 * ------------------------------------------------------------------- */
.ss-sec {          
    color: rgba(0, 0, 0, 0.6);      
    margin-top: 0.3rem;   
    margin-left: 0.3rem;          
    display: block;
}


/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
    --width-label   : 11rem;
    z-index         : 2;
    display         : flex;
    align-items     : center;
    position        : absolute;
    bottom          : calc(var(--bottom-padding) - var(--vspace-0_5));
    right           : calc(var(--gutter) + var(--vspace-0_75) - var(--width-label) - var(--vspace-1_75) - var(--vspace-0_75));
    transform       : rotate(-90deg);
    transform-origin: left bottom;
}

.ss-go-top span {
    display       : block;
    width         : var(--width-label);
    font-size     : 1.1rem;
    font-weight   : 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    /* color         : var(--color-gray-15);  */
    color: white;
    position      : relative;
}

.ss-go-top a {
    display        : flex;
    align-items    : center;
    justify-content: center;
    text-decoration: none;
    border         : none;
    height         : var(--vspace-1_75);
    width          : var(--vspace-1_75);
    border-radius  : 50%;
    border         : 2px solid white;
    margin-right   : var(--vspace-0_75);
    position       : relative;
}

.ss-go-top svg {
    height: calc(0.3 * var(--space));
    width : calc(0.3 * var(--space));
}

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

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1600px) {
    .ss-go-top {
        bottom: calc(var(--bottom-padding) - var(--vspace-0_25));
        right : 0;
    }

    .ss-go-top span {
        display: none;
    }

    .ss-go-top a {
        margin: 0;
        height: var(--vspace-1_5);
        width : var(--vspace-1_5);
    }

    .ss-go-top svg {
        height: calc(0.25 * var(--space));
        width : calc(0.25 * var(--space));
    }
}

@media screen and (max-width: 1200px) {
    .ss-copyright {
        margin-top: var(--vspace-0_5);
    }

    .ss-go-top {
        bottom: calc(var(--bottom-padding) + var(--vspace-0_75));
        right : calc(var(--gutter) - 1.2rem);
    }
}

@media screen and (max-width: 1000px) {
    .s-footer__about>* {
        width: 100%;
    }

    .ss-go-top {
        right: calc(var(--gutter) / 2);
    }
}

@media screen and (max-width: 800px) {
    .s-footer {
    background-size: cover;
    background-position: center top ; 
  }
    .ss-copyright span {
        display: block;
    }

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

    .ss-go-top {
        right: calc(var(--gutter) / 2 - var(--vspace-0_25));
    }
}

@media screen and (max-width: 600px) {
     .ss-go-top {
        right: calc(var(--vspace-0_25) * -1);
    }
    .s-footer {
    background-size: cover ; 
    background-position: center top ; 
  }
}

@media screen and (max-width: 400px) {
    .ss-go-top {
        right: -2rem;
    }
    .s-footer {
    background-size: cover; 
    background-position: center top ; 
  }
}
