/*-------- 1.1 Typography --------*/
body {
	background: #eee;
	color: #333;
	font-size:14px; 
	line-height:1.5; 
	font-family:'Poppins', Arial, sans-serif; 
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
}
.t3-wrapper {
	background: transparent;
}
.t3-mainbody {	
	padding-top: 0;
	padding-bottom: 30px;
}
h1, h2, h3, h4, h5, h6 {
	-webkit-font-smoothing:antialiased; 
	color:#333;
}
h3 {
	font-size:22px;
}
label {
	font-weight: 500;
}
/*General links color*/
a {
	color: rgba(219, 1, 28, 1);
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease; 
	outline:none;
}
a:hover,a:focus {
	color: #111;
	text-decoration: none; 
	outline:none;
}
p {
	margin: 0 0 25px 0;
}
ol, ul {
	padding: 0;
	list-style-position: inside;
    margin-bottom: 25px;
}
strong {
	font-weight: 600;
}
.main_title {
	background-color:rgba(0, 37, 74, 0.8); 
	display:inline-block; 
	padding:15px 15px 0 15px;
	position:absolute;
	margin-left:15px;
	left:0;
	bottom:0;
	z-index:9;
}
hr {
  margin-top: 20px;
  margin-bottom: 25px;
  border: 0;
  border-top: 1px dotted #ddd;
}

/*Spacing*/
.nopadding {
	margin: 0 !important;
	padding: 0 !important;
}
.nomargin {
	margin:0 !important
}

/* BUTTONS */
.input-default {
	margin: 10px 0;
	padding: 0 10px;
	border: 1px solid #ccc;
}
.btn-red,
.btn-default {
	cursor: pointer;
	padding: 7px 30px;
	display: inline-block;
	font-size: 14px;
	text-align: center;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: 600;
	white-space: nowrap;
	margin: 10px 0;
	border: 0;
	white-space: normal;
}
.btn-red  {
	color: #fff;
	background: #db011c;
	margin: 0;
}
.btn-default {
	color: #fff;
	background-color: #222;
}
.btn-red:hover,
.btn-default:hover {
	color: #222;
	background: #ddd;
}