﻿/*===================== 
	Color information
	
	- #801616 - maroon
	- #ffc938 - yellow
	- #ccc - lt grey
	- #252525 - dr grey

=======================*/
/*===================== 
	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: "Roboto", sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
  background-color: #000000;
  color: #ffffff;
  font-family: "Roboto", 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;
  font-size: 16px;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
}

.yellow {
  color: #ffc938;
}

.white {
  color: #fff;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

/*===================== 
	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 * {
  box-sizing: border-box;
}

header {
  margin: 0 auto;
  width: 100%;
}

.header_wrapper {
  background: #801616;
  padding: 0;
}

.header_contain {
  padding: 0;
  width: 62%;
  margin: 0 18%;
  display: inline-block;
}

.logo_contain {
}

.logo {
  float: left;
  margin: 110px 0 0;
}

.dozer {
  position: relative;
  z-index: 99;
  margin: 15px 0 -15px 0;
}

.headerinfo_contain {
  float: right;
}

.topnav {
  background: #ccc;
}

.topnav ul {
  padding: 0;
  text-align: center;
}

.topnav li {
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
}

.topnav a {
  color: #000 !important;
  transition: 0.3s ease;
}

.topnav a:hover {
  color: #801616 !important;
  transition: 0.3s ease;
}

.headerinfo {
  margin-top: 30px;
}

.headlink {
  color: #fff !important;
  transition: 0.3s ease;
  line-height: 1.5;
}

.headlink:hover {
  color: #252525 !important;
  transition: 0.3s ease;
}

/*===================== 
	nav styles 
=======================*/
.nav_contain {
  background: #252525;
}

nav.primary {
  padding: 0;
  display: block;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

nav ul {
  margin: 11px 0;
}

nav ul li {
  display: inline-block;
}

nav > ul > li {
  display: inline-block;
  list-style-type: none;
  text-align: center;
  color: #fff;
}

nav ul li a {
  color: #fff !important;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 12px 30px;
  background: linear-gradient(to right, #ffc938 50%, #252525 50%);
  background-size: 201% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-out;
}

nav ul li a:hover {
  color: #000 !important;
  background-color: #ffc938;
  color: #252525;
  background-position: left bottom;
}

/* 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: #252525;
  border-bottom: none;
  text-align: right;
  min-height: 0 !important;
}
#menu-button a {
  color: #fff;
  text-decoration: none;
  text-align: right !important;
}

nav.mobile {
  display: block;
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #000;
  z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
  overflow: auto;
}
nav.mobile h3 {
  /* Menu header styles */
  position: relative;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
  border-bottom: 4px solid #222;
}
nav.mobile .menu-toggle {
  /* Menu close button */
  position: absolute;
  top: 12px;
  right: 10px;
  display: inline-block;
  padding: 6px 9px 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  background: #222;
  color: #999;
  text-decoration: none;
  vertical-align: top;
}
.menu-toggle {
  text-align: right;
  font-size: 28px;
  color: #000;
}

.menu-toggle a:hover {
  color: #000 !important;
}

.close_mobile {
  font-size: 26px !important;
  font-weight: 900;
  text-align: 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;
  display: block;
}
nav.mobile ul li a {
  position: relative;
  display: block;
  padding-left: 14px;
  color: #999;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  background: none;
  text-align: left;
}
nav.mobile ul li a:hover {
  color: #ffc938 !important;
}

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 0.3s ease-in-out;
  -moz-transition: background-size 0.3s ease-in-out;
  transition: background-size 0.3s ease-in-out;
}
nav.mobile ul li span.click:hover {
  background-size: 60%;
}

/*===================== 
	content styles 
=======================*/
.wrapper {
  padding: 0;
}

.contain {
  padding: 20px 0;
  width: 62%;
  margin: 0 18%;
  display: inline-block;
}

.maincontent {
}

.sidecontent {
}

.infolink {
  color: #ffc938 !important;
  transition: 0.3s ease;
}

.infolink:hover {
  color: #fff !important;
  transition: 0.3s ease;
}

.info_link {
  color: #fff !important;
  transition: 0.3s ease;
}

.info_link:hover {
  color: #ffc938 !important;
  transition: 0.3s ease;
}

/*---home---*/
.cashimg_contain {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.cashimg {
  float: left;
}

.invbtn {
  padding: 0;
  margin: 20px 20px 0 0;
  height: 200px;
}

.invbtn a {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.8);
  display: block;
  height: 35px;
  padding-top: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: 0.3s ease;
}

.invbtn a:hover {
  color: #ffc938 !important;
  transition: 0.3s ease;
}

.construction {
  background: url(/siteart/construction.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.trucks {
  background: url(/siteart/trucks.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ag {
  background: url(/siteart/ag.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.trailers {
  background: url(/siteart/trailers.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.attach {
  background: url(/siteart/attach.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.fbimg {
  padding: 0;
  margin: 20px 0;
  width: 100%;
}

.fb {
  width: 200px;
}

.charityfund {
  background: #ffc938;
  width: 100%;
  padding: 0;
  margin: 20px 0;
}

.charity {
  float: right;
}

.charitylink {
  color: #000 !important;
  padding: 50px 20px;
  display: block;
  transition: 0.3s ease;
}

.charitylink:hover {
  color: #fff !important;
  text-shadow: 2px 2px 5px #000;
  transition: 0.3s ease;
}

.trade {
  padding: 0;
  width: 100%;
  margin: 20px 0;
}

.tradeimg {
  width: 100%;
}

.search {
  width: 100%;
  background: #ffc938;
  display: block;
  padding: 0;
  margin: 20px 0;
}

.search_contain {
}

.search_head {
  padding: 5px 20px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
}

.searchsection {
  color: #000 !important;
  padding-bottom: 10px;
}

.searchlabel {
  display: inline-block;
}

.search form {
  padding: 20px 10px;
}

.searchsection select {
  float: right;
  max-width: 70%;
  width: 100%;
}

.searchsection input {
  float: right;
  max-width: 70%;
  width: 100%;
}

.searchsection button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  padding: 5px 20px;
  font-weight: bold;
  transition: 0.3s ease;
  float: right;
  margin-bottom: 20px;
}

.searchsection button:hover {
  background: #000;
  transition: 0.3s ease;
}

/*---finance---*/
.formsection {
  padding: 0;
}

.financesection {
  padding: 0;
}

.financesection h3 {
  padding-left: 15px;
  margin-bottom: 10px;
}

.financesection label {
  padding: 0 10px 0 0;
}

/*---location---*/
.map {
  padding: 0;
}

/*===================== 
	form styles 
=======================*/
input[type="radio"] {
  margin-right: 5px;
  margin-bottom: 20px;
}

input,
button,
select,
textarea {
  color: #000;
}

.contact-text {
  margin-top: 30px;
  margin-bottom: 0px;
}

.contact_form {
  margin: 0px auto 15px;
  padding: 10px;
  border: 1px solid #252525;
  width: 100%;
  color: #000;
}

.submit-button {
  background-color: #ffc938;
  color: #000;
  padding: 5px 15px;
  border: 2px solid #ffc938;
  margin-top: 10px;
  margin-bottom: 30px;
  transition: 0.3s ease;
  font-size: 16px;
}

.submit-button:hover {
  border: 2px solid #ffc938;
  color: #ffc938;
  background-color: transparent;
  transition: 0.3s ease;
}

/*===================== 
	thank you styles 
=======================*/

.thanksrow {
  text-align: center;
}

.thankyou {
  padding: 25px 0px;
  text-align: center;
}

.thanks-text {
  text-align: center;
}

.thanks-button {
  color: #000;
  background-color: #ffc938;
  padding: 5px 15px;
  border: 2px solid #ffc938;
  margin: 15px auto;
  transition: 0.3s ease;
}

.thanks-button:hover {
  border: 2px solid #ffc938;
  color: #ffc938;
  background-color: transparent;
  transition: 0.3s ease;
}

/*===================== 
	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;
}

/*===================== 
	Inventory styles 
=======================*/
.container {
  margin-top: 20px !important;
}
.info {
  color: #801616 !important;
}
.faceted-search-content .selected-facets-container .selected-facet {
  background: #801616 !important;
}
.button {
  background-color: #801616 !important;
}
.button:hover {
  background-color: #ccc !important;
}
.body-wrapper {
  font-family: "Roboto", sans-serif;
}
.body-content {
  padding: 50px 0 !important;
}

/*-----FONTS-----*/
.list-content .list-title .list-title-text {
  font-family: "Roboto", sans-serif !important;
  font-size: 25px;
  text-transform: uppercase;
}
.list-content .listing-portion-title {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}
.list-content .list-title .list-listings-count {
  color: #ccc !important;
}
.list-listing-title {
  font-family: "Roboto", sans-serif !important;
}
.listing-portion-title {
  font-family: "Roboto", sans-serif !important;
}
.list-content .list-main-section .list-container .list-listing {
  background: #000 !important;
}
.list-content
  .list-main-section
  .list-container
  .list-listing
  .listing-top-right
  .listing-dealer-info
  .dealer-name {
  font-family: "Roboto", sans-serif;
}
.list-content
  .list-main-section
  .list-container
  .list-listing
  .listing-top
  .listing-top-left
  .listing-main-stats
  .price {
  color: #ccc !important;
  font-family: "Roboto", sans-serif;
}
.list-content .list-top-section .listing-option-bar .list-listings-count {
  color: #ccc !important;
}
.faceted-search-content .faceted-section-head {
  background: #252525 !important;
}
.faceted-search-content .faceted-section-head h5 {
  font-family: "Roboto", sans-serif;
  border-radius: 0px !important;
}
.listing-portion-title.description-title {
  font-family: "Roboto", sans-serif;
}
.faceted-search-content .faceted-section-box .faceted-search {
  border-radius: 0px !important;
}
.faceted-search-content
  .faceted-section-box
  .faceted-btn-container
  .faceted-show-all-btn {
  border-radius: 0px !important;
}
.detail-content .detail-main-body .main-detail-data .detail-price {
  color: #801616 !important;
  font-family: "Roboto", sans-serif;
}
.detail-content .detail-main-body .main-detail-data .detail-title {
  font-family: "Roboto", sans-serif !important;
  font-size: 25px;
  text-transform: uppercase;
  color: #801616;
  font-weight: 800;
}
.detail-content .dealer-info h3 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}
.contact-information {
  font-family: "Roboto", sans-serif !important;
}
.breadcrumbs {
  font-family: "Roboto", sans-serif !important;
}
.listing-widgets {
  font-family: "Roboto", sans-serif !important;
}
.detail-additional-data {
  font-family: "Roboto", sans-serif !important;
}
.detail-additional-data h4 {
  font-family: "Roboto", sans-serif !important;
}
.detail-content .search-results {
  color: #ccc !important;
}
.legal-text-content {
  font-family: "Roboto", sans-serif !important;
  font-size: 12px;
  font-style: italic;
}
.detail-content .detail-additional-data .data-row .data-value {
  background: #252525 !important;
}
.faceted-search-content
  .faceted-section-box
  .show-all-modal
  .show-all-modal-content-container {
  background: #252525 !important;
}

/*-----BUTTONS-----*/
.spec-icon {
  background: #000 !important;
}
.view-listing-details-link {
  background: #801616 !important;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  border-radius: 0px !important;
}
.view-listing-details-link:hover {
  background: #ccc !important;
}
.email-seller-link {
  border-radius: 0px !important;
}
.faceted-search-content .selected-facets-container .selected-facet {
  background: #801616 !important;
  font-family: "Roboto", sans-serif;
  border-radius: 0px !important;
}
.noUi-connect {
  background: #801616 !important;
  color: #fff !important;
}
.noUi-handle {
  background: #801616 !important;
  color: #fff !important;
}
.list-content .listing-bottom .listing-widgets a {
  border-radius: 0px !important;
  font-family: "Roboto", sans-serif !important;
}
.detail-content .print-this,
.detail-content .email-this {
  border-radius: 0px !important;
  font-family: "Roboto", sans-serif;
}
.offer-btn {
  border-radius: 0px !important;
  font-family: "Roboto", sans-serif;
  background-color: #801616 !important;
  color: #fff !important;
}
.offer-btn:hover {
  background-color: #ccc !important;
}
.send-email-btn {
  font-family: "Roboto", sans-serif !important;
  border-radius: 0px !important;
  border-color: #801616 !important;
  color: #801616 !important;
}
.detail-content .detail-additional-data .data-row .data-label {
  background: #801616 !important;
}
.print-this,
.email-this {
  font-family: "Roboto", sans-serif !important;
  border-radius: 0px !important;
}
.detail-content
  .detail-main-body
  .main-detail-data
  .addthis_inline_share_toolbox
  .at-share-btn-elements {
  display: inline-block !important;
}
.detail-content
  .detail-main-body
  .main-detail-data
  .addthis_inline_share_toolbox
  .at-share-btn-elements {
  width: auto !important;
}
.paging-container .page-navs .list-page-nav {
  background: #801616 !important;
  font-family: "Roboto", sans-serif;
  color: #fff !important;
}
.list-container-flexrow .buy-now-link,
.list-container-flexrow .check-availability-link,
.list-container-flexrow .email-seller-link,
.list-container-flexrow .dealer-phone-call {
  border-radius: 0px !important;
}
.detail-content-mobile
  .accordion-container
  .form-bottom
  .captcha-and-submit
  .mobile-close {
  color: #801616 !important;
  border-color: #801616 !important;
}

/*-----Mobile Styles-----*/
.price {
  color: #ccc !important;
  font-family: "Roboto", sans-serif;
}
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text {
  color: #801616 !important;
  border-color: #801616 !important;
  border-radius: 0px !important;
}
.specs-container {
  font-family: "Roboto", sans-serif !important;
}
.spec-container {
  font-family: "Roboto", sans-serif !important;
}
.mobile-breadcrumb {
  background-color: #ccc !important;
}
.detail-title {
  font-family: "Roboto", sans-serif !important;
}
.detail-content-mobile .detail-main-body .main-detail-data .detail-price {
  color: #ccc !important;
}
.detail-content-mobile .dealer-info h3 {
  font-family: "Roboto", sans-serif !important;
}
.field-value {
  font-family: "Roboto", sans-serif;
}
.contact {
  font-family: "Roboto", sans-serif;
}

.detail-content-mobile
  .detail-main-body
  .main-detail-data
  .dealer-phone-mobile-container
  .dealer-phone-mobile {
  background-color: #801616 !important;
  color: #fff !important;
  font-family: "Roboto", sans-serif !important;
  border-radius: 0px !important;
}
.detail-content-mobile
  .detail-main-body
  .main-detail-data
  .send-email-btn-mobile,
.detail-content-mobile
  .detail-main-body
  .main-detail-data
  .send-wholesale-email-btn-mobile {
  background-color: #801616 !important;
  color: #fff !important;
  font-family: "Roboto", sans-serif !important;
  border-radius: 0px !important;
  border: none !important;
}
.detail-content-mobile .detail-contact-bar .contact-bar-btn {
  background-color: #801616 !important;
  color: #fff !important;
  font-family: "Roboto", sans-serif !important;
  border-radius: 0px !important;
}
.data-label {
  background-color: #801616 !important;
}
.faceted-search-content .mobile-done-button-container .mobile-done-button {
  background-color: #801616 !important;
  color: #fff !important;
  border-radius: 0px;
  font-family: "Roboto", sans-serif;
}
.faceted-search-content
  .mobile-done-button-container
  .mobile-done-button:hover {
  background-color: #ccc !important;
  border-radius: 0px;
  font-family: "Roboto", sans-serif;
}
.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {
  background-color: #801616 !important;
}
.detail-content-mobile
  .detail-main-body
  .main-detail-data
  .offer-btn-mobile:hover {
  background-color: #ccc !important;
}
.detail-content-mobile
  .detail-main-body
  .main-detail-data
  .fin-calc-btn-mobile {
  background-color: #801616 !important;
}
.detail-content-mobile
  .detail-main-body
  .main-detail-data
  .fin-calc-btn-mobile:hover {
  background-color: #ccc !important;
}
.detail-content-mobile .detail-additional-data .data-row .data-value {
  background: #252525 !important;
}

/*===================== 
	footer styles 
=======================*/
/*  scrolling inventory
------------------------------------------------*/
.scrolling-wrap {
  width: 100%;
  height: 90px;
  overflow: hidden;
  border-top: 6px solid #801616;
  border-bottom: 6px solid #801616;
}

.scrolling {
  width: 100%;
  height: 92px;
}

footer * {
  box-sizing: border-box;
}

footer {
  margin: 0;
  width: 100%;
}

a.footerlink:link,
a.footerlink:visited,
a.footerlink:active {
  text-decoration: none;
  font-size: 13px;
  color: lightgray;
}
a.footerlink:hover {
  text-decoration: none;
  font-size: 13px;
  color: #fff;
}

.footertext {
  font-size: 13px;
  color: lightgray;
}

.smallfootertext {
  font-size: 10px;
  color: lightgray;
}

.divfooter {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

.footinfo {
  background: #252525;
  padding: 10px;
  margin-bottom: 20px;
}

.footlink {
  color: #fff !important;
  transition: 0.3s ease;
}

.footlink:hover {
  color: #ffc938 !important;
  transition: 0.3s ease;
}

.footlink1 {
  color: #ffc938 !important;
  transition: 0.3s ease;
}

.footlink1:hover {
  color: #fff !important;
  transition: 0.3s ease;
}

/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1600px) {
  .header_contain {
    width: 70%;
    margin: 0 15%;
  }
  .contain {
    width: 70%;
    margin: 0 15%;
  }
}

@media only screen and (max-width: 1400px) {
  .header_contain {
    width: 82%;
    margin: 0 8%;
  }
  .contain {
    width: 82%;
    margin: 0 8%;
  }
}

@media only screen and (max-width: 1200px) {
  .header_contain {
    width: 92%;
    margin: 0 4%;
  }
  .contain {
    width: 92%;
    margin: 0 4%;
  }
  .yard {
    width: 40%;
  }
  .buycash {
    width: 50%;
  }
}

@media only screen and (max-width: 1050px) {
  .logo {
    width: 50%;
  }
  .charitylink {
    padding: 50px 10px;
  }
  .searchsection select {
    width: 70%;
  }
}

@media only screen and (max-width: 1000px) {
  .search form {
    padding: 20px 5px;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 991px) {
  .header_contain {
    padding-top: 10px;
  }
  .logo_contain {
    justify-content: center;
    display: flex;
  }
  .logo {
    width: auto;
    margin-top: 100px;
  }
  .dozer {
    margin: 0;
  }
  .maincontent {
    text-align: center;
  }
  .sidecontent {
    text-align: center;
  }
  .cashimg {
    float: none;
    margin: auto;
  }
  .yard {
    width: 45%;
  }
  .buycash {
    width: 55%;
  }
  .invbtn {
    margin: 20px;
    width: 44%;
  }
  .fb {
    margin: auto;
  }
  .charityfund {
    width: 50%;
  }
  .charitylink {
    padding: 46px 10px;
  }
  .trade {
    width: 50%;
    padding: 20px;
  }
  .searchsection select {
    float: none;
  }
  .searchsection input {
    float: none;
  }
  .searchsection button {
    float: none;
    margin: 0;
  }
  .techimg {
    margin: auto;
  }
  .serviceimg {
    margin: auto;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .header_contain {
    width: 100%;
    margin: 0;
  }
  .logo {
    width: 100%;
  }
  .dozer {
    width: 100%;
  }
  .invbtn {
    width: 40%;
  }
  .cashimg_contain {
    display: block;
  }
  .yard {
    width: 75%;
  }
  .buycash {
    width: 75%;
  }
  .charityfund {
    width: 90%;
    margin: 20px 5%;
  }
  .trade {
    width: 90%;
    padding: 0;
    margin: 20px 5%;
  }
}

@media only screen and (max-width: 600px) {
  .logo {
    margin-top: 80px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  .logo {
    margin-top: 70px;
  }
  .invbtn {
    width: 90%;
  }
  .yard {
    width: 90%;
  }
  .buycash {
    width: 90%;
  }
  .charitylink {
    padding: 35px 10px;
  }
  .searchlabel {
    display: block;
  }
}

@media only screen and (max-width: 420px) {
  .logo {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 400px) {
  .charity {
    width: 50%;
  }
  .charitylink {
    padding: 22px 10px;
  }
}

@media only screen and (max-width: 370px) {
  .logo {
    margin-top: 50px;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  .logo {
    margin-top: 40px;
  }
}
