/*
	Theme Name: Tomahawk
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Imports -
2.0 Fonts & Colors & Mixins -
3.0 Structure -
4.0 Clearings -
5.0 Links -
6.0 Lists -
7.0 Buttons -
8.0 Forms -
9.0 Navigation -
10.0 Layout
	10.1 Home Page
	10.2 About
	10.3 Experience
	10.4 Portfolio
	10.5 Contact
11.0 Footer
12.0 Widgets
13.0 jQuery UI


/*--------------------------------------------------------------
1.0 Imports
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600");
@import url(/Applications/MAMP/htdocs/thomas-beaver/wp-content/themes/tomahawk 3/assets/css/gotham.css);
/*--------------------------------------------------------------
2.0 Fonts and Colors and Mixins
----------------------------------------------------------------*/
h1 {
  font: bold 30px/30px 'Gotham';
}

h2 {
  font: bold 22px/26px 'Gotham';
}

nav a, h3 {
  font: 18px/22px 'Gotham';
}

p {
  font: 300 20px/22px 'Open Sans', sans-serif;
  line-height: 1.4em;
  padding: 10px 0;
}

a {
  font: 600 20px/22px 'Open Sans', sans-serif;
}

ol, ul {
  font: 300 20px/22px 'Open Sans', sans-serif;
  line-height: 1.4em;
}

.black {
  background: #2d2d2d;
  color: #ffffff;
}

.lt20 {
  background: #cbdbcd;
  color: #ffffff;
}

.ltblack70 {
  background: white;
  color: #ffffff;
}

.primary {
  background: #8eb293;
}

.secondary {
  background: #fafbf3;
}

/*--------------------------------------------------------------
3.0 Structure
----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

.fine {
  font-size: .9em;
}

.full {
  width: 100%;
}

.container {
  width: 2000px;
  margin: 0 auto;
}

@media (max-width: 2000px) {
  .container {
    width: 100%;
  }
}

.containerSmall {
  width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1240px) {
  .containerSmall {
    width: 100%;
  }
}

.containerXSmall {
  width: 860px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .containerXSmall {
    width: 100%;
  }
}

.space {
  padding-top: 100px;
}

.relative {
  position: relative;
}

.none {
  display: none;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

.line {
  height: 5px;
}

.row, .column {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.row:before,
.row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.column {
  position: relative;
  float: left;
}

.column + .column {
  margin-left: 1.6%;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: calc(100%/2);
}

.col-3 {
  width: calc(100%/3);
}

.col-3-2 {
  width: calc(100%/3*2);
}

.col-4 {
  width: calc(100%/4);
}

.col-4-3 {
  width: calc(100%/4*3);
}

.col-5 {
  width: calc(100%/5);
}

.col-6 {
  width: calc(100%/6);
}

.col-7 {
  width: calc(100%/7);
}

.col-8 {
  width: calc(100%/8);
}

.col-9 {
  width: calc(100%/9);
}

.col-10 {
  width: calc(100%/10);
}

.col-11 {
  width: calc(100%/11);
}

.col-12 {
  width: calc(100%/12);
}

/*--------------------------------------------------------------
4.0 Clearings
----------------------------------------------------------------*/
.clear:before,
.clear:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after {
  clear: both;
}

/*--------------------------------------------------------------
5.0 background
----------------------------------------------------------------*/
.motion {
  background: linear-gradient(237deg, #4c7051, #8eb293, #d7ecda);
  background-size: 400% 200%;
  -webkit-animation: AnimationName 15s ease infinite;
  animation: AnimationName 15s ease infinite;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*--------------------------------------------------------------
6.0 Lists
----------------------------------------------------------------*/
ol, ul {
  line-height: 1.3em;
}

li {
  padding: 5px 0;
}

/*--------------------------------------------------------------
7.0 Buttons
----------------------------------------------------------------*/
/*--------------------------------------------------------------
8.0 Forms
----------------------------------------------------------------*/
/*--------------------------------------------------------------
9.0 Navigation
----------------------------------------------------------------*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 25px;
  width: 100%;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  z-index: 9999;
}

nav .logo {
  float: left;
  width: 300px;
  height: 100px;
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav .logo img {
  width: auto;
  height: 100%;
}

nav .nav {
  float: right;
  height: 100px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav .nav ul {
  padding: 0;
}

nav .nav ul li {
  display: inline-block;
  list-style: none;
  padding: 0 60px 0 0;
}

nav .nav ul li:last-child {
  padding: 0;
}

nav .nav ul li a {
  font-size: 1.4rem;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

nav .nav ul li a:hover {
  -webkit-text-stroke: 1px #7fa885;
  color: #8eb293;
}

/*--------------------------------------------------------------
10.0 Layout
----------------------------------------------------------------
	10.1 Home Page
	------------------------------------------------------------*/
.hero {
  z-index: 99;
  height: 100vh;
  width: 100%;
}

.hero .call2action {
  position: absolute;
  top: 30%;
  left: 10%;
}

.trio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.trio .card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 20px;
  padding: 60px;
  overflow: hidden;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.trio .card h1, .trio .card p {
  padding-bottom: 20px;
}

.trio .card a {
  position: absolute;
  bottom: 50px;
}

.trio .card::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: table;
  width: 100%;
  height: 2px;
  background: #8eb293;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.trio .card:hover {
  color: white;
}

.trio .card:hover::after {
  background: #8eb293;
  width: 200%;
  height: 6px;
}

.trio .card:hover .innerCard {
  height: 100%;
}

.trio .card .innerCard {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  z-index: -1;
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.services .tabs {
  -webkit-box-flex: 1;
      -ms-flex: 1 2 auto;
          flex: 1 2 auto;
}

.services .tabs ul {
  padding: 20px 0;
  list-style: none;
}

.services .tabs ul li {
  position: relative;
  padding-left: 30%;
  padding-top: 120px;
  font-family: 'Gotham';
  font-weight: 500;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}

.services .tabs ul li:first-child {
  padding-bottom: 20px;
}

.services .tabs ul li:first-child::after {
  height: 0;
}

.services .tabs ul li::after {
  position: absolute;
  bottom: 0;
  left: 30%;
  content: '';
  display: table;
  width: 0;
  height: 4px;
  background: #8eb293;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}

.services .tabs ul li:hover {
  font-size: 1.6rem;
}

.services .tabs ul li:hover::after {
  width: calc(100% - 30%);
}

.services .tabsInfo {
  -webkit-box-flex: 4;
      -ms-flex: 4 2 auto;
          flex: 4 2 auto;
  padding: 20px;
}

.services .tabsInfo .service {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  display: none;
}

.portFull {
  padding: 100px 0;
  margin: 100px 0 0;
}

.portFull .portfolio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.portFull .portfolio .port {
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.portFull .portfolio .port .portBack {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
}

.portFull .portfolio .port .portBack .portCard {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: white;
  margin: 5px;
}

.portFull .portfolio .port .portBack .portCard a {
  text-decoration: none;
  color: #2d2d2d;
}

.portFull .portfolio .port .portBack .portCard:hover .portImage img {
  width: 80%;
  height: 80%;
  margin: 5% 10%;
}

.portFull .portfolio .port .portBack .portCard:hover .portTitle h2 {
  color: #2d2d2d;
}

.portFull .portfolio .port .portBack .portCard:hover .portTitle h2::after {
  width: 100%;
}

.portFull .portfolio .port .portBack .portCard .portImage img {
  width: 100%;
  height: 100%;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}

.portFull .portfolio .port .portBack .portCard .portTitle {
  padding: 20px;
}

.portFull .portfolio .port .portBack .portCard .portTitle h2 {
  color: #8eb293;
  position: relative;
  display: inline;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}

.portFull .portfolio .port .portBack .portCard .portTitle h2::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: '';
  display: table;
  width: 0;
  height: 4px;
  background: #8eb293;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}

.portFull .portfolio .port .portBack .portCard .portTitle p {
  color: #2d2d2d;
}

/*----------------------------------------------------------
	10.2 About
	------------------------------------------------------------*/
/*----------------------------------------------------------
	10.3 Fun
	------------------------------------------------------------*/
/*----------------------------------------------------------
	10.4 Portfolio
	------------------------------------------------------------*/
.portfolio .headline {
  margin-bottom: 20px;
}

.portfolio .headline h1 {
  margin: 10px 0;
}

.portfolio .headline p a {
  color: #8eb293;
}

@media (max-width: 820px) {
  .portfolio .categorySelect .fullFilter {
    display: none;
  }
}

.portfolio .categorySelect .smallFilter {
  display: none;
}

@media (max-width: 820px) {
  .portfolio .categorySelect .smallFilter {
    display: block;
  }
}

.portfolio .categorySelect ul {
  padding-left: 0;
  list-style: none;
}

.portfolio .categorySelect ul li {
  display: inline-block;
  margin-right: 30px;
}

.portfolio .categorySelect ul li a {
  color: #8eb293;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.portfolio .categorySelect ul li a:hover {
  color: #cbdbcd;
}

.portfolio .categorySelect ul .current-cat a {
  text-decoration: underline;
}

.portfolio .portfolioList .card {
  height: 321px;
}

@media (max-width: 1240px) {
  .portfolio .portfolioList .card {
    height: 280px;
  }
}

@media (max-width: 860px) {
  .portfolio .portfolioList .card {
    width: 50%;
  }
}

@media (max-width: 568px) {
  .portfolio .portfolioList .card {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1240px) {
  .portfolio .portfolioList .card .padding {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1240px) {
  .portfolio .portfolioList .card .cushion {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.portfolio .portfolioList .card .blogCard {
  height: auto;
  padding: 0 10px;
  background: #ffffff;
  border: 0.5px solid rgba(45, 45, 45, 0.1);
  border-radius: 4px;
}

.portfolio .portfolioList .card .blogCard:hover {
  border: 0.5px solid rgba(45, 45, 45, 0.2);
  -webkit-box-shadow: 1px 2px 2px rgba(45, 45, 45, 0.4);
          box-shadow: 1px 2px 2px rgba(45, 45, 45, 0.4);
}

.portfolio .portfolioList .card .blogCard a {
  padding: 0 20px;
}

.portfolio .portfolioList .card .blogCard a h2 {
  color: #8eb293;
}

@media (max-width: 1240px) {
  .portfolio .portfolioList .card .blogCard a h2 {
    font-size: 1em;
  }
}

@media (max-width: 568px) {
  .portfolio .portfolioList .card .blogCard a h2 {
    font-size: .8em;
  }
}

.portfolio .portfolioList .card .blogCard a span {
  color: #2d2d2d;
  font-size: .6em;
}

.portfolio .portfolioList .card .blogCard a hr {
  border: 0.5px solid #8eb293;
}

.portfolio .portfolioList .card .blogCard a img {
  width: 90%;
  height: auto;
  padding: 5% 5% 0;
}

.posts .pageHeader {
  margin: 0 auto 30px;
  display: block;
  position: relative;
  width: 100%;
  height: 40vh;
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.posts .story .links {
  margin: 40px 0;
}

.posts .story .links .blogPost {
  padding: 10px 0;
  text-align: center;
}

.posts .story .links .blogPost a {
  color: #ffffff;
}

.posts .story .links .blogPost a:hover {
  color: white;
}

.posts .story .expectations {
  margin: 60px 0;
}

.posts .story .expectations h2 {
  padding: 20px 0;
}

.posts .story .expectations .challenges {
  border-right: 1px solid #c6c6c6;
}

@media (max-width: 767px) {
  .posts .story .expectations .challenges {
    border-right: none;
  }
}

.posts .story .expectations .deliverables ul {
  padding-left: 40px;
}

@media (max-width: 767px) {
  .posts .story .expectations .toFull {
    width: 100%;
  }
}

.posts .story .comps .compContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.posts .story .comps .compImage {
  width: 30%;
  height: auto;
}

@media (max-width: 860px) {
  .posts .story .comps .compImage {
    width: 50%;
  }
}

.posts .story .comps .compImage img {
  width: 80%;
  height: auto;
}

@media (max-width: 767px) {
  .posts .story #first .center .toFull {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .posts .story #second img {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .posts .story #third img {
    width: 90%;
    height: auto;
  }
}

.posts .story .prevComps {
  padding-bottom: 30px;
}

.posts .story .comps, .posts .story .blogSection {
  margin: 60px 0;
}

.posts .story .comps h2, .posts .story .blogSection h2 {
  padding: 40px 0 20px;
}

/*----------------------------------------------------------
	10.5 Contact
	------------------------------------------------------------*/
/*--------------------------------------------------------------
11.0 Footer
----------------------------------------------------------------*/
/*--------------------------------------------------------------
12.0 Widgets
----------------------------------------------------------------*/
/*--------------------------------------------------------------
13.0 jQuery UI
----------------------------------------------------------------*/
/*--------------------------------------------------------------
20.0 Media Queries
----------------------------------------------------------------*/
/*# sourceMappingURL=style.css.map */