/*
Theme Name: Drew Nielsen
Theme URI: https://drewnielsen.com
Author:
Author URI: 
Description: In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, green, white, light, dark, two-columns, three-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: twentyfourteen
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/****************************************************
/ GLOBALS
/****************************************************/
* {
	margin: 0;
}

@font-face {
    font-family: 'industri-bold';
    src: url('fonts/industri/industri-bold-webfont.woff2') format('woff2'),
         url('fonts/industri/industri-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'decalotype-regular';
    src: url('fonts/decalotype/decalotype-regular-webfont.woff2') format('woff2'),
         url('fonts/decalotype/decalotype-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
  color: #1F1F1F;
  background-color: #0f0f12;
}

h1 {
  font-family: 'industri-bold', sans-serif;
  color: #FFFFFF;
}

p {
  font-family: 'Open Sans', sans-serif; 
  color: #AAAAAA;
  font-size: 15px;
  line-height: 1.9em;
  font-weight: 400;
}

.hghlght-link {
	color: #FFFFFF;
	text-decoration: none !important;
	transition: color .3s,background .3s;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.hghlght-link:hover:before {
    border-bottom: 2px solid rgba(255, 255, 255, 1);
}

.hghlght-link:before {
    content: " ";
    position: absolute;
    bottom: -4px;
    border-bottom: 2px solid rgba(255, 255, 255, 1);
    width: 100%;
    left: 0;
    transition: .3s;
}

.logo-float-left {
  float: left;
}

/****************************************************
/ GLOBALS END
/****************************************************/


/****************************************************
/ OTHER
/****************************************************/
.logo-block {
  height: 50px;
}

#tagline {
  color: #AAAAAA;
  font-family: 'decalotype-regular', sans-serif;
  text-align: center;
  font-size: 15px;
  padding: 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
}

.border-bottom {
  border-bottom: 1px solid #242E67;
}

/****************************************************
/ OTHER END
/****************************************************/


/****************************************************
/ NAVIGATION
/****************************************************/
nav {
  /*width: 80%;*/
  /*margin: 0 auto;*/
  font-family: 'industri-bold', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  float: right;
	
}

nav ul {
  list-style: none;
  text-align: center;
  padding-left: 0px;
}

nav ul li {
  display: inline-block;
}
nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #AAAAAA;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 10px;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}
nav ul li a:hover {
  color: #555;
}


/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #242e67;
  height: 1px;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}

nav.fill ul li a {
  transition: all 2s;
}

nav.fill ul li a:after {
  text-align: left;
  content: '.';
  margin: 0;
  opacity: 0;
}
nav.fill ul li a:hover {
  color: #fff;
  z-index: 1;
}
nav.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}

/* Keyframes */
@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #242E67;
  }
}

/****************************************************
/ NAVIGATION END
/****************************************************/


/****************************************************
/ BACK TO TOP
/****************************************************/
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(36, 46, 103, 0.8) url(https://codyhouse.co/demo/back-to-top/img/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/****************************************************
/ BACK TO TOP END
/****************************************************/

/****************************************************
/ FOOTER
/****************************************************/
.footer-social {
  float: right;
}

.footer-social a svg {
  height: 30px;
  width: auto;
  margin: 0 7.5px;
}

.footer-social a svg .blue-fill, .footer-social a svg .white-fill { 
  transition: 400ms;
  transition-timing-function: ease-in-out;
  -webkit-transition: 400ms;
  -webkit-transition-timing-function: ease-in-out;
}

.footer-social a svg:hover .blue-fill { 
  fill: #242E67;
}

.footer-social a svg:hover .white-fill { 
  fill: #FFFFFF;
}
/****************************************************
/ FOOTER END
/****************************************************/




.thumbnail-title {
  color: #FFFFFF;
  font-family: 'industri-bold', sans-serif;
  text-align: center;
  font-size: 21px;
}

.container {
  max-width: 900px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.full {
  width: 100%;
  display: block;
}

.full:hover {
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

.port-image {
	width: 100%;
  display: block;
  padding: 15px 0;
}

.col-margin {
  margin-top: 3%;
}


/*  
                       _ _                               _                         _       
                      | (_)                             (_)                       | |      
    _ __ ___   ___  __| |_  __ _    __ _ _   _  ___ _ __ _  ___  ___    ___  _ __ | |_   _ 
   | '_ ` _ \ / _ \/ _` | |/ _` |  / _` | | | |/ _ \ '__| |/ _ \/ __|  / _ \| '_ \| | | | |
   | | | | | |  __/ (_| | | (_| | | (_| | |_| |  __/ |  | |  __/\__ \ | (_) | | | | | |_| |
   |_| |_| |_|\___|\__,_|_|\__,_|  \__, |\__,_|\___|_|  |_|\___||___/  \___/|_| |_|_|\__, |
                                      | |                                             __/ |
                                      |_|                                            |___/ 
*/

/****************************************************
/ 1281
/****************************************************/
@media (min-width: 1281px) {

}


/****************************************************
/ 991
/****************************************************/
@media (max-width: 991px) {
	
}


/****************************************************
/ 767
/****************************************************/
@media (max-width: 767px) {
  #nielsen-logo {
    height: auto;
    width: 280px;
    margin: 0 auto;
    display: block;
  }
 
  .logo-float-left {
    float: none;
  }
  
  #tagline {
    text-align: center;
  }
  
  .container {
    padding-bottom: 100px;
  }
  
  nav {
    float: none;
  }
  
  nav ul li a {
    margin: 0 0px;
  }
	
}

/****************************************************
/ 480
/****************************************************/
@media (max-width: 480px) {
 
}







