/* MAIN BLOCKS */
body {
	font-family: 'Open Sans', sans-serif;
	color: #1d1d1d;
	font-size: 16px;
	box-sizing: border-box;
	padding: 0;
	margin: 0 auto;
	width: 100%;
}

h1 {
	font-size: 26px;
	color: #575758;
	margin: 0 0 8px 0;
	font-weight: 700;
}
h2 {
	font-weight: 700;
	font-size: 26px;
	color: #2F3942;
	margin-bottom: 20px;
}
.copart-dark h2 {
	color: #FFFFFF;
}b
h3 {
	font-size: 16px;
	margin: 0 0 15px 0;
	font-weight: 600;
	color: #1D1D1D;
	line-height: 1.3em;
}
p {
	margin: 0 0 1.5em 0;
	line-height: 1.5em;
}
.sub-heading {
	font-weight: 600;
	font-size: 18px;
	color: #69717A;
	margin-bottom: 40px;
}
a {
	font-weight: 600;
	color: #1D5AB9;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
a:hover {
	color: #3275DC;
}
strong {
	font-weight: 700;
}
ul {
	list-style-type: circle;
    padding: 0;
}
ul li {
	margin: 0 0 35px 20px;
	line-height: 1.6em;
}
ul.link-list {
	list-style-type: none;
	width: 33%;
	float: left;
	padding-right: 40px;
	box-sizing: border-box;
}
ul.link-list li {
	margin: 0 0 6px 0;
	line-height: 1.6em;
}
img {
	max-width: 100%;
}
hr {
	border: solid 1px #D8D8D8;
	margin: 30px 0;
	height: 0;
}

.section-wrapper {
	display: block;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	overflow: visible;
}

.pg-header {
	height: 220px;
	background-color: #225DB6;
}

.main-content {
	display: block;
	position: relative;
	width: 100%;
	max-width: 775px;
	box-sizing: border-box;
}
.sidebar-content {
	display: block;
	position: relative;
	width: 100%;
	max-width: 370px;
	box-sizing: border-box;
}

/* HELPERS */
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.text-center {
	text-align: center;
}
.spacer {
	display: block;
	margin: 0 0 15px 0;
	clear: both;
}
.clearer {
	display: block;
	clear: both;
}
.italic {
	font-style: italic;
}
p.spacer {
	margin-bottom: 35px;
}
.last {
	margin-bottom: 0;
}

/* BUTTONS */
.open-btn-light {
	display: inline-block;
	background-color: transparent;
	border: solid 1px #FFFFFF;
	color: #FFFFFF;
	border-radius: 50px;
	padding: 8px 20px;
	transition: all 0.3s ease-in-out;
}
.open-btn-light:hover {
	background-color: #FFFFFF;
	color: #0D5DB8;
}

.open-btn-dark {
	display: inline-block;
	background-color: transparent;
	border: solid 1px #0D5DB8;
	color: #0D5DB8;
	border-radius: 50px;
	padding: 8px 20px;
	transition: all 0.3s ease-in-out;
}
.open-btn-dark:hover {
	background-color: #0D5DB8;
	color: #FFFFFF;
}


/* HEADER */
.header-wrapper {
	display: block;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 80px;
	background-color: rgba(13,93,184,0.85);
	padding: 15px 20px;
}
.logo {
	display: inline-block;
	width: 140px;
	clear: both;
}
.header-info {
	display: inline-block;
	padding: 5px 0;
	color: #FFFFFF;
	text-align: right;
	font-weight: 600;
	font-size: 13px;
}
.header-info a {
	font-weight: 500;
	color:  #B9D7FE;
}

.nav-wrapper {
	display: block;
	position: absolute;
	width: 100%;
	height: auto;
	min-height: 35px;
	background-color: rgba(47,57,66,0.92);
	z-index: 2;
}

.nav-wrapper .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}
.nav-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  box-sizing: border-box;
}

.nav-wrapper li {
	margin: 0;
}

.nav-wrapper li a {
  display: block;
  font-size: 14px;
  color: #FFFFFF;
  padding: 10px 20px;
  background-color: rgba(47,57,66,1);
}

.nav-wrapper li a:hover {
  background-color: #242D35;
}
.nav-wrapper .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 15px 40px 18px 40px;
  position: relative;
  user-select: none;
}

.nav-wrapper .menu-icon .navicon {
  background: #FFFFFF;
  display: block;
  height: 2px;
  position: relative;
  transition: background .05s ease-out;
  width: 18px;
}

.nav-wrapper .menu-icon .navicon:before,
.nav-wrapper .menu-icon .navicon:after {
  background: #FFFFFF;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .05s ease-out;
  width: 100%;
}

.nav-wrapper .menu-icon .navicon:before {
  top: 5px;
}

.nav-wrapper .menu-icon .navicon:after {
  top: 0;
}

.nav-wrapper .menu-btn {
  display: none;
}

.nav-wrapper .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.nav-wrapper .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.nav-wrapper .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.nav-wrapper .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.nav-wrapper .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.hnav-wrapper .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


/* FOOTER */
.global-footer {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.footer-top {
	display: block;
	position: relative;
	box-sizing: border-box;
	background-color: #0D5DB8;
	padding: 40px;
	width: 100%;
	height: auto;
	min-height: 170px;
}
.footer-bottom {
	display: block;
	position: relative;
	box-sizing: border-box;
	background-color: #2F3942;
	padding: 40px 40px 20px 40px;
	width: 100%;
	height: auto;
	min-height: 480px;
	text-align: center;
}
.footer-section {
	list-style-type: none;
	display: block;
	width: 100%;
	overflow: hidden;
}
.footer-section strong {
	color: #FFFFFF;
	font-weight: 600;
}
.footer-section a {
	color: #FFFFFF;
	font-weight: 400;
	font-size: 13px;
}
.footer-item {
	display: block;
	float: left;
	width: 16.66%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.footer-item li {
	display: block;
	margin: 0 0 5px 0;
}
.footer-item li:first-child {
	margin-bottom: 10px;
}
.list-spacer {
	height: 25px;
}
.social-icon {
	padding-left: 22px !important;
}
.lang-dropdown {
	display: inline-block;
	background-color: #256DBF;
	border-radius: 8px;
	padding: 12px 38px;
	margin-top: 20px;
	float: right;
}
.intl-heading {
	font-size: 20px;
	font-weight: 700;
	color: #E2E5E8;
}
.intl-location-wrapper {
	display: inline-block;
	vertical-align: top;
	width: 140px;
	height: 130px;
	box-sizing: border-box;
	border-radius: 8px;
	background-color: #38424B;
	margin: 0 15px 20px 15px;
	padding: 15px 20px;
	overflow: hidden;
	font-size: 12px;
	color: #FFFFFF;
	transition: all 0.3s ease-in-out;
}
.intl-location-wrapper:hover {
	background-color: #404B55;
}
.intl-location-wrapper p {
	margin: 10px 0;
}
.intl-location-wrapper a {
    color: #FFFFFF;
}

.footer-links, .footer-links a {
	color: #FFFFFF !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	margin: 20px 0 5px 0 !important;
}
.footer-links a:hover {
	color: #CCCCCC !important;
}
.footer-copyright p {
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 300;
	margin: 0;
}



/* SOCIAL ICONS */
.fb-icon {
	background-image: url(/content/facebook.svg);
	background-repeat: no-repeat;
	background-position: left 5px;
	background-size: 12px;
}
.tw-icon {
	background-image: url(/content/twitter.svg);
	background-repeat: no-repeat;
	background-position: left 6px;
	background-size: 14px;
}
.ig-icon {
	background-image: url(/content/instagram.svg);
	background-repeat: no-repeat;
	background-position: left 6px;
	background-size: 14px;
}
.yt-icon {
	background-image: url(/content/youtube.svg);
	background-repeat: no-repeat;
	background-position: left 6px;
	background-size: 14px;
}
.gp-icon {
	background-image: url(/content/googleplus.svg);
	background-repeat: no-repeat;
	background-position: left 5px;
	background-size: 16px;
}
.cc-icon {
	background-image: url(/content/rss.svg);
	background-repeat: no-repeat;
	background-position: left 6px;
	background-size: 12px;
}
.apple-icon {
	background-image: url(/content/appstore.svg);
	background-repeat: no-repeat;
	background-position: left 6px;
	background-size: 14px;
}
.google-icon {
	background-image: url(/content/googleplay.svg);
	background-repeat: no-repeat;
	background-position: left 6px;
	background-size: 14px;
}


/* HERO */

.page-hero {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    background: url(/content/herobg_2x_0.jpg);
    background-size: 100.1%;
    background-position: top center;
    background-repeat: no-repeat;
    height: auto;
    min-height: 535px;
    margin-top: -115px;
    padding-top: 230px;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
}
.page-hero h1 {
	text-align: center;
	color: #FFFFFF;
	font-size: 32px;
	font-weight: 700;
}
.page-hero p{
	text-align: center;
	color: #E1EDFF;
	font-size: 26px;
}

/* STRUCTURE */

.row-wrapper {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.half-section {
	position: relative;
	width: 50%;
	height: auto;
	min-height: 800px;
	padding: 330px 10% 50px 10%;;
	box-sizing: border-box;
}
.spacing-adj {
	position: relative;
	margin-top: -320px;
	min-height: 800px;
}

/* FLEX STRUCTURE */

.flex-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	width: 100%;
	height: 500px;
}
.flex-item {
	width: 50%;
	height: auto;
	position: relative;
	box-sizing: border-box;
	align-items: center;
}
.flex-item-full {
	width: 100%;
	height: auto;
	position: relative;
	box-sizing: border-box;
	align-items: center;
}
.flex-content {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.flex-content-full {
	width: 90%;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.flex-content-adj {
	width: 80%;
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.flex-spacer {
	width: 100%;
	height: 280px;
}


.brand-item {
	width: 50%;
	height: 25%;
	display: inline-block;
	margin-left: -4px;
	left: 4px;
	position: relative;
	text-align: center;
	box-sizing: border-box;
	padding: 40px;
	vertical-align: top;
}
.brand-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 220px;
	height: 150px;
}
.brand-logo {
	width: 220px;
	height: 82px;
	box-sizing: border-box;
	margin-bottom: 35px;
}

/* COLORS */

.copart-dark {
	background-color: #2F3942;
	color: #FFFFFF !important;
}
.copart-light {
	background-color: #4080E6;
	color: #FFFFFF !important;
}
.crashedtoys {
	background-color: #E0E0E0;
	color: #0D5DB8 !important;
}
.copart-direct {
	background-color: #FFDF44;
	color: #0D5DB8 !important;
}
.cash-for-cars {
	background-color: #454955;
	color: #FFFFFF !important;
}
.wom {
	background-color: #cfd7e6;
	color: #0D5DB8 !important;
}
.npa {
	background-color: #444444;
	color: #FFFFFF !important;
}
.car-converter {
	background-color: #D0EDC8;
	color: #0D5DB8 !important;
}
.u-pull-it {
	background-color: #E2E5E8;
	color: #0D5DB8 !important;
}
.brands-yellow {
	background-color: #FFD985;
	color: #2F3942 !important;
}
.light-blue {
	background-color: #E1EDFF;
	color: #2F3942 !important;
}
.light-gray {
	background-color: #F8F8F8;
	color: #2F3942 !important;
}

/* PAGE SECTIONS */

.copart-hq {
	background-image: url(/content/copart-hq.jpg);
	background-size: cover;
}
.copart-brands {
	height: 1600px;
	clear: both;
	overflow: hidden;
}
.our-values {
	height: 620px;
	clear: both;
	overflow: hidden;
}
.our-values-img {
	background-image: url(/content/values.jpg);
	background-size: cover;
}
.investor-relations {
	height: 600px;
	clear: both;
	overflow: hidden;
}






/* 1330 BREAK POINT */

@media only screen and (max-width: 1330px) {

	.flex-content, .flex-content-full, .flex-content-adj {
		font-size: 14px;
	}
	.flex-content .sub-heading, .flex-content-full .sub-heading, .flex-content-adj .sub-heading {
		font-size: 16px;
	}

}

/* 1250 BREAK POINT */

@media only screen and (max-width: 1250px) {

	.page-hero {
		background-size: cover;
	}

}

/* 1024 BREAK POINT */

@media only screen and (max-width: 1024px) {



	.footer-col1, .footer-col2, .footer-col3 {
		display: inline-block;
		width: 32%;
		position: relative;
		overflow: hidden;
		vertical-align: top;
	}
	.footer-item {
	    width: 100%;
	    clear: both;
	}
	.footer-item .logo {
		float: left !important;
		margin-top: 30px;
	}
	.list-spacer {
		display: none !important;
	}

}

/* 950 BREAK POINT */

@media only screen and (max-width: 950px) {

	.brand-logo {
	    width: 65%;
	    margin: 0 auto;
	}

}

/* 810 BREAK POINT */

@media only screen and (max-width: 810px) {

	.spacing-adj .flex-item {
		width: 70% !important;
	}
	.spacing-adj .flex-item:last-child {
		width: 30% !important;
	}
	.flex-content-adj {
	    top: 62%;
	}
	.copart-brands {
	    min-height: 0;
	    height: auto;
	    display: block;
	    position: relative;
	}
	.copart-brands .flex-item {
	    width: 100%;
	    clear: both;
	    overflow: hidden;
	}
	.brands-yellow {
		height: 1100px !important;
	}
	.brand-content {
		height: 120px;
	}
	.brand-logo {
	    height: 72px;
	}
	.our-values .flex-item {
		width: 60%;
	}
	.our-values-img {
		width: 40% !important;
	}
	.our-values ul li {
		margin-bottom: 25px;
	}
	.investor-relations {
	    height: auto;
	    min-height: 680px;
	    padding: 60px 0 40px 0;
	}
	ul.link-list {
	    width: 50%;
	    margin-bottom: 20px;
	}
	ul.link-list:last-of-type {
		width: 100%;
	}

}

/* 750 BREAK POINT | MOBILE NAV ACTIVATES */

@media only screen and (max-width: 750px) {

	ul.site-nav {
		display: none;
	}
	ul.site-nav li {
		display: block;
	}
	.menu-btn {
		display: block;
	}

	.flex-item, .flex-item-full {
		display: block;
		position: relative;
		width: 100% !important;
		height: auto;
		overflow: hidden;
		padding: 0;
	}
	.flex-content, .flex-content-full {
	    position: relative;
	    display: block;
	    margin: 50px auto 50px auto;
	    top: inherit;
		left: inherit;
	    transform: inherit;
	}
    .page-hero {
        min-height: 450px;
        padding-top: 210px;
    }
	.spacing-adj {
		height: auto;
	}
	.spacing-adj .flex-item {
	    width: 100% !important;
	    height: auto;
	    overflow: hidden;
	    display: block;
	    position: relative;
	    padding: 50px 0;
	}
	.spacing-adj .flex-item:last-child {
	    width: 100% !important;
	    height: 250px;
	}
	.flex-content-adj {
	    position: relative;
	    display: block;
	    margin: 35% auto 0 auto;
        top: inherit;
		left: inherit;
	    transform: inherit;
	}
	.copart-hq {
	    background-size: 100%;
	    background-position: 0px;
	    background-repeat: no-repeat;
	}
	.brands-yellow, .our-values {
		height: auto !important;
	}
	.brand-item {
		height: 180px;
	}
	.copart-brands {
		height: auto;
		min-height: inherit;
	}
	.our-values .flex-item {
		width: 100% !important;
	    height: auto;
	}
	.our-values-img {
		width: 100% !important;
	    height: 250px !important;
	    background-size: 100%;
	    background-position: 0px center;
	    background-repeat: no-repeat;
	}
	.investor-relations {
	    height: auto;
	    min-height: 0;
	    padding: 0;
	}

	.intl-location-wrapper {
	    margin: 0 10px 20px 10px;
	}

}


/* 630 BREAK POINT */

@media only screen and (max-width: 630px) {

	.page-hero {
	    background-size: cover;
        min-height: 450px;
        margin-top: -200px;
        padding-top: 270px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
	}
    .page-hero h1 {
		font-size: 24px;
	}
	.page-hero p {
		font-size: 18px;
	}
    .flex-content-adj {
        margin: 280px auto 0 auto;
    }

}


/* 600 BREAK POINT */

@media only screen and (max-width: 600px) {

	.intl-location-wrapper {
		width: 90px;
		height: 66px;
	}
	.intl-location-wrapper p {
		display: none;
	}

	.footer-col1, .footer-col2, .footer-col3 {
		display: block;
		width: 100%;
	}
	.footer-col2, .footer-col3 {
		margin-top: 20px;
	}

}


/* 500 BREAK POINT */

@media only screen and (max-width: 500px) {

	.header-info {
		display: none;
	}
	.intl-location-wrapper {
		margin: 0 5px 10px 5px;
	}
	.footer-links, .footer-links a {
		font-size: 11px !important;
		margin-bottom: 5px;
	}
	.footer-copyright p {
	    font-size: 10px;
	}

}

/* 450 BREAK POINT */

@media only screen and (max-width: 450px) {

	ul.link-list {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	ul.link-list:last-of-type {
		margin-top: 20px;
	}

}





@media (min-width: 751px) {

  .nav-wrapper ul {
      margin-left: 20px;
  }
  .nav-wrapper li {
    float: left;
  }
  .nav-wrapper li a {
  	color: #FFFFFF;
    padding: 5px 20px;
    background-color: transparent;
  }
  .nav-wrapper .menu {
    clear: none;
    float: left;
    max-height: none;
  }
  .nav-wrapper .menu-icon {
    display: none;
  }

}