/*!
Theme Name: tatem_
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tatem_
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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.

tatem_ is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
	line-height:1;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* Tatem */

body {
	font-family: 'Jura', sans-serif;
	font-weight:400;
	font-size:16px;
	color:#fff;
}

p {
  padding: 0 0 17px 0;
  margin: 0; }

.innernav {  width:auto;line-height:40px;font-weight:700;position:absolute;right:0;top:31px;}
.innernav a {color:#fff;text-decoration:none;padding:5px 10px;}
.innernav a:hover {background:#00aeef;color:#fff;}
/* ==========================================================================
   HOME
============================================================================= */
.home-container-floater {
  float: left;
  height: 50%;
  margin-bottom: -321px; }

.home-container {
  clear: both;
  height: 642px;
  position: relative;
  margin: 0 auto;
  width: 990px; }

header {
  margin: 0 auto;
  text-align: center;
  width:100%;
  background:rgba(0,0,0,0.8); }

header .container {
	width:990px;
	position:relative;
	margin:0 auto;
	padding:20px 0;
}
.logo {
  margin: 0;
  display: block;
  /*width: 250px;*/
  width: 180px;
  height: 58px;
object-fit:contain;
object-position:center left; }

.top-phone {
  position:absolute;top:0;right:0;font-size:20px;color:#fff;font-weight:bold;background:#00aeef;padding:0 20px;
}
.top-phone a {
	color:inherit;
	text-decoration:none;
}
.home-content {
  height: 300px;
  background: transparent url(img/bg-home.png) no-repeat left top;
  position: relative; }

.home-content-hover-1 {
  background-position: 0 -300px; }

.home-content-hover-2 {
  background-position: 0 -600px; }

.home-text {
  width: 390px;
  padding: 0 0 0 25px;
  font-size:24px; }
  .home-text p {
  	line-height:1.2;}
  .home-text h1 {
    font-size: 18px;
    line-height: 52px;
    color: #92bd20;
    font-weight: normal;
    padding: 0 0 5px 0;
    margin: 0; }
    .home-text h1 strong {
      
      font-weight: normal; }
      .home-text h1 a {color:inherit;margin-right:20px;}

ul.menu {
  position: absolute;
  top: 100px;
  left: 430px;
  list-style: none;
  width: 560px;
  margin:0;
  padding:0; }
  ul.menu li {
    width: 270px;
    display: inline;
    float: left; }
    ul.menu li a {
      display: block;
      font-weight: 700;
      font-size: 42px;
      line-height: 42px;
      color: #fff;
      text-decoration: none; }
    ul.menu li:first-child {
      text-align: right; }
    ul.menu li:last-child {
      width: 260px;
      padding-top: 100px;
      padding-left: 30px; }

/* ==========================================================================
   PORTFOLIO PAGE
============================================================================= */
.page-container {
  min-height: 100%; }

body.home .page-content {
  background:rgba(255,255,255,0);
}
.page-content {
  margin: 0 auto;
  background:rgba(255,255,255,1);
  padding:0 0 20px 0;
  min-height:100vh;}
body.home .page-content {
	min-height:calc(100vh - 186px);
	position:relative;
}
.page-title {
  background: #8bc13f;
  margin: 0 auto; }

.page-title-inner {
  margin: 0 auto;
  width: 990px;
  text-align:right; }
  .page-title-inner h1 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: normal;
    padding: 0 0 0 0;
    margin: 0;
    line-height:60px; }
  .page-title-inner p {
    float: right;
    text-align: right;
    font-size: 12px;
    text-transform: uppercase;
    
    font-weight: normal;
    padding: 25px 0 0 0;
    margin: 0;
    line-height: normal; }

.page-content-inner {
  margin: 0 auto;
  width: 940px;
  display:inline-block;
  position:relative;
  left:50%;
  transform:translateX(-50%); }
.page-content-inner ul { padding:0 0 14px 16px; }
.page-content-inner a { color:inherit; }
.page-content-inner-thumbs {
  width: 990px;
  padding: 30px 0 0 0;
  color:#000; }

.individual-gallery .portfolio-thumb { width:32%;display:inline-block; }
.portfolio-thumb {
  display: block;
  float: left;
  margin: 5px;
  width: 32%;
  height:220px;
  text-decoration: none;
  position: relative; }
  body.page-id-19 .portfolio-thumb, body.home .portfolio-thumb {height:262px;}
  .portfolio-thumb img {
  	height:220px;
  	width:100%;
  	object-fit:cover;}
  .portfolio-thumb h3 {
    display: block;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
    padding: 14px 0 12px 12px;
    margin: 0; }
body.home .portfolio-thumb {
	display:inline-block;
	float:none;
}
.portfolio-thumb-overlay {
  display: none;
  width: 36px;
  height: 30px;
  background: transparent url(img/bg-portfolio-overlay.png) no-repeat 0 0;
  position: absolute;
  bottom: 0;
  right: 0; }

.testimonial-container {
	padding:10px 0;
	border-bottom:1px solid #ccc;
}
.testimonial-container:last-child {
	border:0;
}
.testimonial-container img {
	width:150px;
	height:150px;
	object-fit:cover;
	margin:0 20px 10px 0;
	float:left;
}
.testimonial {
  background: transparent url(img/bg-shade.png) repeat;
  padding: 10px;
  margin: 0 0 10px 0; }
  .testimonial h2 {
    font-size: 18px;
    text-transform: uppercase;
    
    font-weight: normal;
    width: 190px;
    padding: 0;
    margin: 0;
    float: left; }

.testimonial-inner {
  width: 730px;
  float: right;
  color: #cccccc; }

.step3 {
	display:inline-block;
	width:33%;
	vertical-align:top;
	padding:0 10px;
	text-align:center;
}
.step3 img {
	display:block;
	width:33%;
	margin:0 auto;
}
.step3 h2 {
	color:#8bc13f;
}
h1.border {
	padding:10px 0 0 0;
	border-top:1px solid rgba(255,255,255,0.3);
	text-align:center;
}
.col {margin:0 6px;float:left;width:48%;}
.col a {color:#00aeef;}
.col a:hover {color:#000;}
.col-50 {width:48%;}
.col-left {float:left;}
.col-right {float:right;}
.col-50 input, .col-50 textarea {width:100%;padding:5px;border:1px solid #999;border-radius:0;margin:0 0 5px 0;font-family: 'Jura', sans-serif;background:#fff;outline:none;}
.col-50 input[type=submit] {background:#8bc13f;color:#fff;border:0;width:50%;font-size:16px;padding:10px 0;margin:20px 0 0 0;}
.wpcf7-response-output {margin:0 !important;width:95%;border-color:#fff !important;clear:both;text-align:center;}
.wpcf7-list-item {margin:5px 0 10px 0 !important;}
.footer { width:100%; margin: 0 auto;clear:both;padding:20px 50px;font-size:14px;background:rgba(0,0,0,0.8);}
body.home .footer {position:absolute;bottom:0;}
.footer a {color:inherit;}
.footer i {font-size:20px;margin:0 5px 0 0;}
.copyright { float:left;line-height:20px; }
.copyright img {margin-right:5px;float:left;}
.websiteby { float:right;line-height:20px; }
.websiteby a {color:inherit;}
.home-page {position:absolute;left:50px;top:50%;right:10%;transform:translateY(-50%); padding: 1.5em 1em;}
.home-page h1 {color:#fff;font-weight:100;font-size:60px;margin:0 0 20px 0;text-shadow:1px 1px #000;}
.home-page p {text-shadow:1px 1px #000;font-weight:bold;font-size:14px;}
.home-page a {background:#000;color:#fff;border-radius:10px;padding:10px 40px;text-decoration:none;transition:all .5s;display: inline-block;}
.home-page a:hover {background:#fff !important;color:#000;}
.home-page a:nth-child(2) {background:#8bc13f;}
.vegas-slide:before {content:'';background:rgba(0, 0, 0, 0.4);position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;}

.single-post .entry-header,
.archive .entry-header,
.blog .entry-header { background: #fff; margin-bottom: 25px;  }
.single-post .entry-title,
.archive .entry-title,
.blog .entry-title { color: #8bc13f; }
.single-post .post-thumbnail { margin: 20px 0; }
.single-post .entry-content:after { content: ''; display: block; clear: both; }
.single-post .navigation.post-navigation { margin: 35px 0; }
.single-post .navigation.post-navigation a { transition: color 300ms ease-in-out; }
.single-post .navigation.post-navigation a:hover { color: #8bc13f; }

/*.blog .page-container .site-main { width: 990px; padding: 30px 0; color: #000; margin: 0 auto; }*/

.blog .page-title,
.archive .page-title { font-size: 30px; text-transform: uppercase; font-weight: normal; padding: 0 0 0 0; margin: 0; line-height: 60px; /*max-width: 990px; margin: 0 auto; text-align: right;*/ }
.blog .page-content-inner-thumbs,
.archive .page-content-inner-thumbs,
.single-post .page-content-inner-thumbs { padding: 30px; box-sizing: border-box; max-width: 100%; background: #fff; }
.blog .post-thumbnail,
.archive .post-thumbnail { width: 40%; float: left; margin-bottom: 20px; }
.blog .entry-content,
.archive .entry-content { width: 60%; float: right; padding-left: 35px; box-sizing: border-box; margin-top: 0; }
.blog .post:after,
.archive .post:after { content: ''; display: block; clear: both; }
.blog .post .entry-header,
.archive .post .entry-header { text-align: left; }
.blog .post .cat-links,
.archive .post .cat-links { display: none; }
.blog .post .more-link,
.archive .post .more-link { background: #8bc13f; color: #fff; border: 1px solid #8bc13f; display: inline-block; font-size: 15px; padding: 8px 10px; margin: 20px 0 0 0; min-width: 10em; transition: all 300ms ease-in-out; text-decoration: none; line-height: 1.55; }
.archive .post .more-link:hover,
.blog .post .more-link:hover { color: #8bc13f; background: transparent; }

.top-phone a { transition: color 300ms ease-in-out; }
.top-phone a:hover { color: #fff; }

header .container { max-width: 100%; padding: 20px; }

body.page-id-519 .size-medium {width:327px;}

@media all and (max-width: 920px) {
	header .container .innernav a { font-size: 15px; padding: 5px; }
}

@media all and (max-width: 900px) {
    .home-page { right: 50px; }
    .home-page h1 { font-size: 62px; }
}

@media all and (max-width: 820px) {
	header .container .innernav a { font-size: 14px; }
}

@media (max-width: 575px) { }

@media (max-width: 767px) {
.top-phone {top:-20px;left:20px;right:auto;}
body.home .footer {position:relative;}
header .container {width:100%;}
.home-container, .page-container {width:100%;height:auto;background:rgba(0,0,0,0.5);height:100vh;min-height:100vh;}
.page-container {height:100%;}
.home-container nav {display:none;}
.home-content {height:auto;background:none;text-align:center;}
.logo {width:75% !important;height:auto;margin:0;padding:0 20px; width: auto;position:absolute;top:-27px;left:0; }
header {padding:50px 0 0 0;}
.home-page {left:0;right:0;position:relative;transform:none;}
.home-page h1 {font-size:50px;text-align:left;}
.home-page a {display:block;width:100%;text-align:center;margin:0 0 10px 0;}
.home-text {width:100%;padding:0 20px;font-size:4.5vh;}
.home-text h1 {text-align:center;display:none;}
.home-text h1 a {margin:0 10px;}
ul.menu {position:relative;top:0;left:0;width:100%;}
ul.menu li {width:100%;float:none;display:block;text-align:center !important;}
ul.menu li:last-child {width:100%;padding:0;}
.innernav {display:none;}
body.page-id-519 .portfolio-thumb {width:100%;}
.page-content-inner-thumbs {width:100%;padding:0 20px;}
.page-title-inner {width:100%;text-align:center;}
.page-title-inner p {display:none;}
.page-title-inner h1 {float:none;}
.page-title {margin:0 auto 20px auto;}
.col {margin:0;float:none;width:100%;}
.portfolio-thumb, .individual-gallery .portfolio-thumb {margin:0 0 10px 0;width:100%;}
.portfolio-thumb img {width:100%;}
.col-50 {float:none;width:100%;}
.step3 {width:100%;margin:0 0 20px 0;}
.footer {padding:20px;}
.websiteby {float:none;}
.home-page { background: transparent; }
}

@media all and ( max-width: 700px ) {
	.blog .post-thumbnail, 
	.archive .post-thumbnail { width: 100%; float: none; margin-bottom: 30px; }
	.blog .entry-content, 
	.archive .entry-content { width: 100%; float: none; padding: 0; margin-top: 20px; }
	.single-post .entry-title { font-size: 1.6em; }
}

@media (min-width: 768px) and (max-width:1199px) { }
