@charset "UTF-8";
/**!
	Ricardo Zea's website main CSS file
	Date: 3/10/2016
*/
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary { /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 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 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

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

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

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

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

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

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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 {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  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; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

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

/*! Gutenberg reset — adapted from Normalize */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
cite,
small {
  display: block;
}

body,
article,
section,
footer,
header,
div,
input,
nav,
article ol,
article ul,
blockquote,
figure {
  box-sizing: border-box;
}

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
a {
  background: transparent;
}

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

/* Text-level semantics
   ========================================================================== */
abbr {
  letter-spacing: 0.1em;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 70%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

em,
i {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* Embedded content
   ========================================================================== */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/* Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Images
   ========================================================================== */
img {
  max-width: 100%;
  display: block;
  margin: inherit auto;
}

/* Configuration
   ========================================================================== */
/* Mixins
   ========================================================================== */
/* Calculations
   ========================================================================== */
/* Mixins
   ========================================================================== */
/* Font themes
   ========================================================================== */
/* Defaults
   ========================================================================== */
*, *:before, *:after {
  font-size: 16px;
  font-size: 100%;
  font-family: Merriweather, Georgia, serif;
}

* {
  line-height: 26px;
  line-height: 1.625rem;
}

/* Paragraph
   ========================================================================== */
/* Headings
   ========================================================================== */
h1 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 52px;
  line-height: 3.25rem;
  margin-top: 104px;
  margin-top: 6.5rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}

h2 {
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 39px;
  line-height: 2.4375rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}

h3 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin-top: 52px;
  margin-top: 3.25rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}

h4 {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin-top: 39px;
  margin-top: 2.4375rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}

h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}

h1 + h2 {
  margin-top: 26px;
  margin-top: 1.625rem;
}

h2 + h3,
h3 + h4,
h4 + h5 {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

h5 + h6 {
  margin-top: -13px;
  margin-top: -0.8125rem;
}

h6 {
  font-style: italic;
  font-weight: normal;
}

/* Links
   ========================================================================== */
/* Figures & other elements
   ========================================================================== */
figcaption {
  line-height: 26px;
  line-height: 1.625rem;
  color: #222;
  font-size: 0.8125rem;
  font-style: italic;
  margin-bottom: 0;
  text-align: center;
}

blockquote {
  font-style: italic;
  padding-left: 1.4375rem;
}

cite {
  font-style: normal;
}

figure blockquote {
  padding: 26px 0px;
  padding: 1.625rem 0rem;
}
figure blockquote p {
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 39px;
  line-height: 2.4375rem;
}

ul li,
ol li {
  margin-bottom: 0;
}

hr {
  margin-top: 52px;
  margin-top: 3.25rem;
  margin-bottom: 52px;
  margin-bottom: 3.25rem;
  border: 0;
  color: #222;
  display: block;
  height: 26px;
  height: 1.625rem;
  margin-right: auto;
  margin-left: auto;
  background-size: 100% 26px;
  background-size: 100% 1.625rem;
  background-image: linear-gradient(to bottom, transparent 1px, transparent 11px, #222 11px, #222 15px, transparent 15px, transparent 26px);
  width: 100px;
}

small {
  line-height: 13px;
  line-height: 0.8125rem;
}

.attention-grabber {
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* Grid
   ========================================================================== */
.grid, .grid-double {
  background-image: linear-gradient(to bottom, hsla(200, 100%, 50%, 0.3) 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat;
  background-size: 100% 26px;
  background-size: 100% 1.625rem;
}

.grid-double {
  background-image: linear-gradient(to bottom, hsla(200, 100%, 50%, 0.3) 1px, transparent 1px, transparent 13px, hsla(200, 100%, 50%, 0.2) 13px, transparent 14px, transparent 26px);
}

/* Gutenberg defaults
   ========================================================================== */
article,
body > footer {
  width: 80%;
  margin: 0 auto;
}

.toggleWrapper {
  display: block;
  position: fixed;
  top: 26px;
  right: 26px;
  background-color: #231F20;
  border-radius: 25px;
  padding: 0 10px 0 20px;
  height: 32px;
}

.btnToggleGrid {
  background: url("../../assets/images/grid-icons.png") top right no-repeat;
  background-size: 32px;
  display: block;
  font-size: 14px;
  text-decoration: none;
  padding-right: 35px;
  height: 32px;
  line-height: 34px;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.btnToggleGrid:hover {
  color: #fff;
}
.btnToggleGrid:active {
  color: #f00;
}

.double-grid {
  background-position-y: -32px;
}

.grid-off {
  background-position-y: -64px;
}

.alignLeft {
  text-align: left;
}

.alignCenter {
  text-align: center;
}

.alignRight {
  text-align: right;
}

.uppercase {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Put your styles below this line
   ========================================================================== */
/* Red:
hsla(345, 100%, 32%, 1)
HEX: #a50029
rgb(165, 0, 41)
*/
/*
0 - 100 = red
35      = orange
50      = yellow
100     = green
150     = soft green
180     = teal
200     = soft blue
225     = blue
270     = purple
300     = pink
*/
/*
& {
        padding: 15px 25px;
        color: #fff;
        transition: color 0.3s;
        position: relative;
        text-decoration: none;
        -moz-osx-font-smoothing: grayscale;
        &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            box-shadow: inset 0 0 0 2px red;
            opacity: 1;
            transform: scale3d(.95, .95, 1);
            transition: box-shadow .3s, transform .6s, opacity.5s;
        }
        &:hover {
            color: black;
        }
        &:hover:before {
            opacity: .3;
            transform: scale3d(1, 1.1, 1);
            box-shadow: inset 0 0 0 35px white;
        }
    }

*/
/*
//Base 10 model
html { font-size: 62.5%;
@include forLargeScreens(640) {
  font-size: 75%;
}
}
*/
.glide {
  position: relative;
  width: 100%;
  height: 100%;
}
.glide * {
  padding: 0;
}

.glide__wrapper {
  overflow: hidden;
  padding-bottom: 9%;
}

.glide__track {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
}

.glide__track.dragging {
  cursor: grabbing;
  -webkit-user-select: none;
          user-select: none;
}

.glide__slide {
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
          user-select: none;
}
.glide__slide img {
  margin: auto;
  border: white 5px solid;
}

.glide__slide a {
  -webkit-user-drag: none;
  -webkit-user-select: none;
          user-select: none;
}

.glide__arrows, .glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
}

.glide--carousel .glide__slide {
  float: left;
  clear: none;
}

.glide__arrows {
  position: absolute;
}

.glide--horizontal .glide__arrows {
  top: 50%;
  width: 100%;
}

.glide__arrow {
  padding: 9px 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  position: absolute;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 3px black;
  cursor: pointer;
  background: url(../images/bg-pattern.png) hsla(200, 100%, 32%, 0.8);
  transition: border 300ms ease-in-out;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide--horizontal .glide__arrow {
  transform: translateY(-50%);
}

.glide--horizontal .glide__arrow.prev {
  left: -4%;
}

.glide--horizontal .glide__arrow.next {
  right: -4%;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  list-style: none;
}

.glide--horizontal .glide__bullets {
  bottom: 8%;
  left: 0;
  width: 100%;
  height: 12px;
  text-align: center;
}

.glide__bullets > * {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
}

.glide--horizontal .glide__bullets > * {
  margin: 0 5px;
}

.glide__bullets > *.active {
  background-color: white;
}

.glide__bullets > *:focus {
  outline: none;
}

.glide__bullets > *:hover,
.glide__bullets > *:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}

/*
	ms(8)   6.854em
	ms(7)   6.433em
	ms(6)   4.236em
	ms(5)   3.976em
	ms(4)   2.618em
	ms(3)   2.457em
	ms(2)   1.618em
	ms(1)   1.519em
	ms(0)   1em
	ms(-1)  0.618em
	ms(-2)  0.382em
	ms(-3)  0.236em
*/
/* Red:
hsla(345, 100%, 32%, 1)
HEX: #a50029
rgb(165, 0, 41)
*/
/*
0 - 100 = red
35      = orange
50      = yellow
100     = green
150     = soft green
180     = teal
200     = soft blue
225     = blue
270     = purple
300     = pink
*/
/*
& {
        padding: 15px 25px;
        color: #fff;
        transition: color 0.3s;
        position: relative;
        text-decoration: none;
        -moz-osx-font-smoothing: grayscale;
        &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            box-shadow: inset 0 0 0 2px red;
            opacity: 1;
            transform: scale3d(.95, .95, 1);
            transition: box-shadow .3s, transform .6s, opacity.5s;
        }
        &:hover {
            color: black;
        }
        &:hover:before {
            opacity: .3;
            transform: scale3d(1, 1.1, 1);
            box-shadow: inset 0 0 0 35px white;
        }
    }

*/
/*
//Base 10 model
html { font-size: 62.5%;
@include forLargeScreens(640) {
  font-size: 75%;
}
}
*/
.content-3-2, .projects-nav {
  background: url(../images/bg-pattern.png) hsl(200, 100%, 12%);
}

.content-1-2 {
  background: url(../images/bg-pattern.png) hsl(200, 100%, 15%);
}

.author-1 {
  background: url(../images/bg-pattern.png) hsl(200, 100%, 18%);
}

.author-2 {
  background: url(../images/bg-pattern.png) hsl(200, 100%, 21%);
}

.author-3 {
  background: url(../images/bg-pattern.png) hsl(200, 100%, 24%);
}

.content-2 > div {
  background-size: 75%;
  background-position: center center;
  background-repeat: no-repeat;
}
.content-2 .dribbble {
  background-image: url(../images/logo-dribbble.svg);
  background-color: #ea4d89;
}
.content-2 .codepen {
  background-image: url(../images/logo-codepen.svg);
  background-color: #272a36;
}
.content-2 .meetup {
  background-image: url(../images/logo-meetup.svg);
  background-color: #ff4529;
}

footer {
  background: url(../images/bg-pattern.png) hsl(200, 100%, 23%);
}

/* Red:
hsla(345, 100%, 32%, 1)
HEX: #a50029
rgb(165, 0, 41)
*/
/*
0 - 100 = red
35      = orange
50      = yellow
100     = green
150     = soft green
180     = teal
200     = soft blue
225     = blue
270     = purple
300     = pink
*/
/*
& {
        padding: 15px 25px;
        color: #fff;
        transition: color 0.3s;
        position: relative;
        text-decoration: none;
        -moz-osx-font-smoothing: grayscale;
        &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            box-shadow: inset 0 0 0 2px red;
            opacity: 1;
            transform: scale3d(.95, .95, 1);
            transition: box-shadow .3s, transform .6s, opacity.5s;
        }
        &:hover {
            color: black;
        }
        &:hover:before {
            opacity: .3;
            transform: scale3d(1, 1.1, 1);
            box-shadow: inset 0 0 0 35px white;
        }
    }

*/
/*
//Base 10 model
html { font-size: 62.5%;
@include forLargeScreens(640) {
  font-size: 75%;
}
}
*/
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: white;
  font-size: 1em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
  background: url(../images/bg-pattern.png) hsl(200, 100%, 12%);
}

::selection {
  background: orange;
}

.skip-to-content-link {
  width: 160px;
  padding: 0 15px 5px;
  position: absolute;
  left: calc(50% - 80px);
  font-size: 0.9387116559em;
  text-align: center;
  text-shadow: none;
  color: black !important;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 5px 5px;
  transform: translateY(-100%);
}
.skip-to-content-link:focus {
  transform: translateY(0%);
}

h1 {
  font-size: 2.617924em;
}

h2 {
  font: 2.4574757731em Merriweather, Georgia, serif;
}

h3 {
  font-size: 1.618em;
}

a {
  transition: 0.3s;
}
a {
  color: white;
  text-decoration: none;
}
a:visited {
  color: white;
}
a:hover {
  color: white;
}
a:active, a:focus {
  color: #666;
}
a:hover, a:active, a:focus {
  background-clip: padding-box;
}

.new-tab:after {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 0 0 5px;
  content: "";
  background: url(../images/icon-external-link.svg) no-repeat center center/contain;
}

.dribbble .new-tab:after {
  background-image: url(../images/icon-external-link-black.svg);
}

hr {
  width: 100%;
  height: 1px;
  border-top: rgba(255, 255, 255, 0.5) 1px dotted;
  margin: 1.618em auto;
}

main {
  width: 100%;
  margin: auto;
}

header, footer {
  height: 100%;
}

header {
  display: flex;
  height: 250px;
  justify-content: center;
  background: url(../images/bg-hair-waves.avif) center center/cover;
}
header .logo {
  min-width: 350px;
  padding: 20px;
}
header .logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
header .logo tspan {
  text-anchor: middle;
}
header .logo .name {
  font-family: Lato, san-serif;
  fill: white;
}
header .logo .name-ctnr {
  padding: 20px;
}
header .logo .ricardozea {
  font-weight: 900;
  font-size: 6em;
  letter-spacing: -1.2px;
}
header .logo .webdesigner {
  font-size: 3em;
}
header .logo {
  display: inline-block;
}
header .logo, header .logo:hover, header .logo:active, header .logo:focus {
  box-shadow: none;
}

.project header {
  height: 100%;
  margin: auto;
  padding: 0 5%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.project header .logo {
  height: 250px;
  padding: 20px;
  border-radius: 3px;
}
.project header .logo:active, .project header .logo:hover, .project header .logo:focus {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  transform: scale(0.95);
}
.project header .projects-nav {
  padding-top: 0;
}

footer {
  padding: 40px 3%;
  text-align: center;
}
footer .footer-heading {
  margin: 10px 0 30px;
  padding: 0;
  box-shadow: none;
  background: none;
  color: white;
}
footer .footer-heading small {
  line-height: inherit;
  font-size: 0.3819820591em;
  font-weight: normal;
}
footer .social-icons a {
  width: 100px;
  height: 70px;
  margin: 10px 10px 40px;
  line-height: 1;
}
footer .social-icons a, footer .social-icons a:visited {
  display: inline-block;
  padding: 0;
  position: relative;
  color: white;
  text-align: center;
  transition: 0.2s;
  -moz-osx-font-smoothing: grayscale;
}
footer .social-icons a:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px white;
  border-radius: 3px;
  opacity: 1;
  transform: scale3d(0.95, 0.95, 1);
  transition: box-shadow 0.2s, transform 0.3s, opacity 0.2s;
}
footer .social-icons a:hover:before {
  opacity: 0.3;
  transform: scale3d(1, 1.1, 1);
  box-shadow: inset 0 0 0 100px white;
}
footer .social-icons a:after {
  display: none;
}
footer .social-icons a:before {
  box-shadow: none;
}
footer .social-icons a:visited span, footer .social-icons a:hover span, footer .social-icons a:active span, footer .social-icons a:focus span {
  opacity: 1;
  transition: 0.5s;
}
footer .social-icons a:hover svg {
  fill-opacity: white;
}
footer .social-icons span {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px 0;
  font: 0.9387116559em Lato, san-serif;
  opacity: 0.7;
  white-space: nowrap;
}
footer .social-icons svg {
  width: 100%;
  height: 100%;
  padding: 15px;
}

#zbwid-8650cfa7 {
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
  max-width: 100% !important;
  margin: auto;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
}
#zbwid-8650cfa7 iframe {
  width: 100% !important;
}

.scroll-up {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
}

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

.content-1 {
  min-height: 500px;
}
.content-1 > div {
  flex: 1 400px;
}

.content-1-1 {
  display: flex;
  min-height: 700px;
  align-items: flex-end;
  font-size: 0.9387116559em;
  background: url(../images/ricardo-zea.jpg) center center/cover no-repeat;
}
.content-1-1.skills-visible {
  align-items: stretch;
}
.content-1-1.skills-visible .info-ctnr h3,
.content-1-1.skills-visible .skills-ctnr {
  display: flex !important;
  flex: 1 100%;
  justify-content: center;
  align-items: center;
}
.content-1-1.skills-visible .info-ctnr h3 {
  flex-wrap: wrap;
  max-height: 60px;
  margin-top: 20px;
}
.content-1-1.skills-visible .download-resume {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.info-ctnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
}
.info-ctnr p:first-child {
  margin-top: 0;
}
.info-ctnr .download-resume small {
  flex: 1 100%;
}
.info-ctnr .cta-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
  align-items: center;
}
.info-ctnr .cta-container a {
  flex: 1 auto;
  margin: 1%;
}
.info-ctnr .cta-container a, .info-ctnr .cta-container a:visited {
  display: inline-block;
  padding: 10px 25px;
  position: relative;
  color: white;
  text-align: center;
  transition: 0.2s;
  -moz-osx-font-smoothing: grayscale;
}
.info-ctnr .cta-container a:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px white;
  border-radius: 3px;
  opacity: 1;
  transform: scale3d(0.95, 0.95, 1);
  transition: box-shadow 0.2s, transform 0.3s, opacity 0.2s;
}
.info-ctnr .cta-container a:hover:before {
  opacity: 0.3;
  transform: scale3d(1, 1.1, 1);
  box-shadow: inset 0 0 0 100px white;
}
.info-ctnr h3 {
  margin: 0;
}
.info-ctnr h3 span {
  display: block;
  font-size: 0.6180469716em;
  font-weight: normal;
  font-style: italic;
}

.skills-ctnr {
  display: flex;
  margin: 30px 0;
  justify-content: space-between;
}

.skills-list {
  display: flex;
  min-width: 100px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 15px 0 0;
  padding: 0;
  list-style: none;
  text-align: right;
  font-size: 0.9387116559em;
}
.skills-list li {
  margin-bottom: 0;
  z-index: 2;
  line-height: 2.1;
}
.skills-list li:last-child {
  margin: 0;
}

.bars-ctnr {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  padding: 5px 0;
  border-left: white 1px dotted;
}

.bar {
  float: left;
  width: 100%;
  height: 15px;
  margin: 7px 0;
  position: relative;
  z-index: 1;
}
.bar:first-child {
  margin-top: 2px;
}
.bar:last-child {
  margin-bottom: 0;
}

.bar .inner {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 90%);
  border-bottom: rgba(255, 255, 255, 0.4) 1px solid;
  border-radius: 0 100px 100px 0;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.skill-a .inner {
  animation-name: length-1;
  animation-delay: 1s;
}
.skill-b .inner {
  animation-name: length-1;
  animation-delay: 1.1s;
}
.skill-c .inner {
  animation-name: length-1;
  animation-delay: 1.2s;
}
.skill-d .inner {
  animation-name: length-1;
  animation-delay: 1.3s;
}
.skill-e .inner {
  animation-name: length-1;
  animation-delay: 1.4s;
}
.skill-f .inner {
  animation-name: length-3;
  animation-delay: 1.5s;
}

@keyframes length-1 {
  from {
    right: 100%;
  }
  to {
    right: 0%;
  }
}
@keyframes length-2 {
  from {
    right: 100%;
  }
  to {
    right: 0%;
  }
}
@keyframes length-3 {
  from {
    right: 100%;
  }
  to {
    right: 20%;
  }
}
.content-1-2 {
  display: flex;
  flex-wrap: wrap;
}
.content-1-2 h2 {
  margin: 0;
  padding: 20px;
  flex-basis: 100%;
  align-self: center;
  text-align: center;
  color: white;
}
.content-1-2 > div {
  align-content: center;
}
.content-1-2 [class*=author] {
  display: flex;
  min-height: 300px;
  padding: 40px;
  flex-wrap: wrap;
  flex: 1 200px;
  justify-content: center;
}
.content-1-2 [class*=author] span {
  display: block;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: calc(0.01vw + 0.5em);
}
.content-1-2 [class*=author] h3 {
  display: flex;
  margin: 0 0 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: calc(1.5vw + 1.2em);
  line-height: 1.2;
}
.content-1-2 [class*=author] a {
  text-align: center;
}
.content-1-2 [class*=author] a, .content-1-2 [class*=author] a:visited {
  display: inline-block;
  padding: 10px 25px;
  position: relative;
  color: white;
  text-align: center;
  transition: 0.2s;
  -moz-osx-font-smoothing: grayscale;
}
.content-1-2 [class*=author] a:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px white;
  border-radius: 3px;
  opacity: 1;
  transform: scale3d(0.95, 0.95, 1);
  transition: box-shadow 0.2s, transform 0.3s, opacity 0.2s;
}
.content-1-2 [class*=author] a:hover:before {
  opacity: 0.3;
  transform: scale3d(1, 1.1, 1);
  box-shadow: inset 0 0 0 100px white;
}

.content-2 {
  min-height: 200px;
}
.content-2 h2 {
  flex-basis: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
}
.content-2 .dribbble h2, .content-2 .dribbble a, .content-2 .dribbble a:visited {
  color: #111;
}
.content-2 .dribbble a:before {
  box-shadow: inset 0 0 0 1px #111;
}
.content-2 .dribbble a:hover:before {
  box-shadow: inset 0 0 0 100px #111;
}
.content-2 span {
  display: block;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: calc(0.01vw + 0.5em);
}
.content-2 a {
  text-align: center;
}
.content-2 a, .content-2 a:visited {
  display: inline-block;
  padding: 10px 25px;
  position: relative;
  color: white;
  text-align: center;
  transition: 0.2s;
  -moz-osx-font-smoothing: grayscale;
}
.content-2 a:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px white;
  border-radius: 3px;
  opacity: 1;
  transform: scale3d(0.95, 0.95, 1);
  transition: box-shadow 0.2s, transform 0.3s, opacity 0.2s;
}
.content-2 a:hover:before {
  opacity: 0.3;
  transform: scale3d(1, 1.1, 1);
  box-shadow: inset 0 0 0 100px white;
}
.content-2 > div {
  display: flex;
  padding: 80px;
  flex-wrap: wrap;
  flex: 1 100%;
  justify-content: center;
  align-content: center;
}
@media (min-width: 43.75em) {
  .content-2 > div {
    flex-basis: 50%;
  }
}
@media (min-width: 56.25em) {
  .content-2 > div {
    flex-basis: 33%;
  }
}

.content-3 > * {
  width: 100%;
  text-align: center;
}
.content-3 > x* {
  display: flex;
  flex: 1 300px;
  justify-content: center;
  align-items: center;
}

.content-3-2 {
  min-height: 200px;
}
.content-3-2 h2 {
  flex-basis: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.project .projects-nav {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 48.125em) {
  .project .projects-nav {
    margin: 0;
    padding-bottom: 30px;
  }
}
.project h2:not(.footer-heading):not(.visually-hidden) {
  margin-bottom: 1.5188354593em;
  padding-bottom: 0.9387116559em;
  border-bottom: rgba(255, 255, 255, 0.5) 1px solid;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  position: relative;
}
.project h2:not(.footer-heading):not(.visually-hidden):before, .project h2:not(.footer-heading):not(.visually-hidden):after {
  display: inline-block;
  content: "";
  position: absolute;
}
.project h2:not(.footer-heading):not(.visually-hidden):before {
  width: 14px;
  height: 14px;
  border: rgba(255, 255, 255, 0.7) 1px solid;
  transform: rotate(45deg) translateX(-50%);
  left: 50%;
  bottom: -12px;
  background: #a50029;
}
.project h2:not(.footer-heading):not(.visually-hidden):after {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  transform: translateX(-15%);
  left: 50%;
  bottom: -3px;
  background: rgba(0, 0, 0, 0.3);
}

.projects-nav {
  display: flex;
  margin-bottom: 40px;
  padding: 40px 20px 60px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.projects-nav a {
  margin: 10px;
  padding: 10px;
  flex: 1 100%;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.projects-nav a, .projects-nav a:visited {
  display: inline-flex;
  padding: 10px 25px;
  position: relative;
  color: white;
  text-align: center;
  transition: 0.2s;
  -moz-osx-font-smoothing: grayscale;
}
.projects-nav a:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px white;
  border-radius: 3px;
  opacity: 1;
  transform: scale3d(0.95, 0.95, 1);
  transition: box-shadow 0.2s, transform 0.3s, opacity 0.2s;
}
.projects-nav a:hover:before {
  opacity: 0.3;
  transform: scale3d(1, 1.1, 1);
  box-shadow: inset 0 0 0 100px white;
}
@media (min-width: 50em) {
  .projects-nav a {
    flex-basis: 20%;
  }
}
.projects-nav a:last-child {
  flex-grow: 0;
}
@media (min-width: 81.25em) {
  .projects-nav {
    width: 80%;
    margin: auto;
  }
}

.project-ctnr {
  background: url(../images/bg-pattern.png) hsl(200, 100%, 32%);
}
.project-ctnr a:not(.logo):not(.client):not(.contact-form-trigger) {
  display: inline-block;
  padding: 10px 12px;
  text-decoration: underline;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.2);
}
.project-ctnr a:not(.logo):not(.client):not(.contact-form-trigger):visited, .project-ctnr a:not(.logo):not(.client):not(.contact-form-trigger):hover, .project-ctnr a:not(.logo):not(.client):not(.contact-form-trigger):active, .project-ctnr a:not(.logo):not(.client):not(.contact-form-trigger):focus {
  box-shadow: none;
  text-decoration: underline;
  color: white;
  background-clip: padding-box;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.project-ctnr a:not(.logo):not(.client):not(.contact-form-trigger):hover {
  text-decoration: none;
}

.project-info {
  max-width: 1600px;
  margin: auto;
  padding: 0 5% 20px;
  color: hsl(200, 100%, 95%);
}
.project-info h1 {
  margin-top: 0;
  padding-top: 30px;
}
.project-info .columns {
  padding-left: 10px;
}
@media (min-width: 31.25em) {
  .project-info .columns {
    columns: 50px 2;
    padding-left: 15px;
  }
}
.project-info .columns li {
  margin: 0 0 15px 12px;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-shadow: none;
  text-align: center;
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.1);
}
.responsive-table th, .responsive-table tr, .responsive-table td {
  padding: 5px;
  border: hsl(200, 100%, 20%) 1px solid;
  background: url(../images/bg-pattern.png) hsl(200, 100%, 12%);
}
.responsive-table th {
  font-weight: bold;
  background: url(../images/bg-pattern.png) hsl(200, 100%, 8%);
}
@media (max-width: 40em) {
  .responsive-table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
    padding: 0;
    box-shadow: none;
    background: none;
  }
  .responsive-table thead {
    overflow: hidden;
  }
  .responsive-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .responsive-table td {
    padding: 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
    font-size: 1.5188354593em;
  }
  .responsive-table td:before {
    display: inline-block;
    width: 200px;
    margin-right: 5px;
    padding: 10px 0 10px 10px;
    content: attr(data-title) ": ";
    text-align: left;
    font-size: 16px;
    background: url(../images/bg-pattern.png) hsl(200, 100%, 12%);
  }
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
/*# sourceMappingURL=rz-v5.css.map */