﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    scroll-behavior: smooth;
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

    h1, h2, h3, h4, h5, h6 {
        margin: 0;
        padding: 0;
        padding-bottom:10px;
        line-height:1em;
        font-weight:500;
	}
    h1 {
        font-size:30px;
    }
    h2 {
        font-size:26px;
    }
    h3 {
        font-size:22px;
    }
    h4 {
        font-size:18px;
    }
    h5 {
        font-size:16px;
    }
    h6 {
        font-size:14px;
    }

p {
    font-size:14px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

.btn-1 {
    color: #ffffff !important;
    border:2px solid #ffffff;
    letter-spacing: 0px;
    font-size: 16px;
    background-color: #0982c4; 
    border-radius: 3px;
    padding:10px 15px;
    display: inline-block;
    transition: .3s ease-in;
    text-align: center;
    margin:15px 0;
}
.btn-1 i {
    opacity: 0;
    transition: .3s ease-in;
    margin-left:-13px;
}
.btn-1:hover i {
    margin-left:3px;
    opacity: 1;
}


/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    position:fixed;
    z-index: 1;
	}
.top-header {
    background-color: rgba(0,0,0,0.49);
}
.top-header ul {
    max-width: 1080px;
    padding: 8px 10px;
    margin:0 auto;
    width:100%;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
}
.top-header ul li {
    padding:10px;
    margin:0;
    font-size: 15px;
    list-style: none;
}
.top-header ul li.nav-btn {
    background:#0982c4;    
}
.top-header ul li a {
    color:rgba(255,255,255,1.0);
    font-weight: 600;
    transition: .1s ease-in;
}
.top-header ul li a:hover {
    color:rgba(255,255,255,0.7);
    text-decoration: underline;
}
.header-bg {
    background:#fff;
}
header {
	margin: 0 auto;
	max-width: 1100px;
    box-sizing: border-box;
    padding:0 10px!important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
	}
.head-logo-1 {
    padding:0 10px;
}
.head-logo-1 img {
	max-width: 224px;
	height: auto;
	display: block;
    transition: .3s ease-in;
}
.stick .head-logo-1 img {
	max-width: 97px;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:15px 0;
	display:block;
	position:relative;
	}
	nav.primary ul {
        width:100%;
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: space-between;
		}
		nav.primary ul li {
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Roboto Condensed', sans-serif;
				color: #000;
				font-size: 16px;
				text-decoration: none;
				padding:11px 0px;
				display: block;
				margin:0 14px;
				text-align: center;
				-webkit-transition: .1s ease-in;
				-moz-transition: .1s ease-in;
				-o-transition: .1s ease-in;
				transition: .1s ease-in;
				font-weight: 400;
                position: relative;
				}
            nav.primary ul li a.active {
                color: #c40924;
            }
            nav.primary ul li a:after {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 2px;
                background: #c40924;
                content: '';
                opacity: 0;
                -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
                -moz-transition: opacity 0.3s, -moz-transform 0.3s;
                transition: opacity 0.3s, transform 0.3s;
                -webkit-transform: translateY(10px);
                -moz-transform: translateY(10px);
                transform: translateY(10px);
            }

			nav.primary ul li a:hover {
				opacity: .7;
				}
            nav.primary ul li a:hover:after {
				opacity: 1;
                transform: translateY(0);
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 500;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 290px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/


/* scroll to top style */

.scrollToTop-1 {
	bottom:125px;
	right:0;
	z-index:16777269;
	padding-top:5px;
	padding-bottom:5px;
	display:block;
	position:fixed;
    transition: .3s ease-in;
	transform: translatex(100%);
}
.scrollToTop-1.slide-in {
	transform: translatex(0px);
}
.scrollToTop-1 a {
    text-align: center;
    background: rgba(0,0,0,.4);
    font-size: 20px;
    padding: 8px 12px;
    color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.scrollToTop-1 a:hover {
	background: rgba(0,0,0,.7);
}



/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
    padding-top:196px;
	}
	

.container-1 {
	max-width: 1080px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-auction {
	max-width: 1080px;
	margin: 0 auto;
	padding:30px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
    background:#800000;
    border-top: 10px solid #000;
	}
footer .container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:70px 10px;
}
.foot-col-1 {
    width:30%;
}
.foot-col-1 h3 {
    color:#fff;
    letter-spacing: 2px;
    font-size:16px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom:40px;
}

.foot-col-1 p {
    color:#fff;
    font-family: 'Roboto', sans-serif;
    padding-bottom:20px;
}
.foot-col-2 {
    width:65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}	
.foot-nav-1 {
    width:100%;
}
.foot-nav-1 ul {
    margin:0;
    padding:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.foot-nav-1 ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.foot-nav-1 ul li a {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    color:#fff;
    transition: .1s ease-in;
    font-weight: 600;
    display: block;
}
.foot-nav-1 ul li a:hover {
    text-decoration: underline;
}

.foot-info-1 {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.foot-info-1 ul {
    margin: 0;
    padding:0;
}
.foot-info-1 ul li {
    padding:0 0 20px 0;
    margin:0;
    list-style: none;
}
.foot-info-1 ul li a {
    font-size: 17px;
    color:#fff;
    display: flex;
}
.foot-info-1 ul li a:hover .info-line {
    text-decoration: underline;
}
.foot-info-1 ul li a:hover i {
    opacity: 0.9;
}
.foot-info-1 ul li a i {
    padding: 0 30px 0 0;
    font-size: 22px;
    width: 27px;
    text-align: center;
}
.foot-info-1 ul li a span {
    font-weight: 700;
}
.bottom-foot {
    background:#000;
}
.bottom-foot .container-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding:15px 10px;
}
.bottom-foot-info img {
    max-width: 290px;
    width:100%;
    height: auto;
    display: block;
    padding:0 0 10px 0;
}
.bottom-foot-info p {
    color:#666;
    font-size:12px;
    font-family: 'Roboto', sans-serif;
}
.bottom-foot-info p a {
    font-weight: 600;
    color:#666!important;
}
.bottom-foot-info p a:hover {
    text-decoration: underline;
}
.foot-social {
    color:#666;
    font-size:24px;
}

a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1099px)  {
    nav.primary ul li a {
        font-size: 15px;
        margin:0 8px;
    }
}

@media screen and (max-width: 965px)  {
    
    .top-header {
        display: none;
    }
    .wrap {
      padding-top: 0;
    }
    
    .header-wrap {
        position: static;
    }
    
    header, .container-1  {
         max-width: 740px;
    }
    .head-logo-1 {
        padding:20px 0;
    }

    .head-logo-1 img, .stick .head-logo-1 img {
      max-width: 68px;
    }
    
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
	#menu-button{ 
		display: block;
		font-size: 24px;
		position: relative;
        box-sizing: border-box;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
        text-align: center;
	}
		#menu-button .menu-toggle{
			 color:#0982c4;
			 text-decoration: none;
			 font-weight:normal;
            padding:10px;
            display: block;
		  }
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
        top:100%;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #fff;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */

    nav.mobile ul {
        background:#fff;
		list-style: none;
		margin:0;
        padding:5%;
        box-sizing: border-box;
        border-top: 3px solid #2ea3f2;
        box-shadow:5px 0 5px -5px rgba(0,0,0,0.1), 0 5px 5px -5px rgba(0,0,0,0.1), -5px 0 5px -5px rgba(0,0,0,0.1);
	}
	nav.mobile ul li {
		margin:0;
        padding:0;
        list-style: none;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		border-bottom: 1px solid rgba(0,0,0,.03);
        color: #000;
        padding: 10px 5%;
        display: block;
        font-size:14px;
        text-decoration: none;
	}
    .nav-btn a {
       background:#0982c4; 
        padding: 20px 5%!important;
        text-align: center;
        color:rgba(255,255,255,1.0)!important;
        font-weight: 600;
        border-radius: 3px;
    }
    .nav-btn a:hover {
        color:rgba(255,255,255,0.7)!important;
        text-decoration: underline;
        background:#0982c4!important;
    }
    
	nav.mobile ul li a:hover {
        color:#222222;
		text-decoration: underline;
        background:rgba(0,0,0,.02);
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 10px 20px;
		color:#fff;

	}
	.nav-footer {color:#76bc21; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}


	nav.mobile ul li .fa-chevron-down {color:#999;}

    .foot-col-1 {
      width: 100%;
        padding-bottom: 30px;
    }
    .foot-col-2 {
      width: 100%;
    }
    .foot-nav-1 {
        padding-bottom:30px;
    }
    .foot-nav-1 ul li a {
        padding:10px;
    }
    .bottom-foot-info {
        order: 2;
        text-align: center;
    }
    .foot-social {
        order: 1;
        margin:0 auto;
    }
    .bottom-foot-info img {
        margin:0 auto;
        padding: 10px 0;
    }

}


@media screen and (max-width: 735px)  {

    header, .container-1  {
            max-width: 100%;
            width:80%;
        }
    .container-auction {
        padding:30px 20px;
        }

}
