/*
	black (menu borders): #282828
	gray (dark - menu background): #363636
	gray (light - footer): #e1e1e1
	blue: #005b7f
*/




/*
 * Main
 */
*,
*::before,
*::after
{
	box-sizing:border-box;
	margin:0;
	padding:0
}

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

.clearfix::after
{
	clear: both;
}

body
{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	font-family: 'Myriad Pro', sans-serif;
	overflow-x: hidden;
}

.container
{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	flex: 1;
}

.content
{
	padding: 15px;
}





/*
 * Header
 */
header
{
	height: 80px;
	background-color: #363636;
}

header .logo img
{
	display: inline-block;
	margin: 10px 0 0 0;
}

header .container,
header nav,
header .main-menu,
header .main-menu li
{
	height: 100%;
}

header .main-menu
{
	list-style: none;
	border-right: 1px solid #282828;
}

header .main-menu li
{
	border-left: 1px solid #282828;
}

header .main-menu a
{
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: 80px;
	font-size: 14px;
	text-align: center;
	color: #e1e1e1;
	text-decoration: none;
	font-family: 'Hero', sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

header .main-menu li.toggled a,
header .main-menu a:hover
{
	color: #282828;
	background-color: #fff;
}

header .sub-menu
{
	display: none;
	z-index: 10;
	position: absolute;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

header .sub-menu .container > div
{
	border-right: 1px solid #ddd;
	padding: 10px 30px;
	margin: 20px 0;
	position: relative;
	min-height: 300px;
}

header .sub-menu .container .imaged-list li img
{
	transition: filter 0.3s ease;
}

header .sub-menu .container .imaged-list li:hover img
{
	filter: contrast(0%);	
}

header .sub-menu .container > div:last-child
{
	border: 0;
}

header .sub-menu a
{
	text-decoration: none;
}

header .sub-menu p
{
	color: #444;
	font-size: 13px;
}

header .sub-menu strong
{
	font-size: 16px;
	color: #005b7f;
	margin: 0 0 5px 0;
	display: block;
	letter-spacing: 2px;
	font-family: 'Hero', sans-serif;
}

header .sub-menu p
{
	line-height: 18px;
	min-height: 55px;
}

header .sub-menu .imaged-list
{
	list-style: none;
	margin: 20px 0 0 0;
}

header .sub-menu .imaged-list li
{
	width: 100%;
	height: 36px;
	text-align: left;
	margin-bottom: 10px;
}

header .sub-menu .imaged-list img
{
	height: 36px;
	width: auto;
}

header .sub-menu .imaged-list span
{
	display: block;
	text-align: left;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

header .sub-menu .imaged-list a
{
	color: #444;
}

header .sub-menu .normal-list
{
	list-style: none;
	margin: 10px 0 0 0px;
}

header .sub-menu .normal-list li + li
{
	margin-top: 5px;
}

header .sub-menu .normal-list a
{
	color: #444;
	text-decoration: none;
	letter-spacing: 1px;
}

header .sub-menu .normal-list a:hover
{
	color: #005b7f;
	text-decoration: underline;
}

header .sub-menu .second-entry
{
	margin-top: 20px;
}

header .sub-menu .sub-menu-images-list
{
	list-style: none;
}

header .sub-menu .sub-menu-images-list a
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 115px;
}

header .sub-menu .sub-menu-images-list li
{
	list-style: none;
	float: left;
	width: 20%;
}

header .sub-menu .sub-menu-images-list li img
{
	width: 80%;
	margin: 0 auto;
	display: block;
}

header .sub-menu .sub-menu-images-list li:nth-child(1) img{	width: 70%; }
header .sub-menu .sub-menu-images-list li:nth-child(2) img{	width: 70%; }
header .sub-menu .sub-menu-images-list li:nth-child(3) img{	width: 65%; }
header .sub-menu .sub-menu-images-list li:nth-child(6) img{	width: 65%; }
header .sub-menu .sub-menu-images-list li:nth-child(7) img{	width: 65%; }
header .sub-menu .sub-menu-images-list li:nth-child(8) img{	width: 65%; }
header .sub-menu .sub-menu-images-list li:nth-child(9) img{	width: 65%; }



/* Back to top */
#back-to-top
{
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	background-color: #005b7f;
	color: white;
	cursor: pointer;
}



/*
 * Page content
 */
.header-image
{
	width: 100%;
	height: auto;
	display: block;
}

.content p,
.content li
{
	text-align: justify;
	line-height: 26px;
	color: #444;
}

.content p
{
	margin-bottom: 26px;
}

.content a{
	color: #005b7f;
	text-decoration: none;
	-webkit-transition: 1s;
	transition: 1s;
}

.content a:hover{
	color: #363636;
}

.content p strong
{
	color: #005b7f;
	font-weight: 700;
}

.content h1
{
	color: #005b7f;
	font-size: 26px;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 400;
	font-family: 'Hero', sans-serif;
	margin-top: 70px;
	text-align: center;
}

.content h1:first-of-type
{
	letter-spacing: 8px;
}

.content h2
{
	color: #005b7f;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 'Hero', sans-serif;
}

.content h3
{
	color: #333;
	font-family: 'Hero', sans-serif;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 26px;
}

.content h3 strong
{
	color: #005b7f;
	font-weight: 400;
}

.content ul:not(.container)
{
	list-style: square;
	margin: -20px 0 0 25px;
}

/*
 * Privacy page
 */
 .privacy-text
 {
 	font-size: 20px !important;
    letter-spacing: 5px !important;
 }


/*
 * Footer
 */
footer
{
	background-color: #e1e1e1;
	overflow: auto;
}

footer .container > .widget
{
	margin: 30px 0;
	font-size: 14px;
}

footer h3
{
	font-size: 16px;
	color: #363636;
	font-weight: 400;
	font-family: 'Hero', sans-serif;
	margin: 0 0 5px 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

footer p
{
	line-height: 20px;
	color: #666;
	text-align: justify;
	letter-spacing: 0.3px;
}

footer a
{
	text-decoration: none;
}

footer .social-container
{
	min-height: 140px;
	position: relative;
}

footer .social-container .widget
{
	position: absolute;
	bottom: 0;
	right: 20px;
}

footer .social
{
	text-align: right;
}

footer .social a
{
	font-size: 32px;
	color: #005b7f;
	text-decoration: none;
}

footer .subfooter
{
	height: 40px;
	background-color: #363636;
	line-height: 40px;
	text-align: center;
	color: #fff;
	font-size: 14px;
}

footer .subfooter a
{
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer .subfooter a:hover
{
	color: #cccccc;
}


/**
 * Form
 */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea
{
	font-family: 'Myriad pro', sans-serif;
	display: block;
	border: 1px solid #005b7f;
	border-radius: 0;
	padding: 5px;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"]
{
	border-top: none;
	border-left: none;
	border-right: none;
	padding-left: 0;
	padding-right: 0;
}

textarea
{
	height: 208px;
}

label
{
	display: inline-block;
	margin-bottom: 20px;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 1px;
	color: #005b7f;
}

div.wpcf7 input[type="submit"]
{
	display: inline-block;
	position: relative;
	z-index: 100;
	margin: 10px;
	border: none;
	width: 100%;
	height: 60px;
	color: white;
	background-color: #363636;
	cursor: pointer;
	transition: background-color 0.35s;
}

div.wpcf7 input[type="submit"]:hover
{
	background-color: #e1e1e1;
}

div.wpcf7 .wpcf7-submit-icon
{
	display: inline-block;
	position: relative;
	width: 120px;
	height: 80px;
}

div.wpcf7 .wpcf7-submit-icon i
{
	position: absolute;
	top: 25px;
	left: 50%;
	margin-left: -10px;
	z-index: 101;
	color: white;
	font-size: 30px;
	pointer-events: none;
}

div.wpcf7 .wpcf7-submit-icon .wpcf7-submit
{
	position: absolute;
	top: 0;
	left: 0;
	text-indent: -9999px;
}

div.wpcf7 .wpcf7-form-control-wrap
{
	display: block;
}

div.wpcf7 .wpcf7-not-valid-tip
{
	position: absolute;
	right: 0;
	bottom: -20px;
}

.wpcf7-form.sent .contact-form-element-body
{
    display: none;
}

.wpcf7-response-output
{
	border: 0 !important;
	text-align: center;
}

div.wpcf7 .ajax-loader
{
	display: none;
}




/* WebKit, Blink, Edge */
::-webkit-input-placeholder
{
	color: #dddddd;
}

/* Mozilla Firefox 19+ */
::-moz-placeholder
{
	color: #dddddd;
	opacity: 1;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder
{
	color: #dddddd;
}


/**
 * Custom style elements
 */
.gca-arrow-down:after
{
	content: '\f078';
	font-family: 'FontAwesome';
	text-align: center;
	display: block;
	font-weight: 100;
	font-size: 22px;
	padding: 5px 0 0 0;
	color: #005b7f;
}

.gca-arrow-down.gca-arrow-down-padded:after
{
	padding: 30px 0 0 0;
}

.gca-button a,
.gca-button input[type="submit"]
{
	display: block !important;
	width: 100%;
	background-color: #005b7f !important;
	color: #e1e1e1 !important;
	font-size: 16px !important;
	font-weight: 600;
	padding: 0 5px !important;
	min-height: 50px;
	line-height: 50px !important;
	text-transform: uppercase;
	margin: 0 !important;
}

.gca-button a:hover,
.gca-button input[type="submit"]:hover
{
	background-color: #e1e1e1 !important;
	color: #005b7f !important;
}

.gca-button.gca-smaller-button a,
.gca-button.gca-smaller-button input[type="submit"]
{
	width: auto;
	padding: 0 25px !important;
	display: inline-block !important;
}



.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(1) { width: 100%; }
.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(2), .gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(2) ~ li { width: 50%; }
.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(3), .gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(3) ~ li { width: 33.3333%; }
.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(4), .gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(4) ~ li { width: 25%; }
.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(5), .gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(5) ~ li { width: 20%; }
.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(6), .gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(6) ~ li { width: 16.6666%; }
.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(7), .gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(7) ~ li { width: 14.2857%; }
.gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(8), .gca-tabs .vc_tta-tabs-list li:first-child:nth-last-child(8) ~ li { width: 12.5%; }

.gca-tabs .vc_tta-tabs-list li
{
	border-right: 1px solid #005b7f;
}

.gca-tabs .vc_tta-tabs-list li:last-child
{
	border: 0;
}


.gca-tabs .vc_tta-tabs-list li a
{
	background-color: #f0f0f0 !important;
	color: #005b7f !important;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}

.gca-tabs .vc_tta-tabs-list li.vc_active a
{
	background-color: #005b7f !important;
	color: #f0f0f0 !important;
}

.gca-tabs .vc_tta-panels
{
	border-top: 1px solid #005b7f;
	background-color: #f0f0f0 !important;
}

.gca-tabs .vc_tta-panel *
{
	color: #005b7f !important;
}

.post-archive-pagination{
	margin: 50px auto;
	text-align: center;
}

.post-archive-pagination i{
	margin-right: 10px;
	margin-left: 10px;
}

/*
 * Custom slick
 */
 .slick-initialized .slick-slide
 {
 	outline: none;
 	margin-left: 15px;
 }

.slick-thumbnails .slick-initialized .slick-slide
{
	margin-left: 20px;
}

.audio-upgrade .read-more
{
	margin-bottom: 100px;
}

.read-more .read-more__button
{
    color: #005b7f;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
	font-family: 'Hero', sans-serif;
	cursor: pointer;
	display: block;
	text-align: center;
}

/* Custom css for flow-flow plugin */

/* Background-color of cards with images with insufficient height */
.ff-stream .ff-img-holder
{
	background-color: #fff !important;
}

/* Color of text in search bar to improve readability*/
.ff-stream .ff-search input
{
	color: rgb(205,205,205);
}