/*!
=====================================================================================
v. CUSTOM

 * Lampkin Custom Style Sheet
 * Copyright 2010-2020 Mike Lampkin - developer
 * Licensed under MIT

 Copyright (c) Copyright 2010-2020 Mike Lampkin - developer

Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify,
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

@charset "utf-8";

/*
First, declare your variables as property/value pairs on a selector such as the :root pseudo-class.
*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:ital,wght@0,300;0,700;1,300;1,700&display=swap');


:root {
	--fontsize: 	14px;
	--fontsize2: 	15px;

	--main_clr: 	#b32017;
}


	body
	{
		/*font-family:"Trebuchet MS",Helvetica,sans-serif;*/
		font-family:"Open Sans",Helvetica,sans-serif;
		font-size:	var(--fontsize);
	}

	.alert-banner
	{
		background-color: #f5ca0b;
		height:		48px;
		margin-bottom:10px;
	}

	.alert-banner p
	{
		text-align:	center;
		vertical-align:middle;
		font-size:	18px;
		height:		100%;
		margin: 	auto;
		padding:	8px;
		/*border:1px solid red;*/
	}

	.container-master
	{
		width:		1142px;
		padding:	160px 0 0 0 ;
		margin:		0 auto;
	}

	.container-freeze
	{
		background-color:	#fff;
		height:		140px;
	}

	.container-freeze.active
	{
		box-shadow: 0px 3px 3px #ccc;
	    transition-timing-function: ease-in;
	}

	.logo-menu
	{
		width:		1142px;
		height:		72px;
		margin:		10px auto 0px auto;
		/*border:1px solid red;*/
	}

/*   787px:233px  |   243px:72px; */
	.logo
	{
		display:	inline-block;
		height:		72px;
		width:		243px;
		/*border:1px solid blue;*/
	}

	.logo img
	{
		height:		100%;
	}

	.menu
	{
		font-family: 'Open Sans Condensed', sans-serif;
		font-size:	18px;
		font-weight:300;
		display:	inline-block;
		width:		75%;
		/* float:		right; */
		text-align:	right;
		padding:	18px 0;
		/*border:1px solid green;*/
	}

	.menu a
	{
		color:		#000;
		font-weight: 700;
	}

	.menu a:hover
	{
		color: 		var(--main_clr);
	}

	.menu a.active
	{
		color: 		var(--main_clr);
	}

	h1, h2, h3, h4, h5
	{
		font-weight: 	700;
		font-family:	"Open Sans",Helvetica,sans-serif;
		padding-bottom:	10px;
	}

	h1, .h1
	{
		font-size:		38px;
	}
	h2, .h2
	{
		font-size:		36px;
	}
	h3, .h3
	{
		font-size:		32px;
	}
	h4, .h4
	{
		font-size:		28px;
	}

	.bar-green
	{
		border-bottom:	5px solid #c0cc21;
		margin-bottom:	18px;
	}

	.bar-orange
	{
		border-bottom:	5px solid #e6833b;
		margin-bottom:	18px;
	}

	.bkg-green
	{
		background-color:#c0cc21;
	}

	.box-story
	{
		display:		block;
		padding:		18px;
		width:			100%;
		min-height:		300px;
		margin-bottom:	40px;
	}

	.box-half
	{
		display:		inline-block;
		width:			49%;
		margin:			auto;
		padding:		0;
		vertical-align: top;
	    overflow: 		hidden;
	}
		.box-half img
		{
			width:		100%;
			height:		350px;
		}
		.box-half:last-child
		{
			float:		right;
			padding:	10px;
		}


	.title
	{
		font-size:		30px;
		font-weight: 	700;
		text-align: 	center;
		margin-bottom:	12px;
	}
	.quote
	{
		font-size:		18px;
		border-left:	6px solid white;
		padding-left:	24px;
	}









/***************/
/* SAMPLE PAGE */
/***************/

	.project-box
	{
		display:	inline-block;
		font-size:	18px;
		width:		100%;
		padding:	20px;
		margin: 	10px auto;
	}

	.project-box p
	{
		font-size:	18px;
	}

	.fleft
	{
		float:		left;
	}

	.fright
	{
		float:		right;
	}

	.project-img
	{
		display:	inline-block;
		width:		450px;
		padding:	2px;
	}

		.project-img.fleft
		{
			margin: 	0 14px 14px 0px;
		}

		.project-img.fright
			{
				margin: 	0 0px 14px 14px;
			}

	.project-img img
	{
		width:		100%;
		border:		2px solid #000;
	}

	.badge
	{
		font-size:	14px;
	}

	.readmore
	{
		display:		inline-block;
		text-align:		right;
		font-family: 	'Open Sans Condensed', sans-serif;
		font-weight: 	700;
		font-size:		17px;
		color: 			var(--main_clr);
		/*border:			1px solid red;*/

	}

	.bar-red
	{
		border-bottom:	5px solid var(--main_clr);
		margin-bottom:	18px;
	}