/*
Theme Name: TCWD Framework 2024
Description: A minimalistic WordPress theme for custom designed sites.
Version: 1.0
Author: Greg Provians
Author URI: www.tropicalcoastwebdesign.com.au
*/

/******************************* LOAD FONTS *******************************/

@font-face {
	font-family: Montserrat-Regular;
	font-weight: 400;
	font-style: normal;
	src:url("fonts/Montserrat/Montserrat-Regular.ttf");
}

@font-face {
	font-family: Poppins-Regular;
	font-weight: 400;
	font-style: normal;
	src:url("fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
	font-family: Poppins-SemiBold;
	font-weight: 400;
	font-style: normal;
	src:url("fonts/Poppins/Poppins-SemiBold.ttf");
}

@font-face {
	font-family: Poppins-Bold;
	font-weight: 400;
	font-style: normal;
	src:url("fonts/Poppins/Poppins-Bold.ttf");
}

body {
    font-family: Poppins-Regular, Arial, sans-serif;
    margin: 0;
    padding: 0;
	font-size: 20px;
}

html {

	/* Apply border-box across the entire page. */
	box-sizing: border-box;
	font-family: var(--global--font-secondary);
	line-height: var(--global--line-height-body);
}

/**
 * Relax the definition a bit, to allow components to override it manually.
 */

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

/******************************* HEADING STYLES *******************************/

h1 {
	font-family: Poppins-SemiBold, Helvetica, Arial, "sans-serif";
	font-size: 2em;
	line-height: 1.2em;
	margin: 0 0 24px 0;
	color: #001040;	
}

h1.hide-title {
	font-family: Montserrat-SemiBold, Arial, "sans-serif";
	font-weight: normal;
	font-size: .1em;
	line-height: .1em;
	color: #fff;
	padding: 0px;
	margin-bottom: 0px;
	width: 100%;
}

h2 {
	font-family: Poppins-Bold, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 1.6em;
	color: #B22868;
	line-height: 1.2em;
	margin: 0 0 30px 0;
}

h2 span{
	font-family: Poppins-SemiBold, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 18px;
	color: #B22868;
	line-height: 1.2em;
	margin: 0 0 0 0;
	text-transform: uppercase;
	display: block;
}

h3 {
	font-family: Poppins-Regular, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 1.6em;
	color: #444;
	line-height: 1.2em;
	margin: 0 0 30px 0;
	font-weight: normal;
}

h3 span{
	font-family: Poppins-Regular, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 18px;
	font-weight: normal;
	color: #444;
	line-height: 1.2em;
	margin: 0 0 5px 0;
	text-transform: uppercase;
	display: block;
}

h4 {
	font-family: Poppins-SemiBold, Helvetica, Arial, "sans-serif";
	font-size: 1.1em;
	font-weight: normal;
	line-height: 1.5em;
	margin: 0 0 34px 0;
	color: #3CB655;
}

h5 {
	font-family: Poppins-SemiBold, Helvetica, Arial, "sans-serif";
	font-size: .9em;
	font-weight: normal;
	line-height: 1.2em;
	margin: 0 0 14px 0;
	color: #3CB655;
	text-transform: uppercase;
}

/* HEADER - FEATURED IMAGE BACKGROUND
-------------------------------------------------------------------------------*/


.header-wrap {
  text-align: left;
	width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
	min-height: 400px;
	margin-bottom: 100px;
	display: flex;
flex-direction: column;
justify-content: center;
}

.header-wrap-contents {
	width: 100%;
	max-width: 1400px;
	text-align: center;
	height: 100%;
	line-height: 100%;
	vertical-align: middle;
	margin: 0 auto;
	padding: 0 30px;
}

.header-wrap h1.entry-title {
  text-shadow: 1px 1px 2px black;
	color: #fff;
}


/******************************* GENERAL STYLING *******************************/

ul, ol {
	margin: 0 0 24px;
	line-height: 1.714285714;
	padding: 0;
}

ul {
	list-style: disc outside;
}

#content li {
	font-size: .9em;
	margin: 0 0 0 24px;
	color: #666;
}

ol {
	list-style: decimal outside;
}

ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
}

table td {
	color: #666;   
}

table td img {
	vertical-align: middle;
}

td, th {
	padding: 5px;
}



/* TEXT ELEMENTS - Alignment -------------------------*/

.alignleft {
	display: inline;
	float: left;
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}

.alignright {
	display: inline;
	float: right;
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 12px auto;
}

/******************************* GUTENBERG *******************************/

.alignfull {
margin-left : calc( -100vw / 2 + 100% / 2 );
margin-right : calc( -100vw / 2 + 100% / 2 );
max-width : 100vw;
}

.alignwide {
margin-left : calc( -80vw / 2 + 100% / 2 );
margin-right : calc( -80vw / 2 + 100% / 2 );
max-width : 80vw;
}

.aligncenter {
	max-width: 1400px;
	margin: 0 auto;
}

.wp-block-image.alignfull, .wp-block-image.alignwide {
    max-width: none;
}

/******************************* HEADER *******************************/

#header {
	width: 100%;
	height: 160px;
	position: relative;
	background-color: #fff;
	border-top: 5px solid #3CB655;
	border-bottom: 5px solid #B22969;
}

#header-main-contents {
	width: 100%;
	height: 200px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

#header-main-logo {
	float: left;
	position: absolute;
	top: 20px;
	left: 30px;
	width: 320px;
	height: auto;
}

#header-icons {
	float: right;
	position: absolute;
	top: 35px;
	right: 30px;
	width: 50%;
	height: auto;
	text-align: right;
	line-height: 18px;
	vertical-align: middle;
}

#header-icons img{
	line-height: 18px;
	vertical-align: middle;
	margin-left: 10px;
}

#header-main-menu {
	float: right;
	position: absolute;
	bottom: 72px;
	right: 10px;
	width: 65%;
	height: 46px;
	color: #000;
}

/******************************* MENU STYLING *******************************/

	#cssmenu,
	#cssmenu ul,
	#cssmenu li,
	#cssmenu a {
		border: none;
		margin: 0;
		padding: 0;
		line-height: 1;
		-webkit-box-sizing: content-box;
		-moz-box-sizing: content-box;
		box-sizing: content-box;
	}

	#cssmenu {
		display: block;
		padding: 0;
		margin: 0;
		width: auto;
		border-color: #080808;
	}

/*--- MENU - List Styles ---*/

	#cssmenu,
	#cssmenu > ul > li > ul > li a:hover {

	}

#cssmenu > ul {
    display: flex;
    align-items: stretch; /* Default */
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
}

#cssmenu > ul > li {
	position: relative;
	display: block;
    flex: 0 1 auto; /* Default */
    list-style-type: none;
}

#cssmenu > ul > li {
	position: relative;
	display: inline-block;
    flex: 0 1 auto; /* Default */
    list-style-type: none;
}

#cssmenu > ul > li:after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
 }

#cssmenu > ul > li:hover:after {
    width: 100%;
    background: #B22969 ;
 }

/*--- Individual Button Styles Go Here ---*/

	#cssmenu > ul > li > a {
		outline: none;
		display: block;
		position: relative;
		padding: 22px 20px 8px;
		text-align: center;
		text-decoration: none;
		font-weight: normal;
		text-transform: capitalize;
		font-size: .8em;
		font-family: Poppins-SemiBold;
		color: #666;
	}

	#cssmenu li:first-child a {
		border-left: 0 none;
	}

/*--- Individual Button HOVER Styles Go Here ---*/

	#cssmenu > ul > li > a:hover {
		color: #B22969;
	}

	#cssmenu ul li.has-sub:hover > a:after {
		top: 0;
		bottom: 0;
	}

/*--- Sub Menu Dropdown Arrow ---*/

	#cssmenu > ul > li.has-sub {
		padding-right: 10px;  /*--- Extra room for arrow ---*/
	}

	#cssmenu > ul > li.has-sub > a:before {
		content: '';
		position: absolute;
		top: 26px;
		right: 5px;
		border: 5px solid transparent;
		border-top: 5px solid;
	}

/*--- Main Navigation Item with Drop Down Menu Underneath ---*/

	#cssmenu ul li.has-sub:hover > a {
		color: #B22969;
		top: 0px;
		z-index: 999;
	}

	#cssmenu ul li.has-sub:hover > ul,
	#cssmenu ul li.has-sub:hover > div {
		display: block;
	}

/*--- Drop Down Sub Menu Position & Width ---*/

	#cssmenu ul li > ul,
	#cssmenu ul li > div {
		display: none;
		position: absolute;
		top: 48px;
		left: 0px;
		padding: 0;
		z-index: 999999;
		border-top: 6px solid rgba(0,0,0,0.00);
	}

	#cssmenu ul li > ul {
		min-width: 200px;

	}

	#cssmenu li ul li a { 
		width: auto; white-space: nowrap;
	}

	#cssmenu ul li > ul li {
		list-style: inside none;
		padding: 0;
		margin: 0;
		position: relative;
	}

/*--- Drop Down Menu Items Styling ---*/

	#cssmenu ul li > ul li a {
		outline: none;
		display:block;
		position: relative;
		margin: 0;
		padding: 15px 25px 12px;
		text-transform: capitalize;
		font-size: .8em;
		font-family: Poppins-Regular;
		color: #FFFFFF;
		text-decoration: none;
		text-align: left;
		background-color: #B22969;
	}

#cssmenu ul li > ul li:first-child a {
	padding-top: 25px;
}

#cssmenu ul li > ul li:last-child a {
	padding-bottom: 22px;
}

/*--- Drop Down Menu Items HOVER effect ---*/

	#cssmenu ul ul a:hover {
		color: #ffff00;
	}

/*--- Sub-Sub Menu Dropdown Arrow ---*/

	#cssmenu > ul > li.has-sub {
		padding-right: 10px;  /*--- Extra room for arrow ---*/
	}

	#cssmenu ul li > ul li.has-sub > a:before {
		content: '';
		position: absolute;
		top: 23px;
		right: 5px;
		border: 5px solid transparent;
		border-left: 5px solid;
	}

	#cssmenu ul ul ul li a {
		outline: none;
		display:block;
		position: relative;
		margin: 0;
		padding: 20px 25px 18px;
		text-transform: uppercase;
		color: #fff;
		text-decoration: none;
		text-align: left;
		border-bottom: 1px dashed #266F41 !important;
		background-color: #001555; 
	}

	#cssmenu ul ul ul li:last-child a {
		border-bottom: none !important;
	}

	#cssmenu ul li > ul li > ul {
		display: none;
		position: absolute;
		top: 0px;
		left: 216px;
		padding: 0;
		z-index: 999;
		border-left: 10px solid rgba(0,0,0,0.00);
		background-color: rgba(0,0,0,0.00);
	}


/* MOBILE MENU - Styles ---------------------*/

/* Hide the mobile menu checkbox */
.mobile-menu-toggle {
    display: none;
}

/* Style the mobile menu toggle button */

.toggle-menu {
    display: block;
    cursor: pointer;
    z-index: 999999; /* Ensure toggle button appears above content */
    position: absolute;
    top: 0px;
    left: 0px;
	color: #3CB655;
	padding: 12px 18px;
	font-size: 1.4em;
}

/* Style the mobile menu */

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px; /* Adjust as needed */
    left: 18px; /* Adjust as needed */
    background-color: #FFF;
    padding: 0 10px 0;
    z-index: 999999; /* Ensure mobile menu appears above content */
    animation-duration: 0.3s; /* Duration of the animation */
    animation-fill-mode: both; /* Retains the final state of the animation */
	width: 80%;
	max-width: 300px;
	font-size: .9em;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);	
	border: 2px solid #B22969;
}

/* Define the animation for sliding */

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Show the menu when the checkbox is checked */

.mobile-menu-toggle:checked + .toggle-menu + .mobile-menu {
    display: block;
    animation-name: slideIn; /* Use slideIn animation when menu is opened */
}

/* Hide the menu when unchecked */

.mobile-menu-toggle:not(:checked) + .toggle-menu + .mobile-menu {
    animation-name: slideOut; /* Use slideOut animation when menu is closed */
}

/* Additional styling for the mobile menu */

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0;
}

.mobile-menu li {
	margin: 0 0 0 0;
	color: #444;
	font-family: Poppins-Regular, Helvetica, Arial, "sans-serif";
    padding: 10px 10px 8px 15px;
	border-bottom: 1px solid #ccc;
}

.mobile-menu li:last-child {
	margin: 0 0 0 0;
	color: #444;
	font-family: Poppins-Regular, Helvetica, Arial, "sans-serif";
    padding: 10px 10px 8px 20px;
	border-bottom: 0px solid #ccc;
}

.mobile-menu li a {
    text-decoration: none;
    color: #444;
}

.mobile-menu li a:hover {
    color: #B22969;
	font-weight: bold;
}

.mobile-menu ul.sub-menu {
    text-align: left;
	margin: 0 0;
}

.mobile-menu ul.sub-menu li {
    padding: 10px 0px 0px;
	margin-left: 25px;
	list-style: disc;
}

/* Closing button style */

.close-menu {
    position: absolute;
    top: 3px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #B22969;
}

/* Parent items with sub-menus */
.mobile-menu li.menu-item-has-children > a {
    position: relative; /* Allow the arrow to be positioned absolutely */
    padding-right: 20px; /* Space for the arrow */
}

/* Arrow indicator styling */
.mobile-menu li.menu-item-has-children > a::after {
    content: '\2304'; /* Unicode character for down arrow */
    position: absolute;
    right: 0px; /* Position it to the right */
    top: 7px;
    transform: translateY(-50%); /* Center the arrow vertically */
    font-size: 0.8em;
    color: #444; /* Arrow color */
}

/* Sub-menu styling */
.mobile-menu ul.sub-menu {
    display: none; /* Hide sub-menu by default */
    position: relative; /* Position relative to the parent */
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    z-index: 9999;
    width: 100%;
    animation-duration: 1s; /* Duration of the animation */
    animation-fill-mode: both; /* Retains the final state of the animation */
    max-height: 0; /* Initially collapsed */
    overflow: hidden; /* Hide overflow content */
}



/* Define the animation for expanding sub-menu */
@keyframes expandDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px; /* Set a max-height large enough to fit your content */
        opacity: 1;
    }
}

@keyframes collapseUp {
    from {
        max-height: 500px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

/* Show sub-menu on hover */
.mobile-menu li:hover > ul.sub-menu {
    display: block;
    animation-name: expandDown; /* Use expandDown animation when sub-menu is opened */
}



/* Hide sub-menu when not hovered */
.mobile-menu li > ul.sub-menu {
    display: none;
    animation-name: collapseUp; /* Use collapseUp animation when sub-menu is closed */
}

/* Parent menu item hover state */
.mobile-menu li:hover > ul.sub-menu {
    display: block;
    animation-name: expandDown; /* Use expandDown animation when sub-menu is opened */
}

/* Show the parent menu item and its sub-menu when the parent menu item is focused (for keyboard navigation) */
.mobile-menu li:focus-within > ul.sub-menu {
    display: block;
    animation-name: expandDown;
}

/* Hide the sub-menu when not hovered or focused */
.mobile-menu li > ul.sub-menu {
    display: none;
}

.mobile-menu li ul li {
	border-bottom: 0px solid #ccc;
	font-size: .9em;
}

/* FOOTER MENU - Styles ---------------------*/

#footer #cssmenu > ul > li:after {
    display: none;
 }

	#footer #cssmenu,
	#footer #cssmenu ul,
	#footer #cssmenu li,
	#footer #cssmenu a {
		border: none;
		margin: 0;
		padding: 0;
		box-sizing: content-box;
		list-style: disc;
		text-transform: none;
		text-align: left;
		vertical-align: middle;
		background-color: rgba(0,0,0,0.00);
		display: list-item;
		color: #3CB655;
		line-height: 30px;
		font-weight: normal;
		font-family: Poppins-Regular;
	}

#footer-center h5 {
	margin-bottom: 22px;
}

	#footer #cssmenu {
		height: auto;
		display: block;
		padding: 0;
		margin: 0;
		width: auto;
		border-color: #080808;
	}

/*--- MENU - List Styles ---*/

	#footer #cssmenu a:hover {
		color: #B22969;
	}

#footer #cssmenu > ul {
    display: block;
    align-items: baseline;
    justify-content: center;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0;
	
}

#footer #cssmenu > ul > li {
	position: relative;
	display: inline-block;
    flex: none; /* Default */
    list-style-type: disc;
	width: 100%;
	margin-left: 20px;
}

/******************************* SLIDESHOW *******************************/

#slideshow-box {
	width: 100%;
	height: 600px;
	position: relative;

}

#slideshow-image {
	width: 64.29%;
	float: right;
	height: auto;
	margin-bottom: 40px;
	position: relative;
	right: 0;
	top: 0;
	z-index: 0;
}

#slideshow-cover {
	width: 100%;
	height: 600px;
	position: absolute;
	z-index: 999;
	left: 0;
	top: 0;
}

#slideshow-cover img {
	width: 100%;
	height: 600px;
}

#slideshow-text {
	width: 100%;
	max-width: 1400px;
	padding: 30px;
	margin: 0 auto;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	text-align: left; /* Optional: centers text inside the box */
}

#slideshow-text p {
	width: 700px;
	margin: 10px 0 0 30px;
	font-family: Poppins-Regular;
	color: #fff;
	font-size: 1.9em;
	line-height: 1.4em;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

#slideshow-border {
	width: 100%;
	height: 5px;
	background-color: #40B54C;
}

/******************************* MAIN BODY *******************************/

/* CONTENT / BODY
-------------------------------------------------------------------------------*/

#wrapper {
	width: 100%;
	height: auto;
	margin: 0px auto;
	background-color: #FFF;
	display: block;
	overflow: hidden;
	}

	#main {
		width: 100%;
		height: auto;
		position: relative;
	}

		#content {
			box-sizing: border-box;
			padding: 0px 30px 100px;
			width: 100%;
			max-width: 1400px;
			margin: 0 auto;
		}

	#content p {
		font-size: .9em;
		margin-bottom: 24px;
		color: #666;
		line-height: 1.6em;
	}

/******************************* FOOTER TESTIMONIALS *******************************/

#footer-testimonials {
	width: 100%;
	height: auto;
	background-color: #B32869;
	padding: 60px 0;
}

#footer-testimonials-contents {
	width: 100%;
	max-width: 1400px;
	height: auto;
	color: #fff;
	margin: 0 auto;
	text-align: center;
}

#footer-testimonials-contents a:link, #footer-testimonials-contents a:visited {
	color: #B32869;
	background-color: #fff;
	border-radius: 10px;
	padding: 10px 15px 8px;
	margin: 30px auto 0;
	font-size: .7em;
	display: block;
	text-decoration: none;
	max-width: 200px;
}

#footer-testimonials-contents a:hover{
	color: #B32869;
	background-color: #ffff00;
}

/******************************* FOOTER *******************************/

#footer {
	width: 100%;
	height: auto;
	padding: 70px 30px 60px;
	background-color: #fff;
	border-top: 5px solid #B22868;
}

#footer h5 {
	color: #3CB655;
}

#footer p {
	font-size: .8em;
	color: #3CB655;
	line-height: 30px;
	vertical-align: middle;
}

#footer-contents {
	width: 100%;
	max-width: 1340px;
	height: auto;
	color: #fff;
	margin: 0 auto;
	overflow: hidden;
	clear: both;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#footer-one,
#footer-two,
#footer-three,
#footer-four {
  width: 22%;
  margin-right: 4%;
}

#footer-one img {
	width: 90%;
	height: auto;
}

#footer-two p {
  display: flex;
  flex-direction: column;
}

.footer-item {
  display: flex;
  align-items: flex-start; /* aligns top of icon with top of text */
  margin-bottom: 10px;
}

.footer-item img {
  margin-right: 10px;
  margin-top: 3px; /* fine-tune vertical alignment */
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-item span {
  font-size: 0.8em;
  line-height: 1.8em;
  color: #3CB655;
}

#footer-four {
  margin-right: 0;
}



/******************************* COPYRIGHT / LOGIN / T&Cs *******************************/

#notice_footer {
	width: 100%;
	height: auto;
	min-height: 60px;
	background-color: #3CB655;
	display: block;
	overflow: hidden;
}

#notice_footer a:link, #notice_footer a:visited{
	color: #fff;
	text-decoration: none;
}

#notice_footer a:hover {
	color: #FFFF00 !important;
	text-decoration:underline;
}

#notice_footer_content {
	width: 100%;
	max-width: 1400px;
	height: auto;
	margin: 0 auto;
	padding: 0 30px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	line-height: 60px; 
	font-size: 14px;
	overflow: hidden;
	clear: both;
}

#notice_footer_mobile {
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0 auto;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	line-height: 26px; 
	font-size: 14px;
	display: block;
	overflow: hidden;
	padding: 30px 30px;
}

#notice_footer_left {
	width: 45%;
	max-width: 560px;
	height: auto;
	float: left;
	text-align: left;
	vertical-align: middle;
}

#notice_footer_right {
	width: 45%;
	max-width: 560px;
	height: auto;
	float: right;
	text-align: right;
	vertical-align: middle;
}

/******************************* CONTACT FORM 7 STYLES *******************************/

.wpcf7-form{
	border: none;
	padding:0;
	-webkit-border-radius: 10px;   
    border-radius: 10px;
	width: 100%;
	margin-bottom:21px;
}

.email_terms {
	font-size:13px !important;
	color: #444 !important;
}
	

#two-column{
	width: 100%;
}

#two-column input::placeholder{
	color: #999;
	font-family: Poppins-Regular;
}

#two-column #left{
	width: 48%;
	float: left;
}

#two-column #left p {
    line-height: 25px !important;
}

#two-column #right{
	width: 48%;
	float: right;
}
#two-column p{
margin: 0px !important;
}

#two-column input[type="text"]{
	border:none;
	border:1px solid #DDD;
	font-size : .8em;
	border-radius: 5px;
	padding: 10px 15px;
	margin-bottom:15px;
	width: 100%;
}

#two-column input[type="email"]{
	border:none;
	border:1px solid #DDD;
	font-size: .8em;
	border-radius: 5px;
	padding: 10px 15px;
	margin-bottom:15px;
	width: 100%;
}

#two-column textarea {
    position: relative;
    padding: 10px 15px;
    border:1px solid #DDD;
    border-radius: 5px;
	width: 100%;
	margin-bottom: 15px;
	font-size: .8em;
	font-family: Poppins-Regular;
}

#two-column textarea::placeholder {
    color: #999;
}


#two-column select {
    border: 1px solid #DDD;
    border-radius: 5px;
    padding: 10px 15px 10px 10px;
    margin-bottom: 15px;
    width: 100%;
    color: #999; /* Initial color for placeholder */
    font-size: .8em;
	font-family: Poppins-Regular;
}

/* Ensure the placeholder option stays gray */
#two-column select option[value=""] {
    color: #999 !important;
}

/* Change the color when a valid option is selected */
#two-column select:valid {
    color: #333;
}

.wpcf7 select[name="select-an-option"] { color:#aaa; font-size: .9em;}

.wpcf7 select[name="select-an-option"] option { color:#000 !important; font-size: .9em; }


#two-column input[type="submit"]{
	padding:11px 25px 9px;
	background-color: #D90000;
	border: 1px solid #D90000;
	color: #fff;
	text-transform: uppercase;
	float:right;
	border-radius: 5px;
	margin:5px 0px 0px 0px;
}

#two-column input[type="text"]:focus, #two-column textarea:focus, #two-column input[type="email"]:focus{
	background: #F1F1F1;
}

#two-column input[type="submit"]:hover{
	background: #B8010B;
	color: #fff;
}

#content .wpcf7-not-valid-tip {
    font-size: .8em;
	margin-bottom: 10px;
	margin-top: -15px;
	text-align: right;
}

#content .wpcf7 form.invalid .wpcf7-response-output {
    border-color: #ff0000;
}

#content .wpcf7 form .wpcf7-response-output {
    padding: 0.5em 1em;
    border: 2px solid #008C00;
	font-size: .8em;
	margin: 40px 0px 10px;
}

/******************************* SMART PHONES  UNDER 800 PIXELS *******************************/

@media (max-width: 799px) {
	
	
#header-main-menu {
    display: none;
}
	
#full-width-menu {
    display: none;
}
	
#header {
    height: 200px;
}
	
#header-main-contents {
    height: auto;
	clear: both;
	padding: 10px;
}
	
#header-icons {
    top: 20px;
    right: 20px;
}
	
#header-main-address {
    float: none;
    position: relative;
    right: initial;
	top: initial;
    width: 100%;
    text-align: center;
	font-size: .8em;
}
	
#header-main-logo {
    float: none;
    position: relative;
    top: 50px;
    left: initial;
    width: 100%;
	text-align: center;
}
	
#header-main-logo img{
    width: 90%;
	height: auto;
}
	
#footer {
    padding: 80px 20px;
}
	
#footer p {
    font-size: .7em;
    line-height: 2em;
}

	
.footer-item {
    display: block;
	width: 100%;
	text-align: center;
    align-items: flex-start;
    margin-bottom: 10px;
}
	
#footer-one, #footer-two, #footer-three {
		float: none;
		width: 100%;
		text-align: center;
		margin-bottom: 70px;
		margin-right: 0;
	}
	
#footer-four {
		float: none;
		width: 100%;
		text-align: center;
		margin-bottom: 0px;
		margin-right: 0;
	}
	
#footer-one img {
		max-width: 300px;
		height: auto
	}
	
#notice_footer_content {
    display: none;
}
	
#footer #cssmenu > ul > li > a {
    font-size: .8em;
	list-style: none;
	text-align: center;
}
	
#footer #cssmenu > ul > li {
    width: 100%;
	margin-left: 0;
}
	
#notice_footer_content {
    display: none;
}
	
#smallgoogle {
    text-align: left;
    padding: 0 0px 10px;
}
	
#notice_footer_left, #notice_footer_right {
    width: 100%;
    max-width: none;
    float: none;
    text-align: center;
}

}

/******************************* TABLETS BETWEEN 800 & 1200 PIXELS *******************************/

@media screen and (min-width: 800px) and (max-width: 1199px) { 
	
#header-contact-contents-left {
    display: none;
}
	
#header-main-menu {
    display: none;
}
	
#full-width-menu {
    display: none;
}
	
#header-main-contents {
    padding: 20px 30px;
	height: auto;
}
	
#header-main-address {
    float: none;
    position: relative;
    right: initial;
	top: initial;
    width: 100%;
    text-align: center;
}
	
#header-main-logo {
    float: none;
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
	text-align: center;
}
	
	#footer-one {
		float: none;
		width: 100%;
		text-align: center;
		margin-bottom: 70px;
		margin-right: 0;
	}
	
	#footer-one img {
		max-width: 300px;
		height: auto
	}
	
#footer-two {
    width: 38%;
	margin-right: 0;
}
	
#footer-three, #footer-four {
    width: 28%;
	margin-right: 0;
}
	
#footer-two, #footer-three {
	margin-right: 3%;
}
	
#notice_footer_content {
    display: none;
}

}

/******************************* DESKTOPS AND NOTEBOOKS OVER 1200 PIXELS *******************************/

@media (min-width: 1200px) {
	
.toggle-menu, .mobile-menu {
        display: none;
}
	
#notice_footer_mobile {
    display: none;
}

}

/******************************* CUSTOM PAGE CSS *******************************/

.maroon-button .wp-block-button__link {
    color: #fff;
    box-shadow: none;
    text-decoration: none;
    padding: 10px 20px 8px;
	border-radius: 6px;
    font-size: .8em;
	text-transform: uppercase;
	background-color: #B22969;
	font-family: Poppins-Regular;
	font-weight: normal;
	margin: 10px 0 0 0;
}

.maroon-button .wp-block-button__link:hover {
    background-color: #8d1f52; /* darker maroon on hover */
    color: #fff; /* optional: change text color */
    box-shadow: 0 4px 10px rgba(0,0,0,0.25); /* optional shadow effect */
    transform: translateY(-2px); /* optional lift effect */
}

ul.tick-list  {
    list-style: none; /* remove default bullets */
    padding-left: 0;  /* optional, adjust spacing */
}

ul.tick-list li {
    background: url("../../../../2025-template-images/tick-list.png") no-repeat left center;
    padding-left: 40px; /* space so text doesn’t overlap image */
    background-size: 27px 24px; /* adjust size of the image */
	margin: 0 0 0 0;
	line-height: 2em;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop: 5 equal columns */
  gap: 30px; /* space between columns */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px;
}

.grid-item {
  padding: 0px;
  text-align: center;
  border-radius: 0px;
  font-family: Poppins, sans-serif;
}

/* Tablet view (2 + 2 + 1) */
@media (max-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* two columns */
  }
  .grid-item:nth-child(5) {
    grid-column: 1 / -1; /* make the last item span full width */
  }
}

/* Mobile view (single column) */
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr; /* single column */
  }
}

/******************************* EVENT CALENDAR *******************************/

.ecs-event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 equal cols that can shrink */
  gap: 80px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  width: 100%;
}

.ecs-event-list li {
  min-width: 0;          /* allow grid items to shrink */
  box-sizing: border-box;
  margin: 0;             /* kill any theme margins */
  padding: 10px 10px 20px 10px;
  background: #fff;   /* demo only */
	border-radius: 10px;
	 /* shadow glow */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); /* adjust spread/opacity as needed */
}

/* Stop inner content from blowing out the column */
.ecs-event-list li img,
.ecs-event-list li video {
  max-width: 100%;
  height: auto;
  display: block;
}

.ecs-event-list li a,
.ecs-event-list li span,
.ecs-event-list li p {
  word-wrap: break-word;
  overflow-wrap: anywhere;  /* break long URLs/words */
}

.ecs-event-list li h4 a:link {
	color: #444;
	font-family: Poppins-SemiBold;
	font-size: .9em;
	text-decoration: none;
	width: 100%;
}

.ecs-event-list li h4{
	margin: 20px 20px 5px 20px;
	line-height: 1.4em;
}

.ecs-event-list li img {
  width: 100%;
  height: 370px;       /* fixed height */
  object-fit: cover;   /* crops instead of squishing */
  display: block;
}

/* Make the date line a full-width block with spacing */
.ecs-event-list > li > span.duration.time {
	display: block;
	padding: 0 20px 0;
	line-height: 1.4;
	font-size: .7em;
	text-transform: uppercase;
}

/* If you also want the venue on its own line */
.ecs-event-list > li > span.duration.venue {
  display: block;
  margin-top: 10px;
	padding: 0 20px 0;
	margin-bottom: 10px;
	font-size: .9em;
}

.ecs-event-list > li > span.duration.venue em {
  display: none;
}

.tribe-events-event-image img {
  max-width: 100%;   /* shrink down to container */
  height: auto;      /* keep proportions */
  display: block;    /* removes extra whitespace under images */
}


@media (max-width: 1200px) {

	.ecs-event-list { 
		grid-template-columns: repeat(2, minmax(0, 1fr)); 
	}
	
.ecs-event-list li h4 a {
	  display: inline-block; /* or block */
	  padding: 0 10px;
	  text-decoration: none; /* optional cleanup */
}
	
	.ecs-event-list li h4 a:link {
		padding: 0 10px;
		line-height: 1.4em;
}
	
	.ecs-event-list {
		gap: 40px;
	}
	
	.ecs-event-list > li > span.duration.time {
		padding: 0 10px 0;
	}
	
	.ecs-event-list > li > span.duration.venue {
		padding: 0 10px 0;
	}

}

@media (max-width: 600px) {
  .ecs-event-list { grid-template-columns: 1fr; }
}


/******************************* STRONG TESTIMONIAL FEED *******************************/

#footer-testimonials-contents a.wpmslider-next:link, #footer-testimonials-contents a.wpmslider-next:visited, #footer-testimonials-contents a.wpmslider-prev:link, #footer-testimonials-contents a.wpmslider-prev:visited {
    color: rgba(0,0,0,0.00);
    background-color: rgba(0,0,0,0.00);
}

.strong-view.wpmtst-simple {
    text-align: center;
}

.strong-view.wpmtst-simple div {
    max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	font-size: 28px;
	font-style: italic;
}

.strong-view.controls-style-buttons:not(.rtl) .wpmslider-next:before, .strong-view.controls-style-buttons:not(.rtl) .wpmslider-prev:before {
    background: #fff !important;
}

/******************************* MOBILE FRIENDLY TABLES *******************************/

/* Base: make sure table looks normal on larger screens */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table td,
.wp-block-table th {
  padding: .6rem .8rem;
  border: 1px solid #e5e7eb; /* subtle */
}

/* MOBILE STACKED / GROUPED ROWS */
@media (max-width: 640px) {
  /* Hide the header row */
  .wp-block-table table tr:first-child {
    display: none;
  }

  /* Turn each table row into a "card" */
  .wp-block-table table tbody tr {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 .9rem;
  }

  /* Cells inside the card */
  .wp-block-table table td {
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 0;                 /* borders handled by the card */
    border-top: 1px solid #f0f2f5;
    padding: .7rem .9rem;
  }
  .wp-block-table table td:first-child {
    /* Benefit title as the card header */
    display: block;
    font-weight: 700;
    background: #f8fafc;
    border-top: 0;
    font-size: 1rem;
  }

  /* Add column labels before each membership cell */
  .wp-block-table table td:nth-child(2)::before,
  .wp-block-table table td:nth-child(3)::before,
  .wp-block-table table td:nth-child(4)::before {
    flex: 0 0 90px;            /* label width */
    content: "";
    font-weight: 600;
    opacity: .8;
  }
  .wp-block-table table td:nth-child(2)::before { content: "Silver"; }
  .wp-block-table table td:nth-child(3)::before { content: "Gold"; }
  .wp-block-table table td:nth-child(4)::before { content: "Guest"; }

  /* Make ticks behave nicely */
  .wp-block-table table td img {
    max-width: 24px;
    height: auto;
    display: block;
  }

  /* Optional: reduce empty cell height if it's &nbsp; */
  .wp-block-table table td:has(> :only-child[alt=""]),
  .wp-block-table table td:empty {
    min-height: 0;
  }
}

/* Make each event a vertical flex container */
.ecs-event {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  padding: 0 10px;
  margin: 15px 0 0 0;
}

/* The wrapper around the button */
#content p.ecs-website {
  margin-top: auto; /* pushes it to the bottom within the flex column */
  padding: 15px 10px 0;
	margin-bottom: 0;
}

/* The button itself */
.ecs-website__btn {
  display: inline-block;
  padding: .5em .75em;
  border-radius: 4px;
  background: #135E98;
  color: #fff;
  text-decoration: none;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.ecs-website__btn:hover {
  background: #0d4b7d;
}
