/* Defaults
------------------------------------------------------------------------------ */
:root
{
    --body-font: "Noto Sans Display", sans-serif;
    --body-fallback-font: 'Arial', sans-serif;
    --body-bg:#ffffff;
    --body-text-color: #697675;
    --scsh-dark-blue: #164194;
    --scsh-light-blue: #2daae1;
    --scsh-green: #528e00;
    --scsh-light-green: #afcb07;
    --scsh-yellow: #ffd502;
    --scsh-red: #e4032e;
    --scsh-grey: #343434;
    --heading-font: "Noto Sans Display", sans-serif;
    --heading-fallback-font: 'Arial', sans-serif;
}
body 
{
    font-family: var(--body-font), var(--body-fallback-font);
	font-optical-sizing: auto;
    font-weight: 400;
    font-size: 16px;
	font-style: normal;
	font-variation-settings: "wdth" 100;
    line-height: 22px;
    background-color: var(--body-bg);
	letter-spacing: normal;
	color: var(--body-text-color);
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
html, body
{
	height: 100%;
	margin: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a
{
	color: var(--scsh-dark-blue); 
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}
a.big_blue
{
	font-size: 24px;
	line-height: 30px;
}
a.circle_link
{
	text-align: center;
	border-radius: 50%;
	height: 125px;
	width: 125px;
	border: 2px solid var(--scsh-dark-blue);
	display: inline-block;
	font-size: 20px;
	line-height: 20px;
	padding-top: 40px;
	box-sizing: border-box;
	font-style: italic;
}

/* Headings
------------------------------------------------------------------------------ */
h1, h2, h3
{
	font-family: var(--heading-font), var(--heading-fallback-font);
	font-style: normal;
	letter-spacing: normal;
}
h1
{
	font-weight: 600;
	font-size: 50px;
	line-height: 56px;
	letter-spacing: 1px;
	padding: 40px 0px 20px 0px;
	color: #ffffff;
}
h2
{
	font-weight: 600;
	font-size: 42px;
	line-height: 52px;
	letter-spacing: 0px;
	padding: 40px 0px 20px 0px;
	margin: 0px 0px 20px 0px;
	font-style: italic;
}
h3
{
	font-weight: 600;
	font-size: 22px;
	line-height: 32px;
	color: var(--scsh-dark-blue);
	padding: 20px 0px 20px 0px;
}
h4
{
    font-family: var(--body-font), var(--body-fallback-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
	letter-spacing: normal;
}

h5
{
	font-family: var(--heading-font), var(--body-fallback-font);
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	letter-spacing: normal;
}
/* Up to 550px */
@media only screen and (max-width: 370px) {
	h1
	{
		font-size: 40px;
		line-height: 46px;
	}
}

/* Default Buttons
------------------------------------------------------------------------------ */
a.btn,
button
{
	display: inline-block;
	padding: 12px 30px 12px 30px;
	margin: 10px 0px 10px 0px;;
	font-family: var(--body-font), var(--body-fallback-font);
	font-weight: 600;
	font-size: 20px;
	line-height: 20px;
	background-color: var(--scsh-dark-blue);
	color: var(--body-bg);
	border-radius: 30px;
	white-space: nowrap;
	/* border: 1px solid transparent; */
	border: 2px solid var(--scsh-dark-blue);
	width: auto;
	letter-spacing: 0px;
	text-transform: none;
	transition: 0.3s;
}
a.btn:hover,
button:hover
{
	text-decoration: none;
	background-color: #ffffff;
	/* border: 2px solid var(--scsh-light-blue); */
	color: var(--scsh-dark-blue);
}
a.btn i
{
	padding-right: 10px;
}
a.btn.border
{
	background-color: #ffffff;
	color: var(--scsh-dark-blue);
	border: 2px solid var(--scsh-dark-blue);
}
a.btn.border:hover
{
	background-color: var(--scsh-dark-blue);
	color: #ffffff;
}
a.btn.light_blue
{
	background-color: var(--scsh-light-blue);
	border: 2px solid var(--scsh-light-blue);
}
a.btn.light_blue:hover
{
	background-color: #ffffff;
	color: var(--scsh-light-blue);
}
a.btn.light_blue_border
{
	background-color: #ffffff;
	color: var(--scsh-light-blue);
	border: 2px solid var(--scsh-light-blue);
}
a.btn.light_blue_border:hover
{
	background-color: var(--scsh-light-blue);
	color: #ffffff;
}
a.btn.green
{
	background-color: var(--scsh-green);
	border: 2px solid var(--scsh-green);
}
a.btn.green:hover
{
	background-color: #ffffff;
	color: var(--scsh-green);
}
a.btn.green_border
{
	background-color: #ffffff;
	color: var(--scsh-green);
	border: 2px solid var(--scsh-green);
}
a.btn.green_border:hover
{
	background-color: var(--scsh-green);
	color: #ffffff;
}
a.btn.light_green
{
	background-color: var(--scsh-light-green);
	border: 2px solid var(--scsh-light-green);
}
a.btn.light_green:hover
{
	background-color: #ffffff;
	color: var(--scsh-light-green);
}
a.btn.light_green_border
{
	background-color: #ffffff;
	color: var(--scsh-light-green);
	border: 2px solid var(--scsh-light-green);
}
a.btn.light_green_border:hover
{
	background-color: var(--scsh-light-green);
	color: #ffffff;
}
a.btn.yellow
{
	background-color: var(--scsh-yellow);
	border: 2px solid var(--scsh-yellow);
}
a.btn.yellow:hover
{
	background-color: #ffffff;
	color: var(--scsh-yellow);
}
a.btn.yellow_border
{
	background-color: #ffffff;
	color: var(--scsh-yellow);
	border: 2px solid var(--scsh-yellow);
}
a.btn.yellow_border:hover
{
	background-color: var(--scsh-yellow);
	color: #ffffff;
}
a.btn.red
{
	background-color: var(--scsh-red);
	border: 2px solid var(--scsh-red);
}
a.btn.red:hover
{
	background-color: #ffffff;
	color: var(--scsh-red);
}
a.btn.red_border
{
	background-color: #ffffff;
	color: var(--scsh-red);
	border: 2px solid var(--scsh-red);
}
a.btn.red_border:hover
{
	background-color: var(--scsh-red);
	color: #ffffff;
}
@media only screen and (max-width: 950px) {
	a.btn,
	button
	{
		/* padding: 12px 30px 12px 30px; */
		/* margin: 10px 0px 10px 0px;; */
		/* font-weight: 600; */
		/* font-size: 20px; */
		/* line-height: 20px; */
		font-size: 16px;
		line-height: 16px;
	}
}


/* Sections 
------------------------------------------------------------------------------ */
.section 
{
	padding: 95px 0px 95px 0px;
	text-align: left;
}


/* Section - Booking Bar
---------------------------------------------------------------- */
.section.booking_bar
{
	display: block;
	background-color: var(--body-bg);
    width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 12px 0px 10px 0px;
	text-align: left;
	height: auto;
	box-sizing: border-box;
	transition: all .4s ease;
	
}
.section.booking_bar .flex_container
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: stretch;
	gap: 10px;
}
.section.booking_bar .flex_container a
{
	color: var(--body-color);
	font-weight: bold;
    transition: text-decoration .4s ease, color .4s ease, opacity .3s ease;
	padding: 10px 0px 10px 0px;
}
.section.booking_bar .flex_container a.golf_members
{
	color: var(--scsh-dark-blue);
}
.section.booking_bar .flex_container a.golf_visitors
{
	color: var(--scsh-green);
}
.section.booking_bar .flex_container a.tennis
{
	color: var(--scsh-light-green);
}
.section.booking_bar .flex_container a.padel
{
	color: var(--scsh-light-blue);
}
.section.booking_bar .flex_container a.pickleball
{
	color: var(--scsh-yellow);
}
.section.booking_bar .flex_container a.squash
{
	color: var(--scsh-red);
}
.section.booking_bar .flex_container a:hover
{
	color: var(--body-text-color);
	text-decoration: none;
}
@media only screen and (max-width: 950px) {
	.section.booking_bar 
	{
		position: relative;
	}
}
@media only screen and (max-width: 500px) {
	.section.booking_bar 
	{
		display: none;
	}
}


/* Section - Header
---------------------------------------------------------------- */
.section.header 
{
	position: fixed;
	/* background-color: transparent; */
	background-color: var(--body-bg);
    width: 100%;
	top: 0px;
	z-index: 100;
	z-index: 999999;
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
	text-align: left;
	height: auto;
	transition: all .4s ease;
	border-bottom: 2px solid #b4b4b4;
	box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
}
.section.header.scrolled
{
	/* background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
}
.section.header .flex_container
{
	justify-content: space-between;
	align-items: center;
}
.section.header .navbar_logo
{
	/* position: relative; */
	/* top: 26px; */
	width: 300px;
	padding: 8px 0px 8px 0px;
	margin: 0px 0px 0px 0px;
	transition: height .4s ease, width .4s ease, top .4s ease, padding .4s ease, margin .4s ease;
}
.section.header .navbar_logo.scrolled
{
	/* top: 0px;
	width: 100px;
	background-color: transparent;
	margin-top: 7px;
	padding: 0px 0px 0px 0px; */
}
@media only screen and (max-width: 950px) {
	.section.header
	{
		position: relative;
		/* background-color: rgba(52, 52, 52, 0.6); */
		top: 0px;
		/* height: 60px; */
	}
}
@media only screen and (max-width: 950px) {

   .section.header .navbar_logo,
   .section.header .navbar_logo.scrolled
   {
	   width: 140px;
	   margin-top: 7px;
	   padding: 5px 0px 10px 0px;
   }

   .section.header .btn_container
   {
		display: none;
   }
}
.section.header .navbar_logo img
{
	max-width: 100%;
	display: block;
}
.section.header .navbar_logo a,
.section.header .navbar_logo a:hover
{
	text-decoration: none;
}
.section.header .btn_container
{
	text-align: right;
}
.section.header .btn_container a.btn
{
	padding: 8px 20px 8px 20px;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 15px;
}

/* Section - Header Bar :: Menu
------------------------------------------------------------------------------ */
.section.header .menu
{
	margin: 0px 0px 0px 0px;
}
.section.header .menu ul
{
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.header .menu ul li
{
	float: left;
	margin: 0px 20px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.header .menu ul li:last-child
{
	margin-right: 0px;
}
.section.header .menu ul li a
{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-family: var(--body-font);
	font-weight: 600;
	color: var(--scsh-dark-blue);
    transition: text-decoration .4s ease, color .4s ease, opacity .3s ease;
	text-decoration: none;
	text-transform: capitalize;
	padding-top: 14px;
	padding-bottom: 14px;
}
.section.header .menu ul li a:hover
{
	color: var(--scsh-light-blue);
    text-decoration: none;
}
.section.header .menu ul li a.active
{
	color: var(--scsh-dark-blue);
	text-decoration: none;
}
.section.header .menu ul li a.active:before
{
	position: absolute;
	top: 36px;
	content: '';
	width: 100%;
	height: 3px;
	background-color: var(--scsh-dark-blue);
}

.section.header .menu ul .dropdown:hover .dropbtn 
{
	/* background-color: red; */
	color: var(--scsh-dark-blue);
}
  
.section.header .menu ul li.dropdown 
{
	display: inline-block;
}
  
.section.header .menu ul li.dropdown .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: 1;
	border-top: 3px solid var(--scsh-dark-blue);
	padding-top: 10px;
	padding-bottom: 10px;
}
  
.section.header .menu ul li.dropdown .dropdown-content a
{
	color: black;
	font-size: 16px;
	font-weight: 400;
	padding: 4px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}
  
.section.header .menu ul li.dropdown .dropdown-content a:hover
{
	background-color: #f1f1f1;
}
  
.section.header .menu ul li.dropdown:hover .dropdown-content 
{
	display: block;
}

/* Screens not wide enough for nav ----------------------------------- */
@media only screen and (min-width: 951px) and (max-width: 1300px) {
	.section.header .menu ul li
	{
		margin-right: 14px;
	}
}

/* Section - Header Padding (to push down content below the floating nav bar)
------------------------------------------------------------------------------ */
.section.header_padding 
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	height: 121px;
	background-color: transparent;
}
/* Reduce size of logo when screen is too narrow */
@media only screen and (max-width: 950px) {
	.section.header_padding 
	{
		height: 0px;
	}
}

/* Section - Facilities
---------------------------------------------------------------- */
.section.facilities
{
	display: block;
	background-color: var(--scsh-light-blue);
	color: var(--body-bg);
    width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 12px 0px 55px 0px;
	text-align: left;
	height: auto;
	box-sizing: border-box;
	transition: all .4s ease;
}
.section.facilities .grid_container
{
	display: grid;
  	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	grid-column-gap: 40px;
}
.section.facilities .grid_container a
{
	margin-bottom: 0px;
	display: block;
}
.section.facilities .grid_container a:hover
{
	text-decoration: none;
}
.section.facilities .grid_container a i
{
	padding: 7px 10px 7px 10px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	text-align: center;
	width: auto;
	height: auto;
	line-height: 22px;
	font-size: 22px;
	background-color: #ffffff;
	color: var(--scsh-light-blue);
}
.section.facilities .grid_container a:hover i
{
	color: #ffffff;
	border-color: var(--scsh-dark-blue);
	background-color: var(--scsh-dark-blue);
    transition: text-decoration .4s ease, color .4s ease, background-color .4s ease, border-color .4s ease, opacity .3s ease;
}
.section.facilities h2
{
	padding: 20px 0px 20px 0px;
	text-align: center;
}
.section.facilities h3
{
	color: var(--body-bg);
	margin-bottom: 10px;
}
.section.facilities h4
{
	color: var(--body-bg);
	margin-bottom: 12px;
}
.section.facilities p
{
	color: var(--body-bg);
	min-height: 80px;
}
@media only screen and (max-width: 1400px) {
	.section.facilities p
	{
		min-height: 100px;
	}
	.section.facilities h4
	{
		margin-bottom: 12px;
		min-height: 38px;
	}
}
@media only screen and (max-width: 1250px) {
	.section.facilities .grid_container
	{
		gap: 2%;
	}
}
@media only screen and (max-width: 1000px) {
	.section.facilities .grid_container
	{
		grid-auto-flow: row;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: auto auto;
		row-gap: 50px;
		gap: 4%;
	}
	.section.facilities p
	{
		min-height: 60px;
	}
	.section.facilities h3
	{
		margin-bottom: 0px;
		padding-bottom: 15px;
		min-height: unset;
	}
	.section.facilities h4
	{
		margin-bottom: 0px;
		padding-bottom: 8px;
		min-height: unset;
	}
}
@media only screen and (max-width: 760px) {
	.section.facilities .grid_container
	{
		gap: 4%;
	}
	.section.facilities p
	{
		min-height: 70px;
	}
}
@media only screen and (max-width: 600px) {
	.section.facilities .grid_container
	{
		grid-template-columns: 1fr;
		row-gap: 50px;
	}
	.section.facilities p
	{
		min-height: auto;
	}
}
@media only screen and (max-width: 530px) {
	.section.facilities .flex_container a
	{
		width: 100%;
	}
	.section.facilities p
	{
		min-height: auto;
	}
}
@media only screen and (max-width: 950px) {
}
@media only screen and (max-width: 450px) {

}


/* Section - Booking
---------------------------------------------------------------- */
.section.booking
{
	display: block;
    width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 12px 0px 15px 0px;
	text-align: left;
	height: auto;
	box-sizing: border-box;
	transition: all .4s ease;
}
.section.booking .grid_container
{
	display: grid;
  	/* grid-auto-flow: column; */
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 40px;
}
.section.booking .grid_item
{
	margin: 0px 0px 40px 0px;
}
.section.booking img
{
	max-width: 100%;
	box-sizing: border-box; 	
}
.section.booking ul.buttons
{
	list-style: none;
	margin: 20px 0px 0px 0px;
	text-align: center;
}
.section.booking ul.buttons li
{
	margin: 0px 0px 12px 0px;
}
.section.booking ul.buttons li a.btn
{
	margin: 0px 0px 0px 0px;
	box-sizing: border-box;
	min-width: 90%;
	text-align: center;
}
@media only screen and (max-width: 1350px) {
	.section.booking ul.buttons li a.btn
	{
		font-size: 16px;
		line-height: 16px;
	}
}
@media only screen and (max-width: 1160px) {
	.section.booking .grid_container
	{
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 40px;
	}
}
@media only screen and (max-width: 765px) {
	.section.booking .grid_container
	{
	  	/* grid-auto-flow: column; */
		grid-template-columns: 1fr;
		grid-column-gap: 0px;
	}
	.section.booking .feature
	{
		text-align: center;
	}
}

/* Section - YouTube
------------------------------------------------------------------------------ */
.section.youtube 
{
	position: relative;
	overflow: hidden;
	/* width: 100vw; */
	width: 100%;
	/* height: 100vh; */
	height: 700px;
	padding: 0px 0px 0px 0px;
	color: #ffffff;

	iframe {
		position: absolute;
		top: 50%;
		left: 50%;
		/* width: calc(100vw - 50px); */
		width: 100vw;
		/* width: 100%; */
		height: 100vh;
		transform: translate(-50%, -50%);
	
		@media (min-aspect-ratio: 16/9) {
			height: 56.25vw
		}

		@media (max-aspect-ratio: 16/9) {
			width: 177.78vh
		}
	}
}
.section.youtube .flash_overlay
{
	position: absolute;
	background-image: url(../images/video_flash.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	width: 100%;
	height: 100%;
	bottom: 0px;
	right: 0px;
}
.section.youtube .content_overlay
{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}
.section.youtube .youtube_content_container
{
	padding-top: 15px;
	width: 50%;
}
@media only screen and (max-width: 1050px) 
{
	.section.youtube .youtube_content_container
	{
		width: 75%;
	}

}
@media only screen and (max-width: 550px) 
{
	.section.youtube .youtube_content_container
	{
		width: 100%;
	}

}


/* Section - Dynamically Sizing Panel
---------------------------------------------------------------- */
.section.dynamic_panel
{
    padding: 70px 0px 100px 0px;
	text-align: left;
}
.section.dynamic_panel.centered
{
	text-align: center;
}
.section.dynamic_panel h2
{
	padding: 10px 0px 20px 0px;
	margin: 0px 0px 22px 0px;
}
.section.dynamic_panel.alt h2
{
	padding-top: 0px;
}
.section.dynamic_panel h3
{
	padding-bottom: 0px;
	margin-bottom: 10px;
}
.section.dynamic_panel h4
{
	margin-bottom: 0px;
}
.section.dynamic_panel h4.mb
{
	margin-bottom: 6px;
}

.section.dynamic_panel p
{
	margin-bottom: 22px;
}
.section.dynamic_panel a 
{
	/* color: var(--baf-dark-blue);
	text-decoration: underline;
    transition: text-decoration .4s ease, color .4s ease, opacity .3s ease; */
}
.section.dynamic_panel a:hover
{
	/* color: var(--baf-yellow);
	text-decoration: none; */
}
.section.dynamic_panel ul.buttons
{
	list-style: none;
	margin: 40px 0px 10px 0px;
}
.section.dynamic_panel ul.buttons li
{
	margin: 0px 0px 12px 0px;
}
.section.dynamic_panel ul.buttons li a.btn
{
	margin: 0px 0px 0px 0px;
	box-sizing: border-box;
	min-width: 90%;
	text-align: center;
}
.section.dynamic_panel ul.list
{
	list-style-position: outside;
	list-style-type: disc;
	margin-left: 20px;
}
.section.dynamic_panel ul.list li
{
	margin: 0px 0px 12px 0px;
}

.section.dynamic_panel .flex_container
{
	gap: 45px;
	margin-bottom: 40px;
}
.section.dynamic_panel .flex_container.large_gap
{
	/* gap: 250px; */
	gap: 10%;
}

.section.dynamic_panel .item_txt
{
	width: 45%;
}
.section.dynamic_panel .map
{
	max-width: 100%;
}
.section.dynamic_panel .central_panel
{
	padding-left: 20%;
	padding-right: 20%;
}
.section.dynamic_panel .item_img
{
	width: 55%;
}
.section.dynamic_panel .item_img img
{
	max-width: 100%;
}
.section.dynamic_panel .grid_container
{
	grid-template-columns: 40px auto 40px auto;
	gap: 15px;
	margin-bottom: 30px;
}
.section.dynamic_panel .grid_container *
{
	line-height: 50px;
}
.section.dynamic_panel .number
{
	font-size: 40px;
	line-height: 50px;
	font-weight: 600;
}
.section.dynamic_panel .flex_container.wide_buttons
{
	gap: 0px;
	flex-direction: column;
	margin-top: 80px;
}
.section.dynamic_panel .flex_item.wide_button
{
	background-size: cover;
	background-position: center center;
  	flex-basis: 100%;
	margin-bottom: 25px;
	padding: 0px 0px 0px 0px;
}
.section.dynamic_panel .flex_item.wide_button.gallery
{
	background-image: url(../images/bases/gallery.jpg);
	background-position: center bottom;
}
.section.dynamic_panel .flex_item.wide_button.terms
{
	background-image: url(../images/bases/terms.jpg);
	background-position: center bottom;
}
.section.dynamic_panel .flex_item.wide_button.health
{
	background-image: url(../images/bases/health.jpg);
	background-position: center bottom;
}
.section.dynamic_panel .flex_item.wide_button h2
{
	font-size: 36px;
	line-height: 42px;
	padding-bottom: 0px;
	margin-bottom: 15px;
}
.section.dynamic_panel .flex_item.wide_button a
{
	height: 100%;
	min-height: 143px;
	display: block;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
	background-color: rgba(52,52,52,0.4);
  	background-blend-mode: multiply;
	transition: all .4s ease;
	padding: 25px 0px 25px 0px;
}
.section.dynamic_panel .flex_item.wide_button a:hover
{
	text-decoration: none;
	background-color: rgba(52,52,52,0.6);
}
.section.dynamic_panel .flex_item.wide_button i
{
	font-size: 36px;
	line-height: 36px;
}
.section.dynamic_panel .youtube_container
{
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}
.section.dynamic_panel .youtube_container #video_choices
{
	display: flex;
	flex-direction: row;
	flex-basis: 100%;
	justify-content: space-around;
}
.section.dynamic_panel .youtube_container #video_choices a:hover
{
	cursor: pointer;
}

.section.dynamic_panel .youtube_container .video_container #video_1,
.section.dynamic_panel .youtube_container .video_container #video_2,
.section.dynamic_panel .youtube_container .video_container #video_3,
.section.dynamic_panel .youtube_container .video_container #video_4,
.section.dynamic_panel .youtube_container .video_container #video_5,
.section.dynamic_panel .youtube_container .video_container #video_6,
.section.dynamic_panel .youtube_container .video_container #video_7,
.section.dynamic_panel .youtube_container .video_container #video_8,
.section.dynamic_panel .youtube_container .video_container #video_9
{
	display: none;
}
/* .section.dynamic_panel .youtube_container .video_container .video_panel */
.section.dynamic_panel .youtube_container .video_container .video_panel .youtube_container
{
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 56.25%; /* creates a 16:9 aspect ratio */
}
.section.dynamic_panel .youtube_container .video_container .video_panel .youtube_container iframe,
.section.dynamic_panel .youtube_container .video_container .video_panel .youtube_container embed 
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
}

/* And set the max-width of the parent element */
/* .section.dynamic_panel .youtube_container .video_container */
.section.dynamic_panel .youtube_container .youtube_container
{
	width: 100%;
	max-width: 720px;
}

.section.dynamic_panel .youtube_container .video_container .video_panel h4
{
	text-align: center;
	margin-bottom: 12px;
}


@media (max-width: 1045px) {
	.section.dynamic_panel ul.buttons li a.btn
	{
		min-width: 100%;
	}
}

@media (max-width: 900px) {
	.section.dynamic_panel .flex_container
	{
		gap: 0px;
		margin-bottom: 40px;
		flex-direction: column;
	}
	.section.dynamic_panel .item_txt
	{
		width: 100%;
		order: 2;
	}
	.section.dynamic_panel .item_img
	{
		/* display: none; */
		order: 1;
	}
	.section.dynamic_panel h2
	{
		margin-top: 22px;
		margin-bottom: 2px;
	}
	.section.dynamic_panel h2.golf
	{
		background-image: url(../images/page_bubbles/golf.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: right;
		padding-right: 32%;
	}
}
@media (max-width: 650px) {
	.section.dynamic_panel h2.golf
	{
		background-image: none;
		padding-right: 0px;
	}
	.section.dynamic_panel .item_img
	{
		display: block;
		width: 100%;
	}

}

@media (max-width: 1412px) {
	.section.dynamic_panel h4
	{
		/* font-size: 32px; */
		/* line-height: 34px; */
	}
}
@media (max-width: 1145px) {
	.section.dynamic_panel h3
	{
		padding-top: 20px;
		padding-bottom: 10px;
		margin-bottom: 0px;
	}
	.section.dynamic_panel .grid_container
    {
        /* grid-template-columns: auto; */
		grid-template-columns: 40px auto;
		gap: 15px;
		margin-bottom: 30px;
    }
}


/* Section - Big Button Panel
------------------------------------------------------------------------------ */
.section.big_button_panel
{
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	overflow: hidden;
	overflow-y: hidden;
}
.section.big_button_panel .flex_container.big_buttons
{
	gap: 0px;
	align-items: center;
}
.section.big_button_panel .flex_item.big_button
{
	background-size: cover;
	background-position: center center;
  	flex-basis: 50%;
	height: 300px;
	align-items: center;
}
.section.big_button_panel .flex_item.big_button.academy_course
{
	background-image: url(../images/bases/academy_course.jpg);
	background-position: center bottom;
}
.section.big_button_panel .flex_item.big_button.course_conduct_insurance
{
	background-image: url(../images/bases/course_conduct.jpg);
}
.section.big_button_panel .flex_item.big_button.padel_tennis
{
	background-image: url(../images/bases/padel.jpg);
}
.section.big_button_panel .flex_item.big_button.pickleball
{
	background-image: url(../images/bases/pickleball.jpg);
}
.section.big_button_panel .flex_item.big_button.tennis
{
	background-image: url(../images/bases/tennis.jpg);
}
.section.big_button_panel .flex_item.big_button a
{
	height: 100%;
	display: block;
	text-align: center;
	color: #ffffff;
	background-color: rgba(52,52,52,0.4);
  	background-blend-mode: multiply;
	transition: all .4s ease;
	box-sizing: border-box;
	padding: 10px 20px 10px 20px;
}
.section.big_button_panel .flex_item.big_button a:hover
{
	text-decoration: none;
	background-color: rgba(52,52,52,0.6);
}
.section.big_button_panel h2
{
	line-height: 42px;
}
.section.big_button_panel i
{
	font-size: 50px;
	line-height: 50px;
}
@media (max-width: 680px) {

	.section.big_button_panel .flex_container.big_buttons
	{
		flex-direction: column;
	}
	.section.big_button_panel .flex_item.big_button
	{
		min-height: 300px;
		height: auto;
		width: 100%;
	}
	.section.big_button_panel .flex_item.big_button a
	{
		height: 100%;
		min-height: 300px;
	}


}


/* Section - Full Page Image
------------------------------------------------------------------------------ */
.section.full_page_image
{
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	height: calc(100% - 190px);
	overflow: hidden;
	overflow-y: hidden;
	/* text-align: center; */
}
.section.full_page_image .actual_image_layer
{
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: none;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	animation: zoomin 20s 1;
	-webkit-animation: zoomin 20s 1;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-delay: 0s;
	-webkit-animation-fill-mode: forwards;
	overflow: hidden;
	overflow-y: hidden;
	background-color: rgba(69,69,69,0.2);
  	background-blend-mode: multiply;
}
@keyframes zoomin {
	0% {
		-webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
    }
}
.section.full_page_image .actual_image_layer.nofill
{
	background-color: unset;
  	background-blend-mode: unset;
	animation: none;
	-webkit-animation: none;
}

.section.full_page_image .slides_container
{
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/* background-image: none;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover; */
	animation: slide_zoomin 18s 1;
	-webkit-animation: slide_zoomin 18s 1;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-delay: 0s;
	-webkit-animation-fill-mode: forwards; 
	overflow: hidden;
	overflow-y: hidden;
	/* background-color: rgba(69,69,69,0.2);
  	background-blend-mode: multiply; */
}
@keyframes slide_zoomin {
	0% {
		-webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
    }
}
.section.full_page_image .slide
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-animation: slidefade 18s infinite;
	animation: slidefade 18s infinite;
	background-color: rgba(69,69,69,0.2);
  	background-blend-mode: multiply;
}
.section.full_page_image #slide_1 
{
	animation-delay: 0s;
	background-image: url('../images/slides/golf_course.jpg');
}
.section.full_page_image #slide_2 
{
	animation-delay: 3s;
	background-image: url('../images/slides/padel_court.jpg');
}
.section.full_page_image #slide_3
{
	animation-delay: 6s;
	background-image: url('../images/slides/partners_terrace.jpg');
}
.section.full_page_image #slide_4
{
	animation-delay: 9s;
	background-image: url('../images/slides/pickleball.jpg');
}
.section.full_page_image #slide_5
{
	animation-delay: 12s;
	background-image: url('../images/slides/squash_court.jpg');
}
.section.full_page_image #slide_6
{
	animation-delay: 15s;
	background-image: url('../images/slides/tennis_courts.jpg');
}

@-webkit-keyframes slidefade {
	0% {
		opacity: 1;
	}

	11% {
		opacity: 1;
	}

	17% {
		opacity: 0;
	}

	94% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes slidefade {
	0% {
		opacity: 1;
	}

	11% {
		opacity: 1;
	}

	17% {
		opacity: 0;
	}

	94% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
.section.full_page_image .flash_overlay
{
	position: absolute;
	background-image: url(../images/video_flash.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	width: 100%;
	height: 100%;
	bottom: 0px;
	right: 0px;
}
.section.full_page_image .actual_image_layer.about
{
	background-image: url("../images/heroes/about.jpg");
}
.section.full_page_image .actual_image_layer.academy_course
{
	background-image: url("../images/heroes/academy_course.jpg");
}
.section.full_page_image .actual_image_layer.booking
{
	background-image: url("../images/heroes/booking.jpg");
}
.section.full_page_image .actual_image_layer.contact
{
	background-image: url("../images/heroes/contact.jpg");
}
.section.full_page_image .actual_image_layer.gallery
{
	background-image: url("../images/heroes/gallery.jpg");
}
.section.full_page_image .actual_image_layer.golf
{
	background-image: url("../images/heroes/golf.jpg");
}
.section.full_page_image .actual_image_layer.golf_booking
{
	background-image: url("../images/heroes/golf_booking.jpg");
}
.section.full_page_image .actual_image_layer.home
{
	background-image: url("../images/heroes/home.jpg");
}
.section.full_page_image .actual_image_layer.padel
{
	background-image: url("../images/heroes/padel.jpg");
	background-position: center center;
}
.section.full_page_image .actual_image_layer.pickleball
{
	background-image: url("../images/heroes/pickleball.jpg");
	background-position: center center;
}
.section.full_page_image .actual_image_layer.squash
{
	background-image: url("../images/heroes/squash.jpg");
	background-position: center center;
}
.section.full_page_image .actual_image_layer.tennis
{
	background-image: url("../images/heroes/tennis.jpg");
	background-position: center center;
}
.section.full_page_image .actual_image_layer.terms
{
	background-image: url("../images/heroes/terms.jpg");
}
.section.full_page_image .actual_image_layer.visitors
{
	background-image: url("../images/heroes/visitors.jpg");
	background-position: center center;
}

.section.full_page_image .single_line
{
	padding-top: 50px;
	width: 60%;
}

.section.full_page_image h1
{
	color: #ffffff;
}
.section.full_page_image .arrow_down
{
	position: absolute;
	bottom: 70px;
	width: 100%;
	animation: bounce_chevron 2s 1;
	-webkit-animation: bounce_chevron 2s 1;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-delay: 0s;
	-webkit-animation-fill-mode: forwards;
	overflow: hidden;
	overflow-y: hidden;
	font-size: 50px;
	line-height: 50px;
	color: #ffffff;
	text-align: center;
}
@keyframes bounce_chevron {
	0% {
		transform: translate(0, 0);
    }
    50% {
        transform: translate(0px, 30px);
    }
	100% {
		transform: translate(0, 0);
    }
}
@media only screen and (max-width: 1050px) {
	.section.full_page_image .single_line
	{
		width: 85%;
	}
}
@media only screen and (max-width: 600px) {
	.section.full_page_image h1,
	.section.full_page_image h2
	{
		font-size: 40px;
		line-height: 43px;
		letter-spacing: 1px;
	}
}
@media only screen and (max-width: 550px) {
	.section.full_page_image .single_line
	{
		width: 100%;
	}
}


/* Section - Announcement
------------------------------------------------------------------------------ */
.section.announcement
{
	text-align: center;
	padding: 20px 0px 20px 0px;
}
.section.announcement .columns
{
	border: 2px solid var(--scsh-dark-blue);
	border-radius: 22px;
}
.section.announcement h4
{
	margin-top: 10px;
	margin-bottom: 10px;
}
.section.announcement h4,
.section.announcement p
{
	padding: 5px 10px 5px 10px;
}


/* Section - Full Page Image
------------------------------------------------------------------------------ */
.section.gallery
{
}
.section.gallery .grid_container
{
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 0px;
}
.section.gallery .grid_item
{
	background-size: cover;
	height: 260px;
	background-position: center center;
}
@media only screen and (max-width: 800px) {
	.section.gallery .grid_container
	{
		grid-template-columns: 1fr 1fr;
	}
	.section.gallery .grid_item
	{
		height: 180px;
	}
}
@media only screen and (max-width: 585px) {
	.section.gallery .grid_container
	{
		grid-template-columns: 1fr;
	}
	.section.gallery .grid_item
	{
		height: 200px;
	}
}


/* Section - Footer 
------------------------------------------------------------------------------ */
.section.footer
{
	padding: 60px 0px 20px 0px;
	background-color: var(--scsh-grey);
}
.section.footer .flex_container
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: stretch;
}
.section.footer ul
{
	text-align: left;
	list-style: none;
}
.section.footer li a
{
	color: #ffffff;
}
.section.footer .footer_logo
{
	width: 320px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
.section.footer .footer_logo img
{
	max-width: 100%;
	display: block;
}
.section.footer ul.social_buttons
{
	margin-top: 90px;
	display: block;
}
.section.footer ul.social_buttons li
{
	margin: 0px 6px 0px 0px;
	display: inline-block;
	padding: 7px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	text-align: center;
	width: auto;
	height: auto;
	line-height: 14px;
}
.section.footer ul.social_buttons li a
{
	color: var(--body-color);
}
.section.footer ul.social_buttons li a i
{
	color: #ffffff;
	font-size: 20px;
	line-height: 20px;
	margin: 0px auto;
	padding: 0px 0px 0px 0px;
	width: 20px;
	height: 20px;
}
.section.footer ul.link_block_vertical
{	
	margin-top: 20px;
}
.section.footer ul.link_block_vertical li
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	color: #ffffff;
	height: auto;
}
.section.footer ul.link_block_vertical li.lgal_container
{
	width: 260px;
	margin-top: 45px;
	font-size: 13px;
	line-height: 13px;
}
.section.footer ul.link_block_vertical li.lgal_container img
{
	max-width: 100%;
}
.section.footer ul.link_block_vertical li.lgal_container p
{
	margin: 14px 0px 5px 0px;
}

.section.footer ul.link_block_horizontal
{	
	margin-top: 33px;
}
.section.footer ul.link_block_horizontal li
{
	display: inline-block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	color: #ffffff;
	height: auto;
}
.section.footer ul.link_block_horizontal li,
.section.footer ul.link_block_horizontal li a
{
	font-size: 13px;
	line-height: 13px;
}
.section.footer ul.link_block_horizontal li:after 
{
	content: '\007C';
	padding-left: 10px;
	padding-right: 6px;
}
.section.footer ul.link_block_horizontal li:last-child:after 
{
	content: '';
}
.section.footer .mobile_only
{	
	display: none;
}

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

	.section.footer .footer_logo
	{
		margin: 0px auto;
	}
	.section.footer ul,
	.section.footer .footer_logo
	{
		text-align: center;
	}
	.section.footer .flex_container
	{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.section.footer ul.link_block_horizontal
	{	
		display: none;
	}
	.section.footer .mobile_only
	{	
		display: block;
	}
	.section.footer ul.link_block_vertical li
	{
		margin-bottom: 10px;
	}
	
}

@media only screen and (max-width: 350px) {
	.section.footer .footer_logo
	{
		width: 220px;
	}
}

/* #Misc
=================================================================================================================== */
.centered
{
	text-align: center;
}
.limit-to-two-lines
{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
			line-clamp: 2; 
	-webkit-box-orient: vertical;
}
@media (max-width: 350px) {
	.not_on_mobile_350
	{
		display: none;
	}
}

/* Flex Box
=================================================================================================================== */
.flex_container
{
	display: flex;
}
.flex_direction_column
{
	flex-direction: column;
}
.justify_content_space_around
{
	justify-content: space-around;
}
.justify_content_space_between
{
	justify-content: space-between;
}
.justify_content_center
{
	justify-content: center;
}
.flex_wrap
{
	flex-wrap: wrap;
}
.flex_item.padded_7pc
{
	margin: 0px 7% 0px 7%; 
	padding: 0px 0% 0px 0%;
}
.flex_item.padded_out
{
	margin: 0px 7% 0px 7%; 
	padding: 0px 0% 0px 0%;
}
.flex_item.flex_basis_50pc
{
	flex-basis: 50%;
}

/* Grid Box
=================================================================================================================== */
.grid_container
{
	display: grid;
	box-sizing: border-box;
}
.grid_container *
{
	box-sizing: border-box;
}


/* Responsive Menu
================================================== */
#responsive_menu_buttons
{
	display: none;
	position: relative;
	top: 0px;
	right: 0px;
	width: 36px;
	height: 32px;
	background: transparent;
	color: var(--scsh-dark-blue);
	padding: 5px 5px 3px 5px;
	margin: 0px 0px 0px 0px;
	border-radius: 3px;
	text-align: center;
	line-height: 30px;
}
#responsive_menu_buttons a
{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	text-decoration: none;
	color: var(--scsh-dark-blue);
	cursor: pointer;
}
#responsive_menu_buttons a:hover
{
	text-decoration: none;
}
#responsive_menu_open_button
{
	display: block;
	visibility: visible;	
	z-index: 110;
	font-size: 30px;
	line-height: 30px;
}
#responsive_menu_close_button
{
	display: none;
	visibility: visible;	
	z-index: 110;
	font-size: 30px;
	line-height: 30px;
}

#responsive_menu 
{
	position: relative;
	display: none;
	width: 100%;
	top: 0px;
	/* background-color: var(--footer-baf-grey); */
	padding-top: 26px;
	padding-bottom: 40px;
	overflow-y: auto;
}
#responsive_menu ul
{
	width: 80%;
	margin: 0px 0px 0px 0px;
	padding-left: 10%;
	padding-right: 10%;
	list-style: none;
}
#responsive_menu li
{
	display: inline;
	float: left;
	width: 100%;
	border-top: 2px solid var(--scsh-dark-blue);
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
}
#responsive_menu ul li:first-child
{
	border-top: 3px solid var(--scsh-dark-blue);
}
#responsive_menu ul li:last-child
{
	border-bottom: 4px solid var(--scsh-dark-blue);
}
#responsive_menu li span
{
	float: left;
	width: 40px;
}
#responsive_menu li a
{
	float: left;
	color: var(--scsh-dark-blue);
	font-size: 22px;
	font-weight: normal;
	text-decoration: none;
	padding: 2px 0px 2px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 120%;
}
#responsive_menu li a#active_page
{
	font-weight: bold;
}
#responsive_menu li a:hover
{
	color: #555555;
}
#responsive_menu li.booking_link
{
	display: none;
}

/* Menu - Responsive  ---------------------------------- */
@media only screen and (max-width: 950px) {
	#responsive_menu_buttons
	{
		display: block;
	}
	#responsive_menu 
	{
		/* display: none; */
		visibility: visible;
	}
	.section.header .menu
	{
		visibility: hidden;
		height: 0;
		display: none;
	}
}
@media only screen and (max-width: 500px) {
	#responsive_menu li.booking_link
	{
		display: block;
	}
}

/* #Media Queries
=================================================================================================================== */

/* Bigger than 1000 */
@media (min-width: 1000px) {

}
/* ALL NON DESKTOP SIZES - Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
}

/* TABLET PORTRAIT - Size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* ALL MOBILE Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
}

/* MOBILE LANDSCAPE Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

/* MOBILE PORTRAIT Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
}

