@charset "UTF-8";
/*
Theme Name: ITN CWF
Theme URI: https://amalfiweb.it/
Author: Mario Acunto, Amalfiweb S.r.l.s.
Author URI: https://amalfiweb.it/
Description: WordPress Theme for the Official CWF Website
Version: 2.00.15
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: technico
Domain Path: /languages
*/
/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Modules
.. 05. Footer
.. 06. Comments
.. 07. Widgets Styling
.. 08. WordPress defaults
.. 09. Mobile Menu
.. 10. External Plugins
.. 11. Global Mediaqueries

*/
@-webkit-keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/* -----------------------------------------
	01. General
----------------------------------------- */
.dummy-color-scheme {
	color: #7cc08f;
	color: #7cc290;
	color: #83b200;
}

html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}
.draft {
	display: none !important;
}
.admin-bar .draft {
	display: inherit !important;
}
.img-grayscale {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

/* Basic Typography
=================================== */
body {
	/*line-height: 1.6923;*/
	font-size: 18px;
	background-color: #FFFFFF;
	color: #444444;
	font-family: "Arapey", serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	line-height: normal;
	margin: 0 0 15px 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	font-family: "Playfair Display", serif;
	/*
	font-family: "Montserrat", sans-serif;
	letter-spacing: -.05em;
	*/
	text-rendering: optimizeLegibility;
	font-weight: 400;
}

h1 {
	font-size: 40px;
	/*color: #83b200;*/
	font-weight: 400;
}

h2 {
	font-size: 26px;
	/*font-style: italic;*/
	font-weight: 400;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 67px;
}

h6 {
	font-size: 14px;
}

p {
	margin: 0 0 15px 0;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

a {
	-webkit-transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
	transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
	outline: none;
	color: #83b200;
	text-decoration: none;
}

a:hover {
	color: #384c01;
	outline: none;
	text-decoration: none;
}

a:active {
	outline: none;
}

/* Links */
a.read-more {
    font-family: Roboto, sans-serif;
    font-size: 12px;
	text-transform: uppercase;
	color: #000;
	text-decoration: underline !important;
}
a.read-more:hover {
	color: #83b200;
}

.group::after {
	content: "";
	display: table;
	clear: both;
}

/* General Element Styling
=================================== */
/* Reset figure margin from normalize.css */
figure {
	margin: 0;
}

/* Lists */
ul, ol {
	padding-left: 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

dl {
	margin: 0 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 15px;
}

dl.inline-flex {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	width: 300px;      /* set the container width*/
	overflow: visible;
  }
  dl.inline-flex dt {
	flex: 0 0 50%;
	text-overflow: ellipsis;
	overflow: hidden;
  }
  dl.inline-flex dd {
	flex:0 0 50%;
	margin-left: auto;
	text-align: left;
	text-overflow: ellipsis;
	overflow: hidden;
  }

/* Blockquotes */
blockquote {
	margin: 20px 0;
	padding-left: 15px;
	border-left: 3px solid #ccc;
	font-size: 17px;
	font-weight: 300;
}

blockquote cite {
	display: block;
	font-weight: bold;
	font-style: italic;
	margin: 10px 0 0;
	color: rgba(54, 47, 45, 0.8);
	font-size: 14px;
}

/* Tables */
table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.entry-content table {
	border-width: 1px 0 0 1px;
	margin-bottom: 24px;
}

.entry-content th:first-child,
.entry-content td:first-child {
	padding-left: 0;
}

.entry-content th,
.entry-content td {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.entry-content caption,
.entry-content th,
.entry-content td {
	font-weight: normal;
	text-align: left;
	padding: 5px;
	vertical-align: middle;
}

.entry-content th {
	border-width: 0 1px 1px 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 85%;
}

.entry-content td {
	border-width: 0 1px 1px 0;
}

/* OL */
.entry-content ol li {
	margin:18px 0;
	padding: 0 0 0 10px;
}
.entry-content ol { counter-reset: item }
.entry-content ol li { display: block }
.entry-content ol li:before { 
	content: counter(item); 
	counter-increment: item; color:#000; 
	border: 2px solid #83b200; 
	text-align: center; 
	border-radius: 50%;
	color: #fff;
	/*font-family: 'Roboto', sans-serif;*/
	background-color: #83b200;
	padding: 0px 6px;
	margin: 0 10px 0 -35px;
}

/* Code */
code, kbd, tt, var, samp, pre {
	font-family: monospace, serif;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	font-style: normal;
}

pre {
	padding: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Various */
address {
	margin: 0 0 15px;
}

.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}


/* Embeds and iframes
=================================== */
embed,
iframe,
object,
video,
audio {
	margin-bottom: 15px;
	max-width: 100%;
}

p > embed,
p > iframe,
p > object,
p > audio,
span > embed,
span > iframe,
span > object,
span > audio {
	margin-bottom: 0;
}

#map,
.map * {
	max-width: none !important;
}

/* General Form Styling
=================================== */

/*Boostrap compatibility form-group styling */
.form-group {
	margin-bottom: 15px;
}

label {
	display: block;
	margin: 0 0 2px;
	font-weight: normal;
	text-transform: uppercase;
	font-family: "Roboto", sans-serif;
	font-size: 12px;
}

input,
textarea {
	display: inline-block;
	font-size: inherit;
	width: 100%;
	max-width: 100%;
	height: 42px;
	padding: 6px 12px;
	box-shadow: none;
	line-height: normal;
	color: #362F2D;
	background-color: #FFF;
	background-image: none;
	border-radius: 6px;
	border: 1px solid #999999;
	-webkit-transition: border-color .18s ease;
	transition: border-color .18s ease;
}

input:hover, input:focus,
textarea:hover,
textarea:focus {
	border-color: #362F2D;
	outline: none;
}

#reg_gender {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #999;
}

.footer input, .footer
textarea {
	border: 0;
}

@media (max-width: 543px) {
	input,
	textarea {
		width: 100%;
	}
}

input[type="search"] {
	/* Restoring box-sizing */
	box-sizing: border-box;
}

textarea {
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

select, .gform_wrapper.gf_browser_gecko select {
	max-width: 100%;
	border-radius: 4px;
	border: 1px solid #999999;
	padding: 6px 12px !important;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	line-height: normal;
	width: auto;
	height: auto;
}

fieldset {
	margin: 0 0 15px;
	padding: 0;
	border: none;
	min-width: 0;
}

/* Placeholder text color */
::-webkit-input-placeholder {
	color: rgba(54, 47, 45, 0.5);
	font-weight: normal;
	opacity: 1;
}

:-moz-placeholder {
	color: rgba(54, 47, 45, 0.5);
	font-weight: normal;
	opacity: 1;
}

::-moz-placeholder {
	color: rgba(54, 47, 45, 0.5);
	font-weight: normal;
	opacity: 1;
}

:-ms-input-placeholder {
	color: rgba(54, 47, 45, 0.5);
	font-weight: normal;
	opacity: 1;
}

/* Custom Selects */
.ci-select {
	position: relative;
}

.ci-select select {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 0 !important;
	box-shadow: none;
	text-transform: uppercase;
	height: 42px;
	font-weight: bold;
	color: #362F2D;
	font-size: 12px;
	background-color: #83b200;
	outline: 0;
	padding: 7px 20px;
	width: 100%;
}

.ci-select option {
	background-color: #FFF;
	text-transform: none;
	font-weight: normal;
	padding: 5px;
}

.ci-select::after {
	font-family: 'FontAwesome';
	content: '\f107';
	font-size: 16px;
	height: 100%;
	color: #362F2D;
	position: absolute;
	right: 15px;
	top: 0;
	line-height: 42px;
}

/* Inset Form Fields */
.form-inset-group {
	position: relative;
}

.form-inset-group button[type="submit"],
.form-inset-group input[type="submit"] {
	position: absolute;
	right: 5px;
	top: 5px;
	height: 32px;
	padding: 8px 12px;
}

/* Gravity Form styling */
.entry-content .gform_wrapper {
	font-family: "Roboto", sans-serif;
	
}
.entry-content .gform_body {
	font-size: 12px;
}
.gform_wrapper .field_sublabel_above .ginput_complex.ginput_container label, 
.gform_wrapper .field_sublabel_above div[class*="gfield_date_"].ginput_container label, 
.gform_wrapper .field_sublabel_above div[class*="gfield_time_"].ginput_container label, 
.entry-content .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, 
.gform_wrapper .field_sublabel_below div[class*="gfield_date_"].ginput_container label, 
.gform_wrapper .field_sublabel_below div[class*="gfield_time_"].ginput_container label,
.entry-content .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	font-size: 12px;
}
.entry-content .gform_wrapper .gfield_checkbox li label, 
.entry-content .gform_wrapper .gfield_radio li label {
	font-size: 12px;
}
.gform_wrapper .top_label .gfield_label {
	font-weight: normal;
	font-size: 12px;
}
.entry-content .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
	text-transform: none;
	color: #999999;
}

.entry-content .gform_wrapper .gform_footer input.button, 
.entry-content .gform_wrapper .gform_footer input[type="submit"], 
.entry-content .gform_wrapper .gform_page_footer input.button, 
.entry-content .gform_wrapper .gform_page_footer input[type="submit"] {
	font-size: 14px;
}

.gform_confirmation_message {
    font-size: 26px;
	margin: 50px 20px 150px;
	color: #83b200;
}

.gform_wrapper .description, 
.gform_wrapper .gfield_description, 
.gform_wrapper .gsection_description, 
.gform_wrapper .instruction  {
	font-size: 1.113em !important;
}

h2.gsection_title {
    color: #83b200;
}

.gform_legacy_markup_wrapper li.hidden_label input {
	margin-top:0px !important;
}

.gform_legacy_markup_wrapper .field_description_below .gfield_description {
	padding-top: 4px !important;
	padding-bottom: 15px;
}

.gfield_description {
    color: #666;
    font-style: italic;
}

/* Buttons
=================================== */
.btn, .comment-reply-link,
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
	display: inline-block;
	font-weight: normal;
	margin: 0;
	line-height: normal;
	border: none;
	box-shadow: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	-webkit-transition: 0.18s background-color ease, color 0.18s ease, 0.18s border-color ease;
	transition: 0.18s background-color ease, color 0.18s ease, 0.18s border-color ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 0;
	width: auto;
	height: 36px;
	background-image: none;
	padding: 10px 12px 10px;
	font-size: 12px;
	/*background-color: #83b200;
	color: #362F2D;*/
	border: 1px solid #83b200;
	color: #83b200;

	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
}

.btn:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
	outline: none;
}

.btn:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
	background: #83b200;
	color: #ffffff;
	text-decoration: none;
}

.btn:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
	outline: none;
}

.btn-arrow {
	padding-right: 80px;
	position: relative;
}

.btn-arrow::after {
	font-family: 'FontAwesome';
	content: '\f105';
	position: absolute;
	font-size: 16px;
	right: 15px;
	line-height: normal;
}

.btn-lg {
	height: 50px;
	padding: 15px 55px;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	text-transform: none;
	letter-spacing: -.05em;
	font-size: 16px;
}

.btn-lg i {
	margin-left: 5px;
	position: relative;
	top: 1px;
}

/* Tables
=================================== */
.table th, .table td {
	text-align: left;
	font-size: 14px;
	border-bottom: 1px solid #EBEAEA;
	padding: 5px 0;
}

.footer .table th, .footer .table td {
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* CI-Slider Overrides
=================================== */
.ci-slider {
	margin: 0;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
	border: 0;
}

.ci-slider.loading:before {
	border: 6px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	content: "";
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 1000;
}

.ci-slider .slides li:after {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1000;
}

.ci-direction-nav a {
	top: 50%;
	opacity: 0.7;
	line-height: normal;
}

.ci-direction-nav a:hover {
	color: #FFF;
	opacity: 1;
}

.ci-slider .slides > li:first-child {
	display: block;
	/* Display flexslider's first item no matter if its loading or not */
	-webkit-backface-visibility: visible;
}

.ci-slider.loading .slides > li:first-child {
	opacity: 1 !important;
	/* Remove the fade in/out animation when the slider loads */
}

/* Magnific Popup Overrides
=================================== */
.mfp-bg {
	background-color: #000;
}

.mfp-preloader {
	color: #FFF;
	background-color: transparent !important;
}

.mfp-preloader a, .mfp-preloader a:hover {
	color: #FFF;
}

.mfp-container:not(.mfp-s-error) .mfp-preloader {
	border: 6px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	background-color: #FFF;
	text-indent: -999em;
	margin: 0 auto;
}

button.mfp-close,
button.mfp-arrow {
	border: none;
	opacity: 1;
}

button.mfp-close:hover,
button.mfp-arrow:hover {
	background: none;
	border: none;
}

.mfp-close-btn-in .mfp-close {
	color: #FFF;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
}

.mfp-arrow {
	line-height: 0.3;
}

.mfp-arrow:before, .mfp-arrow:after {
	border: none;
}

.mfp-arrow:after {
	font-family: FontAwesome;
	font-size: 70px;
	color: #FFF;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mpf-a {
	content: "\f105";
}

.mfp-arrow-left:after,
.mfp-arrow-left .mpf-a {
	content: "\f104";
}

/* Text Alignment Helpers
=================================== */
.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justified {
	text-align: justify;
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */
.nav {
	margin-top: 4px;
}

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

.navigation {
	text-align: center;
}

.navigation::after {
	content: "";
	display: table;
	clear: both;
}

.navigation li {
	position: relative;
	z-index: 100;
}

.header-menu-secondary .navigation li {
	z-index: 99;
}

.navigation > li {
	display: inline-block;
}

.navigation ul {
	position: absolute;
	z-index: 300;
	top: -999em;
}

.navigation > li:last-child ul {
	right: 0;
}

.navigation li:hover > ul,
.navigation .sfHover > ul {
	top: auto;
}

.navigation li li:hover > ul,
.navigation li .sfHover > ul {
	top: 0;
	right: 100%;
}

.navigation li li li:hover > ul,
.navigation li li .sfHover > ul {
	top: 0;
	right: 100%;
}

.navigation a {
	display: block;
	white-space: nowrap;
}

.navigation a {
	font-family: "Roboto", sans-serif;
	color: #666666;
	font-size:13px;
	text-align: left;
	/* Global Menu Link Styles */
}

.header-menu-secondary .navigation a {
	color: #aaa;
}

.navigation > li:last-child > a {
	margin-right: 0;
}

.navigation a:hover,
.navigation .sfHover > a {
	text-decoration: none;
	/* First Level & Global Menu Link Hover Styles */
}

.navigation > li > a {
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	margin-right: 30px;
	/* First Level Menu Link Styles */
}

.navigation > li ul a {
	border-bottom: 1px solid #EBEAEA;
	padding: 9px 15px;
	/* All Other Menu Level Link Styles */
}

.navigation > li ul a:hover,
.navigation > li ul .sfHover > a {
	color: #362F2D;
	/* All Other Level Menu Link Hover Styles */
}

.navigation > li > a:hover,
.navigation > li.sfHover > a,
.navigation > li.sfHover > a:active,
.navigation > li.current_page_item > a,
.navigation > li.current-menu-item > a,
.navigation > li.current-menu-ancestor > a,
.navigation > li.current-menu-parent > a,
.navigation > li.current > a {
	color: #362F2D;
	border-bottom-color: #83b200;
	/* WordPress First Level Current/Ancestor Hover Page Styles */
}

.navigation ul {
	background-color: #FFF;
	border: 1px solid #EBEAEA;
	border-bottom: 0;
	min-width: 200px;
	box-shadow: 0 0 29px rgba(0, 0, 0, 0.07);
	/* All Lower Level Menu Container Styles */
}

.navigation a.sf-with-ul {
	padding-right: 10px;
	position: relative;
	/* Styling for navigation arrows  ---------- */
}

.navigation.sf-arrows .sf-with-ul:after {
	content: '\f078';
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	right: 1px;
	margin-top: -7px;
	font-size: 8px;
	font-weight: normal;
}

.navigation.sf-arrows ul .sf-with-ul:after {
	right: 8px;
	content: "\f054";
	margin-top: -6px;
	/* Styling for right facing arrows  ---------- */
}

.nav-dx {
	text-align: right;
	
}

.nav-sx {
    text-align: left;
}

.navigation.nav-sx a, .navigation.nav-dx a {
    color: #aaa;
}

.menu-featured a,
.mm-listview > li.menu-featured > a {
	color: #83b200;
}
.menu-featured.cwf-40 a,
.mm-listview > li.menu-featured.cwf-40 > a {
	color: #e5005a;
}

.navigation > li > a sup {
	text-transform: none;
  }
/* -----------------------------------------
	03. Header
----------------------------------------- */
header {
	/*background: rgba(0, 0, 0, 0) url("images/head_bg.jpg") center center no-repeat;*/
}
.mast-head {
	position: relative;
	/*
	padding: 15px 0;
	border-bottom: 1px solid #e6e6e6;
	background-color: #f4f4f2;*/
	-webkit-transition: padding .18s ease;
	transition: padding .18s ease;
}

.mast-head.is_stuck {
	z-index: 100;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
.pre-head {
	color: #666666;
	font-size: 12px;
	line-height: normal;
	padding: 10px 0;
}

.head-text-icon {
	margin: 3px 20px 0 0;
	display: inline-block;
}

.head-text-icon a {
	color: #FFFFFF;
}

.head-text-icon a:hover {
	color: #83b200;
}

.head-text-icon i {
	color: #83b200;
	margin-right: 5px;
	font-size: 14px;
}

.mast-head-wrap {
	display: table;
	padding: 30px 0;
	width: 100%;
}

.mast-head-left {
	/*display: table-cell;
	width: 30%;
	vertical-align: middle;
	*/
}

.mast-head-center {
	/*display: table-cell;
	width: 33%;
	vertical-align: middle;*/
	text-align: center;
}

.site-logo {
	margin: 0;
	line-height: normal;
}

.site-logo a {
	color: #362F2D;
}

.site-logo img {
	max-width: 260px;
}

.site-tagline {
	margin: -5px 0 0;
	line-height: normal;
}
.header-menu {
	background: transparent;
}

/* Wocoommerce and Search support */

.mast-head-right {
	text-align: right;
	text-transform: uppercase;
	font-family: "Roboto", sans-serif;
	color: #666666;
	font-size:13px;
}

.mast-head-right > a {
	margin-left: 15px;
	text-transform: uppercase;
	color: #666666;
	font-size:13px;
}

.mast-head-right > a:hover {
	color: #252525;
}

.head-cart {
	display: inline-block;
	position: relative;
}

.head-cart .widget {
	margin: 0;
}

.head-cart-wrap {
	display: none;
	position: absolute;
	top: 25px;
	right: -25px;
	background-color: #ffffff;
	width: 320px;
	z-index: 110;
	text-align: left;
	padding: 25px;
	border: 2px solid #252525;
}

.head-cart-wrap .widget-title {
	display: none;
}

.head-cart-wrap a {
	margin: 0;
}

.head-cart-toggle {
	margin-left: 15px;
}

.head-cart-toggle:hover,
.is-visible .head-cart-toggle {
	color: #252525;
}

.head-cart-toggle i {
	margin-right: 3px;
}

/* Head Search */
.mast-head-search {
	background-color: #f4f4f4;
	width: 100%;
	position: absolute;
	top: -400px;
	z-index: 101;
	height: 100%;
	-webkit-transition: top .18s ease;
	transition: top .18s ease;
	border-bottom: 1px solid #e6e6e6;
}

.mast-head-search.head-search-open {
	top: 0;
}

.mast-head-search div {
	height: 100%;
}

.head-search-form {
	height: 100%;
	position: relative;
}

.head-search-input {
	height: 100%;
	background: none;
	color: #666666;
	border: 0;
	padding: 1px 0 3px;
	font-size: 18px;
	font-family: "Lato", sans-serif;
}

.head-search-input::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.7;
}

.head-search-input:-moz-placeholder {
	color: inherit;
	opacity: 0.7;
}

.head-search-input::-moz-placeholder {
	color: inherit;
	opacity: 0.7;
}

.head-search-input:-ms-input-placeholder {
	color: inherit;
	opacity: 0.7;
}

.head-search-dismiss {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -15px;
	font-size: 30px;
	line-height: 1;
	color: #83b200;
}

.head-search-dismiss:hover {
	color: #ffffff;
}

/*Social icons */
.mast-head-wrap .nav {
	margin-top: 0;
}

.mast-head-wrap .widget_ci-socials {
	float:left;
	margin-right: 10px;
}
.mast-head-wrap .social-icon {
	background: none;
	color: #666666;
}
.mast-head-wrap .social-icon:hover {
	background: none;
}
/* -----------------------------------------
	04. Modules
----------------------------------------- */
/* Site-Wide
=================================== */
.page-hero {
	/*background-color: #83b200;*/
	/*
	padding: 40px 0;
	border-top: 1px solid #83b200;
	border-bottom: 1px solid #83b200;*/
	margin: 20px 0 -24px;
	color: #362F2D;
    padding: 10px 0 30px;
    border-top: 1px solid #ccc;

}

.page-title {
	font-size: 2.8em;
	margin: 0 0 15px;
	line-height: 1.16em;
}

.page-subtitle {
	margin: -3px 0 0;
}

.main {
	padding: 24px 0;
}

.main-home {
	padding: 0;
}

.itn-page-quote {
    text-align: right;
    font-size: 1.6em;
    color: #999;
    margin: 14px 0 0;
}

/*Home preslideer */
section.home-preslider.widget {
	margin: 10px 0 -21px;
	display: flex;
	width: 100%;
}

section.home-preslider.widget.widget-padded .widget-wrap {
	flex: 0 0 100%;
	padding: 20px 0;
	color: #e5005a;
	background-color: transparent;
	border-top: 2px solid #e5005a;
	border-bottom: 2px solid #e5005a;
}

section.home-preslider.widget.widget-padded .widget-wrap .btn.btn-lg {
	background-color: #fff;
	color: #e5005a;
	border-color: #e5005a;
	padding: 7px 55px 0;
	height: 36px;
}
section.home-preslider.widget.widget-padded .widget-wrap .btn.btn-lg:hover {
	border-color: #fff;
	background-color: #e5005a;
	color: #fff;
}

section.home-preslider .textwidget {
	width: 100%;
}
section.home-preslider .maxslider-slide .maxslider-slide-title {
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
}
section.home-preslider .maxslider-slide {
	font-family: "Montserrat", sans-serif;
	border-top: 2px solid #c9c9c9;
	border-bottom: 2px solid #c9c9c9;
}

section.home-preslider .maxslider-btn {
	border: 2px solid #c9c9c9;
	margin-top: 10px;
	padding: 4px 10px;
	font-size: 12px;
	background-color: transparent;
}
section.home-preslider .maxslider-btn:hover {
	background-color: #c9c9c9;
	border: 2px solid transparent;
}

/* Entry Styles
=================================== */
.entry {
	margin: 0 0 60px;
}

.entry:only-of-type {
	margin: 0;
}

.entry.post .entry-thumb {
    margin: 12px 0 0 0;
}

.entry-title {
	font-size: 30px;
}

.entry-title a {
	color: #362F2D;
}

.entry-title a:hover {
	color: #83b200;
}

/*
.post .entry-title::after {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	margin-top: 10px;
	background-color: #83b200;
}
*/

.entry-meta {
	position: relative;
	margin: -5px 0 18px;

	font-family: "Roboto", sans-serif;
	text-transform: uppercase;

	font-size: 12px;
	
}

.entry-meta::after {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	margin-top: 10px;
	background-color: #83b200;
}

.entry-meta-item {
	display: inline-block;
	margin: 0 10px 0 0;
}

.entry-meta-item::after {
	content: '/';
	color: #83b200;
	font-weight: bold;
	margin-left: 12px;
}

.entry-meta-item:last-child {
	margin-right: 0;
}

.entry-meta-item:last-child::after {
	display: none;
}

.entry-meta-item a {
	color: #362F2D;
}

.entry-meta-item a:hover {
	color: #83b200;
}

.entry-categories,
.entry-comments-link {
	font-weight: bold;
}
.post-category {
	border-bottom: 1px solid #ccc;
}

.post-category a {
	font-weight: bold;
	border-bottom: 2px solid #83b200;
}

.entry-tags {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #EBEAEA;
}

.entry-thumb {
	margin-bottom: 35px;
}

.entry-thumb.alignnone, .entry-thumb.alignleft, .entry-thumb.alignright, .entry-thumb.aligncenter {
	margin-top: 0;
}

.entry-content::after {
	content: "";
	display: table;
	clear: both;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
	margin: 30px 0 15px;
}

.entry-content a {
	color: #362F2D;
	font-weight: bold;
	border-bottom: 2px solid #83b200;
}


.entry-content a.link-soft {
	color: #444444;
	font-weight: normal;
	border-bottom: 1px solid #444444;
}

.entry-content a:hover {
	border-bottom-color: #362F2D;
}

.entry-content blockquote {
	border: 0;
	position: relative;
	padding-left: 50px;
	font-size: inherit;
	margin: 25px 0;
}

.entry-content blockquote cite {
	font-style: normal;
	font-size: 12px;
	font-weight: normal;
}

.entry-content blockquote::before {
	content: "â€œ";
	position: absolute;
	left: 0;
	top: 0;
	font-family: "Montserrat", sans-serif;
	color: #83b200;
	font-size: 80px;
	line-height: 0.8;
}

.entry-content-footer {
	margin: 6px 0 60px;
}

/* Modules
=================================== */
.module {
	margin-bottom: 60px;
}

/* Opening Hours */
.table-opening-hours td {
	text-align: right;
	font-weight: bold;
}

/* Testimonial */
.module-testimonial {
	border: 0;
	font-size: 18px;
	margin: 0;
	padding: 0;
	position: relative;
}

.module-testimonial::before {
	content: "â€œ";
	position: absolute;
	top: -5px;
	left: -10px;
	font-size: 10em;
	line-height: 0.5;
	font-style: normal;
	font-family: "Montserrat", sans-serif;
	opacity: 0.1;
}

.module-testimonial-cite {
	display: table;
	width: 100%;
	font-weight: normal;
	color: #362F2D;
}

.module-testimonial-avatar {
	width: 100px;
	padding-right: 10px;
	vertical-align: middle;
	display: table-cell;
}

.module-testimonial-author {
	font-style: normal;
	display: table-cell;
	vertical-align: middle;
	line-height: normal;
}

.module-testimonial-author strong,
.module-testimonial-author span {
	display: block;
}

.module-testimonial-author span {
	font-size: 14px;
}

/* Contact Info Module */
.ci-map-wrap {
	position: relative;
	padding-bottom: 60%;
	height: 0;
	margin-bottom: 15px;
	border: 2px solid #83b200;
}

.ci-map-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.module-contact-info {
	list-style: none;
	margin: 0;
	padding: 0;
}

.module-contact-info li {
	display: block;
	margin-bottom: 7px;
}

.module-contact-info li::after {
	content: "";
	display: table;
	clear: both;
}

.module-contact-info li i {
	float: left;
	margin-right: 8px;
	width: 16px;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.module-contact-info li span {
	display: block;
	overflow: hidden;
}

.module-contact-info li a {
	color: #362F2D;
}

.module-contact-info-title {
	font-weight: bold;
	font-size: 14px;
}

/* Project Meta */
.project-meta {
	width: 100%;
	margin: 0 0 50px;
	border: 1px solid #EBEAEA;
	border-right: 0;
	border-bottom: 0;
}

.project-meta th, .project-meta td {
	text-align: left;
	padding: 7px 15px;
	border-bottom: 1px solid #EBEAEA;
	border-right: 1px solid #EBEAEA;
	text-transform: none;
	font-size: inherit;
}

.project-meta th:first-child, .project-meta th:last-child, .project-meta td:first-child, .project-meta td:last-child {
	padding-left: 15px;
}

.project-meta th {
	width: 35%;
}

/* Items
=================================== */
.row-items {
	margin-bottom: -40px;
}

.item {
	margin-bottom: 60px;
}

.item-icon {
	height: 40px;
	width: 40px;
	border: 2px solid #83b200;
	font-size: 24px;
	line-height: 38px;
	text-align: center;
	margin-bottom: 15px;
}

.item-title {
	/* See inc/_widgets.scss */
}

.item-thumb {
	margin-bottom: 20px;
}

.item-center {
	text-align: center;
}

.item-center .item-icon {
	display: inline-block;
}

.item-center .item-title::after {
	margin-left: auto;
	margin-right: auto;
}

.item-media::after {
	content: "";
	display: table;
	clear: both;
}

.item-media .item-icon {
	float: left;
	margin-right: 15px;
}

.item-media .item-content {
	overflow: hidden;
}

.item-entry .item-title {
	margin: 0;
	padding: 0;
}

.item-entry .item-title::after {
	display: none;
}

.item-entry-time {
	position: relative;
	display: block;
	margin-bottom: 25px;
}

.item-entry-time::after {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	margin-top: 10px;
	background-color: #83b200;
}

.item-center .item-entry-time::after {
	margin-left: -15px;
	left: 50%;
}

/* Services */
.item-service {
	padding-bottom: 10px;
}

.item-service .service-title {
	margin: 8px 0;
}

.item-service .service-title a {
	color: #83b200;
	font-size: 32px;
}

.item-service p {
	font-size: 16px;
	margin:0;
}
/*
.item-service:first-child, .item-service:nth-child(4n), .item-service:nth-child(4n+1) {
	background-color: #7cc08f;
	color: #fff;
}
*/

.service-links a {
	margin-right: 14px;
}

/* Timeline */
.timeline {
	border-left: 3px solid #83b200;
	float: left;
	margin: 0 0 0 -15px;
}
.timeline-year {
    clear: both;
    width: 100%;
    float: left;
	margin: 0 0 64px;
}
.keypoint-year {
    float: left;
    width: 90px;
}
.keypoint-items {
	float:right;
	width: 475px;
}
.keypoint-item {
    float: right;
    width: 450px;
	background: #f2f2f2;
	padding: 10px 12px;
	/*border-bottom: 4px solid #fff;*/
	margin-top: 5px;
	position: relative;
}
.keypoint-item.first-item {
	margin-top: 10px;
}
.keypoint-item.first-item:after {
	right: 100%;
	top:0;
	/*top: 50%;*/
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(242, 242, 242, 0);
	border-right-color: #f2f2f2;
	border-width: 20px;
	/*margin-top: -21px;*/
}
.keypoint-year h3 {
	margin: 0;
	color: #83b200;
	font-size: 34px;
}
.keypoint-year h3::before{
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	-moz-border-radius: 7.5px;
	-webkit-border-radius: 7.5px;
	border-radius: 7.5px;
	background-color: #83b200;
	margin: 0 9px 0 -9px;
 }
.keypoint-title h4 {
	margin:0; 
	color: #000;
	font-weight: bold;
	font-size: 15px;
}
.keypoint-excerpt {
	/*display: none;*/
	font-size:16px;
}
.keypoint-content {
	display: none;
	font-size:16px;
}

/* Pricing Module
=================================== */
.table-pricing {
	margin-top: 60px;
}

.item-pricing {
	background-color: #FFF;
	border: 1px solid #EBEAEA;
	padding: 25px 15px;
	margin: 0 0 30px;
	border-radius: 2px;
}

.item-pricing .item-title,
.item-pricing .item-subtitle {
	text-align: center;
}

.item-pricing .item-title {
	margin-bottom: 10px;
}

.item-pricing .item-title::after {
	margin-left: auto;
	margin-right: auto;
}

.item-pricing-featured {
	border: 3px solid #83b200;
	padding-top: 38px;
	padding-bottom: 40px;
	margin-top: -15px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
}

.item-price {
	font-size: 48px;
	font-weight: bold;
	font-family: "Roboto", sans-serif;
	letter-spacing: -0.05em;
	line-height: normal;
	margin: -4px 0 3px;
	text-align: center;
}

.item-price .recurring {
	font-size: 11px;
	font-family: "Open Sans", sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: normal;
}

.item-features {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}

.item-features li {
	padding: 6px 0 7px 2px;
	position: relative;
	border-bottom: 1px solid rgba(235, 234, 234, 0.45);
}

.item-features li:before {
	font-family: FontAwesome;
	content: '\f00c';
	color: #83b200;
	font-size: 18px;
	margin-right: 7px;
	position: relative;
	top: 1px;
}

.item-features li.no:before {
	content: '\f00d';
	color: #bdbdbd;
}

.item-pricing-action {
	text-align: center;
}

/* Info table 
=================================== */
.cwf-info-table {
    font-family: Roboto, sans-serif;
    font-size: 12px;
    letter-spacing: -0.3px;
}

.cwf-info-table th {
	background-color: #83b228;
	color: #fff;
	text-transform: none;
	font-weight: 200;
	font-size: 12px;
	border: none;
}

.cwf-info-table td {
	border: none;
	padding: 20px 4px;
}

table.cwf-info-table th:first-child {
    padding: 20px;
}

.cwf-info-table tr:nth-child(odd) th {
	background-color: #5a7c1b;
}

.cwf-info-table tr:first-child th {
	background-color: #83b228;
	padding: 10px 20px 0;
}

.cwf-info-table tr:first-child th img {
	margin: 0;
}

.cwf-info-table tr:nth-child(odd) td {
	background-color: #b2b2b2;
	color: #fff;
}

.cwf-info-table tr:first-child td {
	background-color: transparent;
}

/* Pagination
=================================== */
.paging {
	margin: 40px 0 0;
}

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

.paging ul li {
	display: inline-block;
}

.paging a,
.paging > span,
.paging li span {
	display: inline-block;
	font-size: 13px;
	padding: 12px 16px;
	margin: 0 3px 0 0;
	line-height: normal;
	border: 1px solid  #83b200;
	/*background-color: #83b200;*/
	color: #83b200;
	font-family: "Roboto", sans-serif;
	
}

.paging a:hover,
.paging .current {
	background-color: #83b200;
	color: #fff;
}

/* Back to top arrow */
.back-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background-color: #83b200;
	color: #362F2D;
	text-align: center;
	line-height: 38px;
	font-size: 24px;
	z-index: 999;
	opacity: 0;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	pointer-events: none;
}

.back-top:hover {
	background-color: #362F2D;
	color: #83b200;
}

.back-top-visible {
	opacity: 1;
	pointer-events: auto;
}

/* FAQ
=================================== */
.faq-section:not(last-child) {
	margin-bottom: 40px;
}

.faq-wrap {
	margin-bottom: 5px;
}

.faq-title {
	display: block;
	padding: 20px 20px;
	margin-bottom: 0;
	background-color: #83b200;
	color: #362F2D;
	font-size: 14px;
	font-weight: bold;
	line-height: normal;
	position: relative;
}

.faq-title::before {
	content: '';
	position: absolute;
	border: 6px solid transparent;
	border-left-color: #FFFFFF;
	width: 0;
	height: 0;
	top: 50%;
	margin-top: -6px;
	opacity: 0;
	left: -10px;
	-webkit-transition: opacity .18s ease, left .28s ease;
	transition: opacity .18s ease, left .28s ease;
}

.faq-title:hover, .faq-title.faq-open {
	background-color: #362F2D;
	color: #83b200;
}

.faq-title:hover::before, .faq-title.faq-open::before {
	opacity: 1;
	left: 0;
}

.faq-content {
	background-color: rgba(0, 0, 0, 0.03);
	padding: 20px;
	margin: 0;
	display: none;
}

.faq-content p:last-child {
	margin-bottom: 0;
}

/* Social links */
ul.social-links {
	list-style: none;
}
.contacts-icon {
    font-size: 32px;
    margin: 0 8px 0 0;
}
.contacts-item .fa {
    border: 2px solid #83b200;
    border-radius: 50%;
    padding: 5px 6px 5px 6px;
    font-size: 12px;
    text-align: center;
    margin: 0px 0 4px;
    width: 28px;
    color: #999999;
}

/*Sponsors*/

.sponsor-meta {
	font-family: Roboto, sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	margin: 30px 0;
}

.sponsor-meta ul.social-links {
	padding-left:0;
}

/*Committee */
.committee-meta {
		font-family: Roboto, sans-serif;
		font-size: 12px;
		text-transform: uppercase;
}
.committee-member h4 {
	margin-top: 0;
	margin-bottom: 4px;
}
h4.past-committee-years {
	margin: 34px 0 8px 0;
}

/* Member directory */
.member-item {
	margin:0 0 20px 0;
}
.member-item dl.inline-flex {
	font-family: "Roboto", sans-serif;
	font-size: 12px;

}
.member-item dl.inline-flex dd {
	margin-bottom: 6px;
}
.member-item .contacts-icon {
	font-size: 18px;
}
.member-tile {
	text-align: center;
}
.row-equal .col-md-3:nth-child(4n+1) {
    clear: left;
}
/* -----------------------------------------
	05. Footer
----------------------------------------- */
.footer {
	background-color: #f2f2f2;
	color: #a6a6a6;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
}

.footer a:not(.btn),
.footer .widget a:not(.btn) {
	color: #a6a6a6;
}

.footer a:not(.btn).social-icon,
.footer .widget a:not(.btn).social-icon {
	color: #362F2D;
}

.footer a:not(.btn):hover,
.footer .widget a:not(.btn):hover {
	color: #83b200;
}

.footer .link-list-item a:not(.btn) {
	color: #362F2D;
}

.footer-main {
	padding: 55px 0 0;
}

.footer-copy {
	text-transform: uppercase;
	font-size: 10px;
	font-family: "Roboto", sans-serif;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 15px 0 30px;
}

.footer-copy a:not(.btn) {
	color: #83b200;
}

.footer-copy a:not(.btn):hover {
	color: #384c01;
}

.footer-copy p {
	margin: 0;
}
.legal-text {
	font-size: 14px;
	
}
.legal-menu {

}
/* -----------------------------------------
   06. Comments
----------------------------------------- */
#comments {
	margin: 40px 0 0;
}

#comment-list {
	margin: 0;
	list-style: none;
	padding: 0;
}

#comment-list ol {
	list-style: none;
}

@media (max-width: 767px) {
	#comment-list ol {
		margin: 0;
		padding: 0;
	}
}

#comment-list .comment-body {
	margin-bottom: 20px;
	padding-top: 20px;
}

#comment-list > .comment:first-child > .comment-body {
	border-top: none;
	padding-top: 0;
}

.post-comments {
	margin: 0 0 45px;
}

.comment-author .avatar {
	width: 64px;
	height: 64px;
	float: left;
	margin: 0 15px 15px 0;
	overflow: visible;
}

@media (max-width: 543px) {
	.comment-author .avatar {
		display: none;
	}
}

.comment-content {
	overflow: hidden;
	zoom: 1;
	font-size: 13px;
}

.comment-metadata {
	font-size: 10px;
	text-transform: uppercase;
	margin: 0 0 5px;
}

.comment-metadata a {
	color: #362F2D;
}

.comment-reply-link {
	font-size: 10px;
	text-transform: uppercase;
	padding: 4px 10px;
	margin-left: 80px;
	height: auto;
	width: auto;
	background-color: #83b200;
	color: #362F2D;
}

.comment-reply-link:hover {
	background: #362F2D;
	color: #83b200;
	text-decoration: none;
}

@media (max-width: 767px) {
	.comment-reply-link {
		margin: 0;
	}
}

.bypostauthor > article .fn:before {
	font-family: FontAwesome;
	content: "\f005";
	margin: 0 2px 0 -2px;
	position: relative;
	top: -1px;
	font-size: 11px;
}

#cancel-comment-reply-link {
	font-size: 13px;
	font-weight: normal;
	margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
	font-size: 12px;
	line-height: 1.5;
	color: rgba(54, 47, 45, 0.8);
}

/* -----------------------------------------
	07. Widgets Styling
----------------------------------------- */
.news-sidebar .sidebar {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	background: #efefef;
	padding: 18px;
}


.widget {
	margin: 0 0 50px;
}

.widget .footer {
	margin-bottom: 30px;
}

.sidebar .widget:last-child,
.widget p:last-child {
	/* Nullify bottom margin for last elements in widgets and sidebars */
	margin-bottom: 0;
}

.widget-title,
.module-title,
.item-title {
	color: #999999;
	/*
	position: relative;
	margin-bottom: 20px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	letter-spacing: -.05em;
	display: block;
	
	line-height: 1.2;
	font-size: 14px;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	font-weight: 400;*/
}

.widget-title::after,
.module-title::after,
.item-title::after {
	/*
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	margin-top: 10px;
	background-color: #83b200;
	*/
}

.widget-title a,
.module-title a,
.item-title a {
	color: inherit;
}

.widget-title a:hover,
.module-title a:hover,
.item-title a:hover {
	color: #83b200;
}

.footer .widget {
	margin-bottom: 14px;
}

.footer .widget-title, .footer
.module-title, .footer
.item-title {
	padding-bottom: 0;
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.15);*/
	margin: 0;
	font-size:14px;
	color: #333333;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	font-weight: bold;
}

.footer .widget-title::after, .footer
.module-title::after, .footer
.item-title::after {
	display: none;
}

.widget-title label,
.module-title label,
.item-title label {
	text-transform: none;
	display: block;
	font-size: inherit;
	margin: 0;
	line-height: inherit;
	font-weight: inherit;
}

/* Section Widgets General
========================================= */
.widget-padded + .widget-padded {
	margin-top: -60px;
}

section.widget {
	margin: 0 0 60px;
}

section.widget.widget-padded:last-child {
	margin-bottom: 0;
}

.widget-padded .widget-wrap {
	padding: 60px 0;
}

.widget-padded .widget-wrap.wrap-extra-pad {
	padding: 140px 0;
}

.widget-wrap {
	background-position: center center;
	background-size: cover;
	position: relative;
}

.section-title-wrap {
	position: relative;
	margin-bottom: 60px;
}

.section-title-wrap::after {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	margin-top: 10px;
	background-color: #83b200;
}

.section-title-wrap::after {
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	font-size: 30px;
	text-align: center;
	margin: 0;
}

.section-subtitle {
	text-align: center;
	margin: 0;
}

/* WIDGET: #Hero / Slideshow Widget
========================================= */
.hero-title {
	font-size: 42px;
	font-family: "Montserrat", sans-serif;
	letter-spacing: -.05em;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 10px;
}

.hero-content-text {
	font-size: 16px;
	line-height: 1.5;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 25px;
}

.hero-image {
	margin-bottom: 20px;
}

/* WIDGET: #Justified Gallery
========================================= */
.entry .justified-gallery {
	margin-bottom: 30px;
  }
  .entry-content .justified-gallery {
	margin: 30px 0;
  }
  .justified-gallery a:after {
	content: "\f00e";
	font-family: "FontAwesome";
	color: #FFF;
	position: absolute;
	font-size: 30px;
	top: 50%;
	left: 50%;
	line-height: normal;
	margin-left: -14px;
	margin-top: -15px;
	opacity: 0;
	transition: opacity 0.18s ease;
  }
  .justified-gallery a:hover:after {
	opacity: 1;
  }
  .justified-gallery > div:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 0 solid #fff;
	pointer-events: none;
	transition: border-width 0.18s ease;
	z-index: 1;
  }
  .justified-gallery > div:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid transparent;
	pointer-events: none;
	transition: border-color 0.18s ease;
	z-index: 1;
  }
  .justified-gallery > div:hover:before {
	border-width: 20px;
  }
  .justified-gallery > div:hover:after {
	border-color: #D7D7D7;
  }
  

/* WIDGET: #Slideshow Widget
========================================= */
.widget_ci-slideshow + .widget-padded {
	margin-top: -60px;
}

.main-slider {
	height: 516px;
	margin-top: 22px;
}

.main-slider .slides {
	height: 100%;
}

.main-slider .slides li {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	height: 100%;
}

.main-slider .hero-content {
	width: 100%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-55%);
	-ms-transform: translateY(-55%);
	transform: translateY(-55%);
}

.main-slider .ci-direction-nav a:before {
	color: #FFF;
}

.main-slider .ci-control-nav {
	bottom: 15px;
	z-index: 100;
}

.main-slider .ci-control-paging li a {
	background-color: #ccc;
	box-shadow: none;
	opacity: 0.6;
	-webkit-transition: opacity .18s ease, background-color .18s ease;
	transition: opacity .18s ease, background-color .18s ease;
}

.main-slider .ci-control-paging li a:hover {
	opacity: 1;
}

.main-slider .ci-control-paging li a.ci-active {
	background-color: #83b200;
	opacity: 1;
}

.slide-video-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.slide-video-wrap iframe {
	position: absolute;
	max-width: none;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	margin: 0;
	padding: 0;
}

/* Testimonial */
.slide-testimonial {
	text-align: center;
	margin:0 30px;
	color: #000;
}
.slide-testimonial-photo {
	float:left;
	max-width:830px;
	width: auto;
	height:100%;
}
.slide-testimonial-slogan {
	font-size: 32px; /*40px;*/
	line-height: 38px; /*42px;*/
	font-family: "Playfair Display", serif;
	text-align: center;
	margin: 120px 0 60px;
}
.slide-testimonial-name {
	font-size: 28px;
	line-height: 28px;
	margin: 0;
	font-variant: small-caps;
}
.slide-testimonial-subtitle {
	font-size: 18px;
	margin:0;
}
.slide-testimonial-job {
    margin: 30px 0 0;
}
.slide-testimonial-company {
	margin: 30px 0 0;
	line-height: 16px;
	font-style: italic;
}
.slide-testimonial-position {
	margin:0;
	font-style: italic;
}
.slide-testimonial-link {
	color: #83b200;
	text-decoration: underline;
	margin-top: 10px;
	display: block;
	font-weight: bold;
	/*
	font-family: "Montserrat", sans-serif; 
	font-size: 14px;
	*/
}
/* Testimonial template */
.testimonial-item {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #999;
}
.entry-content .testimonial-slogan {
	margin:0 0 14px;
	font-size: 24px;
}
.entry-content .testimonial-title {
	margin:0;

}
.entry-content .testimonial-job {
    margin-top: 12px;
}


/* WIDGET: #Clients
========================================= */
.client-list {
	text-align: center;
	vertical-align: middle;
}

.client-list a {
	display: inline-block;
	margin: 0 25px 20px;
}

/* WIDGET: #List Widgets
========================================= */
.widget select {
	width: 100%;
	padding: 5px 10px;
	border-radius: 0;
	border: 1px solid #EBEAEA;
}

.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_recent_entries ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget_meta ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_recent_entries ul ul {
	margin-left: 15px;
}

.widget_meta ul li,
.widget_pages ul li,
.widget_categories ul li,
.widget_archive ul li,
.widget_recent_entries ul li {
	line-height: normal;
	display: block;
	position: relative;
}

.widget_meta ul li a,
.widget_pages ul li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_recent_entries ul li a {
	display: inline-block;
	padding: 3px 0;
	color: #362F2D;
}

.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_recent_entries ul li a:hover {
	color: #83b200;
}

.widget_meta ul li .count,
.widget_meta ul li .ci-count,
.widget_pages ul li .count,
.widget_pages ul li .ci-count,
.widget_categories ul li .count,
.widget_categories ul li .ci-count,
.widget_archive ul li .count,
.widget_archive ul li .ci-count,
.widget_recent_entries ul li .count,
.widget_recent_entries ul li .ci-count {
	margin-left: 5px;
}

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

.widget_recent_comments ul li {
	display: block;
}

.widget_pages select,
.widget_categories select,
.widget_archive select {
	display: block;
	width: 100%;
	padding: 6px 15px;
	border-radius: 0;
	font-size: 14px;
	height: 40px;
	font-weight: normal;
	border: 1px solid #EBEAEA;
	background: #FFF;
}

/* WIDGET: Custom Menu
========================================= */
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

.menu ul {
	list-style: none;
}

.menu .current-menu-item > a {
	background-color: #362F2D;
	color: #83b200;
	position: relative;
}

.menu .current-menu-item > a::before {
	opacity: 1;
	left: 0;
}

.sidebar .menu-item {
	display: block;
}

.sidebar .menu-item a {
	display: block;
	margin-bottom: 5px;
	background-color: #83b200;
	color: #362F2D;
	height: 60px;
	font-size: 14px;
	font-weight: bold;
	line-height: normal;
	padding: 20px 15px;
	position: relative;
}

.sidebar .menu-item a::before {
	content: '';
	position: absolute;
	border: 6px solid transparent;
	border-left-color: #FFFFFF;
	width: 0;
	height: 0;
	top: 50%;
	margin-top: -6px;
	opacity: 0;
	left: -10px;
	-webkit-transition: opacity .18s ease, left .28s ease;
	transition: opacity .18s ease, left .28s ease;
}

.sidebar .menu-item a:hover {
	background-color: #362F2D;
	color: #83b200;
}

.sidebar .menu-item a:hover::before {
	opacity: 1;
	left: 0;
}
.booking-menu-item {
	font-weight: bold;
}

/* WIDGET: Link List
========================================= */
.link-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

.link-list .current-menu-item > a {
	background-color: #362F2D;
	color: #83b200;
	position: relative;
}

.link-list .current-menu-item > a::before {
	opacity: 1;
	left: 0;
}

.link-list-item {
	display: block;
	height: 60px;
	margin-bottom: 5px;
}

.link-list-item a {
	height: 100%;
	display: table;
	width: 100%;
	background-color: #83b200;
	color: #362F2D;
	font-size: 14px;
	font-weight: bold;
	line-height: normal;
	padding: 0 15px;
	position: relative;
}

.link-list-item a:hover {
	background-color: #362F2D;
	color: #83b200;
}

.link-list-icon {
	display: table-cell;
	vertical-align: middle;
	font-size: 24px;
	padding-right: 10px;
	max-width: 50px;
	width: 30px;
}

.link-list-content {
	display: table-cell;
	vertical-align: middle;
	font-size: 11px;
	font-weight: normal;
	width: 99999px;
}

.link-list-content strong {
	display: block;
	font-size: 14px;
}

/* WIDGET: #Ads125
========================================= */
#ads125,
.ads125 {
	margin: 0;
	padding: 0;
	list-style: none;
}

#ads125 li,
.ads125 li {
	background: none;
	border: none;
	float: left;
	margin: 0 15px 10px 0;
	padding: 0;
	max-width: 125px;
	height: auto;
}

/* WIDGET: #Flickr
========================================= */
.flickr_badge_image {
	float: left;
	margin: 0 15px 15px 0;
}

.flickr_badge_image a {
	display: block;
	line-height: 0;
}

/* WIDGET: #About
========================================= */
.widget_about {
	margin-top: -5px;
}

.widget_about img {
	max-width: 100px;
	height: auto;
}

.widget_about .alignleft {
	float: left;
	margin: 5px 15px 6px 0;
}

.widget_about .alignright {
	float: right;
	margin: 5px 0 6px 15px;
}

/* WIDGET: #Text Widget
========================================= */
.widget_text p:last-child {
	margin-bottom: 0;
}

/* WIDGET: #Twitter
========================================= */
.widget_ci_twitter_widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget_ci_twitter_widget ul li {
	margin-bottom: 12px;
}

.widget_ci_twitter_widget ul li:first-child {
	padding-top: 0;
}

.widget_ci_twitter_widget .twitter-time {
	display: block;
	font-size: 0.85em;
}

/* WIDGET: #Calendar
================================================== */
#wp-calendar {
	width: 100%;
}

#wp-calendar a {
	font-weight: bold;
	font-style: italic;
}

#wp-calendar caption {
	text-align: left;
	margin-top: 10px;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.03);
	padding: 9px;
}

#wp-calendar thead {
	font-size: 10px;
}

#wp-calendar thead th {
	background: rgba(0, 0, 0, 0.1);
	font-weight: bold;
	padding: 8px;
}

#wp-calendar tbody td {
	background: none;
	border: 1px solid rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 3px;
}

#wp-calendar tbody td:hover {
	background: rgba(0, 0, 0, 0.1);
}

#wp-calendar tbody .pad {
	background: none;
}

#wp-calendar tfoot #next {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
}

#wp-calendar tfoot #prev {
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 10px;
}

/* WIDGET: Social Icons
========================================= */
.social-icons {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry-content .social-icons {
	margin-bottom: 20px;
}

.social-icons li {
	margin: 0;
	padding: 0;
	display: inline-block;
}

.pre-head .social-icons {
	text-align: right;
}

.item .social-icons {
	margin-top: -5px;
	margin-bottom: 15px;
}

.social-icon {
	display: inline-block;
	width: 25px;
	height: 25px;
	font-size: 14px;
	line-height: 25px;
	text-align: center;
	/*background-color: #83b200;*/
	color: #362F2D;
}

.social-icon:hover {
	/*background-color: #362F2D;*/
	color: #83b200;
}

/* WIDGET: #Pages
================================================== */
.widget_pages {
	font-family: "Playfair Display", serif;
	margin:14px 0 0 0;
}
.pages-list {
    font-size: 13px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
}

/* WIDGET: Promo Code
========================================= */
.promocode-widget {

}
.promocode-img {
	float: left;
	width:30%;
}
.promocode-txt {
	float: left;
	width:70%;
	line-height: 1;
}
.promocode-txt h3 {
	margin: 0;
}
.promocode-txt p a {
	color:#b5221b;
}
.promocode-txt p a:hover {
	color:#83b200;
}

/* WIDGET: AH booking mini
========================================= */
#booking-box {
    border: 1px solid #f5dddd;
    clear: both;
    float: left;
    margin: 25px 0;
    padding: 25px 25px 5px;
    width: 100%;
}

#booking-box h3 {
	color: #83b200;
}


/* WIDGET: Corporates
========================================= */
section.widget.widget_ci-corporate-members {
	margin-top: 60px;
}

.corporate-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

.item-corporate {
	display: inline-block;
	width: 140px;
	text-align: center;
	margin: 0 auto 34px;
}

.elementor .elementor-widget figure.item-corporate {
	margin: 0 auto 34px !important;
}

.corporate-img, .elementor img.corporate-img {
	max-width: 98px;
	max-height: 65px;
	width: auto;
	height: auto;
}

.entry-content .item-corporate a {
    border: none;
}

/* fix for Richmond logo */
.item-corporate-807 .corporate-img {
    max-width: 150px;
}


/** fix for 40th Anniversary landing page */
.elementor-179866 .item-corporate.item-corporate-789.item-corporate-ibm-switzerland-ltd img {
	max-width: 65px;
}

.elementor-179866 .item-corporate.item-corporate-152559.item-corporate-syz-group img {
	max-width: 50px;
}

.elementor-179866 .item-corporate.item-corporate-73406.item-corporate-ubs img {
	max-width: 78px;
}

.elementor-179866 .item-corporate.item-corporate-807.item-corporate-richemont-international-sa img {
	max-width: 140px;
}

.elementor-179866 .item-corporate.item-corporate-20237.item-corporate-loyco-sa img {
	max-width: 70px;
}

.elementor-179866 .item-corporate.item-corporate-707.item-corporate-banque-lombard-odier-cie-sa img {
	max-width: 85px;
}


/* -----------------------------------------
	08. WordPress Defaults
----------------------------------------- */
/* WordPress Galleries
=================================== */
.gallery {
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 15px;
}

.gallery::after {
	content: "";
	display: table;
	clear: both;
}

.gallery-item {
	margin-bottom: 10px;
}

.gallery-item img {
	width: 100%;
	max-width: 100%;
}

.gallery-columns-1 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 20%;
}

@media (max-width: 767px) {
	.gallery-columns-5 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 25%;
	}
}

.gallery-columns-6 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 16.66667%;
}

@media (max-width: 767px) {
	.gallery-columns-6 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 25%;
	}
}

.gallery-columns-7 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 14.28571%;
}

@media (max-width: 991px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 25%;
	}
}

.gallery-columns-8 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 12.5%;
}

@media (max-width: 991px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 25%;
	}
}

.gallery-columns-9 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	float: left;
	width: 11.11111%;
}

@media (max-width: 991px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		float: left;
		width: 25%;
	}
}

.gallery-caption {
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 0 5px;
	max-height: 50%;
	opacity: 0;
	padding: 6px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	width: calc(100% - 10px);
	-webkit-transition: opacity 0.18s ease;
	transition: opacity 0.18s ease;
}

.gallery-caption:before {
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/* WordPress Classes
=================================== */
/* Alignment */
.alignnone {
	margin: 5px 0 20px 0;
}

p .alignnone {
	margin-bottom: 0;
}

.aligncenter {
	display: block;
	margin: 7px auto 7px auto;
}

.alignright {
	float: right;
	margin: 7px 0 7px 24px;
}

.alignleft {
	float: left;
	margin: 7px 24px 7px 0;
}

/* Captions */
.wp-caption {
	max-width: 100%;
	margin-bottom: 15px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text {
	font-size: 12px;
	line-height: 17px;
	margin: 3px 0 5px;
	padding: 5px 0 0 0;
	text-align: left;
	font-style: italic;
}

.sticky {
	/* Provide sticky styles */
}

/* -----------------------------------------
  09.  MOBILE MENU
----------------------------------------- */
#mobilemenu {
	display: none;
}

@media (max-width: 991px) {
	#mobilemenu {
		display: block;
	}
}

.mobile-menu-trigger {
	float: left;
	font-size: 32px;
	color: #362F2D;
	line-height: normal;
	display: none;
	margin:0 0 0 8px;
}

.mobile-menu-trigger:hover {
	color: #362F2D;
}

/* -----------------------------------------
	10. External Plugins
----------------------------------------- */
/* Jetpack Sharing */
.sharedaddy {
	margin-top: 30px;
}

/* WP Instagram */
.null-instagram-feed p {
	padding-top: 10px;
}

.widget .instagram-pics {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget .instagram-pics::after {
	content: "";
	display: table;
	clear: both;
}

.widget .instagram-pics li {
	border-bottom: 0;
	padding: 0;
	float: left;
	width: 33.33333333333%;
}

.widget .instagram-pics li a {
	display: block;
	color: #362F2D;
}

/* -- Tribe TheEventCalendar -- */
/********************************/

/* Overrides: links, navs and buttons */

.tribe-button, a.tribe-button, button.tribe-button, input.tribe-button {
	border-radius: 0;
	/*color: #fff;	*/
	padding: 0 10px;
	height: 30px;
	font-family: Roboto, sans-serif;
}

#tribe-events .tribe-events-button, .tribe-events-button {
	border-radius: 0;
	font-family: Roboto, sans-serif;
}



.tribe-events-read-more, 
.tribe-events-back, 
.tribe-events-sub-nav {
    font-family: Roboto, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

/* Overrides: titles and separators */

.tribe-events-list-separator-month {
	
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
	font-family: Roboto, sans-serif;
	text-align: center;

}

/* Overrides: events basic elements */

#tribe-events .tribe-events-content p, .tribe-events-after-html p, .tribe-events-before-html p {
	line-height: 1.2em;
}
.single-tribe_events .tribe-events-event-meta {
	margin:0;
}

.single-tribe_events .tribe-events-single-event-title {
	color: #000;
	font-size: 2.8em;
	margin: 30px 0;

}
.tribe-events-event-image img {
    margin: 0 auto;
}
.tribe-events-meta-group {
	font-family: "Roboto", sans-serif;
}

.tribe-events-meta-group .tribe-events-single-section-title {
	font-family: "Roboto", sans-serif;

}

.single-tribe_events .tribe-events-event-meta {
	background: none;
	border: none;
}

.tribe-events-event-meta .column, .tribe-events-event-meta .tribe-events-meta-group {
	width:100%;
	padding: 0;
}

.single-tribe_events .secondary .tribe-events-venue-map {
	width:100%;
}

.tribe-attendees-list-container {
    margin: 20px 0 0 0;
}
.itn-event-meta-detail dt {
	visibility: hidden;
	font-size: 6px;
}
.itn-event-meta-detail dd {
	margin: 0;
}
/* Ovverride event list title color */

#tribe-events-content .tribe-events-list-event-title a.tribe-event-url {
    color: #000;
}

/* Featured events */
.tribe-events-list .tribe-events-loop .tribe-event-featured {
	background: none;
	margin: 0;
	padding: 2.25em 0;
}
.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-list-event-title a {
	color: #000;
}
.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost span {
	border: 1px solid #ddd;
	color: #444;
	font-weight: normal;
}
.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-content {
	color: #444;
}
.tribe-events-list .tribe-events-loop .tribe-event-featured a {
	color: #83b200;
}
.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-button {
	background-color: #83b200;
	color: #fff;
}
.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-button:hover {
	background-color: #362F2D;
	color: #fff;
}


.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .tribe-button {
	color: #fff;
}

#tribe-events .tribe-events-button.cwf-gcal-btn {
	border: 2px solid #1976d2;
	background: transparent;
	color: #1976d2;
}
#tribe-events .tribe-events-button.cwf-gcal-btn img {
	width: 24px;
	margin-right: 4px;
	height: 24px;
}
#tribe-events .tribe-events-button.cwf-gcal-btn:hover {
	background: #EBEAEA;
	color: #7cc08f;
}
#tribe-events .tribe-events-button.cwf-ical-btn {
	border: 2px solid #83b200;
	background: transparent;
	color: #83b200;
	height: 40px;
}
#tribe-events .tribe-events-button.cwf-ical-btn img {
	width: 24px;
	margin-right: 4px;
	height: 24px;
}
#tribe-events .tribe-events-button.cwf-ical-btn:hover {
	background: #EBEAEA;
	color: #7cc08f;
}


/* Tribe Related events */
h3.tribe-events-related-events-title {
	margin-top: 4%;
}


/* Tribe address */

.tribe-address {
    display: block;
}

.tribe-events-gmap {
    display: inline-block;
    border: 1px solid;
    padding: 2px 4px;
    margin: 4px 0;
    clear: both;
    width: auto;
}
/* Tribe filter bar */
#tribe-events-bar {
	font-family: 'Roboto', sans-serif;
}

.tribe-bar-date-filter, .tribe-bar-search-filter, tribe-bar-submit {
	padding: 5px 15px;
}

.tribe-bar-views-inner {
	padding: 5px 0 29px;
}

#tribe-bar-form input {
	font-size: 12px;
}

.tribe-bar-submit {
	padding: 3px 15px 2px;
}





/* Tribe filters */
.tribe-events-filters-content, .tribe-events-filters-content h3 {
	font-family: "Roboto", sans-serif;
}

/* Tribe cart */
#buy-tickets {
	font-family: "Roboto", sans-serif;
}
.itn-guest-cart .quantity {
	display: none;
}

/* TRibe hide features */
.tribe-tickets-attendees-list-optout {
	display: none !important;
}

/* Tribe Responsive */
#tribe-events-content {
	overflow: visible;
}
.tribe-events-loop .tribe-events-event-meta
{
	border: none;
	background: none;
}
/* ITN */
.itn-event-date {
	clear: both;
	margin: 0 0 24px;
}

.itn-event-day {
	font-size:45px;
	color: #83b200;
	float: left;
	font-weight: bold;
	margin: 0 8px 0 0 !important;;	
	/* margin: -15px 8px 0 0 */
	line-height: 53px;	
	letter-spacing: -3px;
}
.itn-event-month {
	color: #000;
	font-size: 14px;
	display: block;
	font-weight: bold;
	line-height: 3px;
	padding: 18px 0 0 0 !important;
}
.itn-event-time {
	font-size: 13px;
	color: #444444;
}
.itn-event-meta-detail {
	border-bottom: 1px solid #c9c9c9;
	padding: 6px 0 14px;
	line-height: 23px;
}
.itn-event-meta-value {
	font-size: 12px;	
}
.itn-event-meta-icon {
	width: 37px;
	height: 32px;
	float: left;
	display: block;
	color: rgba(0, 0, 0, 0);
	margin: 0 13px 0 3px;
	background-size: 37px 32px;
	background-repeat: no-repeat;
	background-image: url('images/icon-event-meta-date.png');
}
.itn-event-meta-icon-cost {
	background-image: url('images/icon-event-meta-cost.png');
}
.itn-event-meta-icon-event-language {
	background-image: url('images/icon-event-meta-language.png');
}
.itn-event-meta-icon-speaker {
	background-image: url('images/icon-event-meta-speaker.png');
}
.itn-event-meta-icon-website {
	background-image: url('images/icon-event-meta-website.png');
	background-size: 30px 28px;
	background-position-y: 4px;
}
.itn-event-meta-icon-target-audience {
	background-image: url('images/icon-event-meta-target-audience.png');
}


.itn-event-gallery-link {
	padding: 0 0 14px 37px;
	background-image: url('images/icon-event-photogallery.png');
	background-size: 32px 28px;
	background-position: 0 0;
	background-repeat: no-repeat;
	margin: 34px 0 0 10px;
	display: block;
}

/* *** List *** */
.tribe-events-list .tribe-events-loop .tribe-events-event-image {
	width: auto;
	float: none;
	margin: 12px 0 0;
}
.tribe-events-list-event-title a {
	color: #000;
}
.tribe-events-list-event-title a:hover {
	color: #83b200;
}
.tribe-events-loop .tribe-events-event-meta {
	font-weight: normal;
	line-height: inherit;
	font-size: inherit;
	font-family: Roboto, sans-serif;
}
.tribe-events-list .tribe-events-venue-details {
	font-family: Roboto, sans-serif;
	font-weight: normal;
	font-size: 12px;
}
.tribe-events-event-cost {
	font-family: Roboto, sans-serif;
	
	font-size: 12px;
}
.tribe-events-event-cost span {
	font-weight: normal;
}

.tribe-events-list .itn-event-date {
    margin-bottom: 0;
    float: left;
    width: 100%;
}

.itn-events-category-description {
    text-align: center;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-image {
	margin: 0;
}



/* Adv widget Event list */
.home .tribe-events-adv-list-widget {
	margin: 0 4%;
}
.itn-events-list-widget-events h4.tribe-event-title a {
	color: #000;
	font-size: 24px;
}
.home .tribe-events-widget-link {
	text-align: center;
	margin: 36px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 16px;
}
.itn-events-list-widget-events {
	padding: 0 50px !important;
	border-left: 1px solid #ccc !important;
}
.itn-events-list-widget-events:first-child {
	border-left-color: transparent;
}
.itn-events-list-widget-events .itn-event-date {
	margin: 0 0 14px 0;
	font-family: "Roboto", sans-serif;
}

/*v2*/
.tribe-events-widget-events-list__view-more.tribe-common-b1.tribe-common-b2--min-medium {
    text-align: center;
}
.tribe-common .tribe-common-b1 a.tribe-events-widget-events-list__view-more-link.tribe-common-anchor-thin {
    color: var(--tec-color-link-accent);
    text-transform: uppercase;
    font-size: 16px;
}

.tribe-common-h7 a {
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    line-height: normal;
}

.tribe-common .tribe-common-h6 {
    font-family: 'Playfair Display', serif;
    font-weight: normal;
}

h1.tribe-events-single-event-title {
    font-family: "Playfair Display", serif;
    font-weight: normal;
}

.tribe-events-meta-group.tribe-events-meta-group-other {
    margin-bottom: 20px;
}

/* Mini calendar */
.home .tribe_mini_calendar_widget {
	font-family: 'Playfair Display', serif;
	margin: 20px 0 10px;
}

.home .tribe_mini_calendar_widget .section-title {
	display: none;
}


.tribe-mini-calendar.calendar-strip-table td, .tribe-mini-calendar th {
    width: 20px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
	border: none;
}

.home .tribe-mini-calendar-no-event {
	font-weight: normal;
	font-size: 26px;
}
.home .tribe-mini-calendar div[id*="daynum-"] a {
	font-size: 26px;
}
.home .tribe-mini-calendar .tribe-events-has-events div[id*="daynum-"] a::before {
	display: none;
}


.tribe-mini-calendar.calendar-strip-table .tribe-mini-calendar-nav {
	background: none;
	text-align: right;
	width: 180px;
	
}
.tribe-mini-calendar.calendar-strip-table .tribe-mini-calendar-nav span {
	color: #999;
	font-size: 26px;
	text-transform: none;
}

/* Calendar view */
#tribe-events-content .tribe-events-tooltip h4 {
	background-color: #83b200;
}

#tribe-events-content .tribe-events-category-partners-events .tribe-events-tooltip h4 {
	background-color: #666;
}

.tribe-events-tooltip .tribe-events-event-body {
	font-family: "Roboto", sans-serif;
}

#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured {
	background: none;
}

#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured .tribe-events-month-event-title a {
	color: #83b200;
}

.tribe-events-calendar div[id*="tribe-events-event-"].tribe-events-category-partners-events h3.tribe-events-month-event-title a {
	color: #000;
}



/*Related events*/
h3.tribe-events-related-events-title {
    font-family: 'Playfair Display';
    font-weight: normal;
}
.tribe-events-single ul.tribe-related-events li .tribe-related-events-thumbnail a {
padding-top: 100%;
}
.tribe-events-single ul.tribe-related-events li .tribe-related-events-thumbnail img {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: none;
}
.tribe-events-single ul.tribe-related-events li .tribe-related-event-info {
    padding: 0 10px;
}
.tribe-events-single ul.tribe-related-events li .tribe-related-events-title {
    font-family: 'Playfair Display', serif;
    font-weight: normal;
}

.tribe-events-single ul.tribe-related-events li .tribe-related-event-info span.tribe-event-date-start,
.tribe-events-single ul.tribe-related-events li .tribe-related-event-info span.tribe-event-time {
    font-size: 11px;
}

/* Responsive: Mobile */
@media(max-width:767px) {
	/* Home */
	.itn-events-list-widget-events {
		padding: 0 22px 22px !important;
	}
	.itn-events-list-widget-events::after {
		content: '';
		display: block;
		width: 30px;
		height: 3px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 12px;
		background-color: #83b200;
	}
	h3.tribe-events-widget-events-list__event-title.tribe-common-h7 a {
		font-size: 24px;
		line-height: 24px;
	}
	/* Single Event */
	.single-tribe_events .tribe-events-single-event-title {
		font-size: 2.2em;
		margin: 30px 0 12px;
		line-height: 1.1em;
	}

}


/*NEW STYLES */
.tribe-common .tribe-common-c-btn, .tribe-common a.tribe-common-c-btn {
	border-radius: 0;
	font-family: Roboto, sans-serif;
	background-color: #83b200;
	color: #ffffff !important;
	padding: 5px 15px;
	text-transform: uppercase;
	font-weight: 600;
}

.tribe-common .tribe-common-c-btn, .tribe-common a.tribe-common-c-btn, .tribe-common button.tribe-common-c-btn {
	margin: 10px 0 ;
}


.tribe-common .tribe-common-c-btn:hover, .tribe-common a.tribe-common-c-btn:hover {
	border-radius: 0;
	padding: 5px 15px;
}

.tribe-checkout-backlinks {
    margin: 20px 0;
}

.tribe-checkout-backlink {
	margin-right: 18px;
}

/* END NEW STYLES */

/* WOOCOMMERCE 
_________________*/

.sc_info_box {
	display: none;
}
/*
.gift-certificate-show-form #show_form {
    display: none;
}
.gift-certificate-show-form label[for='show_form'] {
    display: none;
}

/* My account page */
.woocommerce-MyAccount-navigation {
	font-family: "Roboto", sans-serif;
}
.woocommerce-MyAccount-navigation ul {
	list-style: none;
}
.woocommerce-MyAccount-navigation-link a {
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	border: none;
	font-weight: normal;
}

/* Dashboard tiles */
.wc-dashboard-tiles {
	margin-top: 50px;
}
.wc-dashboard-tile {
	border: 1px solid #666666;
	height: 90px;
	width: 90%;
	padding: 20px 15px;
}
.wc-dashboard-tile a {
	border: none;
	color: #999;
	font-weight: normal;
}
.wc-dashboard-tile:hover {
	background: #e6e6e6;

}
span.wc-dashboard-link-title {
	font-size: 24px;
}
.wc-dashboard-tile span.wc-dashboard-link-title:before {
	content: "\f1da";
	font-family: 'FontAwesome';
	display: block;
	float: left;
	font-size: 40px;
	margin: 0 10px 0 0;
	width: 40px;
	color: #000;
}
.wc-dashboard-tile-members-directory span.wc-dashboard-link-title:before {
	content: "\f0c0";
}

.woocommerce fieldset {
	border: 1px solid #c9c9c9;
	border-radius: 10px;
	padding: 10px;
	margin: 18px 0;
}

.woocommerce fieldset legend {
	color: #83b200;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	padding: 0 4px;
}

/* Subscription and Membership */

/* fix message covering content on photogallery page*/
.page-template.admin-bar .woocommerce-info {
    display: none;
}

/* shared-counts */

a.shared-counts-button {
    border-bottom: none;
}


/* -----------------------------------------
	11. Global Mediaqueries
----------------------------------------- */
/* Mobile First */
@media (min-width: 768px ) {

	/* Service */
	.item-service {
		padding: 0 0 10px;
	}
	.item-service:nth-child(4n), .item-service:nth-child(4n+1) {
		background-color: #999999;
		color: #fff;
	}
	.item-service:first-child .service-title a, .item-service:nth-child(4n) .service-title a, .item-service:nth-child(4n+1) .service-title a {
		color: #fff;
	}
	.item-service:first-child a.read-more, .item-service:nth-child(4n) a.read-more, .item-service:nth-child(4n+1) a.read-more {
		color: #fff;
	}
	.item-service:first-child a.read-more:hover, .item-service:nth-child(4n) a.read-more:hover, .item-service:nth-child(4n+1) a.read-more:hover {
		color: #000;
	}

	.tribe-common .tribe-common-c-btn, .tribe-common a.tribe-common-c-btn, .tribe-common button.tribe-common-c-btn {
		width: 210px;
	}

}

@media (min-width: 992px ) {
	.itn-main-content {
		border-left: 1px solid #999;
	}

	.widget_pages {
		padding: 0 0 0 30px;
	}

	/* Events */
	.tribe-events-list .tribe-events-loop .tribe-events-event-image {
		padding: 0 6% 0 0;
	}
}



/* Desktop first */
@media (max-width: 1708px) {

	/*Home slides*/
	.slide-testimonial-slogan {
		font-size: 22px;
		line-height: 30px;
		margin: 88px 0 20px;
	}
}
@media (max-width: 1279px) {

	/*Home slides*/
	.slide-testimonial-photo {
		max-width: 680px;
	}
	.slide-testimonial-slogan {
		font-size: 22px;
		line-height: 30px;
		margin: 70px 0 20px
	}

	/*Home Calendar strip */
	.tribe-mini-calendar.calendar-strip-table .tribe-mini-calendar-nav span {
		font-size: 14px;
	}

	/*Home events*/
	.itn-events-list-widget-events {
		padding: 0 22px;
	}
}
@media (max-width: 991px) {
	.mast-head-center {
		float: none;
		margin: 0 auto 20px;
		width: 70%;
	}
	.mast-head-right {
		
		float:right;
		font-size: 18px;
		margin: 2px 10px 0 0;
		width: 85%;
		/**/
	}
	.head-cart-wrap {
		font-size: 12px;
	}
	.nav {
		display: none;
	}
	.mobile-menu-trigger {
		display: inline-block;
	}
	.main-slider {
		height: auto; /*560px;*/
	}
	.slide-testimonial-photo {
		float: none;
	}
	.slide-testimonial-slogan {
		margin:20px auto;
		font-size: 28px;
		line-height: 28px;
	}
	.main-slider .ci-control-nav {
		bottom: auto;
	}
	/*Home Main */

	.main.main-home {
		margin-top: 30px;
	}

	/*Home Calendar strip */
	.main-home .tribe_mini_calendar_widget {
		display: none;
	}

	/*Home events*/
	.itn-events-list-widget-events {
		margin-bottom: 50px;
	}


	.section-title-wrap {
		margin-bottom: 40px;
	}
	.table-pricing {
		margin-top: 0;
		margin-bottom: -30px;
	}
	.item-pricing-featured {
		margin-top: 0;
		padding: 23px 15px;
	}
	.client-list img {
		max-height: 45px;
	}
	.back-top {
		display: none;
	}
	.widget-padded .widget-wrap.wrap-extra-pad {
		padding: 120px 0;
	}
	.sidebar {
		margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.mast-head-left {
		/*width: 60%;*/
	}

	.site-logo img {
		max-width: 200px;
	}
	.main-slider {
		/*height: 460px;*/
	}
	.footer-copy {
		text-align: center;
	}
	.footer-copy .text-right {
		text-align: center;
	}

	/* Service */
	.item-service:nth-child(odd) {
		background-color: #999999;
		color: #fff;
	}
	.item-service:nth-child(odd) .service-title a {
		color: #fff;
	}
	.item-service:nth-child(odd) a.read-more {
		color: #fff;
	}
	.item-service:nth-child(odd) a.read-more:hover {
		color: #000;
	}

	/* Committe */
	.testimonial-item .img-responsive {
		margin-bottom: 16px; 
	}

	/* Events */
	#tribe-events-pg-template {
		padding: 0;
	}
	.tribe-events-list .tribe-events-event-image img {
		width: 100%;
		max-width: auto;
	}
	.tribe-events-list .time-details, .tribe-events-list .tribe-event-schedule-details {
		padding: 0;
	}
	.tribe-events-list .tribe-events-venue-details {
		padding: 8px 0 0;
	}
	a.tribe-events-gmap {
		display: inline-block;
		padding: 6px 10px;
	}

	.tribe-events-event-meta .column, .tribe-events-event-meta .tribe-events-meta-group {
		margin: 0 0 22px;
	}
	.tribe-events-meta-group.tribe-events-meta-group-organizer {
		flex-basis: 100%;
	}

	/* Hide related events */
	.tribe-events-single .tribe-events-related-events-title, .tribe-events-single ul.tribe-related-events {
		display: none;
	}

}

@media (max-width: 543px) {
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 20px;
	}
	h3 {
		font-size: 18px;
	}
	h4 {
		font-size: 16px;
	}
	h5 {
		font-size: 14px;
	}
	h6 {
		font-size: 12px;
	}
	.pre-head {
		text-align: center;
	}
	.pre-head .social-icons {
		display: none;
	}
	.head-text-icon {
		display: block;
		margin: 0 0 5px;
	}
	.head-text-icon:last-child {
		margin-bottom: 0;
	}
	.mast-head-wrap {
		padding: 20px 0;
	}
	.mast-head-left {
		width: 85%;
	}
	.main {
		padding: 10px 0;
	}
	.main-home {
		padding: 0;
	}
	.page-hero {
		padding: 30px 0;
	}
	.page-title {
		line-height: 1.1;
		font-size: 30px;
	}
	.page-subtitle {
		margin-top: 5px;
	}
	.entry-title {
		font-size: 24px;
	}
	.entry-meta {
		font-size: 10px;
	}
	.widget {
		margin-bottom: 40px;
	}
	.main-slider {
		/*height: 420px;*/
	}
	.hero-title {
		font-size: 30px;
	}
	.section-title {
		font-size: 26px;
	}
	.widget-padded .widget-wrap.wrap-extra-pad {
		padding: 80px 0;
	}
	.section-title-wrap {
		margin-bottom: 30px;
	}
	.client-list img {
		max-height: 35px;
	}
}
/* Admin Bar */
@media (max-width: 782px) {
	.admin-bar #page {
		padding-top: 46px;
		margin-top: -46px;
	}
}

/**
* Page Specific **/

/* 40th anniversary */
.elementor-page-179866 .member-tile h4 {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    color: #666;
}
.elementor-page-179866 .member-tile .img-grayscale {
	object-fit: cover;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	margin-bottom: 20px;
}

/** Event specific styling **/
.post-189229 .tribe-tickets-left {
	display: none !important;
}