/*========================================================================================*/
/*  RESET
/*========================================================================================*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: arial;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 0;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ------------------------------------------------------------------------ */
/* General Styles
/* ------------------------------------------------------------------------ */

body {
    background: #ffffff;
    font-family: 'arial', arial;
    font-size: 13px;
    color: #5b5147;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
	/* background: url(../images/review.jpg) 50% 0;*/
	 background-repeat:no-repeat;
	 
}

::selection {
   /* background: #D00355;
    color: #ffffff;*/
}

::-moz-selection {
    background: #D00355;
    color: #ffffff;
}

img.scale-with-grid {
    max-width: 100%;
    height: auto;
}

p,ul,ol{
	margin:0;
	padding:0;
	list-style: none;
	font-size: 15px;
	
}
p{text-align:justify;}

[class^="icon-"], [class*=" icon-"] {
   width: auto;
}

header,section{
	line-height: 1.6;
}
/* ------------------------------------------------------------------------ */
/*  Typography
/* ------------------------------------------------------------------------ */


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #474747;
    font-style: bold;
    margin: 0 0 10px 0;
    padding: 0;
    text-rendering: optimizelegibility;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a { font-weight: inherit }

h1 {
    font-size: 28px;
    line-height: 42px;
}

h2 {
    font-size: 22px;
    line-height: 33px;
}

h3 {
    font-size: 18px;
    line-height: 27px;
    font-weight:normal;
}

h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight:normal;
	text-align: justify;
}

h5 {
    font-size: 14px;
    line-height: 21px;
    font-weight:normal;
}

h6 {
    font-size: 12px;
    line-height: 18px;
    font-weight:normal;
}

.highlight { 
	color: #D00355;
}


    p img { margin: 0 }

em { font-style: italic }

strong { font-weight: bold }

small { font-size: 80% }

hr {
    border: 1px solid #efefef;
    border-width: 1px 0 0;
    clear: both;
    margin: 20px auto 30px;
    height: 0;
    max-width: 200px;
}

pre {
    height: auto;
    border: 1px solid #efefef;
    background: #f6f6f6;
    padding: 10px 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin: 0 0 20px 0;
    overflow-x:auto;
}

.hidden {  display: none !important }

/* Links ---------------------------------------------------- */

a {
    color: #666;
    text-decoration: none;
    outline: 0;
    font-weight:400;
}

/* Transisiton for Links */
a, a:hover{
    text-decoration:none;
	-webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
a:hover{
	color: #D00355;
}

.button{
	color: #FFF;
	padding: 5px 23px;
	background:#CC0404;
	border: none;
	font-family: 'bebas_neueregular';
	font-size: 17px;
	letter-spacing:3px;
	display:inline-block;
	border-radius: 2px;
	cursor:pointer;
}

.button:hover{
	background: #990100;
    color: #FFFFFF;
	}
/* ------------------------------------------------------------------------ */
/* 02. FORMS
/* ------------------------------------------------------------------------ */

textarea, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"],
input[type="search"], 
input[type="tel"]
{
    box-shadow:none;
    border:1px solid rba(0,0,0,0.6);
    background:rba(0,0,0,0.4);
    padding:9px 13px;
    border-radius:0;
    width:100%;
    height:100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
	    border: 1px solid rgb(222, 222, 222);
}

.formrow{
	clear: both;
	margin: 20px 0;
	position:relative;
}

form label{
	color: #666;
	font-family: 'BebasNeueRegular', sans-serif;
}

.formfield{
	background: rgb(255, 255, 255);
	border: 1px solid #EEE;
	padding: 8px 16px;
}

.formfield.error{
	border-color: #ce432d;
	padding: 8px 16px 8px 28px;
}

.error-icon{
	position: absolute;
	top: 24px;
	left: 5px;
	color: #ce432d;
	font-size: 16px;
}

body.fix{
	z-index: 1;
	top: 0;
	left: 0;
	
}
/*========================================================================================*/
/*  HEADER
/*========================================================================================*/
header{
position: fixed;
top: 0;
left: 0px;
height: 100%;
display: block;
background:rgba(255, 255, 255, 0.62);	
}

header,#menu{
	width: 180px;
	z-index: 999;
}

header
body.fix header,
body.fix #menu{
z-index: 99;
display: block;	
}

#logoarea,nav{
	position: absolute;
}

#logoarea{
	top: 0;
	left: 0;
	padding:94px 4px 10px;
}
#logo{
	margin: 0 auto;
}
#logo img{
    width: 165px;
    height: 45px;
	}
#menu{
	position: fixed;
	top: 160px;
	left: 0;
	padding: 12px 0;
	background: rgb(255, 13, 13);
	font-size: 14px;
	font-weight: 400;
	color: #FFF;
	text-align:right;
	font-family: 'bebas_neueregular';
	font-size: 16px;
}

#menu span{
	padding-right: 20px;
}

#menu.active{
	left: 0 !important;
}
nav{
	top: 154px;
	margin-top: 55px;
	left: 0px;
	text-align:right;
	width: 100%;
}

nav ul li{
	background: rgba(255,255,255,0.5);
}
nav ul li:nth-child(even){
	background: rgba(255,255,255,0.7);
}
nav ul li.active{
	background: rgba(255,255,255,0.95);
}

nav ul li.active a{
	color: #d00355;	
}
nav ul li:hover{
	background:rgba(255,255,255,0.9);
}


nav ul li a{
		font-family: 'bebas_neueregular';
		font-size: 16px;
		padding:6px 20px;
		display:block;
		color: #474747;
}

#footer{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px 0;
	color: #FFF;
	text-align:center;
}
#footer ul.socialicons{
	padding: 0 20px;
}
#footer ul.socialicons li{
	float: left;
	margin: 0 3px;
}
#footer ul.socialicons a{
	font-size: 24px;
	color: #FFF;
}
#footer ul.socialicons a:hover{
	color: #D00355;
}

#footer .copyright{
	clear: both;
}

#footer p{
	border-bottom: 1px solid #FFF;
	padding-bottom: 10px;
	margin-bottom: 10px;
	padding: 0 20px 10px;
}


/*  RESTTING THE HEADER */

header,nav,#logoarea,#footer{
	/*left: -180px;*/
}


/*========================================================================================*/
/*  General Classes
/*========================================================================================*/
.fix{
	position: fixed;
	z-index:2;
}

/*===Column Shortcode =====*/
.one_half { width: 50%;float: left;/* min-width: 240px; */
}
.one_third { width: 33.3%; float: left; /*min-width: 160px;*/
}
.one_fourth { width: 25%;float: left; /*min-width: 120px;*/
}
.one_fifth { width: 20%;float: left;/*min-width: 96px;*/
}

.two_third { width: 66.6%; float: left;}
.three_fourth { width: 75%;float: left;}
.two_fifth{width: 40%;float: left;}
.three_fifth{width: 60%;float: left;}
.four_fifth{width: 80%;float: left;}

.column_content{
    padding-left:0px;
}
.column_content img{
	max-width: 100%;
}
.column_content.first{
    padding-left:0;
}

.gmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.gmap iframe,   
.gmap object,  
.gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pullright{
	float: right;
}
.alignleft{
	float: left;
	padding: 0 20px 20px 0;
}

.spin {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
}




/*========================================================================================*/
/*  SECTION
/*========================================================================================*/

section{
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 1;
	/*background-size: cover;*/
}

section .container{
	margin: auto;
	/*float:right;*/
}

.content{
	background: rgba(255,255,255, 0.9);
	color: #585858;
	
}

.content .main{
	/*padding: 30px;*/
	    padding: 30px 40px;
}
.content1 .main {
    /* padding: 30px; */
    padding: 30px 40px;
}
.content h1,
.content h2,
.content h3{
color: #474747;
}

.center{
	/*width: 60%;*/
	/*margin: 20% 10%;*/
		margin: 20% 0% 0%;
	    min-height: 376px;
}

.signup-section {
    width: 100%;
    margin:30px auto;
	padding-bottom: 0px;
}

.righttop{
	width: 60%;
	margin: 10% 10% 10% 30%;
}
.contentfooter{
	clear: both;
	display: block;
	background: #EEE;
	font-size:18px;
        margin-bottom:20px;
}
.contentfooter a{
	text-align:center;
	padding: 10px 20px;
	display:block;
	font-family: 'bebas_neueregular';
	cursor:pointer;	
}

.contentfooter label{
	font-family: 'bebas_neueregular';
	background: rgb(69, 106, 153);
	min-width:100px;
    padding: 10px 20px;
    float: left;
	color:#fff;
    text-align:center;
}

.gmap,.gmap iframe{
	width: 100%;
}
/*========================================================================================*/
/*  Right Frame
/*========================================================================================*/

.rightframe{
	width: 40%;
	right: -40%;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: #EEE;
}
.rightframe.full{
	max-width: 75%;
}

.rightframe .date{
	color: #D00355;
}

.rightcontent{
	overflow-y: scroll;
}

.rightcontent{
	padding: 30px;
	text-align:left;
}
.rightframe  img{
	max-width: 100%;
}
.rightframe .framecontrols{
	display:none;
	position: fixed;
	right: 40%;
	top: 40%;
	background: rgba(208,3,85,0.9);
	color: #FFF;
	font-size: 18px;
	width: 36px;
	text-align: center;
}

.rightframe.full .framecontrols{
	right: 75%;
}

.rightframe{
	right: -40%;
}

.rightframe.full{
	right: -75%;
	width: 75%;
}
.rightframe .framecontrols a{
	color: #FFF;
	cursor: pointer;
        display:block;
}
.rightframe.active .framecontrols{
	display:block;
}

.rightcontent article{
	margin: 0 0 30px 0;
}


/*========================================================================================*/
/*  SECTION HOME
/*========================================================================================*/
#home{
	text-align:center;
	position: relative;
	display: inline-block;
}

#mainlogo{
	/*max-width: 300px;*/
	margin: 0px auto 5px;
	opacity: 0.95;
}
h1.punchline{
	font-size: 36px;
}

section#home{
	/*background: url(../images/home123.jpg) 50% 0;*/
    top: 45px;
	/*min-height:500px;*/
	/*left: 25%;*/
  }

#home .content{
	background:#FFF;
}
#home .content1{
	background: #FFF;
    opacity: 0.85;
}
#home .content h1,
#home .content h2,
#home .content h3{
color: #474747;
}
#home .content1 h1,
#home .content1 h2,
#home .content1 h3{
color: #474747;
}

#home.fix{
	position: fixed;
	top: 0;
	overflow: hidden;
	z-index:4;
}

/*========================================================================================*/
/*  SECTION About Us
/*========================================================================================*/

#about{
	position: relative;
    
	background: url(../images/about.jpg) 50% 0;
	display: inline-block;
}

#about .content h1,
#about .content h2,
#about .content h3{
color: #474747;
}

#about p{
	color: #666;
}

#about.fix{
	position: fixed;
	top: 0;z-index:9;
}


/*========================================================================================*/
/*  SECTION Services
/*========================================================================================*/

#products{
	position: relative;
	background: url(../images/prd-img.jpg) 50% 0;
	display: inline-block;
}

#products .content h1,
#products .content h2,
#products .content h3{
color: #474747;
}

#products .column_content{
	text-align: center;
}
#products .column_content h3{
	line-height: 1 em;
}
#products .column_content i{
	text-align: center;
	font-size: 48px;
	color: #444;
}

#products p{
	color: #666;
}

#products .one_fourth{
	margin-bottom: 20px;
}
#products.fix{
	position: fixed;
	top: 0;z-index:9;
}


/*========================================================================================*/
/*  SECTION Insurance
/*========================================================================================*/

#insurance{
	position: relative;
    
	background: url(../images/insurance-img.jpg) 50% 0;
	display: inline-block;
}

#insurance .content h1,
#insurance .content h2,
#insurance .content h3{
color: #474747;
}


#insurance p{
	color: #666;
}

#insurance.fix{
	position: fixed;
	top: 0;z-index:9;
}

.carousel.flexslider{
	background: transparent;
	border: none;
	margin: 0;
	box-shadow: none;
}
.carousel.flexslider .flex-direction-nav a{
	background: none;
	text-indent: 0;
	color: #FFF;
	font-size: 21px;
	background: #d00355;
	border-radius:24px
}

.carousel.flexslider .flex-control-nav{
	bottom: -30px;
}

.carousel.flexslider .flex-control-nav li{
	margin: 0 2px;
}
.carousel.flexslider .flex-control-paging li a{
	width: 8px;
	height: 8px;
} 
.carousel.flexslider .flex-control-paging li a:hover,
.carousel.flexslider .flex-control-paging li a.flex-active{
	background: #D00355;
}

#insurance .rightcontent{
	text-align:center;
}

#insurance img:hover{
	
}
#filters{
	margin: 10px auto;
	display: inline-block;
	border-bottom: 1px dotted #bbb;
}
#filters li{
	float: left;
	padding: 2px;
}
#filters li a{
	padding: 2px 5px;
}

#filters li a:hover,
#filters li a.active{
	color: #D00355;
}
#filtercontainer{
	clear: both;
	display:block;
}
#filtercontainer li{
	float: left;
}

#filtercontainer li img{
	max-width: 216px;
	display:block;
}
/**** Isotope filtering ****/

.isotope-item {
  z-index: 99;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 98;
}

.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

#filtercontainer li a,
#filtercontainer li a img {
	display: block;
	position: relative;
}
#filtercontainer li a {
	overflow: hidden;
}

#filtercontainer li a div {
	position: absolute;
	background: #333;
	background: rgba(75,75,75,0.7);
	width: 100%;
	height: 100%;
}
#filtercontainer li a div span {
	display: block;
	padding: 10px 0;
	margin: 40px 20px 0px 20px;
	text-transform: uppercase;
	font-weight: normal;
	color: rgba(255,255,255,0.9);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 -10px 0 rgba(255,255,255,0.3);
}

#filtercontainer li a div i{
	font-size: 24px;
	color: rgba(255,255,255,0.9);
}



/*========================================================================================*/
/*  SECTION featuredagent
/*========================================================================================*/

#featuredagent{
	position: relative;
    
	background: url(../images/featuredagent.jpg) 50% 0;
	display: inline-block;
}

#contact .content h1,
#contact .content h2,
#contact .content h3{
color: #474747;
}

#contact .content .featuredagenttable .popular h2,
#contact .content .featuredagenttable .popular h3{
	color: #FFF;
}
#featuredagent .featuredagenttable{
text-align:center;
font-weight:400;
display:inline-block;
width: 100%;
}

.featuredagenttable ul {
line-height: auto;
list-style: none;
padding-left: 0;
}

.featuredagenttable .column_content{
border:1px solid #EFEFEF;
background:rgba(255,255,255,0.7);
border-right:none;
padding:40px 0 ;
}

.featuredagenttable .one_third:last-child  .column_content{
border-right:1px solid #D00355;
}
.featuredagenttable .column_content h2{
font-size:13px;
}
.featuredagenttable .column_content h2 strong{
font-size:48px;
}
.featuredagenttable .column_content h3{
padding-bottom: 20px;
border-bottom: 1px solid #EFEFEF;
}
.featuredagenttable .column_content.popular h2,
.featuredagenttable .column_content.popular h3{
color: #FFF;
}
.featuredagenttable .column_content li{
padding: 6px;font-weight:400;
border-bottom: 1px solid #EFEFEF;
}

.featuredagenttable .column_content li:nth-child(even) {
	background: rgba(255,255,255,0.8);
}

.featuredagenttable .popular{
color: #FFF;
background: rgba(208,3,85,0.7);
border: 1px solid rgba(208,3,85,0.9);
}
.featuredagenttable .popular .button{
	background: #222;
}
.featuredagenttable .popular h3,
.featuredagenttable .popular li{
border-bottom-color: rgba(208,3,85,0.8);
}
.featuredagenttable .popular li:nth-child(even) {
	background: rgba(208,3,85,0.8);
}

.featuredagenttable .button{
	margin: 20px 0 0;
}
#featuredagent.fix{
	position: fixed;
	top: 0;z-index:9;
}


/*========================================================================================*/
/*  SECTION Services
/*========================================================================================*/

#contact{
	position: relative;
	background:#333;
	/*display: inline-block;*/
	    top: 45px;
}

#contact .content h1,
#contact .content h2,
#contact .content h3{
color: #474747;
}

#contact .column_content{
	text-align: center;
}
#contact .column_content h3{
	line-height: 1 em;
}
#contact .column_content i{
	text-align: center;
	font-size: 48px;
	color: #444;
}

#contact p{
	color: #666;
}
#contact .contentfooter a{
	background: #222;
	color: #FFF;
}
#contact .one_fourth{
	margin-bottom: 20px;
}
#contact.fix{
	position: fixed;
	top: 0;z-index:9;
}

/*========================================================================================*/
/*  RESPONSIVE FIXES
/*========================================================================================*/

@media (max-width: 767px){

header{
	background: rgba(255,255,255,0.9);
}
#footer{
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px 0;
	color: #FFF;
	text-align:center;
}
#footer ul.socialicons{
	padding: 0 20px;
}
#footer ul.socialicons li{
	float: left;
	margin: 0 3px;
}
#footer ul.socialicons a{
	font-size: 24px;
	color: #FFF;
}
#footer ul.socialicons a:hover{
	color: #D00355;
}

#footer .copyright{
	clear: both;
}

#footer p{
	border-bottom: 1px solid #FFF;
	padding-bottom: 10px;
	margin-bottom: 10px;
	padding: 0 20px 10px;
}
#footer,
#footer ul.socialicons a{
		color: #444;
}
section .container{
	/*margin: 49px 20px 0;*/
	/*margin: 0px 20px 0;*/
}

.center{
	width: 100%;
margin: 10% 0%;
}
.content .main {
    padding: 30px;
}
#menu{
	top: 0;
}

#logo{
	position: absolute;
	top: 5px;
        left:10px;
	z-index: 9999;
}

#logo img{
	height: 40px;
        width:auto;
	}
	
nav{
	top: 0;
}

h1,h2,h3,h4,h5,h6{
line-height:1.2;
-ms-word-break: break-all; 
  word-break: break-all; 
  word-break: break-word; /* old webkit */ 
}	
section#home{
	/*background: url(../images/home123.jpg) 50% 0;*/
    top: 45px;
	/*min-height:500px;*/
	left: 0%;
  }

}

/*========================================================================================*/
/*  CSS3 Animation
/*========================================================================================*/

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.social ul {
	padding: 20px;
	list-style: none;
}
@media (max-width: 767px) {
	.social ul {
		display: flex;
		gap: 1rem;
		justify-content: center;
	}
}
.social li {
	display: inline-block;
	padding-right: .3em;
	padding-bottom: .3em;
}
.social li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #CC0404;
	border-radius: 50%;
	background: #fff;
	/*border: solid 1px #CC0404;*/
	-webkit-transition: all .8s ease;
	transition: all .8s ease;
	text-align: center;
}
.social li a:hover {
	color: #fff;
	background: #990100;
}
.text-center {
    text-align: center;
}
img.bg {
    min-height: 100%;
    min-width: 1024px;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
}
.content-center{margin:auto;}