﻿/*===================== 
	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 {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
	}

	
h1 {

}
		

h2 {
}

	
h3 {
}


h4 {
}


h5 {
}


h6 {
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  

/*===================== 
	header styles 
=======================*/

header {
	margin: 0 auto;
	width: 100%;
	}

.header-logo {
    width: 26%;
    padding: 1%;
}

.header-contact {
    padding-right: 4%;
    padding-top: 3%;
    text-align: right;
    color: #cb2c00;
}

.header-contact-link {
    color: #006699;
}

.header-contact-link:hover,
.header-contact-link:visited,
.header-contact-link:active{
    color: #006699;
    text-decoration: none;
}

.header-contact-mobile {
    font-size: 12px;
    float: left;
    padding: 5px 15px 0px 15px;
    color: #cb2c00;
    text-align: left; 
}

/*===================== 
	nav styles 
=======================*/

header nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
    background-color: #006699;
    width: 100%;
	}

header nav ul {
	padding:0;
	margin:0;
}

header nav ul li {

}

header nav > ul > li {
	display:inline-block;
	list-style-type:none; 
	padding: 5px 25px;
}

header nav ul li a {
    font-family: 'Nunito Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
    font-style: italic;
    color: white;
}	
			
header nav ul li a:hover,
header nav ul li a:active{
	color: #fcde66;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: ;
	color: ;
	text-align:;
	font-size: ;
	font-weight:;
	}
	
nav.primary ul li li a:hover { 
	color: ;
	text-align: ;
	font-size:  ;
	font-weight: ;
	}
	
nav.primary ul li li:hover { 
	}
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
	max-width: 235px;
	background: ;
	/*margin-top: 21px;*/
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 2000 !important;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
	padding-left: ;
	padding-right: ;
}

.dropdown_arrow {
	display: inline-block !important;
}

.dropdown_style {
	font-size: ;
	font-weight: ;
}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/

#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	background-color: #006699;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: white;
		 text-decoration: none;
		 text-align: right !important;
         padding-right: 15px;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #006699;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
    font-family: 'Nunito Sans', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	vertical-align: top;
}
a.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
    padding-right: 10px;
    float: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	padding: 8px 0 6px 0 !important;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 20px;
	color: white;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
    clear: both;
}
nav.mobile ul li a:hover {
	background: ;
	color: #fcde66;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 15px;
	color: #000;
	text-decoration: none;
	text-transform: none !important;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	text-decoration: none;
}
nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url(../siteart/menu-dropdown-arrow.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}
nav.mobile ul li span.click:hover{
	background-size:60%;
}


/*===================== 
	content styles 
=======================*/

.home-text {
    width: 45%;
    padding: 5%;
    position: absolute;
    top: -580px;
    font-size: 22px;
    color: white; 
	line-height: 1.4;
}

.hero {
    padding-bottom: 2%;
    width: 100%;
}

.hero-mobile {
    width: 100%;
}
.home-text>h1{
    font-size:22px;
    font-weight: bold;
    text-transform: capitalize;
}
	
/*===================== 
	slideshow styles 
=======================*/



/*===================== 
	banner styles 
=======================*/
/*  scrolling inventory
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
    margin-top: 2%;
}
 
.scrolling{
    width:100%;
    height:92px;
}


/*===================== 
	layout styles 
=======================*/

.container-fluid {
    padding: 0px;
}

.row-clary {
    padding: 0px;
    margin: 0px;
}

.div-clary {
    padding: 0px;
}

.center {
    text-align: center;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: white;
	}
	a.footerlink:hover {
		text-decoration:none!important; 
		font-size:13px!important;
		color: #fcde66!important;
		}

.footertext {
	font-size:13px; 
	color: white;
	}

.smallfootertext {
	font-size:10px; 
	color: white;
	}

.black-footer {
    background-color: black;
}

.divfooter {
	max-width:1200px; 
	text-align:center; 
	margin:0 auto;
    padding: 25px!important;
	}

.footer-picture {
     background-image: url("/siteart/contact.jpg")
}

.footer-title {
    text-align: center!important; 
    color: #fcde66!important;
    font-size: 22px!important;
    padding: 1% 0px .5% 0px!important;
    border-bottom-style: solid!important; 
    border-bottom-color: #cb2c00!important;
    border-bottom-width: 2px!important;
}

.footer-info {
    text-align: center!important;
    color: #fcde66!important;
    padding: 1% 0px!important;
    font-size: 16px!important;
}

.footer-info-link {
    color: #fcde66!important;
}

.footer-info-link:hover,
.footer-info-link:visited,
.footer-info-link:active{
    color: #fcde66!important;
    text-decoration: none!important;
}

.footer-fax {
    color: #fcde66!important;
}

.footer-names {
    padding-bottom: 2%;
}



/*========================= 
	 Used-Equip styles 
===========================*/

.content {
    position: relative;
    max-width: 639px;
    margin: auto;
    overflow: hidden;
    text-align: center;
    padding: 3px 1%;
}

.content .content-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 475px;
    width: 94%;
    max-width: 639px;
    bottom: 0;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    margin-top: 25px;
}

.content:hover .content-overlay{
    opacity: 0.25;
}

.content-image{
    width: 100%;
    max-width: 639px;
    text-align: center;
}

.content-details {
    position: absolute;
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content .content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details h3{
    color: #fff;
    margin-bottom: 0.5em;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: normal;
}

.fadeIn-top{
    top: 20%;
}

/*===================== 
	form styles 
=======================*/

.form-clary {
    padding: 0px 2%;
}

.contact-text {
    margin-top: 30px;
    margin-bottom: 0px;
}

.contact_form {
    margin: 15px auto;
    padding: 15px;
    border: 1px solid #006699;
    width: 100%;
}

.contact-header {
    color: #006699;
    font-size: 36px;
    font-weight: 700;
}

.contact-p {
    font-size: 14px;
}

.submit-button {
    background-color: #006699;
    color: white;
    font-size: 18px;
    padding: 5px 15px; 
    border: 2px solid #006699;
    margin-top: 10px;
    margin-bottom: 30px;
}

.submit-button:hover{
    color: #fcde66
}

/*===================== 
	thank you styles 
=======================*/

.thanksrow {
    text-align: center;
}

.thankyou {
    padding: 25px 0px;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #006699;
}

.thanks-text {
    font-size: 18px;
    text-align: center;
}

.thanks-button {
    color: white;
    background-color: #006699;
    padding: 10px 25px;
    border: 2px solid #006699;
    margin: 30px auto;
    font-size: 20px;
}

.thanks-button:hover{
    color: #fcde66;
}

/*===================== 
	captcha styles 
=======================*/

/*control the Captcha */
.CaptchaPanel {
    margin:0 0 0 0 !important;
    padding:0 0 0 0 !important;
    text-align: center;
    line-height:normal !important;
    }

.CaptchaImagePanel {
    margin:0 0 0 0;
    padding:0 0 0 0;
    }

.CaptchaMessagePanel {
    padding:0 0 0 0 !important;
    margin:0 0 0 0 !important;
    font-weight:normal !important;
    font-size:12px;
    line-height:14px;
    }

.CaptchaAnswerPanel {
    margin:0 0 0 0;
    padding:2px 0px 2px 0px !important;
    }

.CaptchaWhatsThisPanel {
        line-height:0;
        margin:0 0 0 0;
        padding:8px 0 8px 0 !important;
    }
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 
/*--------------------------------------------------------------
## NEW INVENTORY LAYOUT STYLES
--------------------------------------------------------------*/
.body-wrapper {font-family:'Nunito Sans', sans-serif!important;}
header * {box-sizing:border-box!important;}
footer * {box-sizing:border-box!important;}
/*-- Initial page styles --*/
span.list-title-text {font-size:20px!important;}
.check-availability-link {border-radius:0px!important;}
.list-content .print-this, .list-content .email-this  {border-radius:0px!important; font-size:13px!important;}
a.email-seller-link {border-radius: 0px!important;}
.list-content .list-top-section .listing-option-bar .list-sort-order .sort-by-dropdown-container {font-size:14px!important;}
select#sort {border-radius:0px!important; font-size:14px!important; font-family:'Nunito Sans', sans-serif!important;}
span.list-listings-count {color:#006699!important; font-size:12px!important; position:relative; top:5px;}
.dealer-name {font-family:'Nunito Sans', sans-serif!important; font-size:14px!important;}
.dealer-data {font-family:'Nunito Sans', sans-serif!important; font-size:14px!important;}
span {font-family:'Nunito Sans', sans-serif!important; font-size:12px!important;}
.listing-portion-title {font-family:'Nunito Sans', sans-serif!important;}
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price {color:#006699!important;}
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .listing-category {font-size:13px!important;}
.view-listing-details-link {background-color:#006699!important; border-radius:0px!important; font-size:14px!important;}
.view-listing-details-link:hover {background-color:#004466!important;}
.machine-location.machine-location-desktop {font-size:14px!important;}
.list-content .listing-bottom .listing-widgets a {border-radius:0px!important;}
button#faceted-search {border-radius:0px!important; background-color:#006699!important;}
button#faceted-search:hover {background-color:#004466!important;}
.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name {padding-left:3px; margin-top:0px!important;}
span.faceted-show-all-btn {border-radius:0px!important; background-color:#006699!important;}
input.leftLabel {border-radius:0px!important;}
input.rightLabel {border-radius:0px!important;}
.btn.show-all-apply-filter {border-radius:0px!important; background-color:#006699!important;}
h5 span {font-size:18px!important;}
input.faceted-text-input {border-radius:0px!important; font-size:14px!important;}
.noUi-connect {background:#006699!important;}
.noUi-draggable {cursor:default!important;}
.noUi-handle {background:#006699!important; box-shadow:none!important; cursor:ew-resize!important;}
.list-page-number {font-size:24px!important; font-family:'Nunito Sans', sans-serif!important;}
span.page-number {font-size:24px!important; font-family:'Nunito Sans', sans-serif!important;}
span#ui-id-2-button {border-radius:0px!important; font-family:'Nunito Sans', sans-serif!important;}
button.list-page-nav {border-radius:0px!important; font-size:14px!important; font-family:'Nunito Sans', sans-serif!important;}
.paging-container .list-page-number {color:#555555!important; font-family:'Nunito Sans', sans-serif!important;}
span.ui-selectmenu-text {color:#555555!important; font-family:'Nunito Sans', sans-serif!important; font-size:22px!important;}
.overflow li {color:#555555!important; font-family:'Nunito Sans', sans-serif!important;}
.paging-container .page-number {color:#555555!important;}
.selected-facet {border-radius:0px!important; background-color:#006699!important; font-size:13px!important;}

/*-- View Details Page --*/
.detail-content {padding-top:25px!important;}
.detail-content .print-this, .detail-content .email-this {border-radius:0px!important; font-size:13px!important;}

.search-results {color:#006699!important;}
h1.detail-title {font-family:'Nunito Sans', sans-serif!important;}
.detail-category {font-size:14px!important;}
span.currency-selector {color:#006699!important;}
button.offer-btn {background:#006699!important; font-size:18px!important; border-radius:0px!important; width:295px!important;}
button.offer-btn:hover {background:#004466!important;}
button.offer-btn span {font-size:18px!important;}
button.detail-btn-calc {border-radius:0px!important; width:303px!important; padding:10px 0px!important;}
.detail-content .dealer-info h3 {font-family:'Nunito Sans', sans-serif!important; font-size:15px!important;}
.dealer-company-header {font-family:'Nunito Sans', sans-serif!important; font-size:14px!important;}
button.send-email-btn {border-radius:0px!important; border-color:#006699!important; color:#006699!important;}
a.check-availability-btn {border-radius:0px!important;}
.detail-content .listing-widgets a {border-radius:0px!important;}
section.detail-additional-data h4 {padding-top:15px;}
.data-label {background-color:#006699!important; font-family:'Nunito Sans', sans-serif!important; font-size:14px!important;}
.data-value {font-family:'Nunito Sans', sans-serif!important; font-size:14px!important;}
h4 span {font-size:20px!important;}

/*-- Check Availability Form --*/
h2#email-modal-title {font-family:'Nunito Sans', sans-serif!important;}
input#FirstName {font-size:13px!important; font-family:'Nunito Sans', sans-serif!important; border-radius:0px!important;}
input#LastName {font-size:13px!important; font-family:'Nunito Sans', sans-serif!important; border-radius:0px!important;}
input#Email {font-size:13px!important; font-family:'Nunito Sans', sans-serif!important; border-radius:0px!important;}
input#Phone {font-size:13px!important; font-family:'Nunito Sans', sans-serif!important; border-radius:0px!important;}
input#PostalCode {font-size:13px!important; font-family:'Nunito Sans', sans-serif!important; border-radius:0px!important;}
select#InquiryTypeID {font-size:13px!important; font-family:'Nunito Sans', sans-serif!important; border-radius:0px!important;}
textarea#Comments {font-size:13px!important; font-family:'Nunito Sans', sans-serif!important; border-radius:0px!important;}
label {font-size:18px!important;}
.modal-form-el label {font-family:'Nunito Sans', sans-serif!important; font-size:18px!important;}
button.g-recaptcha.button {background:#006699!important; border-radius:0px!important;}
button.g-recaptcha.button:hover {background-color:#004466!important;}





/*--------------------------------------------------------------
## MOBILE STYLES
--------------------------------------------------------------*/
/*-- Initial page styles --*/
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call, .list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text {background-color:#f2f2f2!important; border:none!important; border-radius:0px!important; color:#555555!important; font-family:'Nunito Sans', sans-serif!important;}
.listing-category {font-size:13px!important}
span.price {color:#006699!important;}
img.main-image {border-radius:0px!important;}
a.fin-calc {color:#006699!important; font-size:14px!important;}
.machine-location.machine-location-mobile {font-size:14px!important;}
.description-and-expander {margin-top:0px!important; margin-bottom:15px!important;}
.list-content .list-listing-mobile .price-container .fin-stacked.purchase-today-link {background:transparent!important;}
p.listing-description-text {margin-bottom:15px;}
a.mobile-done-button {background-color:#006699!important;}
.faceted-search-content .mobile-done-button-container .mobile-done-button:hover {background-color:#004466!important;}
.back-button {color:white!important; border:none!important; border-radius:0px!important; background-color:#006699!important;}
.back-button:hover,.back-button:active,.back-button:focus {color:white!important; background-color:#004466!important;}
.apply-button {color:white!important; border:none!important; border-radius:0px!important; background-color:#006699!important;}
.apply-button:hover,.apply-button:active,.apply-button:focus {color:white!important; background-color:#004466!important;}

/*-- View Details Page --*/
.mobile-breadcrumb {background-color:#006699!important; font-size:14px!important;}
a.breadcrumbs-element {font-family:'Nunito Sans', sans-serif!important;}
.detail-content-mobile .dealer-info h3 {font-family:'Nunito Sans', sans-serif!important; font-size:16px!important;}
.dealer-info {font-family:'Nunito Sans', sans-serif!important; font-size:14px!important;}
a.field-value.js-phone-clicktotrack.dealer-phone-mobile {margin-right:0px!important; border-radius:0px!important; background-color:#006699!important; justify-content:left!important;}
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile span {margin-left:20px!important;}
button.offer-btn-mobile {border-radius:0px!important; background-color:#006699!important; border:none!important;}
.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile span, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile span {margin-left:20px!important;}
button#send-email-btn-mobile {background-color:#006699!important; border-radius:0px!important; border:none!important; margin-bottom:20px!important;}
a#contact-bar-email {background-color:#006699!important;}
a.contact-bar-btn.js-phone-clicktotrack {background-color:#006699!important;}
a#contact-bar-check-availability {background-color:#006699!important;}
button.fin-calc-btn-mobile {background-color:#006699!important; border-radius:0px!important; border:none!important;}

.view-listing-details-link, .buy-now-link{color: #fff !important;}
.lower-detail-data-right{font-size: 16px !important;}
.compare-label{margin-left: 8px;}

.compare-chkbox-container .compare-listings .fa-check {
    top: 5px !important;
    left: 2px !important;
}


@media only screen and (max-width : 767px) {
    .body-wrapper {margin: 0px 15px!important;}   
}


/*--------------------------------------------------------------
## INVENTORY SEARCH ON SEPARATE PAGE E.G. https://nextraninventory.com.wpdev - pull in with function.php
--------------------------------------------------------------*/
/*--------------YOU MAY NOT NEED THIS but if you want to pull in search on homepage use functions.php or separaate file-------------*/
.faceted-search-content .faceted-section-box .faceted-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}
.leftslider {padding: 0 1%!important;}
.rightslider {padding: 0 1%!important;}


/*-----------NEW INVENTORY MEDIA QUERIES-----------*/
/*--------------You may not need this but it prevents a weird layout thing to happen around these pixel points-------------*/
@media (max-width : 795px) and (min-width : 786px) {
	.has-search-bar {width: calc(72% - .75%)!important;}
}
@media only screen and (max-width : 785px) {
	.footer-background {padding: 20px 5% 15% 5%;}
}
/*--------------Extends the footer so that the fixed nav doesn't overlap the footer-------------*/
@media only screen and (max-width : 400px) {
	.footer-background {padding: 20px 5% 20% 5%;}
}














/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1700px) {

/*========================= 
	 Content styles 
===========================*/

.home-text {
    top: -520px;
    } 

}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1500px) {

/*========================= 
	 Header styles 
===========================*/
    
.header-logo{
    width: 33%!important;
    }    
    
/*========================= 
	 Content styles 
===========================*/

.home-text {
    padding: 4%;
    top: -450px;
    font-size: 20px;
    } 

}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1330px) {

/*========================= 
	 Content styles 
===========================*/

.home-text {
    top: -410px;
    } 

}


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

/*========================= 
	 Header styles 
===========================*/
    
.header-logo{
    width: 40%!important;
    }        

/*========================= 
	Nav styles 
===========================*/    
    
nav ul li a {
    font-size: 16px!important;
    }    
    
/*========================= 
	 Content styles 
===========================*/

.home-text {
    top: -370px;
    font-size: 18px;
    } 
.home-text>h1{
    font-size:18px;
}


/*========================= 
	 Footer styles 
===========================*/  
    
.footer-title {
    padding: 5% 0px .5% 0px!important;    
    }

.footer-info {
    padding: 2% 0px!important;
    }    
        
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1100px) {

/*========================= 
	 Content styles 
===========================*/

.home-text {
    top: -320px;
    width: 45%;
    padding: 3.5%;
    font-size: 16px;
    } 
.home-text>h1{
    font-size:16px;
}

}


	
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    
    
/*========================= 
	 Content styles 
===========================*/

.home-text {
    top: -290px;
    padding: 3%;
    } 
    
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {

/*========================= 
	 Header styles 
===========================*/

.div-logo {
    text-align: center!important;
        
    }
    
.header-logo{
    width: 35%!important;
    padding: 2%!important;
    }


/*========================= 
	 Used Equip styles 
===========================*/

    .content-details h3 {
        font-size: 24px;
    }

}
    
/* Medium Devices, Desktops */
@media only screen and (max-width : 900px) {
      
/*========================= 
	 Content styles 
===========================*/

.home-text {
    top: -245px;
    width: 50%;
    padding: 2%;
    font-size: 14px;
    } 
.home-text>h1{
    font-size:14px;
}
	
    
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 800px) {
      
/*========================= 
	 Content styles 
===========================*/

.home-text {
    top: -210px;
    } 
    
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

/*========================= 
	 Header styles 
===========================*/

.header-logo{
    width: 40%!important;
    }
    
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {

/*========================= 
	 Content styles 
===========================*/

.home-text {
    width: 100%;
    padding: 5%;
    position: relative; 
    background-color: #006699;
    top: -1px;
    } 
    
/*========================= 
	 Content styles 
===========================*/

.content {
    max-width: 100%;
    }    
    
.content .content-overlay {
    max-width: 100%; 
    width: 100%;
    }    
    
.content-image {
    max-width: 100%;
    } 

     
}
    

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
 /*========================= 
	 Header styles 
===========================*/

.header-logo{
    width: 50%!important;
    }
    

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {


}

