
/*------------------TAG RESETS------------------*/
body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, th, td, article, aside, figure, footer, header, hgroup, menu, nav, img, section {
	margin: 0;
	padding: 0;
	border: 0;
}


/*------------------GLOBAL ELEMENTS------------------*/
html {
	-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
html, body {
	height: 100%;
}
body {
	font-family: 'Teko', sans-serif;
	background: #e7e7e7;
	color: #444;
	font-size: 16px;
	position: relative;
	overflow-x: hidden;
}
a:hover, a:active, a:focus, object, embed {
	outline: 0;
}
* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: rgba(0,0,0,0);
	tap-highlight-color: transparent;
	outline: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
hr {
	height: 1px;
	border-width: 0px;
	border-top: 1px solid #999999;
	margin: 0 0 3em 0;
}
.body-overflow-hide {
	overflow: hidden;
	width: 100%;
	height: 100%;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	color: #0070ca;
	text-decoration: none;
}
.container {
	overflow: hidden;
	position: relative;
}

/*------------------ANIMATION------------------*/
@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(60%, 0, 0);
		transform: translate3d(60%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(60%, 0, 0);
		transform: translate3d(60%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}


@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.6, .6, .6);
		transform: scale3d(.6, .6, .6);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.6, .6, .6);
		transform: scale3d(.6, .6, .6);
	}

	50% {
		opacity: 1;
	}
}

.slideInLeft, .slideOutLeft, .zoomIn, .zoomOutDown, .fadeInDown {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
}


/*------------------LOADER------------------*/
.loader {
	background: #ffffff;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.loader-icon {
	position: absolute;
	background: url("/img/loader-circle.svg?v2") no-repeat center center;
	background-size: 100%;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	padding: 0;
	margin-left: -50px;
	margin-top: -50px;
}
.loader-inline {
	position: absolute;
	background: url("/img/three-dots.svg?v2") no-repeat center center;
	background-size: 100%;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	padding: 0;
	margin-left: -50px;
	margin-top: -50px;
	z-index: 10;
}


/*------------------LAZY LOAD IMG------------------*/
.lazy-img {
	-webkit-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	min-width: 50px;
	min-height: 50px;
}
.lazy-img .loader-inline {
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
}


/*------------------BUTTONS------------------*/
.button {
	font-family: 'Teko', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.12em;
	letter-spacing: .02em;
	padding: .37em .8em;
	margin: 0;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	color: #ffffff;
	background-color: #c72033;
	border-radius: 2em;
	-webkit-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.button-sm {
	font-size: 13px;
}
.button-lg {
	font-size: 19px;
}
.button-xl {
	font-size: 21px;
}
.button-gray {
	background-color: none;
	border: 1px solid #999999;
	color: #999999;
}
.button-angle-right {
	font-family: 'Teko', sans-serif;
	color: #999999;
	-webkit-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.button-angle-right i {
	font-size: .86em;
}
.buttons-in-row {
	margin: 0 .5em .5em .5em;
}
/*------------------POPUP BOX------------------*/
.popup {
	display: none;
	height: 100%;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	position: fixed;
	z-index: 10;
	top: 0;
	left:0;
	padding: 2em 1em;
	margin: 0;
	background: #ffffff;
	-webkit-transition: all .5s cubic-bezier(.18,.48,.44,.96);
	-moz-transition: all .5s cubic-bezier(.18,.48,.44,.96);
	-ms-transition: all .5s cubic-bezier(.18,.48,.44,.96);
	-o-transition: all .5s cubic-bezier(.18,.48,.44,.96);
	transition: all .5s cubic-bezier(.18,.48,.44,.96);
}
.popup-container {
	position: static;
	height: 100%;
	width: 100%;
}
.popup-close {
	position: absolute;
	color: #a3a3a3;
	top: 0;
	right: 0;
	font-size: 1.2em;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: block;
	text-align: center;
	box-sizing: border-box;
	z-index: 10;
	background: #ffffff;
	cursor: pointer;
	border-radius: 100%;
}
.popup-content {
	height: 100%;
	width: 100%;
	position: relative;
}
.popup-content-inside {
	display: block;
	color: #747773;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0em;
	padding: 0;
	position: relative;
}
.popup h1 {
	font-family: 'Teko', sans-serif;
	font-size: 1.6em;
	font-weight: normal;
	margin: 0 0 .8em 0;
	letter-spacing: .02em;
	text-align: center;
	text-transform: uppercase;
}
.popup h3 {
	font-size: 1.18em;
	line-height: 1.3em;
	font-weight: normal;
	margin: 0 0 1em 0;
	letter-spacing: .02em;
}
.popup p {
	font-size: .92em;
	line-height: 1.7em;
	margin: 0 auto 1.7em auto;
	letter-spacing: .02em;
}
.popup .iframe-wrapper {
	position: absolute;
	right: 0; 
	bottom: 0; 
	left: 0;
	top: 0;
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	padding: 1em 0;
}
.popup .iframe {
	width: 100%;
	height: 99%;
}
.popup .emailFrameSize {
	width: 100%;
	min-height: 99%;
}
.popup .content-details {
	padding: 1.5em;
}
.popup .popup-content-team{
	padding: 1em;
}
.popup .popup-content-team h1 {
	font-size: 3em;
	margin-bottom: .6em;
}
.popup .popup-content-team h3 {
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 1.3em;
}

/*------------------HEADER------------------*/
/* mobile bar */
#mobile-nav-bar {
	width: 100%;
	z-index: 3;
	position: relative;
	top: 0;
	left: 0;
	background-color: #fff;
	height: 60px;
}
#mobile-nav-bar.scrolled {
	position:fixed;
	background: rgba(43,43,86,.95);
	z-index: 9;
	height: 60px;
}
#mobile-nav-bar.scrolled .logo-home {
	width: 120px;
	position: absolute;
	left: 1.5em;
	top: 1em;
}
#mobile-nav-bar .logo-home {
	width: 120px;
	position: absolute;
	left: 1.5em;
	top: 1em;
}
#mobile-nav-bar .mobile-nav-button {
	position: absolute;
	top: .16em;
	right: .05em;
	font-size: 2.8em;
	color: #000000;
	padding: 0;
	cursor: pointer;
}
.mobile-nav-tickets {
	position: absolute;
	font-size: .94em;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	line-height: 1em;
	color: #ffffff;
	text-transform: uppercase;
	padding: 1.2em .6em 1.2em 1.2em;
}
.mobile-nav-tickets i {
	font-size: 1.3em;
	padding-right: .1em;
}
.logo-wrap {
	max-width: 1345px;
	margin: 0 auto;
	position: relative;
}

.header-wrap {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 9;
	top: 0;
	left: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	background: #ffffff;
	background-image: url('/img/golf-bg2.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: none;
}
.showMobileNav {
	display: block;
}
.close-mobile-nav {
	display: none;
	position: absolute;
	top: .8em;
	right: .6em;
	font-size: 1.6em;
	color: #000000;
	padding: 0;
	cursor: pointer;
}
.close-mobile-nav.fadeIn {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
}
.header-wrap .logo-home {
	text-decoration: none;
	background-size: 220px;
	width: 160px;
	display: block;
	position: absolute;
	margin-left: -80px;
	left: 50%;
	top: 3em;
}
/* utility */
.utility-wrap {
	position: relative;
	width: 100%;
	background: #d6007f;
}
.utility {
	font-family: 'Teko', sans-serif;
	text-align: center;
	margin: 0 auto;
	max-width: 1000px;
	padding: .4em 1em;
	color: #fff;
}
.utility a {
	color: yellow;
}
.utility .notification {
	font-size: 1.1em;
	font-weight: normal;
	line-height: 1.2em;
	display: inline-block;
}
.utility .noti-korean {
	font-size: .8em;
	font-weight: normal;
	line-height: 1.4em;
	display: inline-block;
}
.utility .util-hide-in-mobile {
	display: none;
}


/* main menu */
#menu {
	text-align: center;
	padding: 9em .2em 1em .2em;
}
#menu ul {
	list-style: none;
}
#menu li a {
	text-align: center;
	font-family: 'Teko', sans-serif;
	font-weight: 400;
	display: block;
	text-decoration: none;
	text-align: center;
	font-size: 2.8em;
	line-height: 1em;
	color: #000;
	padding: .15em 0;
	position:relative;
	letter-spacing: 0.04em;
	z-index: 1;
}
#menu .button-account {
	font-family: 'Teko', sans-serif;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	letter-spacing: .02em;
	color: #379055;
	display: inline-block;
	margin: 0 auto;
	line-height: 2em;
	font-size: 1.6em;
	padding: .1em 1.1em 0 1.1em;
	border-radius: 2em;
	border: .1em solid #379055;
	margin-top: .8em;
}

/*------------------HEAD MAST------------------*/
.mast-wrap {
	position: relative;
	z-index: 1;
	background-color: #fff;
}
#head-mast {
	width: 100%;
	visibility: hidden;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.head-mast {
	height: 200px;
}

/* sub page */
.mast-subpage {
	height: 140px;
}
.mast-medium {
	height: 140px;
}
.mast-event {
	height: 400px;
}
.mast-content {
	position: absolute;
	width: 100%;
	z-index: 2;
	text-align: center;
	display: block;
	position: relative;
	top: 45%;
	transform: translateY(-50%);
}
.mast-event-logo {
	max-width: 300px;
	margin: 0 auto 2em auto;
	filter: drop-shadow(0 .26em .26em rgba(0,0,0,0.7));
	-webkit-filter: drop-shadow(0 .26em .26em rgba(0,0,0,0.7));
	-moz-filter: drop-shadow(0 .26em .26em rgba(0,0,0,0.7));
}

.mast-content a.button {
	background-color: rgba(250,250,250, .8);
	color: #c72032;
	margin-bottom: 1em;
}
.mast-content .register-passcode {
	color: #ffffff;
	font-size: .8em;
	line-height: 1.2em;
	margin: 0 auto 1em auto;
	background-color: #c72032;
	display: inline-block;
	padding: .5em .8em;
	border-radius: .2em;
}
.mast-nrg-logo {
	background-image: url("/img/sprites.png");
	text-decoration: none;
	background-size: 430px;
	background-position: 0 276px;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 .1em .1em rgba(0,0,0,0.7));
	-webkit-filter: drop-shadow(0 .1em .1em rgba(0,0,0,0.7));
	-moz-filter: drop-shadow(0 .1em .1em rgba(0,0,0,0.7));
	width: 140px;
	height: 28px;
}

/* error */
.mast-error {
	background-image: url("/uploads/2019/04/header-stadium-2019.jpg");
	height: 160px;
}

#head-mast svg {
	position: absolute;
	bottom: -1px;
	width: 100%;
	height: 10vw;
	/* set height to pixels if you want angle to change with screen width */
}


/* events */
.mast-events {
	background-image: url("/img/bg-mast-events4.jpg");
}
.mast-kickoff-crawl {
	background-image: url("/img/bg-mast-kickoff-crawl2.jpg");
}
.mast-fan-fest {
	background-image: url("/img/bg-mast-fan-fest.jpg");
}
.mast-tailgate {
	background-image: url("/img/bg-mast-tailgating2.jpg");
}

.mast-subpage {
	background-image: url("/uploads/2019/04/header-stadium-2019.jpg");
}

/* stadium */
.mast-stadium {
	background-image: url("/uploads/2019/04/header-stadium-2019.jpg");
}

/* trip */
.mast-trip {
	background-image: url("/uploads/2019/04/header-houston-2019b.jpg");
}

/* media */
.mast-media {
	background-image: url("/uploads/2019/04/header-stadium-2019.jpg");
}

/* news */
.mast-news {
	background-image: url("/uploads/2019/04/header-stadium-2019.jpg");
}

/* about */
.mast-about {
	background-image: url("/uploads/2019/04/header-stadium-2019.jpg");
}

/* community */
.mast-community {
	background-image: url("/uploads/2019/04/header-stadium-2019.jpg");
}
.mast-golf {
	background-image: url("/img/bg-mast-golf3.jpg");
}
.mast-gridiron {
	background-image: url("/img/bg-mast-gridiron.jpg");
}


/*------------------SECTIONS------------------*/

.section {
	background: #ffffff;
}
.section-gray {
	background: #e7e7e8;
}
.section-bg-white {
	background: #ffffff;
}
.section-content {
	max-width: 37.7em;
	padding: 3em 1.5em;
	margin: 0 auto;
	position: relative;
}
.section-content h1 {
	font-family: 'Teko', sans-serif;
	font-size: 2.4em;
	line-height: .87em;
	font-weight: 600;
	padding: 0;
	margin: 0 0 1em 0;
	text-align: center;
	text-transform: uppercase;
	color: #444;
}
.section-content h2 {
	font-family: 'Figtree', sans-serif;
	font-size: .96em;
	line-height: 1.7em;
	color: #666;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0;
	margin: 0 0 .2em 0;
}
.section-content h3 {
	color: #777;
		font-weight: 500;
	text-transform: uppercase;
		font-size: 1.5em;
	}
.section-content p, .section-content ul, .section-content ol {
	font-family: 'Figtree', sans-serif;
	font-size: .96em;
	font-weight: normal;
	line-height: 1.7em;
	margin: 0 auto 1.7em auto;
	color: #666;
}

.section-content > *:last-child {
	margin-bottom: 0;
}
.section-content ul, .section-content ol {
	list-style-type: circle;
	padding: 0 0 0 2em;
}
.section-content ol {
	list-style-type: decimal;
}
.section-content li {
	line-height: 1.6em;
}
.section-content .list-para li {
	margin-bottom: 1em;
}
.section-content ul ul, .section-content ol ol {
	font-size: .96em;
}
.section-content iframe {
	width: 100%;
	max-width: 840px;
}


.section-products {
	max-width: 770px;
}
.product-list {
	margin: 3em auto;
}
.product-list-item {
	margin-bottom: 4em;
}
.product-list-item:last-of-type {
	margin-bottom: 0;
}
.list-all-clubs {
	text-align: center;
}
.list-all-clubs .product-list-item {
	display: inline-block;
}
.section-products h2 {
	color: #379055;
	font-size: 1em;
	line-height: 1.5em;
			text-align: center;
	margin-bottom: .6em;
}
.section-products p {
		max-width: 40em;
		margin-left: 0;
	}
.simple-text-blocks {
	margin: 0 auto;
	padding: 2em 0 0 0;
	display: inline-block;
	width: 100%;
}
.simple-text-block {
	max-width: 38em;
	margin: 0 auto 1em auto;
	text-align: left;
}
.simple-text-block p {
	font-size: .95em;
}
.simple-text-block a {
	font-size: .92em;
	text-decoration: none;
}
.simple-text-block a.button {
	margin-top: .5em;
}
.simple-text-row {
	max-width: 38em;
	margin: 0 auto;
}

/* gallery */
.lightbox-gallery {
	text-align: center;
	background-color: #ffffff;
	margin: 0 auto 2em auto;
	text-align: center;
}
.lightbox-gallery a {
	display: inline-block;
	margin: 0;
	padding: .3em .3em 0 .3em;
	vertical-align: top;
	background-color: #ffffff;
	text-align: center;
	-webkit-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-box-shadow: 0 0 .75em rgba(000,000,000,0.2);
	-webkit-box-shadow: 0 0 .75em rgba(000,000,000,0.2);
	box-shadow: 0 0 .75em rgba(000,000,000,0.2);
}
.lightbox-gallery span.gallery-title {
	font-size: .9em;
	line-height: 2em;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
}
.lightbox-gallery a:hover {
	text-decoration: none;
}
.lightbox-gallery.gallery-tn-small {
	padding: .5em;
	-webkit-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: box-shadow .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-box-shadow: 0 0 .75em rgba(000,000,000,0.2);
	-webkit-box-shadow: 0 0 .75em rgba(000,000,000,0.2);
	box-shadow: 0 0 .75em rgba(000,000,000,0.2);
}
.lightbox-gallery.gallery-tn-small a {
	display: inline-block;
	width: 140px;
	height: 140px;
}
.lightbox-gallery img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	height: auto!important;
	width: auto!important;
}
.lightbox-gallery.gallery-tn-small img {
	display: inline-block;
}
/* site map */
.site-map-cols {
	text-align: left;
}
.site-map-col {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	padding: 0 0 1em 0;
	width: 100%;
}
.site-map-col h2 {
	margin-bottom: .4em;
}
.site-map-col li {
	line-height: 1.3em;
	margin-bottom: .6em;
}

/* about */


.list-columns {
	padding: .5em 0;
	border: .2em solid rgba(0,0,0,.2);
	margin: 0 auto;
}
.list-columns ul {
	list-style: none;
	padding: 0 1em;
	display: inline-block;
	margin: 0;
	width: 100%;
	max-width: 25em;
	text-align: left;
	vertical-align: top;
}
.section-ride-share .scene {
	display: none;
}



.hoverIcon {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	color: #ffffff;
	text-align: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.2);
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-ms-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

/* content elements */
.heading-classy {
	text-align: center;
	position: relative;
	font-size: 1.22em;
	line-height: 1em;
	height: 2em;
	border-top: 1px solid #000000;
	margin: 0 auto;
}
.heading-classy h3 {
	display: inline-block;
	font-family: 'Teko', sans-serif;
	font-weight: normal;
	text-align: center;
	position: absolute;
	z-index: 1;
	background: #ffffff;
	padding: 0 .3em;
	letter-spacing: .07em;
	position: relative;
	top: -.5em;
}
.inline-img {
	margin: 1em;
	max-width: 120px;
}
.inline-img-right {
	margin: 0 0 1em 1em;
	float: right;
}

.section-content .columns {
	margin: 0 0 3em 0;
	padding-top: 1em;
}
.columns .column {
	display: inline-block;
	vertical-align: top;
}
.columns .column h2 {
	font-family: 'Teko', sans-serif;
	font-size: 2em;
	line-height: 1em;
	font-weight: bold;
	margin: 0 0 .3em 0;
	color: #ef483e;
	text-align: center;
}
.columns .column-sec h2 {
	color: #004b8d;
}
.columns .column-x2 {
	width: 49%;
	padding: 0 .2em;
	display: inline-block;
}
.columns .column a {
	font-size: 1.6em;
	font-family: 'Teko', sans-serif;
	background: #cccccc;
	font-weight: normal;
	padding: .5em .4em;
	display: block;
	margin: 0 0 .8em 0;
	text-align: center;
	line-height: .92em;
	color: #000000;
	border-radius: .2em;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.columns .column-sec a {
	background: #000000;
	color: #cccccc;
}
.column img {
	max-height: .94em;
	max-width: .94em;
	display: inline-block;
	background: #ffffff;
	border-radius: 100%;
	padding: .1em;
	text-align: center;
	vertical-align: bottom;
	margin-right: .1em;
}



/*------------------FOOTER------------------*/
#footer {
	max-width: 1345px;
	margin: 0 auto;
	padding: 3em 1em 1em 1em;
	position: relative;
	text-align: center;
}
.special-notice {
	color: #fff;
	background-color: #379055;
	padding: .6em;
	margin: 0 auto 2em auto;
	max-width: 20em;
	border: .5em double #e7e7e7;
}
.special-notice h3 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.2em;
}
.special-notice p {
	font-family: 'Figtree', sans-serif;
	font-size: .82em;
	line-height: 1.3em;
	margin: 0 0 .75em 0;
}
.special-notice .free-shipping {
	font-weight: bold;
	font-size: 1.1em;
	margin: 0;
}
.footer-column {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	padding: 0;
	margin: 0 0 2em 0;
}
/* Company info */
.company-info {
	text-align: center;
	color: #555;
}
.company-info a {
	color: #379055;
}
.company-logo {
	width: 160px;
	display: block;
	margin: 0 auto 1.5em auto;
	text-decoration: none;
	filter: grayscale(1);
}
.company-info p {
	font-size: 1.5em;
	line-height: 1.14em;
	font-weight: 400;
}

/* email sign up */
.email-sign-up {
	display: inline-block;
	padding: 0;
}
.email-sign-up a.button-footer-newsletter {
	display: inline-block;
	font-size: 1.3em;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1em;
	letter-spacing: 0.02em;
	padding: .6em 1.2em .5em 1.2em;
	color: #eee;
	background-color: #555;
	margin-bottom: .3em;
	border-radius: 3em;
	-webkit-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}


/* footer links */
.footer-links {
	margin: 0 auto 2em auto;
	max-width: 100%;
}
.footer-links ul {
	list-style: none;
}
.footer-links li {
	display: inline-block;
}
.footer-links li a {
	font-size: 1.05em;
	font-weight: 300;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 1.6em;
	letter-spacing: 0.02em;
	color: #555;
	padding: 0 .25em;
	-webkit-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
/* boilerplate */
.boilerplate {
	font-size: 1em;
	font-weight: 300;
	line-height: 1.4em;
	color: #777;
}
.boilerplate a {
	color: #777;
	text-decoration: none;
	-webkit-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-ms-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: color .2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}


/*------------------HELPER CLASSES------------------*/
/* clearfix */
.group:after {
	content: " ";
	display: table;
	clear: both;
}
.group {
	*zoom: 1;
}
.clearBoth {
	clear: both;
}
.hidden, .clear-break-sm {
	display:none;
} /* create diff ani duration for even .vis class */
.bounceIn:nth-child(even) {
	animation-duration: 1s; /* So they look staggered */
}
.green {
	color: #75a219;
}
.red {
	color: #c72033;
}
.blue {
	color: #1f355e;
}
.dark-gray {
	color: #444445;
}
.black {
	color: #000000;
}
.nowrap {
	white-space: nowrap;
}
.align-center {
	text-align: center;
}
.align-left {
	text-align: left;
}
.align-right {
	text-align: right;
}
.float-left {
	float: left;
	margin: .6em;
}
.float-right {
	float: right;
	margin: .6em;
}
.float-none {
	float: none;
}
.browsehappy, .javaScriptHelp {
	font-family: 'Teko', sans-serif;
	font-size: 1em;
	color: #444444;
	text-align: center;
	padding: .5em;
	line-height: 1.3em;
	background: #fff542;
	border-bottom: 1px solid #444444;
}
.browsehappy a, .javaScriptHelp a {
	color: #26a0fb;
	text-decoration: none;
}
.blur {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}
.video-youtube {
	width: 100%;
	max-width: 640px;
	max-height: 532px;
	margin: 2em auto;
}
.video-youtube iframe {
	width: 100%;
	max-width: 946px;
}
.video-placeholder {
	position: relative;
	text-shadow: 0 0 .3em rgba(0, 0, 0, .5);
}
.video-placeholder i {
	position: absolute;
	color: rgba(255,255,255,.85);
	font-size: 2em;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	padding: 0;
	margin-left: -25px;
	margin-top: -25px;
	z-index: 2;
	text-align: center;
	pointer-events: none;
}
.video-local {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 2em auto;
}
.video-local video {
	width: 100%;
	height: auto;
}
.preloadBgDesktop {
	display: none;
}
.prevent-click {
	cursor: default;
}

/*-----COOKIE------*/

.cookie-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	text-align: center;
	display: none;
	font-family: 'Figtree', sans-serif;
	letter-spacing: 0;
}
.cookie-notification {
	background-color: rgba(255,255,255,1);
	color: #333;
	position: relative;
	bottom: 1em;
	left: 0;
	font-size: 1em;
	width: 90%;
	max-width: 36em;
	font-weight: 400;
	padding: .8em;
	margin: 0 auto;
	text-align: center;
	line-height: 1.6em;
	border-radius: .4em;
	-moz-box-shadow: 0 .2em .8em rgba(000,000,000,0.45);
	-webkit-box-shadow: 0 .2em .8em rgba(000,000,000,0.45);
	box-shadow: 0 .2em .8em rgba(000,000,000,0.45);
}
.cookie-notification a {
	color: #333;
	text-decoration: underline;
}
.cookie-notification .close {
	margin: .5em ;
	font-size: .9em;
	font-weight: bold;
	color: #fff;
	background: #666;
	padding: .7em;
	line-height: 1em;
	display: block;
	border-radius: .25em;
	cursor: pointer;
	text-transform: uppercase;
}
.cookie-notification .close:hover {
	background: #000;
}




@media (min-width: 360px) {

	.utility .util-hide-in-mobile {
		display: inline-block;
	}

}


@media (min-width: 570px) {

	.head-mast {
		height: 250px;
	}

	/* sub page */
	.mast-subpage {
		height: 200px;
	}
	.mast-medium {
		height: 200px;
	}
	.mast-event {
		height: 500px;	
	}
	.mast-content {
		top: 50%;
	}

	/*------------------SECTION------------------*/


	.section-content {

	}

	/* about */


	/* gallery */
	.lightbox-gallery {

	}
	.lightbox-gallery a {
		padding: .75em .75em 0 .75em;
	}
	.lightbox-gallery.gallery-tn-small {
		padding: 1em;
	}
	.lightbox-gallery.gallery-tn-small a {
		margin: .4em;
	}

	/* site map */
	.site-map-col {
		width: 49%;
		padding: 0 1em 0 1em;
	}


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

.footer-links li a {
	font-size: 1.25em;
	padding: 0 .45em;
	letter-spacing: .04em;
}
	.clear-break-sm {
		display: block;
	}
}


@media (min-width: 570px) and (min-height: 570px) {
	.popup {
		max-width: 560px;
		max-height: 560px;
		top: 50%;
		left:50%;
		margin-top: -280px;
		margin-left: -280px;
		-moz-box-shadow: 0 0 .7em rgba(000,000,000,0.25);
		-webkit-box-shadow: 0 0 .7em rgba(000,000,000,0.25);
		box-shadow: 0 0 .7em rgba(000,000,000,0.25);
	}

}


@media (min-width: 840px) and (min-height: 640px) {

	.popup {
		max-width: 800px;
		max-height: 600px;
		margin-top: -300px;
		margin-left: -400px;
	}
	.popup h1 {
		font-size: 2em;
	}
	.popup h3 {
		font-size: 1.5em;
	}
	.popup p {
		font-size: 1.1em;
	}
	.popup .popup-content-team h1 {
		font-size: 3.8em;
	}
	.popup .popup-content-team h3 {
		font-size: 1.4em;
	}
}



@media (min-width: 920px) {

	/*------------------BUTTON------------------*/
	.button {
		font-size: 18px;
	}
	.button-sm {
		font-size: 15px;
	}
	.button-lg {
		font-size: 21px;
	}
	.button-xl {
		font-size: 25px;
	}


	/*------------------HEADER------------------*/
	#mobile-nav-bar {
		display: none;
	}
	.header-wrap {
		width: 100%;
		background-color: #fff;
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0)), url('/img/bg-course-edge.jpg');
		background-position: center;
		background-size: cover;
		display: block;
		position: relative;
		overflow: visible;
		height: 200px;
	}
	.header-about {
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0)), url('/img/bg-home.jpg');
	}
	.header-contact {
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0)), url('/img/bg-golf-ball.jpg');
	}
	.header-bags {
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0)), url('/img/bg-water.jpg');
	}
	.header-womens {
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0)), url('/img/bg-womens.jpg');
	}
	.header-mens {
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0)), url('/img/bg-mens.jpg');
	}
	.header-all-clubs {
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0)), url('/img/bg-mens2.jpg');
	}
	.scrolled {
		position:fixed;
		background: rgba(43,43,86,.95);
	}
	.logo-wrap {
		max-width: 920px;
		margin: 0 auto;
	}
	.header-wrap .logo-home {
		width: 160px;
		top: 1em;
		left: 1.5em;
		margin: 0;
		padding: 0;
		z-index: 2;
	}
	.header-wrap .mobile-nav-tickets,
	.header-wrap .close-mobile-nav {
		display: none;
		top: -9999em;
	}

	/* utility */
	.utility-wrap {

	}

	.utility {
		max-width: 1200px;

	}
	.utility a {

	}
	.utility a:after {

	}
	.utility .notification {

	}
	.utility .noti-korean {

	}


	/* main menu */
	#menu {
		max-width: 920px;
		margin: 0 auto;
		padding: 1em 0 0 10.5em;
		position: relative;
	}
	#menu ul {
		list-style: none;
		text-align: center;
		display: inline-block;
	}
	#menu li {
		display: inline-block;
	}
	#menu li a {
		font-size: 1.46em;
		line-height: 1em;
		padding: 0;
		margin: .8em .5em;
	}
	#menu .button-account {
		position: relative;
		font-size: 1em;
		right: -1em;
		top: -.18em;
		margin: 0;
		text-transform: uppercase;
		vertical-align: middle;
	}
	#menu li .current {
		color: #c72033;
	}
	#menu li:last-of-type {
		padding-right: 0;
	}
	#menu li.menu-home {
		display: none;
	}

	/*------------------HEAD MAST------------------*/

	.head-mast {
		height: 340px;
	}

	/* sub page */
	.mast-subpage {
		height: 200px;
	}
	.mast-medium {
		height: 200px;
	}
	.mast-event {
		height: 700px;	
	}
	.mast-content {
		top: 45%;		
	}
	.mast-event-logo {
		max-width: 600px;
	}
	.mast-content a.button {
		font-size: 1.3em;
	}

	/*------------------SECTION------------------*/	

	.section-content {
		max-width: 39.7em;
		padding: 5em 0;
	}
.section-content h1 {
		font-size: 3em;
	}
	.section-content h2, .section-content p, .section-content ul {
		font-size: 1.1em;
	}
	.section-content h3 {
		font-size: 2em;
	}
	.section .section-subhead {
		font-size: 1.6em;
	}
	.section-content .para-lg {
		font-size: 1.32em;
	}
	.section-content .para-xl {
		font-size: 1.62em;
	}
	.section-content .para-styled {
		font-size: 1.46em;
	}
	.section-content .para-head {
		font-size: 1.9em;
	}
	
	.section-products {
	max-width: 770px;
}
	.section-products h2 {
		font-size: 1.6em;
	}
	.list-all-clubs .product-list-item {
	width: 49%;
}
	.simple-text-blocks {
		max-width: 920px;
	}
	.simple-text-block {
		max-width: 49%;
		display: inline-block;
		vertical-align: top;
		text-align: left;
		padding: 0 1.8em;
		float: left;
	}
	.simple-text-block p {
		font-size: 1.08em;
	}
	.simple-text-row {
		max-width: 51em;
	}

	/* site map */
	.site-map-col {
		width: 32%;
	}

	/* about */

	/* stadium */
	.google-maps {
		height: 360px;
	}

	.list-columns {
		padding: 1em 0;
		text-align: center;
	}
	.list-columns ul {
		width: auto;
		max-width: auto;
	}



	/* about us */

	/* content elements */
	.heading-classy {
		font-size: 1.7em;
	}
	.inline-img {
		max-width: 100%;
	}


	/*------------------FOOTER------------------*/
	#footer {
		padding: 3em .5em;
	}
	.special-notice {
		font-size: 1.4em;
		margin-bottom: 0;
	}
	.footer-column {
		width: 27em;
		margin: 3em 0;
		vertical-align: middle;
	}
	/* company info */
	.company-info {
		border-right: 1px solid rgba(0,51,30,.5);
		padding: .5em 0;
	}
	.company-logo {
		width: 170px;
		margin: 1em auto;
	}
	/* email sign up */
	.email-sign-up {

	}

	/* social */
	.social-footer {
		text-align: left;
		margin-left: 4em;
	}
	.social-footer a {
		font-size: 1.4em;
		margin: 0 .2em 0 0;
	}
	.footer-links {
		margin-bottom: 2.3em;
	}
	.footer-links li a {
		font-size: 1.36em;
		padding: 0 .8em;
	}
	.boilerplate {
		font-size: 1.16em;
	}


	/*------------------HELPER CLASSES------------------*/
	.video-youtube {
		max-width: 946px;
		margin: 4em auto;
	}
	.video-youtube iframe {
		max-width: 946px;
		height: 532px;
	}
	.video-placeholder i {
		font-size: 3em;
		width: 80px;
		height: 70px;
		margin-left: -40px;
		margin-top: -35px;
	}
}


@media (min-width: 1030px) {
	a:hover {
		text-decoration: underline;
	}
	.popup-close:hover {
		color: #000000;
	}
	.hoverIcon i {
		position: absolute;
		font-size: 40px;
		height: 40px;
		width: 40px;
		top: 50%;
		left: 50%;
		margin-top: -20px;
		margin-left: -26px;
	}
	.team-photo:hover .hoverIcon {
		opacity: .6;
	}

	/*------------------BUTTONS------------------*/
	.button:hover {
		background-color: #ffffff;
		color: #0c107b;
		text-decoration: none;
		-moz-box-shadow: 0 .1em .2em rgba(000,000,000,0.3);
		-webkit-box-shadow: 0 .1em .2em rgba(000,000,000,0.3);
		box-shadow: 0 .1em .2em rgba(000,000,000,0.3);
	}
	.button-gray:hover {
		background-color: none;
		border-color: #666666;
		color: #666666;
		text-decoration: none;
		-moz-box-shadow: 0 0 0 rgba(000,000,000,0);
		-webkit-box-shadow: 0 0 0 rgba(000,000,000,0);
		box-shadow: 0 0 0 rgba(000,000,000,0);
	}
	.button-angle-right:hover {
		color: #eca516;
	}

	/*------------------HEADER------------------*/
	.utility a:hover {
		text-decoration: none;
	}
	.utility a:hover:after {
		width: 100%;
		height: 100%;
		position: absolute;
		left: -2px;
		top: 0;
		background: rgb(93,97,108);
		background: -moz-linear-gradient(top, rgba(93,97,108,1) 0%, rgba(43,44,50,1) 100%);
		background: -webkit-linear-gradient(top, rgba(93,97,108,1) 0%,rgba(43,44,50,1) 100%);
		background: linear-gradient(to bottom, rgba(93,97,108,1) 0%,rgba(43,44,50,1) 100%);
		z-index: 0;
		transform: skew(-25deg);
		z-index: -1;
		border: 0;
	}
	.utility-social a:hover {
		color: #ffffff;
	}
	.utility-social a:hover:after {
		background: none;
	}
	#menu li a {

	}
	#menu li a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 3px;
		bottom: -.1em;
		left: 0;
		border-radius: 0;
		background: #379055;
		visibility: hidden;
		transform: scaleX(0);
		transform-origin: bottom left;
		transition: .25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	}
	#menu li a:hover:before {
		visibility: visible;
		transform: scaleX(1);
	}
	#menu .button-account:hover {
		color: #666;
		border-color: #666;
	}


	/*------------------HEAD MAST------------------*/



	/*------------------SECTIONS------------------*/


	.columns .column a:hover {
		text-decoration: none;
	}


	/*------------------FOOTER------------------*/
	.social-footer a:hover {
		color: #000;
	}
	.footer-links li a:hover {
		color: #000;
	}
	.boilerplate a:hover {
		color: #333;
	}
	a.button-footer-newsletter:hover {
		color: #444;
		background: #fff;
	}

	/*------------------HELPER CLASSES------------------*/
	.video-placeholder:hover i {
		color: rgba(255,255,255,1);
	}

}


@media (min-width: 1345px) and (min-height: 700px) {
	.popup {
		max-width: 800px;
		max-height: 650px;
		margin-top: -325px;
		margin-left: -400px;
	}
	.popup h1 {
		font-size: 2.5em;
	}
	.popup h3 {
		font-size: 1.9em;
	}
	.popup p {
		font-size: 1.18em;
	}
}


@media (min-width: 1345px) {


	/*------------------BUTTON------------------*/
	.button {
		font-size: 20px;
	}
	.button-sm {
		font-size: 17px;
	}
	.button-lg {
		font-size: 25px;
	}
	.button-xl {
		font-size: 30px;
	}


	/*------------------HEADER------------------*/
	/* main menu */
	.logo-wrap {
		max-width: 1345px;
		margin: 0 auto;
		position: relative;
	}
	.header-wrap {
		height: 300px;
	}
	.header-wrap .logo-home {
		width: 220px;
		top: 2em;
		left: 6.3em;
	}
	#mobile-nav-bar {

	}

	#menu {
		max-width: 1345px;
		margin: 0 auto;
		padding: 2.5em 0 0 11em;
		position: relative;
	}
	#menu ul {
		max-width: 100%;
	}

	#menu li a {
		font-size: 1.8em;
	}
	#menu .button-account {
		font-size: 1.08em;
		top: -.26em;
	}

	/*------------------HEAD MAST------------------*/
	.head-mast {
		height: 460px;
	}
	/* sub page */
	.mast-subpage {
		height: 300px;
	}
	.mast-medium {
		height: 300px;
	}
	.mast-event {
		height: 900px;
	}
	.mast-content a.button {
		font-size: 1.5em;
	}


	/*------------------SECTIONS------------------*/

	.section-content {
		max-width: 45.1em;
		padding: 6em 0;
	}
	.section-content h1 {
		font-size: 3.5em;
	}
	.section-content h2, .section-content p, .section-content ul {
		font-size: 1.25em;
	}
	.section-content h3 {
		font-size: 2.5em;
	}
	.section-products {
	max-width: 770px;
}
	.section-products h2 {
		font-size: 1.8em;
	}
	
	.simple-text-blocks {
		max-width: 1100px;
	}
	.simple-text-block p {
		font-size: 1.1em;
	}
	.simple-text-row {
		max-width: 57em;
	}
	.simple-text-row p {
		font-size: 1.12em;
	}

	/* site map */
	.site-map-col {
		width: 32%;
	}

	/* about */
	.service-block  {
		margin: 0 3em 3em 3em;
		font-size: 1.5em;
	}

	/* stadium */
	.google-maps {
		height: 520px;
	}

}


@media (min-width: 1345px) and (min-height: 800px) {
	.popup {
		max-width: 860px;
		max-height: 780px;
		margin-top: -390px;
		margin-left: -430px;
	}
	.popup h1 {
		font-size: 2.5em;
	}
	.popup h3 {
		font-size: 1.9em;
	}
	.popup p {
		font-size: 1.18em;
	}
}


@media (min-width: 1920px) {
	/*------------------HEAD MAST------------------*/


	/*------------------SECTIONS------------------*/

}

