/*
Theme Name: TravAtlas
Theme URI: http://underscores.me/
Author: Paul Rodriguez
Author URI: http://seotrafficleader.com
Description: Custom responsive theme for TravAtlas
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: travatlas
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.

TravAtlas is based on Underscores http://underscores.me/, (C) 2012-2016 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 http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
01 Normalize
02 Typography
03 Elements
04 Forms
05 Navigation
	05a Links
	05b Menus
06 Accessibility
07 Alignments
08 Clearings
09 Widgets
10 Content
	10a Posts and pages
	10b Comments
11 Infinite scroll
12 Media
	12a Captions
	12b Galleries
13 Theme Specific Styles 	
--------------------------------------------------------------*/

/*--------------------------------------------------------------
01 Normalize
--------------------------------------------------------------*/


/*--------------------------------------------------------------
02 Typography
--------------------------------------------------------------*/


/*--------------------------------------------------------------
03 Elements
--------------------------------------------------------------*/


/*--------------------------------------------------------------
04 Forms
--------------------------------------------------------------*/


/*--------------------------------------------------------------
05 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
	05a Links
--------------------------------------------------------------*/


/*--------------------------------------------------------------
	05b Menus
--------------------------------------------------------------*/

.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:focus, 
.navbar-default .navbar-nav>.active>a:hover  {
	height: 97px;
	margin-top: -49px;
	padding-top: 64px;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
	background-color: #e7e7e7;
	color: #222;
}

/* 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%;
}

/*--------------------------------------------------------------
06 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	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;
	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;
}

/*--------------------------------------------------------------
07 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;
}

/*--------------------------------------------------------------
08 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;
}

/*--------------------------------------------------------------
09 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
10 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 10a 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;
}

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

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.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;
}

/*--------------------------------------------------------------
12 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;
}

/*--------------------------------------------------------------
 12a 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;
}

/*--------------------------------------------------------------
 12b 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.33333%;
}

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

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

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

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

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

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

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
13 Theme Specific Styles
--------------------------------------------------------------*/

/*===============================================
>>>> COLOR PROFILE
=================================================

Primary Color
Orange - #e05915	  rgb(224,89,21)

Secondary Color
Purple - #431c5d	  rgb(67,28,93)

Accent Color
Green - #cdd422	    rgb(205,212,34)



===============================================*/


/*==== Global ====*/

body {
	margin-top: 94px;
  font-family: 'Open Sans', Helvetica, sans-serif;
  font-size: 16px;
  background: #fff url('/wp-content/themes/travatlas/assets/img/tile.jpg') top left repeat;
  
}

/* ==== Navigation ==== */

.logged-in .navbar-fixed-top {
	top: 32px;
}

nav.navbar {
	height: 94px;
	/*z-index: 4001;*/
}

.navbar-default .navbar-nav>li>a {
	color: #000;
	text-transform: uppercase;
}

nav.navbar .btn-danger {
	text-transform: capitalize;
	-webkit-border-radius: 4px;
	moz-border-radius: 4px;
	border-radius: 4px;
	margin-left: 6px;
}

nav.navbar .btn-danger a {
	color: #fff;
	padding: 6px;
}

nav.navbar .btn-danger a:hover {
	color: #fff;
}

.navbar-btn {
	top: 0!important;
}

.btn-danger.active, .btn-danger:active, 
.open>.dropdown-toggle.btn-danger {
	margin-top: auto;
}


.navbar-brand {
	margin-top: -8px;
}

.nav.navbar-nav {
	margin-top: 46px;
	margin-right: 5px;
	/*font-size: 18px;*/
}

nav.navbar.shrink {
  height: 49px;
}


nav.navbar.shrink .navbar-brand img {
	margin-top: -23px;
	transform: scale(0.45);
}

nav.navbar.shrink .nav.navbar-nav {
	margin-top: 0px;
	padding-top: 0px
}

nav.navbar,
.nav.navbar-nav,
.navbar-brand img {
   // Animation
   -webkit-transition: all 0.6s ease;
   transition: all 0.6s ease;
}



/* Typgraphy */

h1,h2,h3,h4,h5,h6 {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  letter-spacing: 2px;
}

h1 {
  font-size: 3em;
}

h1,h2 {
  margin: 0 0 40px;
}

h3 {
  margin: 20px 0;
}

h4 {
  font-size: 18px;
}

p {
	font-size: 15px;
	line-height: 25px;
	font-weight: 300;
	margin: 0 0 15px;
}

li {
	font-weight: 300;
}

p.lead {
	font-weight: 300;
}

a:link, a:visited {
  color: #ff512a;
}

a:hover {
  text-decoration: none;
  color: #222;
}

a.non-link {
	color: #222;
}

a.non-link:hover {
	text-decoration: underline;
}

blockquote {
	background: transparent;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  border-left: none;
}

blockquote p {
  display: inline;
}

blockquote cite {
	display: block;
	text-align: center;
	margin: 15px 0 0 0;
	text-transform: uppercase;
	font-style: normal;
	letter-spacing: 3px;
}

blockquote:before {
	display: none;
}

ul.list-indent li {
	margin-left: 40px;
}

/* Buttons */
.btn {
	color: #fff;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	-webkit-border-radius: 0px;
	moz-border-radius: 0px;
	border-radius: 0px;
}
a.btn {
	color: #fff;
}
a,
button.btn-link {
	color: #e05915;
}

.btn-default {
	background-color: #111;
	border: none;
}

.btn-default:hover {
	border: none;
}

.btn-danger,
.btn-danger:active {
	background-color: #e05915;
	border-color: : none;
}

.btn-success {
	background-color: #cdd422;
	border-color: : none;
}

.btn-primary {
	background-color: #431c5d;
	border-color: none;
}


/* ==== LAYOUT ==== */

img {
  max-width: 100%;
}

hr {
	border-bottom: 1px solid #eae8e8;
	-webkit-box-shadow:inset 1px 1px 3px 2px #545454;
 box-shadow:inset 1px 1px 3px 2px #545454;
}

.modal-content {
  background: url('/wp-content/themes/travatlas/assets/img/tile.jpg') top left repeat;
  color: #000;
}

section {
	padding: 80px 0;
}

#primary {
	padding-top: 40px;
	padding-bottom: 40px;
}

.row + .row {
	margin-top: 20px;
}

.section-header {
	text-align: center
}

/* Sticky Scroll to Top Button */
.crunchify-top:hover {
	color: #fff !important;
	background-color: #ff512a;
	text-decoration: none;
}
 
.crunchify-top {
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 3.2rem;
	height: 3.2rem;
	line-height: 3.2rem;
	font-size: 1.4rem;
	color: #cdd422;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	border-radius: 3.2rem;
	text-align: center;
	cursor: pointer;
}

/* Feature Image */

.feature-image {
	display: table;
	width: 100%;
	height: 400px;
}

.feature-image-default {
	background: url('//wp-content/themes/travatlas/assets/img/feature-image.jpg') no-repeat;
	background-size: cover;
}

.feature-image-default-alt {
	background: url('/wp-content/themes/travatlas/assets/img/feature-image-alt.jpg') no-repeat;
	background-size: cover;
}

.feature-image h1 {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
}

/* ==== SOCIAL MEDIA ==== */
.social-icon {
	width: 23px;
	height: 23px;
	background-color: #c2dde6;
	color: #222;
	transform: rotate(45deg);
	text-align: center;
	display: inline-block;
	margin: 0 20px 20px 20px;
}
.social-icon .fa {
	transform: rotate(-45deg);
	color: #222;
}
.social-icon .fa:hover {
	color: #fff;
}


.map:hover {
	background-color: #ff0000;
}

.phone:hover {

}

.mail:hover {

}

.facebook:hover {
	background-color: #3b5998;
	color: #fff;
}

.twitter:hover {
	background-color: #00b6f1;
	color: #fff;
}

.google:hover {
	background-color: #df4a32;
	color: #fff;
}

.youtube:hover{
	background-color: #b31217;
	color: #fff;
}
.pinterest:hover{
	background-color: #cb2027;
	color: #fff;
}
.instagram:hover{
	background-color: #c32aa3;
	color: #fff;
}


/* ==== HOME PAGE SECTIONS ==== */

/* ==== Hero Section ==== */

section#hero {
	padding: 0;
}

section#hero #layerslider h3 {
	color: #fff;
	background-color: #e05915;
	font-weight: 300;
	text-align: center;
}

section#hero .ls-bottom-slidebuttons {
	bottom: 30% !important;
}

/* ==== Advantage Section ==== */
section#advantage img.branding {
	margin-bottom: 30px;
}

section#advantage ul li {
	margin-bottom: 10px;
}

section#advantage ul span {
	text-transform: uppercase;
	color: #e05915;
}

/* ==== Review Section ==== */
section#reviews {
 	background: #fff url('/wp-content/themes/travatlas/assets/img/bg-map.jpg') right center fixed;
 	color: #222;
 }

 section#reviews blockquote {
 	text-align: center;
 }

 /* ==== CTA Section ==== */ 
 section#cta {
 	background-color: #e05915;
 	color: #fff;
 }

section#cta .btn-danger {
	background-color: #fff;
	color: #e05915;
}

section#cta .btn-danger:hover {
	background-color: #ccc;
	color: #222;
}
/* ==== Pre Footer ==== */ 
section#pre-footer {
	background-color: #e6e9f0;
	padding: 40px 0;
}

section#pre-footer ul {
	padding: 0;
	margin: 0;
}

section#pre-footer ul li {
	list-style: none;
	display: inline-block;
	margin: 10px 15px;
}

/* ==== FOOTER ==== */

footer#main-footer .social-media {
	margin-top: 40px;
}

footer#main-footer {
	width: 100%;
	background-color: #222;
	padding: 40px 0;
	font-weight: 300;
	color: #fff;
}

footer#main-footer ul.footer-menu  {
	margin: 20px 0 0 -48px !important;
}

footer#main-footer ul.footer-menu li {
	list-style: none;
	display: inline-block;
	margin: 2px;
	padding-right: 6px;
	font-size: 10px;
	line-height: 10px;
	border-right: 1px rgba(194,221,230,0.4) solid;
}

footer#main-footer ul.footer-menu li:hover {
	text-decoration: underline;
}

footer#main-footer ul.footer-menu li:last-child {
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

footer#main-footer .branding {
	margin-bottom: 15px;
}

footer#main-footer a,
footer#main-footer .btn-link {
	color: #c2dde6;
}

footer#main-footer a:hover,
footer#main-footer .btn-link:hover {
	color: #fff;
	text-decoration: none;
}

footer#main-footer p {
	margin-top: 5px;
}

footer#main-footer ul {
	margin-top: -2px;
}



/* === BLOG === */

.post, .widget, #comments {
	position: relative;
	border: solid 1px #ddd;
	background: #fff;
	margin: 0 0 40px;
	-webkit-border-radius: 4px;
	moz-border-radius: 4px;
	border-radius: 4px;
}

.post header,
.post .post-excerpt,
.post-body,
#comments .comments-wrap {
	padding: 20px;
}

.post header h1, 
.post header h3 {
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: solid 1px #ddd !important;
}

.post header h1 {
	font-size: 24px;
}

.post-image img {
	height: auto;
}

.post-details {
	font-size: 12px;
	width: 90%;
}

.post-details i.fa {
	padding-left: 10px;
}

.post-details i.fa:first-child {
	padding: 0;
}

/* === WIDGETS === */

.widget {
	padding: 20px;
}

.widget h4 {
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: solid 1px #ddd;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget ul li {
	margin: 0 0 5px;
}

.widget ul li:hover {
	position: relative;
	left: 1px;
}

/* === 
 == */

/*.post-comments-badge {
	height: 70px;
	width: 70px;
	position: absolute;
	top: 25px;
	right: 20px;
	border: none;
	-webkit-border-radius: 100%;
	moz-border-radius: 100%;
	border-radius: 100%;
	background: #79b044;
	text-align: center;
	display: table;
}

.post-comments-badge a {
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	font-size: 20px;
	line-height: 20px;
}

.post-comments-badge i.fa {
	display: block;
	font-size: 15px;
	padding: 0;
	margin-bottom: 4px;
}

.post-comments-badge:hover {
	background-color: #8bc653;
}*/

#comments h3 {
	text-align: center;
}

#comments h4 {
	font-size: 1.3em;
}

#comments ol {
	list-style: none;
}

#comments ol li {
	background: rgba(0,0,0,0.02);
	padding: 10px 20px;
	margin: 10px 0;
	-webkit-border-radius: 4px;
	moz-border-radius: 4px;
	border-radius: 4px;
	border: solid 1px rgba(0,0,0,0.03);
}

#comments ol li .children {
	padding: 0;
	list-style: none;
	font-size: 0.96em;
}


#leave-comment {
	margin: 40px 0 0;
	padding: 20px 0 0;
	border-top: solid 1px #eee;
}

/*textarea#comment {
	width: 100%;
}*/

.comment-content {
	margin-top: 10px;
}

.comment-metadata {
	font-size: 12px;
  margin-top: 6px;
}

.comment-author.vcard {
	font-size: 12px;
}

.search-submit {
	display: none!important;
}

.search-field {
	font-weight: 300;
}

/* === FORMS === */

label {
	display: block;
	font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	display: block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 6px 12px;
}

input[type="submit"],
button[type="submit"] {
	display: inline-block;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.33;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #fff;
	background-color: gray;
	background-image: none;
	border: none;
	-webkit-border-radius: 6px;
	moz-border-radius: 6px;
	border-radius: 6px;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
	outline: none;
	border: none;
	background: #aaa;
}

/* ==== Media Queries ==== */

@media screen and ( max-width : 1350px ) {
	.nav>li>a {
		padding: 15px 10px;
	}
}

@media screen and ( max-width : 1024px ) {
	.nav.navbar-nav {
		font-size: 10px;
	}

	/*.nav>li>a {
		padding: 10px 10px;
	}*/
}

@media screen and ( max-width : 800px ) {

	body {
		margin-top: 50px;
	}
	/*.navbar-brand img {
		height: 34px;
	}*/

	nav.navbar {
		height: initial;
	}

	.nav.navbar-nav {
		margin-top: initial;
		background: #fff;
	}


}

@media screen and ( max-width : 768px ) {
		.nav>li>a {
			padding: 15px 4px;
		}
		.nav.navbar-nav {
		font-size: 9px;
}

@media screen and ( max-width : 740px ) {
	.nav.navbar-nav {
		font-size: initial;
	}
	.btn-danger.active, .btn-danger:active, 
	.open>.dropdown-toggle.btn-danger {
		margin-top: initial;
	}
}


@media screen and ( max-width : 568px ) {

	footer#main-footer .social-icon {
		margin: 20px 10px;
	}

	
}


