/*-------------------------------------------------------
  Global stylesheet---------------------------------------------------------*/
/*-------------------------------------------------------
  Variables & Mixins
---------------------------------------------------------*/
/* Variables
---------------------------------------------------------*/
/* Colors */
/* Font sizing */
/* Typeface */
/* Helper Styles
---------------------------------------------------------*/
.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.sans-serif {
  font-family: "Roboto", sans-serif; }

.cursive {
  font-family: "Roboto", sans-serif; }

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

/*-------------------------------------------------------
  Base styles
---------------------------------------------------------*/
/*
  Apply a natural box layout model to all elements,
  but allowing components to change.
  http://www.paulirish.com/2012/box-sizing-border-box-ftw/
*/
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px; }

p {
  color: #505050; }

h1,
h2,
h3 {
  margin: 0;
  line-height: 1; }

h1,
h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px;
  margin-bottom: 20px; }

h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px; }

h4 {
  text-transform: uppercase;
  font-size: 12.6px;
  font-weight: 500; }

a {
  color: #ffbb00;
  text-decoration: none;
  display: inline-block; }

a:hover {
  color: #aaa; }

.content-wrapper {
  max-width: 1240px;
  width: 80%;
  margin: 0 auto; }

::-webkit-scrollbar {
  width: 10px;
  height: 10px; }

::-webkit-scrollbar-track {
  background-color: rgba(255, 165, 0, 0.2); }

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 165, 0, 0.75);
  border-radius: 6px; }

.intro {
  min-height: 1000px; }

.logo {
  display: block;
  padding: 10px;
  float: left; }

.logo img {
  width: 50px;
  height: 50px; }

.intro-img {
  height: 1000px;
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1; }

.welcome-text {
  color: white;
  text-align: center;
  padding-top: 300px;
  padding-bottom: 100px; }

.welcome-text h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 12px;
  margin-bottom: 30px; }

.welcome-text h1 {
  font-size: 8rem;
  margin-bottom: 45px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px; }

.welcome-text i {
  font-size: 3rem;
  color: #ffbb00;
  position: relative;
  top: 300px;
  animation: example 2s infinite; }

@keyframes example {
  0% {
    top: 300px; }
  50% {
    top: 340px; }
  100% {
    top: 300px; } }
/*----------------------------- ABOUT ME SECTION -----------------------------*/
.about {
  min-height: 500px;
  padding: 100px 0px; }

.text-border-left {
  border-left: 3px solid orange;
  padding-left: 20px;
  font-weight: bold; }

/*----------------------------- SERVICE SECTION -----------------------------*/
.service {
  min-height: 500px;
  padding: 105px 0px;
  background-color: #f2f2f2; }

.service i {
  font-size: 8rem;
  padding-bottom: 10px; }

.service h3 {
  letter-spacing: 6px;
  font-size: 1.5rem; }

.skill {
  padding-bottom: 10px; }

.skill-bar {
  width: 100%;
  height: 16px;
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 20px; }

.skill-bar > div {
  background-color: #ffbb00;
  height: 14px;
  border-radius: 20px; }

.section-title {
  text-align: center;
  margin-bottom: 40px; }

.section-title span {
  color: orange;
  font-style: italic; }

.section-title h2 {
  font-weight: bold; }

/*----------------------------RESUME SECTION---------------------------------*/
.resume {
  min-height: 600px;
  padding: 100px 0px; }

.resume-item {
  padding: 15px 0px; }

/*----------------------------WORK SECTION------------------------------------*/
.work {
  min-height: 300px;
  padding: 100px 0px;
  background-color: #f2f2f2; }

/*----------------------------PORTFOLIO---------------------------------------*/
.portfolio {
  min-height: 600px;
  padding: 100px 0px; }

/*----------------------------CONTACT---------------------------------------*/
.contact {
  min-height: 600px;
  padding: 100px 0px;
  background-color: #f2f2f2; }

.contact .grid-item-2 {
  padding: 0px;
  margin-right: 2px; }

.contact input {
  height: 50px;
  width: 100%;
  margin-bottom: 20px;
  border: 2px solid #222222;
  padding-left: 10px; }

.contact textarea {
  width: 100%;
  height: 300px;
  margin-top: 2px;
  border: 2px solid #222222;
  padding-left: 10px; }

.contact a {
  margin-top: 3px;
  display: inline-block;
  float: right; }

/*----------------------------FOOTER---------------------------------------*/
footer {
  min-height: 100px;
  padding: 25px 0px;
  background-color: #333;
  text-align: center; }

footer p {
  font-weight: 500;
  color: white; }

/*-------------------------------------------------------
  Modules and standalone components
---------------------------------------------------------*/
/* Header styles
---------------------------------------------------------*/
/* Global header - includes global nav */
.global-header {
  position: fixed;
  background-color: #222;
  opacity: 1;
  width: 100%;
  z-index: 10000; }

.global-nav {
  position: relative;
  padding: 20px;
  font-size: 0;
  float: right; }

.global-nav::after {
  clear: both; }

.global-nav a {
  text-transform: uppercase;
  padding: 10px;
  font-size: 12.6px;
  color: #fff;
  font-weight: bold; }
  .global-nav a:hover {
    color: #ffbb00; }

.global-nav a.active {
  color: orange; }

/* Blog post content header */
.post-header {
  margin-bottom: 40px; }

.post-header p {
  margin: 0; }

.post-author {
  font-size: 14px;
  text-transform: uppercase; }

.post-date,
.post-source {
  font-size: 12px; }

.post-source span {
  text-transform: uppercase; }

/* Main content area
---------------------------------------------------------
main {
  padding-bottom: 60px;
}*/
.feature-img {
  width: 100%;
  margin-bottom: 60px; }

/* Buttons */
article {
  /* TODO: Could possibly move to base or add class
  to make specific to this page only?*/
  position: relative; }

button,
input[type="submit"] {
  font-size: 18px;
  border: none; }

.btn-group {
  position: absolute;
  top: 0;
  right: 0; }

.btn {
  background: #aaa;
  color: white;
  padding: 15px 25px;
  line-height: 1;
  vertical-align: top;
  text-transform: uppercase;
  border: 1px solid #ffbb00; }

.btn-happy {
  background: #ffbb00; }

.btn-happy:hover {
  opacity: 0.7;
  color: white; }

.btn-happy-less {
  background: #fff;
  color: #ffbb00; }

.btn-happy-less {
  color: #444; }

.btn-happy-less:hover {
  color: #ffbb00; }

/* Homepage teaser */
.excerpt {
  overflow: hidden;
  background: #eee;
  margin: 20px 0; }
  .excerpt img {
    float: left;
    margin-right: 15px;
    max-width: 100%; }
  .excerpt h3 {
    margin-top: 20px; }

.grid-container {
  display: flex;
  flex-wrap: wrap; }

.grid-item-2 {
  width: 48%;
  margin-right: 2%;
  padding: 20px; }

.grid-item-3 {
  width: 31%;
  margin-right: 1%;
  padding: 20px; }

.grid-item-4 {
  width: 21%;
  margin-right: 1%;
  padding: 20px; }

/* Global footer
---------------------------------------------------------*/
.global-footer {
  background: #fff;
  color: white;
  padding: 40px 0;
  font-size: 14px;
  overflow: hidden; }

.global-footer h2 {
  font-size: 18px; }

/*----------------------------------------------MEDIA QUERY-----------------------------------------------------------*/
@media (max-width: 1050px) {
  .grid-item-2, .grid-item-3 {
    width: 96%;
    margin-right: 2%;
    padding: 20px;
    text-align: center; }

  .about {
    min-height: 500px;
    padding: 50px 0px; } }
/*-------------------------------------------------------
  Style Guide Page
---------------------------------------------------------*/
/*
  Only for adding styles for presenting examples and
  documentation. Make sure these styles don't affect
  the components or project styles.
*/
.style-guide > h1 {
  padding: 60px 0; }
.style-guide section {
  padding-top: 35px; }
.style-guide pre {
  padding: 10px 15px;
  line-height: 1.4;
  border: 1px solid #fff; }
.style-guide .example {
  margin-top: 20px;
  border-top: 1px solid #aaa;
  padding: 20px 0 30px; }
.style-guide .red {
  color: #ffbb00; }
.style-guide .blue {
  color: #63bae4; }
.style-guide .black {
  color: #fff; }
.style-guide .gray {
  color: #aaa; }
.style-guide .logo {
  display: block;
  padding: 10px; }

/*# sourceMappingURL=style.css.map */
