@charset "UTF-8";


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

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

:root {
    --font-1    : "Inter", sans-serif;
    --font-2    : "Heebo", sans-serif;

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

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

    /* color-1(#f08100)
     * color-2(#BA2D0B)
     */
    --color-1                       : hsla(32, 100%, 47%, 1);
    --color-2                       : hsla(12, 89%, 39%, 1);

    /* theme color variations
     */
    --color-1-lightest              : hsla(37, 100%, 50%, 1);
    --color-1-lighter               : hsla(37, 100%, 50%, 1);
    --color-1-light                 : hsla(37, 100%, 50%, 1);
    --color-1-dark                  : hsla(37, 100%, 50%, 1);
    --color-1-darker                : hsla(37, 100%, 50%, 1);
    --color-1-darkest               : hsla(37, 100%, 50%, 1);

    --color-2-lighter               : hsla(12, 89%, 59%, 1);
    --color-2-light                 : hsla(12, 89%, 49%, 1);
    --color-2-dark                  : hsla(12, 89%, 29%, 1);
    --color-2-darker                : hsla(12, 89%, 19%, 1);
    --color-2-darkest               : hsla(12, 89%, 9%, 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                 : #161616;
    --color-gray-18                 : #2c2c2c;
    --color-gray-17                 : #424342;
    --color-gray-16                 : #585958;
    --color-gray-15                 : #6e6f6f;
    --color-gray-14                 : #838585;
    --color-gray-13                 : #999b9b;
    --color-gray-12                 : #afb2b1;
    --color-gray-11                 : #c5c8c7;
    --color-gray-10                 : #dbdedd;
    --color-gray-9                  : #dfe1e0;
    --color-gray-8                  : #e2e5e4;
    --color-gray-7                  : #e6e8e7;
    --color-gray-6                  : #e9ebeb;
    --color-gray-5                  : #edefee;
    --color-gray-4                  : #f1f2f1;
    --color-gray-3                  : #f4f5f5;
    --color-gray-2                  : #f8f8f8;
    --color-gray-1                  : #fbfcfc;
    --color-white                   : #ffffff;

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

    /* buttons
     */
    --color-btn                     : var(--color-gray-6);
    --color-btn-text                : var(--color-black);
    --color-btn-hover               : var(--color-gray-8);
    --color-btn-hover-text          : var(--color-black);
    --color-btn-primary             : var(--color-1);
    --color-btn-primary-text        : var(--color-white);
    --color-btn-primary-hover       : var(--color-1-dark);
    --color-btn-primary-hover-text  : var(--color-white);
    --color-btn-stroke              : var(--color-black);
    --color-btn-stroke-text         : var(--color-black);
    --color-btn-stroke-hover        : var(--color-black);
    --color-btn-stroke-hover-text   : var(--color-white);

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

    /* others
     */
    --color-body                    : white;
    --color-border                  : rgba(0, 0, 0, 0.08);
    --border-radius                 : 8px;
}

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

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

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

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

    /* default button height
     */
    --vspace-btn        : var(--vspace-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 : 0.9375;
    }
}

/* ------------------------------------------------------------------- 
 * ## 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.2rem;
}

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

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



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

body {
    margin : 0;
}

main {
    display : block;
}

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

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

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

a {
    background-color : transparent;
}

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

b,
strong {
    font-weight : bolder;
}

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

small {
    font-size : 80%;
}

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

sub {
    bottom : -0.25em;
}

sup {
    top : -0.5em;
}

img {
    border-style : none;
}

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

button,
input {
    overflow : visible;
}

button,
select {
    text-transform : none;
}

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

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

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

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

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

progress {
    vertical-align : baseline;
}

textarea {
    overflow : auto;
}

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

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

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

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

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

details {
    display : block;
}

summary {
    display : list-item;
}

template {
    display : none;
}

[hidden] {
    display : none;
}



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

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

html,
body {
    height : 100%;
}

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

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

a {
    text-decoration : none;
}

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

pre {
    overflow : auto;
}

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

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



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

/* row 
 */
.row {
    width     : 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 : 40%;
}

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

.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%;
    margin-top: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

.u-hidden {
    display : none;
}

.u-invisible {
    visibility : hidden;
}

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

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

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

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

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

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

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

.u-fullwidth {
    width : 100%;
}

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

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



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

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

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

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

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                  : #ffffff;
    font-variant-ligatures : common-ligatures;
    text-rendering         : optimizeLegibility;
}

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

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

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

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

@media screen and (max-width: 500px) {
    h1,
    .h1 {
        font-size   : var(--text-display-1);
        line-height : calc(1.875 * var(--space));
    }
}

h2,
.h2 {
    font-size      : 1.5rem;
    line-height    : calc(1.375 * var(--space));
    letter-spacing : -0.01em;
    font-weight: 500;
    margin-bottom: -10px;
}

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

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

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

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

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

em,
i {
    font-style : italic;
}

strong,
b {
    font-weight : 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 800px) {
    .lead,
    .attention-getter {
        font-size   : calc(var(--text-size) * 1.0556);
        line-height : calc(1.125 * var(--space));
    }
}

@media screen and (max-width: 400px) {
    .lead,
    .attention-getter {
        font-size   : var(--text-size);
        line-height : var(--vspace-1);
    }
}

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

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

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

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

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

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

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

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

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

ul {
    list-style : disc;
}

li {
    display : list-item;
}

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

ul li {
    padding-left : 0.4rem;
}

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

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

ul.disc li::before {
    content        : "";
    display        : inline-block;
    width          : 8px;
    height         : 8px;
    border-radius  : 50%;
    background     : var(--color-1);
    position       : absolute;
    left           : -0.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 : 0px;
    font-size: 1rem;
    line-height: 2rem;
    color: hsla(0,0%,100%,1);
}



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

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

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

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

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

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

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

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

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

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



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

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

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

.ss-custom-select select {
    -webkit-appearance : none;
    -moz-appearance    : none;
    appearance         : none;
    text-indent        : 0.01px;
    text-overflow      : "";
    margin             : 0;
    vertical-align     : middle;
}

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

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

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

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

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    color            : var(--color-black);
    background-color : white;
    box-shadow       : 0 0 5px var(--color-1);
    border           : 1px solid var(--color-1-light);
}

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

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

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

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

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

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

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

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

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

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

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



/* ===================================================================
 * # BUTTONS
 *
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    --btn-height            : var(--vspace-btn);
    display                 : inline-block;
    font-family             : var(--font-1);
    font-weight             : 400;
    font-size               : var(--text-size);
    letter-spacing          : 0.02em;
    height                  : var(--btn-height);
    line-height             : calc(var(--btn-height) - 4px);
    padding                 : 0 3.6rem;
    margin                  : 0 0.4rem var(--vspace-0_5) 0;
    color                   : var(--color-btn-text);
    text-decoration         : none;
    text-align              : center;
    white-space             : nowrap;
    cursor                  : pointer;
    transition              : all 0.3s;
    border-radius           : var(--border-radius);
    background-color        : 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 {
	border-color : var(--color-btn-primary-hover);
	color        : var(--color-btn-primary-hover-text);
	background-color: #000000;
}

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

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

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

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

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

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

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



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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

.pgn__prev {
    left : 0;
}

.pgn__next {
    right : 0;
}

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

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

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

/* ------------------------------------------------------------------- 
 * ## alert box 
 * ------------------------------------------------------------------- */
.alert-box {
    padding       : var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
    margin-bottom : var(--vspace-1);
    border-radius : var(--border-radius);
    font-family   : var(--font-1);
    font-weight   : 500;
    font-size     : var(--text-sm);
    line-height   : var(--vspace-0_75);
    opacity       : 1;
    visibility    : visible;
    position      : relative;
}

.alert-box__close {
    position : absolute;
    display  : block;
    right    : 1.6rem;
    top      : 1.6rem;
    cursor   : pointer;
    width    : 12px;
    height   : 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

.basicLightbox iframe {
    width        : 880px;
    aspect-ratio : 16/9;
}

/* ------------------------------------------------------------------- 
 * ## theme-specific typography classes
 * ------------------------------------------------------------------- */
.body-text-2 {
    font-size   : calc(var(--text-size) * 0.9444);
    line-height : calc(0.9375 * var(--space));
}

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

.text-display-1 {
    font-size   : var(--text-display-1);
    font-weight : 500;
    line-height : 1.191;
    margin-top  : 0;
}

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

/* ------------------------------------------------------------------- 
 * ## section header
 * ------------------------------------------------------------------- */
.section-header {
    justify-content : space-between;
    position        : relative;
    margin-bottom   : var(--vspace-1);
}

.section-header .title,
.section-header .desc {
    z-index  : 1;
    position : relative;
}

.section-header .title {
    padding-left : calc(var(--gutter) * 1.25);
    color: #323232;
    font-weight: 500;
}

.section-header .desc {
    font-weight   : 300;
    color         : #FFFFFF;
    padding-left  : var(--gutter);
    padding-right : var(--gutter);
}

.section-header::before {
    content     : attr(data-num);
    font-family : var(--font-1);
    font-weight : 600;
    font-size   : 8em;
    line-height : 1;
    color       : white;
    position    : absolute;
    top         : -0.35em;
    left        : 0;
}

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

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

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

/* ------------------------------------------------------------------- 
 * responsive:
 * project-wide and shared styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .section-header .desc {
        padding : 0;
    }
}

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

@media screen and (max-width: 600px) {
    .section-header .title {
        padding-left : 0;
    }

    .section-header::before {
        left : calc(var(--gutter) * 2);
    }
}

@media screen and (max-width: 400px) {
    .text-display-1 {
        font-size : 3.6rem;
    }
}




/* =========================================================
   SITE!!!!!!
========================================================= */



/* =========================================================
   PAGE WRAP
========================================================= */

.s-pagewrap {
    display        : flex;
    flex-direction : column;
    min-height     : 100%;
    overflow       : hidden;
    position       : relative;
}

/* =========================================================
   END PAGE WRAP!!!
========================================================= */



/* =========================================================
   HEADER
========================================================= */

.s-header {
    --header-height  : 64px;
    --logo-width     : 90px;
    z-index          : 100;
    background-color : transparent;
    height           : var(--header-height);
    width            : 100%;
    position         : absolute;
    top              : var(--vspace-1);
    left             : 0;
}

.s-header.offset {
    transform  : translateY(-100%);
    transition : all 0.5s;
}

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

.s-header.sticky {
    --header-height  : 80px;
    --logo-width     : 82px;
    opacity          : 0;
    visibility       : hidden;
    background-color : var(--color-gray-19);
    position         : fixed;
    top              : 0;
    left             : 0;
}

.s-header.sticky .s-header__inner {
    max-width : var(--width-grid-max);
}

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

.s-header__inner {
    max-width   : 1400px;
    align-items : center;
    padding     : 0 var(--gutter);
}

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

/* --------------------------------------------------------------------
 * ## logo
 * -------------------------------------------------------------------- */
.s-header__logo {
    z-index     : 3;
    line-height : 1;
    transform   : translate(4px, -2px);
}

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

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

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

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

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

.s-header__nav a {
    display             : block;
    font-size           : 1.6rem;
    font-weight         : 500;
    line-height         : var(--header-height);
    color               : rgba(255, 255, 255, 0.6);
    padding             : 0 1.2rem;
    transition-property : color, background-color;
}

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

.s-header__nav .current a {
    color : #f08100;
}

/* --------------------------------------------------------------------
 * ## cta button
 * -------------------------------------------------------------------- */
.s-header__cta{
    margin-left:auto;
    display:flex;
    gap:6px;
}

.s-header__cta .btn{

    height:40px;

    padding:0 10px;
    
    margin-top: 10px;

    border:1px solid #fff;

    background:transparent;

    color:#f08100;

    font-size:14px;
    font-weight:500;

    letter-spacing:.01em;

    border-radius:6px;
}

.s-header__cta .btn:hover{

    background:#000000;

    color:#f08100;

    border-color:#fff;
}

/* --------------------------------------------------------------------
 * ## mobile menu toggle
 * -------------------------------------------------------------------- */
.s-header__menu-toggle {
    display  : none;
    width    : 6.8rem;
    height   : var(--header-height);
    position : absolute;
    top      : 0;
    right    : 1.6rem;
}

.s-header__menu-toggle span {
    display          : block;
    background-color : white;
    width            : 22px;
    height           : 2px;
    margin-top       : -1px;
    font             : 0/0 a;
    text-shadow      : none;
    color            : transparent;
    transition       : background-color 0.2s ease-in-out;
    position         : absolute;
    right            : 23px;
    top              : 50%;
    bottom           : auto;
    left             : auto;
}

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

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

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

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

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

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

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

/* ==========================================
   CTA DESKTOP
========================================== */


.s-header__cta{

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:10px;
}

.s-header__cta .btn{

    height:42px;

    padding:0 20px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid #fff;

    background:transparent;

    color:#f08100;

    text-decoration:none;

    transition:.25s ease;
}

.s-header__cta .btn:hover{

    background:#fff;

    color:#f08100;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * site-header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1600px) {
    .s-header__inner {
        max-width : 1160px;
    }
}

@media screen and (max-width: 1400px) {
    .s-header__inner {
        max-width : 1040px;
    }
}

@media screen and (max-width: 1200px) {
    .s-header__inner {
        max-width : 960px;
    }
}

@media screen and (max-width: 1100px) {
    .s-header__inner {
        max-width : 900px;
    }

    .s-header__cta {
        margin-right : 0;
    }
}

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

    .s-header__inner {
        max-width : none;
        width     : 100%;
        margin    : 0;
        padding   : 0;
    }

    .s-header__block {
        width            : 100%;
        height           : var(--header-height);
        background-color : transparent;
    }

    .s-header__logo {
        position  : absolute;
        left      : 0;
        top       : 50%;
        transform : translate(4.2rem, -50%);
    }

    .s-header__nav {
        transform        : scaleY(0);
        transform-origin : center top;
        display          : block;
        background-color : var(--color-gray-19);
        width            : 100%;
        padding-top      : calc(var(--header-height) + var(--vspace-1_25));
        padding-right    : 4.2rem;
        padding-left     : 4.2rem;
        padding-bottom   : 4rem;
        margin           : 0;
        position         : absolute;
        top              : calc(var(--vspace-0_5) * -1);
        left             : 0;
    }

    .s-header__nav a {
        display     : inline-block;
        font-size   : calc(var(--text-size) * 0.9444);
        line-height : 1;
        padding     : var(--vspace-0_5) 0;
    }

    .s-header__nav ul {
        display     : block;
        margin-left : 0;
        transform   : translateY(-2rem);
        opacity     : 0;
        visibility  : hidden;
    }
    
    /* ------------------------------------------------------------------
       CTA 800
 * ------------------------------------------------------------------- */

        .desktop-label{
        display:none;
    }

    .mobile-label{
        display:block;
        width:20px;
        height:20px;
        background-size:contain;
        background-repeat:no-repeat;
        background-position:center;
        pointer-events:none;
    }

    .btn-call .mobile-label{
        background-image:url("../images/ico/tel_cta.svg");
    }

    .btn-sms .mobile-label{
        background-image:url("../images/ico/sms_cta.svg");
    }

    .s-header__cta{

        position:absolute;

        left:50%;
        top:50%;

        transform:translate(-50%,-50%);

        display:flex;
        gap:10px;

        z-index:999;
    }

    .s-header__cta .btn{

        width:44px;
        height:44px;

        padding:0;

        display:flex;
        align-items:center;
        justify-content:center;

        border:1px solid #fff;
        border-radius:50%;

        background:transparent;

        pointer-events:auto;
    }

    .s-header__cta .btn:hover,
    .s-header__cta .btn:active{

        background:#fff;
    }

    .s-header__cta .btn:hover .mobile-label,
    .s-header__cta .btn:active .mobile-label{

        filter:brightness(0);
    }
    
     /* ------------------------------------------------------------------- 
       menu toggle 800
 * ------------------------------------------------------------------- */
    

    .s-header__menu-toggle {
        display : block;
    }

    .menu-is-open .s-header {
        height : auto;
    }

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

    .menu-is-open .s-header__nav ul {
        transform        : translateY(0);
        opacity          : 1;
        visibility       : visible;
        transition       : all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-delay : 0.4s;
    }
}

@media screen and (max-width: 500px) {
    .s-header.sticky {
        --header-height : 76px;
    }
}

@media screen and (max-width: 400px) {
    .s-header__logo {
        transform : translate(6.1vw, -50%);
    }

    .s-header__nav {
        padding-right : 6vw;
        padding-left  : 6vw;
    }

    .s-header__menu-toggle {
        right : 0.4rem;
    }
}

/* =========================================================
   END HEADER!!!
========================================================= */



/* =========================================================
   INTRO
========================================================= */

.s-intro {
    z-index          : 3;
    background-color : black;
    width            : 100%;
    height           : 100vh;
    min-height       : calc(25.5 * var(--space));
    overflow         : hidden;
    position         : relative;
}

/* =========================================================
   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/intro-bg.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        : 0.1;
}

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

/* =========================================================
   INTRO CONTENT
========================================================= */

.s-intro__content {
    --right-block-width : 460px;
    z-index             : 2;
    align-items         : flex-end;
    justify-content     : space-between;
    max-width           : 1000px;
    height              : 100%;
    font-weight         : 300;
    color               : white;
    padding-top         : 10vh;
    padding-bottom      : 20rem;
    position            : relative;
}

.s-intro__content-inner {
    display         : flex;
    align-items     : flex-start;
    justify-content : space-between;
}

.s-intro__content-left,
.s-intro__content-right {
    flex : none;
}

.s-intro__content-left {
    width         : calc(100% - var(--right-block-width) - var(--gutter));
    padding-right : calc(var(--gutter) * 2);
}

.s-intro__content-right {
    width       : var(--right-block-width);
    margin-top: 7px;
    padding-top : var(--vspace-1);
}

.s-intro__content-desc {
    margin-bottom : var(--vspace-0_625);
}

.s-intro__content-title {
    --text-title-size : 5.8rem;
    --text-multiplier : 1;
    font-weight       : 700;
    font-size         : calc(var(--text-title-size) * var(--text-multiplier));
    line-height       : 1.1;
    margin: 0px;
}

.s-intro__content-buttons {
    display : flex;
}

.s-intro__content-btn {
    --btn-height     : calc(var(--vspace-btn) - 1rem);
    font-size        : calc(var(--text-size) * 0.8889);
    background-color : white;
    border-color     : white;
    margin-right     : var(--vspace-1);
    margin-bottom    : 0;
}

/* =========================================================
   INTRO SCROLL
========================================================= */

.s-intro__scroll {
    z-index  : 2;
    position : absolute;
    right    : 4.2rem;
    bottom   : var(--vspace-1);
}

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

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

/* =========================================================
   INTRO TRANSITIONS
========================================================= */

.s-header__inner,
.s-intro__content-left,
.s-intro__content-right,
.s-intro__social,
.s-intro__scroll {
    transition-timing-function : cubic-bezier(0.28, 0.12, 0.22, 1);
    transition-duration        : 0.6s;
    transition-delay           : 0s;
    opacity                    : 0;
}

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

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

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

.no-js .s-header__inner,
.no-js .s-intro__content-left,
.no-js .s-intro__content-right,
.no-js .s-intro__social,
.no-js .s-intro__scroll,
.ss-show .s-header__inner,
.ss-show .s-intro__content-left,
.ss-show .s-intro__content-right,
.ss-show .s-intro__social,
.ss-show .s-intro__scroll {
    opacity   : 1;
    transform : translate(0, 0);
}

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

.no-js .s-intro__content-right,
.ss-show .s-intro__content-right {
    transition-delay : 0.6s;
}

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

/* =========================================================
   RESPONSIVE INTRO
========================================================= */

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

    .s-intro__content-title {
        --text-multiplier : 0.95;
    }
}

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

    .s-intro__content-right {
        padding-top : var(--vspace-0_625);
    }

    .s-intro__content-title {
        --text-multiplier : 0.82;
    }

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

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

    .s-intro__content-title {
        --text-multiplier : 0.76;
    }
}

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

    .s-intro__content-inner {
        flex-direction  : column;
        justify-content : flex-start;
        max-width       : 640px;
        padding-right   : 8rem;
    }

    .s-intro__content-left,
    .s-intro__content-right {
        width : 100%;
    }

    .s-intro__content-right {
        padding-top : 0;
        max-width   : var(--right-block-width);
    }
}

@media screen and (max-width: 700px) {
    .s-intro__content-title {
        --text-multiplier : 0.65;
    }
}

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

    .s-intro__content-title {
        --text-multiplier : 0.56;
    }

    .s-intro__social {
        right : 4rem;
    }

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

@media screen and (max-width: 500px) {
    .s-intro__content-inner {
        padding-right : var(--gutter);
    }

    .s-intro__social {
        display : none;
    }
}

@media screen and (max-width: 400px) {
    .s-intro__content-inner {
        padding-right : 0;
    }

    .s-intro__content-title {
        font-size : var(--text-xxxl);
    }

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

    .s-intro__scroll {
        right : 2.4rem;
    }

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


/* =========================================================
   END INTRO!!!
========================================================= */



/* =========================================================
   USUGI
========================================================= */

.uslugi{

    padding:80px 0;

    background-image:url("../images/bg_Q_1.jpg");

    background-size:cover;

    background-position:center top;

    background-repeat:no-repeat;
}

.uslugi .container{

    max-width:1200px;

    margin:0 auto;

    padding-inline:20px;
}

/* =========================================================
   GRID
========================================================= */

.uslugi-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:8px;
}

/* =========================================================
   KAFELKI
========================================================= */

.uslugi-kafelek{

    display:flex;

    flex-direction:column;

    position:relative;

    overflow:hidden;

    min-height:100%;

    padding:24px;

    border:1px solid rgba(255,255,255,.14);

    border-radius:18px;

    text-decoration:none;

    color:inherit;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.02)
        );

    backdrop-filter:blur(4px);

    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease,
        box-shadow .28s ease;
}

.uslugi-kafelek:hover{

    transform:translateY(-8px);

    border-color:rgba(240,129,0,.75);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    box-shadow:
        0 14px 40px rgba(0,0,0,.22),
        0 0 24px rgba(240,129,0,.18);
}

/* =========================================================
   IKONA
========================================================= */

.uslugi-ikona{

    display:flex;

    align-items:center;

    justify-content:center;

    width:50px;

    height:50px;

    margin-bottom:10px;

    border-radius:12px;

    background:
            rgba(255,255,255,.08)
        );

    border:1px solid rgba(255,255,255,.12);

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.uslugi-kafelek:hover .uslugi-ikona{

    transform:
        translateY(-4px)
        scale(1.06);

    border-color:
        rgba(240,129,0,.5);

    background:
        linear-gradient(
            135deg,
            rgba(240,129,0,.35),
            rgba(255,255,255,.06)
        );
}

.uslugi-ikona img{

    width:48px;

    height:48px;

    object-fit:contain;

    display:block;

    transition:transform .3s ease;
}

.uslugi-kafelek:hover .uslugi-ikona img{

    transform:scale(1.05);
}

/* =========================================================
   TEKST
========================================================= */

.uslugi-tytul{

    margin:0 0 14px;

    color:#f08100;

    font-size:2.4rem;

    line-height:1.2;

    font-weight:700;

    transition:
        color .25s ease,
        transform .25s ease;
}

.uslugi-kafelek:hover .uslugi-tytul{

    color:#fff;

    transform:translateX(4px);
}

.uslugi-opis{

    margin:0;

    color:rgba(255,255,255,.82);

    font-size:1.28rem;

    line-height:1.55;
}

/* =========================================================
   MOBILE
========================================================= */

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

    .uslugi{

        padding:40px 0;
    }

    .uslugi-grid{

        grid-template-columns:repeat(2,1fr);

        gap:6px;

        padding-inline:10px;
    }

    .uslugi-kafelek{

        padding:16px;

        border-radius:14px;
    }

    .uslugi-ikona{

        width:58px;

        height:58px;

        margin-bottom:10px;
    }

    .uslugi-ikona img{

        width:34px;

        height:34px;
    }

    .uslugi-tytul{

        margin-bottom:10px;

        font-size:1.8rem;
    }

    .uslugi-opis{

        font-size:1.15rem;

        line-height:1.45;
    }
}

/* =========================================================
   END US?UGI!!!
========================================================= */



/* =========================================================
   O NAS
========================================================= */

.onas{

    position:relative;

    overflow:hidden;

    min-height:650px;

    padding:80px 0;

    background:#000;
}

/* =========================================================
   PARALLAX BG
========================================================= */

.onas-bg{

    position:absolute;

    inset:-10% 0;

    background-image:url("../images/intro-bg_22.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    transform:
        translate3d(0,0,0)
        scale(1.18);

    will-change:transform;

    z-index:0;
}

/* =========================================================
   OVERLAY
========================================================= */

.onas-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.38),
            rgba(0,0,0,.72)
        );

    z-index:1;
}

/* =========================================================
   CONTENT
========================================================= */

.onas-content{

    position:relative;

    z-index:2;
}

.onas .container{

    max-width:1200px;

    margin:0 auto;

    padding-inline:20px;
}

/* =========================================================
   TYTU?
========================================================= */

.onas-title-wrap{

    position:relative;

    display:inline-block;
}

.onas-numer{

    position:absolute;

    top:-35px;

    left:0;

    z-index:0;

    color:rgba(255,255,255,0.20);

    font-size:13rem;

    font-weight:1000;

    line-height:1;

    pointer-events:none;

    user-select:none;
}

.onas-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    margin-bottom:40px;
}

.onas-header-lewa{

    flex:0 0 48%;
}

.onas-header-prawa{

    flex:0 0 48%;
}

.onas-naglowek{

    margin:0;

    color:#f08100;

    font-size:clamp(2rem,5vw,7rem);

    line-height:1;

    font-weight:700;
}

.onas-wstep{

    max-width:550px;

    margin:0;

    color:rgba(255,255,255,.88);

    font-size:1.8rem;

    line-height:1.6;
}

/* =========================================================
   GRID
========================================================= */

.onas-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:8px;
}

/* =========================================================
   BOX
========================================================= */

.onas-box{

    position:relative;

    overflow:hidden;

    padding:22px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

    backdrop-filter:blur(6px);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.onas-box:hover{

    transform:translateY(-8px);

    border-color:rgba(240,129,0,.6);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.04)
        );

    box-shadow:
        0 14px 40px rgba(0,0,0,.28),
        0 0 30px rgba(240,129,0,.14);
}

/* =========================================================
   BOX TEKST
========================================================= */

.onas-box h3{

    margin:0 0 14px;

    color:#f08100;

    font-size:2.4rem;

    line-height:1.2;

    font-weight:700;
}

.onas-box p{

    margin:0;

    color:rgba(255,255,255,.82);

    font-size:1.28rem;

    line-height:1.55;
}

/* =========================================================
   MOBILE
========================================================= */

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

    .onas{

        padding:40px 0;
    }
    
    .onas-numer{

        font-size:8rem;

        top:-10px;
    }

    .onas-naglowek{

        margin-top:10px;

        font-size:4.6rem;
    }

    .onas-header{

        flex-direction:column;

        gap:18px;

        margin-bottom:24px;

        padding-inline:10px;
    }
    
    .onas-header-lewa,
    .onas-header-prawa{

        width:100%;
    }

    .onas-wstep{

        font-size:1.5rem;

        line-height:1.6;
    }

    .onas-grid{

        grid-template-columns:1fr;

        gap:8px;
    }

    .onas-box{

        padding:22px;

        border-radius:18px;
    }

    .onas-box h3{

        font-size:2rem;
    }

    .onas-box p{

        font-size:1.18rem;

        line-height:1.55;
    }
}

/* =========================================================
   END O NAS!!!
========================================================= */



/* =======================================================
GALERIA
======================================================= */

.galeria{

    padding:80px 0;

    background:#f08100;

    overflow:hidden;
}

.galeria-inner{

    max-width:1200px;

    margin:0 auto;

    padding-inline:20px;
}

/* =======================================================
GRID
======================================================= */

.galeria-grid{

    display:grid;

    grid-template-columns:
        repeat(14,1fr);

    gap:0;

    margin:0 auto;
}

.galeria-item{

    aspect-ratio:1/1;

    margin:0;

    overflow:hidden;
}

.galeria-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* =======================================================
HOVER
======================================================= */

.galeria-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent
        );

    opacity:0;

    transition:opacity .35s ease;
}

.galeria-item:hover::after{

    opacity:1;
}

.galeria-item:hover img{

    transform:scale(1.04);
}

/* =======================================================
OVERLAY
======================================================= */

.galeria-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999999;
}

.galeria-overlay.active{

    display:flex;
}

.galeria-overlay-img{

    width:auto !important;

    height:auto !important;

    max-width:1100px !important;

    max-height:80vh !important;

    object-fit:contain;

    display:block;

    border-radius:0;

    box-shadow:
        0 20px 70px rgba(0,0,0,.45);
}

.galeria-nav,
.galeria-zamknij{

    position:absolute;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    cursor:pointer;

    font-size:3rem;
}

.galeria-nav.prev{

    left:20px;

    top:50%;

    transform:translateY(-50%);
}

.galeria-nav.next{

    right:20px;

    top:50%;

    transform:translateY(-50%);
}

.galeria-zamknij{

    top:20px;

    right:20px;
}

.galeria-overlay-content{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;
}

/* =======================================================
BUTTONS
======================================================= */

.galeria-nav,
.galeria-zamknij{

    position:absolute;

    width:38px !important;
    height:38px !important;
    
    padding: 0;

    align-items:center;
    justify-content:center;

    border-radius:10% !important;

    border:1px solid rgba(240,129,0,.55);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );

    backdrop-filter:blur(10px);

    color:#fff;

    cursor:pointer;

    font-size:2rem;

    line-height:1;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

    z-index:99999;
}

.galeria-nav:hover{
    
    transform: 
        translateY(-50%)
        scale(1.05);
}
.galeria-zamknij:hover{
    
    transform:scale(1.05);

    border-color:
        rgba(240,129,0,.95);

    background:
        linear-gradient(
            180deg,
            #ffffff
        );

    box-shadow:
        0 0 24px rgba(240,129,0,.28);

    transform:scale(1.05);
}

/* =======================================================
ARROWS
======================================================= */

.galeria-nav{

    top:50%;

    transform:translateY(-50%);

    font-size:2rem;

    font-weight:300;

    line-height:0;
}

.galeria-nav.prev{

    left:100px;
}

.galeria-nav.next{

    right:100px;
}

/* =======================================================
CLOSE
======================================================= */

.galeria-zamknij{

    top:24px;

    right:24px;

    font-size:2rem;
    
    color: #FFFFFF;

    line-height:0;
}

/* =======================================================
MOBILE
======================================================= */

@media(max-width:768px){

    .galeria-grid{

        grid-template-columns:repeat(7,1fr);

        gap:0px;
    }
}

/* =======================================================
MOBILE
======================================================= */

@media(max-width:900px){

    .galeria-header{

        flex-direction:column;

        gap:20px;
    }

    .galeria-title{

        font-size:4rem;
    }

    .galeria-num{

        font-size:9rem;

        top:-45px;
    }

    .galeria-opis{

        max-width:100%;

        padding-top:0;
    }

    .galeria-item{

        margin-bottom:6px;
    }

    .galeria-nav{

        width:42px;
        height:42px;

        font-size:2rem;
    }

    .galeria-nav.prev{

        left:12px;
    }

    .galeria-nav.next{

        right:12px;
    }

    .galeria-zamknij{

        width:42px;
        height:42px;

        top:15px;
        right:15px;
    }
}

@media(max-width:768px){

    .galeria-overlay{

        padding:12px;
    }

    .galeria-overlay-img{

        max-width:100% !important;

        max-height:72vh !important;
    }

    .galeria-overlay-content{

        width:100%;
    }

    .galeria-nav,
    .galeria-zamknij{

        width:44px;
        height:44px;

        font-size:2.2rem;
    }

    .galeria-nav.prev{

        left:8px;
    }

    .galeria-nav.next{

        right:8px;
    }

    .galeria-zamknij{

        top:8px;
        right:8px;
    }
}

@media (max-width:480px){

    .galeria-grid{

        grid-template-columns:
            repeat(3,1fr);
    }
}

/* =======================================================
   END GALERIA PREMIUM!!!
======================================================= */



/* ==========================
   FAQ
========================== */

/* ==========================================
   FAQ PARALLAX
========================================== */

.s-faq{
    position:relative;
    overflow:clip;

    padding-top:80px;
    padding-bottom:60px;

    min-height:600px;

    background:#000;
}

/* tlo */

.s-faq__bg{
    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background-image:url("../images/intro-bg_7.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    transform:translate3d(0,0,0) scale(1.2);

    will-change:transform;

    z-index:0;
}

/* przyciemnienie */

.s-faq__overlay{
    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background:linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.65)
    );

    z-index:1;
}

/* tresc */

.s-faq__content{
    
    position:relative;
    
    z-index:2;
    
    max-width:1200px;

    margin:0 auto;

    padding-inline:20px;
}

.faq-container{

    width:100%;

    max-width:900px;

    margin:0 auto;

    padding-inline:0;
}
}

/* pojedynczy element */

.faq-item {

    border-radius: 0px; /* <- tutaj zmieniasz radius */

    overflow: clip;

    transition: all .25s ease;
    
    margin-bottom:20px;
    
    box-sizing:border-box;
}

.faq-item.active{

    margin-bottom:20px;
    
    opacity: 1;
}

/* hover */

.faq-item:hover .faq-question {

    border-color: #f08100;
    color: #f08100;
}

.faq-item.active .faq-question {

    border-color: #f08100;
    color: #f08100;
}

/* pytanie */

.faq-question{

    width:100%;

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:24px 26px;

    border:none;

    border-radius:6px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.10);

    color:#fff;

    font-size:1.4rem;

    line-height:1.4;

    text-align:left;

    cursor:pointer;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
    
    box-sizing:border-box;
}

/* hover pytania */

.faq-item:hover .faq-question,
.faq-item.active .faq-question{

    border-color:rgba(240,129,0,.65);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.04)
        );

    box-shadow:
        0 10px 30px rgba(0,0,0,.20),
        0 0 24px rgba(240,129,0,.16);

    color:#f08100;
}

/* odpowiedź */

.faq-answer{

    font-size:1.45rem;

    color:rgba(255,255,255,.82);

    line-height:1.8;

    max-height:0;

    overflow:clip;

    padding:0 28px;

    transition:
    max-height .45s ease,
    padding .35s ease,
    opacity .25s ease;
    
    opacity: 1;
    
    box-sizing:border-box;
}

/* rozwinięta odpowiedź */

.faq-item.active .faq-answer{

    padding:0 28px 24px;
}

.faq-item.active .faq-answer {

    border-top: 1px solid rgba(240,129,0,.25);

    padding-top: 18px;
}

.chevron {

    width: 10px;
    height: 10px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(-45deg);

    transition: transform .25s ease;

    flex-shrink: 0;
}

.faq-question:hover,
.faq-question:focus,
.faq-question:focus-visible,
.faq-question:active {

    background: transparent !important;
    background-color: transparent !important;

    outline: none !important;
    box-shadow: none !important;

    filter: none !important;
}

/* obrót po rozwinięciu */

.faq-item.active .chevron {

    transform: rotate(45deg);
}

.faq-question:focus,
.faq-question:focus-visible,
.faq-question:active {

    outline: none;
    box-shadow: none;
}

.faq-question {

    -webkit-tap-highlight-color: transparent;
}

.faq-question,
.faq-question:focus,
.faq-question:focus-visible,
.faq-question:active {

    outline: none !important;
    box-shadow: none !important;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

    .faq-header{

        flex-direction:column;

        gap:20px;
    }

    .faq-header__numer{

        font-size:10rem;

        top:-40px;
    }

    .faq-header__opis{

        max-width:100%;
    }
}

@media(max-width:768px){

    .faq-question{

        padding:18px 18px;

        font-size:1.25rem;
    }

    .faq-answer{

        padding-inline:18px;

        font-size:1.25rem;
    }

    .faq-item.active .faq-answer{

        padding:0 18px 18px;
    }
}

/* ==========================================
   END FAQ!!!
========================================== */



/* =======================================================
   KONTAKT CTA
======================================================= */

.kontakt-cta{

    position:relative;

    padding:60px 20px;

    background-color: #000000;

    overflow:hidden;
}

.kontakt-cta__inner{

    max-width:900px;

    margin:0 auto;

    text-align:center;
}

.kontakt-cta__title{

    font-size:clamp(1rem,4vw,6rem);

    line-height:1;

    font-weight:700;

    color:#f08100;

    margin-bottom:24px;
}

.kontakt-cta__text{

    font-size:1.8rem;

    line-height:1.6;

    color:rgba(255,255,255,.75);

    margin-bottom:48px;
}

.kontakt-cta__sociale{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

.kontakt-cta__sociale a{

    display:flex;

    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    border-radius:10px;

    background:
        linear-gradient(
            135deg,
            rgba(240,129,0,.18),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}
.kontakt-cta__sociale a:hover{

    transform:
        translateY(-6px)
        scale(1.05);

    border-color:
        rgba(240,129,0,.65);

    box-shadow:
        0 10px 35px rgba(240,129,0,.22);
}

.kontakt-cta__sociale img{

    width:24px;
    height:24px;

    object-fit:contain;
}

/* =======================================================
   MOBILE
======================================================= */

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

    .kontakt-cta{

        padding:40px 20px;
    }

    .kontakt-cta__title{

        font-size:2.6rem;
    }
}

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

    .kontakt-cta__title{

        font-size:2.6rem;
    }

    .kontakt-cta__text{

        font-size:1.2rem;
    }

    .kontakt-cta__sociale a{

        width:44px;
        height:44px;
    }
    
    .kontakt-cta{

        padding:75px 18px;
    }
}

/* =======================================================
   END KONTAKT CTA!!!
======================================================= */



/* =======================================================
   FOOTER
======================================================= */

.footer{

    position:relative;

    background:#000000;

    padding:40px 20px 40px;

    overflow:hidden;
}

.footer-inner{

    max-width:1200px;

    margin:0 auto;
}

.footer-grid{

    display:grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap:80px;
}

/* =======================================================
   LEWA
======================================================= */

.footer-logo{

    margin-bottom:10px;
}

.footer-logo img{

    width:100px;

    display:block;
}

.footer-title{

    font-size:1.2rem;
    
    font-weight: 700;

    color:#606060;

    margin-bottom:0px;
}

.footer-opis p{
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 700;
    color: #606060;
    margin-bottom: 24px;
}

.footer-sociale{

    display:flex;

    align-items:center;

    gap:22px;

    margin-top:0px;
}

.footer-sociale a{

    display:flex;

    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    border-radius:10px;
    
    margin-bottom:14px;

    background:
        linear-gradient(
            135deg,
            rgba(240,129,0,.18),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.footer-sociale a:hover{

    transform:
        translateY(-6px)
        scale(1.05);

    border-color:
        rgba(240,129,0,.65);

    box-shadow:
        0 10px 35px rgba(240,129,0,.22);
}

.footer-sociale img{

    width:22px;
    height:22px;
}

/* =======================================================
   PRAWA
======================================================= */

.footer-mail-text{

    font-size:1.2rem;
    font-weight: 700;

    color:#606060;
}

.footer-mail{

    display:inline-block;

    font-size:1.2rem;

    font-weight:700;

    color:#f08100;

    margin-bottom:12px;

    transition:.3s ease;
}

.footer-mail:hover{

    color:#fff;

    transform:translateX(6px);
}

.footer-dane p{

    font-size:1.2rem;
    
    font-weight: 700;

    line-height:1.4;

    color:#606060;

    margin-bottom:6px;
}

/* =======================================================
   MENU
======================================================= */

.footer-menu{
    
    font-size:1.2rem;
    
    font-weight: 700;

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:12px;
}

.footer-menu a{

    color:#f08100;

    font-size:1.2rem;

    text-decoration:none;

    transition:.25s ease;
}

.footer-menu a:hover{

    color:#fff;

    transform:translateY(-2px);
}

/* =======================================================
   COPYRIGHT
======================================================= */

.footer-copy{

    margin-top:12px;

    font-size:1.2rem;
    
    font-weight: 700;

    line-height:1.4;

    color:#606060;
}

/* telefon */

.footer-tel{

    color:#f08100;
    
    font-weight: 700;

    text-decoration:none;

    transform:translateX(6px);
}

.footer-tel:hover{

    color:#fff;
}


/* tools */

.footer-tools{

    display:flex;

    align-items:center;

    gap:14px;

    margin-top:12px;
}

.footer-tools img{

    height:14px;

    width:auto;

    opacity:.50;

    transition:.25s ease;
}

.footer-tools img:hover{

    opacity:2;

    transform:translateY(-2px);
}

/* =======================================================
   MOBILE
======================================================= */

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

    .footer-grid{

        grid-template-columns:1fr;

        gap:10px;
    }

    .footer-title{

        font-size:1.2rem;

        line-height:1.1;
        
        margin-top:10px;

        margin-bottom:40px;
    }

    .footer-mail{

        font-size:1.2rem;
    }

    .footer{

        overflow:hidden;
    }

    .footer-inner{

        width:100%;
    }

    .footer-prawa,
    .footer-lewa{

        width:100%;

        min-width:0;
    }
}


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

    .footer{

        padding:40px 20px 36px;
    }

    .footer-title{

        font-size:1.2rem;
        
        margin-top:30px;

        margin-bottom:20px;
    }

    .footer-mail{

        font-size:1.2rem;
    }

    .footer-opis p{

        font-size:1rem;
    }

}

/* ==========================================
   END FOOTER!!!
========================================== */



/* ==========================================
   PULSUJACY TELEFON
========================================== */

.pulsujacy-telefon {
    position: fixed;
    bottom: 25px; /* Odległość od dołu */
    right: 25px;  /* Odległość od prawej */
    width: 60px;
    height: 60px;
    background: url("../images/telefon.svg") no-repeat center;
    border-radius: 100px;
    line-height: 60px;
    z-index: 9999; /* Zawsze na wierzchu */
    transition: all 0.3s ease;
    
    /* Animacja pulsowania */
    animation: pulsowanie 1.5s infinite;
}

.pulsujacy-telefon:hover {
    background: url("../images/telefon_hover.svg") no-repeat center;
    transform: scale(1.1); /* Lekkie powiększenie po najechaniu */
}

/* Definicja animacji */
@keyframes pulsowanie {
    0% {
        box-shadow: 0 0 0 0 #ffffff;
    }
    70% {
        box-shadow: 0 0 0 30px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   END PULSUJACY TELEFON!!!
========================================== */



/* ==========================================
   HELO
========================================== */

.hello-text {

    color: #f08100;

    font-family: "Lucida Grande",
                 "Lucida Sans Unicode",
                 "Lucida Sans",
                 "DejaVu Sans",
                 Verdana,
                 sans-serif;

    line-height:.9;

    letter-spacing:-0.03em;

    font-size:clamp(3.5rem,10vw,11rem);

    font-weight: 700;

    margin-top: -25px;
    margin-bottom: -25px;
    margin-left: 2px;

    opacity: 0;

    transform: translateY(120px);

    animation: titleReveal 2s ease 1s forwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(120px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   END HELO!!!
========================================== */



/* ==========================================
   MAPA GOOGLE
========================================== */

.map-wrapper{
    position:relative;

    width:100%;
    height:400px;

    overflow:hidden;
}

.map-wrapper iframe{
    width:100%;
    height:100%;

    border:0;

    filter:
        grayscale(100%)
        contrast(1.25)
        brightness(.75);
    transition:filter .4s ease;
}

/* pomara?czowa tonacja */

.map-overlay{
    position:absolute;
    inset:0;

    background:#F08100;

    mix-blend-mode:multiply;

    opacity:.50;

    pointer-events:none;
}

.map-wrapper:hover iframe{
    filter:
        grayscale(20%)
        contrast(1.15)
        brightness(.95);
}

/* ==========================================
   MAPA GOOGLE END!!!
========================================== */



/* =========================================================
   SEKCJA HEADER Wspolna
========================================================= */

.sekcja-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    margin-bottom:40px;
}

.sekcja-header-lewa{

    flex:0 0 48%;
}

.sekcja-header-prawa{

    flex:0 0 48%;
}

.sekcja-title-wrap{

    position:relative;

    display:inline-block;
}

.sekcja-numer{

    position:absolute;

    top:-35px;

    left:0;

    z-index:0;

    color:rgba(255,255,255,0.20);

    font-size:13rem;

    font-weight:1000;

    line-height:1;

    pointer-events:none;

    user-select:none;
}

.sekcja-naglowek{

    margin:0;

    color:#f08100;

    font-size:clamp(1rem,4vw,6rem);

    line-height:1;

    font-weight:700;
}

.sekcja-header-prawa{

    flex:0 0 48%;
}

.sekcja-wstep{

    margin:0;

    color:#fff;

    font-size:1.8rem;

    line-height:1.6;
}

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

        flex-direction:column;

        gap:10px;
        
        margin-top:0px;

        margin-bottom:20px;

        padding-inline:10px;
    }
    
    .sekcja-numer{

        font-size:6rem;

        top:-10px;
    }

    .sekcja-naglowek{

        margin-top:10px;

        font-size:2.6rem;
    }
   
    .sekcja-header-lewa,
    .usekcja-header-prawa{

        width:100%;
    }

    .sekcja-wstep{

        font-size:1.3rem;

        line-height:1.6;
    }
    
}

/* =========================================================
   END SEKCJA HEADER Wspolna!!!
========================================================= */



/* =========================================================
   AKCENTY
========================================================= */

.akcent_white{

    color:#ffffff;

    font-size:clamp(2rem,5vw,7rem);

    line-height:1;

    font-weight:700;
}

.akcent_white_bold{

    color:#ffffff;

    font-size:clamp(2rem,5vw,7rem);

    line-height:1;

    font-weight:900;
}

.akcent_orange{

    color:#f08100;

    font-size:clamp(2rem,5vw,7rem);

    line-height:1;

    font-weight:900;
}

.akcent_szary{

    color:#404040;

    font-size:clamp(2rem,5vw,7rem);

    line-height:1;

    font-weight:900;
}

/* =========================================================
   END AKCENTY!!!
========================================================= */