@charset "UTF-8";
/* CSS Document */

/* @group fonts */
@font-face {
    font-family: 'allerbold';
    src: url('../fonts/aller_bd-webfont.ttf'),
        url('../fonts/aller_bd-webfont.eot'); /* IE9 */
}

@font-face {
    font-family: 'aller_lightregular';
    src: url('../fonts/aller_lt-webfont.ttf'),
        url('../fonts/aller_lt-webfont.eot'); /* IE9 */
}

/* @end */

/* @group html reset */
a, abbr, acronym, address, applet, article, aside, audio,
b, blockquote, big, body,
center, canvas, caption, cite, code, command,
datalist, dd, del, details, dfn, dl, div, dt,
em, embed,
fieldset, figcaption, figure, font, footer, form,
h1, h2, h3, h4, h5, h6, header, hgroup, html,
i, iframe, img, ins, input,
kbd,
keygen,
label, legend, li,
meter,
nav,
object, ol, output,
p, pre, progress,
q,
s, samp, section, small, span, source, strike, strong, sub, sup,
table, tbody, tfoot, thead, th, tr, tdvideo, tt, textarea,
u, ul,
var {
    background: transparent;
    border: 0;
    font-size: 100%;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
body {
  line-height: 1;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*html5 reset*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
/* @end */
/*end reset*/
::-moz-selection {
  background:rgba(0,181,255,.4)
}
::selection {
  background:rgba(0,181,255,.4)
}
/*transitions*/
* {
    -webkit-transition: font-size .15s ease-in-out;
    -moz-transition: font-size .15s ease-in-out;
}
/* @end */

/* @group */
body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    background: url("../images/bg.jpg") no-repeat fixed center center / cover #F0F1F2;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    color:rgba(34,34,34,.75)
}
img {
    display: block;
    width: 100%;
}
ul {
    display: block;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    line-height: 1em;
    margin-bottom: 0.85em;
    clear: both; 
}
li {
    line-height: 1.85em;
    margin-top: 0.2em;
    list-style: none outside none;
}
a {
    color: #2B2B2B;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.15s ease 0s;
}
.wrapper {
    height: 100%;
    width: 100%;
    left: 0;
    min-height: 568px;
    overflow: hidden;
    position:relative;
}

/* parallax intro */
.scene .layer {
    display: block;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.scene {
    height:100%;
    overflow: hidden;
    position: relative;
}

.layer {
    position: absolute;
}

.layer div {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 250%;
    height: 250%;
    background-position: centre centre;
    background-size: 70%;
    -webkit-animation: float 20s linear infinite;
    -moz-animation: float 20s linear infinite;
    -o-animation: float 20s linear infinite;
    animation: float 20s linear infinite;
}

.layer--2 div {
    background-size: 60%;
    -webkit-animation: float 25s linear infinite reverse;
    -moz-animation: float 25s linear infinite reverse;
    -o-animation: float 25s linear infinite reverse;
    animation: float 25s linear infinite reverse;
}

.layer--3 div {
    background-size: 50%;
    -webkit-animation: float 30s linear infinite;
    -moz-animation: float 30s linear infinite;
    -o-animation: float 30s linear infinite;
    animation: float 30s linear infinite;
}

.layer--4 div {
    background-size: 40%;
    -webkit-animation: float 35s linear infinite;
    -moz-animation: float 35s linear infinite;
    -o-animation: float 35s linear infinite;
    animation: float 35s linear infinite;
}

.layer--5 div {
    background-size: 30%;
    -webkit-animation: float 40s linear infinite reverse;
    -moz-animation: float 40s linear infinite reverse;
    -o-animation: float 40s linear infinite reverse;
    animation: float 40s linear infinite reverse;
}

@-webkit-keyframes float {
    from { -webkit-transform: rotate(0deg) translateX(3%) rotate(0deg); }
    to   { -webkit-transform: rotate(360deg) translateX(3%) rotate(-360deg); }
}

@-moz-keyframes float {
    from { -moz-transform: rotate(0deg) translateX(3%) rotate(0deg); }
    to   { -moz-transform: rotate(360deg) translateX(3%) rotate(-360deg); }
}

@-o-keyframes float {
    from { -o-transform: rotate(0deg) translateX(3%) rotate(0deg); }
    to   { -o-transform: rotate(360deg) translateX(3%) rotate(-360deg); }
}

@keyframes float {
    from { transform: rotate(0deg) translateX(3%) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(3%) rotate(-360deg); }
}

#container .circle {
    position:absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    width: 500px;
    height: 500px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    padding: 170px 60px 50px;
    text-align: center;
    color: #FFFFFF;
}

.handwriting {
    font-family: 'Pacifico', cursive;
    font-weight: 300;
    font-size: 1.35em;
    color: rgba(222, 222, 222, 1);
    opacity: 0.3;
    margin: 0.40em 0px;
    text-rendering: optimizeLegibility;
}

.handwriting:hover {
    opacity: 0.7;
}
.no-touch a:hover {
    color: rgba(222, 222, 222, 1);
}

/* portfolio section */
#portfolio {
    color: rgba(255,255,255,.75);  
}

/* about section */
#about {
    background: url("../images/bg-aboutme.jpg") no-repeat center center / cover #353535;
    color: rgba(255,255,255,1);
}
#about h2 {
    color: rgba(255,255,255,.75);
}
#about p {
    text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
}

#about .skills {
    float: left;
    width: 31%;
    margin-right:2%;
    margin-top: 0;
}
#about .skillSummary {
    overflow: auto;
}

/* Contact section */
#skills {
    color: rgba(34,34,34,.75);
}
.overlay--bg {
    background: rgba(0,0,0,0.5);
}
.image-bg {
    background-attachment: fixed;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.contact--form {
    width: 100%;
    float: left;
}
.contact--form label {
    display: none;
}
.contact--form input {
    padding: 8px 0px 8px 11px;
    width: 100%;
    border: medium none;
    border-radius: 2px;
    margin-bottom: 12px;
}
label {
    padding-bottom: 3px;
    display: inline-block;
}
.contact--form textarea {
    max-height: 77px;
    margin-bottom: 10px;
    border: medium none;
    border-radius: 2px;
    -moz-box-sizing: border-box;
    padding: 7px;
    width: 100%;
}
.contact--form input[type="button"] {
    padding: 5px 19px;
    text-align: center;
    width: 100%;
    min-width: 72px;
}

input.half[type="text"], input.half[type="email"], input[type="tel"] input.half[type="password"], textarea.half {
    width: 50%;
}

input[type="text"], input[type="email"], input[type="tel"] input[type="password"], textarea {
    -moz-box-sizing: border-box;
    padding: 0px;
    background: url('data:image/png') repeat-x scroll 0px -14px transparent;
    border: medium none;
    outline: 0px none;
    /*font-weight: 400;
    font-size: 1.80em;*/
    line-height: 1;
}

.send--button {
  float: right;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
}
button, input[type="reset"], input[type="submit"], input[type="button"] {
    margin: 0px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    padding: 6px 18px;
    text-decoration: none;
    font-family: inherit;
    line-height: inherit;
    color: #FE6159;
    font-weight: bold;
    border: 0px none;
    background-color: #FFFFFF;
    border-radius: 6px;
}

.circles li img {
    opacity: 1;
    border-radius: 50%;
    width:32%;
    float:right;
    margin-bottom: 3px;
    margin-right: 1em;
    margin-top: -35px;
}

/* @group formatting */ 
.section {
    position:relative;
    width: 100%;
    min-height: 100%;
    height: auto;
    overflow: hidden;
}

.section__wrapper {
    padding: 25px 10px;
    margin: 0px auto;
    min-width: 1040px; 
    width:50%;
} 

.section__content {
    position: relative; 
    width:50%;
    padding:10px;
    float: left;
}  

 .section__content--main {
    position: relative; 
    width:54%;
    float: left;
    display:inline;
    margin-right: 4%;
}  

.section__content--supp {
    position: relative; 
    width:42%;
    float: left;
    display:inline;
}

.section__content--middle {
    margin: 0px auto;
    max-width: 990px;
}

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

.section-contact h2 {
    min-height: 1em;
    margin: 0px 0px 1.2em;
    text-transform: none;
    text-align: center;
}
.section-contact:after {
    content: "";
    display: block;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: none repeat scroll 0% 0% #FFFFFF;
    transition: all 0.5s ease 0s;
}

.section-contact h2 > span:after {
    content: "";
    display: block;
    opacity: 0;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: -5px;
    background: none repeat scroll 0% 0% #FE6159;
}
.contact-form .end {
    margin-top: 65px;
    position: relative;
}
.contact-form .end .contact-details {
    position: absolute;
    top: 2px;
    right: 0px;
    text-align: right;
    line-height: 1.4;
    color: #FE6159;
}

.button:after {
    content: attr(data-title);
    z-index: 1;
    color: #FFFFFF;
}
.button:after, .button .helper {
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.button:before {
    border: 2px solid #FE6159;
}
.button:before, .button:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.item {
  width: 120px;
  height: 120px;
  float: left;
  background: #C09;
  border: 3px solid #FFFFFF;
  border-color: hsla(0, 0%, 0%, 0.3);
  z-index:3;
}

.item.w2 { width:  160px; height: 160px;  background: none; border: none; }
.item.w3 { width:  320px; height: 320px; background: none; border: none; }
.item.w4 { width:  320px; height: 160px; background: #90C; }
.item.h2 { height: 160px; background: #0C9; }
.item.h4 { width: 320px; height: 480px; background: #C90; }


.item a:hover {
    display: block;
    background: #FFFFFF none repeat scroll 0% 0%;
    opacity: 1;
    z-index: 30;
}

.item a:hover span.title {
    font-size: 1em;
    color: #FFFFFF;
    font-weight: normal;
    text-align: center;
    display: block;
    position: absolute;
    top: 60%;
    margin: -20px auto 0px !important;
    width: 100%;
    transition-property: all;
    transition-duration: 0.5s;
    opacity: 1;
     z-index:130;
}
.item span.title  {
    font-size: 1em;
    color: #FFFFFF;
    font-weight: normal;
    text-align: center;
    display: block;
    position: absolute;
    top: 60%;
    margin: -20px auto 0px !important;
    width: 100%;
    transition-property: all;
    transition-duration: 0.5s;
    opacity: 0;
}
.item span.title {
    padding: 15px 10px;
    background:#515151;
    background:rgba(0,0,0,0.8);
    -webkit-animation:fadeIn 0.2s ease forwards;
    -moz-animation:fadeIn 0.2s ease forwards;
    -o-animation:fadeIn 0.2s ease forwards;
    animation:fadeIn 0.2s ease forwards;   
}

.fade {
    opacity: 1;
    transition: opacity 0.25s ease-in-out 0s;
}

.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:9999999;
  background:#515151;
  background:rgba(0,0,0,0.8);
  -webkit-animation:fadeIn 0.2s ease forwards;
  -moz-animation:fadeIn 0.2s ease forwards;
  -o-animation:fadeIn 0.2s ease forwards;
  animation:fadeIn 0.2s ease forwards;
}

/* @group text formatting */
h1 {
    font-family: 'allerbold', sans-serif;
    text-transform: uppercase;
    font-size: 42px;
    margin-bottom: 0.74em;
    line-height: 1.12em;
    text-rendering: optimizeLegibility;
}
h2 {
    font-family: 'allerbold', sans-serif;
    font-size: 4.5em;
    margin-bottom: 0.5em;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.07em;
}
p {
    margin-bottom: 1.20em;
    line-height: 1.70em;
    text-rendering: optimizeLegibility;
}
p.feature {
    font-size: 1.50em;
    color: #888;
    line-height: 1.26em;
    margin-bottom: 0.25em;
    text-rendering: optimizeLegibility;
    clear: both;
    }

.content {
    position: relative;
    z-index: 1000;
}
/* @end of group */


/* @group widescreen */
/* Smartphones (portrait and landscape) ----------- */
@media screen and (max-width: 320px){
  body {
      font-size: 14px;
  }
  h1 {
      font-size: 24px;
  }
  h2 {
      font-size: 36px;
  }
  p.feature {
     font-size: 1.125em;
  }
  p {
     margin: 0 0 10px
  }
  
  .layer div {
      background-size: 180%;
  }
  #container .circle {
      width: 300px;
      height: 300px;
      padding: 50px 28px 40px;
  }
  .section {
      min-height: 100%;
      height: auto;
      width: 100%;
  }
  .section__wrapper {
      min-width:320px;
  }  
  .section__content {
      width:100%;
  }
  
}
/* @end */

/* Smartphones (portrait and landscape) ----------- */
@media screen and (min-width : 321px) and (max-width: 480px){
  body {
      font-size: 16px;
  }
  h1 {
      font-size: 26px;
  }
  h2 {
      font-size: 46px;
  }
  p.feature {
      font-size: 1.125em;
  }
  p {
      margin-bottom: 20px;
  }
  
  .layer div {
      background-size: 180%;
  }
  #container .circle {
      width: 330px;
      height: 330px;
      padding: 60px 20px 40px;
  }
  .circles li img {
    width: 27%;
    margin-right: 0;
    margin-top: -15px;
}
  .section {
      min-height: 100%;
      height: auto;
  }
  .section__wrapper {
      min-width:320px;
  }  
  .section__content {
      width:100%;
  }
  .handwriting {
    font-size: 1.05em;
  }
  #about .skills {
    float: left;
    width: 98%;
    margin-right:2%;
    margin-top: 0;
  }
}
/* @end */

/* Between screen sizes (portrait and landscape) ----------- */
@media screen and (min-width : 481px) and (max-width : 595px) {
body {
      font-size: 16px;
  }
  h1 {
      font-size: 32px;
  }
  h2 {
      font-size: 48px;
  }
  p.feature {
      font-size: 1.250em;
  }
  p {
      margin-bottom: 20px;
  }
  
  .layer div {
      background-size: 170%;
  }
  #container .circle {
      width: 385px;
      height: 385px;
      padding: 80px 50px 40px;
  }
  .circles li img {
    width: 25%;  
    margin-top: -30px;
    margin-right:0;
}
  .section {
      min-height: 100%;
      height: auto;
  }
  .section__wrapper {
      min-width:480px;
  }  
  .section__content {
      width:100%;
  }
  #about .skills {
    float: left;
    width: 48%;
    margin-right:1%;
    margin-top: 0;
  }
}
/* @end */

/* Between screen sizes (portrait and landscape) ----------- */
@media screen and (min-width : 596px) and (max-width : 767px) {
body {
      font-size: 16px;
  }
  h1 {
      font-size: 34px;
  }
  h2 {
      font-size: 52px;
  }
  p.feature {
      font-size: 1.250em;
  }
  p {
      margin-bottom: 20px;
  }
  .layer div {
      background-size: 100%;
  } 
  #container .circle {
      width: 405px;
      height: 405px;
      padding: 100px 50px 40px;
  }
  .section {
      min-height: 100%;
      height: auto;
  }
  .circles li img {
    width: 22%;
    margin-top: -35px;
}
  .section__wrapper {
      min-width:640px;
  }  
  .section__content {
      width:100%;
  }
}
/* @end */

/* iPads (landscape) ----------- */
@media screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
body {
      font-size: 16px;
  }
  h1 {
      font-size: 40px;
  }
  h2 {
      font-size: 52px;
  }
  p {
      margin: 0 0 25px;
  }
  .layer div {
      background-size: 100%;
  }
  #container .circle {
      width: 435px;
      height: 435px;
      padding: 100px 50px 50px;
  }
  .circles li img {
    width: 25%;
    margin-top: -30px;
}
  .section {
     min-height: 100%;
      height: auto;
  }
  .section__wrapper {
      min-width:760px;
  }  
  .section__content {
      width:100%;
  }
  .section__content--main {
      width:54%;
      float: left;
      margin-right: 5%;
  } 
  .section__content--supp {
      width:41%;
      float: left;
  }
}
/* @end */

/* iPads (portrait) ----------- */
@media screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
body {
      font-size: 16px;
  }
  h1 {
      font-size: 40px;
  }
  h2 {
      font-size: 52px;
  }
  p {
      margin: 0 0 25px;
  }
  
  .layer div {
      background-size: 100%;
  }
  #container .circle {
      width: 435px;
      height: 435px;
      padding: 100px 50px 50px;
  } 
  .circles li img {
    margin-top: -30px;
}
  .section {
      min-height: 100%;
      height: auto;
  }
  .section__wrapper {
      min-width:880px;
      padding: 50px 0;
  }  
  .section__content {
      width:100%;
  }
  .section__content--main {
      width:60%;
      float: left;
      margin-right: 2%;
  } 
  .section__content--supp {
      width:38%;
      float: left;
  }
}
/* @end */

/* Desktops and laptops ----------- */
@media screen and (min-width : 1025px) {
  body {
      font-size: 17px;
  }
  h1 {
      font-size: 42px;
  }
  p {
      margin: 0 0 30px;
  }
  
  #container .circle {
      width: 455px;
      height: 455px;
      padding: 110px 55px 50px;
  }
  .section {
      min-height: 100%;
      height: auto;
  }
  .section__wrapper {
      min-width:1024px;
      padding: 50px 0px;
  }  
  .section__content {
      width:100%;
  }
  .section__content--main {
      width:58%;
      float: left;
      margin-right: 4%;
  } 
  .section__content--supp {
      width:38%;
      float: left;
  }
}
/* @end */

/* @group standard */
@media screen and (max-width: 1699px) and (min-width: 1301px) {
  
  /* @group grid */
  
  .standard-hide {
      display: none !important;
  }
  
  .standard-display {
      display: -moz-inline-stack !important;
      display: inline-block !important;
      zoom: 1 !important;
      *display: inline !important;
  }
  
  .standard-display-block {
      display: block !important;
  }
  .section {
      min-height: 100%;
      height: auto;
  }
  .section__wrapper {
      min-width:1280px;
      padding: 60px 0px;
  }  
  .section__content {
      width:100%;
  }
  .section__content--main {
      width:56%;
      float: left;
      margin-right: 4%;
  } 
  .section__content--supp {
      width:40%;
      float: left;
  }
}
/* @end */

/* Large screens ----------- */
@media screen and (min-width : 1700px) {
  .row {
      width: 1680px;
  }
  .widescreen-hide {
      display: none !important;
  }
  .widescreen-display {
      display: -moz-inline-stack !important;
      display: inline-block !important;
      zoom: 1 !important;
      *display: inline !important;
  }
  .widescreen-display-block {
      display: block !important;
  }
  body {
      font-size: 17px;
  }
  h1 {
      font-size: 44px;
  }
  #container .circle {
      width: 500px;
      height: 500px;
      padding: 130px 65px 50px;
  }
  .section {
      min-height: 100%;
      height: auto;
  }
  .section__wrapper {
      min-width:1600px;
      padding: 60px 0px;
  }  
  .section__content {
      width:100%;
  }
  .section__content--main {
      width:55%;
      float: left;
      margin-right: 5%;
  } 
  .section__content--supp {
      width:40%;
      float: left;
  }
}
/* @end */
/* @end group widescreen */



/* @group content positioning */
.half {
  width: 50%;
}
.center {
  margin: 0 auto;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}
/* @end */