/*
 Theme Name:   Your Web Layout Child
 Theme URI:    http://inmotionwebdesigns.com
 Description:  Your Web Layout Child Theme
 Author:       Design Services
 Author URI:   http://yourweblayout.com
 Template:     yourweblayout
 Version:      1.3.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  yourweblayout-child

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS: 
----------------------------------------------------------------
1.0 Bootstrap
	1.1 Adjustments

2.0	Underscores
	2.1 Elements
	2.2 Accessibility
	2.3 Alignments
	2.4 Clearings

3.0 Your Web Layout
	3.1 Typography
	3.2 Background
	3.3 Header
	3.4 Navigation
	3.5 Contentog
	3.6 Sidebar
	3.7 Footer
	3.8 Custom
	3.9 WooCommerce
	3.9.5 Blog

4.0 Media Queries
	4.1 xs
	4.2 sm
	4.3 md
	4.4 lg
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Bootstrap
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.1 Adjustments
--------------------------------------------------------------*/
/* If they insist, disable responsiveness thusly
 * @link http: //getbootstrap.com/getting-started/#disable-responsive
 *
 * 1. Replace all col classes (col-lg, col-md, col-sm) with col-xs
 * 2. Remove all navbar collapsing and expanding behavior
 * 3. Uncomment css below to override container width
 */

/*
.container {
	width: 970 !important;
}


@media (min-width: 576px) {

}

@media (min-width: 768px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 970px;
	}
}
*/

/*--------------------------------------------------------------
2.0	Underscores
--------------------------------------------------------------*/

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

figcaption {
	font-size: 16px;
	margin-bottom: 20px;
	margin-top: 5px;
}

/* Make sure elements fit their containers */
embed,
iframe,
object,
.wp-caption,
.widget select {
	max-width: 100%;
}

/* Required by WordPress theme check */
.sticky,
.bypostauthor,
.gallery-caption,
.wp-caption-text {
}

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

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #3d68b2;
	display: block;
	font-size: 14px;
	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 */
}

/* put code in here to specify colors for Dark Mode on mobile devices */
@media (prefers-color-scheme: dark) {
	
}

/*--------------------------------------------------------------
2.3 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: 0 auto;
}

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

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

/*--------------------------------------------------------------
3.0 Your Web Layout
--------------------------------------------------------------*/
/* this removes the anchor tags around images and text when printing a webpage */
@media print {
	a[href]:after {
		content: "";
	}
}

/*--------------------------------------------------------------
3.1 Typography
--------------------------------------------------------------*/
body {
	color: #333;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
	min-width: 300px;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

h1,
.h1,
h2 {
	color: #9a1c1f;
}

h3,
h4 {
	color: #3d68b2;
}

h1,
.h1,
h2, 
h3 {
	font-family: 'Mali', cursive;
}

h1,
h2.post-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 39px;
}

h2 {
	font-size: 26px;
	line-height: 34px;
}

h3 {
	font-size: 22px;
	line-height: 30px;
}

h4 {
	font-size: 20px;
	line-height: 26px;
}

p {
	margin-bottom: 20px;
}

a,
a:hover, 
a:visited,
a:focus {
	color: #3d68b2;	
}

/*this hides the dotted border that appears on menu items when active */
a:focus {
	outline: none;
}

.btn-primary,
.btn-primary:visited {
	background: #3d68b2;
	border: 3px solid #3d68b2;
	border-radius: 0;
	/*box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 1px 0 #3d68b2;*/
	color: #fff;
	display: inline-block;
	font-family: 'Mali', cursive;
	font-weight: 500;
	margin: 20px 0;
	padding: 8px 35px;
	transition: all .5s;
}

.btn-primary:hover,
.btn-primary:focus {
	background: #ffd700;
	border: 3px solid #ffd700;
	color: #3d68b2;
	text-decoration: none;
}

.btn-secondary,
.btn-secondary:visited {
	background: #ffd700;
	border: 3px solid #ffd700;
	border-radius: 0;
	color: #3d68b2;
	display: inline-block;
	font-family: 'Mali', cursive;
	font-weight: 500;
	margin: 20px 0;
	padding: 8px 35px;
	transition: all .5s;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: #3d68b2;
	border: 3px solid #3d68b2;
	color: #fff;
	text-decoration: none;
}

ul,
ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

/* "Definition List" next-four-rules
<dl>
<dt><dt>
<dd></dd>
</dl>
*/
 dl {
    border: 3px double #ccc;
    padding: 0.5em;
}

dt {
    clear: left;
    color: #5c428b;
    float: left;
    font-weight: bold;
    text-align: right;
    width: 100px;
}

dt::after {
	content: ":";
}

dd {
	margin: 0 0 0 110px;
	padding: 0 0 0.5em 0;
}

/* xs */
@media (min-width: 576px) {
	body { 
		overflow-x: inherit;
	}
}

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

}

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

}

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

}

/*--------------------------------------------------------------
3.2 Background
--------------------------------------------------------------*/
body,
.site-content,
.site-header,
.site-content > .container {
	background: #fff;
}

.site-header {
	position: relative;
	z-index: 2;
}

#site-navigation,
.navbar-default {
	background: #3d68b2;
}

.eligibility-section {
	line-height: 32px;
}

.eligibility-section,
.site-footer {
	background: url('images/paper-bg.jpg') repeat center center;
}

.eligibility-section,
.recipes-section,
.site-footer {
	border-top: 3px solid #9a1c1f;
}

.eligibility-section h2,
.recipes-section h2 {
	font-size: 36px;
}

.attribution {
	background: #3d68b2;
	padding: 10px 0;
}

/*--------------------------------------------------------------
3.3 Header
--------------------------------------------------------------*/
#logo {
	margin-bottom: 10px;
	margin-top: 10px;
	text-align: center;
}

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

.header-right h2 {
	color: #9a1c1f;
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	font-style: italic;
	font-weight: 600;
	margin-bottom: 0;
	margin-top: 20px;
}

.header-right .btn-primary {
	margin-top: 10px;
}

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

}

/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {
	#logo {
		text-align: left;
	}	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*------------------------------------------------------------
Scroll Header
-------------------------------------------------------------*/
.scroll-header {
	background: #3d68b2;
}

/* Hides Hamburger menu on scroll on phone view */
.scroll-header #site-navigation-scroll {
	background: transparent;
	display: none;
}

/* keeps styling on top button after it's clicked on */
.scroll-header {
	top: 0;
	color: #3d68b2;
	display: none;
	position: fixed;
	right: 0;
	width: 100%;
	z-index: 1;
}

/* Need to uncomment this if you want the header to stick on phone size without admin bar covering it up - should hide hamburger menu on scroll as well*/
/*.admin-bar .scroll-header {
	top: 46px;
}*/


/* sm */
@media (min-width: 768px) {
	.admin-bar .scroll-header {
		top: 32px;
	}
	
	/* need this to display the menu on scroll if hid it on phone view above */
	.scroll-header #site-navigation-scroll {
		display: block;
	}

}

/* md */
@media (min-width: 992px) {
	.admin-bar .scroll-header {
		top: 32px;
	}
}


/*--------------------------------------------------------------
3.4 Navigation
--------------------------------------------------------------*/
/* Primary nav */
.navbar {
	border: none;
	border-radius: 0;
	margin-bottom: 0;
	min-height: 30px;
}

.navbar-default .navbar-nav {
	margin: 0;
	padding-left: 0;
	transition: color .5s;/* for background hover animation */
}

.navbar-default .navbar-nav > li {
	margin: 0;/* use this for animated background hover */
	/*margin: 7px 0; use this for animated underline and to remove vertical scroll on cell phones */
}

.navbar-default .navbar-nav > li > a {
	color: #fff;
	font-family: 'Mali', cursive;
	font-size: 20px;
	padding: 10px 0 5px;
	position: relative;/* for background hover animation */
}

.navbar-default .navbar-nav > li {/* for background hover animation */
	position: relative;
	display: block;
	padding: 10px 15px;
	 -webkit-transition: color .5s;
          transition: color .5s;
}

.navbar-default .navbar-nav > li:before {/* for background hover animation */
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: #ffd700;
	/*z-index: -1;*/
	-webkit-transform:scaleX(0);
      -ms-transform:scaleX(0);
          transform:scaleX(0);
	-webkit-transition: -webkit-transform .5s;
          transition:         transform .5s;
}

.navbar-default .navbar-nav li:hover a {/* for background hover animation if needed */
	color: #3d68b2;
}

.navbar-default .navbar-nav > li:hover:before {/* for background hover animation */
	-webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
/* endbackground hover  animation */

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .open > a, 
.navbar-default .navbar-nav > .open > a:hover, 
.navbar-default .navbar-nav > .open > a:focus {
	/*background-color: #ffd700;*/
	color: #3d68b2;
	font-weight: 400;
	text-decoration: none;
}

.navbar-default .navbar-nav > .active > a {
	background-color: transparent;
	color: #fff;
}

.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
	background-color: transparent;
	color: #3d68b2;
}

.navbar.navbar-nav .sub-arrow, 
.navbar.navbar-nav .collapsible .sub-arrow {
	margin-left: 1px;
}

/* sm */
@media (min-width: 768px) {
	.navbar-default .navbar-nav > li {
		margin: 0;
		padding: 10px 12px 5px;
	}
	
	/* next 2 rules center main navigation */
	.navbar .navbar-nav {
		display: inline-block;
		float: none;
		margin-bottom: -6px;
	}
	
	.navbar .navbar-collapse {
		text-align: center;
	}
}

/* md */
@media (min-width: 992px) {
	.navbar-default .navbar-nav > li {
		padding: 10px 16px 5px;
	}
}

/* use below to change the navbar collapse breakpoint for sites with a lot of items in the navigation
@media (max-width: 992px) {
	.navbar-header {
		float: none;
	}
	
	.navbar-left,
	.navbar-right {
		float: none !important;
	}
	
	.navbar-toggle {
		display: block;
	}
	
	.navbar-collapse {
		border-top: 1px solid transparent;
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
	}
	
	.navbar-fixed-top {
		border-width: 0 0 1px;
		top: 0;
	}
	
	.navbar-collapse.collapse {
		display: none!important;
	}
	
	.navbar-nav {
		float: none!important;
		margin-top: 7.5px;
	}
	
	.navbar-nav > li {
		float: none;
	}
	
	.navbar-nav > li > a {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	
	.collapse.in{
		display: block !important;
		overflow-y: auto !important;
	}
	
	.dropdown-menu {
		box-shadow: none;
		border: none;
		float: none;
		position: relative;
	}
}*/

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

}

/* ------------------------------------------------------------------------------
Animates the underline of the main navigation items 
--------------------------------------------------------------------------------
.navbar-default .navbar-nav > li > a,
.scroll-header .navbar-default .navbar-nav > li > a  {
	position: relative;
	text-decoration: none;
}

.navbar-default .navbar-nav > li > a:hover,
.scroll-header .navbar-default .navbar-nav > li > a:hover {
	color: #3d68b2;
}

.navbar-default .navbar-nav > li > a:before,
.scroll-header .navbar-default .navbar-nav > li > a:before {
	background-color: #3d68b2;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	visibility: hidden;
	width: 100%;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.navbar-default .navbar-nav > li > a:hover:before,
.scroll-header .navbar-default .navbar-nav > li > a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}*/
 
/*-------------------------------------------------------------
		Hamburger Menu 
--------------------------------------------------------------*/
/*edit to length you need to remove vertical scroll on mobile view*/
.navbar-collapse {
	/*max-height: 600px;*/
	max-height: 240px;
	transition: all .9s;
}

/* removes grey top border on mobile devices */
.navbar-default .navbar-collapse, 
.navbar-default .navbar-form {
	border: 0 none;
}

/*styles for hamburger toggle */
.navbar-default .navbar-toggle {
	background-color: transparent;
	border: 0;
	float: right;
	margin-bottom: 8px;
	margin-right: 15px;
	margin-top: 8px;
	padding: 9px 10px;
	position: relative;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: transparent;
	opacity: 0.6;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff;
	border-radius: 1px;
	display: block;
	height: 2px;
	width: 22px;
}

/* ------------------------------------------------------
                          Drop down menu
-------------------------------------------------------- */
.dropdown-menu {
	background-color: rgba(61, 104, 178, 1.0);
	border: 0;
	border-radius: 0;
	box-shadow: 0;
	min-width: 160px;
	padding: 5px 20px;
}

.dropdown-menu > li {
	padding: 5px 3px;
	text-align: left;
}

/* Below 3 rules needed to prevent the weird on-click styling of the pages in the dropdown menu */
.dropdown-menu > li > a,
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
    line-height: 1.25;
    padding: 3px;
    /*white-space: nowrap;*/
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
	background-color: #ffd700;
	color: #3d68b2;
}


.navbar-default .navbar-nav .dropdown-menu li a {
	color: #fff;	
	white-space: nowrap;
}
 
.navbar-default .navbar-nav .dropdown-menu li:hover a {
	color: #3d68b2;	
	white-space: nowrap;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, 
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, 
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
	background-color: #ffd700;
	color: #3d68b2;
	outline: 0;
}

/*This allows you to set the background color for the active sub-menu item when you mouse off it to click on it's sub-menu item*/
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
	background-color: transparent;
	border-color: #3d68b2;
}

.site-header .caret {
	display: none;
}

/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {
	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.5 Content
--------------------------------------------------------------*/
.home .entry-title  {
	/*display: none;*/
}

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

.home .entry-content {
	line-height: 32px;
}

.entry-content {
	padding-bottom: 25px;
}

.entry-content li {
	margin-bottom: 5px;
}

.entry-footer {

}

/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {	
	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.6 Sidebar
--------------------------------------------------------------*/
.widget-area {

}

.widget-title {

}

/*--------------------------------------------------------------
3.7 Footer
--------------------------------------------------------------*/
.attribution {
	bottom: 0;
	margin-top: 0;
	position: relative;
	text-align: center;
	width: 100%;
}

.attribution p,
.attribution a {
	color: #fff;
	font-size: 12px;
}

.attribution p {
	margin-bottom: 0;
}

.footer-col-1,
.footer-col-2,
.footer-col-3 {
	color: #333;
	font-size: 16px;
	line-height: 32px;
	margin-top: 20px;
	text-align: center;
}

.footer-col-1 a,
.footer-col-2 a {
	color: #333;
}

.footer-col-1 a:hover,
.footer-col-2 a:hover,
.footer-col-3 a:hover {
	color: #3d68b2;
}

.footer-col-1 h2,
.footer-col-2 h2 {
	color: #333;
	font-family: 'Raleway', sans-serif;
	font-size: 21px;
	font-weight: 600;
}

.fa-facebook-square {
	color: #3d68b2;
	font-size: 20px;
	marrgin-left: 30px;
}

.fa-phone,
.fa-fax,
.fa-envelope {
	margin-right: 8px;
}

#footer-navigation {
	display: none;
}

/* sm */
@media (min-width: 768px) {
	.footer-col-1,
	.footer-col-2 {
		text-align: left;
	}

	.footer-col-3 {
		text-align: right;
	}
}

/* md */
@media (min-width: 992px) {
	
	/* Sticky footer - @link http: //mystrd.at/modern-clean-css-sticky-footer/ */
	html {
		min-height: 100%;
		position: relative;
	}
	
	body {
		margin: 0 0 370px; /* = .site-footer height */
	}
	
	.site-footer {
		bottom: 0;
		height: 370px; /* = body margin-bottom */
		left: 0;
		position: absolute; /* replace with position: fixed; to keep footer fixed to bottom of browser - see footer file too! */
		width: 100%;
	}
	
	.attribution {
		position: absolute;
	}
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.8 Metaslider & Leaderboard
--------------------------------------------------------------*/
.leaderboard-image {
	box-shadow: 0 5px 8px #d6d4d4;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.leaderboard-image img {
	margin-bottom: 0;
	width: 100%;
}

.metaslider {
	box-shadow: 0 5px 8px #d6d4d4;
	margin-bottom: 30px;
}
/* Hides Nivo Slider caption on cell phones */
.metaslider .theme-default .nivoSlider > .nivo-caption {
	background-color: rgba(255, 255, 255, 0.4);
	bottom: 20px;
	/*display: none !important;*/
	left: 0;
	opacity: 1.0;
	padding: 5px 10px;
	position: absolute;
	text-align: center;
	width: 100%;
}

.metaslider .theme-default .nivoSlider > .nivo-caption h2 {
	color: #000;
	font-size: 60px;
	font-weight: 700;
}

.metaslider .theme-default .nivoSlider > .nivo-caption h3 {
	color: #000;
	font-size: 36px;
	font-weight: 700;
}

.metaslider .theme-default .nivoSlider > .nivo-caption div {
	display: inline-block;
	margin: 20px 0;
}

.metaslider .theme-default .nivoSlider > .nivo-caption a.btn-primary,
.metaslider .theme-default .nivoSlider > .nivo-caption a.btn-primary:visited {
	background: #3d68b2;
	border: 3px solid #3d68b2;
	border-radius: 0;
	color: #fff;
	display: inline-block;
	font-family: 'Mali', cursive;
	padding: 8px 35px;
	transition: all .5s;
}

.metaslider .theme-default .nivoSlider > .nivo-caption a.btn-primary:hover,
.metaslider .theme-default .nivoSlider > .nivo-caption a.btn-primary:focus {
	background: #ffd700;
	border: 3px solid #ffd700;
	color: #000;
	text-decoration: none;
}

/* sm */
@media (min-width: 768px) {
	.leaderboard-image {

	}
	
	.metaslider {

	}
	
	/* Display Nivo Slider caption on sm/md/lg devices */
	.metaslider .theme-default .nivoSlider > .nivo-caption {
		display: block !important;
	}
}

/* md */
@media (min-width: 992px) {
	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.8 Custom
--------------------------------------------------------------*/
.edit-link {
	display: none;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-60 {
	margin-top: 60px;
}


iframe {
	border: 0;
}

/*responsive iframe next 2 rules */
.iframe-container {
    margin-bottom: 20px;
	position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Back to top button - next 3 rules*/
.svg-inline--fa.fa-w-10 {
	width: 100%;
}

/* keeps styling on top button after it's clicked on */
.topbutton,
.topbutton:visited,
.topbutton:active, 
.topbutton:focus {
    background: #9a1c1f;
	border: 1px solid #9a1c1f;
	border-radius: 50%;
    bottom: 90px;
	color: #fff;
    display: none;
	font-size: 33px;
	height: 40px;
    position: fixed;
    right: 5px;
	transition: all .9s;
    width: 40px;
    z-index: 1;
}

.topbutton:hover {
    background: #fff;
	border: 1px solid #fff;
	color: #9a1c1f;
}

.fa-angle-up {
	padding: 0 8px;
}

.img-cont {
	overflow: hidden;
}

/* list items with bullets different color from list item */
ul.color-bull {
	color: #000;
	padding-left: 0;
}

ul.color-bull li {
	list-style-type: none;
	margin-bottom: 8px;
}
	
ul.color-bull li:before {
	content: '';
    background-color: #9a1c1f;
    display: inline-block;
    position: relative;
    height: 10px;
    width: 10px;
    border-radius: 8px;
    background-clip: padding-box;
    margin-right: 10px;
    top: 0;
}
 
/*this adds plus or minus sign to the left of collapsibles 
.panel-title a.collapsed::before {
    content: "+";
}

.panel-title a::before {
    content: "-";
    display: inline-block;
    padding-right: 10px;
    text-decoration: none;
    width: 25px;
}*/

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

}

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

}

/* lg */
@media (min-width: 1200px) {
	
}

/*-------------------------------------------------------
weForms CSS
--------------------------------------------------------*/
#form-preview-stage.wpuf-style ul.wpuf-form .wpuf-submit input[type="submit"],
.wpuf-form-add.wpuf-style ul.wpuf-form li.wpuf-submit input[type="submit"] {
	font-size: 16px;
	padding: 5px 15px;
	line-height: inherit;
	height: inherit;
	border: 1px solid #3d68b2;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #3d68b2;
	border-color: #3d68b2 #3d68b2 #3d68b2;
	-webkit-box-shadow: 0 1px 0 #3d68b2;
	box-shadow: 0 1px 0 #3d68b2;
	color: #fff;
	text-decoration: none;
	text-shadow: 0 -1px 1px #3d68b2, 1px 0 1px #3d68b2, 0 1px 1px #3d68b2, -1px 0 1px #3d68b2;
}

#form-preview-stage.wpuf-style ul.wpuf-form .wpuf-submit input[type="submit"]:hover,
.wpuf-form-add.wpuf-style ul.wpuf-form li.wpuf-submit input[type="submit"]:hover {
	border: 1px solid #ffd700;
	background: #ffd700;
	border-color: #ffd700 #ffd700 #ffd700;
	box-shadow: 0 1px 0 #cacaca;
	color: #000;
	text-decoration: none;
	text-shadow: 0 -1px 1px #cacaca, 1px 0 1px #cacaca, 0 1px 1px #cacaca, -1px 0 1px #cacaca;
}

.wpuf-label label {
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 0;
}

ul.wpuf-form.form-label-above li {
	margin-bottom: 0;
	padding: 0;
}

ul.wpuf-form.form-label-above li.wpuf-el.email,
ul.wpuf-form.form-label-above li.wpuf-el.date___time_692654483 {
	margin-bottom: 10px;
	padding: 0;
}

ul.wpuf-form.form-label-above li .wpuf-label {
	margin-top: 20px;
}

.wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-fields input[type="text"] {
	height: 30px;
}

.wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-fields textarea {
	max-height: 80px;
}

.wpuf-form-add.wpuf-style ul.wpuf-form li .wpuf-fields .wpuf-radio-block, 
.wpuf-form-add.wpuf-style ul.wpuf-form li .wpuf-fields .wpuf-checkbox-block {
	font-weight: 500;
}

ul.wpuf-form li.wpuf-el label.wpuf-form-sub-label {
	display: block;
}

/*--------------------------------------------------------------
TablePress
---------------------------------------------------------------
.entry-content .tablepress {
	border: 1px solid #ddd;
	margin-bottom: 50px;
}

.entry-content .tablepress thead th {
	background-color: #341534;
	color: #fff;
	font-weight: 300;
}

.entry-content .tablepress tbody td, 
.entry-content .tablepress tfoot th {
	border-top: 0px solid #ddd;
	font-size: 14px;
}

.entry-content .tablepress tbody td + td {
	border-left: 1px solid #ddd;
}

.entry-content .tablepress caption {
	display: none;
}*/

/*--------------------------------------------------------------
4.4 lg
--------------------------------------------------------------*/
@media (min-width: 1200px) {
/* this makes the home sections link to services page without going underneath the fixed header on desktop only */
	.page-id-26 .entry-content h2:before {	
		content: "";
		display: block;	
		height: 184px; 
		margin-top: -184px;
		visibility: hidden; 
	}
}



/*--------------------------------------------------------------
Animations
--------------------------------------------------------------*/
@keyframes zoomIn-logo {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn-logo {
	animation-duration: 2s;
	animation-name: zoomIn-logo;
}