/*
Theme Name: 	Endeavour Vet
Description: 	Endeavour Vet Wordpress theme!
Version: 		1.0
Author: 		Nathan Stanmore
*/

/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Media queries 
===========================
*/

/* ---------------------------------------------------------------------------------------------------------- 
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

/*@import "css/reset.css";*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700|Skranji');

/*
font-family: 'Skranji', cursive;
font-family: 'Roboto', sans-serif;*/

div,
article,
section,
header,
footer,
nav,
li					{ position:relative; /* For absolutely positioning elements within containers (add more to the list if need be) */ }
.group:after 		{ display:block; height:0; clear:both; content:"."; visibility:hidden; /* For clearing */ }
body 				{ background:#fff; /* Don't forget to style your body to avoid user overrides */ }

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

14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		1em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.5em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)

*/

body,
input,
textarea 			{ font-family: 'Roboto', sans-serif; /* We strongly recommend you declare font-weight using numerical values, but check to see which weights you're exporting first */ }

h1, 
h2, 
h3, 
h4, 
h5, 
h6 					{ font-weight:normal; /* This helps to identify headings at the initial build stage, but you should write something more precise later on */ }

a,
a:hover {
	color: #106200;
}

img.alignleft {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

img.alignright {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

img.aligncenter {
	display: block;
	margin: 0 auto;
}

img {
	max-width: 100%;
	height: auto;
}


/* ---------------------------------------------------------------------------------------------------------- 
03 Media queries (using a mobile-first approach) ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

header .logo {
	margin: 10px 0;
	display: block;
	float: left;
}

header .navbar-collapse {
    padding: 0;
}

header .navbar {
	background: #106200;
	border: none;
	border-radius: 0;
	padding: 5px 0;
	margin-bottom: 0;
}

header .navbar-default .navbar-nav>li>a {
	color: #fff;
	font-family: 'Skranji', cursive;
	color: #fff;
	font-size: 16px;
	transition: 0.3s;
	padding: 10px 20px;
	margin: 0 10px 0 0;
	border-radius: 	5px;
}

header .navbar-default .navbar-nav>.active>a, 
header .navbar-default .navbar-nav>.active>a:focus, 
header .navbar-default .navbar-nav>.active>a:hover
header .navbar-default .navbar-nav>li>a:focus, 
header .navbar-default .navbar-nav>li>a:hover {
	background: #fff;
    color: #2f5022;
}

.banner-slider .slick-prev {
	left: 15px;
	z-index: 99;
}

.banner-slider .slick-next {
	right: 15px;
	z-index: 99;
}

.banner-item {
	height: 420px;
}

.page-content {
	background: #f5f5f5;
	padding: 25px 0;
}

.page-content h1 {
	color: #106200;
    line-height: 1.1;
    font-size: 26px;
}

.page-content .add-border {
	padding: 20px;
	border: 2px solid #e3e3e3;
}

.page-content .content-item {
	margin-bottom: 15px;
}

.page-content h2 {
	margin-top: 0;
	color: #106200;
    font-size: 23px;
}

.page-content h3 {
    font-size: 23px;
    background: #106200;
    color: #fff;
    margin-bottom: 20px;
    padding: 15px;
}

.page-content hr {
	border-color: #106200;
}

footer {
	background: #106200;
	color: #fff;
	padding: 15px 0;
}

footer a,
footer a:hover {
	color: #fff;
}

footer ul {
   width: 100%;
   display: table;
   text-align: center;
   margin-bottom: 0;
   padding: 0;
}

footer ul li{
     display: inline-block;
     float: none;
     margin: 0 15px;
}

.banner {
	width: 100%;
	height: auto;
	margin-bottom: 5px;
}

.gallery img {
	width: 100%;
	height: auto;
	border: none !important;
	margin-bottom: 10px;
}

.gallery .slick-prev {
	left: 15px;
	z-index: 99;
}

.gallery .slick-next {
	right: 15px;
	z-index: 99;
}

.form-control {
	border-radius: 0;
	border: none;
}

.wpcf7 .btn {
	background: #106200;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    padding: 8px 25px;
    border-radius: 0;
    transition: 0.32;
}

.wpcf7 .btn:hover {
	background: #000;
}

span.wpcf7-not-valid-tip {
	margin-top: 5px;
}

@media(max-width: 991px) {

	.banner-item {
		height: 280px;
	}

	footer {
		text-align: center;
	}

	footer ul li {
		margin: 0 10px;
	}

}

@media(max-width: 767px) {


	.navbar-default .navbar-toggle {
	    border-color: #fff;
	    border-radius: 0;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: #fff;
	}

	footer .pull-left,
	footer .pull-right {
		width: 100%;
		margin: 5px 0;
	}

    header .navbar-collapse {
        padding: 0 15px;
    }
    
    header .navbar-default .navbar-nav>li>a {
        margin: 2px 15px;
    }

}