@charset "UTF-8";
/***** Carroll & Company CSS *****/

/* Brand Colors
Dark Navy: #1f2a33
Dark Slate Alt: #7c8498
CC Green: #2bb673 
Not-White Gray: #eff1f4
*/

*, *::before, *::after {
	box-sizing: border-box;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {cursor: pointer;}

a, a:visited {
	outline: none;
	text-decoration: none;
}

h1, h2, h3, h4 {
	font-weight: normal;
	font-style: normal;
	margin: 0;
}

body {
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1em;
	line-height: 1.5;
	color: #6b7584;
	background: #13191F;
	max-width: 1350px;
	margin: 0 auto;
}

main {background: white; margin-top: 60px;}		


/* Navigation Bar */

.nav-trigger {display: hidden;}

.brand {
	position: fixed;
	background: 300px 67px;
	top: 10px;
	margin-left: 35px;
	width: 300px;
	height: 67px;
	background-image: url(../images/cc-logo-full.svg);
	background-size: cover;
	z-index: 99;
	transition: all 0.3s ease-in-out;
}

.g-recaptcha {
	display: block;
	margin-bottom: 10px;
}

.nav-container {
	position: fixed;
	width: 100%;
	max-width: 1350px;
	height: auto;
	top: 0;
	z-index: 4;
	margin: 0;
	background: #1f2a33;
	transition: all ease .5s;
}

.nav {
	list-style-type: none;
	margin: 0;
	padding: 0 35px 0 0;
	float: right;
	background: none;
}

.nav li {
	margin: 0;
	background: none;
	float: left;
}

.nav li a {
	position: relative;
	display: inline-block;
	font-size: 0.85em;
	font-weight: 700;
	text-align: center;
	margin: 0;
	min-width: 70px;
	padding: 35px 12px;	
	height: 100%;
	color: white;
	transition: all 0.3s ease-in-out;
}

a.goff img {
	display: inline-block;
	width: 55px;
	height: 55px;
	padding: 0px;
	margin: -17.25px 0px;
}

a.goff-link {
	display: block;
	font-family: 'Saira', sans-serif;
	text-transform: uppercase;
	text-align: center;
	color: white;
	background: #BE1E2D;
	border-radius: 2px;
	padding: 20px;
	margin-bottom: 10px;
	transition: background 0.3s ease-in-out;
}

a.goff-link:hover {background: #2B3990;}

.nav li a:hover, 
.nav li a:active {background: rgba(0,0,0,0.3);}


.nav li a.active {background: rgba(0,0,0,0.3);}



/***** Homepage Slider *****/

.full-width-slider {
	position: relative;
	height: 525px;
	overflow: hidden;
	margin-top: 0px;
}

.slides {
	position: relative;
	height: 100%;
	background-color: #1f2a33;
}

.slides li {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: translateX(100%);
	transition: transform .5s;
	background: url(../images/slide1.jpg) no-repeat center center;
	background-size: cover;
}

.slides li:nth-of-type(2){
	background: url(../images/slide2.jpg) no-repeat center center;
	background-size: cover;
}

.slides li:nth-of-type(3){
	background: url(../images/slide3.jpg) no-repeat center center;
	background-size: cover;
}

.slides li:nth-of-type(4){
	background: url(../images/slide4.jpg) no-repeat center center;
	background-size: cover;
}

.slides li.selected {
	z-index: 2;
	transform: translateX(0);
}

.slides li.move-left {transform: translateX(-100%);}

.slides li.visible {z-index: 2;}

.slides li > div {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slides h2 {
	text-align: left;
	margin: 0 0 5px 0;
	font-size: 4.5em;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.9;
}

.slides p {
	display: inline-block;
	font-size: 1.15em;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	margin: 0 0 30px 0;
}

.slides a {
	display: inline-block;
	font-size: 1em;
	line-height: 1.1;
	text-align: center;
	color: white;
	background: #497aed;
	min-width: 60px;
	padding: 13px 15px;
	border-radius: 3px;
	margin: 0 10px 10px 0;
}

.slides a.current-auctions {background: #2bb673;}

.type-container {
	position: absolute;
	bottom: 15%;
	left: 40px;
}

.slider-navigation a {
	position: absolute;
	bottom: 0px;
	transform: translateY(-50%);
	right: 100px;
	height: 46px;
	width: 46px;
	/* text replace */
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	color: transparent;
	background: url(../images/icon-arrow.svg) no-repeat center center; 
	opacity: .6;
	transition: opacity .3s, visibility .3s;
	z-index: 3;
}

.slider-navigation a:hover {opacity: 1;}

.slider-navigation a.next {
	left: auto;
	right: 50px;
	transform: translateY(-50%) rotate(180deg);
}

.slider-dots-navigation {
	position: absolute;
	z-index: 3;
	bottom: 35px;
	left: 100px;
	transform: translateX(-50%);
}

.slider-dots-navigation li {
	display: inline-block;
	float: left;
	margin-right: 15px;
}

.slider-dots-navigation a {
	display: block;
	height: 14px;
	width: 14px;
	border: 2px solid white;
	border-radius: 50%;
	/* text replace */
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	color: transparent;
	transition: background-color .3s;
}

.slider-dots-navigation a.selected {background-color: white;}






/**** Subscribe ****/

.subscribe { background: #eff1f4;}

.subscribe h3 {
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-style: italic;
	font-size: 2.25em;
	margin: 0;
}

.subscribe input[type=text] {
	border: none;
	outline: none;
	width: 250px;
	border-radius: 4px;
	padding: 13px;
	color: #3a3c4b;
	margin-right: 10px;
}

.subscribe input[type=submit] {
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	outline: none;
	width: 100px;
	color: white;
	background: #2bb673;
	border-radius: 4px;
	padding: 10px;
}


.green-button {
	display: inline-block;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: white;
	background: #2bb673;
	padding: 13px;
	border-radius: 4px;
	margin-right: 15px; 
}

/**** LP Banners ****/
.lp-banner {
	display: table;
	width: 100%;
	height: 350px;
	text-align: left;
}

.banner-type {
	display: table-cell;
	font-size: 2em;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	vertical-align: bottom;
	padding: 35px;
	background: url(../images/slide2.jpg) no-repeat center center;
	background-size: cover;
	color: white;
}

/* Banner Background */

.banner-type.who {	
	background: url(../images/who-bg.jpg) no-repeat center center;
	background-size: cover;
}

.banner-type.what {	
	background: url(../images/what-bg.jpg) no-repeat center center;
	background-size: cover;
}

.banner-type.sponsors {	
	background: url(../images/sponsors-bg.jpg) no-repeat center center;
	background-size: cover;
}

.banner-type.goff {	
	background: url(../images/goff-bg.jpg) no-repeat center center;
	background-size: cover;
}

.banner-type.contact {	
	background: url(../images/contact-bg.jpg) no-repeat center center;
	background-size: cover;
}


.event-title {
	display: block;
	font-size: 1.5em;
	font-family: 'Saira', sans-serif; 
	font-weight: 700; 
	line-height: 1;
	padding-bottom: 10px;
}

span.ampersand {
	font-family: 'Libre Baskerville', serif;
	font-weight: 700;
}

span.elegance {
	font-size: 0.9em;
	text-transform: lowercase;
	letter-spacing: -0.5px;
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-style: italic;
}

ul.historic-events li {padding-right: 25px; margin-bottom: 50px; min-height: 540px;}

div.event-image {position: relative; width: 100%;}

span.sponsored-by {
	display: block;
	font-size: 0.8em;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px 0;
}

ul.historic-events li img.sponsor-logo {display: inline-block; width: 75px;}

ul.historic-events img {width: 100%; margin-bottom: 15px;}

span.photo-credit {
	position: absolute;
	bottom: 15px;
	left: 0;
	color: white;
	background: rgba(0,0,0,0.5);
	font-size: 0.8em;
	padding: 10px;
}


.hr {border-top: 4px solid #eff1f4;}
.hr-bottom {border-bottom: 4px solid #eff1f4;}

.green-bg {
	background: #2bb673;
	color: white;
}

.gray-bg {
	background: #eff1f4;
}


.links-container {
	width: 100%;
}

.links-container a {
	color: white;
	font-size: 1em;
	font-family: 'Saira', sans-serif;
	text-transform: uppercase;
	line-height: 1;
	display: inline-block;
	float: left;
	vertical-align: middle;
	text-align: center;
	background: url(../images/schedule-event.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	width: 50%;
	padding: 125px 20px;
	transition: all 0.3s ease-in-out;
}

.links-container a:nth-of-type(2) {
	background: url(../images/become-sponsor.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}

.links-container a:hover {
	background-position: top center;
}

.links-container a span.backtag {background: #1f2a33; padding: 10px;}


/**** Who We Are ****/

div.jc-bio {
	display: inline-block;
	position: relative;
	float: left;
}

.jc-bio h2 {
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
	margin-bottom: 15px;
}

img.jc-portrait {
	display: inline-block;
	height: 350px;
	min-height: 350px;
}

span.jc-name {
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
	background: rgba(0,0,0,0.5);
	font-size: 0.8em;
	padding: 10px;
}

span.who-logos {
	display: inline-block;
	color: #2bb673;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin: 15px 0;
}

span.headline {
	display: block;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.25em;
	line-height: 1;
	padding-bottom: 16px;
}

ul.bio-events {
	display: inline-block;
	float: left;
	padding: 35px 35px 35px 20px;
	color: #2bb673;
	background: #1f2a33;
	min-height: 350px;
}

ul.bio-events li {
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 7px;
}

a.show-bio {
	display: inline-block;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	color: white;
	background: #2bb673;
	padding: 15px;
	border-radius: 4px;
	margin: 15px 0;
}

/**** Contact Styles (Form and UL) ****/

ul.contact-info {
	margin-bottom: 30px;
}

.contact-info span {
	font-size: 1.25em;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #2bb673;
}


/**** Game On Flag Football ****/

p {font-size: 0.9em; line-height: 1.75;}


span.goff-register {
	display: inline-block;
	font-size: 0.85em;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	background: #be1e2d;
	color: white;
	padding: 10px 15px;
}

span.goff-highlight,
h2.goff-highlight {
	display: inline-block;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.5em;
	line-height: 0.9;
}

form.goff-form, 
form.contact-form {background: #eff1f4; padding: 20px;}

form.goff-form label, 
form.contact-form label {
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

form.goff-form input[type=text],
form.goff-form input[type=email],
form.goff-form input[type=tel],
form.goff-form textarea,
form.contact-form input[type=text],
form.contact-form textarea {
	display: block;
	outline: none;
	border: none;
	box-shadow: none;
	width: 100%;
	margin-bottom: 25px;
	padding: 15px;
}

form.goff-form textarea,
form.contact-form textarea {min-height: 200px;}

form.goff-form input[type=submit] {
	outline: none;
	border: none;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	padding: 15px 30px;
	background: #be1e2d;
	color: white;
}

form.contact-form input[type=submit] {
	outline: none;
	border: none;
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	padding: 15px 30px;
	background: #2bb673;
	color: white;
}


/**** Footer ****/

footer {background: #1f2a33;}

footer img {
	display: block;
	width: 75px;
	height: auto;
	margin: 0 auto 15px;
}

footer p {
	color: #7c8498;
}

footer ul {
	display: inline-block;
	list-style-type: none;
	color: #7c8498;
	margin-bottom: 20px;
	padding: 0;
	background: none;
}

footer span {
	font-family: 'Saira', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px;
	padding: 0;
	color: #2bb673;
}

footer ul {display: block;}

footer li {line-height: 1.5; margin-left: 0; font-size: 0.9em;}

footer a {
	padding: 10px 0;
	color: #7c8498;
	transition: 0.3s;
}

footer a:hover {color: #eff1f4;}




span.cc-copyright {
	display: block;
	text-align: center;
	font-size: 0.9em;
	text-transform: capitalize;
	letter-spacing: -0.5px;
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-style: italic;
}


/**** Tab Content ****/

.tabcontainer{height: auto;overflow: hidden;}

.tabcontent {
	display: none;
	-webkit-animation: fadeEffect 0.5s;
	animation: fadeEffect 0.5s; 
}

div.tab button,
div.tab button:focus {
	display: block;
	border:none;
	outline: none;
	background: none;
	padding: 10px 15px;
	margin-top: 5px;
}

div.tab button:before {
	display: inline-block;
	background-size: 10px 10px;
	width: 10px;
	height: 10px;
	content: "";
	border: 2px solid #2bb673;
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s;
}

div.tab button:hover::before,
div.tab button.active:before {
	background-size: 2px 10px;
	width: 10px;
	height: 2px;
	border: 2px solid #2bb673;
	border-radius: 2px;
	margin-bottom: 3px;
}

div.tab button.active {background: #eff1f4; border-radius: 3px;}


/***** Mobile Styling *****/

@media screen and (max-width: 950px) {
			
	.brand {
		position: fixed;
		top: 10px;
		margin-left: 15px;
		background: 175px 35px;
		width: 175px;
		height: 35px;
		background-image: url(../images/cc-logo-alt.svg);
		background-size: cover;
	}	

	.nav-trigger {
		position: fixed;
		z-index: 5;
		top: 25px;
		right: 25px;
		height: 44px;
		width: 44px;
		overflow: hidden;
		color: transparent;
		white-space: nowrap;
		text-indent: 100%;	
	}

	.nav-trigger span,
	.nav-trigger span::before,
	.nav-trigger span::after {
		position: absolute;
		width: 35px;
		height: 3.5px;
		background: #2bb673;
		border-radius: 2px;
	}

	.nav-trigger span {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: background .3s;
	}

	.nav-trigger span::before,
	.nav-trigger span::after {
		content:'';
		top: 0;
		left: 0;
		transition: background .3s, transform .3s;
	}

	.nav-trigger span::before {transform: translateY(-10px)}

	.nav-trigger span::after {transform: translateY(10px)}

	.nav-trigger:hover span,
	.nav-trigger:hover span::before,
	.nav-trigger:hover span::after {background: #2bb673;}

	.nav-open .nav-trigger span {background: transparent;}

	.nav-open .nav-trigger span::before,
	.nav-open .nav-trigger span::after {background: #2bb673;}

	.nav-open .nav-trigger span::before {transform: rotate(-45deg)}

	.nav-open .nav-trigger span::after {transform: rotate(45deg)}

	.nav-open .nav-container {transform: translateX(0);}

	.nav-container {
		position: fixed;
		overflow-y: scroll;
		-webkit-overflow-scrolling:touch;
		transform: translateX(-100%);
		transition: transform 0.3s;	
		width: 100%;
		height: 100vh;
		background: #2bb673;
		margin-top: 0px;
	}

	.nav {
		margin: 60px 0 0 0px;
		padding: 0;
		width: 100%;
		background: none;	
	}

	.nav li {float: left;width: 100%;}

	.nav li a {
		font-size: 1.15em;
		text-align: left;
		width: 100%;	
		padding: 15px 0 15px 20px;
		border-radius: 0px;
		border: none;
		color: white;
	}


	.nav li a:hover,
	.nav li a:active {background: rgba(0,0,0,0.1);}


	.full-width-slider {
		height: 400px;
		position: relative;
	}	

	.slider-dots-navigation {bottom: 25px;left: 80px;}	

	.slider-navigation a {
		height: 40px;
		width: 40px;
		bottom: -5px;
		right: 60px;
	}	

	.slider-navigation a.next {right: 20px;}

	.type-container {bottom: 15%; left: 20px; padding-right: 20px;}	

	.slides h2 {font-size: 2.75em; padding: 0;}

	.slides p {padding: 0 35px 10px 0; font-size: 0.9em;}

	.normalized {margin-top: 0px;}	

	.mobile-nav {
		position: fixed;
		top: 0;
		width: 100%;
		height: 60px;
		background: #2b363f;
		z-index: 4;
		box-shadow: 0px 1px 5px #1C1D23;
	}

	.nav-trigger {top: 10px;}

	span.image-helper {text-align: center; display: block; margin: 0 auto; padding: 10px;}	
	
	.links-container a {width: 100%;}	

	
	}

/* Smartphone */
@media screen and (max-width: 600px) {	
	
				
	.banner-type h2 {font-size: 1.25em; margin: 0;}
	
	ul.historic-events li {margin-bottom: 50px; min-height: 200px;}

	
	.subscribe h3 {font-size: 2em;}
	.subscribe input[type=button] {margin-top: 15px; }
		
}
/***** end of mobile styles *****/


/**** Animations *****/


/**** End of Animations *****/