/** 
 * main.css
 * 
 * 1. General HTML tags
 * 2. Masthead area
 * 3. Main content and sidebar
 * 4. Footer
 * 5. Media queries for responsive layout
 * 6. Accessibility helpers
 * 
 */

/*********************************************************************
 * 1. General HTML tags
 *
 */

* {
	box-sizing: border-box; 
}

body {
	padding-top: 1%;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
	max-width: 1600px; 
	margin: 0 auto; 
}

/*
body, td, input[type=text], textarea {
	font-family: 'Quattrocento', serif;
	font-size: 105%; 
	line-height: 1.8em;
	color: #444; 
}
*/

img {
	max-width: 100%; 
}

h2 {
	font-weight: normal;
}

h3 {
	border-top: 1px solid #eee; 
	padding-top: 1em;
	color: #777; 
}

a {
	color: #333;
	text-decoration: none;
/* 	border-bottom: 1px solid #ccc;  */
}
	a:hover,
	.nav a:hover {
		color: #000;
		border-color: #aaa; 
	}

blockquote {
	margin-left: 0;
	padding-left: 1.5em;
	padding-right: 2em; 
	border-left: 4px solid #ddd; 
	font-style: italic; 
	color: #777; 
}

pre, code {
	background: #eee; 
	border: 1px solid #ddd; 
}

pre {
	font-size: 14px; 
	line-height: 1.4em;
	padding: 1em;
	border-left: 4px solid #ddd; 
}


.breadcrumbs {
	font-size: 80%; 
	width: 70%; 
	float: left;
	clear: both; 
	padding-top: 1em; 
}

.breadcrumbs span:after {
	content: ">";
	color: #999; 
	padding-left: 0.5em;
	padding-right: 0.25em; 
}

.b-header_name {
	text-align: left;
	font-size: 35px;
	line-height: 1; 

}
.b-header_name a {
	text-decoration: none;
}
.b-header_phone {
	text-align: right;
	font-size: 18px;
}

.b-header_email {
	text-align: right;
	font-size:14px;
}
@media only screen and (max-width: 576px) {
       .b-header_phone {
			text-align: center;
		}
		
		.b-header_email {
			text-align: center;
		}
		.b-header_name {
			text-align: center;
			font-size: 35px;
			line-height: 1;
		}
		
}

.b-header_logo {
	text-align: right;
}

.btn-main-menu{
	font-size: 0.8rem;
}

.btn-econtrol {
    color: #fff;
    background-color: #008dd2;
    border-color: #008dd2;
}

.border-econtrol {
    border-color: #008dd2!important;
}

.b-topline-econtrol {
	margin-top: 15px;
	border-top: 2px solid #008dd2;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #008dd2;
}