/* =================================================================== 
 *  Knox Main Stylesheet
 *  Ver. 1.0.0
 *  03-23-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 
 *  # 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
 *      ## theme-specific typography classes
 *  # INTRO
 *      ## intro background
 *      ## intro slider
 *      ## intro particles
 *      ## intro header
 *      ## intro content
 *      ## intro counter
 *      ## intro social
 *      ## intro notify
 *      ## modal 
 *      ## intro scrolldown
 *      ## intro transitions
 *  # DETAILS
 *      ## tabs
 *      ## services
 *      ## contact
 *      ## go top
 *      ## footer 
 *
 * ------------------------------------------------------------------ */


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

/* ------------------------------------------------------------------- 
 * ## fonts 
 * ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Marcellus&family=Gothic+A1:wght@300;400;500;600;700&display=fallback");

:root {
    --font-1    : "Lora", serif;
    --font-2    : "Gothic A1", sans-serif;
    --font-3    : "Marcellus", serif;

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

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

    /* color-1(#5B5E53)
     * color-2(#36151E)
     * color-3(#FFE4AF)
     */
    --color-1                      : hsla(76, 6%, 35%, 1);
    --color-2                      : hsla(344, 44%, 25%, 1);
    --color-3                      : rgba(111, 128, 103, 1);

    /* theme color variations
     */
    --color-1-lighter              : hsla(76, 6%, 55%, 1);
    --color-1-light                : hsla(76, 6%, 45%, 1);
    --color-1-dark                 : hsla(76, 6%, 25%, 1);
    --color-1-darker               : hsla(76, 6%, 15%, 1);
    --color-2-lighter              : hsla(344, 44%, 45%, 1);
    --color-2-light                : hsla(344, 44%, 35%, 1);
    --color-2-dark                 : hsla(344, 44%, 15%, 1);
    --color-2-darker               : hsla(344, 44%, 5%, 1);
    --color-3-lighter              : hsla(40, 100%, 97%, 1);
    --color-3-light                : hsla(40, 100%, 85%, 1);
    --color-3-dark                 : hsla(40, 100%, 65%, 1);
    --color-3-darker               : hsla(40, 100%, 55%, 1);

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

    /* 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-dark              : var(--color-black);
    --color-text                   : var(--color-gray-10);
    --color-text-light             : var(--color-gray-7);
    --color-placeholder            : var(--color-gray-6);

    /* buttons
     */
    --color-btn                    : var(--color-3-light);
    --color-btn-text               : var(--color-black);
    --color-btn-hover              : var(--color-3);
    --color-btn-hover-text         : var(--color--black);
    --color-btn-primary            : var(--color-1-dark);
    --color-btn-primary-text       : var(--color-3-light);
    --color-btn-primary-hover      : var(--color-1-darker);
    --color-btn-primary-hover-text : var(--color-3-light);
    --color-btn-stroke             : var(--color-1-darker);
    --color-btn-stroke-text        : var(--color-black);
    --color-btn-stroke-hover       : var(--color-1-darker);
    --color-btn-stroke-hover-text  : var(--color-3-light);

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

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

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

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

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

    /* type scale
     * ratio 1         :2 | base: 20px
     * -------------------------------------------------------
     *
     * --text-display-3 = (86.00px)
     * --text-display-2 = (71.66px)
     * --text-display-1 = (59.72px)
     * --text-xxxl      = (49.77px)
     * --text-xxl       = (41.47px)
     * --text-xl        = (34.56px)
     * --text-lg        = (28.80px)
     * --text-md        = (24.00px)
     * --text-size      = (20.00px) BASE
     * --text-sm        = (16.67px)
     * --text-xs        = (13.89px)
     *
     * ---------------------------------------------------------
     */
    --text-scale-ratio : 1.2;
    --text-size        : var(--base-font-size);
    --text-xs          : calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm          : calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md          : calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
    --text-lg          : calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl          : calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl         : calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl        : calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-display-1   : calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-display-2   : calc(var(--text-display-1) * var(--text-scale-ratio));
    --text-display-3   : calc(var(--text-display-2) * var(--text-scale-ratio));

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

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

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

    /* widths for rows and containers
     */
    --width-full     : 100%;
    --width-max      : 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 : 1.8rem;
    }
}

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


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

body {
    margin : 0;
}

main {
    display : block;
}

h1 {
    font-size : 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;
     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;
     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     : 92%;
    max-width : var(--width-grid-max);
    margin    : 0 auto;
    display   : flex;
    flex-flow : row wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------
 * ## mobile devices 
 * -------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .row {
        width         : 100%;
        padding-left  : 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;
    }
}


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

/* --------------------------------------------------------------------
 * ## base type styles
 * -------------------------------------------------------------------- */
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-2);
    border-bottom : 1px solid var(--color-2);
    transition    : all 0.3s ease-in-out;
}

a:focus,
a:hover,
a:active {
    color         : black;
    border-bottom : 1px solid black;
}

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

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

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

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

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

h1, .h1 {
    font-size      : var(--text-display-1);
    line-height    : var(--vspace-2);
    letter-spacing : -.015em;
}

@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 : -.015em;
}

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

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

em,
i {
    font-style : italic;
}

strong,
b {
    font-weight : 600;
    color       : var(--color-text-dark);
}

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

/* blockquotes
 */
blockquote {
    margin      : 0 0 var(--vspace-1) 0;
    padding     : var(--vspace-1) var(--vspace-1_25);
    border-left : 4px solid var(--color-text-dark);
    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  : italic;
    line-height : var(--vspace-1_25);
    color       : var(--color-text-dark);
    padding     : 0;
}

blockquote cite {
    display     : block;
    font-family : var(--font-2);
    font-weight : 400;
    font-size   : calc(var(--text-size) * 0.8);
    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    : 500;
    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-3);
    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-2);
    font-weight : 300;
    font-size   : calc(var(--text-size) * 1.25);
    line-height : calc(1.25 * var(--space));
    color       : var(--color-text-dark);
}

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

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

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

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

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

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

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

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

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

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

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

ul {
    list-style : disc;
}

li {
    display : list-item;
}

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

ul li {
    padding-left : .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,
img,
.video-container,
.ss-custom-select {
    margin-bottom : var(--vspace-1);
}


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

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

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

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

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

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

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

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

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

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

    40% {
        top : -6px;
    }

    80% {
        top : 0;
    }
}

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

    40% {
        top : -6px;
    }

    80% {
        top : 0;
    }
}

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

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

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

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

    40% {
        opacity : 0.2;
    }

    80% {
        opacity : 1;
    }
}

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

    40% {
        opacity : 0.2;
    }

    80% {
        opacity : 1;
    }
}

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

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

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

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

    40% {
        -webkit-transform : scale(1.1);
        transform         : scale(1.3);
    }

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

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

    40% {
        transform : scale(1.3);
    }

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

/* ------------------------------------------------------------------- 
 * ## page loaded
 * ------------------------------------------------------------------- */
.ss-loaded #preloader {
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: .9s;
    transition-delay: .9s;
    transition-timing-function: ease-in-out;
}

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


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

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

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

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

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

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

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

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

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

label,
legend {
    font-family   : var(--font-2);
    font-weight   : 500;
    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-2);
    font-weight : 400;
    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-2);
    font-weight             : 500;
    font-size               : var(--text-xs);
    font-size               : calc(var(--text-size) * 0.75);
    height                  : var(--btn-height);
    line-height             : calc(var(--btn-height) - 21px);
    padding                 : 0 3.6rem;
    margin                  : 0 0.4rem var(--vspace-0_5) 0;
    color                   : var(--color-btn-text);
    text-decoration         : none;
    text-align              : center;
    white-space             : nowrap;
    cursor                  : pointer;
    transition              : all .3s;
    border-radius           : var(--border-radius);
    background-color        : var(--color-btn);
    border                  : 1px 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        : 77%;
    margin-right : 0;
}

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

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

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

.btn--stroke,
button.btn--stroke {
    background : transparent;
    border     : 1px 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);
    border     : 1px 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-2);
    font-weight : 500;
}

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 a {
    border : none;
}

.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-2);
    font-weight   : 500;
    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-black);
    border-radius : var(--border-radius);
    transition    : all, .3s, ease-in-out;
}

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

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

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

.pgn__prev,
.pgn__next {
    display         : inline-flex;
    flex-flow       : row wrap;
    justify-content : center;
    align-items     : center;
    height          : var(--pgn-num-height);
    width           : 4.8rem;
    line-height     : var(--vspace-1);
    border-radius   : var(--border-radius);
    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 : var(--color-1-darker);
}

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

.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-2);
    font-weight   : 400;
    font-size     : calc(var(--text-size) * 0.8);
    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-2);
    font-weight    : 500;
    font-size      : var(--text-xs);
    line-height    : var(--vspace-0_75);
    text-transform : uppercase;
    letter-spacing : .2em;
    color          : var(--color-text-dark);
}

.skill-bars li .progress {
    background : black;
    position   : relative;
    height     : 100%;
}

.skill-bars li .progress span {
    display       : block;
    font-family   : var(--font-2);
    color         : white;
    font-size     : 1.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-2);
    font-size   : var(--text-lg);
    font-weight : 500;
    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-2);
    font-size   : calc(var(--text-size) * 0.8);
    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);
}


/* ------------------------------------------------------------------- 
 * ## 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 {
    position       : relative;
    padding-bottom : 56.25%;
    height         : 0;
    overflow       : hidden;
}

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

/* ------------------------------------------------------------------- 
 * ## theme-specific typography classes
 * ------------------------------------------------------------------- */
.text-pretitle {
    font-family   : var(--font-2);
    font-size     : var(--text-md);
    font-weight   : 300;
    margin-top    : 0;
    margin-bottom : 0;
    margin-left   : .4rem;
    position      : relative;
}

.text-pretitle::before {
    content          : "";
    display          : block;
    height           : 1px;
    width            : 5.6rem;
    background-color : var(--color-2-darker);
    opacity          : .15;
    position         : absolute;
    top              : 50%;
    right            : calc(100% + 1.6rem);
}

.text-huge-title {
    --text-huge       : 11.2rem;
    --text-multiplier : 1;
    font-family       : var(--font-3);
    font-weight       : 400;
    font-size         : calc(var(--text-huge) * var(--text-multiplier));
    line-height       : 1.036;
    margin-top        : 0;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * project-wide shared styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1600px) {
    .text-pretitle::before {
        width : 4rem;
    }

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

@media screen and (max-width: 1500px) {
    .text-pretitle {
        margin-left : 0;
    }

    .text-pretitle::before {
        display : none;
    }
}

@media screen and (max-width: 1200px) {
    .text-pretitle {
        font-size : calc(var(--text-size) * 1.05);
    }

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

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

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

@media screen and (max-width: 800px) {
    .text-pretitle {
        font-size : var(--text-sm);
    }

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

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

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

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


/* ===================================================================
 * # INTRO
 *
 *
 * ------------------------------------------------------------------- */
.s-intro {
    --header-height     : 1.8rem;
    --logo-width        : 118px;
    --text-display-size : 11.2rem;
    --text-multiplier   : 1;
    z-index             : 3;
    background-color    : black;
    width               : 100%;
    height              : 100vh;
    min-height          : calc(25.5 * var(--space));
    box-shadow          : 0 0.8px 0.8px rgba(0, 0, 0, 0.031), 
                          0 1.9px 1.9px rgba(0, 0, 0, 0.044), 
                          0 3.9px 3.9px rgba(0, 0, 0, 0.056), 
                          0 8px 8px rgba(0, 0, 0, 0.069), 
                          0 22px 22px rgba(0, 0, 0, 0.1);
    overflow            : hidden;
    position            : relative;
}

.s-intro a {
    border : none;
}

.theme-particles .s-intro {
    background-color : #0d0e0c;
}

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

.theme-particles .s-intro .s-intro-content__bottom {
    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        : .45;
}

/* --------------------------------------------------------------------
 * ## intro slider
 * -------------------------------------------------------------------- */
.s-intro__slider {
    display  : block;
    position : absolute;
    top      : 0;
    left     : 0;
    right    : 0;
    bottom   : 0;
    width    : 100%;
    height   : 100%;
}

.s-intro__slide {
    background-repeat   : no-repeat;
    background-position : 50% 50%;
    background-size     : cover;
    position            : relative;
}

.s-intro__slide::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__slide::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        : .4;
}

.s-intro__slide.bg-opacity-10::before {
    opacity : .1;
}

.s-intro__slide.bg-opacity-20::before {
    opacity : .2;
}

.s-intro__slide.bg-opacity-30::before {
    opacity : .3;
}

.s-intro__slide.bg-opacity-40::before {
    opacity : .4;
}

.s-intro__slide.bg-opacity-50::before {
    opacity : .5;
}

.s-intro__slide.bg-opacity-60::before {
    opacity : .6;
}

.s-intro__slide.bg-opacity-70::before {
    opacity : .7;
}

.s-intro__slide.bg-opacity-80::before {
    opacity : .8;
}

.s-intro__slide.bg-opacity-90::before {
    opacity : .9;
}

/* -------------------------------------------------------------------
 * ## 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 header
 * -------------------------------------------------------------------- */
.s-intro__header {
    width    : 100%;
    height   : var(--header-height);
    position : absolute;
    top      : 0;
    left     : 0;
}

.s-intro__logo {
    z-index  : 4;
    position : absolute;
    top      : 2.4rem;
    left     : 4rem;
}

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

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

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

.s-intro__content .text-pretitle,
.s-intro__content .text-huge-title {
    color : white;
}

.s-intro__content .text-pretitle::before {
    background-color : white;
}

.s-intro__content-bottom {
    display    : flex;
    width      : calc(100% - 4rem);
    margin-top : var(--vspace-2);
}

.s-intro__content-bottom-block {
    margin-right : calc(var(--gutter) * 4);
}

.s-intro__content-bottom-block:last-child {
    margin-right : 0;
}

.s-intro__content-bottom h5 {
    font-size     : var(--text-size);
    font-weight   : 300;
    margin-top    : 0;
    margin-bottom : var(--vspace-0_375);
    color         : rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------
 * ## intro counter
 * -------------------------------------------------------------------- */
.s-intro .counter {
    display     : flex;
    font-family : var(--font-2);
    font-weight : 300;
    font-size   : calc(var(--text-size) * 1.3);
    line-height : var(--vspace-1_25);
    color       : white;
}

.s-intro .counter__time {
    margin-right : .8rem;
    display      : flex;
}

.s-intro .counter__time span:last-child {
    font-size   : var(--text-xs);
    font-weight : 300;
    color       : rgba(255, 255, 255, 0.3);
    margin-left : .4rem;
}

.s-intro .counter__time:last-child {
    margin-right : 0;
}

/* --------------------------------------------------------------------
 * ## intro social
 * -------------------------------------------------------------------- */
.s-intro .social {
    list-style  : none;
    font-family : var(--font-2);
    font-weight : 300;
    font-size   : var(--text-md);
    line-height : var(--vspace-1_25);
    margin-left : 0;
}

.s-intro .social a {
    color : white;
}

.s-intro .social li {
    display      : inline-block;
    padding-left : 0;
    margin-right : 1rem;
}

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

/* --------------------------------------------------------------------
 * ## intro notify
 * -------------------------------------------------------------------- */
.s-intro__notify {
    --color-btn-stroke       : rgba(255, 255, 255, .15);
    --color-btn-stroke-hover : rgba(0, 0, 0, .25);
    --color-btn-stroke-text  : white;
    z-index                  : 2;
    position                 : absolute;
    top                      : 2.4rem;
    right                    : 4rem;
}

.s-intro__notify button.btn--stroke {
    margin : 0;
}

.s-intro__notify button.btn--stroke:focus,
.s-intro__notify button.btn--stroke:hover {
    border : 1px solid transparent;
}

/* -------------------------------------------------------------------
 * ## modal 
 * ------------------------------------------------------------------- */
.ss-modal {
    z-index          : 400;
    display          : flex;
    justify-content  : center;
    align-items      : center;
    width            : 100%;
    height           : 100vh;
    text-align       : center;
    background-color : rgba(5, 5, 5, 0.5);
    overflow-y       : auto;
    opacity          : 0;
    visibility       : hidden;
    transition       : opacity 0.3s 0.3s;
    position         : fixed;
    left             : 0;
    top              : 0;
}

.ss-modal h4 {
    margin-top : 0;
}

.ss-modal svg {
    width         : var(--vspace-1_5);
    height        : var(--vspace-1_5);
    margin-bottom : var(--vspace-0_125);
}

.ss-modal svg path {
    stroke : var(--color-1-dark);
}

.ss-modal__text {
    font-size     : var(--text-sm);
    line-height   : var(--vspace-0_875);
    margin-bottom : var(--vspace-0_5);
}

.ss-modal__inner {
    padding          : var(--vspace-1_75) var(--vspace-1) var(--vspace-0_25);
    width            : 90vw;
    max-width        : 44rem;
    border-radius    : var(--border-radius);
    background-color : var(--color-body);
    box-shadow       : 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity          : 0;
    visibility       : hidden;
    transform        : scale(0.8);
    transition       : all 0.3s 0s;
    position         : relative;
}

.ss-modal__close {
    display  : block;
    right    : 2rem;
    top      : 2rem;
    cursor   : pointer;
    width    : 12px;
    height   : 12px;
    position : absolute;
}

.ss-modal__close::before,
.ss-modal__close::after {
    content  : '';
    position : absolute;
    display  : inline-block;
    width    : 1px;
    height   : 14px;
    top      : 0;
    left     : 5px;
}

.ss-modal__close::before {
    transform        : rotate(45deg);
    background-color : black;
}

.ss-modal__close::after {
    transform        : rotate(-45deg);
    background-color : black;
}

.ss-modal form input[type="email"] {
    margin-bottom : var(--vspace-0_5);
}

.ss-modal form input[type="submit"] {
    margin-bottom : var(--vspace-0_625);
}

.ss-modal form .mc-status {
    font-family : var(--font-2);
    font-weight : 500;
    font-size   : var(--text-xs);
    line-height : var(--vspace-0_625);
    color       : black;
    padding     : 0 .8rem;
}

.ss-modal form .mc-status.error-message {
    color : var(--color-error-content);
}

.ss-modal form .mc-status.success-message {
    color : var(--color-success-content);
}

.ss-modal.show-modal {
    opacity    : 1;
    visibility : visible;
    transition : opacity 0.3s 0s;
}

.ss-modal.show-modal .ss-modal__inner {
    opacity    : 1;
    visibility : visible;
    transform  : scale(1);
    transition : all 0.3s 0.3s;
}

/* --------------------------------------------------------------------
 * ## intro scrolldown
 * -------------------------------------------------------------------- */
.s-intro__scroll {
    z-index          : 3;
    width            : 250px;
    transform        : rotate(-90deg);
    transform-origin : bottom left;
    position         : absolute;
    left             : calc(100% - 4.8rem);
    bottom           : 0;
}

.s-intro__scroll a {
    display        : block;
    font-family    : var(--font-2);
    font-weight    : 300;
    font-size      : calc(var(--text-size) * 0.5);
    text-transform : uppercase;
    letter-spacing : .35em;
    padding-left   : 6.6rem;
    color          : rgba(255, 255, 255, 0.5);
    position       : relative;
}

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

.s-intro__scroll a::before {
    content          : "";
    display          : block;
    height           : 1px;
    width            : 8rem;
    background-color : rgba(255, 255, 255, 0.15);
    position         : absolute;
    top              : calc(50% - 1px);
    left             : 0;
}

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

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

.s-intro__content {
    transition-property : opacity;
}

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

.no-js .s-intro__logo,
.no-js .s-intro__notify,
.no-js .s-intro__content,
.no-js .s-intro__scroll,
.ss-show .s-intro__logo,
.ss-show .s-intro__notify,
.ss-show .s-intro__content,
.ss-show .s-intro__scroll {
    opacity : 1;
}

.no-js .s-intro__logo,
.no-js .s-intro__notify,
.ss-show .s-intro__logo,
.ss-show .s-intro__notify {
    transform : translate(0, 0);
}

.no-js .s-intro__content,
.ss-show .s-intro__content {
    transition-duration : 1.5s;
    transition-delay    : .5s;
}

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

@media screen and (max-width: 360px) {
    .s-intro__notify {
        transform : translate(0, 100%);
    }

    .no-js .s-intro__notify,
    .ss-show .s-intro__notify {
        transition-delay : 1s;
    }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1800px) {
    .s-intro__content {
        max-width : 1500px;
    }
}

@media screen and (max-width: 1700px) {
    .s-intro__content {
        max-width : 1420px;
    }
}

@media screen and (max-width: 1600px) {
    .s-intro__content {
        max-width : 1360px;
    }

    .s-intro__content-bottom h5 {
        font-size   : var(--text-sm);
        line-height : var(--vspace-0_75);
    }
}

@media screen and (max-width: 1200px) {
    .s-intro__scroll {
        left : calc(100% - 3.8rem);
    }
}

@media screen and (max-width: 1000px) {
    .s-intro__content .text-huge-title {
        padding-right : calc(var(--gutter) * 4);
    }

    .s-intro__content .text-huge-title br {
        display : none;
    }
}

@media screen and (max-width: 800px) {
    .s-intro__content .text-huge-title {
        padding-right : 0;
    }

    .s-intro__content-bottom-block {
        margin-right : calc(var(--gutter) * 3);
    }

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

    .s-intro__content-bottom .counter__time span:last-child {
        font-size : calc(var(--text-size) * 0.65);
    }

    .s-intro .social {
        font-size   : var(--text-size);
        line-height : var(--vspace-0_875);
    }

    .s-intro__scroll a {
        padding-left : 5.6rem;
    }

    .s-intro__scroll a::before {
        width : 4rem;
    }
}

@media screen and (max-width: 600px) {
    .s-intro {
        --header-height : 0rem;
    }

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

    .s-intro__notify {
        right : calc(6vw);
    }

    .s-intro__notify button.btn--stroke {
        margin  : 0;
        padding : 0 2.4rem;
    }

    .s-intro__scroll {
        left : calc(100% - 2.8rem);
    }
}

@media screen and (max-width: 550px) {
    .s-intro__content {
        align-items : center;
    }

    .s-intro__content-bottom {
        display    : block;
        margin-top : var(--vspace-1_5);
    }

    .s-intro__content-bottom-block {
        margin-right : 0;
    }

    .s-intro__content-bottom-block:last-child {
        display : none;
    }
}

@media screen and (max-width: 400px) {
    .s-intro {
        --logo-width : 70px;
    }

    .s-intro__logo {
        left : calc(6vw);
    }

    .s-intro__content {
        padding-bottom : 12rem;
    }

    .s-intro__scroll {
        left : calc(100% - 2rem);
    }
}

@media screen and (max-width: 360px) {
    .s-intro__notify {
        top    : auto;
        right  : auto;
        left   : calc(6vw + .4rem);
        bottom : 6rem;
    }
}


/* ===================================================================
 * # DETAILS
 *
 *
 * ------------------------------------------------------------------- */
.s-details {
    --overlay-opacity : 1;
    padding-top       : var(--vspace-4);
    padding-bottom    : var(--vspace-3);
    min-height        : 100vh;
    width             : 100%;
}

.s-details::after {
    content          : "";
    display          : block;
    position         : absolute;
    top              : 0;
    left             : 0;
    right            : 0;
    bottom           : 0;
    width            : 100%;
    height           : 100%;
    background-color : var(--color-1-darker);
    opacity          : var(--overlay-opacity);
    pointer-events   : none;
}

/* ====== EXPANDIR ANCHO EN DETAILS (la limitante real era .row) ====== */
.s-details .row{
  max-width: var(--width-wide) !important; /* 1400px en tu :root */
  width: 94% !important;
}

/* opcional: si lo quieres todavía más ancho */
@media (min-width: 1200px){
  .s-details .row{
    max-width: var(--width-wider) !important; /* 1600px */
  }
}

.s-details .text-huge-title {
    margin-bottom : var(--vspace-3_5);
}

.s-details h2 {
    margin-top    : 0;
    margin-bottom : var(--vspace-1_75);
}

/* --------------------------------------------------------------------
 * ## tabs
 * -------------------------------------------------------------------- */
.tab-nav {
    font-family    : var(--font-2);
    font-weight    : 600;
    font-size      : calc(var(--text-size) * 0.6);
    text-transform : uppercase;
    letter-spacing : .35em;
    text-align     : center;
    margin-bottom  : var(--vspace-1_5);
}

.tab-nav__list {
    list-style    : none;
    display       : flex;
    overflow      : hidden;
    border-radius : var(--border-radius) var(--border-radius) 0 0;
    border-bottom : 1px solid var(--color-border);
    margin        : 0;
}

.tab-nav__list li {
    padding-left : 0;
    flex         : 1;
    border-right : 1px solid var(--color-body);
    overflow     : hidden;
    position     : relative;
}

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

.tab-nav__list li::before {
    content          : "";
    display          : block;
    background-color : var(--color-1);
    border-radius    : var(--border-radius) var(--border-radius) 0 0;
    width            : 100%;
    height           : 100%;
    transition       : top 0.6s cubic-bezier(0.28, 0.12, 0.22, 1);
    position         : absolute;
    top              : 100%;
    left             : 0;
}

.tab-nav__list li[data-tab-active]::before {
    top : 0;
}

.tab-nav__list a {
    display  : block;
    padding  : .8rem 2rem;
    color    : var(--color-2-darker);
    border   : none;
    position : relative;
}

.tab-nav__list a[data-tab-active] {
    color       : var(--color-3-light);
    font-weight : 400;
    outline     : 0;
}

.theme-particles .tab-nav__list li::before {
    background-color : var(--color-1-darker);
}

.tab-content {
    position : relative;
}

.tab-content__item {
    opacity    : 0;
    visibility : hidden;
    height     : 0;
    overflow   : hidden;
    position   : absolute;
    top        : 4rem;
}

.tab-content__item[data-tab-active] {
    opacity                    : 1;
    visibility                 : visible;
    height                     : auto;
    transition-property        : opacity, visibility, top;
    transition-duration        : .6s;
    transition-timing-function : cubic-bezier(0.28, 0.12, 0.22, 1);
    transition-delay           : 0s;
    position                   : relative;
    top                        : 0;
}

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

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

.services-list h4::before {
    display           : block;
    content           : counter(ctr, decimal-leading-zero) ".";
    font-family       : var(--font-2);
    font-size         : var(--text-sm);
    line-height       : var(--vspace-0_75);
    margin-bottom     : var(--vspace-0_375);
    color             : var(--color-2-darker);
    counter-increment : ctr;
}

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

/* ------------------------------------------------------------------- 
 * ## contact
 * ------------------------------------------------------------------- */

/* link list
 */
.link-list {
    list-style  : none;
    margin-left : 0;
}

.link-list li {
    padding-left : 0;
}

.link-list a {
    color  : var(--color-text);
    border : none;
}

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

/* email link
 */
.contact-email {
    --text-email-size : 6.8rem;
    --multiplier      : 1;
    display           : inline-block;
    font-family       : var(--font-2);
    font-weight       : 400;
    font-size         : calc(var(--text-email-size) * var(--multiplier));
    line-height       : 1;
    margin            : var(--vspace-1_75) 0 var(--vspace-0_25);
    color             : var(--color-2-darker);
    border-bottom     : 1px solid var(--color-border);
}

.contact-email:focus,
.contact-email:hover {
    color         : var(--color-1-dark);
    border-bottom : 1px solid rgba(0, 0, 0, 0.5);
}

/* contact numbers
 */
.contact-number {
    display     : block;
    font-family : var(--font-2);
    font-weight : 400;
    font-size   : var(--text-size);
    line-height : var(--vspace-1);
}

.contact-number span {
    display      : inline-block;
    margin-left  : .8rem;
    margin-right : .8rem;
    font-weight  : 300;
    color        : var(--color-text-light);
}

.contact-number a {
    color  : var(--color-2-darker);
    border : none;
}

.contact-number a:focus,
.contact-number a:hover {
    color : var(--color-1);
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
    z-index    : 2;
    opacity    : 0;
    visibility : hidden;
    transform  : translate(0, 100%);
    transition : all 0.6s cubic-bezier(0.28, 0.12, 0.22, 1);
    position   : fixed;
    bottom     : 6.4rem;
    right      : 3.6rem;
}

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

.ss-go-top svg path {
    fill       : var(--color-2-darker);
    transition : all .3s ease-in-out;
}

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

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

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

.ss-go-top a:focus svg path,
.ss-go-top a:hover svg path {
    fill : var(--color-3-light);
}

.ss-go-top a span {
    display          : block;
    width            : 150px;
    font-family      : var(--font-2);
    font-weight      : 400;
    font-size        : calc(var(--text-size) * 0.5);
    text-transform   : uppercase;
    letter-spacing   : .35em;
    color            : var(--color-2-darker);
    transform        : rotate(-90deg);
    transform-origin : left bottom;
    position         : absolute;
    left             : calc(50% + var(--vspace-0_5));
    bottom           : calc(100% + 2.8rem);
}

/* ------------------------------------------------------------------- 
 * ## footer 
 * ------------------------------------------------------------------- */
.s-details footer {
    margin-top : var(--vspace-3);
}

.s-details footer a {
    border : none;
}

.ss-copyright {
    z-index     : 2;
    font-family : var(--font-2);
    font-size   : calc(var(--text-size) * 0.75);
    line-height : var(--vspace-0_875);
    position    : relative;
}

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

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

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

/* ------------------------------------------------------------------- 
 * responsive:
 * details
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .ss-go-top {
        right : 2.8rem;
    }

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

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

@media screen and (max-width: 1100px) {
    .ss-go-top a span {
        display : none;
    }
}

@media screen and (max-width: 1000px) {
    .contact-email {
        --multiplier : .882;
    }
}

@media screen and (max-width: 900px) {
    .contact-email {
        --multiplier : .785;
    }

    .contact-number {
        font-size   : var(--text-sm);
        line-height : var(--vspace-0_875);
    }
}

@media screen and (max-width: 700px) {
    .contact-email {
        --multiplier : .6;
    }
}

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

    .s-details .text-huge-title {
        margin-bottom : var(--vspace-2);
    }

    .s-details h2 {
        text-align : center;
    }

    .contact-email {
        --multiplier : .55;
    }

    .tab-nav__list {
        display          : block;
        background-color : #f0ebe0;
        border-radius    : var(--border-radius);
        border           : none;
    }

    .tab-nav__list li {
        border-right  : none;
        border-bottom : 1px solid var(--color-body);
    }

    .tab-nav__list li::before {
        border-radius : 0;
        transition    : none;
    }

    .tab-nav__list li[data-tab-active]::before {
        transition : top 0.6s cubic-bezier(0.28, 0.12, 0.22, 1);
    }

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

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

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

@media screen and (max-width: 500px) {
    .contact-email {
        --multiplier : .5;
    }

    .s-details footer {
        margin-top : var(--vspace-2);
    }

    .ss-copyright span {
        display : block;
    }

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

@media screen and (max-width: 400px) {
    .contact-email {
        font-size : var(--text-xl);
    }

    .contact-number {
        font-size   : var(--text-xs);
        line-height : var(--vspace-0_5);
    }
}

.modal.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* SOLO slide 04 y 05: menos overlay */
.intro-slider .intro-slider-img:nth-child(4)::before,
.intro-slider .intro-slider-img:nth-child(5)::before { opacity: .15 !important; }

.intro-slider .intro-slider-img:nth-child(4)::after,
.intro-slider .intro-slider-img:nth-child(5)::after  { opacity: 0 !important; }

/* SOLO slide 04 y 05: sube encuadre */
.intro-slider .intro-slider-img:nth-child(4),
.intro-slider .intro-slider-img:nth-child(5){
  background-position: 70% 20%;
}


/* solo estas slides: menos overlay */
.s-intro__slide.is-light::before { opacity: .10; }
.s-intro__slide.is-light::after  { opacity: .00; } /* quita el degradado */


.s-intro__slide{
  position: relative;
  overflow: hidden;
}

/* overlay slide-09 encima del fondo */
.s-intro__overlay{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* opcional: si quieres suavizarlo */
   opacity: .0;
  pointer-events: none;
}


/* phone (por defecto oculto) */
.s-intro__phone--mobile{ display:none; }

@media (max-width: 900px){
  .s-intro__phone--mobile{
    display:block;
    position:absolute;
    z-index: 5;

    width: clamp(270px, 85vw, 520px);
    aspect-ratio: 3 / 3;

    

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    right: 50%;
    bottom: -5%;
    transform: translateX(50%);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
  }
}

.s-intro__phone--mobile{
  opacity: 0;
  transform: translateX(50%) translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.ss-show .s-intro__phone--mobile,
.no-js .s-intro__phone--mobile{
  opacity: 1;
  transform: translateX(50%) translateY(0);
  transition-delay: .5s;
}

/* tu texto arriba del overlay */
.s-intro__content,
.s-intro__notify,
.intro-social,
.intro-scroll{
  position: relative;
  z-index: 3;
}

/* 1) Asegura que el slider quede abajo */
.s-intro__slider{
  z-index: 1;
}

/* 2) Todo lo “UI” arriba del slider */
.s-intro__header,
.s-intro__content,
.s-intro__notify,
.s-intro__scroll{
  position: relative;   /* crea capa */
  z-index: 10;
}

/* 3) El botón aún más arriba (por si acaso) */
.s-intro__notify{
  position: absolute;
  z-index: 20;
}

/* 4) IMPORTANTE: tu phone NO debe bloquear clicks */
.s-intro__phone--mobile{
  pointer-events: none;
}


/* ===== FIX: subir texto en móvil ===== */
@media screen and (max-width: 600px) {
  .s-intro {
    height: 100svh; /* mejor que 100vh en iOS */
  }

  .s-intro__content {
    height: 100svh;
    padding-top: 10vh;      /* antes 20vh */
    padding-bottom: 14rem;  /* antes 23.6rem */
    align-items: flex-start; /* antes flex-end / center */
  }
}

/* en pantallas muy chicas, súbelo todavía más */
@media screen and (max-width: 550px) {
  .s-intro__content {
    padding-top: 7vh;
    align-items: flex-start; /* mata el align-items:center que tenías */
  }

  
}

@media screen and (max-width: 400px) {
  .s-intro__content {
    padding-top: 6vh;
    padding-bottom: 12rem;
  }
}

@media screen and (max-width: 600px) {
  .s-intro__content{
    padding-top: 25vh;   /* súbelo/bájalo aquí: 10–16vh */
    align-items: flex-start;
  }
}

/* si también pusiste este, bájalo reduciendo el negativo */
@media screen and (max-width: 600px) {
  .s-intro__content .column{
    transform: translateY(-8px); /* antes -18px; prueba -6 a -12 */
  }
}














/* PHONE (por defecto oculto) */
.s-intro__phone--mobile{ display:none; }

@media (max-width: 900px){
  .s-intro__phone--mobile{
    display:block;
    position:absolute;
    z-index: 12;

    width: clamp(270px, 85vw, 520px);
    aspect-ratio: 9 / 10;

    right: 50%;
    bottom: -6%;
    transform: translateX(50%);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
  }
}

/* Swiper dentro del phone */
.phone-swiper{
  width: 100%;
  height: 100%;
}

/* Difuminado en bordes (izq/der + arriba/abajo) */
.phone-swiper{
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in; /* Safari */
  mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;

  overflow: hidden; /* importante */
}

.phone-swiper img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}

/* pagination opcional */
.phone-pagination{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  z-index: 20;
}


/* El contenedor phone NO bloquea clicks del sitio */
.s-intro__phone--mobile { pointer-events: none; }

/* PERO el swiper dentro del phone sí recibe swipe/tap */
.s-intro__phone--mobile .phone-swiper,
.s-intro__phone--mobile .phone-swiper * {
  pointer-events: auto;
}

/* para evitar que el "tap" seleccione cosas raro */
.s-intro__phone--mobile .swiper-slide {
  -webkit-user-select: none;
  user-select: none;
}


.phone-link{
  display:block;
  width:100%;
  height:100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.phone-link img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}

.mc-form input,
.mc-form textarea{
  margin-bottom: 12px;
  border-radius: 10px;
  padding: 12px 14px;
}

.mc-form textarea{
  resize: none;
}




/* ICONO*/

:root{
  --accent:#5C5F54;      /* tu rosita */
  --text:#1f2937;
  --muted:#6b7280;
  --soft:#fff7f7;        /* fondo suave */
  --radius:18px;
  --block-green: rgba(111, 128, 103, 1);
  --block-cream: #fbf7ef;   /* fondo claro */
  --block-white: #ffffff;
  --block-soft: #f3f4f6; 
}

.sectionBlock{
  padding: 96px 0;
}

@media (max-width: 820px){
  .sectionBlock{ padding: 72px 0; }
}

/* ===== Full-bleed backgrounds (ÚNICO) ===== */
.sectionBlock{
  position: relative;
  padding: 96px 0;
  z-index: 0;
  background: transparent !important;
}

.sectionBlock::before{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  z-index:-1;
  background: var(--brand-beige);
}

/* Secciones verdes */
#servicios.sectionBlock::before,
#faq.sectionBlock::before{
  background: var(--brand-green);
}

/* beige explícito (opcional, por claridad) */
#inicio.sectionBlock::before,
#beneficios.sectionBlock::before,
#amenidades.sectionBlock::before,
#demo.sectionBlock::before,
#contacto.sectionBlock::before{
  background: var(--brand-beige);
}

#servicios{
  color: rgba(255,255,255,.92);
}

#servicios .title,
#servicios h2,
#servicios h4,
#servicios .item-title{
  color: #fff;
}

#servicios p,
#servicios .lead{
  color: rgba(255,255,255,.85);
}

#servicios a{
  color: #6f8067;
}

/* Layout base */
.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

.section{ padding:12px 0; }
.section--soft{ background:var(--soft); }

.title{
  text-align:center;
  font-size: clamp(26px, 2.6vw, 40px);
  color:var(--text);
  margin:0 0 34px;
  letter-spacing:.2px;
}

.lead{
  text-align:center;
  color:var(--muted);
  margin: -14px auto 28px;
  max-width: 60ch;
}

/* Beneficios */
.benefits{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 6px;
  align-items:start;
  padding-top: 26px;
}

.benefit{
  text-align:center;
  padding: 4px 10px;
}

.benefitIcon{
  display:inline-flex;
  font-size: 54px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.benefitTitle{
  margin:0;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

/* Responsive: 2 columnas en móvil (como tu captura) */
@media (max-width: 720px){
  .benefits{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 14px;
  }
  .benefitIcon{ font-size: 50px; }
  .benefitTitle{ font-size: 16px; }
}

/* RSVP (tu HTML) */
.form{
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
}

.formGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.form label{
  display:block;
}

.form label span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.form input,
.form select,
.form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  outline: none;
  font: inherit;
  background:#fff;
}

.form textarea{
  min-height: 110px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: rgba(92, 95, 84, 1);
  box-shadow: 0 0 0 4px rgba(255,107,107,.12);
}

/* Antes era .btn (global) — cámbialo a SOLO formulario */
.form .btn{
  width:100%;
  border:none;
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--accent);
  color:#fff;
  font-weight: 700;
  letter-spacing:.6px;
  cursor:pointer;
  margin-top: 12px;
}
.form .btn:hover{ filter: brightness(.98); }
.form .btn:active{ transform: translateY(1px); }
.btn:hover{ filter: brightness(.98); }
.btn:active{ transform: translateY(1px); }

.formMsg{
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted);
  text-align:center;
}

@media (max-width: 820px){
  .formGrid{ grid-template-columns: 1fr; }
}


/* =============== AMENIDADES =============== */
.amenitiesSection .title{ text-align:center; }
.amenitiesSection .lead{
  text-align:center;
  margin: -12px auto 34px;
  max-width: 60ch;
}

.amenitiesGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 26px;
  align-items:start;
}

.amenityCard{
  display:grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items:flex-start;
}

.amenityIcon{
  width:56px;
  height:56px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.9;
}

/* Amenidades: íconos verdes + look más pro */
.amenityIcon{
  border: 1px solid rgba(111, 128, 103, .35);
  background: rgba(111, 128, 103, .08);
}

.amenityIcon i{
  color: rgba(111, 128, 103, 1);
  font-size: 26px;
}

.amenityTitle{
  margin: 2px 0 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.amenityText{
  margin: 0;
  color: rgba(0,0,0,.62);
  line-height: 1.7;
}

@media (max-width: 980px){
  .amenitiesGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px){
  .amenitiesGrid{ grid-template-columns: 1fr; }
  .amenityCard{ grid-template-columns: 56px 1fr; }
}

/* ===== Full-bleed backgrounds para secciones dentro de .row/.column ===== */
.sectionBlock{
  position: relative;
  padding: 96px 0;
  z-index: 0;
}

.sectionBlock::before{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:100vw;                 /* fuerza a ocupar todo el viewport */
  transform:translateX(-50%);
  z-index:-1;
  background: transparent;     /* se define por sección */
}

/* Tus colores por bloque */
#inicio.sectionBlock::before{ background: #fbf7ef; }
#beneficios.sectionBlock::before{ background: #ffffff; }
#servicios.sectionBlock::before{ background: rgba(111, 128, 103, 1); }
#contacto.sectionBlock::before{ background: #fbf7ef; }
#amenidades.sectionBlock::before{ background: #ffffff; }

/* Texto legible en el verde */
#servicios{
  color: rgba(255,255,255,.92);
}
#servicios .title,
#servicios h2,
#servicios h4,
#servicios .item-title{
  color:#fff;
}
#servicios p,
#servicios .lead{
  color: rgba(255,255,255,.85);
}



/* primera sesion */ 
/* ===== INICIO: Layout + copy corto ===== */
.v-center{ align-items: center; }

.kicker{
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 20px;
  opacity: .75;
  margin: 0 0 10px;
}

.title--left{ text-align: left; margin-bottom: 14px; }

.bullets{
  margin: 18px 0 22px;
  padding-left: 18px;
}

.bullets li{
  margin: 8px 0;
  opacity: .9;
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.micro{
  margin-top: 14px;
  font-size: 13px;
  opacity: .7;
}

/* ===== Carrusel (Swiper) ===== */
.mockCarousel{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.04);
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
}

.mockCarousel img{
  width:100%;
  height:auto;
  display:block;
}

/* Flechas */
.mock-prev,
.mock-next{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.9);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 24px;
  line-height: 1;
}

.mock-prev{ left: 12px; }
.mock-next{ right: 12px; }

/* Paginación */
.mock-pagination{
  position:absolute;
  left:0; right:0;
  bottom: 12px;
  display:flex;
  justify-content:center;
  gap: 6px;
  z-index: 2;
}

/* Swiper dots */
.mock-pagination .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  opacity: .35;
}

.mock-pagination .swiper-pagination-bullet-active{
  opacity: 1;
}

/* Responsive */
@media (max-width: 980px){
  .title--left{ text-align:center; }
  .ctaRow{ justify-content:center; }
}


/* session de preguntas frecuentres*/

/* ===== FAQ (acordeón 2 columnas estilo screenshot) ===== */
.faqSection .title{ text-align:center; }
.faqSection .lead{
  text-align:center;
  margin: -50px auto 34px;
  max-width: 60ch;
}

.faqGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 64px;
  align-items:start;
}

.faqItem{
  border-top: 1px solid rgba(0,0,0,.14);
  padding: 18px 0;
}

.faqCol .faqItem:last-child{
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.faqQ{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  font-size: 15px;
  line-height: 1.35;
}

.faqQ::-webkit-details-marker{ display:none; }

.faqIcon{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  font-size: 16px;
  color: rgba(111,128,103,1);
  border: 1px solid rgba(111,128,103,1);
  flex: 0 0 auto;
}

.faqItem[open] .faqIcon{ content:"–"; }
.faqItem[open] .faqIcon{ transform: rotate(45deg); } /* + -> x (visual pro) */

.faqA{
  margin-top: 12px;
  color: rgba(0,0,0,.68);
  line-height: 1.75;
  font-size: 14px;
  max-width: 58ch;
}

.faqA p{ margin: 10px 0; }
.faqA ul{ margin: 10px 0 0; padding-left: 18px; }
.faqA li{ margin: 6px 0; }

@media (max-width: 980px){
  .faqGrid{ grid-template-columns: 1fr; gap: 0; }
}



/* ===== BENTO GRID (SERVICIOS) ===== */
#servicios{
  color: rgba(255,255,255,.92);
}

#servicios .title,
#servicios h2,
#servicios h3{
  color: #fff;
}

#servicios .lead{
  color: rgba(255,255,255,.82);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.bento{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

/* Card base */
.bentoCard{
  grid-column: span 4;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

/* Layout bento */
.bentoCard--big{ grid-column: span 6; grid-row: auto; }
.bentoCard--wide{ grid-column: span 12; }

/* Tipografía */
.bentoKicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}

.bentoTitle{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.bentoText{
  margin: 0 0 10px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.bentoStrong{
  margin: 12px 0 0;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.bentoList{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.85);
}

.bentoList li{ margin: 7px 0; }

/* CTA */
.bentoBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.78);
  font-weight: 700;
  text-decoration: none;
}

.bentoBtn:hover{ filter: brightness(.98); }

.bentoLink{
  display:inline-block;
  margin-top: 12px;
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Chips (para que no se vea pesado) */
.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip{
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
  color: rgba(255,255,255,.88);
}

/* Responsive */
@media (max-width: 1100px){
  .bentoCard{ grid-column: span 6; }
  .bentoCard--big{ grid-column: span 12; grid-row: auto; }
  .bentoCard--wide{ grid-column: span 12; }
}

@media (max-width: 720px){
  .bentoCard{ grid-column: span 12; }
  .bentoTitle{ font-size: 18px; }
}

.bentoCard--big{
  display:flex;
  flex-direction: column;
}
.bentoCard--big .bentoFooter{
  margin-top:auto; /* empuja al fondo */
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.bento{
  max-width: 1050px;
  margin: 34px auto 0;
}


/*letra*/

.section .text-pretitle{
  margin: 0 0 10px;
  opacity: .8;
  letter-spacing: .22em;
  text-transform: uppercase;
}

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

/* ====== ANCHO GLOBAL DE SECCIONES ====== */
.container{
  width: min(1280px, 94%);
}

/* en pantallas chicas, un poquito más de padding lateral */
@media (max-width: 720px){
  .container{ width: min(1280px, 92%); }
}

/* ===== Aumentar tipografía FAQ ===== */

/* Preguntas (la línea principal) */
.faqQ{
  font-size: 16px;   /* antes 15px */
  line-height: 1.45;
}

/* Respuesta (cuando abres) */
.faqA{
  font-size: 16px;   /* antes 14px */
  line-height: 1.8;
}

/* Texto debajo del título (subtítulo) */
.faqSection .lead{
  font-size: 18px;
}

/* Icono + (opcional, para que no se vea chico) */
.faqIcon{
  width: 24px;
  height: 24px;
  font-size: 18px;
}

.faqItem {
    border-top: 2px solid rgba(3, 0, 0, 0.14);
    padding: 20px 0;
}

@media (max-width: 900px){
  /* desaparece la columna del carrusel */
  #inicio .mockCol{ display:none !important; }

  /* opcional: centra/ajusta el contenido restante */
  #inicio .row{ justify-content: center; }
}


/* Kicker más pequeño solo en INICIO */
#inicio .kicker,
#inicio .text-pretitle{
  font-size: 15px;
  letter-spacing: .22em;
  opacity: .75;
  margin-bottom: 8px;
}

/* En móvil, todavía más discreto */
@media (max-width: 600px){
  #inicio .kicker,
  #inicio .text-pretitle{
    font-size: 10px;
    letter-spacing: .18em;
  }
}


/* Quita overlay oscuro de DETAILS */
.s-details{ --overlay-opacity: 0 !important; }
.s-details::after{ opacity: 0 !important; }

/* Un solo sistema de fondos full-bleed */
.sectionBlock{ background: transparent !important; }
.sectionBlock::before{ background: var(--brand-white) !important; }
#servicios.sectionBlock::before{ background: var(--brand-green) !important; }

/* Mobile tab nav NO cremita */
.tab-nav__list{ background-color: var(--brand-white) !important; }


/* ===== FAQ en verde (alternar secciones) ===== */
#faq.sectionBlock::before{
  background: var(--brand-green) !important; /* rgba(111,128,103,1) */
}

/* Tipografía legible sobre verde */
#faq{ color: rgba(255,255,255,.92); }

#faq .title,
#faq .lead,
#faq .faqQ{ color:#fff; }

#faq .faqA{ color: rgba(255,255,255,.85); }

/* líneas del acordeón */
#faq .faqItem{ border-top: 1px solid rgba(255,255,255,.18); }
#faq .faqCol .faqItem:last-child{ border-bottom: 1px solid rgba(255,255,255,.18); }

/* icono + */
#faq .faqIcon{
  color:#fff;
  border-color: rgba(255,255,255,.55);
}

/* Fondo verde para esta sección */
#demo.sectionBlock::before{ background: var(--block-green); }

.demoSection{ color: #fff; }
.demoFormWrap{ text-align:center; }

.demoTitle{
  font-family: var(--font-3);
  font-weight: 400;
  color:#000000;
  margin: 0 0 14px;
}

.demoLead{
  color: rgb(0, 0, 0);
  max-width: 48ch;
  margin: 0 auto 22px;
}

.demoForm{
  max-width: 640px;
  margin: 0 auto;
}

.demoForm input{
  width: 100%;
  height: 56px;
  border-radius: 999px;
  border: 0;
  outline: 0;
  background: rgba(255,255,255,.92);
  padding: 0 18px;
  margin: 0 0 16px;
  font-family: var(--font-2);
}



.demoBtn{
  width: min(520px, 100%);
  height: 56px;
  border-radius: 999px;
  border: 0;
  background: #0b0b0b;
  color: #fff;
  font-family: var(--font-2);
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}

.demoFine{
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
}

/* Preview tipo “phone” */
.demoPhone{
  width: clamp(280px, 34vw, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));
}

/* En móvil: que se vea como tu screenshot (solo form centrado) */
@media (max-width: 900px){
  .demoPhoneCol{ display:none !important; }
  .demoRow{ justify-content:center; }
}


/* Fondo verde para esta sección */
#demo.sectionBlock::before{ background: var(--block-green); }

.demoSection{ color: #fff; }
.demoFormWrap{ text-align:center; }

.demoTitle{
  font-family: var(--font-3);
  font-weight: 400;
  color:#000000;
  margin: 0 0 14px;
}

.demoTitle__blanco{
  text-align:center; 
  font-family: var(--font-3);
  font-weight: 400;
  color:#ffffff;
  margin: 0 0 14px;
}


.demoTitle__verde{
  text-align:center; 
  font-family: var(--font-3);
  font-weight: 400;
  color:rgba(111, 128, 103, 1);
  margin: 0 0 14px;
}
.demoLead{
  color: rgba(0, 0, 0, 0.85);
  max-width: 48ch;
  margin: 0 auto 22px;
}

.demoForm{
  max-width: 640px;
  margin: 0 auto;
}

.demoForm input{
  width: 100%;
  height: 56px;
  border-radius: 999px;
  border: 0;
  outline: 0;
  background: rgb(255, 255, 255);
  padding: 0 18px;
  margin: 0 0 16px;
  font-family: var(--font-2);
}

.demoFieldset {
    border: 0;
    padding: 10px 0 0;
    margin: 18px auto 18px;
    max-width: 360px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
}

.demoFieldset legend{
  color:#000000;
  font-family: var(--font-2);
  font-weight: 600;
  margin-bottom: 10px;
}

.demoRadio{
   display: inline-flex;
  align-items:center;
  justify-content: flex-start;
  gap:10px;
  margin: -4px 0;
  font-family: var(--font-2);
  color: rgba(0, 0, 0, 0.92);
}

.demoFine{
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.719);
  font-size: 14px;
}

/* Preview tipo “phone” */
.demoPhone{
  width: clamp(280px, 34vw, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));
}

/* En móvil: que se vea como tu screenshot (solo form centrado) */
@media (max-width: 900px){
  .demoPhoneCol{ display:none !important; }
  .demoRow{ justify-content:center; }
}

/* ===== PALETA FINAL: BEIGE + VERDE (única) ===== */
:root{
  --brand-green: rgba(111, 128, 103, 1);
  --brand-beige: #fbf7ef;

  --color-body: var(--brand-beige);
  --color-3-lighter: var(--brand-beige);

  --accent: var(--brand-green);

  --color-btn-primary: var(--brand-green);
  --color-btn-primary-hover: var(--brand-green);
  --color-btn-stroke: var(--brand-green);
  --color-btn-stroke-hover: var(--brand-green);
  --color-btn-stroke-text: var(--brand-green);
  --color-btn-stroke-hover-text: #fff;
}



/* Fondo full-bleed por default: BEIGE */
.sectionBlock{ background: transparent !important; }
.sectionBlock::before{ background: var(--brand-beige) !important; }

/* Secciones en VERDE */
#servicios.sectionBlock::before,
#faq.sectionBlock::before{
  background: var(--brand-green) !important;
}

/* Asegura que CONTACTO también quede beige */
#contacto.sectionBlock::before{
  background: var(--brand-beige) !important;
}

/* (Opcional) que tu card de contacto “flote” más pro sobre el beige */
.contactCard{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
}




/* ===== MODAL MÁS CHICO (override final) ===== */
.ss-modal{
  padding: 16px 12px; /* que no pegue a los bordes del cel */
}

.ss-modal svg{
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
}

.ss-modal h4{
  font-size: 18px;
  margin-bottom: 8px;
}

.ss-modal__text{
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.ss-modal__inner{
  width: min(92vw, 420px);
  max-width: 420px;
  padding: 18px 16px 14px;
  border-radius: 16px;

  /* clave para que se vea más chico en móvil */
  max-height: 86svh;
  overflow: auto;
}

/* Inputs más compactos */
.ss-modal .mc-form input,
.ss-modal .mc-form textarea{
  font-size: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 10px 12px !important;
}

/* Alturas */
.ss-modal .mc-form input{
  height: 44px !important;
}

.ss-modal .mc-form textarea{
  min-height: 90px !important;
  resize: none;
}

/* Botón */
.ss-modal .mc-form input[type="submit"]{
  height: 46px !important;
  line-height: 46px !important;
  margin-top: 6px;
}

/* Extra compacto en pantallas muy chicas */
@media (max-width: 380px){
  .ss-modal__inner{
    width: min(94vw, 360px);
    padding: 16px 14px 12px;
  }
  .ss-modal h4{ font-size: 17px; }
}

/* Demo swiper: flechas + dots */
.demoPhone{ position: relative; }

.demoPhone #demo-phone-swiper{ position: relative; }

.demoPhone #demo-phone-swiper .phone-pagination{
  position: absolute;
  left: 0; right: 0;
  bottom: 10px;
  z-index: 20;
  display: flex;
  justify-content: center;
}

/* Flechas */
.demoNav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.demoPrev{ left: 10px; }
.demoNext{ right: 10px; }



/* Centrar los botones dentro de la fila (opcional) */
.ctaRow{
  display: flex;
  gap: 12px;
  justify-content: center; /* centra los botones */
  flex-wrap: wrap;         /* por si en móvil se bajan */
}

/* Centrar el texto dentro de cualquier botón */
.btn{
  display: inline-flex;
  align-items: center;     /* vertical */
  justify-content: center; /* horizontal */
  text-align: center;      /* por si hay salto de línea */
}


.demoRadio input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border: 3px solid rgb(0 0 0 / 24%);
    border-radius: 69%;
    display: inline-grid;
    place-content: center;
}
.demoRadio input[type="radio"]::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.75);
  transform: scale(0);
}
.demoRadio input[type="radio"]:checked::before{
  transform: scale(1);
}

/* RESET + tamaño fijo para radios (evita que hereden padding de inputs) */
.demoRadio > input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;

  padding: 0 !important;
  margin: 0;
  background: transparent !important;

  width: 20px !important;
  height: 20px !important;

  border: 2px solid rgb(0 0 0 / 24%) !important;
  border-radius: 50% !important;

  display: inline-grid;
  place-content: center;
  flex: 0 0 auto;
}

.demoFormWrap .mc-status{ color:#111 !important; }
.demoFormWrap .mc-status.success-message{ color:#0f5132 !important; }
.demoFormWrap .mc-status.error-message{ color:#842029 !important; }

.title-tight{
  margin: 0 0 14px;   /* antes era como 112px */
  line-height: 0.05;  /* opcional para que no se vea tan “alto” */
}

/* Ajusta SOLO este título */
.text-huge-title.title-tight{
  line-height: 0.95;   /* 👈 reduce el espacio entre líneas */
  margin-bottom: 14px; /* 👈 reduce el espacio debajo del H1 */
}

/* En móvil a veces conviene un poquito más para que no se encime */
@media (max-width: 600px){
  .text-huge-title.title-tight{ line-height: 1.0; }
}
@media (max-width: 600px){
  .text-huge-title.title-tight{
    font-size: 56px;   /* ajusta: 48-64 */
    line-height: 1.12;
  }
}

/* ===== Reduce espacio global ===== */
.s-details{
  padding-top: var(--vspace-2) !important;    /* antes vspace-4 */
  padding-bottom: var(--vspace-2) !important; /* antes vspace-3 */
  /* si NO quieres que cada bloque “mínimo 1 pantalla” */
  min-height: auto !important;                /* antes 100vh */
}

/* ===== Reduce el “hueco” entre secciones ===== */
.sectionBlock{
  padding: 76px 0 !important; /* antes 96px */
}

@media (max-width: 820px){
  .sectionBlock{ padding: 44px 0 !important; }
}


/* Fondo verde (tu sistema sectionBlock ya hace full-bleed) */
#paquetes.sectionBlock::before{
  background: var(--brand-green) !important;
}

.pricing-head{
  text-align: center;
  margin-bottom: 28px;
}

.pricing-kicker{
  font-family: var(--font-2);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
}

.pricing-title{
  font-family: var(--font-3);
  color:#fff;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 56px);
  margin: 0 0 10px;
}

.pricing-sub{
  color: rgba(255,255,255,.82);
  max-width: 72ch;
  margin: 0 auto;
  line-height: 1.65;
}

.pricing-trust{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.pricing-trustItem{
  font-family: var(--font-2);
  font-size: 13px;
  color: rgba(255,255,255,.86);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
}

/* Grid */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Card */
.pricing-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  display:flex;
  flex-direction: column;
  overflow:hidden;
}

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

.pricing-tag{
  font-family: var(--font-2);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.pricing-name{
  font-family: var(--font-3);
  font-size: 34px;
  margin: 0 0 8px;
  color: #000;
}

.pricing-ideal{
  margin: 0 0 6px;
  font-family: var(--font-2);
  font-size: 14px;
  color: rgba(0,0,0,.62);
}

/* Imagen / preview */
.pricing-media{
  border-radius: 18px;
  background: rgba(0,0,0,.03);
  padding: 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 10px 0 16px;
}

.pricing-media img{
  width: 100%;
  max-width: 260px;
  height: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

/* ===== LISTA con ICONO como el ejemplo (check en circulito) ===== */
.pricing-list{
  list-style:none;
  padding:0;
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list li{
  font-family: var(--font-2);
  font-size: 14px;
  color: rgba(0,0,0,.78);
  line-height: 1.55;

  display:flex;
  align-items:flex-start;
  gap: 12px;

  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.pricing-list li::before{
  content: "✓";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;

  display: inline-grid;
  place-content: center;

  border: 1px solid rgba(111,128,103,.45);
  background: rgba(111,128,103,.14);
  color: rgba(111,128,103,1);

  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  margin-top: 2px;
}

/* CTA abajo fijo */
.pricing-cta{
  margin-top: auto;
  padding-top: 18px;
}

/* Destacado */
.pricing-card--featured{
  transform: translateY(-8px);
  border: 2px solid rgba(255,255,255,.45);
  outline: 2px solid rgba(255,255,255,.18);
}

.pricing-ribbon{
  margin: -22px -22px 18px;
  padding: 12px 14px;
  text-align:center;
  font-family: var(--font-2);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color:#fff;
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

/* Responsive */
@media (max-width: 980px){
  .pricing-card--featured{ transform:none; }
}



/* ===== PAQUETES: más compacto en celular ===== */
@media (max-width: 600px){

  /* menos aire en la sección */
  #paquetes.sectionBlock{ padding: 56px 0 !important; }

  /* títulos más compactos */
  #paquetes .pricing-title{
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 8px;
  }
  #paquetes .pricing-sub{
    font-size: 14px;
    line-height: 1.55;
  }

  /* chips de arriba más pequeños */
  #paquetes .pricing-trustItem{
    font-size: 12px;
    padding: 6px 10px;
  }

  /* card más compacta */
  #paquetes .pricing-card{
    padding: 16px;
    border-radius: 18px;
  }

  #paquetes .pricing-tag{
    font-size: 10px;
    letter-spacing: .16em;
    margin-bottom: 8px;
  }

  #paquetes .pricing-name{
    font-size: 28px;
    margin-bottom: 6px;
  }

  #paquetes .pricing-ideal{
    font-size: 13px;
    margin-bottom: 4px;
  }

  /* imagen más pequeña */
  #paquetes .pricing-media{
    padding: 12px;
    margin: 10px 0 12px;
    border-radius: 16px;
  }
  #paquetes .pricing-media img{
    max-width: 220px;
  }

  /* botón acordeón */
  #paquetes .pricing-toggle{
    height: 44px;
    font-size: 12px;
    letter-spacing: .08em;
  }

  /* lista más compacta */
  #paquetes .pricing-list{
    gap: 8px;
  }
  #paquetes .pricing-list li{
    font-size: 13px;
    gap: 10px;
    padding-bottom: 8px;
  }
  #paquetes .pricing-list li::before{
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    font-size: 11px;
    margin-top: 2px;
  }

  /* CTA más compacto */
  #paquetes .pricing-cta{ padding-top: 14px; }
  #paquetes .pricing-cta .btn{
    height: 48px;
    line-height: 48px;
    padding: 0 22px;
  }
}

/* ===== FIX: Desktop limpio / Móvil acordeón ===== */

/* 1) DESKTOP por defecto: no hay botón, la lista se ve normal */
.pricing-toggle{ 
  display: none;
}

.pricing-amenities{
  max-height: none;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
  margin-top: 14px;
}

/* 2) Quita este comportamiento en "web" (porque 980px aún puede ser laptop) */
@media (max-width: 600px){
  /* NO hagas nada aquí para paquetes */
  /* (si tienes .pricing-card--featured{ transform:none; } muévelo a 600px) */
}

/* 3) SOLO MÓVIL: aparece el botón y se colapsa la lista */
@media (max-width: 600px){
  .pricing-toggle{
    display: block;
    width: 71%;
    margin: 6px 0 0;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(0,0,0,.03);
    font-family: var(--font-2);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .pricing-amenities{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    margin-top: 0;
    transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
  }

  .pricing-card.is-open .pricing-amenities{
    max-height: 1200px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 14px;
  }

  /* el destacado NO brinca en móvil */
  .pricing-card--featured{ 
    transform: none !important; 
  }
}


/* Fondo verde (tu sistema sectionBlock ya hace full-bleed) */
#paquetes.sectionBlock::before{
  background: var(--brand-green) !important;
}

.pricing-head{
  text-align: center;
  margin-bottom: 28px;
}

.pricing-kicker{
  font-family: var(--font-2);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
}

.pricing-title{
  font-family: var(--font-3);
  color:#fff;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 56px);
  margin: 0 0 10px;
}

.pricing-sub{
  color: rgba(255,255,255,.82);
  max-width: 72ch;
  margin: 0 auto;
  line-height: 1.65;
}

.pricing-trust{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.pricing-trustItem{
  font-family: var(--font-2);
  font-size: 13px;
  color: rgba(255,255,255,.86);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.10);
}

/* Grid */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Card */
.pricing-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  display:flex;
  flex-direction: column;
  overflow:hidden;
}

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

.pricing-tag{
  font-family: var(--font-2);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.pricing-name{
  font-family: var(--font-3);
  font-size: 34px;
  margin: 0 0 8px;
  color: #000;
}

.pricing-ideal{
  margin: 0 0 6px;
  font-family: var(--font-2);
  font-size: 14px;
  color: rgba(0,0,0,.62);
}

/* Imagen / preview */
.pricing-media{
  border-radius: 18px;
  background: rgba(0,0,0,.03);
  padding: 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 10px 0 16px;
}

.pricing-media img{
  width: 100%;
  max-width: 260px;
  height: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

/* ===== LISTA con ICONO como el ejemplo (check en circulito) ===== */
.pricing-list{
  list-style:none;
  padding:0;
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list li{
  font-family: var(--font-2);
  font-size: 14px;
  color: rgba(0,0,0,.78);
  line-height: 1.55;

  display:flex;
  align-items:flex-start;
  gap: 12px;

  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.pricing-list li::before{
  content: "✓";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;

  display: inline-grid;
  place-content: center;

  border: 1px solid rgba(111,128,103,.45);
  background: rgba(111,128,103,.14);
  color: rgba(111,128,103,1);

  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  margin-top: 2px;
}

/* CTA abajo fijo */
.pricing-cta{
  margin-top: auto;
  padding-top: 18px;
}

/* Destacado */
.pricing-card--featured{
  transform: translateY(-8px);
  border: 2px solid rgba(255,255,255,.45);
  outline: 2px solid rgba(255,255,255,.18);
}

.pricing-ribbon{
  margin: -22px -22px 18px;
  padding: 12px 14px;
  text-align:center;
  font-family: var(--font-2);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color:#fff;
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

/* Responsive */
@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-card--featured{ transform:none; }
}


/* =========================
   PAQUETES: acordeón solo en móvil/tablet
========================= */

/* por defecto (desktop): lista visible, sin botón */
.pricing-toggle{ display:none; }
.pricing-amenities{
  max-height: none;
  overflow: visible;
  opacity: 1;
}

/* en <=980px: botón visible + lista colapsada */
@media (max-width: 980px){
  .pricing-toggle{
    display: inline-flex;
    width: 100%;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(0,0,0,.03);
    font-family: var(--font-2);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 6px 0 10px;
  }

  /* colapsada */
  .pricing-amenities{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
  }

  /* abierta */
  .pricing-card.is-open .pricing-amenities{
    opacity: 1;
    /* max-height la pone el JS con scrollHeight (para que NUNCA corte) */
  }
}

.btn.u-fullwidth_deta, button.u-fullwidth_deta {
    width: 99%;
    margin-right: 0;
}



/*FOODER*/
/* ===================== FOOTER PRO ===================== */
.siteFooter{
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,.10);
}

/* quita el underline global del tema */
.siteFooter a{
  border-bottom: none !important;
}
.siteFooter a:hover{
  border-bottom: none !important;
}

/* layout */
.footerWrap{
  padding-top: 0;
}

.footerTop{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.footerBrand{
  max-width: 58ch;
}

.footerLogo{
  font-family: var(--font-2);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.footerDesc{
  font-family: var(--font-2);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,.70);
  margin-bottom: 16px;
}

.footerTitle{
  font-family: var(--font-2);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 12px;
}

.footerLinks{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.footerLink{
  font-family: var(--font-2);
  font-size: 14px;
  color: rgba(0,0,0,.80);
  opacity: .95;
}
.footerLink:hover{
  color: rgba(111,128,103,1);
}

/* socials */
.footerSocial{
  display: flex;
  gap: 10px;
  align-items: center;
}

.socialBtn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
  transition: transform .15s ease, filter .15s ease;
}

.socialBtn i{
  font-size: 18px;
  color: rgba(111,128,103,1);
}

.socialBtn:hover{
  transform: translateY(-1px);
  filter: brightness(.98);
}

/* bottom bar */
.footerBottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.10);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footerCopy,
.footerMade{
  font-family: var(--font-2);
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

.footerMade span{
  color: rgba(111,128,103,1);
}

/* ===================== MOBILE ===================== */
@media (max-width: 600px){
  .siteFooter{
    padding: 44px 0;
  }

  .footerTop{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* nav en 2 columnas */
  .footerLinks{
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  /* socials centrados */
  .footerSocial{
    justify-content: center;
  }

  /* bottom centrado */
  .footerBottom{
    justify-content: center;
    text-align: center;
  }
}

/* =========================
   Scroll Reveal (genérico)
   ========================= */
:root{
  --reveal-distance: 18px;
  --reveal-duration: 700ms;
  --reveal-ease: cubic-bezier(.22,1,.36,1);
}

/* Estado inicial */
.reveal{
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

/* Visible */
.reveal.is-visible{
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== SUBIR TEXTO EN iPad / tablets (820px, etc.) ===== */
@media screen and (max-width: 1024px) and (min-width: 601px){
  .s-intro__content{
    align-items: flex-start !important;  /* <- esto es lo clave */
    padding-top: 10vh !important;        /* baja el número = sube más */
    padding-bottom: 14rem !important;    /* ajusta si el phone estorba */
  }
}