﻿/*===================== 
	Color information
	
	-
	-
	-red #e71418
    -grey #efefef
	-
		 
=======================*/
/*===================== 
	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 {
    -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;
	}
	h1 {
        font-family: 'Gelasio', serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-family: 'Gelasio', serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: 'Gelasio', serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: 'Gelasio', serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: 'Gelasio', serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

.border-1 {
    position: relative;
    z-index: 1;
    margin-top:-14px;
}
.border-1 svg {
      width:100%;
  height:25px;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

.text-link-1 {
    color:#e71418!important;
    font-size: 18px;
    font-weight: 400;
    transition: .2s ease-in;
}
.text-link-1:hover {
    color:#000!important;
}

.btn-main {
    width:100%;
    max-width: 400px;
    margin:0 auto;
    display: flex;
    background:rgba(255,255,255,0.8);
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
    cursor: pointer;
}
.btn-main .btn-main-btn-left {
    background:#e71418;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding:10px;
    box-sizing: border-box;
    font-size: 55px;
    width:60px;
}
.btn-main .btn-main-btn-right {
    width:calc(100% - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding:20px 5px;
    box-sizing: border-box;
}
.btn-main .btn-main-btn-right:after {
    background:#e71418;
    width:0px;
    height: 100%;
    left:0;
    top:0;
    content:"";
    transition: .2s ease-in;
    position: absolute;
    z-index: 1;
}
.btn-main:hover .btn-main-btn-right:after {
    background:#e71418;
    width:100%;
    height: 100%;
    left:0;
    top:0;
    content:"";
}
.btn-main .btn-main-btn-right p {
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    color:#000;
    position: relative;
    z-index: 2;
}
.btn-main .btn-main-btn-right p span {
    font-family: 'Gelasio', serif;
    color:#e71418;
    
}
.btn-main:hover .btn-main-btn-right h2 span, .btn-main:hover .btn-main-btn-right p span {
    color:#fff!important;
}
.btn-main:hover .btn-main-btn-right:after {
    width:100%;
}


/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background:#efefef;
	}

.top-head {
    max-width: 1300px;
    margin: 0 auto;
    width:100%;
    display: flex;
    justify-content: flex-end;
    padding:0 20px;  
    box-sizing: border-box;
}
.top-head ul {
    padding:0;
    margin:0;
    display: flex;
}
.top-head ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.top-head ul li a {
    background:#fff;
    transition: .2s ease-in;
    font-size: 20px;
    color:#e71418;
    padding:15px 18px;
    display: block;
}
.top-head ul li.social a {
    background:#e71418;
    color:#ffffff;
}
.top-head ul li a:hover {
   background:#000;
    color:#fff;
}
.header-cont-1 {
    width:100%;
    background: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}

header {
	margin: 0 auto;
	max-width: 1300px;
    padding:10px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
	}
.head-logo-1 {
    width:25%;
    max-width: 300px;
    margin: -55px 0;
}
.head-logo-1 img {
	max-width: 100%;
	height: auto;
	display: block;
}



/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}

nav.primary {
	padding:0 20px;
    box-sizing: border-box;
	display:block;
	margin:0;
	position:relative;

	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: flex-end;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
            transition: .2s ease-in;
			}
			nav.primary ul li a {
                font-family: 'Roboto Condensed', sans-serif;
				color: #000;
				font-size: 18px;
				text-decoration: none;
				padding: 15px;
				display: flex;
                align-items: flex-start;
                gap:0 4px;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 400;
				}	
            nav.primary ul li a i {
                color:#e71418;
                line-height: .7;
            }
            nav.primary ul > li:hover > a {
				color:#e71418;
				}
			nav.primary ul li a:hover {
				color:#e71418;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				padding:20px;
				background: #efefef;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
			}
			/* 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; 
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
    z-index: 100;
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: auto;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.wrap-header {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.wrap-header h1 {
    color:#fff;
    padding:30px 0;
    font-size: 50px;
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
    font-family: 'Gelasio', serif;
}
.wrap-header h1 span {
    color:#fff;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.wrap-hero {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 60.62%,rgba(0,0,0,0.6) 100%), url("/siteart/hero-img-1.jpg");
    background-size: cover;
    padding: 60px 0;
}
.wrap-hero .container-1 {
    display: flex;
    height: calc(100vh - 400px);
    min-height: 400px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hero-left {
    display: flex;
    flex-direction:column;
    justify-content: flex-end;
    width:calc(100% - 390px);
    box-sizing: border-box;
}
.hero-left h1 {
    color:#fff;
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
}
.hero-left h1 .lg-text {
    font-size: 55px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    display: block; 
    text-transform: uppercase;
}
.hero-left h1 .sml-text {
    display: block;
    font-size: 35px;
}

.hero-right {
    width: 385px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-right a {
    width:100%;
    height: 28%;
    display: flex;
    background:rgba(255,255,255,0.8);
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}
.hero-right a .hero-btn-left {
    background:#e71418;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding:10px;
    box-sizing: border-box;
    font-size: 55px;
    width:60px;
}
.hero-right a .hero-btn-right {
    width:calc(100% - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding:20px 5px;
    box-sizing: border-box;
}
.hero-right a .hero-btn-right:after {
    background:#e71418;
    width:0px;
    height: 100%;
    left:0;
    top:0;
    content:"";
    transition: .2s ease-in;
    position: absolute;
    z-index: 1;
}
.hero-right a:hover .hero-btn-right:after {
    background:#e71418;
    width:100%;
    height: 100%;
    left:0;
    top:0;
    content:"";
}
.hero-right a .hero-btn-right h2 {
    font-size: 28px;
    font-family: 'Roboto Condensed', sans-serif;
    color:#000;
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-right a .hero-btn-right h2 span {
    font-family: 'Gelasio', serif;
    color:#e71418;
    
}
.hero-right a .hero-btn-right p {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-right a:hover .hero-btn-right h2 span, .hero-right a:hover .hero-btn-right p {
    color:#fff!important;
}
.hero-right a:hover .hero-btn-right:after {
    width:100%;
}

.wrap-home-about {
    width:100%;
    padding:120px 0;
}
.wrap-home-about .container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap:50px 0;
}
.content-left-1 {
   width:100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap:15px 0;
}
.content-left-1 h2 {
    font-size: 20px;
    color:#e71418;
}
.content-right-1 {
    width:380px;
}
.home-auction-info-cont {
    width:100%;
    background:#efefef;
    box-sizing: border-box;
}
.home-auction-info {
    text-align: center;
    width:100%;
    padding:80px 10px;
    display: flex;
    flex-direction: column;
    gap:20px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.home-auction-info h3 {
    font-size: 26px;
    color:#e71418;
    font-family: 'Roboto Condensed', sans-serif;
}
.home-auction-info p {
    font-size: 17px;
    font-weight: 400;
    color:#000;
}
.wrap-home-banner {
    background:url("../siteart/home-service-img.jpg") no-repeat center;
    background-size: cover;
    width:100%;
    padding:40px 0;
    box-sizing: border-box;
}
.wrap-home-banner .container-1 {
    display: flex;
}
.banner-overlay {
    max-width: 700px;
    width:100%;
    padding:50px 20px 40px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
    gap:30px 0;
}
.banner-overlay h3 {
    width: 100%;
    font-size: 28px;
    color:#e71418;
    text-align: center;
}
.banner-overlay h4 {
    width: 100%;
    font-size: 30px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}
.banner-overlay p {
    width: 100%;
    font-size: 20px;
    text-align: center;
}

.banner-overlay .btn-main {
    width:49%;
}
.flex-info-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:30px 0;
}
.contact-info {
    width:24%;
    padding:20px;
    box-sizing: border-box;
    background:#efefef;
}
.contact-info h2 {
    font-size: 20px;
    color:#e71418;
}
.contact-info h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.contact-info ul {
    padding:10px 0 0 0;
    margin:0;
}
.contact-info ul li {
    padding:5px 0;
    margin:0;
    color:#000;
    list-style: none;
    font-weight: 600;
}
.contact-info ul li a {
    font-size: 16px;
    color:#000;
    transition: .2s ease-in;
    font-weight: 400;
}
.contact-info ul li a:hover {
    color:#e71418;
}
.contact-info:first-of-type {
    width:49%;
    background:#fff;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}
.contact-info:first-of-type h2 {
    font-size: 28px;
}

.contact-map {
    width:49%;
    min-height: 400px;
}
.contact-form-cont-1 {
    width:100%;
    padding:40px 0 0 0;
}
.contact-form-cont-1 h2 {
    font-size: 28px;
    color:#e71418;
}
.about-info-1 {
    width:100%;
}
.about-info-1 h2 {
    font-size: 24px;
    color: #e71418;
    padding-bottom:20px;
}
.about-info-1 h3 {
    padding-bottom:20px;
    padding-top:20px;
    font-size: 18px;
}
.about-col-2 {
    width:49%;
    background:#efefef;
    padding:20px;
    box-sizing: border-box;
    margin-top:40px;
}
.about-col-2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto 20px auto;
}
.about-col-2 h4 {
    font-size: 28px;
    color:#e71418;
    padding-bottom:20px;
} 

.about-col-2 h4 span {
   font-family: 'Roboto Condensed', sans-serif;
    text-transform: capitalize;
    color:#000;
}
.button-cont-1 {
    display: flex;
    flex-wrap: wrap;
    gap:20px 1%;
}
.button-cont-1 a {
    width: 24%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
    cursor: pointer;
    font-family: 'Gelasio', serif;
    color: #e71418;
    text-align: center;
    font-size:20px;
    padding:20px;
    box-sizing: border-box;
}
.button-cont-1 a:hover {
    transition: .2s ease-in;
    background: #e71418;
    color: #fff;
}


/*===================== 
	Form styles 
=======================*/

/* Containers */

.custom-form {
    padding:20px 0;
}

.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont p {
    font-family: 'Gelasio', serif;
    color:#e71418;
    padding:20px 0 10px 0;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 20px 15px;
	font-size: 17px;
	margin:  0 0 15px 0;
    font-family: 'Roboto Condensed', sans-serif;
	box-sizing: border-box;
    background:#efefef;
    border:0px;
    
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 20px 15px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto Condensed', sans-serif;
    background:#efefef;
    border:0px;
}

select {
	margin:0;
	padding:0;
}
.form-inline .btn-main {
    max-width: 300px;
    outline: none;
    border: 0px;
    padding:0px;
}



.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1300px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-2 {
	max-width: 1300px;
	margin: 0 auto;
	padding:60px 20px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1300px;
	margin: 0 auto;
	padding:60px 20px;
	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;}
.col-1 { width: 100%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 50px 0 0 0;
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	}
.foot-mobile-nav {
    width:100%;
    padding:20px;
    box-sizing: border-box;
    background:#efefef;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap:15px;
    margin:0 auto;
}
.foot-mobile-nav li {
    padding:0;
    margin:0;
    list-style: none;
}
.foot-mobile-nav li a {
    font-size:20px;
    color:#e71418;
    transition: .2s ease-in;
}
.foot-mobile-nav li a:hover {
    color:#000;
}
.foot-logo {
    background: rgba(255,255,255,1);
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
    width:485px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot-logo img {
    max-width: 300px;
    height: auto;
    width:100%;
    display: block;
    margin:0 auto;
}
.foot-right {
    width:calc(100% - 485px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap:40px;
}
.foot-nav {
    width:85%;
    background:#efefef;
}
.foot-nav-row {
    padding:50px 20px 50px 50px;
    width: calc(50% + 326px);
    background:#efefef;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    gap:20px;
}
.foot-nav-cont-1 h5 {
    font-family: 'Gelasio', serif;
    font-size: 18px;
    color:#e71418;
}
.foot-nav-cont-1 ul {
    padding:0;
    margin:0;
}
.foot-nav-cont-1 ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.foot-nav-cont-1 ul li a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size:16px;
    color:#000;
    font-weight: 400;
    transition: .2s ease-in;
    line-height: 2;
}
.foot-nav-cont-1 ul li a:hover {
    color:#e71418;
}
.foot-bottom {
    width:100%;
    position: relative;
    padding-bottom:20px;
}
.foot-bottom svg {
  width: 100%;
  height: 32px;
}
.foot-bottom p {
    width:100%;
    max-width: calc(55% + 365px);
    text-align: right;
    padding:0 20px;
    box-sizing: border-box;
    z-index: 1;
    top:9px;
    left:0;
    color:#fff;
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    position: absolute;
}
.foot-bottom p a {
    color:#fff;
    transition: .2s ease-in;
}
.foot-bottom p a:hover {
    color:#000;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1300px)  {
    .foot-nav-row {
        width: 100%;
    }
    
}

@media screen and (max-width: 1200px)  {
    nav.primary ul li a {
        font-size: 1.4vw;
        padding: 15px 10px;
    }   
}

@media screen and (max-width: 1100px)  {
    .button-cont-1 a {
        width: 32%;
    }
}

@media screen and (max-width: 900px)  {
    .header-wrap {
        background: #fff;
        box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
        position: relative;
        z-index: 201;
    }
    .top-head {
        padding:0;   
    }
    .top-head ul {
      flex-direction: column;
    }
    .top-head ul li {
      display: none;
    }
    .top-head ul li.social {
      display: block!important;
    }
    .header-cont-1 {
      box-shadow: 0 0 0px 0px rgba(0,0,0,0.0);
    }
    .head-logo-1 {
      width: auto;
      margin: -100px auto 0 auto;
    }
    header {
        padding:10px 55px;
    }
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 { 
        display:block;
    }
	#menu-button { 
		width: 100%;
		display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap:0 10px;
		background: #efefef;
        position: relative;
        padding:10px 20px;
        box-sizing: border-box;
        z-index: 200;
	}
    #menu-button ul { 
        display: flex;
        gap:0 15px;
        padding:0;
        margin:0;    
    }
    #menu-button ul li { 
        padding: 0;
        margin:0;
        list-style: none;
    }
    #menu-button ul li a { 
        color:#e71418;
        font-size: 20px;
        transition: .2s ease-in;
    }
    #menu-button ul li a:hover { 
        color:#000;
    }
    .toggle-button{
         color:#000;
        font-size: 30px;
      }
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #efefef;
		z-index: 500; 
		overflow:auto;
        border-top:1px solid #e71418;
        border-bottom:1px solid #e71418;
	}


	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}


	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:18px;
		padding: 10px;
		color: #000;
		text-decoration: none;
        text-align: center;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
	}

	/* 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: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#1B1B1B; 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;}
    
    .contact-info {
        width: 49%;
    }
    .wrap-home-about {
        width: 100%;
        padding: 50px 0 80px 0;
    }
}
	
@media screen and (max-width: 800px)  {
    
    .wrap-hero {
        background-image: linear-gradient(180deg,rgba(0,0,0,0.80) 60.62%,rgba(0,0,0,0.8) 100%), url("/siteart/hero-img-1.jpg");
    }
    .wrap-hero .container-1 {
      height: auto;   
    }
    
    .hero-left {
      width: 100%;
    }
    .hero-left h1 {
      text-align: center;
    }
    .hero-left h1 .lg-text {
      font-size: 11vw;
    }
    .hero-left h1 .sml-text {
      font-size: 7vw;
    }
    .hero-right {
        padding-top:40px;
        width: 100%;
        gap:10px 0;
    }
    .hero-right a {
        width: 100%;
    }
    .home-auction-info-cont {
        padding:0 20px 20px 20px;
    }
    .content-left-1, .content-right-1 {
        width:100%;   
    }
    .foot-mobile-nav {
         display: flex;
    }
    .foot-logo {
        width: 100%;
    }
    .foot-nav {
        display: none;
    }
    .foot-right {
        width:100%;
    }
    .foot-bottom {
      padding-bottom: 0px;
    }
    .foot-bottom svg {
      height: 70px;
    }
    .foot-bottom p {
        top: 29px;
    }
    .wrap-header h1 {
        padding:10px 0;
        font-size: 30px;
        text-align: center;
    }
    .about-col-2 {
        width:100%;
    }
    
}
@media screen and (max-width: 768px)  {
    .mobile-nav-cont-1 { 
        position: sticky;
        top:0;
        z-index: 400;
    }
    .button-cont-1 a {
        width: 49%;
    }
}
@media screen and (max-width: 600px)  {
    .col-1-2 {
        width:100%;
    }
    .banner-overlay .btn-main {
        width:100%;
    }
    .contact-info:first-of-type {
      width: 100%;
    }
    .contact-map {
      width: 100%;
    }
    .contact-info {
        width: 100%;
    }
    .button-cont-1 a {
        width: 100%;
    }
}
