/* Google Fonts import - must be at the top */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=Fira+Code:wght@300;400;500;600;700&display=swap");

.folio-title .project-links img.openai-icon {
    width: 1.25em;
    height: 1.25em;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.2s, filter 0.2s;
    filter: invert(54%) sepia(98%) saturate(747%) hue-rotate(120deg) brightness(92%) contrast(101%);
    /* matches --color-1 (turkuaz) */
}

.folio-title .project-links a:hover img.openai-icon {
    transform: scale(1.05);
    filter: invert(54%) sepia(98%) saturate(747%) hue-rotate(120deg) brightness(120%) contrast(101%);
}
/* =================================================================== 
 * Ceevee Main Stylesheet
 * Template Ver. 2.0.0
 * 01-03-2021
 * ------------------------------------------------------------------
 *
 * TOC:
 * # settings and variables
 *      ## fonts
 *      ## colors
 *      ## vertical spacing and typescale
 *      ## grid variables
 * # normalize
 * # basic/base setup styles
 *      ## media
 *      ## typography resets
 *      ## links
 *      ## inputs
 * # Grid v3.0.0
 *      ## medium screen devices
 *      ## tablets
 *      ## mobile devices
 *      ## small mobile devices <= 400px
 * # block grids
 *      ## block grids - medium screen devices
 *      ## block grids - tablets
 *      ## block grids - mobile devices
 *      ## block grids - small mobile devices <= 400px
 * # MISC 
 * # custom grid, block grid STACK breakpoints
 * # base style overrides 
 *      ## links
 * # typography & general theme styles
 *      ## Lists
 *      ## responsive video container
 *      ## floated image
 *      ## tables
 *      ## spacing
 * # preloader
 *      ## page loaded
 * # forms 
 *      ## Style Placeholder Text
 * # buttons 
 * # additional components
 *      ## skillbars
 *      ## alert box
 *      ## pagination 
 * # common and reusable styles
 *      ## animation stuff 
 *      ## MailtoUI style overrides
 * # site header
 *      ## header nav
 *      ## mobile menu toggle 
 * # hero
 *      ## hero content
 *      ## hero social
 *      ## hero scrolldown
 *      ## animate intro content
 * # resume 
 *      ## resume block
 * # portfolio
 *      ## portfolio list
 *      ## modal popup
 * # CTA
 * # testimonials
 *      ## swiper style overrides
 *      ## testimonial slider 
 * # contact
 *      ## contact block
 * # footer
 *      ## footer social
 *      ## copyright
 *      ## go top
 *
 * ------------------------------------------------------------------ */


/* ===================================================================
 * # settings and variables
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts
 * - --------------------------------------------------------- */
:root {
    --font-1: "Inter", sans-serif;
    --font-2: "IBM Plex Serif", serif;
    /* monospace
     */
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/* ------------------------------------------------------------------- 
 * ## colors
 * ------------------------------------------------------------------- */
:root {
    /* color-1(#11ABB0)
     * color-2(#F06000)
     */
    --color-1: hsla(182, 82%, 38%, 1);
    --color-2: hsla(24, 100%, 47%, 1);

    /* theme color variations
     */
    --color-1-lighter: hsla(182, 82%, 58%, 1);
    --color-1-light  : hsla(182, 82%, 48%, 1);
    --color-1-dark   : hsla(182, 82%, 28%, 1);
    --color-1-darker : hsla(182, 82%, 18%, 1);
    --color-2-lighter: hsla(24, 100%, 67%, 1);
    --color-2-light  : hsla(24, 100%, 57%, 1);
    --color-2-dark   : hsla(24, 100%, 37%, 1);
    --color-2-darker : hsla(24, 100%, 27%, 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: #0a0a0a;
    --color-gray-18: #141414;
    --color-gray-17: #1e1e1e;
    --color-gray-16: #282828;
    --color-gray-15: #323333;
    --color-gray-14: #3b3d3d;
    --color-gray-13: #454747;
    --color-gray-12: #4f5151;
    --color-gray-11: #595b5b;
    --color-gray-10: #636565;
    --color-gray-9 : #737474;
    --color-gray-8 : #828484;
    --color-gray-7 : #929393;
    --color-gray-6 : #a1a3a3;
    --color-gray-5 : #b1b2b2;
    --color-gray-4 : #c1c1c1;
    --color-gray-3 : #d0d1d1;
    --color-gray-2 : #e0e0e0;
    --color-gray-1 : #eff0f0;
    --color-white  : #ffffff;

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

    /* buttons
     */
    --color-btn                   : var(--color-gray-3);
    --color-btn-text              : var(--color-black);
    --color-btn-hover             : var(--color-black);
    --color-btn-hover-text        : var(--color-white);
    --color-btn-primary           : var(--color-1);
    --color-btn-primary-text      : var(--color-white);
    --color-btn-primary-hover     : var(--color-2);
    --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);

    /* others
     */
    --color-bg     : var(--color-gray-18);
    --color-border : var(--color-gray-2);
    --border-radius: 5px;
}

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

    /* spacing
     * base font size: 18px 
     * vertical space unit : 32px
     */
    --base-size: 62.5%;
    --base-font-size: 1.8rem;
    --space: 3.2rem;

    /* vertical spacing 
     */
    --vspace-0_125: calc(0.125 * var(--space));
    --vspace-0_25 : calc(0.25 * var(--space));
    --vspace-0_5  : calc(0.5 * 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
 */
@media screen and (max-width: 600px) {
    :root {
        --base-font-size: 1.6rem;
        --space: 2.8rem;
    }
}

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

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

    /* gutters
     */
    --gutter-lg : 2.4rem;
    --gutter-md : 2rem;
    --gutter-mob: 1rem;
}


/* ==========================================================================
 * # normalize
 * normalize.css v8.0.1 | MIT License |
 * github.com/necolas/normalize.css
 *
 * -------------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## document
 * ------------------------------------------------------------------- */

/* 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.*/

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## sections
 * ------------------------------------------------------------------- */

/* Remove the margin in all browsers. */

body {
    margin: 0;
}

/* Render the `main` element consistently in IE. */

main {
    display: block;
}

/* Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari. */

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

/* ------------------------------------------------------------------- 
 * ## grouping
 * ------------------------------------------------------------------- */

/* 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE. */

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/* 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */

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

/* ------------------------------------------------------------------- 
 * ## text-level semantics
 * ------------------------------------------------------------------- */

/* Remove the gray background on active links in IE 10. */

a {
    background-color: transparent;
}

/* 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

/* Add the correct font weight in Chrome, Edge, and Safari. */

b, strong {
    font-weight: bolder;
}

/* 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */

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

/* Add the correct font size in all browsers. */

small {
    font-size: 80%;
}

/* Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers. */

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* ------------------------------------------------------------------- 
 * ## embedded content
 * ------------------------------------------------------------------- */

/* Remove the border on images inside links in IE 10. */

img {
    border-style: none;
}

/* ------------------------------------------------------------------- 
 * ## forms
 * ------------------------------------------------------------------- */

/* 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari. */

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

/* Show the overflow in IE.
 * 1. Show the overflow in Edge. */

button, input {
    /* 1 */
    overflow: visible;
}

/* Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox. */

button, select {
    /* 1 */
    text-transform: none;
}

/* Correct the inability to style clickable types in iOS and Safari. */

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

/* Remove the inner border and padding in Firefox. */

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

/* Restore the focus styles unset by the previous rule. */

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

/* Correct the padding in Firefox. */

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

/* 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers. */

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera. */

progress {
    vertical-align: baseline;
}

/* Remove the default vertical scrollbar in IE 10+. */

textarea {
    overflow: auto;
}

/* 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10. */

[type="checkbox"], [type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/* Correct the cursor style of increment and decrement buttons in Chrome. */

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

/* 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari. */

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

/* Remove the inner padding in Chrome and Safari on macOS. */

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

/* 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari. */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* ------------------------------------------------------------------- 
 * ## interactive
 * ------------------------------------------------------------------- */

/* Add the correct display in Edge, IE 10+, and Firefox. */

details {
    display: block;
}

/* Add the correct display in all browsers. */

summary {
    display: list-item;
}

/* ------------------------------------------------------------------- 
 * ## misc
 * ------------------------------------------------------------------- */

/* Add the correct display in IE 10+. */

template {
    display: none;
}

/* Add the correct display in IE 10. */

[hidden] {
    display: none;
}


/* ===================================================================
 * # basic/base setup styles
 *
 * ------------------------------------------------------------------- */
html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

body {
    font-weight: normal;
    line-height: 1;
    word-wrap: break-word;
    -moz-font-smoothing: grayscale;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: none;
}

/* ------------------------------------------------------------------- 
 * ## media
 * ------------------------------------------------------------------- */
svg, img, video embed, iframe, object {
    max-width: 100%;
    height: auto;
}

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

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

em, i {
    font-style: italic;
    line-height: inherit;
}

strong, b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 60%;
    line-height: inherit;
}

ol, ul {
    list-style: none;
}

li {
    display: block;
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
    text-decoration: none;
    line-height: inherit;
}

a img {
    border: none;
}

/* ------------------------------------------------------------------- 
 * ## inputs
 * ------------------------------------------------------------------- */
fieldset {
    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 v3.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.
 * ------------------------------------------------------------------- */

/* rows
 * ------------------------------------- */
.row {
    width: 92%;
    max-width: var(--width-grid-max);
    margin: 0 auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

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

/* columns
 * -------------------------------------- */
.column {
    -ms-flex: 1 1 0%;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    padding: 0 var(--gutter-lg);
}

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

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

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

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

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

.row.row-y-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.row.row-stretch {
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.row.row-baseline {
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
}

.row.row-x-left {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.row.row-x-right {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.row.row-x-center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

/* flex item utility alignment classes
 */
.align-center {
    margin: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-left {
    margin-right: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-right {
    margin-left: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

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

.align-x-left {
    margin-right: auto;
}

.align-x-right {
    margin-left: auto;
}

.align-y-center {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-y-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-y-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

/* large screen column widths 
 */
.large-1 {
    -ms-flex: 0 0 8.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.large-2 {
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.large-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.large-4 {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.large-5 {
    -ms-flex: 0 0 41.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.large-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.large-7 {
    -ms-flex: 0 0 58.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.large-8 {
    -ms-flex: 0 0 66.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.large-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
}

.large-10 {
    -ms-flex: 0 0 83.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.large-11 {
    -ms-flex: 0 0 91.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.large-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## medium screen devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .row .row {
        margin-left: calc(var(--gutter-md) * -1);
        margin-right: calc(var(--gutter-md) * -1);
    }
    .column {
        padding: 0 var(--gutter-md);
    }
    .medium-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .medium-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .medium-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .medium-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .medium-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .medium-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .medium-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .medium-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .medium-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .medium-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .medium-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .medium-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## tablets
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .row {
        width: 90%;
    }
    .tab-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .tab-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .tab-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .tab-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .tab-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .tab-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .tab-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .tab-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .tab-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .tab-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .tab-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .tab-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hide-on-tablet {
        display: none;
    }
}

/* ------------------------------------------------------------------- 
 * ## mobile devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .row {
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw;
    }
    .row .row {
        margin-left: calc(var(--gutter-mob) * -1);
        margin-right: calc(var(--gutter-mob) * -1);
        padding-left: 0;
        padding-right: 0;
    }
    .column {
        padding: 0 var(--gutter-mob);
    }
    .mob-1 {
        -ms-flex: 0 0 8.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .mob-2 {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .mob-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .mob-4 {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .mob-5 {
        -ms-flex: 0 0 41.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .mob-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .mob-7 {
        -ms-flex: 0 0 58.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .mob-8 {
        -ms-flex: 0 0 66.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .mob-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .mob-10 {
        -ms-flex: 0 0 83.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .mob-11 {
        -ms-flex: 0 0 91.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .mob-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hide-on-mobile {
        display: none;
    }
}

/* ------------------------------------------------------------------- 
 * ## small mobile devices <= 400px
 * ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
    .row .row {
        margin-left: 0;
        margin-right: 0;
    }
    .column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    .hide-on-mobile-small {
        display: none;
    }
}


/* ===================================================================
 * # block grids
 *
 * -------------------------------------------------------------------
 * Equally-sized columns define at parent/row level.
 * ------------------------------------------------------------------- */
.block-large-1-8>.column {
    -ms-flex: 0 0 12.5%;
    -webkit-box-flex: 0;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.block-large-1-6>.column {
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.block-large-1-5>.column {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    flex: 0 0 20%;
    max-width: 20%;
}

.block-large-1-4>.column {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.block-large-1-3>.column {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.block-large-1-2>.column {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.block-large-full>.column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## block grids - medium screen devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .block-medium-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-medium-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-medium-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-medium-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-medium-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-medium-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-medium-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## block grids - tablets
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .block-tab-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-tab-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-tab-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-tab-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-tab-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-tab-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-tab-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## block grids - mobile devices
 * ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    .block-mob-1-8>.column {
        -ms-flex: 0 0 12.5%;
        -webkit-box-flex: 0;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .block-mob-1-6>.column {
        -ms-flex: 0 0 16.66667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .block-mob-1-5>.column {
        -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .block-mob-1-4>.column {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .block-mob-1-3>.column {
        -ms-flex: 0 0 33.33333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .block-mob-1-2>.column {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .block-mob-full>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## block grids - small mobile devices <= 400px
 * ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
    .stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
}


/* ===================================================================
 * # MISC 
 *
 * ------------------------------------------------------------------- */
.h-group:after {
    content: "";
    display: table;
    clear: both;
}

/* misc helper classes
 */
.is-hidden {
    display: none;
}

.is-invisible {
    visibility: hidden;
}

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

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

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

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

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

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

.h-add-bottom {
    margin-bottom: var(--vspace-1) !important;
}

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

.h-full-width {
    width: 100%;
}

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

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

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

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

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


/* ===================================================================
 * # custom grid, block grid STACK breakpoints
 *
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .w-1000-stack, .block-1000-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .w-700-stack, .block-700-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .w-500-stack, .block-500-stack>.column {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ===================================================================
 * # base style overrides 
 *
 * ------------------------------------------------------------------- */
html {
    font-size: var(--base-size);
}

html, body {
    height: 100%;
}

body {
    background: var(--color-bg);
    font-family: var(--font-1);
    font-size: var(--text-size);
    font-style: normal;
    font-weight: normal;
    line-height: var(--vspace-1);
    color: var(--color-text);
    margin: 0;
    padding: 0;
}

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

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

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


/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */

/* 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)
 * -------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-1);
    font-weight: 600;
    font-style: normal;
    color: var(--color-text-dark);
    -webkit-font-variant-ligatures: common-ligatures;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
}

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

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

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

h1, .h1 {
    font-size: var(--text-display-1);
    line-height: calc(var(--vspace-1_75) + var(--vspace-0_125));
    letter-spacing: -.015em;
}

@media screen and (max-width: 600px) {
    h1, .h1 {
        font-size: var(--text-xxxl);
        line-height: var(--vspace-1_75);
    }
}

h2, .h2 {
    font-size: var(--text-xxl);
    line-height: calc(var(--vspace-1_25) + var(--vspace-0_125));
    letter-spacing: -.01em;
}

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

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

h5, .h5 {
    font-size: var(--text-md);
    line-height: calc(0.875 * var(--space));
}

h6, .h6 {
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: var(--vspace-0_75);
    text-transform: uppercase;
    letter-spacing: .2em;
}

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

@media screen and (max-width: 600px) {
    .legal-menu {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
    }
    .legal-menu__toggle {
        width: 40px;
        height: 40px;
        background: transparent !important;
        border: none !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10001;
        box-shadow: none !important;
        outline: none !important;
    }
    .legal-menu__toggle:hover {
        background: rgba(255,255,255,0.1) !important;
        transform: scale(1.05);
    }
    .legal-menu__toggle:focus {
        background: transparent !important;
        outline: none !important;
    }
    .legal-menu__toggle:active {
        background: rgba(255,255,255,0.05) !important;
        transform: scale(0.95);
    }
    .legal-menu__toggle i {
        color: rgba(255,255,255,0.9) !important;
        font-size: 20px !important;
        background: transparent !important;
        pointer-events: none;
    }
    .legal-menu__dropdown {
        min-width: 160px;
        right: 0;
        top: 48px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .legal-menu__dropdown a {
        padding: 14px 16px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }
    .legal-menu__dropdown a:hover {
        background: rgba(255,255,255,0.1);
        color: rgba(255,255,255,1);
        padding-left: 20px;
    }
    /* 3 nokta ikonu sabit ve masaüstü gibi görünsün */
    .legal-menu__toggle i.fas.fa-ellipsis-h {
        color: rgba(255,255,255,0.9) !important;
        font-size: 20px !important;
        background: transparent !important;
        border-radius: 50%;
        box-shadow: none !important;
    }
}
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;
}

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

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

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

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

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

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

del {
    text-decoration: line-through;
}

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

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

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

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

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

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

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

ul {
    list-style: disc;
}

li {
    display: list-item;
}

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

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

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

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

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

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

dd {
    margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* ------------------------------------------------------------------- 
 * ## floated image 
 * ------------------------------------------------------------------- */
img.h-pull-right {
    margin: var(--vspace-0_5) 0 var(--vspace-0_5) 2.8rem;
}

img.h-pull-left {
    margin: var(--vspace-0_5) 2.8rem var(--vspace-0_5) 0;
}

/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
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) - .1rem);
    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;
}

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

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


/* =================================================================== 
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    background: #050505;
    z-index: 500;
    height: 100vh;
    width: 100%;
    opacity: 1;
}

.no-js #preloader, .oldie #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 rgba(255, 255, 255, 0.1);
    border-right: 4px solid rgba(255, 255, 255, 0.1);
    border-bottom: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid white;
    -webkit-animation: load 1.1s infinite linear;
    animation: load 1.1s infinite linear;
    display: block;
    border-radius: 50%;
    width: var(--vspace-1_5);
    height: var(--vspace-1_5);
}

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

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

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

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


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

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

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

.ss-custom-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    margin: 0;
    line-height: 3rem;
    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 var(--color-black);
    border-right: 2px solid var(--color-black);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 2.4rem;
    top: 50%;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

textarea {
    min-height: 25.6rem;
}

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);
    border-bottom: 1px solid var(--color-1);
}

label, legend {
    font-family: var(--font-1);
    font-weight: 700;
    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: .2rem;
}

/* ------------------------------------------------------------------- 
 * ## Style Placeholder Text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: var(--color-placeholder);
}

:-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);
}


/* ===================================================================
 * # 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: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .35em;
    height: var(--btn-height);
    line-height: calc(var(--btn-height) - .4rem);
    padding: 0 3.6rem;
    margin: 0 .4rem 1.6rem 0;
    color: var(--color-btn-text);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: var(--border-radius);
    background-color: var(--color-btn);
    border: 0.2rem solid var(--color-btn);
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover, 
input[type="reset"]:hover, 
input[type="button"]:hover, 
.btn:focus, 
button:focus, 
input[type="submit"]:focus, 
input[type="reset"]:focus, 
input[type="button"]:focus {
    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:hover, 
button.btn--primary:hover, 
input[type="submit"].btn--primary:hover, 
input[type="reset"].btn--primary:hover, 
input[type="button"].btn--primary:hover, 
.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 {
    background: var(--color-btn-primary-hover);
    border-color: var(--color-btn-primary-hover);
    color: var(--color-btn-primary-hover-text);
}

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

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

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

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

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

.btn--stroke:hover, button.btn--stroke:hover {
    background: var(--color-btn-stroke-hover) !important;
    border: 0.2rem 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;
}


/* ===================================================================
 * # additional components
 *
 * ------------------------------------------------------------------- */

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

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

/* dictionary definition 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) ". ";
}

/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <figure class="pull-quote">
 *		<blockquote>
 *			<p></p>
 *		</blockquote>
 * </figure>
 *
 * --------------------------------------------------------------------- */
.pull-quote {
    position: relative;
    padding: 0;
    margin-top: 0;
    text-align: center;
    background-color: var(--color-gray-1);
}

.pull-quote blockquote {
    border: none;
    margin: 0 auto;
    max-width: 62rem;
    padding-top: var(--vspace-4);
    padding-bottom: var(--vspace-2);
    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_25);
    width: var(--vspace-1_25);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../images/icons/icon-quote.svg);
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    position: absolute;
    top: var(--vspace-1_5);
    left: 50%;
}

/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *		<li><a href="#">[value]<em>[name]</em></a></li>
 *	</ul>
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */
.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: inline-block;
    font-size: var(--text-lg);
    font-family: var(--font-1);
    font-weight: 600;
    line-height: var(--vspace-1_5);
    border: none;
    color: var(--color-black);
}

.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: normal;
    font-style: normal;
    color: var(--color-text-light);
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars-fat {
    list-style: none;
    margin: var(--vspace-1) 0 var(--vspace-0_5);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem 1.5rem;
    position: relative;
    overflow: visible;
}

/* Smooth scrolling for skill interactions */
html {
    scroll-behavior: smooth;
}

.skill-bars-fat li {
    height: 5.2rem;
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skill-bars-fat li:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.skill-bars-fat li strong {
    font-family: var(--font-1);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: calc(var(--text-size) * 0.7);
    line-height: 5.2rem;
    position: absolute;
    top: 0;
    left: 1.5rem;
    z-index: 10;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.skill-bars-fat li .progress {
    background: var(--color-gray-3);
    position: relative;
    height: 100%;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-bars-fat li .progress::before {
    content: "";
    display: block;
    height: 100%;
    background-color: var(--color-gray-18);
    width: 0%;
    transition: width 1.5s ease-out;
    border-radius: 3px;
}

/* Skill bars animation trigger */
.skill-bars-fat.loaded li .progress.animate::before {
    width: var(--target-width, 0%);
}

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

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

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

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

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

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

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

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

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

.skill-bars-fat li .percent50::before {
    width: 0%;
    animation: fillBar50 2s ease-out 0.5s forwards;
}

@keyframes fillBar50 {
    to { width: 50%; }
}

.skill-bars-fat li .percent60::before {
    width: 0%;
    animation: fillBar60 2s ease-out 0.7s forwards;
}

@keyframes fillBar60 {
    to { width: 60%; }
}

.skill-bars-fat li .percent70::before {
    width: 0%;
    animation: fillBar70 2s ease-out 0.3s forwards;
}

@keyframes fillBar70 {
    to { width: 70%; }
}

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

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

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

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

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

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

/* Mobile responsiveness for skills grid */
@media screen and (max-width: 768px) {
    .skill-bars-fat {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }
    
    .skill-bars-fat li {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .skill-bars-fat {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

/* ------------------------------------------------------------------- 
 * ## alert box
 * ------------------------------------------------------------------- */
.alert-box {
    padding: var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
    margin-bottom: var(--vspace-1);
    border-radius: 4px;
    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: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
}

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

.alert-box__close::after {
    -webkit-transform: rotate(-45deg);
    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;
    -webkit-transition: all .5s;
    transition: all .5s;
}

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

.pgn ul {
    display: inline-block;
    list-style: none;
    margin-left: 0;
    position: relative;
    padding: 0 6rem;
}

.pgn ul li {
    display: inline-block;
    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: inline-block;
    padding: .2rem 1.2rem;
    height: var(--pgn-num-height);
    margin: .2rem .2rem;
    color: var(--color-text-dark);
    border-radius: 4px;
    -webkit-transition: all, .3s, ease-in-out;
    transition: all, .3s, ease-in-out;
}

.pgn__num:hover {
    background: var(--color-gray-18);
    color: var(--color-white);
}

.pgn .current, .pgn .current:hover {
    background-color: var(--color-gray-18);
    color: var(--color-white);
}

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

.pgn__prev, .pgn__next {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: 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;
    -webkit-transition: all, .3s, ease-in-out;
    transition: all, .3s, ease-in-out;
    position: absolute;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.pgn__prev:hover, .pgn__next:hover {
    background-color: var(--color-gray-18);
}

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

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

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

.pgn__prev {
    left: 0;
}

.pgn__next {
    right: 0;
}

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

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

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


/* ===================================================================
 * # common and reusable styles
 *
 * ------------------------------------------------------------------- */
.wide {
    max-width: var(--width-wide);
}

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

.sticky-block {
    position: -webkit-sticky;
    position: sticky;
    top: 2rem;
}

.section-header-allcaps {
    display: inline-block;
    font-size: var(--text-size);
    line-height: var(--vspace-1_25);
    text-transform: uppercase;
    letter-spacing: .25em;
    padding-left: .25em;
    padding-bottom: .1em;
    margin-top: 0;
    margin-bottom: var(--vspace-1_5);
    position: relative;
}

.section-header-allcaps:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-1);
    position: absolute;
    left: 0;
    bottom: 0;
}

/* ------------------------------------------------------------------- 
 * ## animation stuff 
 * ------------------------------------------------------------------- */
.animate-this {
    opacity: 0;
    visibility: hidden;
}

.no-js .animate-this, 
.no-cssanimations .animate-this {
    opacity: 1;
    visibility: visible;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
    animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
}

/* fade in up */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ------------------------------------------------------------------- 
 * ## MailtoUI style overrides
 * ------------------------------------------------------------------- */
.mailtoui-modal {
    --mailtoui-modal-head-bgcolor: var(--color-gray-18);
    --mailtoui-modal-head-title-color: white;
    --mailtoui-modal-body-bgcolor: var(--color-gray-14);
    --mailtoui-button-bgcolor: var(--color-gray-16);
    --mailtoui-button-text-color: white;
    --mailtoui-button-bgcolor-hover: var(--color-2);
    --mailtoui-button-text-color-hover: white;
    --mailtoui-button-text-size: 16px;
    --mailtoui-email-address-bgcolor: var(--color-gray-10);
    --mailtoui-email-address-text-color: black;
    font-family: var(--font-1);
    background-color: #151515;
    color: white;
}

.mailtoui-modal-content {
    background-color: var(--mailtoui-modal-body-bgcolor);
    border-radius: var(--border-radius);
}

.mailtoui-modal-content button {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.mailtoui-modal-head {
    background-color: var(--mailtoui-modal-head-bgcolor);
}

.mailtoui-modal-title {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 16px;
    color: var(--mailtoui-modal-head-title-color);
}

.mailtoui-modal-close {
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.mailtoui-modal-close:hover, .mailtoui-modal-close:focus {
    color: white;
    font-weight: 300;
}

.mailtoui-modal-body {
    background-color: var(--mailtoui-modal-body-bgcolor);
}

.mailtoui-button-text {
    font-size: var(--mailtoui-button-text-size);
    text-transform: none;
    letter-spacing: 0;
}

.mailtoui-button:focus .mailtoui-button-content {
    background-color: var(--color-2);
    color: white;
}

.mailtoui-button-content, .mailtoui-button-copy {
    background-color: var(--mailtoui-button-bgcolor);
    color: var(--mailtoui-button-text-color);
    border-radius: var(--border-radius);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mailtoui-button-content:hover, 
.mailtoui-button-content:focus, 
.mailtoui-button-copy:hover, 
.mailtoui-button-copy:focus {
    background-color: var(--mailtoui-button-bgcolor-hover);
    color: var(--mailtoui-button-text-color-hover);
}

.mailtoui-copy {
    border-radius: var(--border-radius);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mailtoui-button-icon-copy {
    line-height: var(--vspace-1);
}

.mailtoui-button-copy-clicked, 
.mailtoui-button-copy-clicked:hover, 
.mailtoui-button-copy-clicked:focus {
    background-color: #1F9D55;
    color: white;
}

.mailtoui-email-address {
    background-color: var(--mailtoui-email-address-bgcolor);
    color: var(--mailtoui-email-address-text-color);
    font-size: 16px;
    line-height: 1;
    border-radius: var(--border-radius);
}

.mailtoui-brand a {
    color: rgba(255, 255, 255, 0.4);
}

.mailtoui-brand a:hover, .mailtoui-brand a:focus {
    font-weight: 400;
    color: white;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * common and reusable styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {
    .section-header-allcaps {
        font-size: calc(var(--text-size) * 0.9444);
    }
}

@media screen and (max-width: 900px) {
    .section-header-allcaps {
        font-size: calc(var(--text-size) * 0.8889);
    }
}

@media screen and (max-width: 800px) {
    .section-header-allcaps {
        font-size: var(--text-size);
        text-align: center;
        margin-bottom: calc(2.75 * var(--space));
    }
}


/* ===================================================================
 * # site header
 *
 * ------------------------------------------------------------------- */
.s-header {
    --header-height: 6.8rem;
    z-index: 100;
    width: 100%;
    background-color: transparent;
    position: absolute;
    top: .8rem;
    left: 0;
}

.s-header__nav-wrap {
    height: var(--header-height);
    min-height: 0;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0 calc(var(--gutter-lg) + 1.2rem);
}

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

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

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

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

/* -------------------------------------------------------------------
 * ## header nav
 * ------------------------------------------------------------------- */
.s-header__nav {
    font-family: var(--font-1);
    font-size: 1.45rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.s-header__nav ul {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
}

.s-header__nav li {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
}

.s-header__nav a {
    display: block;
    height: var(--header-height);
    line-height: var(--header-height);
    padding: 0 1.6rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.s-header__nav .current a {
    color: var(--color-2);
}

/* Say Hello link specific behavior */
.s-header__nav a[href="#contact"]:hover,
.s-header__nav a[href="#contact"]:focus-visible,
.s-header__nav li.current a[href="#contact"] {
    color: var(--color-1) !important;
}

/* Portfolio link specific behavior */
.s-header__nav a[href="#portfolio"]:hover,
.s-header__nav a[href="#portfolio"]:focus-visible,
.s-header__nav li.current a[href="#portfolio"] {
    color: var(--color-1) !important;
}

/* Resume link specific behavior */
.s-header__nav a[href="#resume"]:hover,
.s-header__nav a[href="#resume"]:focus-visible,
.s-header__nav li.current a[href="#resume"] {
    color: var(--color-1) !important;
}

/* ------------------------------------------------------------------- 
 * ## mobile menu toggle 
 * ------------------------------------------------------------------- */
.s-header__menu-toggle {
    display: none;
    font-family: var(--font-1);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .4rem;
    background-color: var(--color-2);
    color: white;
    width: var(--header-height);
    height: var(--header-height);
    line-height: var(--header-height);
    position: absolute;
    right: 0;
    top: 0;
}

.s-header__menu-toggle .s-header__menu-icon {
    display: block;
    width: 30px;
    height: 2px;
    margin-top: -1px;
    right: auto;
    bottom: auto;
    background-color: white;
    position: absolute;
    left: 19px;
    top: 50%;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.s-header__menu-toggle .s-header__menu-icon::before, 
.s-header__menu-toggle .s-header__menu-icon::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}

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

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

.s-header__menu-toggle.is-clicked .s-header__menu-icon {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all .1s;
    transition: all .1s;
}

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

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

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

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-header {
        top: 0;
    }
    .s-header .row {
        display: block;
        width: 100%;
        padding: 0;
    }
    .s-header__nav-wrap, .s-header__nav {
        display: none !important;
        background-color: #050505;
    }
    .s-header__nav-wrap {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top center;
        transform-origin: top center;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
    }
    .s-header__nav {
        font-size: var(--text-size);
        font-weight: 500;
        height: auto;
        width: 100%;
        padding: var(--vspace-3) 6.8rem 3.6rem;
        -webkit-transform: translateY(-2rem);
        transform: translateY(-2rem);
        opacity: 0;
        visibility: hidden;
    }
    .s-header__nav ul {
        counter-reset: ctr;
        display: block;
        text-align: left;
        margin: 0 0 var(--vspace-1_75) 0;
        border-top: 1px dotted rgba(255, 255, 255, 0.06);
    }
    .s-header__nav ul li {
        display: block;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.06);
        position: relative;
    }
    .s-header__nav ul li a {
        height: auto;
        padding: var(--vspace-0_5) 0.4rem var(--vspace-0_5) 2.8rem;
        line-height: var(--vspace-1);
        color: white;
    }
    .s-header__nav ul li::before {
        content: counter(ctr, decimal-leading-zero);
        counter-increment: ctr;
        font-size: var(--text-xs);
        color: rgba(255, 255, 255, 0.18);
        position: absolute;
        top: var(--vspace-0_5);
        left: 0;
    }
    .s-header__menu-toggle {
        display: none !important;
    }
    .menu-is-open .s-header__nav-wrap {
        height: auto;
        min-height: var(--header-height);
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .menu-is-open .s-header__nav {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transition-delay: .5s;
        transition-delay: .5s;
    }
}

@media screen and (max-width: 400px) {
    .s-header__nav {
        padding: 6.8rem 4rem 3.6rem;
    }
}

/* -------------------------------------------------------------------
 * make sure the menu is visible on larger screens
 * ------------------------------------------------------------------- */
@media only screen and (min-width: 801px) {
    .s-header__nav {
        display: block !important;
    }
}


/* ===================================================================
 * # hero
 *
 * ------------------------------------------------------------------- */
.s-hero {
    background-color: var(--color-gray-18);
    width: 100%;
    height: 100vh;
    min-height: calc(25.5 * var(--space));
    overflow: hidden;
    position: relative;
}

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

.s-hero__bg::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .5;
}

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

/* ------------------------------------------------------------------- 
 * ## hero content
 * ------------------------------------------------------------------- */
.s-hero__content {
    height: 100%;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    padding-top: 16vh;
    padding-bottom: 12vh;
    position: relative;
}

.s-hero__content h1 {
    font-size: 9.8rem;
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
}

.s-hero__content h3 {
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.667;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--vspace-0_5);
    margin-right: auto;
    margin-left: auto;
    padding-bottom: var(--vspace-1);
    max-width: 800px;
    position: relative;
}

.s-hero__content h3 span, .s-hero__content h3 a {
    color: white;
}

.s-hero__content h3::after {
    display: block;
    content: "";
    text-align: center;
    height: 1px;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
}

/* ------------------------------------------------------------------- 
 * ## hero social
 * ------------------------------------------------------------------- */
.s-hero__content-social {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    font-size: 2.6rem;
    line-height: 1;
    margin-top: var(--vspace-0_5);
}

.s-hero__content-social a {
    color: white;
    margin-right: var(--vspace-0_75);
}

.s-hero__content-social a:hover, 
.s-hero__content-social a:focus {
    color: var(--color-2-light);
}

.s-hero__content-social a:last-child {
    margin-right: 0;
}

/* ------------------------------------------------------------------- 
 * ## hero scrolldown
 * ------------------------------------------------------------------- */
.s-hero__scroll {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: var(--vspace-1_25);
}

.s-hero__scroll-link {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: calc(var(--text-size) * 0.6111);
    line-height: var(--vspace-1);
    text-transform: uppercase;
    letter-spacing: .4em;
    color: white;
}

.s-hero__scroll-link:hover .scroll-text::after, 
.s-hero__scroll-link:focus .scroll-text::after {
    width: 100%;
}

.s-hero__scroll-link .scroll-arrow {
    display: block;
    width: var(--vspace-1);
    height: var(--vspace-1);
    margin-right: 1.6rem;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
}

.s-hero__scroll-link .scroll-arrow svg {
    height: 2rem;
    width: 2rem;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    position: absolute;
    left: 50%;
    top: 50%;
}

.s-hero__scroll-link .scroll-arrow svg path {
    fill: white;
}

.s-hero__scroll-link .scroll-text {
    position: relative;
}

.s-hero__scroll-link .scroll-text::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: white;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* -------------------------------------------------------------------
 * ## animate hero content
 * ------------------------------------------------------------------- */
.ss-preload .s-header, 
.ss-preload .s-hero {
    visibility: hidden;
    opacity: 0;
}
.ss-preload .s-hero__content {
    opacity: 0;
}
.ss-loaded .s-header,
.ss-loaded .s-hero {
    visibility: visible;
    opacity: 1;
}
.ss-loaded .s-hero__content {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * hero
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1600px) {
    .s-hero__content h1 {
        font-size: 9.4rem;
    }
    .s-hero__content h3 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 1400px) {
    .s-hero__content h1 {
        font-size: 8.8rem;
    }
    .s-hero__content h3 {
        font-size: 2rem;
        max-width: 680px;
    }
}

@media screen and (max-width: 1200px) {
    .s-hero__content h1 {
        font-size: 8.4rem;
    }
    .s-hero__content h3 {
        font-size: 1.9rem;
    }
}

@media screen and (max-width: 900px) {
    .s-hero__content h1 {
        font-size: 7.6rem;
    }
    .s-hero__content h3 {
        font-size: 1.8rem;
    }
    .s-hero__content-social {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 800px) {
    .s-hero__content {
        padding-top: 12vh;
    }
    .s-hero__content h1 {
        font-size: 6.8rem;
    }
    .s-hero__content h3 {
        max-width: 600px;
    }
}

@media screen and (max-width: 700px) {
    .s-hero__content h1 {
        font-size: 6.2rem;
    }
}

@media screen and (max-width: 600px) {
    .s-hero__content h1 {
        font-size: 5.8rem;
    }
    .s-hero__content-social {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 500px) {
    .s-hero__content h1 {
        font-size: 5.2rem;
    }
}

@media screen and (max-width: 400px) {
    .s-hero__content h1 {
        font-size: 4.8rem;
    }
    .s-hero__content h3 {
        font-size: 1.7rem;
    }
    .s-hero__content h3::after {
        width: 240px;
    }
    .s-hero__content-social {
        font-size: 2rem;
    }
    .s-hero__content-social a {
        margin-right: var(--vspace-0_5);
    }
}

@media screen and (max-width: 360px) {
    .s-hero__scroll-link .scroll-arrow {
        display: none;
    }
}


/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */
.s-about {
    --color-border: var(--color-gray-16);
    background-color: var(--color-gray-17);
    padding-top: calc(6 * var(--space));
    padding-bottom: var(--vspace-4);
    color: rgba(255, 255, 255, 0.4);
}

.s-about h3 {
    margin-top: 0;
    color: white;
}

.s-about__pic {
    width: var(--vspace-5);
    height: var(--vspace-5);
    border: 1.6rem solid rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

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

.s-about__content-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

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

.s-about__content-bottom .btn--download {
    background-color: white;
    border-color: white;
    color: black;
    margin-right: 0;
}

.s-about__content-bottom .btn--download svg {
    height: 2rem;
    width: 2rem;
    vertical-align: middle;
    margin-right: 1.2rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.s-about__content-bottom .btn--download:hover, 
.s-about__content-bottom .btn--download:focus {
    background-color: var(--color-2);
    border-color: var(--color-2);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-about__pic {
        width: var(--vspace-4_5);
        height: var(--vspace-4_5);
        border-width: 1.4rem;
    }
}

@media screen and (max-width: 900px) {
    .s-about__pic {
        width: var(--vspace-4);
        height: var(--vspace-4);
        border-width: 1.2rem;
    }
}

@media screen and (max-width: 800px) {
    .s-about {
        padding-top: var(--vspace-5);
    }
    .s-about__pic {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .s-about__content-bottom .btn--download {
        margin-top: var(--vspace-0_5);
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .s-about__content-bottom .btn--download svg {
        display: none;
    }
}


/* ===================================================================
 * # resume 
 *
 * ------------------------------------------------------------------- */
.s-resume {
    background-color: #f8f9fa;
    padding-top: calc(6 * var(--space));
    padding-bottom: var(--vspace-2);
}

.s-resume__section {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--vspace-0_5);
    margin-bottom: var(--vspace-1_5);
}

.s-resume__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* ------------------------------------------------------------------- 
 * ## resume block
 * ------------------------------------------------------------------- */
.resume-block {
    margin-bottom: var(--vspace-1);
}

.resume-block h4 {
    line-height: 1.080;
    margin-top: 0;
    margin-bottom: var(--vspace-0_25);
}

.resume-block__header-meta {
    font-family: var(--font-2);
    font-size: calc(var(--text-size) * 1.1111);
    font-style: italic;
    margin-top: -.4rem;
    margin-bottom: var(--vspace-0_75);
}

.resume-block__header-meta span:first-child {
    margin-right: .6rem;
}

.resume-block__header-date {
    display: inline-block;
    font-family: var(--font-1);
    font-size: calc(var(--text-size) * 0.8889);
    font-size: var(--text-sm);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-text-light);
}

.resume-block__header-date::before {
    content: "\2022";
    color: var(--color-text);
    margin-right: .2rem;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * resume
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-resume {
        padding-top: var(--vspace-4);
    }
    .s-resume__section .column:first-child {
        text-align: center;
    }
}


/* ===================================================================
 * # portfolio
 *
 * ------------------------------------------------------------------- */
.s-portfolio {
    background-color: #e9ecef;
    padding-top: calc(3 * var(--space));
    padding-bottom: var(--vspace-5);
}

.s-portfolio h3 {
    margin-top: 0;
}

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

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

.folio-item__thumb {
    display: block;
    background-color: white;
    position: relative;
    overflow: hidden;
}

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

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

.folio-item img {
    display: block;
    margin: 0;
    -webkit-transition: all, .5s;
    transition: all, .5s;
}

/* on hover
 *---------------------------------------------- */
.folio-item:hover .folio-item__thumb::before {
    opacity: 1;
    visibility: visible;
}

.folio-item:hover .folio-item__thumb::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

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

/* ------------------------------------------------------------------- 
 * ## modal popup
 * ------------------------------------------------------------------- */
.modal-popup {
    max-width: 680px;
    background-color: white;
    font-size: calc(var(--text-size) * 0.9444);
    line-height: 1.647;
    overflow-y: auto;
    position: relative;
}

.modal-popup img {
    margin-bottom: var(--vspace-0_5);
}

.modal-popup h5 {
    margin-top: 0;
}

.modal-popup__desc {
    padding: 0 4rem 1.2rem;
}

.modal-popup__cat {
    list-style: none;
    margin-left: 0;
    font-size: var(--text-sm);
    line-height: var(--vspace-0_5);
    color: var(--color-text-light);
    padding-left: calc(0.875 * var(--space));
    position: relative;
}

.modal-popup__cat::before {
    content: "";
    display: block;
    height: calc(0.625 * var(--space));
    width: calc(0.625 * var(--space));
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../images/icons/icon-tag.svg);
    position: absolute;
    left: 0;
    top: -0.15em;
}

.modal-popup__cat li {
    display: inline;
    padding-left: 0;
}

.modal-popup__cat li::after {
    content: ", ";
}

.modal-popup__cat li:last-child::after {
    display: none;
}

.modal-popup__details {
    background-color: rgba(0, 0, 0, 0.3);
    font-size: var(--text-sm);
    line-height: calc(var(--vspace-1_5) - 2px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: var(--border-radius);
    padding: 0 1.4rem;
    position: absolute;
    top: var(--vspace-1_25);
    left: 4rem;
}

.modal-popup__details:hover, 
.modal-popup__details:focus {
    background-color: var(--color-1);
    border-color: var(--color-1);
    color: white;
}


/* ===================================================================
 * # CTA
 *
 * ------------------------------------------------------------------- */
.s-cta {
    background-color: var(--color-gray-1);
    padding-top: var(--vspace-2_5);
    padding-bottom: var(--vspace-3_5);
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: var(--vspace-1_25);
    text-align: center;
    position: relative;
}

.s-cta .section-desc {
    margin-top: 0;
}

.s-cta::before {
    content: "";
    display: block;
    height: 1px;
    width: 20vw;
    min-width: 150px;
    background-color: var(--color-gray-3);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}

.cta-content {
    max-width: 800px;
}

.cta-content .btn {
    max-width: 600px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * cta
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .s-cta {
        font-size: var(--text-md);
        line-height: var(--vspace-1);
    }
    .cta-content {
        max-width: 600px;
    }
}

@media screen and (max-width: 600px) {
    .s-cta .section-desc {
        font-size: var(--text-xl);
        line-height: var(--vspace-1_25);
    }
}

@media screen and (max-width: 400px) {
    .s-cta {
        padding-top: var(--vspace-3);
        padding-bottom: var(--vspace-3);
        font-size: var(--text-size);
    }
    .s-cta .section-desc {
        font-size: var(--text-lg);
        line-height: var(--vspace-1);
    }
}


/* ===================================================================
 * # testimonials
 *
 * ------------------------------------------------------------------- */
.s-testimonials {
    padding-top: var(--vspace-5);
    padding-bottom: var(--vspace-3_5);
    color: rgba(255, 255, 255, 0.8);
    background-color: var(--color-gray-19);
    overflow: hidden;
    position: relative;
}

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

.s-testimonials__bg::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gray-19);
    opacity: .8;
}

.s-testimonials h3 {
    margin-top: 0;
    color: white;
}

.s-testimonials__header, .s-testimonials__content {
    position: relative;
}

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

.s-testimonials__content>.column:first-child {
    min-height: 0;
    min-width: 0;
}

/* ------------------------------------------------------------------- 
 * ## swiper style overrides
 * ------------------------------------------------------------------- */
.s-testimonials .swiper-container {
    padding-bottom: var(--vspace-2_5);
}

.s-testimonials .swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 9px;
}

.s-testimonials .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: white;
    opacity: 0.4;
}

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

/* ------------------------------------------------------------------- 
 * ## testimonial slider 
 * ------------------------------------------------------------------- */
.testimonial-slider {
    position: relative;
}

.testimonial-slider p {
    font-weight: 400;
    font-size: 1.7rem;
    line-height: var(--vspace-1);
}

.testimonial-slider__slide {
    position: relative;
}

.testimonial-slider__author {
    display: inline-block;
    min-height: var(--vspace-2);
    margin-bottom: var(--vspace-0_5);
    padding-left: 8.8rem;
    position: relative;
}

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

.testimonial-slider__cite {
    display: block;
}

.testimonial-slider__cite strong, 
.testimonial-slider__cite span {
    font-style: normal;
}

.testimonial-slider__cite strong {
    font-size: calc(var(--text-size) * 0.944);
    line-height: var(--vspace-0_5);
    color: white;
}

.testimonial-slider__cite span {
    display: block;
    font-size: calc(var(--text-size) * 0.778);
    font-weight: 300;
    line-height: var(--vspace-0_5);
    color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * testimonials
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .testimonial-slider__slide {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .testimonial-slider__author {
        padding-left: 6.8rem;
    }
}

@media screen and (max-width: 400px) {
    .testimonial-slider__author {
        padding-left: 0;
        margin-bottom: var(--vspace-0_5);
        min-height: 0;
        text-align: center;
    }
    .testimonial-slider__avatar {
        display: inline-block !important;
        margin: 0;
        position: static;
    }
}


/* ===================================================================
 * # contact
 *
 * ------------------------------------------------------------------- */
.s-contact {
    background-color: var(--color-gray-18);
    padding-top: calc(4 * var(--space));
    padding-bottom: var(--vspace-3_5);
}

.s-contact .section-header-allcaps {
    color: white;
    margin-bottom: var(--vspace-1);
    margin-top: -5rem;
}

.s-contact .huge-text {
    color: white;
    margin-top: -2rem;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.304;
}

.s-contact__content [class*="column"]:last-child {
    margin-left: auto;
}

/* ------------------------------------------------------------------- 
 * ## contact block
 * ------------------------------------------------------------------- */
.contact-infos .btn {
    margin-top: var(--vspace-0_75);
}

.contact-block {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.286;
}

.contact-block a {
    color: white;
}

.contact-block a:hover, .contact-block a:focus {
    color: var(--color-2);
}

.contact-block__header {
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0;
    margin-bottom: .2rem;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * contact
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-contact {
        padding-bottom: var(--vspace-2);
    }
    .s-contact__content .column {
        margin: 0;
    }
    .s-contact__content>.column:first-child {
        margin-bottom: var(--vspace-2);
    }
}

@media screen and (max-width: 800px) {
    .s-contact {
        padding-top: var(--vspace-5);
    }
    .s-contact__header {
        text-align: center;
    }
    .s-contact .huge-text {
        font-size: 4.2rem;
    }
}

@media screen and (max-width: 600px) {
    .s-contact .huge-text {
        font-size: 3.4rem;
    }
    .contact-block {
        font-size: 2.6rem;
    }
    .contact-block__header {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 400px) {
    .s-contact .huge-text {
        font-size: 3.2rem;
    }
    .contact-block {
        font-size: 2.2rem;
    }
    .contact-block__header {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 360px) {
    .s-contact .huge-text {
        font-size: 3rem;
    }
}


/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
.s-footer {
    background-color: var(--color-gray-18);
    padding-top: var(--vspace-1);
    padding-bottom: var(--vspace-3);
    color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.s-footer .row {
    padding-top: var(--vspace-1);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.s-footer a {
    color: white;
}

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

/* ------------------------------------------------------------------- 
 * ## footer social
 * ------------------------------------------------------------------- */
.s-footer__social {
    list-style: none;
    font-size: var(--text-lg);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 0 0 .4rem;
    position: relative;
    top: -6%;
}

.s-footer__social a {
    color: white;
}

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

.s-footer__social li {
    padding-left: 0;
    margin-right: 1.6rem;
}

/* ------------------------------------------------------------------- 
 * ## copyright
 * ------------------------------------------------------------------- */
.ss-copyright {
    z-index: 2;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
    margin-right: auto;
    position: relative;
}

.ss-copyright span {
    font-size: var(--text-sm);
    display: inline-block;
}

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

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

.ss-copyright span:last-child a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.ss-copyright span:last-child a:hover {
    color: rgba(255, 255, 255, 0.5);
}

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

.ss-go-top a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    border: 0 none;
    height: 6.4rem;
    width: 6.4rem;
    border-radius: 50%;
    background-color: #050505;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative;
}

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

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

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

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

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .s-footer {
        padding-bottom: var(--vspace-2_5);
    }
    .ss-go-top {
        bottom: 4rem;
        right: 3.2rem;
    }
    .ss-go-top a {
        height: 6rem;
        width: 6rem;
    }
}

@media screen and (max-width: 1000px) {
    .s-footer {
        padding-bottom: var(--vspace-2);
    }
    .s-footer__social {
        margin-left: 0;
        margin-bottom: var(--vspace-0_5);
        top: 0;
    }
    .ss-copyright {
        -ms-flex-order: 0;
        -webkit-box-ordinal-group: 1;
        order: 0;
    }
}

@media screen and (max-width: 800px) {
    .ss-go-top a {
        height: 5.2rem;
        width: 5.2rem;
    }
    .ss-go-top svg {
        height: 2rem;
        width: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .ss-copyright span {
        display: block;
    }
    .ss-copyright span::after {
        display: none;
    }
    .ss-go-top {
        right: 2.4rem;
    }
}

@media screen and (max-width: 500px) {
    .s-footer__social {
        font-size: var(--text-md);
    }
    .s-footer__social li {
        margin-right: 1.4rem;
    }
}

/* Typewriter effect for Hello World */
#hello-world {
    font-family: 'Fira Code', monospace;
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--color-2-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid white;
    animation: typing 1.5s steps(11, end) 1s, blink-caret 0.5s step-end 2 2.5s;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    width: 11ch;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes typing {
    0% { 
        width: 0; 
        opacity: 1; 
    }
    100% { 
        width: 11ch; 
        opacity: 1; 
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}

/* Mobile responsive for Hello World */
@media screen and (max-width: 768px) {
    #hello-world {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 600px) {
    #hello-world {
        font-size: 2rem;
    }
}

@media screen and (max-width: 400px) {
    #hello-world {
        font-size: 1.8rem;
    }
}

/* ===================================================================
 * Portfolio Styles (inspired by modern design)
 * ================================================================== */

/* Grid Classes for Portfolio */
#portfolio .row {
    width: 94%;
    max-width: 1140px;
    margin: 0 auto;
    display: block;
}

#portfolio .col-twelve {
    width: 100%;
}

#portfolio .bgrid {
    width: 100%;
}

#portfolio {
    background: #ffffff;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h5 {
    font-size: 1.6rem;
    color: var(--color-1);
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

.section-intro h1 {
    font-size: 4rem;
    color: #151515;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.section-intro .lead {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #757575;
    max-width: 80rem;
    margin: 0 auto 0 auto;
}

.portfolio-content {
    position: relative;
    text-align: center;
}

#folio-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 3rem;
}

#portfolio .folio-item {
    padding: 0;
    position: relative;
    overflow: visible;
    background-color: #ebebeb;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
}

#portfolio .folio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#portfolio .item-wrap {
    padding: 0;
    height: auto;
    display: block;
}

#portfolio .folio-title {
    color: black;
    font-size: 2.6rem;
    padding: 2.5rem 2rem 0.3rem 2rem;
    margin-bottom: 0;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

#portfolio .folio-title a {
    color: var(--color-1);
    font-size: 2.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 0.5rem;
}

#portfolio .folio-title a:hover {
    color: var(--color-2);
    transform: scale(1.1);
}

#portfolio .folio-title a i {
    font-size: 1.2em;
    color: var(--color-1);
    transition: transform 0.2s, color 0.2s;
}

#portfolio .folio-title a:hover i {
    color: var(--color-2);
    transform: scale(1.1);
}

#portfolio .folio-types {
    color: var(--color-1);
    padding: 0.2rem 2rem 1rem 2rem;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: left;
    display: block;
}

/* Reduce vertical gap for single-logo titles */
#portfolio h4.folio-title.single-logo + .folio-types {
    margin-top: -0.2rem !important;
    padding-top: 0 !important;
    padding-bottom: 0.6rem !important;
}

#portfolio .project-description {
    color: #666;
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
    text-align: left;
}

.hidden {
    display: none !important;
}

.show-more-container {
    margin: 4rem auto 0 auto;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

#showMoreBtn {
    background: var(--color-1);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#showMoreBtn:hover {
    background: var(--color-2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media only screen and (max-width: 1024px) {
    #folio-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #portfolio .folio-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 768px) {
    #folio-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .section-intro {
        margin-bottom: 3rem;
    }
    
    .section-intro h1 {
        font-size: 3rem;
    }
    
    #portfolio {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    
    #portfolio .folio-title {
        font-size: 2rem;
    }
    
    #portfolio .item-wrap {
        padding: 0;
        margin: 0;
        position: relative;
    }
}

@media only screen and (max-width: 400px) {
    #portfolio .folio-title {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    #portfolio .folio-title a {
        align-self: flex-end;
    }
}

/* ===================================================================
 * Contact Form Styles
 * ================================================================== */

.contact-form {
    margin-top: 1rem;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    font-family: var(--font-1);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-1);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--color-1-light);
    border-radius: 8px;
    font-family: var(--font-2);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-1);
    box-shadow: 0 0 0 3px hsla(182, 82%, 38%, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-placeholder);
    opacity: 0.7;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: var(--color-placeholder);
    opacity: 0.7;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: var(--color-placeholder);
    opacity: 0.7;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    color: var(--color-placeholder);
    opacity: 0.7;
}

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

.contact-form button {
    background: var(--color-1);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.contact-form button:hover {
    background: var(--color-1-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.contact-form button:active {
    transform: translateY(0);
}

/* Responsive Contact Form */
@media only screen and (max-width: 768px) {
    .contact-form {
        margin-top: 2rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1.4rem;
        padding: 1rem;
    }

    .contact-form button {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
    }
}

/* Custom secondary button styles */
.btn--secondary, 
button.btn--secondary {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

.btn--secondary:hover, 
button.btn--secondary:hover,
.btn--secondary:focus, 
button.btn--secondary:focus {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: #ffffff !important;
}

/* ===================================================================
 * # Modern UI Enhancements
 * ------------------------------------------------------------------- */

/* Pull to Refresh */
body {
    overscroll-behavior-y: contain;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-2-light), var(--color-2));
    z-index: 10000;
    transition: width 0.1s ease, background 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reading-progress.turquoise {
    background: linear-gradient(90deg, #17a2b8, #20c997);
}

/* Custom Scrollbar - Webkit (Chrome/Edge/Safari) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gray-18), #666);
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #333, #555);
}

/* Custom Scrollbar - Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gray-18) #f1f1f1;
}

/* Text Selection */
::selection {
    background: var(--color-gray-18);
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--color-gray-18);
    color: #ffffff;
    text-shadow: none;
}

/* Accent Color */
html {
    accent-color: var(--color-gray-18);
}

/* Form elements with accent color */
input[type="checkbox"],
input[type="radio"],
input[type="range"],
progress {
    accent-color: var(--color-gray-18);
}

/* ===================================================================
 * # Skills Tooltip
 * ------------------------------------------------------------------- */

.skill-tooltip {
    position: relative;
    cursor: pointer;
}

.skill-tooltip .tooltip-text {
    visibility: hidden;
    width: 280px;
    background-color: #000000;
    color: #ffffff;
    text-align: left;
    border-radius: 6px;
    padding: 10px 14px;
    position: fixed;
    z-index: 999999;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-shadow: none;
    pointer-events: none;
    max-width: 90vw;
}

.skill-tooltip .tooltip-text::after {
    display: none;
}

.skill-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* OpenAI icon styling and fallback */
/* OpenAI brand icon support */
.folio-title a i.fa-brands.fa-openai {
    font-size: 18px;
    vertical-align: middle;
    margin-left: 6px;
}

/* Portfolio title icons general styling */
.folio-title i {
    font-size: 1.2em;
    vertical-align: middle;
    margin-left: 6px;
    display: inline-block;
    color: var(--color-1);
    transition: transform 0.2s, color 0.2s;
}

.folio-title a i {
    font-size: 1.2em;
    transition: transform 0.2s, color 0.2s;
}

.folio-title a:hover i {
    color: var(--color-2);
    transform: scale(1.1);
}

/* Technology icons hover effects */
.folio-title i.fa-android:hover {
    color: var(--color-2) !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.folio-title i.fa-windows:hover {
    color: var(--color-2) !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.folio-title i.fa-desktop:hover {
    color: var(--color-2) !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.folio-title i.fa-microchip:hover {
    color: var(--color-2) !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.folio-title i.fa-brands.fa-openai:hover {
    color: var(--color-2) !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* Project links container */
.folio-title .project-links {
    display: inline-flex;
    flex-direction: row;
    gap: 0.4em;
    align-items: center;
    margin-left: 10px;
}

/* spacing is handled by gap; no extra margins needed */

/* Font Awesome OpenAI icon styling to match other icons */
.folio-title .project-links .fa-openai {
    font-size: 1.25em;
    vertical-align: middle;
    display: inline-block;
    margin-right: 0;
    transition: all 0.2s;
    color: var(--color-1);
}

.folio-title .project-links a:hover .fa-openai {
    transform: scale(1.05);
    color: #00a67e;
}

/* OpenAI SVG image should match icon color and hover */
.folio-title .project-links .svg-icon {
    width: 1.4em;
    height: 1.4em;
    display: inline-block;
    vertical-align: middle;
    color: var(--color-1);
    fill: currentColor;
    transition: transform 0.2s, color 0.2s;
}

.folio-title .project-links a:hover .svg-icon {
    transform: scale(1.1);
    color: var(--color-2);
}

/* Mobile responsiveness for tooltips */
@media screen and (max-width: 768px) {
    .skill-tooltip .tooltip-text {
        width: 85vw;
        max-width: 300px;
        font-size: 12px;
        padding: 12px 16px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 600px) {
    .skill-tooltip .tooltip-text {
        width: 90vw;
        max-width: 280px;
        font-size: 11px;
        padding: 10px 14px;
    }
}

/* ===================================================================
 * # Legal Menu (Discrete)
 * ------------------------------------------------------------------- */

.legal-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;
    font-family: "poppins-regular", sans-serif;
}

.legal-menu__toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
    border-radius: 50%;
}

.legal-menu__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.legal-menu__toggle:active {
    transform: scale(0.95);
}

.legal-menu__toggle i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.legal-menu__toggle:hover i {
    color: rgba(255, 255, 255, 1);
}

.legal-menu__dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    min-width: 170px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10000;
}

.legal-menu__dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.legal-menu__dropdown a {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-menu__dropdown a:last-child {
    border-bottom: none;
}

.legal-menu__dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
    padding-left: 20px;
}

/* Mobile responsiveness for legal menu */
@media screen and (max-width: 600px) {
    /* Legal menü tüm sayfalarda üstte sabit, scroll ile takip etmesin */
    .legal-menu {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 9999;
    }
    
    .legal-menu__toggle {
        width: 40px;
        height: 40px;
        background: rgba(14, 15, 13, 0.7) !important;
        border: none !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10001;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .legal-menu__toggle:hover {
        background: rgba(14, 15, 13, 0.9) !important;
        transform: scale(1.05);
    }
    
    .legal-menu__toggle:focus {
        background: rgba(14, 15, 13, 0.7) !important;
        outline: none !important;
    }
    
    .legal-menu__toggle:active {
        background: rgba(14, 15, 13, 0.8) !important;
        transform: scale(0.95);
    }
    
    .legal-menu__toggle i {
        color: rgba(120, 120, 120, 0.4) !important;
        font-size: 20px !important;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .legal-menu__dropdown {
        min-width: 160px;
        right: 0;
        top: 48px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .legal-menu__dropdown a {
        padding: 14px 16px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .legal-menu__dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 1);
        padding-left: 20px;
    }
}

/* ===================================================================
 * # Legal Pages Styling - Ultra Simple & Clean
 * ------------------------------------------------------------------- */

.legal-page {
    background-color: #111111;
    color: #ffffff;
    padding: 2rem 1rem;
    font-family: Georgia, "Times New Roman", Times, serif;
}

.s-legal {
    padding: 2rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-content {
    max-width: 650px;
    margin: 0 auto;
    padding: 0;
    line-height: 1.7;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-family: Georgia, "Times New Roman", Times, serif;
    letter-spacing: -0.5px;
}

.legal-date {
    color: #888888;
    font-size: 1.2rem;
    font-style: italic;
    font-family: Georgia, serif;
}

.legal-body {
    line-height: 1.8;
    color: #dddddd;
    font-size: 1.7rem;
    font-family: Georgia, "Times New Roman", Times, serif;
}

.legal-body h2 {
    color: #ffffff;
    font-size: 2rem;
    margin: 3rem 0 1.2rem 0;
    font-weight: 500;
    font-family: Georgia, "Times New Roman", Times, serif;
    letter-spacing: -0.3px;
}

.legal-body p {
    margin-bottom: 1.4rem;
    text-align: justify;
}

.legal-body a {
    color: #39b982;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-body a:hover {
    color: #2a9068;
    border-bottom-color: #2a9068;
}

.legal-body strong {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile responsiveness for legal pages */
@media screen and (max-width: 768px) {
    .legal-page {
        padding: 1rem 0.5rem;
    }
    
    .s-legal {
        padding: 1rem 0;
    }
    
    .legal-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .legal-header h1 {
        font-size: 2.4rem;
    }
    
    .legal-body {
        font-size: 1.5rem;
        line-height: 1.7;
    }
    
    .legal-body h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
    }
    
    .legal-body p {
        text-align: left;
    }
}

/* Force transparent background for mobile menu - Fix orange square issue */
@media screen and (max-width: 768px) {
    .legal-menu__toggle {
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }
    
    .legal-menu__toggle:focus {
        background: transparent !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    .legal-menu__toggle:active {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* 3 nokta ikonu sabit ve masaüstü gibi görünsün */
    .legal-menu__toggle i.fas.fa-ellipsis-h {
        color: rgba(120, 120, 120, 0.4) !important;
        font-size: 20px !important;
        background: transparent !important;
        border-radius: 50%;
        box-shadow: none !important;
    }
}

/* Mobilde hamburger menü ve ana navigasyonu tamamen gizle */
@media screen and (max-width: 768px) {
    .s-header__menu-toggle,
    .s-header__nav-wrap,
    .s-header__nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Ana header sadece logo ile kalsın */
    .s-header {
        padding: 0 !important;
    }
}

/* Portfolio Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    #portfolio {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Portfolio başlık kısmı - boşlukları azalt */
    #portfolio .section-intro {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    #portfolio .section-intro h5 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
        letter-spacing: 0.2rem !important;
    }
    
    #portfolio .section-intro h1 {
        font-size: 2.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    #portfolio .section-intro .lead {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }
    
    #portfolio .row {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 1rem !important;
    }
    
    .portfolio-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #portfolio .folio-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 0 !important;
        border-radius: 15px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    #portfolio .item-wrap {
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
    }
    
    .folio-title {
        padding: 1.5rem !important;
        margin: 0 !important;
        text-align: left !important;
        position: relative !important;
    }
    
    h4.folio-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.3rem !important;
        text-align: left !important;
        padding-right: 5.5rem !important;
    }
    
    /* Single logo projects - special styling */
    h4.folio-title.single-logo {
        padding-right: 2.8rem !important;
    }
    
    /* Single icon links (direct a tags in h4, not in project-links container) */
    h4.folio-title > a {
        position: absolute !important;
        top: 0.6rem !important;
        right: 0.6rem !important;
        width: 2.8rem !important;
        height: 2.8rem !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        z-index: 40 !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    h4.folio-title > a:active {
        transform: scale(0.95) !important;
        background: rgba(255, 165, 0, 0.9) !important;
    }
    
    /* Project links fixed to card's top-right corner, horizontal row */
    .folio-title .project-links {
        position: absolute !important;
        top: 0.6rem !important;
        right: 0.6rem !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.4rem !important;
        margin: 0 !important;
        z-index: 30 !important;
        flex-wrap: nowrap !important;
        pointer-events: auto !important;
    }
    .folio-title .project-links a {
        width: 2.8rem !important;
        height: 2.8rem !important;
        padding: 0.3rem !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        text-decoration: none !important;
        touch-action: manipulation !important;
        min-width: 44px !important;
        min-height: 44px !important;
        position: relative !important;
        z-index: 999 !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    .folio-title .project-links a:active {
        transform: scale(0.95) !important;
        background: rgba(255, 165, 0, 0.9) !important;
    }
    .folio-title .project-links .fa-openai,
    .folio-title .project-links .svg-icon,
    .folio-title .project-links img {
        width: 12px !important;
        height: 12px !important;
        margin: 0 !important;
        display: block !important;
        object-fit: contain !important;
    }
}