/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    line-height: 1.7;
    color: #606d6e;
}

/* oswald-regular - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/oswald-v13-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Oswald Regular'), local('Oswald-Regular'),
       url('../fonts/oswald-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/oswald-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/oswald-v13-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/oswald-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/oswald-v13-latin-regular.svg#Oswald') format('svg'); /* Legacy iOS */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #454B4D;
}

a {
    color: #444;
    text-decoration: none;
	font-weight: bold;
}

a:hover {
    color: #999;
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

.content-img img {
	max-width: 100%;
}

/* Utility Classes */
.blog_header_img {
	  width: 100%;
}

.wrapper {
    margin: 0 0.5rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Content Styling */
.header .padding {
    padding: 1rem 0;
}

.header {
    color: #eee;
}

.header a {
    color: #333;
}

.header .logo {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.footer {
    background-color: #fff;
	font-size: .75em;
}

/* RESPONSIVE MENU */

.nav-container {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  margin-left: calc(var(--gutter) / 2);
  margin-right: calc(var(--gutter) / 2);
}

#navbar {
  width: 100%;
  padding: 10px;
  z-index: 1;
}

#navbar::after {
  clear: both;
  content: "";
  display: table;
}

.logo {
  font-size: 1.5em;
  font-weight: 700;
  padding: 5px;
  float: left;
  margin-left: -8px;
}

.nav-collapse {
  float: right;
  font-size: 1em;
  display: none;
}

nav {
  display: block;
  float: right;
  margin-right: -100px;
}
nav ul {
  list-style: none;
  margin-top: 40px;
  cursor: pointer;
  font-size: .9em;
}
nav ul li {
  display: inline;
  margin-left: 15px;
  font-weight: 300;
  border-radius: 3px;
  color: #fff;
}
nav ul li:hover {
  background: #fefefe;
  color: #fff;
}

#hide {
  display: none;
}
#hide:checked + nav {
  display: block;
}


/* Portfolio */

.portfolio {
	
}

.portfolio ul {
	list-style-type:none;
}

.portoflio li {
	display: inline;
	list-style-type: none;
}


@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
  }

  #navbar {
    padding: 10px 0 0 0;
  }

  .logo {
    margin: 0 0 10px 10px;
  }

  .nav-collapse {
    display: block;
    margin-top: 30px;
    float: right;
    cursor: pointer;
    padding: 0 5px;
    color: #fff;
    background: #333;
  }

  nav {
    display: none;
    float: none;
    clear: both;
  }
  nav ul {
    margin-top: 0px;
  }
  nav ul li {
    display: block;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    color: #f0f0f0;
    text-align: right;
    border-bottom: 1px solid #fcfcfc;
	margin-right: 100px;
  }
  
  .gallery {
  text-align: center;
}
  
  /* CAROUSEL */
  
#rotator {
  background: url(theme://rotate/rotator.php) no-repeat center top;
  width: 700px;
  height: 150px;
}

