/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   CSS Variables for theming across sites
   ========================================================================== */
   
:root {
  --color-primary: #000;
  --color-green: #5fd873;
  --color-pink: #ff00be;
  --color-dark: #000;
  --color-light: #ffffff;
  --color-tint-dark: #1e1a30;
  
  --transition-hover: all .2s ease;
 
  --font-reg: 400;
  --font-bold: 700;
  
  --border-radius: 0;
  
  --width-page-max: 1240px;
}   

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
	font-family: neue-haas-grotesk-text, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: var(--font-reg);
	font-style: normal;
    color: #333;
    font-size: 1rem;
    line-height: 1.65;
	box-sizing: border-box;
}

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

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
   
/* ==========================================================================
   Global Base
   ========================================================================== */

/* Clear full width containers */   
.col-100p,
.col-4 {
	clear: both;
	overflow: hidden;
}

/* Float modular containers */
.col-75p,
.col-66p,
.col-50p,
.col-25p,
.col-33p,
.col-3,
.col-2,
.col-1 {
	float: left;
	overflow: hidden;
	position: relative;
}

/* Set individual columns widths and behaviour */
.col-4 {
	width: 100%;
	max-width: var(--width-page-max);
	margin: 0 auto;
}

.col-3 {
	width: 31.33%;
}

.col-2 {
	width: 48%;
}

	/* Set float on every second column in a row of two*/
	.col-2:nth-child(2) {
		float: right;
	}

.col-1 {
	width: 32%;
}

	/* Set margin on every middle column in a row of three*/
	.col-1:nth-child(3n+2) {
		margin-left: 2%;
		margin-right: 2%;
	}

/* Flat percentage columns */
.col-100p{
	width: 100%;
	float: left;
}

.col-75p {
	width: 75%;
}

.col-66p {
	width: 66.66%;
}

.col-50p {
	width: 50%;
}

.col-33p {
	width: 33.33%;
}

.col-25p {
	width: 25%;
}

.row {
	padding-bottom: 30px;
}

.row-home {
	padding-top: 30px;
	padding-bottom: 30px;
}

	@media only screen and (max-width: 1240px) {
		.row-home {
			padding-right:20px;
			padding-left:20px;
		}
	}


/*.row-narrow {
	padding-left:20px;
	padding-right:20px;
}
*/

.internal-page {
	padding:40px 0 ;
}

.row-flex {
	display: flex;
	justify-content: space-between;
}

.flex-y-middle {
	align-items: center;
}

.row-fill-dark {
	background: var(--color-tint-dark);
}

	.row-fill-dark * {
		color: var(--color-light);
	}
	
	.clip-path {
		clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
		margin-bottom:20px;
	}

.p-center {
	float:none;
	margin:0 auto;
	display: inline-block;
}

table {
	width: 100%;
	margin: 0 0 30px 0;
	text-align: left;
	border-collapse: collapse
}
	table th {
		background: #e3e3e3;
		border-bottom: solid 2px #e3e3e3;
		margin-bottom: 2px;
		padding:20px;
		font-size: 1.15rem;
	}
	
	table tr:nth-child(even) {
		background: #fcfcfc;
	}

	table td {
		padding:12px 20px;
		border-bottom: solid 1px #e3e3e3;
	}		
	
		.scorecard td {
			padding:12px 0;
		}

	.payment-table form {float: right;}
	
	.payment-table tr:nth-child(even) {
		background: none;
	}

	.payment-table tr:last-child {
		background: #fcfcfc;
	}

	
	
figure {
    margin: 0 0 20px 0;
    width: min-content;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
   
a {
	color: var(--color-pink);
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
	}	
	
p {
	margin: 0 0 20px 0;
}

	p a {font-weight: bold;}

	/*Remove margin from last p*/
	article >:last-child,
	aside >:last-child {
		margin-bottom:0;
	}

h1 {
	font-family: neue-haas-grotesk-display,"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: var(--font-bold);
	font-size: 2.2rem;
	line-height: 2.2rem;
	text-transform: uppercase;
	color: var(--color-dark);
	margin: 0 0 15px 0;
	letter-spacing:.5px;
}

h2 {
	font-family: neue-haas-grotesk-display,"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: var(--font-bold);
	font-size: 1.8rem;
	line-height: 2.2rem;
	text-transform: uppercase;
	color: var(--color-dark);
	margin: 0 0 15px 0;
	letter-spacing:.5px;
}

.home-right h2 {
	font-size: 2.2rem;
}

h3 {
	font-family: neue-haas-grotesk-display,"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: var(--font-bold);
	line-height: 1.65rem;
	text-transform: uppercase;
	color: var(--color-dark);
	margin: 0 0 15px 0;
	letter-spacing:.5px;
}

h4 {
	font-family: neue-haas-grotesk-display,"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: var(--font-bold);
	font-size: 1.3rem;
	line-height: 1.4rem;
	text-transform: uppercase;
	color: var(--color-dark);
	margin: 0 0 10px 0;
	letter-spacing:.5px;
}

.txt-primary {
	color: var(--color-pink);
}

/* Reset lists */
ul, ol {
	list-style: none;
	margin:0 0 20px 0;
	padding:0;
}

.content-area {
	padding:40px;
}

	.home .content-area {
		padding:0;
	}

.content-area ul,
.content-area ol {
	margin: 0 0 20px 25px;
	clear: both;
}

	.content-area ul li {
		list-style-type: circle;
		list-style-position: inside;
		margin: 0 0 10px 0;
	}

	.content-area ol li {
		list-style-type: decimal;
		list-style-position: outside;
		margin: 0 0 10px 0;
	}
	
	.content-area ul li:last-child,
	.content-area ol li:last-child {
		margin-bottom:0;
	}
	
	.list-inline {
		width: 100%;
		clear: both;
		text-align: center;
	}
	
	.content-area .list-no-style,
	.home-right ul  {
		margin-left:0;
	}
	
		.content-area .list-no-style li,
		.home-right ul li  {
			list-style-type: none;
			margin-bottom:6px; 
		}
	
		.list-inline li {
			display: inline-block;
			text-align: center;
			margin: 10px;
		}

blockquote {
    margin:0;
    padding:0;
    width: 100%;
}

	blockquote > p:last-of-type {
		margin-bottom:0;
	}

small {
	font-size: 90%;
}

.bg-dark * {
	color: var(--color-light);
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	font-family: neue-haas-grotesk-display,"Helvetica Neue", Helvetica, Arial, sans-serif;
	display: block;
	float: left;
	border: solid 0px var(--color-primary);
	border-radius: var(--border-radius);
	padding:20px 30px;
	text-transform: uppercase;
	font-weight: var(--font-bold);
	color:#fff;
	text-align: center;
	letter-spacing: .4px;
	font-size: 1.1rem;
	line-height: 1.1rem;
	margin: 0 20px 10px 0;
	background: var(--color-pink);
	backface-visibility: hidden;
	transition: var(--transition-hover);
}

	.btn:hover {
		background: var(--color-green);
		color: #fff;
		text-decoration: none;
	}
	
  		.btn:focus {
		    outline: 0;
		    box-shadow: 0 0 0 3px rgba(164,202,254,.45);
  		}
	
	.btn-txt-primary {
		color: var(--color-primary);
	}
	
	.btn-primary {
		background: var(--color-green);
		color: #000;
	}
	
		.btn-primary:hover {
			background: var(--color-pink);
			color: var(--color-primary);
		}

.btn-row-align-centre {
	text-align: center;
}

.btn-center,
.btn-row-align-centre .btn {
	display: inline-block;
	float: none;
	margin-left:10px;
	margin-right:10px;
}

.btn-text {
	margin-right:15px;
	margin-left:15px;
}

.btn-unstyled {border: 0;background: 0; outline:0;}
.btn-unstyled:hover {color: var(--color-primary);}

/* Just prevent some text wrapping of icons in tables.*/
table .btn {white-space: nowrap;}




/* ==========================================================================
   Icon Rows
   ========================================================================== */

.icon-row {
	flex-wrap: wrap;
	justify-content: center;
}

.icon-box {
	text-align: center;
	padding:0 20px 20px 20px;
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

	.icon-box .btn {
		margin-top:auto;
	}

/*
	.icon-cont {
		width: 120px;
		height: 120px;
		margin: 0 auto 25px auto;
		-webkit-box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.11);
		-moz-box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.11);
		box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.11);
		border-radius: 100%;
		position: relative;
		z-index: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		backface-visibility: hidden;
		transition: var(--transition-hover);
	}
	
		.icon-cont:after {
			content: '';
			position: absolute;
			width: 80%;
			height:80%;
			border-radius: 100%;
			background: var(--color-primary);
			z-index: 1;
			transition: var(--transition-hover);
		}
		
			.icon-cont:hover:after {
				width: 110%;
				height:110%;
				-webkit-box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.11);
				-moz-box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.11);
				box-shadow: 0px 0px 18px -5px rgba(0,0,0,0.11);
			}
	
		.icon-cont > img {
			width: 35px;
			height: auto;
			position: relative;
			z-index: 2;
		}
		
	*/
	
	.icon-cont {
		width: 120px;
		height: 120px;
		margin: 0 auto 25px auto;
		position: relative;
		z-index: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		backface-visibility: hidden;
		transition: var(--transition-hover);
	}
		
		.icon-cont > svg {
			width: 180px;
			height: auto;
			position: relative;
			z-index: 2;
		}
		
		.svg-icon-primary {
			fill: var(--color-primary);
		}
		
			
		
/* ==========================================================================
   Countdown Timer Section
   ========================================================================== */
   
   .countdown-cont {
	   background: var(--color-tint-dark);
	   padding:30px;
	   margin: 0 0 50px 0;
   }
   
   .countdown {
	   display: flex;
	   flex-direction: row;
	   flex-wrap: nowrap;
	   margin: 15px auto 45px auto;
	   width: 100%;
	   max-width: 400px;
   }
   
   .countdown > span {
	   display: block;
	   text-align: center;
	   background: var(--color-primary);
	   color: var(--color-light);
	   padding:15px 15px;
	   border-radius: 5px;
	   font-size: 25px;
	   margin: 4px;
	   width: 25%;
	   position: relative;
   }
   
   .countdown > span:after {
	   content: 'Days';
	   position: absolute;
	   bottom:-25px;
	   left: 0;
	   right: 0;
	   width: 100%;
	   text-align: center;
	   text-transform: uppercase;
	   color: var(--color-primary);
	   font-size: 14px;
   }
   
   .countdown > span.hour:after {
	   content: 'Hours';
   }

   .countdown > span.min:after {
	   content: 'Mins';
   }

   .countdown > span.sec:after {
	   content: 'Secs';
   }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

	.card a {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
	}

	.card-img {
		width: 100%;
		height: auto;
		margin: 0 0 20px 0;
	}

	.card .card-heading {
		padding: 0 15px;
		margin-bottom:20px;
		color: var(--color-light);
		font-weight: var(--font-bold);
 
	}

	.card a:hover {
		text-decoration: none;
	}
	
	.card .btn {
		margin-left:15px;
		margin-top: auto;
		align-self: flex-start;
	}
	
/* ==========================================================================
   Shortlist Certifictes
   ========================================================================== */
   
   .cert-panel {
	   padding: 10px 30px;
	   border: solid 1px #e3e3e3;
	   clear: both;
   }
   
@media print {
	   
   .certificate-cont {
	   display: -webkit-box !important;
	   display: -ms-flexbox !important;
	   display: flex !important;
	   width: 100%;
	   height: 100vh;
	   padding:40px;
	   text-align: center;
	   -webkit-box-orient: vertical;
	   -webkit-box-direction: normal;
	       -ms-flex-direction: column;
	           flex-direction: column;
	   -webkit-box-pack: center;
	       -ms-flex-pack: center;
	           justify-content: center;
	   -webkit-box-align: center;
	       -ms-flex-align: center;
	           align-items: center;
	   
	   clear: both;
	   z-index:0;
	   -webkit-print-color-adjust: exact;
   }
   
   
   
   	.certificate-cont h1 {
	   font-size: 45px !important;
	   -webkit-print-color-adjust: exact;
   	}
   	.certificate-cont h2 {
	   color: #eccd09 !important;
	   font-size: 50px !important;
	   -webkit-print-color-adjust: exact;
	   text-transform: none !important;
   	}
   	
   	.certificate-cont .site-logo {
	   	margin: 0 0 30px 0;
   	}
   	
   	.certificate-cont .cats {
	   	font-size: 20px;
	   	margin: 0 0 30px 0;
   	}   	
	}
/* ==========================================================================
	 Feedback Panels Theme
	 ========================================================================== */
			 
			 
	   .feedbackscores {
		   display: flex;
		   flex-direction: column;
		   justify-content: space-between;
		   flex-wrap: wrap;
		   
		   border: solid 1px #e3e3e3;
		   border-radius: var(--border-radius);
		   clear: both;
		   text-align: center;
		   margin: 20px 0;
		   overflow: hidden;
	   }		
	   
	   .feedbackscores > div {
		   display: block;
		   padding: 10px;
		   width: 100%;
		   border-bottom: solid 1px #e3e3e3;
	   }  
	   
	   .feedbackscores > div:last-child {
		   border-bottom:0;
	   }  
	   
	   .feedbackCompare  {
		   background: #e3e3e3
	   }  
	   
	   .feedbackCompare {
		   width: 100%;
	   }
	
	
/* ==========================================================================
   Accordions Theme
   ========================================================================== */
   
.faq-q-cont {
	clear:both; 
	float:left; 
	width:100%;
	margin: 15px 0 0 0;
	
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
}   
   
.faq-q {
	display: block;
	width: 100%;
	clear: both;
	float: left;
	position: relative;
	padding: 20px 44px 20px 20px;
	background: #f1f1f1;
	color: #000014;
	margin: 15px 0 0 0;
	cursor: pointer;
	transition: var(--transition-hover);
}

.faq-q-cont .faq-q {
	margin:0;
}

.faq-q-control {
	float: right;
	padding:10px 20px;
	border:solid 1px #f1f1f1;
	
	font-weight: var(--font-bold);
	color:#000;
	text-align: center;
	letter-spacing: .2px;
	font-size: .9rem;
	line-height: 1.1rem;
	white-space: nowrap;
	
	
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

	.faq-q-control i {
		margin-right:10px;
	}

	.faq-q-control .btn {
		white-space: nowrap;
		margin: 10px;
		
	}

	.faq-q:hover,
	.faq-open,
	.faq-q-control:hover {
		background: var(--color-primary);
		text-decoration: none;
		color: #fff;
	}

	.faq-q > span {
		color: var(--color-primary);
		position: absolute;
		right: 20px;
	    top: 50%;
	    margin-top: -12px;
	}
	
		.faq-q:hover > span {
			color: #000014
		}
		
		.faq-q:before {
			opacity: 0;	
			content: 'View';
			position: absolute;
			right:50px; 
			font-weight: var(--font-bold);	
			transition: var(--transition-hover);
		}
		
		.faq-q:hover:before {
			opacity: 1;
		}
		
.faq-a {
	display: block;
	clear: both;
	float: left;
	padding: 20px;
	width: 100%;
}

	.faq-open > span {
		transform: rotate(180deg)
	}
	
	.faq-open:before {
		content:'Close';
	}
	
	
/* ==========================================================================
   Listing Cards
   ========================================================================== */
   
   .listing-card-row {
	   display: flex;
	   flex-direction: row;
	   justify-content: flex-start;
	   flex-wrap: wrap;
   }
   
	   	.listing-card {
		   	width: 23%;
		   	margin: 0 1% 20px 1%;
	   	}
	   	
	   	.listing-card-img {
		   	margin: 0 0 20px 0;
		   	width: 100%;
	   	}
	   	
	   	.card-info {
		   	
	   	}
	   	
   
/* ==========================================================================
   Listing Row
   ========================================================================== */
   
   .listing-row {
	   border-bottom: solid 1px #f1f1f1;
	   padding: 0 0 40px 0;
	   margin: 0 0 40px 0;
	   display: flex;
	   flex-direction: row;
	   justify-content: space-between;
   }
   
   	.listing-row-img {
	   	border: solid 1px #f1f1f1;
	   	padding:10px;
	   	margin-right:20px;
	    width: 15%;
	   	display: flex;
	   	flex-direction: column;
	   	justify-content: center;
   	}
   	
   		.listing-img-right .listing-row-img {
	   		order: 2;
	   		margin: 0 0 0 20px;
   		}
   	
	   	.listing-row-img img {
		   	width: 100%;
	   	}
	   	
	.listing-row-details {
		flex: 1;
	}
		
	.listing-row-details >:last-child {
		margin-bottom:0;
	}
	   	
	.listing-row-subline {
		text-transform: uppercase;
	}
	
/* ==========================================================================
   Winner Rows
   ========================================================================== */
   
/* ==========================================================================
	 Winner Rows
	 ========================================================================== */
	 
	 .winner-row {
		 margin-bottom:30px;
		 padding:20px;
		 border: solid 1px #f1f1f1;
		 border-radius: 5px;
	 }  	
	 
	 .winner-title h2 {
			 color: var(--color-pink);
			 text-transform: none;
	 }
	 
	 .winner-title h3 {
			 text-transform: none;
	 }
	 
	   .winner-gold {
		 color: goldenrod;
	 }
	 
	   .winner-silver {
		 color: silver;
	 }
	 
		 
	 .winner-media figure,
	 .winner-finalists figure {
		 width: 100% !important;
		 margin:0 0 20px 0;
		 max-width: 100% !important;
	 }
	 
	 .winner-media img,
	 .winner-finalists img {
		 width: 100% !important;
		 height: auto !important
	 }
	 
	 .winner-finalistsBlock {
		   background: #f9f9f9;
		   padding:20px;
		 border-radius: 5px;
	   }
	 
	 .winner-finalistsBlock > :last-child {
			 margin-bottom:0;
		 }
   
   
/* ==========================================================================
   Heading Bars
   ========================================================================== */
   
   .heading-align-centre {
	   text-align: center;
   }

/* ==========================================================================
   Block Quotes
   ========================================================================== */
   
   blockquote > footer {
	   font-weight: var(--font-bold);
	   margin-top:5px;
   }
   
/* ==========================================================================
   Tabbed Content
   ========================================================================== */

   ul.tabs{
		margin: 0px;
		padding: 0px;
		list-style: none;
	}
	
	ul.tabs li {
		text-transform: uppercase;
		background: none;
		color: #222;
		display: inline-block;
		padding: 10px 25px;
		font-weight: var(--font-bold);
		margin:0;
		cursor: pointer;
		transition: var(--transition-hover);
		border-radius: 10px 10px 0 0;
		border: solid 1px var(--color-primary);
		border-bottom: 0;
	}

	ul.tabs li:hover {
		background: var(--color-primary);
	}

	ul.tabs li.current{
		background: var(--color-primary);;
		color: #fff;
	}

	.tab-content{
		display: none;
	}

	.tab-content.current{
		display: inherit;
		background: white;
	}
	
	
	.fs ul.tabs {
		background: #fff;
	}

/* ==========================================================================
   Global Theme
   ========================================================================== */
   
   
.header-cont {
	z-index: 10;
	background: rgba(30, 26, 48, .95);
}  

.fix-header .header-cont {
	position: relative;
} 

	.header {
		padding: 20px;
	}
	
	.header > div {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	
	.header > div:first-child {
		justify-content: flex-start;
	}
	
	.header > div:last-child {
		justify-content: flex-end;
	}
	
	.site-logo {
		width: 100%;
	    max-width: 200px;
	    display: inline-block;
	}
		
	.icon-btn {
		display: block;
		border: solid 1px #000;
		border-radius: var(--border-radius);
		background: #5fd873;
		padding:10px 20px;
		text-transform: uppercase;
		color:#000;
		font-weight: var(--font-bold);
		float: right;
		
		display:flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		
		transition: var(--transition-hover);
	}
	
	.icon-btn-label {
		display: block;
		margin-right:10px;
	}
		
		/* MENU BURGER ICON */
	
		span.icon-burger {
			position: relative;
			border: solid 1px var(--color-dark);
			height: 2px;
			width: 30px;
			margin-left:10px;
		}
		
		span.icon-burger:before {
			content: '';
			position: absolute;
			border: solid 1px var(--color-dark);
			height: 2px;
			right:0;
			width: 75%;
			top: -10px;
			transition: var(--transition-hover);
		}
		
		span.icon-burger:after {
			content: '';
			position: absolute;
			border: solid 1px var(--color-dark);
			height: 2px;
			right:0;
			width: 70%;
			bottom: -10px;
			transition: var(--transition-hover);
		}
		
		.icon-btn:hover span.icon-burger:before,
		.icon-btn:hover span.icon-burger:after {
			width: 100%;
		}
		
		/* MENU CLOSE ICON */
		
		span.icon-close {
			position: relative;
			border: solid 1px var(--color-dark);
			height: 2px;
			width: 26px;
			transform: rotate(45deg);
			transition: var(--transition-hover);
		}
		
		span.icon-close:before {
			content: '';
			position: absolute;
			border: solid 1px var(--color-dark);
			height: 2px;
			right:0;
			top: -1px;
			width: 25px;
			transform: rotate(90deg);
			transition: var(--transition-hover);
		}
		
		.icon-btn:hover {
			color: var(--color-dark);
			text-decoration: underline;
		}
		
	.icon-btn-light {
			color: var(--color-dark);
			background: var(--color-light);
			border: solid 1px var(--color-primary);
	}
				
	
	
	
.banner-cont {
	position:relative;
	z-index:0;
	background: black;
	margin-bottom:20px;
}

	.banner-slider {
		width: 100%;
		clear: both;
		position: relative;
		z-index: 0;
	}
	
		.banner-slide {
			width: 100%;
			
		}
		
			.banner-slide img {
				width: 100%;
				max-height: 450px;
				object-fit:cover;
			}

	.banner {
		
	}	
	
	/*.banner-inner {
		padding: 30px 30px 0 5%;
		position: relative;
		z-index: 3;
	}
	*/
	
	.banner-inner {
		padding: 30px 0;
		position: absolute;
		z-index: 3;
		left: 50%;
	    bottom: 0;
	    transform: translateX(-50%);
	}
	
		.banner-title,
		.banner-inner h2 {
			color: var(--color-light);
			font-weight: var(--font-bold);
			font-size: 2.8rem !important;
			line-height: 3rem !important;
			text-transform: none !important;
		}
		
		.banner-vid {
			width: 100%;
			max-height: 900px;
			/*height:100%;
			object-fit:cover;*/
		}
		
		.banner-clip {
			width: 101%;
			margin-left:-1px;
			margin-bottom:-1px;
			height: auto;
			z-index: 2;
			position: relative;
		}
   
 .footer-cont {
	 background-color: var(--color-tint-dark);
	 color: var(--color-light);
	 text-align: center;
	 padding: 40px 0 30px 0;
 }   
 
 	.footer a {
		 color: var(--color-light);
 	}
 	
 	
 	
/* ==========================================================================
   Main Menu
   ========================================================================== */
 	
   #menu-cont {
	   position: fixed;
	   z-index: 999;
	   top:0;
	   right:-600px;
	   width: 100%;
	   max-width: 550px;
	   padding: 50px 20px 20px 20px;
	   height: 100vh;
	   transition: var(--transition-hover);
	   background: var(--color-tint-dark);
   }
   
	#menu-cont.open {
		/*-webkit-animation: animation 865ms linear both;
		animation: animation 865ms linear both;*/
		right:0;
		overflow-y: auto;
	}
   
   .menu-toggle-opened {
	   position: absolute;
	   top:20px;
	   right:20px;
   }
   
   ul.main-nav {
	   width: 100%;
	   overflow: hidden;
	   padding: 0 0 20px 0;
	   margin:0;
	   float: left;
   }
   
	   ul.main-nav li {
		   padding: 0;
		   overflow: hidden;
		   width: 100%;
		   display: block;
		   float: left;
	   }
   
		   ul.main-nav li a {
				color: #fff;
				display: block;
				width: 100%;
				float: left;
				padding:5px 10px;
				margin: 2px 0 2px 0;
				transition: ease-in-out .15s all;
		   }
   
			   ul.main-nav li a:hover {
				   background: rgba(255, 255, 255, .1);
			   }
   
   ul.main-nav li.active > a {
	   font-weight: bold;
	   text-decoration: underline;
	   color: var(--color-green);
	   background: #fff;
	}
   
   /*Nested list*/   
   ul.main-nav ul {
		padding: 0 0 0 20px;
		margin-bottom:0;
		float: left;
		width: 100%;
   }   
      
   /*Animate nested*/
   .hideSub {
	   display: none;
   }
   
   .main-nav > li.has-children > a {
	   width: 87%;
   }	   
	   
   .main-nav > li.has-children > span {
		display: block;
		width: 13%;
		padding:8px 10px;
		position: relative;
		text-align: center;
		border-radius: var(--border-radius);
		float: right;
		font-size: 12px;
		cursor: pointer;
		background-color: rgba(255, 255, 255, .9);
		transition: ease-in-out .15s all;
   }
   
		.main-nav > li.has-children > span:hover,
		.main-nav > li.subOpened > span {
			background-color: var(--color-green);
			color: #fff;
		}
	   
   .main-nav > li > span i {
		transition: ease-in-out .15s all;
   }
   
	   .main-nav > li.subOpened > span i {
	   	   transform: rotate(180deg);
		   color: var(--color-light);
	   }
	   	
	   	.main-nav-social {
		   	text-align: center;
	   	}
	   		   	
		   	#menu-cont .main-nav-social li {
			   	display: inline-block;
			   	padding:13px;
		   	}
		   		   	
			   	#menu-cont .main-nav-social li a {
				   	color: #fff;
				   	font-size: 33px;
			   	}
	   	
/* width */
#menu-cont.open::-webkit-scrollbar {width: 12px;}

/* Track */
#menu-cont.open::-webkit-scrollbar-track {background: var(--color-tint-dark);}

/* Handle */
#menu-cont.open::-webkit-scrollbar-thumb {background: var(--color-primary);border-radius: 3px;}
 	

/* ==========================================================================
   Carousels
   ========================================================================== */
   
   .sponsor-carousel {
	   margin: 30px 0 50px 0;
   }
   
	   .sponsor-carousel .slick-track {
		   display: flex;
		   flex-direction: row;
		   align-items: center;
	   }
   
	   .sponsor-carousel .slick-slide {
		   padding:30px 20px;
	   }   
	   
		   .sponsor-carousel .slick-slide a {
			   display: block;
		   }   
	   
	   .sponsor-carousel img {
			max-width: 90%;
		    width: auto;
		    max-height: 76px;	 
		    margin: 0 auto;  
		}
   
   .slick-dots {
	   margin-left: 0 !important;
	   bottom: -50px !important;
   }
   
   .slick-dots li button:before {
	   font-size: 12px !important;
   }
   
   
/* ==========================================================================
   Front End Forms
   ========================================================================== */
   
.input-search {
	width: 100%;
    padding: 15px 20px;
    border: solid 1px #ccc;
    margin: 0 0 30px 0;
}
   
  .reminder-cont {
	  /*width: 100%;
	  max-width: 800px;
	  float: none;
	  margin: 0 auto;*/
	  padding:20px;
	  border: solid 1px var(--color-tint-dark);
  }
  
  .reminder-cont img {
	  width: 100%;
	  clear: both;
	  margin-bottom:15px;
  }
  
  .form-cont {
	  float: left;
	  padding:35px 25px;
	  margin: 0 0 20px 0;
	  background: #fcfcfc;
	  border-radius: var(--border-radius) !important;
  }
  
  .form-break {
	  width: 100%;
	  clear: both;
	  height: 2px;
	  background: #f1f1f1;
	  margin: 30px 0;
  }
  
  .form-element-row {
	  clear: both;
	  width: 100%;
	  overflow: hidden;
  }
  
  .form-element {
	  width: 100%;
	  clear: both;
	  float: left;
	  margin: 0 0 20px 0;
	  padding: 0 10px;
  }
    
  	.form-element-50p {
	  	width: 50%;
	  	float: left;
	  	clear: none;
  	}
  	
  		.fs .form-element-50p {
	  		width: 100%;
	  		clear: both;
  		}
  		
  		.fs .scorecard td, 
  		.fs .scorecard th {
	  		padding: 14px;
  		} 
  
  	.form-element label {
	  	width: 100%;
	  	clear: both;
	  	display: block;
	  	margin: 0 0 10px 0;
  	}
  	
  	.scorecard .form-element {
	  	margin:15px 0;
  	}
  	
  	.form-element select,
  	.form-element input[type="file"],
  	.scorecard select  {
	  	width: 100%;
		border: solid 1px #dedede;
		border-radius: var(--border-radius);
		padding: .8rem .9rem;
		background: #fff;
  	}
  	
  		.form-element select:focus,
  		.scorecard select:focus,
  		.form-element input:focus,
  		.btn:focus {
		    border: solid 1px var(--color-pink);
		    outline: 0;
		    box-shadow: 0 0 0 3px rgba(164,202,254,.45);
  		}
  		
  		.form-element select.field-error,
  		.form-element input.field-error {
		    outline: 0;
		    box-shadow: 0 0 0 3px #ffb0a6;
  		}
		  
		  .checkbox-list {
				width: 100%;
				margin: 20px 0 0 0 !important;
				display: flex;
				flex-direction: row;
				justify-content: space-between;
				flex-wrap: wrap;
			}
			
				.checkbox-list li {
					width: 49%;
					list-style: none !important;
				}
			
			.form-element .checkbox-label {
				border: solid 1px #dedede;
				border-radius: var(--border-radius);
				padding: 10px 20px;
				display: flex;
				flex-direction: row;
				justify-content: flex-start;
				align-items: center;
				height: 100%;
			}
			
			
@media only screen and (max-width: 800px) {	
						  .checkbox-list li {
						  width: 100%;
					  }
					 .trophy-row select {
						   width: 91%;
					   }
						
					
			}
			
			  		
  	.form-instructions {
	  	width: 100%;
	  	clear: both;
	  	margin: 0 0 10px 0;
	  	font-size: .95rem;
  	}
  	
  		.form-instructions > :last-child {margin-bottom: 0;}
  	
  	.form-element .form-input {
	  	width: 100%;
  	}
  
  .fui-i {
	  font-family: inherit !important;
  }
  
  .fui-input, .fui-select, .form-input {
	  border: solid 1px #dedede !important;
	  border-radius: var(--border-radius) !important;
	  padding: .8rem .9rem !important;
  }
  
	  .fui-input:focus, .fui-select:focus, .form-input:focus, .input-search:focus {
		  border: solid 1px var(--color-pink) !important;
		    outline: 0;
		    border-color: #a4cafe;
		    box-shadow: 0 0 0 3px rgba(164,202,254,.45);
	  }
	  
  .fui-label, .fui-legend, .form-element label {
	  font-size: 1.1rem !important;
	  color: var(--color-dark) !important;
	  line-height: 1.3rem !important;
	  font-weight: 600 !important;
  }
  
  .form-element [type="radio"],
  .form-element [type="checkbox"] {
	  float: left;
	  margin: 4px 10px 4px 0;
  }
  
  .form-element .fui-checkbox label {
	  line-height: 1.6rem !important;
	  font-size: 1rem;
	  font-weight: normal !important;
	  float: left;
	  width: 95%;
	  clear: none;
  }
  
button {cursor: pointer;}
  
.fui-submit {
	display: block;
	float: left;
	border: solid 0px var(--color-primary) !important;
	border-radius: var(--border-radius) !important;
	padding:20px 30px !important;
	text-transform: uppercase;
	font-weight: var(--font-bold) !important;
	font-size: inherit !important;
	color:#000 !important;
	letter-spacing: .2px;
	margin: 0 20px 10px 0;
	background: var(--color-green) !important;
	backface-visibility: hidden;
	transition: var(--transition-hover);
}

.fui-submit:hover {
	background: var(--color-pink) !important;
}

/*
.rate {
    float: left;
}

.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}

.rate:not(:checked) > label {
    float:right;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:15px;
    border: solid 1px #dedede;
    color:#ccc;
    width:30px;
    height:30px;
    margin: 5px;
    border-radius: 100%;
    
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    backface-visibility: hidden;
    transition: all .3s ease;
}

.rate:not(:checked) > label:last-of-type {
    margin-left:0;
}


.rate > input:checked ~ label {
    background: var(--color-primary);  
    color:#fff;
}

.rate > :not(:checked) > label:hover,
.rate > :not(:checked) > label:hover ~ label {
    background: var(--color-primary);  
    color:#fff;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #ccc;
}
*/
   
/* ==========================================================================
   Alert Bars and Boxes
   ========================================================================== */
   
   /* Bar is stuck to the top of the page, Box is in position (relative) ) */
   .alert-bar {
	   position: absolute;
	   top:0;
	   left:0;
	   width: 100%;
	   padding:20px 20px;
	   text-align: center;	   
	   opacity: 1;
	   animation: .2s ease-out 0s 1 slideInFromTop;   
	}
   
   .alert-box {
	   position: relative;
	   width: 100%;
	   padding:12px 20px;
	   margin: 4px 0 20px 0 !important;
	   text-align: center;	
	   border-radius: var(--border-radius); 
	   display: none;  
	}
   
	   	.alert-bar > :last-child,
	   	.alert-box > :last-child {margin-bottom:0;list-style: none !important;}
	   	
	   	.show-alert-box {
		   	display: block;
		    animation: .2s ease-out 0s 1 slideInFromBottom;   
	   	}
   	
   	.alert-success {
	   	background: #0b9649;
	   	color: #fff;
   	}   	
   	
   	.alert-error {
	   	background: #bd0f0f;
	   	color: #fff;
   	}   	
   	
	@keyframes slideInFromTop {
		0% {
			transform: translateY(-100%);
			opacity: 0;
		}
		100% {
			transform: translateY(0);
			opacity: 1;
		}
	}   	
   	
	@keyframes slideInFromBottom {
		0% {
			transform: translateY(100%);
			opacity: 0;
		}
		100% {
			transform: translateY(0);
			opacity: 1;
		}
	}   	
   	

/* ==========================================================================
   Helper classes
   ========================================================================== */

.text-center {text-align: center;}
.mb-0 {margin-bottom: 0;}
.mb-20 {margin-bottom:20px;}
.m-0 {margin:0;}
.mr-20 {margin-right:20px;}
.mr-15 {margin-right:15px;}
.p-30 {padding: 30px;}

.f-right {float: right;}
.f-left {float: left;}


/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
   
@media only screen and (max-width: 800px) {	
	
	.md-hide {
		display: none;
	}
	
	.md-col-100p {
		width: 100%;
		clear: both;
	}
	
	.header {
		justify-content: flex-start;
	}
	
	.header > div:first-child {
		width: 40%;
	}
	
		.ico-opinium {
			width: 50%;
		}
	
	.header > div:last-child {
		margin-left: auto;
		order: 3;
		width: 50%;
	}
	
	.site-logo {
		max-width: 100%;
	}
	
	
	.banner-vid {
		width: 220%;
	}
	
	.footer {
		padding-right:20px;
		padding-left:20px;
	}
	
	.form-cont {
		width: 100%;
		padding:25px;
	}
	
	
	
}

@media only screen and (max-width: 750px) {
	
	.banner-inner {
		padding:30px;
		position: relative;
		background: black;
	}
	
		.banner-inner > div {
			width: 100% !important;
		}
	
	.banner-slide img {
	    width: 200%;
	    margin-left: -98%;
	    max-height: unset;
	    object-fit: cover;
	}
	
	
	

}


@media only screen and (max-width: 650px) {
	
	.md-hide {
		display: none;
	}
	
	.col-2 {
		width: 100%;
		clear: both;
	}
	
		.col-4 > .col-2:first-child {margin-bottom:20px;}
	
	.col-3 {
		width: 48%;
	}
	
	.ico-opinium {
		width: 60%;
		height: auto;
	}
	
	.content-area {
		padding-right:20px;
		padding-left:20px;
	}
	
	.listing-card {
	    width: 31.33%;
	}	
	
  	.form-element-50p {
	  	width: 100%;
	  	clear: both;
  	}
  	
		.faq-q:hover:before {
			display: none;
		}

	
}

@media only screen and (max-width: 480px) {
	
	.sm-hide {
		display: none;
	}
	
	.col-3 {
		width: 100%;
		clear: both;
	}
	
	.banner-clip {
		margin-top:30px;
	}
	
	.content-area .row-flex {
		flex-direction: column;
	}

	.icon-btn {
	    padding: 7px 12px;
	}
	
	span.icon-burger {
	    margin-left: 0px;
	}
	
	.listing-row {
		flex-direction: column;
	}
	
   	.listing-row-img {
	   	margin: 0 0 20px 0;
	    min-width: unset;
	    width: 100%;
	    max-width: 100%;
	    align-items: center;
   	}
   	
	.listing-card {
	    width: 48%;
	}	
	
	.btn {
		width: 100%;
		display: block;
		clear: both;
		margin: 0 0 15px 0;
	}

}

@media only screen and (max-width: 410px) {
	
	.listing-card {
	    width: 100%;
	    padding:0;
	}	
	

}

.print-only {display:none;}
@media print {
	.print-only {display: table-row; width: 100% !important;}
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

