/* =================================================================== 
 * Khronos Main Stylesheet
 * Template Ver. 2.0.0
 * 07-03-2021
 * ------------------------------------------------------------------
 *
 * TOC:
 * # SETTINGS
 *      ## fonts 
 *      ## colors
 *      ## spacing and typescale
 *      ## grid variables
 * # NORMALIZE
 * # BASE SETUP
 * # GRID
 *      ## large screen devices 
 *      ## medium screen devices
 *      ## tablet devices 
 *      ## mobile devices 
 *      ## small screen devices 
 *      ## additional column stackpoints
 * # UTILITY CLASSES
 * # TYPOGRAPHY 
 *      ## base type styles
 *      ## additional typography & helper classes
 *      ## lists
 *      ## spacing
 * # PRELOADER
 *      ## page loaded
 * # FORM
 *      ## style placeholder text
 *      ## change autocomplete styles in Chrome
 * # BUTTONS
 * # TABLE
 * # COMPONENTS
 *      ## pagination
 *      ## alert box 
 *      ## skillbars
 *      ## stats tabs
 * # PROJECT-WIDE SHARED STYLES
 *      ## media classes
 * # PAGE WRAP
 * # NAVBAR
 * # HEADER
 *      ## logo
 *      ## header social
 * # INTRO
 *      ## intro background
 *      ## intro video
 *      ## intro particles
 *      ## intro content
 *      ## intro buttons
 *      ## scroll icon
 *      ## intro transitions
 * # ABOUT (conocenos)
 *      ## hero
 *      ## particle animation
 *      ## about content (misión, visión, valores) 
 *      ## values grid
 *      ## about titles
 *      ## about icons
 *      ## about responsive design
 *      ## animations
 *      ## accessibility
  * # PROYECTO EDUCATIVO
 *      ## temas container
 *      ## subtemas container
 *      ## image container
 *      ## proyecto responsive design
 * # CALENDAR
 * # PROJECT DESCRIPTION
 * # STATS ICONS
 *      ## stat item
 *      ## stat icon
 *      ## stat number
 * # INFO
 *      ## info bg
 *      ## tabs
 *      ## services 
 *      ## MailChimp form
 * # FOOTER
 *      ## footer logo
 *      ## footer social
 *      ## go top
 *      ## copyright
 * # TESTIMONIOS
 *      ## testimonios grid
 *      ## testimonios carousel
 *      ## navigation buttons
 *      ## carousel indicators
 *      ## testimonios responsive design
 * ------------------------------------------------------------------ */


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

/* ------------------------------------------------------------------- 
 * ## fonts 
 * ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --font-1    : "Inter", sans-serif;
    /* monospace
    */
    --font-mono : Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

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

    /* color-1(#034E4A)
     * color-2(#A33B20)
     */
    --color-1                      : hsla(177, 93%, 16%, 1);
    --color-2                      : hsla(12, 67%, 38%, 1);

    /* theme color variations
     */
    --color-1-lighter              : hsla(177, 93%, 36%, 1);
    --color-1-light                : hsla(177, 93%, 26%, 1);
    --color-1-dark                 : hsla(177, 93%, 10%, 1);
    --color-1-darker               : hsla(177, 93%, 5%, 1);
    --color-2-lighter              : hsla(12, 67%, 58%, 1);
    --color-2-light                : hsla(12, 67%, 48%, 1);
    --color-2-dark                 : hsla(12, 67%, 28%, 1);
    --color-2-darker               : hsla(12, 67%, 18%, 1);

    /* color palette for "Conócenos" */
    --color-conocenos-green: #2E8B57;
    --color-conocenos-beige: #F5F5DC;
    --color-conocenos-sky: #87CEEB;
    --color-conocenos-green-light: rgba(46, 139, 87, 0.1);
    --color-conocenos-green-dark: #1e5f3a;

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

    /* shades 
     * generated using 
     * Tint & Shade Generator 
     * (https://maketintsandshades.com/)
     */
    --color-black                  : #000000;
    --color-gray-19                : #020202;
    --color-gray-18                : #040404;
    --color-gray-17                : #060607;
    --color-gray-16                : #080809;
    --color-gray-15                : #0a0b0b;
    --color-gray-14                : #0c0d0d;
    --color-gray-13                : #0e0f0f;
    --color-gray-12                : #101112;
    --color-gray-11                : #121314;
    --color-gray-10                : #141516;
    --color-gray-9                 : #2c2c2d;
    --color-gray-8                 : #434445;
    --color-gray-7                 : #5b5b5c;
    --color-gray-6                 : #727373;
    --color-gray-5                 : #8a8a8b;
    --color-gray-4                 : #a1a1a2;
    --color-gray-3                 : #b9b9b9;
    --color-gray-2                 : #d0d0d0;
    --color-gray-1                 : #e8e8e8;
    --color-white                  : #ffffff;

    /* text
     */
    --color-text                   : var(--color-gray-12);
    --color-text-dark              : var(--color-black);
    --color-text-light             : var(--color-gray-8);
    --color-placeholder            : var(--color-gray-7);

    /* buttons
     */
    --color-btn                    : var(--color-gray-1);
    --color-btn-text               : var(--color-black);
    --color-btn-hover              : var(--color-gray-2);
    --color-btn-hover-text         : var(--color-black);
    --color-btn-primary            : var(--color-1);
    --color-btn-primary-text       : var(--color-white);
    --color-btn-primary-hover      : var(--color-black);
    --color-btn-primary-hover-text : var(--color-white);
    --color-btn-stroke             : var(--color-black);
    --color-btn-stroke-text        : var(--color-black);
    --color-btn-stroke-hover       : var(--color-black);
    --color-btn-stroke-hover-text  : var(--color-white);
    --button-primary               : hsla(177, 93%, 22%, 1);


    /* preloader
     */
    --color-preloader-bg           : var(--color-gray-12);
    --color-loader                 : white;
    --color-loader-light           : rgba(255, 255, 255, 0.1);

    /* others
     */
    --color-body                   : var(--color-white);
    --color-border                 : rgba(0, 0, 0, .08);
    --border-radius                : 3px;

    /**/
    --color-primary: #034E4A;
    --color-secondary: #A33B20;
    --color-third: #2C6E49;
    --color-accent: #2E8B57;
    --color-light: #F2E7DD;
    --color-white: #ffffff;
    --color-light-white: #cdc6b9;
    --color-text: #333333;
    --color-text-light: #666666;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

    /* spacing
     * base font size: 18px 
     * vertical space unit : 32px
     */
    --base-size        : 62.5%;
    --multiplier       : 1;
    --base-font-size   : calc(1.8rem * var(--multiplier));
    --space            : calc(3.2rem * var(--multiplier));
    /* NAVBAR SETTINGS - MODIFIED */
    --navbar-height    : 55px;

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

    /* type scale
     * ratio 1         :2 | base: 18px
     * -------------------------------------------------------
     *
     * --text-display-3 = (77.40px)
     * --text-display-2 = (64.50px)
     * --text-display-1 = (53.75px)
     * --text-xxxl      = (44.79px)
     * --text-xxl       = (37.32px)
     * --text-xl        = (31.10px)
     * --text-lg        = (25.92px)
     * --text-md        = (21.60px)
     * --text-size      = (18.00px) BASE
     * --text-sm        = (15.00px)
     * --text-xs        = (12.50px)
     *
     * ---------------------------------------------------------
     */
    --text-scale-ratio : 1.2;
    --text-size        : var(--base-font-size);
    --text-xs          : calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm          : calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md          : calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
    --text-lg          : calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl          : calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl         : calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl        : calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-display-1   : calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-display-2   : calc(var(--text-display-1) * var(--text-scale-ratio));
    --text-display-3   : calc(var(--text-display-2) * var(--text-scale-ratio));

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

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

/* Indicators scale - Testimonios */
:root {
  --carousel-indicator-size: 8px;
  --carousel-indicator-size-mobile: 10px;
  --carousel-indicator-spacing: 8px;
  --carousel-indicator-spacing-mobile: 12px;
  --carousel-nav-size: 40px;
  --carousel-nav-size-mobile: 44px;
}

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

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

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

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

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



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

body {
    margin : 0;
}

main {
    display : block;
}

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

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

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

a {
    background-color : transparent;
}

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

b,
strong {
    font-weight : bolder;
}

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

small {
    font-size : 80%;
}

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

sub {
    bottom : -0.25em;
}

sup {
    top : -0.5em;
}

img {
    border-style : none;
}

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

button,
input {
    overflow : visible;
}

button,
select {
    text-transform : none;
}

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

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

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

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

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

progress {
    vertical-align : baseline;
}

textarea {
    overflow : auto;
}

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

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

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

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

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

details {
    display : block;
}

summary {
    display : list-item;
}

template {
    display : none;
}

[hidden] {
    display : none;
}



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

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

html,
body {
    height : 100%;
}

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

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

a {
    text-decoration : none;
}

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

pre {
    overflow : auto;
}

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------
 * ## additional column stackpoints 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

/* misc helper classes
 */
.u-clearfix:after {
    content : "";
    display : table;
    clear   : both;
}

.u-hidden {
    display : none;
}

.u-invisible {
    visibility : hidden;
}

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

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

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

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

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

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

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

.u-fullwidth {
    width : 100%;
}

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

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



/* ===================================================================
 * # TYPOGRAPHY 
 *
 *
 * ------------------------------------------------------------------- 
 * type scale - ratio 1:2 | base: 18px
 * -------------------------------------------------------------------
 *
 * --text-display-3 = (77.40px)
 * --text-display-2 = (64.50px)
 * --text-display-1 = (53.75px)
 * --text-xxxl      = (44.79px)
 * --text-xxl       = (37.32px)
 * --text-xl        = (31.10px)
 * --text-lg        = (25.92px)
 * --text-md        = (21.60px)
 * --text-size      = (18.00px) BASE
 * --text-sm        = (15.00px)
 * --text-xs        = (12.50px)
 *
 * -------------------------------------------------------------------- */

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

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

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

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            : 500;
    color                  : var(--color-text-dark);
    font-variant-ligatures : common-ligatures;
    text-rendering         : optimizeLegibility;
}

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

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

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

h1,
.h1 {
    font-size      : var(--text-display-1);
    line-height    : var(--vspace-2);
    letter-spacing : -.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    : var(--vspace-1_5);
    letter-spacing : -.02em;
}

h3,
.h3 {
    font-size   : var(--text-xl);
    line-height : var(--vspace-1_25);
}

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-size      : var(--text-sm);
    line-height    : var(--vspace-0_75);
    text-transform : uppercase;
    letter-spacing : .35rem;
}

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

em,
i {
    font-style : italic;
}

strong,
b {
    font-weight : 600;
}

small {
    font-size   : 75%;
    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 black;
    position    : relative;
}

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

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

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

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

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

/* 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-9);
    overflow-x : auto;
}

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------
 * ## additional typography & helper classes
 * -------------------------------------------------------------------- */
.lead,
.attention-getter {
    font-family : var(--font-1);
    font-weight : 300;
    font-size   : var(--text-md);
    line-height : calc(1.125 * var(--space));
    color       : var(--color-text);
}

.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    : 600;
    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 : .4rem;
}

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

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

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

dt {
    margin : 0;
    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) ". ";
}

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

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



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

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

#loader {
    width   : var(--vspace-1_5);
    height  : var(--vspace-1_5);
    padding : 0;
    opacity : 1;
}

#loader::before {
    content           : "";
    border-top        : 4px solid var(--color-loader-light);
    border-right      : 4px solid var(--color-loader-light);
    border-bottom     : 4px solid var(--color-loader-light);
    border-left       : 4px solid var(--color-loader);
    -webkit-animation : load 1.1s infinite linear;
    animation         : load 1.1s infinite linear;
    display           : block;
    border-radius     : 50%;
    width             : 100%;
    height            : 100%;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform : rotate(0deg);
        transform         : rotate(0deg);
    }

    100% {
        -webkit-transform : rotate(360deg);
        transform         : rotate(360deg);
    }
}

@keyframes load {
    0% {
        transform : rotate(0deg);
    }

    100% {
        transform : rotate(360deg);
    }
}

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

.ss-loaded #preloader #loader {
    opacity    : 0;
    transition : opacity .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) - 1px);
    display             : block;
    height              : var(--input-height);
    padding             : var(--input-vpadding) calc(2.4rem - 1px);
    border              : 0;
    outline             : 0;
    color               : var(--color-placeholder);
    font-family         : var(--font-1);
    font-size           : var(--text-sm);
    line-height         : var(--input-line-height);
    max-width           : 100%;
    background-color    : var(--color-gray-1);
    border              : 1px solid transparent;
    transition          : all .3s ease-in-out;
    border-radius       : var(--border-radius);
}

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

.ss-custom-select select option {
    padding-left  : 2rem;
    padding-right : 2rem;
}

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

.ss-custom-select::after {
    border-bottom    : 2px solid black;
    border-right     : 2px solid black;
    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-black);
    box-shadow : 0 0 5px var(--color-1);
    border     : 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
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color : var(--color-placeholder);
}

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

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

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

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

::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);
    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               : var(--text-xs);
    letter-spacing          : .1rem;
    height                  : var(--btn-height);
    line-height             : calc(var(--btn-height) - 4px);
    padding                 : 0 3.5rem;
    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 .3s;
    border-radius           : var(--border-radius);
    background-color        : var(--color-btn);
    border                  : 2px solid var(--color-btn);
    -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.5rem);
}

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

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

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

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

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



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

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

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

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

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

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



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

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

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

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

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

.pgn__num:focus,
.pgn__num:hover {
    background : black;
    color      : white;
}

.pgn .current,
.pgn .current:focus,
.pgn .current:hover {
    background-color : black;
    color            : white;
}

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

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

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

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

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

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

.pgn__prev {
    left : 0;
}

.pgn__next {
    right : 0;
}

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

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

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

/* ------------------------------------------------------------------- 
 * ## alert box 
 * ------------------------------------------------------------------- */
.alert-box {
    padding       : 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 .5s;
}

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

.skill-bars li {
    height        : .4rem;
    background    : var(--color-gray-2);
    width         : 100%;
    margin-bottom : calc(var(--vspace-2) - .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-dark);
    text-transform : uppercase;
    letter-spacing : .2em;
    font-size      : var(--text-xs);
    line-height    : var(--vspace-0_75);
}

.skill-bars li .progress {
    background : var(--color-1);
    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-black);
    padding       : var(--vspace-0_25);
    border-radius : 4px;
    position      : absolute;
    right         : 0;
    top           : calc((var(--vspace-1) + .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-black, 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
 *
 *
 * ------------------------------------------------------------------- */
.wide {
    max-width : var(--width-wide);
}

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

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

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

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

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

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

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

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



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

/* ------------------------------------------------------------------- 
 * responsive:
 * pagewrap
 * ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
    .s-pagewrap {
        --header-height : 10.6rem;
    }
}

/* ===================================================================
 * # NAVBAR
 *
 *
 * ------------------------------------------------------------------- */
.s-navbar {
    background: var(--color-primary);
    border-bottom: 3px solid var(--color-third);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.3s ease;
}

.s-navbar.scrolled {
    background-color: var(--color-1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.s-navbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--vspace-0_25) 0;
    min-height: 6rem;
}

.s-navbar__logo {
    flex-shrink: 0;
}

.navbar-logo {
    display: block;
    text-decoration: none;
}

.navbar-logo img {
    height: 3.5rem;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
}

.s-navbar__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--vspace-0_75);
    align-items: center;
}

.s-navbar__item {
    margin: 0;
    padding: 0;
}

.s-navbar__link {
    font-family: var(--font-1);
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--color-white);
    text-decoration: none;
    padding: var(--vspace-0_5) 1.4rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.s-navbar__link--active {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-weight: 600;
}

.s-navbar__link:hover,
.s-navbar__link:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Botón especial de donación */
.s-navbar__link--donate {
    background-color: var(--color-2);
    color: var(--color-white);
    font-weight: 600;
    padding: var(--vspace-0_5) 2rem;
}

.s-navbar__link--donate:hover,
.s-navbar__link--donate:focus {
    background-color: var(--color-2-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Hamburger menu */
.s-navbar__hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.3rem;
    z-index: 1002;
    position: relative;
}

.s-navbar__hamburger span {
    width: 2.5rem;
    height: 0.3rem;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 1px 5px;
}

.s-navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.s-navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.s-navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.7rem, -0.6rem);
}

.s-header {
    margin-top: 6rem;
}

/* ===================================================================
 * RESPONSIVE DESIGN
 * ================================================================== */

/* Tablet y pantallas medianas (hasta 1024px) */
@media screen and (max-width: 1152px) {
    .s-navbar__menu {
        gap: 2rem;
    }

    .s-navbar__link {
        padding: 0.4rem 0.8rem;
        font-size: calc(var(--text-sm) * 0.95);
    }

    .s-navbar__link--donate {
        padding: 0.4rem 1rem;
    }
}

/* Tablets pequeñas (hasta 900px) */
@media screen and (max-width: 1024px) {
    .s-navbar__menu {
        gap: 1.5rem;
    }

    .s-navbar__link {
        padding: 0.4rem 0.6rem;
        font-size: calc(var(--text-sm) * 0.9);
    }
}

@media screen and (max-width: 900px) {
    .s-navbar__hamburger {
        display: flex;
    }

    /* Ocultar menu normal */
    .s-navbar__menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        align-items: stretch;
        padding: var(--spacing-lg) var(--spacing-xl);
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
    }

    /* Menu activo (visible) */
    .s-navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Items del menu mobile */
    .s-navbar__item {
        margin: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .s-navbar__item:last-child {
        border-bottom: none;
    }

    .s-navbar__link {
        display: block;
        padding: var(--spacing-md) 0;
        font-size: var(--text-md);
        font-weight: 500;
        text-align: left;
        border-radius: 0;
        background: transparent;
    }

    .s-navbar__link:hover,
    .s-navbar__link--active {
        background-color: rgba(255, 255, 255, 0.2);
        color: var(--color-white);
        padding-left: var(--spacing-sm);
    }

    /* Botón donar en mobile */
    .s-navbar__link--donate {
        background: var(--color-2);
        color: var(--color-white) !important;
        margin-top: var(--spacing-md);
        padding: var(--spacing-md) var(--spacing-lg);
        text-align: center;
        border-radius: var(--border-radius);
        font-weight: 600;
    }

    .s-navbar__link--donate:hover {
        background: var(--color-2-dark);
        padding-left: var(--spacing-lg);
        transform: none;
    }
}

/* Mobile muy pequeño (hasta 480px) */
@media screen and (max-width: 480px) {
    .s-navbar__content {
        padding: 0 var(--spacing-sm);
    }

    .navbar-logo img {
        height: 30px;
    }

    .s-navbar__menu {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .s-navbar__link {
        font-size: var(--text-size);
    }
}

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

UTILIDADES ADICIONALES
================================================================== */
/* Prevenir scroll cuando menu mobile está abierto */
body.menu-open {
    overflow: hidden;
}

/* Overlay para cerrar menu en mobile */
.navbar-overlay {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-overlay.active {
    display: block;
    opacity: 1;
}

/* Ajuste para contenido principal */
.s-content,
.s-header {
    margin-top: var(--navbar-height);
}

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

ANIMACIONES Y TRANSICIONES
================================================================== */

/* Animación de entrada para menu items en mobile */
@media screen and (max-width: 900px) {
    .s-navbar__item {
        transform: translateX(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .s-navbar__menu.active .s-navbar__item {
        transform: translateX(0);
        opacity: 1;
    }

    .s-navbar__menu.active .s-navbar__item:nth-child(1) { transition-delay: 0.1s; }
    .s-navbar__menu.active .s-navbar__item:nth-child(2) { transition-delay: 0.15s; }
    .s-navbar__menu.active .s-navbar__item:nth-child(3) { transition-delay: 0.2s; }
    .s-navbar__menu.active .s-navbar__item:nth-child(4) { transition-delay: 0.25s; }
    .s-navbar__menu.active .s-navbar__item:nth-child(5) { transition-delay: 0.3s; }
    .s-navbar__menu.active .s-navbar__item:nth-child(6) { transition-delay: 0.35s; }
    .s-navbar__menu.active .s-navbar__item:nth-child(7) { transition-delay: 0.4s; }
}

/* ===================================================================
 * # HEADER
 *
 *
 * ------------------------------------------------------------------- */
.s-header {
    --logo-width : 9.6rem;
    z-index      : 100;
    width        : 100%;
    position     : absolute;
    top          : var(--vspace-1_25);
    left         : 0;
}

.s-header__content {
    max-width : var(--width-wider);
    height    : var(--header-height);
    position  : relative;
}

/* --------------------------------------------------------------------
 * ## logo
 * -------------------------------------------------------------------- */
.s-header__logo {
    z-index   : 101;
    transform : translate(0, -50%);
    position  : absolute;
    top       : 50%;
    left      : var(--gutter);
}

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

.s-header__logo img {
    width          : var(--logo-width);
    vertical-align : bottom;
}

/* --------------------------------------------------------------------
 * ## header social
 * -------------------------------------------------------------------- */
.s-header__social {
    list-style : none;
    display    : flex;
    margin     : 0;
    transform  : translate(0, -50%);
    position   : absolute;
    top        : calc(50% - var(--vspace-0_75));
    right      : calc(var(--gutter) / 2);
}

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

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

.s-header__social svg {
    height : var(--vspace-0_875);
    width  : var(--vspace-0_875);
}

.s-header__social svg path {
    fill : white;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-header {
        --logo-width : 8rem;
        top          : var(--vspace-0_5);
    }

    .s-header__social {
        top : calc(50% - var(--vspace-0_25));
    }

    .s-header__social li {
        margin-right : 1rem;
    }

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

@media screen and (max-width: 600px) {
    .s-header {
        --logo-width : 7.2rem;
    }

    .s-header__logo {
        left : calc(6vw + var(--gutter));
    }

    .s-header__social {
        right : calc(6vw + .8rem);
    }
}

@media screen and (max-width: 500px) {
    .s-header {
        top : 0;
    }
}

@media screen and (max-width: 400px) {
    .s-header {
        --logo-width : 6rem;
    }

    .s-header__logo {
        left : calc(6vw + .4rem);
    }

    .s-header__social {
        right : calc(6vw + .4rem);
    }

    .s-header__social li {
        margin-right : 0.8rem;
    }
}



/* ===================================================================
 * # INTRO
 *
 *
 * ------------------------------------------------------------------- */
.s-intro {
    position         : relative;
    background-color : var(--color-body);
    width            : 100%;
    min-height       : 60vh; /*calc(30 * var(--space));*/
    overflow         : hidden;
    padding-top      : var(--navbar-height);
    height           : auto;
}

.s-intro a {
    border : none;
}

.theme-particles .s-intro {
    background-color : var(--color-gray-15);
}

.theme-particles .s-intro .s-intro__content {
    pointer-events : none;
}

.theme-particles .s-intro .s-intro__content-bottom,
.theme-particles .s-intro .s-intro__scroll {
    pointer-events : auto;
}

/* --------------------------------------------------------------------
 * ## intro background
 * -------------------------------------------------------------------- */
.s-intro__bg {
    display             : block;
    position            : absolute;
    top                 : 0;
    left                : 0;
    right               : 0;
    bottom              : 0;
    width               : 100%;
    height              : 100%;
    background-image    : url(../images/bg-static.jpg);
    background-repeat   : no-repeat;
    background-position : center;
    background-size     : cover;
}

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

.s-intro__bg::after {
    display        : block;
    content        : "";
    position       : absolute;
    top            : 0;
    left           : 0;
    right          : 0;
    bottom         : 0;
    width          : 100%;
    height         : 100%;
    background     : linear-gradient(90deg, black 10%, rgba(0, 0, 0, 0) 100%);
    pointer-events : none;
    opacity        : .8;
}

/* --------------------------------------------------------------------
 * ## intro video
 * -------------------------------------------------------------------- */
.s-intro__video-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    align-items: center;
}

.s-intro__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.s-intro__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.s-intro__video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(255, 255, 255, 0.2) 100%
    );
    z-index: 1;
}

.s-intro__video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #1a1a1a 0%,
        #2d2d2d 50%,
        #0f0f0f 100%
    );
    z-index: 1;
}

/* -------------------------------------------------------------------
 * ## intro particles
 * ------------------------------------------------------------------- */
.s-intro__particles {
    position         : absolute;
    top              : 0;
    left             : 0;
    right            : 0;
    bottom           : 0;
    width            : 100%;
    height           : 100%;
    background-color : transparent;
    padding          : 0;
    margin           : 0;
    opacity          : .20;
}

.s-intro__particles canvas {
    position : absolute;
    top      : 0;
    left     : 0;
    right    : 0;
    bottom   : 0;
    width    : 100%;
    height   : 100%;
}

/* --------------------------------------------------------------------
 * ## intro content
 * -------------------------------------------------------------------- */
.s-intro__content {
    z-index        : 5;
    max-width      : var(--width-wider);
    align-items    : center;
    height         : 100vh;
    padding-top    : 10vh;
    padding-bottom : 10rem;
    position       : relative;
}

.s-intro__content-bottom {
    max-width   : 500px;
    font-weight : 300;
    color       : white;
    margin-top  : var(--vspace-1);
}

.s-intro__content-title {
    font-size     : clamp(3rem, 6vw, 5rem);
    font-weight   : 700;
    line-height   : 1.2;
    color         : white;
    margin-top    : 0;
    margin-bottom : 1rem;
    text-shadow   : 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}
/* --------------------------------------------------------------------
 * ## intro buttons
 * -------------------------------------------------------------------- */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.4rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-1-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-1-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------
 * ## scroll icon
 * -------------------------------------------------------------------- */
.s-intro__scroll {
    position      : absolute;
    bottom        : 1rem;
    right         : var(--gutter);
    width         : 18rem;
    height        : 8.8rem;
    padding-right : 3rem;
    border-right  : 1px dashed rgba(255, 255, 255, 0.3);
    text-align    : right;
    z-index       : 3;
}

.s-intro__scroll .scroll-text {
    font-family : var(--font-1);
    font-weight : 300;
    font-size   : var(--text-sm);
    color       : white;
}

.s-intro__scroll .end-top {
    background-color : white;
    width            : 6px;
    height           : 6px;
    border-radius    : 50%;
    position         : absolute;
    top              : -6px;
    right            : -4px;
}

.s-intro__scroll .mouse {
    z-index           : 2;
    height            : 3.8rem;
    width             : 2.5rem;
    border            : 3px solid white;
    border-radius     : 12px;
    display           : block;
    text-align        : center;
    position          : absolute;
    right             : -1.3rem;
    top               : 1.4rem;
    -webkit-animation : vertical 3s ease infinite;
    animation         : vertical 3s ease infinite;
}

.s-intro__scroll .mouse::before {
    content          : "";
    display          : block;
    height           : 5px;
    width            : 3px;
    background-color : white;
    border-radius    : 2px;
    margin-left      : -1.5px;
    position         : absolute;
    top              : 6px;
    left             : 50%;
}

/* fade in 
 */
@-webkit-keyframes vertical {

    0%,
    60%,
    80%,
    100% {
        -webkit-transform : translateY(0);
        transform         : translateY(0);
    }

    20% {
        -webkit-transform : translateY(-5px);
        transform         : translateY(-5px);
    }

    40% {
        -webkit-transform : translateY(20px);
        transform         : translateY(20px);
    }
}

@keyframes vertical {

    0%,
    60%,
    80%,
    100% {
        -webkit-transform : translateY(0);
        transform         : translateY(0);
    }

    20% {
        -webkit-transform : translateY(-5px);
        transform         : translateY(-5px);
    }

    40% {
        -webkit-transform : translateY(20px);
        transform         : translateY(20px);
    }
}

/* --------------------------------------------------------------------
 * ## intro transitions
 * -------------------------------------------------------------------- */
.s-header__content,
.s-intro .counter,
.s-intro__content-bottom,
.s-intro__scroll {
    transition-timing-function : cubic-bezier(0.28, 0.12, 0.22, 1);
    transition-duration        : .6s;
    transition-delay           : 0s;
    opacity                    : 0;
}

.s-header__content {
    transition-property : opacity, transform;
    transform           : translate(0, -100%);
}

.s-intro .counter,
.s-intro__content-bottom {
    transition-property : opacity, transform;
    transform           : translate(0, 100%);
}

.s-intro__scroll {
    transition-property : opacity, bottom;
    bottom              : -250px;
}

.no-js .s-header__content,
.no-js .s-intro .counter,
.no-js .s-intro__content-bottom,
.no-js .s-intro__scroll,
.ss-show .s-header__content,
.ss-show .s-intro .counter,
.ss-show .s-intro__content-bottom,
.ss-show .s-intro__scroll {
    opacity : 1;
}

.no-js .s-header__content,
.no-js .s-intro .counter,
.no-js .s-intro__content-bottom,
.ss-show .s-header__content,
.ss-show .s-intro .counter,
.ss-show .s-intro__content-bottom {
    transform : translate(0, 0);
}

.no-js .s-intro .counter,
.ss-show .s-intro .counter {
    transition-delay : .3s;
}

.no-js .s-intro__content-bottom,
.ss-show .s-intro__content-bottom {
    transition-delay : .6s;
}

.no-js .s-intro__scroll,
.ss-show .s-intro__scroll {
    transition-delay : .9s;
    bottom           : 0;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
    .s-intro .counter__time {
        font-size : 12.4rem;
    }
}

@media screen and (max-width: 950px) {
    .s-intro .counter__time {
        font-size : 11.2rem;
    }

    .s-intro__content-title {
        font-size     : clamp(2rem, 5vw, 3rem); 
        line-height   : 1.3;                    
        font-weight   : 600;                    
        letter-spacing: 0.3px;
        text-shadow   : 1px 1px 4px rgba(0, 0, 0, 0.3); 
    }
}

@media screen and (max-width: 800px) {
    .s-intro .counter__time {
        font-size : 10.4rem;
    }
}

@media screen and (max-width: 600px) {
    .s-intro__content {
        padding-bottom : 8rem;
    }

    .s-intro .counter__time {
        font-size : 9.6rem;
    }

    .s-intro__content-bottom {
        max-width : 400px;
    }

    .s-intro__content-bottom br {
        display : none;
    }

    .s-intro__content-title {
        font-size   : var(--text-lg);
        line-height : var(--vspace-1);
    }

    .s-intro__scroll {
        right : 4.8rem;
    }
}

@media screen and (max-width: 500px) {
    .s-intro .counter__time {
        font-size : 7.2rem;
    }
}

@media screen and (max-width: 400px) {
    .s-intro .counter__time {
        font-size : 6.6rem;
    }

    .s-intro__content-title {
        font-size   : var(--text-md);
        line-height : var(--vspace-0_875);
    }

    .s-intro__scroll {
        right : 4rem;
    }
}

/* ===================================================================
 * # ABOUT SECTION
 *
 *
 * ------------------------------------------------------------------- */
.s-hero {
  background: linear-gradient(
      135deg, 
      rgba(3, 78, 74, 0.9) 0%, 
      rgba(46, 139, 87, 0.8) 50%,
      rgba(3, 78, 74, 0.9) 100%
  ),
  url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23034E4A;stop-opacity:1" /><stop offset="50%" style="stop-color:%232E8B57;stop-opacity:1" /><stop offset="100%" style="stop-color:%23034E4A;stop-opacity:1" /></linearGradient><pattern id="mountains" x="0" y="0" width="200" height="100" patternUnits="userSpaceOnUse"><polygon points="0,100 50,20 100,60 150,10 200,50 200,100" fill="%23ffffff" opacity="0.1"/></pattern><pattern id="trees" x="0" y="0" width="100" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="60" r="15" fill="%23ffffff" opacity="0.08"/><circle cx="50" cy="55" r="18" fill="%23ffffff" opacity="0.08"/><circle cx="80" cy="62" r="12" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100%" height="100%" fill="url(%23bg)"/><rect width="100%" height="100%" fill="url(%23mountains)"/><rect width="100%" height="100%" fill="url(%23trees)"/></svg>');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: var(--vspace-5) 0 var(--vspace-4);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.s-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(3, 78, 74, 0.1) 70%,
      rgba(3, 78, 74, 0.3) 100%
  );
  pointer-events: none;
}

/* ------------------------------------------------------------------- 
 * ## particle animation
 * ------------------------------------------------------------------- */
.s-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.8" fill="%23ffffff" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1.2" fill="%23ffffff" opacity="0.2"><animate attributeName="opacity" values="0.2;0.7;0.2" dur="5s" repeatCount="indefinite"/></circle><circle cx="70" cy="80" r="0.9" fill="%23ffffff" opacity="0.35"><animate attributeName="opacity" values="0.35;0.8;0.35" dur="3.5s" repeatCount="indefinite"/></circle></svg>');
  background-size: 200px 200px;
  animation: float 20s linear infinite;
  pointer-events: none;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

.s-hero__content {
  position: relative;
  z-index: 2;
}

.s-hero__title {
  font-size: var(--text-display-3);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--vspace-1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.s-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

 /* ------------------------------------------------------------------- 
 * ## about content (misión, visión, valores) 
 * ------------------------------------------------------------------- */
.s-mission,
.s-vision,
.s-values {
  padding: var(--vspace-2) 0;
}

.s-mission {
  background-color: var(--color-white);
}

.s-vision {
  background: linear-gradient(135deg, var(--color-conocenos-beige) 0%, var(--color-conocenos-sky) 100%);
}

.s-values {
  background-color: var(--color-gray-1);
}

.s-mission__content,
.s-vision__content {
  max-width: 90rem;
  margin: 0 auto;
  text-align: center;
}

.s-mission__text,
.s-vision__text {
  font-family: var(--font-1);
  font-weight: 400;
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.s-vision__text {
  color: var(--color-text-dark);
}

/* --------------------------------------------------------------------
 * ## values grid
 * -------------------------------------------------------------------- */
.s-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: var(--vspace-2);
  margin-top: var(--vspace-2);
}

.s-value-card {
  background-color: var(--color-white);
  padding: var(--vspace-2);
  border-radius: calc(var(--border-radius) * 2);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.s-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-conocenos-green) 0%, var(--color-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.s-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-conocenos-green-light);
}

.s-value-card:hover::before {
  transform: scaleX(1);
}

.s-value-card__icon {
  margin-bottom: var(--vspace-1);
}

.s-value-card__icon .emoji {
  font-size: 4rem;
  line-height: 1;
  display: block;
  transition: transform 0.3s ease;
}

.s-value-card:hover .emoji {
  transform: scale(1.1) rotate(5deg);
}

.s-value-card__title {
  font-family: var(--font-1);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--color-1);
  margin-bottom: var(--vspace-0_5);
  line-height: 1.3;
}

.s-value-card__description {
  font-family: var(--font-1);
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------
 * ## about titles
 * -------------------------------------------------------------------- */
.s-section-header {
  text-align: center;
  margin-bottom: var(--vspace-1_5);
}

.s-section-title {
  font-family: var(--font-1);
  font-weight: 600;
  font-size: var(--text-xxl);
  color: var(--color-1);
  margin-bottom: var(--vspace-1);
  position: relative;
}

.s-section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--color-conocenos-green) 0%, var(--color-2) 100%);
  border-radius: 2px;
}

/* --------------------------------------------------------------------
 * ## about icons
 * -------------------------------------------------------------------- */
.s-section-icon {
  margin-top: var(--vspace-1);
}

.icon-placeholder {
  width: 10rem;
  height: 10rem;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.icon-placeholder::before {
  font-size: var(--text-xs);
  color: var(--color-conocenos-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.icon-placeholder:hover {
  transform: scale(1.05);
  border-color: var(--color-conocenos-green-dark);
}

 /* ------------------------------------------------------------------- 
 * ## about responsive design
 * ------------------------------------------------------------------- */

@media screen and (max-width: 1200px) {
  .s-values__grid {
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
}

@media screen and (max-width: 1200px) {
  .s-hero {
      min-height: 70vh;
      padding: var(--vspace-4) 0 var(--vspace-3);
  }

  .s-hero__title {
      font-size: var(--text-xxxl);
  }
  
  .s-hero__subtitle {
      font-size: var(--text-md);
  }
  
  .s-section-title {
      font-size: var(--text-xl);
  }
  
  .s-mission__text,
  .s-vision__text {
      font-size: var(--text-md);
  }
  
  .s-values__grid {
      grid-template-columns: 1fr;
      gap: var(--vspace-1_5);
  }
  
  .s-value-card {
      padding: var(--vspace-1_5);
  }
  
  .s-cta__actions {
      flex-direction: column;
      align-items: center;
  }
  
  .s-cta__actions .btn {
      width: 100%;
      max-width: 30rem;
  }
}

@media screen and (max-width: 600px) {
  .s-hero {
      min-height: 60vh;
      background-attachment: scroll;
      padding: var(--vspace-3) 0 var(--vspace-2);
  }

  .s-hero__title {
      font-size: var(--text-display-1);
  }
  .s-hero__subtitle {
      font-size: var(--text-md);
      padding: 0 var(--gutter);
  }
  
  .s-mission,
  .s-vision,
  .s-values,
  .s-cta {
      padding: var(--vspace-3) 0;
  }
  
  .s-section-header {
      margin-bottom: var(--vspace-2);
  }
  
  .icon-placeholder {
      width: 6rem;
      height: 6rem;
  }
  
  .s-value-card__icon .emoji {
      font-size: 3rem;
  }
  
  .s-footer__content {
      gap: var(--vspace-1);
  }
  
  .s-footer__social {
      gap: var(--vspace-0_75);
  }
  
  .s-footer__social a {
      width: 3.5rem;
      height: 3.5rem;
  }
}

 /* ------------------------------------------------------------------- 
 * ## animations
 * ------------------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.scroll-anim {
  opacity: 0;
}

.fadeInUp.visible {
  animation: fadeInUp 0.8s ease-out both;
}

.fadeInLeft.visible {
  animation: fadeInLeft 0.8s ease-out both;
}

.fadeInRight.visible {
  animation: fadeInRight 0.8s ease-out both;
}

.js .s-value-card:nth-child(1) { animation-delay: 0.1s; }
.js .s-value-card:nth-child(2) { animation-delay: 0.2s; }
.js .s-value-card:nth-child(3) { animation-delay: 0.3s; }
.js .s-value-card:nth-child(4) { animation-delay: 0.4s; }
.js .s-value-card:nth-child(5) { animation-delay: 0.5s; }

 /* ------------------------------------------------------------------- 
 * ## accessibility
 * ------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
  }
}

.s-value-card:focus-within {
  outline: 2px solid var(--color-conocenos-green);
  outline-offset: 4px;
}

.icon-placeholder:focus {
  outline: 2px solid var(--color-conocenos-green);
  outline-offset: 4px;
}

/* ===================================================================
 * # PROYECTO EDUCATIVO
 *
 *
 * ------------------------------------------------------------------- */
.s-proyecto-educativo {
    padding: var(--spacing-xs) 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------------------------------- 
 * ## temas container
 * ------------------------------------------------------------------- */ 
.proyecto-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.temas-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    padding: var(--vspace-2) 0;
}
        
.tema-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
        
.tema-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-third));
}
        
.tema-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.tema-content {
    padding: var(--spacing-sm);
}

.tema-content h2 {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}
        
.tema-content h3 {
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ------------------------------------------------------------------- 
 * ## subtemas container
 * ------------------------------------------------------------------- */
.subtemas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.subtemas-list li {
    display: block;
    position: relative;
    padding: var(--spacing-sm) 2rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    color: var(--color-text);
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.subtemas-list li::before {
    content: '●';
    position: absolute;
    left: 0.5rem;
    top: var(--spacing-sm);
    color: var(--color-accent);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* --------------------------------------------------------------------
 * ## trigger button
 * -------------------------------------------------------------------- */
.trigger-btn {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 139, 86, 0.1) 100%);
    border: 1px solid transparent;
    color: inherit;
    text-decoration: none;
}

.trigger-btn:hover {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(46, 139, 87, 0.15) 100%);
    color: #2E8B57;
    transform: translateX(3px);
    border-color: rgba(46, 139, 87, 0.3);
    box-shadow: 0 2px 8px rgba(46, 139, 87, 0.2);
}

.trigger-btn::after {
    margin-left: 6px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.trigger-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ------------------------------------------------------------------- 
 * ## image container
 * ------------------------------------------------------------------- */
.tema-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-third));
    display: flex;
    align-items: center;
    justify-content: center;
}

.tema-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-third));
}

/* ------------------------------------------------------------------- 
 * responsive:
 * proyecto
 * ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .tema-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        direction: ltr !important;
    }
    
    .tema-image {
        height: 250px;
        order: -1;
    }
    
    .temas-container {
        gap: var(--spacing-lg);
    }
}
        
@media screen and (max-width: 480px) {
    .s-proyecto-educativo {
        padding: var(--spacing-lg) 0;
    }
    
    .proyecto-content {
        padding: 0 var(--spacing-sm);
    }
    
    .tema-item {
        padding: var(--spacing-md);
    }
    
    .tema-image {
        height: 200px;
    }
    
    .subtemas-list li {
        padding-left: 1.5rem;
    }
}

/* ===================================================================
 * # RELACIÓN CON EL TERRITORIO - PÁGINA ESPECÍFICA
 * ================================================================== */



/* ===================================================================
 * # CALENDAR
 *
 *
 * ------------------------------------------------------------------- */
.calendar-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-light);
    text-align: center;
}

.calendar-image {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
}

.calendar-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: block;
}

/* ===================================================================
 * # PROJECT DESCRIPTION
 *
 *
 * ------------------------------------------------------------------- */
.project-description {
    background: var(--color-white);
}

.project-description h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
}

.project-description p {
    font-size: var(--text-md);
    line-height: 1.7;
    color: var(--color-text);
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: var(--spacing-xxl);
}

@media screen and (max-width: 800px) {
    .project-description .column:first-child {
        margin-bottom: var(--spacing-lg);
    }
}

/* ===================================================================
 * # STATS ICONS
 *
 *
 * ------------------------------------------------------------------- */
.stats-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
    color: var(--color-text);
}

.stats-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--color-primary);
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 var(--spacing-md);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    max-width: 2000px;
    margin: 0 auto;
    margin-top: 80px;
}

/* --------------------------------------------------------------------
 * ## stat item
 * -------------------------------------------------------------------- */
.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

/* --------------------------------------------------------------------
 * ## stat icon
 * -------------------------------------------------------------------- */
.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: var(--color-primary);
}

/* --------------------------------------------------------------------
 * ## stat number
 * -------------------------------------------------------------------- */
.stat-number {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    line-height: 1.2;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--color-text-light);
    line-height: 1.4;
    font-weight: 400;
}

/* ===================================================================
 * # INFO
 *
 *
 * ------------------------------------------------------------------- */
.s-info {
    position: relative;
    padding: var(--vspace-4) 0;
    background-color: var(--color-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
/* --------------------------------------------------------------------
 * ## info bg
 * -------------------------------------------------------------------- */
.s-info__bg {
    display             : block;
    position            : absolute;
    top                 : 0;
    left                : 0;
    right               : 0;
    bottom              : 0;
    width               : 100%;
    height              : 100%;
    background-image    : url(../images/info-bg-k.jpg);
    background-repeat   : no-repeat;
    background-position : center;
    background-size     : cover;
    opacity             : 0.4;
}

/* --------------------------------------------------------------------
 * ## tabs
 * -------------------------------------------------------------------- */
.tab-content {
    width: 100%;
    position: relative;
}

.tab-content__item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content__item.active,
.tab-content__item:first-child {
    display: block;
    opacity: 1;
}

.tab-content__item-header {
    margin-bottom: var(--vspace-2);
    text-align: center;
}

.tab-content__item-header h2 {
    font-size: var(--text-lg);
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: var(--vspace-1);
}

/* ------------------------------------------------------------------- 
 * ## services 
 * ------------------------------------------------------------------- */
.services-list {
    margin-top : var(--vspace-1_5);
}

.services-list h4 {
    margin-top : 0;
}

.services-list__item {
    margin-bottom : var(--vspace-0_5);
}

.services-list__item-icon svg {
    height : var(--vspace-1_25);
    width  : var(--vspace-1_25);
}

.services-list__item-icon svg path {
    fill : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * ## MailChimp form
 * ------------------------------------------------------------------- */
.mc-form input[type="email"] {
    background-color : white;
    margin-bottom    : var(--vspace-0_5);
    border           : 1px solid var(--color-gray-3);
}

.mc-form input[type="email"]:focus {
    box-shadow : 0 0 5px var(--color-1);
    border     : 1px solid var(--color-1);
}

.mc-form .mc-status {
    font-size   : var(--text-sm);
    font-weight : 500;
    line-height : var(--vspace-0_75);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * info
 * ------------------------------------------------------------------- */
@media screen and (max-width: 700px) {
    .s-info {
        padding-top : var(--vspace-3);
    }

    .tab-nav {
        font-weight : 500;
    }

    .tab-nav__list {
        display       : block;
        border        : 1px solid var(--color-text);
        border-radius : var(--border-radius);
    }

    .tab-nav__list li {
        margin        : 0;
        border-radius : 0;
        border-style  : none none solid none;
    }

    .tab-nav__list li:last-child {
        border-bottom : none;
    }

    .tab-nav__list a {
        padding : var(--vspace-0_375) 2.8rem;
    }
}

@media screen and (max-width: 400px) {
    .s-info h2 {
        font-size   : var(--text-xl);
        line-height : var(--vspace-1_25);
    }
}

/* ===================================================================
 * # FOOTER
 *
 *
 * ------------------------------------------------------------------- */
.s-footer {
    background-color : var(--color-gray-12);
    padding-top      : var(--vspace-2_5);
    padding-bottom   : var(--vspace-2);
    font-weight      : 300;
    font-size        : calc(var(--text-size) * 0.9444);
    line-height      : calc(0.9375 * var(--space));
    color            : rgba(255, 255, 255, 0.3);
}

.s-footer>.row {
    max-width : 1020px;
}

.s-footer a {
    color : rgba(255, 255, 255, 0.3);
}

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

.s-footer .desc {
    padding-right : var(--vspace-0_375);
    
}

.s-footer h4 {
    margin-top    : 0;
    margin-bottom : var(--vspace-1_25);
    color         : white;
}

.s-footer p,
.s-footer ul {
    margin-bottom : calc(0.9375 * var(--space));
}

.s-footer strong {
    font-weight : 400;
    color       : white;
}

.s-footer__bottom {
    margin-top  : var(--vspace-1);
    padding-top : var(--vspace-0_5);
    border-top  : 1px solid rgba(255, 255, 255, 0.05);
    position    : relative;
}

.s-footer__bottom a {
    color : white;
}

/* --------------------------------------------------------------------
 * ## footer logo
 * -------------------------------------------------------------------- */
 .s-footer__logo {
    text-align: center;
    margin-bottom: var(--vspace-0_25);
}

.s-footer__logo img {
    width: 120px;
    height: 110px;
    display: inline-block;
}

/* --------------------------------------------------------------------
 * ## footer social
 * -------------------------------------------------------------------- */
.s-footer__social {
    list-style : none;
    display    : flex;
    margin     : 0;
}

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

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

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

.s-footer__social svg path {
    fill : white;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
    z-index  : 2;
    position : absolute;
    top      : -2.8rem;
    right    : 0;
}

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

.ss-go-top svg path {
    fill       : white;
    transition : all .3s ease-in-out;
}

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

.ss-go-top a:focus,
.ss-go-top a:hover {
    background-color : var(--color-1-dark);
    border-color     : var(--color-1-dark);
}

/* --------------------------------------------------------------------
 * ## copyright
 * -------------------------------------------------------------------- */
.ss-copyright {
    font-size   : var(--text-xs);
    line-height : var(--vspace-0_75);
    position    : relative;
}

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

.ss-copyright span::after {
    content : "|";
    display : inline-block;
    padding : 0 .8rem 0 1rem;
    color   : rgba(255, 255, 255, 0.2);
}

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

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-footer .desc {
        padding-right : 0;
    }
}

@media screen and (max-width: 700px) {
    .s-footer h4 {
        margin-bottom : var(--vspace-0_5);
    }

    .s-footer__info {
        margin-bottom : var(--vspace-1_25);
    }
}

@media screen and (max-width: 600px) {
    .s-footer {
        padding-bottom : var(--vspace-1);
    }

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

    .ss-copyright span {
        display : block;
    }

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

@media screen and (max-width: 400px) {
    .ss-go-top {
        top   : -2.4rem;
        right : 2rem;
    }

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

    .ss-go-top a {
        height : 4.8rem;
        width  : 4.8rem;
    }
}
/* ===================================================================
 * # TESTIMONIOS
 *
 *
 * ------------------------------------------------------------------- */
.s-hero__title-testimonios {
  font-size: var(--text-display-2);
  font-weight: 700;
  color: var(--color-white);
  margin-top: var(--vspace-1);
  margin-bottom: var(--vspace-1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.js .s-hero__title-testimonios {
  animation: fadeInUp 0.8s ease-out;
}

/* --------------------------------------------------------------------
 * ## testimonios grid
 * -------------------------------------------------------------------- */

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 35px auto;
    padding: 0 20px;
}

.testimonio-card {
    background: transparent;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonio-image {
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.testimonio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-content {
    padding: 0 5px;
    text-align: center;
}

.testimonio-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-1);
    margin-bottom: 5px;
    margin-top: var(--vspace-0_125);
}

.testimonio-role {
    font-size: 1rem;
    color: var(--color-gray-1);
    font-style: italic;
    margin-bottom: var(--vspace-0_5);
    margin-top: var(--vspace-0_125);
}

/* --------------------------------------------------------------------
 * ## testimonios carousel
 * -------------------------------------------------------------------- */
.testimonios-carousel-section {
    padding: 40px 0;
    background-color: #f8f8f8;
}
/* Título del carrusel */
.carousel-title-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.carousel-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.carousel-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    touch-action: pan-y pinch-zoom;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    --carousel-translate: 0%;
  --touch-preview: 0px;
}

.carousel-slide {
    min-width: 33.333%;
    padding: 0 15px;
}

.carousel-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.carousel-card-image {
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card-content {
    padding: 15px 25px;
}

.carousel-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #034E4A;
    margin-bottom: 5px;
    margin-top: var(--vspace-0_25);
}

.carousel-card-role {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 12px;
    margin-top: var(--spacing-xs);
}

.carousel-card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-bottom: var(--spacing-xs);
}

/* --------------------------------------------------------------------
 * ## navigation buttons
 * -------------------------------------------------------------------- */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.carousel-nav:hover {
    background: var(--color-accent);
    color: white;
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* --------------------------------------------------------------------
 * ## carousel indicators
 * -------------------------------------------------------------------- */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 1.5rem 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 10;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(3, 78, 74, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.carousel-indicator.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(3, 78, 74, 0.4);
}

.carousel-slide.clone {
    pointer-events: none; 
    opacity: 0.99;       
}

/* --------------------------------------------------------------------
 * ## testimonios responsive design
 * -------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .carousel-slide {
        min-width: 50%;
    }

    .carousel-indicators {
      gap: 10px;
      padding: 1.25rem 0;
  }
  
  .carousel-indicator {
      width: 10px;
      height: 10px;
  }
}

@media screen and (max-width: 768px) {
    .s-hero__title-testimonios {
      font-size: var(--text-xxl);
    }

    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .carousel-slide {
        min-width: 50%;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-indicators {
        gap: 8px;
        padding: 1rem 0;
    }
  
    .carousel-indicator {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
    }
}

@media screen and (max-width: 480px) {
    .testimonios-hero {
        padding: 80px 0 60px;
    }

    .s-hero__title-testimonios {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .testimonio-image {
        height: 200px;
    }

    .carousel-card-image {
        height: 250px;
    }

    .carousel-indicators {
        gap: 12px;
        padding: 1rem 0;
    }
    
    .carousel-indicator {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
        border-width: 2px;
    }
    
    .carousel-indicator.active {
        transform: scale(1.2);
    }
}

@media screen and (max-width: 768px) {
    .carousel-title {
        font-size: var(--text-lg);
    }
    
    .carousel-subtitle {
        font-size: var(--text-sm);
    }
    
    .carousel-title-section {
        margin-bottom: var(--spacing-lg);
    }
}

