/*------FONTS------*/



:root {
	/*------COLORS------*/
	
	/*nav bar colors*/
	--nav-text-color: #202020;
	--nav-hover: #202020;
	--nav-button-text-color: #ffffff;
	--nav-button-background-color: #40413f;
	
	/*TWO-BUTTON teaser and button colors*/
	--two-button-teaser-color: #ffffff;
	--two-button-teaser-background: #40413f;
	--hero-button-2-text-color: #000000;
	--hero-button-2-background-color: #eeeeee;
	
	/*hero colors*/
	--hero-headline-color: #202020;
	--hero-text-color: #202020;
	--hero-button-text-color: #ffffff;
	--hero-button-background-color: #40413f;
	--hero-link-color: #202020;
	--hero-background-color: #eeeeee;
	
	/*icon section colors*/
	--icon-headline-color: #202020;
	--icon-subhead-color: #202020;
	--icon-text-color: #202020;
	--icon-background-color: #ffffff;
	
	/*offer section colors*/
	--offer-headline-color: #202020;
	--offer-text-color: #202020;
	--offer-background-color: #eeeeee;
	
	/*apply section colors*/
	--apply-headline-color: #202020;
	--apply-text-color: #202020;
	--apply-link-color: #202020;
	
	/*Questions? bar colors*/
	--questions-text-color: #ffffff;
	--questions-link-color: #ffffff;
	--questions-background-color: #40413f;
	
	/*bottom nav colors*/
	--bottom-nav-color: #202020;
	--copyright-color: #666666;
	
	/*body text and colors - teaser, icon section, apply section*/
	--body-text-color: #202020;
	--body-link-color: #202020;
	
	
	
	/*------FONT-FACES------*/
	
	/*nav bar styles*/
	--nav-font: "mr-eaves-sans", sans-serif;
	--nav-weight: 700;
	--nav-text-transform: none;
	--nav-decoration: none;

	/*button styles*/
	--button-font: "mr-eaves-sans", sans-serif;
	--button-weight: 700;
	--button-text-transform: none;
	
	/*hero styles*/
	--hero-headline-font: "mr-eaves-sans", sans-serif;
	--hero-headline-weight: 700;
	--hero-headline-text-transform: none;
	
	/*sub headline styles - apply to Tools and Apply section headlines*/
	--subhead-font: "mr-eaves-sans", sans-serif;
	--subhead-weight: 700;
	--subhead-text-transform: none;
	
	/*icon subhead styles - apply to text directly below icons*/
	--icon-subhead-font: "mr-eaves-sans", sans-serif;
	--icon-subhead-weight: 700;
	--icon-subhead-text-transform: none;
	
	/*offer section styles*/
	--offer-headline-font: "mr-eaves-sans", sans-serif;
	--offer-headline-weight: 700;
	--offer-headline-text-transform: none;
	
	/*questions bar styles*/
	--questions-bold-text: 400;
	--questions-font: "mr-eaves-sans", sans-serif;
	--questions-link-font: "mr-eaves-sans", sans-serif;
	--questions-font-weight: 400;
	--questions-link-weight: 700;
	--questions-link-decoration: underline;
	
	/*bottom nav styles*/
	--bottom-nav-font:"mr-eaves-sans", sans-serif;
	--bottom-nav-font-weight: 400;
	--bottom-nav-hover: underline;
	
	/*body link styles*/
	--link-font:"mr-eaves-sans", sans-serif;
	--link-weight: 700;
	--link-decoration: underline;
	
	/*body text styles*/
	--body-text-font: "mr-eaves-sans", sans-serif;
	--body-text-weight: 400;
	--bold-font-weight: 700;
	
	
	
	/*------FONT SIZES AND LINE HEIGHTS - usually won't need to change------*/
	
	/*nav bar styles*/
	--nav-size: 18px;
	--nav-line-height: 22px;
	
	/*button styles*/
	--button-size: 20px;
	--button-line-height: 24px;
	
	/*hero styles*/
	--hero-headline-size: 36px;
	--hero-headline-line-height: 36px;
	--hero-text-size: 20px;
	--hero-text-line-height: 24px;

	/*icon section styles*/
	--icon-subhead-size: 20px;
	--icon-subhead-line-height: 24px;
	--icon-text-size: 18px;
	--icon-text-line-height: 22px;
	
	/*offer section styles*/
	--offer-headline-size: 26px;
	--offer-headline-line-height: 30px;
	--offer-disc-size: 14px;
	
	/*sub headline styles - apply to Tools and Apply section headlines*/
	--subhead-size: 24px;
	--subhead-line-height: 28px;
	
	/*body text styles*/
	--body-text-size: 19px;
	--body-text-line-height: 23px;
	
	
	
	
	/*------OTHER STYLES------*/
	--button-corners: 0;
	--nav-button-padding: 10px 25px;
	--button-border: 1px solid #202020;

}

/*-----TWO-BUTTON STYLES------*/
.two-buttons{
	display: block;
}
.one-button{
	display: none;
}
.two-button-teaser{
	background-color: var(--two-button-teaser-background)!important;
	margin: 0 auto;
	padding: 5px;
}
.two-button-teaser-text{
	color: var(--two-button-teaser-color)!important;
}
.second-button{
	background-color: var(--hero-button-2-background-color)!important;
	color: var(--hero-button-2-text-color)!important;
}
.two-button{
	margin: 15px 0!important;
	padding: 10px 35px!important;
}
.hero-content-container{
	flex-direction: column;
	margin-left: 0;
}
.break-text{
	display: none;
}

/*-----GENERAL STYLES-----*/
body{
	margin: auto;
	max-width: 1024px;
}

/*hide in mobile*/

.mobile {
	display: none;
}

h1, h2, h3, h4, h5, h6, p, a{
	margin: 0;
}
p {
	font-family: var(--body-text-font);
	font-weight: var(--body-text-weight);
	font-size: var(--body-text-size);
	line-height: var(--body-text-line-height);
	color: var(--body-text-color);
}
a {
	color: var(--body-link-color); 
	font-family: var(--link-font);
	font-weight: var(--link-weight);
	text-decoration: var(--link-decoration);
}

.bold-text{
	font-weight: var(--bold-font-weight);
}


h1 {		 /*HERO HEADLINE*/
	color: var(--hero-headline-color);
	font-family: var(--hero-headline-font);
	font-weight: var(--hero-headline-weight);
	text-transform: var(--hero-headline-text-transform);
	font-size: var(--hero-headline-size);
	line-height: var(--hero-headline-line-height);
}
h2{          /*icon and apply section headline -- offer section is also H2 but will have different styling; see individual section below*/
	font-size: var(--subhead-size);
	line-height: var(--subhead-line-height);
	font-weight: var(--subhead-weight);
	font-family: var(--subhead-font);
	text-transform: var(--subhead-text-transform); 
}
h3{        /*icon subheadlines*/
	font-size: var(--icon-subhead-size);
	font-weight: var(--icon-subhead-weight);
	font-family: var(--icon-subhead-font);
	line-height: var(--icon-subhead-line-height);
	color: var(--icon-subhead-color);
	text-transform: var(--icon-subhead-text-transform);
}

.nowrap {white-space: nowrap;}

.centered-text{
	text-align: center;
	margin: auto;
}
.text-container{
	padding: 40px 30px 40px 60px;
}
.flex-box{
	display: flex;
}
.section-container{
	padding: 40px 0;
	margin: auto;
}



/*------MOBILE NAV MENU STYLES------*/

/* Dropdown Button */
.mob-menu-btn {
  background-color: var(--nav-button-background-color);
  color: var(--nav-button-text-color);
  padding: 17px;
  font-size: 20px;
  border: none;
}

.dropbtn{
	cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	float: right;
	position: relative;
	display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #ffffff;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 100;
	right:0;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: var(--icon-section-text);
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover, .dropdown-content a:focus{
	background-color: var(--hero-background-color);
	color: var(--hero-text-color);
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}




/*------DESKTOP NAV MENU STYLES------*/

.nav-item{
	color: var(--nav-text-color);
	font-family: var(--nav-font);
	font-weight: var(--nav-weight);
	text-transform: var(--nav-text-transform);
	text-decoration: var(--nav-decoration);
	font-size: var(--nav-size);
	line-height: var(--nav-line-height);
	cursor: pointer;
	margin: 0 10px;
}

.desktop > .nav-item:hover{
	text-decoration: var(--bottom-nav-hover);
}

.nav-button{
	background-color: var(--nav-button-background-color);
	color: var(--nav-button-text-color);
	cursor: pointer;
	font-family: var(--button-font);
	font-weight: var(--button-weight);
	border-radius: var(--button-corners);
	font-size: var(--button-size);
	line-height: var(--button-line-height);
	border: none;
	padding: var(--nav-button-padding);
	text-transform: var(--button-text-transform);
	border: var(--button-border);
	
}






/*-----TEASER AND HERO SECTION STYLES-----*/


.hero-text{
	color: var(--hero-text-color);
	font-size: var(--hero-text-size);
	line-height: var(--hero-text-line-height);
}
.hero-text-container{
	width: 50%;
	align-self: center;
}
.hero-container{
	background-color: var(--hero-background-color);
	display: flex;
	
	
}
.hero-image{
	background-image: url("../images/Jordans/E779_TD_Jordans_hero.jpg");
	background-position: 50% 20%;
	background-repeat: no-repeat;
	background-size: cover;
	width: 50%;
	min-height: 500px;
}

.hero-button{
	background-color: var(--hero-button-background-color);
	color: var(--hero-button-text-color);
	cursor: pointer;
	font-family: var(--button-font);
	font-weight: var(--button-weight);
	border-radius: var(--button-corners);
	font-size: var(--button-size);
	line-height: var(--button-line-height);
	border: none;
	padding: 10px 55px;
	margin: 20px 0;
	text-transform: var(--button-text-transform);
	border: var(--button-border);
}
.hero-link{
	color: var(--hero-link-color);
	cursor: pointer;
}




/*-----ICON SECTION STYLES------*/

.icon-headline{
	color: var(--icon-headline-color);
}
.icon-text{
	color: var(--icon-text-color);
	padding: 10px 0 0;
}
.icon-section-container{
	background-color: var(--icon-background-color);
}
.icon-text-container {
	padding-top: 0!important; 
	padding-bottom: 30px;
}
.icon-subheadline{
	color: var(--icon-subhead-color);	
}
.three-col-container {
	align-items: flex-start;
	margin: 0 15px;
}
.column {
	width: 30%;
	align-self: flex-start;
	margin: 0 auto auto;
}

@media only screen and (max-width: 850px) {
	.three-col-container{
		flex-direction: column;
	}
	.column {
		width: 80%;
		max-width: 500px!important;
		margin: 20px auto;
	}
	.icon-text-container {
		padding-bottom: 10px!important;
	}
}



/*-----OFFER SECTION STYLES------*/
.offer-headline{
	color: var(--offer-headline-color);
	font-family: var(--offer-headline-font);
	font-weight: var(--offer-headline-weight);
	text-transform: var(--offer-headline-text-transform);
	font-size: var(--offer-headline-size);
	line-height: var(--offer-line-height);
}
.offer-text-container{
	width: 50%;
	align-self: center;
}
.offer-disc{
	font-size: 14px; 
	line-height: 18px;
}
.offer-image-container{
	width: 50%;
	background-image: url("../images/Jordans/E779_TD_Jordans_offer.jpg");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 400px;
}
.offer-container{
	background-color: var(--offer-background-color);
}
.offer-text{
	color: var(--offer-text-color);
}
.offer-text a{
	color: var(--offer-text-color);
}





/*-----APPLY SECTION STYLES------*/

.apply-headline{
	color: var(--apply-headline-color);
}
.apply-text{
	margin: 15px auto;
}

#apply div{
	margin: 0 15px;
}





/*-----QUESTION BAR STYLES------*/

.questions-container{
	background-color: var(--questions-background-color);
	padding: 15px;
}
.questions-text {
	color: var(--questions-text-color);
	margin: auto;
	text-align: center;
}
.questions-link {
	color: var(--questions-link-color);
}
.questions-bold{
	font-weight: var(--questions-bold-text);
}




/*-------FOOTER STYLES-------*/

.footer-menu-container{
	max-width: 660px;
	flex-wrap: wrap;
	justify-content: center;
}
.footer-menu-item {
	font-size: 16px;
	line-height: 20px;
	color: var(--bottom-nav-color);
	text-decoration: none;
	margin: auto;
	text-align: center;
	font-weight: var(--body-text-weight);
	margin: 10px;
}
.footer-menu-item:hover {	
	text-decoration: var(--bottom-nav-hover);
}
.copyright-text{
	margin: auto auto 15px;
	text-align: center;
	font-size: 14px;
	line-height: 18px;
	color: var(--copyright-color);
}



/*----MOBILE STYLES-----*/

@media only screen and (max-width: 900px) {
	.break-text{
		display: inline;
	}
}

@media only screen and (max-width: 700px) {
	.text-container{
		padding-left: 40px;
		padding-right: 30px;
	}
	
	/* HERO STYLES*/
	.hero-text-container{
		width: calc(50% - 60px);
	}

	
	/* GENERAL STYLES*/
	h1, h2, h3, p{
		text-align: center;
		margin-left: auto!important;
		margin-right: auto!important;
	}
	.mobile {
		display: block;
	}
	.desktop {
		display: none!important;
	}
	.text-container, .hero-text-container {
		padding: 40px 25px;
		width: calc(100% - 50px)!important;
	}
	
	
	/* NAV BAR STYLES*/
	.nav-item{
		margin: 0;
	}
	
	
	/* HERO STYLES*/
	.hero-container{
		flex-direction: column;
	}
	
	.hero-image{
		height: 430px;
		width: 100%!important;
	}
	
	.hero-elem-container, .hero-content-container{
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	
	/* OFFER STYLES */
	.offer-container{
		flex-direction: column;
	}
	.offer-text-container, .offer-image-container {
		width: 100%;
	}
	.offer-image-container{
		height: 400px;
	}
	
	.offer-padding > * {
		text-align: center;
		margin: auto;
	}
}

