/*
Coded based on this design:
https://dribbble.com/shots/2478322-Paperpillar-Studio-Landing-Page
*/
html,body {
    margin: 0;
    padding: 0;
    font-family: Oswald;
}

.wrapper {
    width: 800px;
    margin: 0 auto;
}

/* Header Styling Rules */
header {
    background: orange;
    height: 450px;
}

.logo {
    float: left;
    margin: 0;
    padding: 1em 2em;
    font-size: 1.175em;
    text-transform: uppercase;
    color: rgb(255,255,255);
}
 nav {
    float: right;
    padding: 1em 2em;
    font-size: 1.175em;
    text-transform: uppercase;
}

 nav a {
    text-decoration: none;
    color: white;
    margin-right: 1em;
    transition: ease-in 450ms;
}

 nav a:hover {
    color: rgb(255,255,255);
}

/* Banner Styling Rules */
.banner {
    height: 320px;
    text-align: center;
    clear: both;
    /*background: black;*/
    position: relative;
}

.heading_content {
    width: 400px;
    /*background: pink;*/
    text-align: left;
    position: absolute;
    top: 0%;
    left: 50%;
}

.heading_content h1 {
  text-transform: uppercase;
  color: rgb(255,255,255);
  letter-spacing: 0.175em;
  font-size: 2.8em;
  margin-bottom: 0.5em;
  line-height: 1.3em;
}

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 15px;
  width: 170px;
  background: darkorange;
  border-radius: 25px;
  text-transform: uppercase;
  color: #FFF;
  font-size: 1em;
  font-family: Oswald;
  transition: ease-in 450ms;
}

.btn:hover {
  cursor: pointer;
  background: rgba(255, 115, 179, 0.7);
  box-shadow: 0px 2px 1px 1px rgba(0,0,0,0.3);
}

.banner_bg {
    width: 300px;
    position: relative;
    top: 5%;
    right: -5%;
}

.small_bg {
    width: 300px;
    height: 300px;
}

/* Main Content */

.main_content h2 {
    float: left;
    color: grey;
    font-size: 3em;
    margin-top: 0.2em;
    border-bottom: 0.125em solid;
}

.main_content h3 {
    color: grey;
}

.skills {
    float: right;
    width: 300px;
    color: black;
}

.skills p {
    margin: 0;
}

/* Sub Content Styling */
.sub_content {
    clear: both;
    height: 420px;
    padding-top: 5em;
}

.sub_content h2 {
    color: rgb(66, 76, 92);
    font-size: 3em;
    border-bottom: 0.125em solid;
    width: 15%;
    float: left;
    margin-top: 0;
}

.work_showcase {
    float: right;
    width: 400px;
}

.btn_primary {
    margin-top: 1em;
    position: relative;
    left: 50%;
    margin-left: -85px;
    padding: 10px;
}

.small-img {
    width: 400px;
}

.work_showcase img {
    border: 0.4em solid rgba(0,0,0,0.3);
    border-radius: 1em;
}

/* Footer Content Styling */
.footer_content {
    height: 400px;
    color: rgb(66, 76, 92);
    padding-top: 2em
}

.footer_content h2 {
    font-size: 3em;
    text-align: center;
}

/* Footer Styling */
footer {
    background: rgb(73, 77, 162);
    height: 400px;
}

.footer_container {
    width: 800px;
    margin: 0 auto;
    padding-top: 2.5em;
    /*background: pink;*/
}

.footer_container ul {
    padding: 0;
}

.footer_container li {
    font-size: 1.8em;
}

.footer_container h3 {
    color: rgb(255,255,255);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.footer_container p {
    color: rgb(170,171,187);
}

.social_icons {
    color: rgb(131, 134, 192);
    transition: ease-in 450ms;
}

.social_icons:hover {
    color: rgb(255,255,255);
}

.btn_secondary {
    margin-top: 1em;
}

.footer_container li {
    display: inline-block;
    margin-right: 1em;
}

.btn-secondary {
    position: relative;
    top: 50%;
    left: 0%;
}

/* Responsive Stuff */
@media (max-width: 1200px) {
    .wrapper, .footer_container {
        width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .wrapper, .footer_container {
        width: 600px;
        margin: 0 auto;
    } 
}

@media (max-width: 768px) {
    .wrapper, .footer_container {
        width: auto;
        margin: 1em 2em;
    }
    
    .heading_content {
        width: 50%;
        font-size: 0.8em;
    }
    .main_content h2 {
      margin-top: 0;
    }
    .small_bg {
       width: 80%;
       height: 80%;
    }
    .banner_bg {
        position: relative;
        top: 10%;
        right: 0%;
    }
    .footer_container {
        text-align: center;
    }
}

@media (max-width: 620px) {
    .logo {
        text-align: center;
        float: none;
        letter-spacing: 0.1em;
        font-size: 1.5em;
    }
    nav {
        float: none;
        text-align: center;
        padding-top: 0;
    }
    .heading_content {
        width: 40%;
        font-size: 0.5em;
    }
    .btn {
        font-size: 1.8em;
        margin-top: 1em;
    }
    .sub_content {
        height: 500px;
    }
    .sub_content h2 {
        text-align: center;
        border-bottom: none;
        width: auto;
        font-size: 2.2em;
        float: none;
    }
    .work_showcase {
        width: 400px;
        position: relative;
        right: 50%;
        margin-right: -200px;
    }
    .btn_primary {
        font-size: 1em;
    }
    .sub_content br {
        display: none;
    }
    .btn_secondary {
        font-size: 1em;
    }
}

@media (max-width: 550px) {
  .heading_content {
    /*background: pink;*/
    width: 300px;
    margin-left: -150px;
    text-align: center;
    position: absolute;
    top: 15%;
    left: 50%;
  }
  
  .btn {
    font-size: 1.7em;
    margin-top: 1.5em;
   }
  .banner_bg {
    display: none;
   }
  
   .main_content h2, .skills {
        float: none;
        text-align: center;
    }
    
    .main_content h2 {
        font-size: 2.2em;
        border-bottom: none;
    }
    
    .main_content br {
        display: none;
    }
    
    .skills {
        width: auto;
    }
    
    .sub_content {
        height: auto;
    }
    
    .sub_content h2 {
        text-align: center;
        border-bottom: none;
        width: auto;
        font-size: 2.2em;
        float: none;
    }
    
    .sub_content br {
        display: none;
    }
    
    .work_showcase {
        float: none;
        width: 400px;
        position: relative;
        left: 5%;
        margin-left: 20px;
    }
    
    .btn_primary {
        margin:1em;
        font-size: 1em;
        position: relative;
        left: 50%;
        width: 170px;
        margin-left: -85px;
    }
  .btn_secondary {
    font-size: 1em;
  }
}

@import url(https://fonts.googleapis.com/css?family=Vollkorn);
@import url(https://fonts.googleapis.com/css?family=Raleway:700);

body,
html {
  height: 100%;
  min-height: 100%;
}

.article {
  height: 100%;
  /* height: 100vh */
  overflow: hidden;
  width: 25%;
  float: left;
  background: #333;
    position: relative;}
  
    img {
    height: 100%;
    position: relative;
    transition: all .2s ease;
  }
  .meta {
    position: absolute;
    background: rgba(51, 51, 51, .5);
    width: 100%;
    color: #fff;
    top: 10%;
    padding: 10px;
  }
  h5 {
    color: #fff;
}
img:hover  {
      transform: scale(1.1);
      opacity: 0.5;}
    
    }
}

@media only screen and (max-width: 767px) {
  .article {
    float: none;
    width: 100%;
      height: auto;}
    
    img {
      height: auto;
      left: 0;
      width: 100%;
    }
  }
}

.freecontactform {
padding: 90px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
color: navajowhite;
background-color: orange;
align-items: center;
align-content: center

}

.freecontactformheader {
font-size:20px;
font-weight:bold;
padding-top:10px;
padding-bottom:10px;
text-align:center;
}