
/** 
/* 01. =webfonts and iconfonts
/* =================================================================== */

@import url("./fonts.css");
@import url("./font-awesome/css/font-awesome.min.css");


/** 
/* 02. =document setup
/* =================================================================== */

:root {
	--bckgdcol1:#ffffff;
	--bckgdcol2:#eeeeee;
	--bckgdcol3:#ffffff;
	--bckgdcol4:#eeeeee;
	--bckgdcol5:#ffffff;
	--bckgdcol6:#eeeeee;
	--bckgdcol7:#ffffff;

	/* Title underline, title point, loader, slides points */
	--titleUnderlineColor:#0077b6;
	--titleUnderLineHoverColor:#ade8ff;
	
	--navBandColor:#8fd4ff;
	--navBandColorTop:#ade8ff;
	--fontNavColor:#0077b6;
	--fontNavHoverColor:#023e8a;
	--currentNavUnderlineColor:#023e8a;
	
	--fontTitleColor:#0077b6;
	--fontTitleSlideColor:#0077b6;
	--slideBackgroundTextColor:#ffffffaa;
    
	--fontTextColor:#000000;
	--fontLinkColor:#023e8a;
	--fontLinkHoverColor:#0077b6;
	--fontLinkVisitedColor:#023e8a;
	
	--fontButtonColor:#0077b6;
	--fontButtonHoverColor:#0077b6;
	--buttonColor:#8fd4ff;
	--buttonHoverColor:#ade8ff;
	
	--tabHeaderColor:#8fd4ff;
	--tabBreakColor:#3197cf;
	--tabTrackColor:#D6EFFF;
	--tabChairColor:#FFDBC2;
	--tabColor1:#ffffff;
	--tabColor2:#eeeeee;
	--tabColor3:#FFF3EB;
}

/* Body 
---------------------------------------------------------------------- */
html,
body {
	height: 100%;
}

body {
	background: #AEAEAE;
	font: 16px/30px "merriweather-regular", serif;
	font-weight: normal;
	color: var(--fontTextColor);
}

/* links 
---------------------------------------------------------------------- */
a,
a:visited {
	outline: none;
	color: var(--fontLinkVisitedColor);
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
	color: var(--fontLinkHoverColor);
}

/* Typography
--------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "merriweather-regular", sans-serif;
	color: var(--fontTitleColor);
	font-style: bold;
	text-rendering: optimizeLegibility;
	margin: 18px 0 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
}

h1 {
	font-size: 30px;
	line-height: 36px;
	margin-top: 0;
	letter-spacing: -1px;
}

h2 {
	font-size: 24px;
	line-height: 30px;
}

h3 {
	font-size: 20px;
	line-height: 30px;
}

h4 {
	font-size: 17px;
	line-height: 30px;
}

h5 {
	font-size: 14px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h6 {
	font-size: 13px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

p {
	font: 16px/30px "merriweather-regular", serif;
	font-weight: normal;
	margin: 15px 0 15px 0;
}

p img {
	margin: 0;
}

p.lead {
	font: 20px/36px "merriweather-light", serif;
	color: var(--fontTextColor);
}

em {
	font: 16px/30px "merriweather-italic", serif;
	font-style: normal;
}

strong,
b {
	font: 16px/30px "merriweather-bold", serif;
	font-weight: normal;
}

small {
	font-size: 11px;
	line-height: inherit;
}

blockquote {
	margin: 18px 0px;
	padding-left: 40px;
	position: relative;
}

blockquote:before {
	content: "\201C";
	opacity: 0.45;
	font-size: 80px;
	line-height: 0px;
	margin: 0;
	font-family: arial, sans-serif;
	position: absolute;
	top: 30px;
	left: 0;
}

blockquote p {
	font-family: georgia, serif;
	font-style: italic;
	padding: 0;
	font-size: 18px;
	line-height: 30px;
}

blockquote cite {
	display: block;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
}

blockquote cite:before {
	content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited {
	color: var(--fontLinkVisitedColor);
	border: none;
}

pre,


pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}


abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

hr {
	border: solid #ff0000;
	border-width: 1px 0 0;
	clear: both;
	margin: 5px 0 12px;
	height: 0;
}

/* Lists  
--------------------------------------------------------------------- */
ul,
ol {
	margin-top: 15px;
	margin-bottom: 15px;
}

ul {
	list-style: disc;
	margin-left: 17px;
}

dl {
	margin: 0 0 15px 0;
}

dt {
	margin: 0;
	color: var(--titleUnderlineColor);
}

dd {
	margin: 0 0 0 20px;
}

/* Floated image  
--------------------------------------------------------------------- */
img.pull-right {
	margin: 12px 0px 0px 18px;
}

img.pull-left {
	margin: 12px 18px 0px 0px;
}

/* Style Placeholder Text  
--------------------------------------------------------------------- */
::-webkit-input-placeholder {
	color: #12151B;
}

:-moz-placeholder {

	/* Firefox 18- */
	color: #12151B;
}

::-moz-placeholder {

	/* Firefox 19+ */
	color: #12151B;
}

:-ms-input-placeholder {
	color: #12151B;
}

.placeholder {
	color: #12151B !important;
}

/* block grids default paddings 
--------------------------------------------------------------------- */
.bgrid {
	padding: 0 18px;
}
.bgrid {
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 5px;
}
.bgrid a:hover{
	cursor: pointer;
	color: var(--fontLinkHoverColor);
}
.bgrid:hover {
	background: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width:1024px) {
	.bgrid {
		padding: 0 18px 6px;
	}

}

@media only screen and (max-width:768px) {
	.bgrid {
		padding: 0 15px 6px;
	}

}

@media only screen and (max-width:600px) {
	.bgrid {
		padding: 0 10px 6px;
	}
	.bgrid:hover {
		background: inherit;
	}
}

@media only screen and (max-width:400px) {
	.bgrid {
		padding: 0 6px;
	}

}


.bgridcont {
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 5px;
}
.bgridcont a:hover{
	cursor: pointer;
	color: var(--fontLinkHoverColor);
}
.bgridcont:hover {
	background: rgba(0, 0, 0, 0.05);
}


.block_container
{
    text-align: center;
}
.bloc
{
	vertical-align: text-top;
    display: inline-block;
	padding-left:15px;
	padding-right:15px;
	padding-bottom: 30px;
}

/* 
/* 03. =Preloader
/* =================================================================== */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bckgdcol1);
	z-index: 9999999;
	height: 100%;
	width: 100%;
}

.no-js #preloader,
.oldie #preloader {
	display: none;
}

#loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
	background-color: var(--titleUnderlineColor);
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(120px);
	}

	50% {
		-webkit-transform: perspective(120px) rotateY(180deg);
	}

	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
	}

}

@keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	}

	50% {
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	}

	100% {
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}

}


/** 
/* 05. =theme common styles
/* =================================================================== */

/* more link */
.more {
	position: relative;
	left: 50%;
	bottom: -27px;
	margin-left: 250px;
}
/* media queries - #more */
@media only screen and (max-width:1024px) {
	.more {
		margin-left: -100px;
	}

}

/* hr */
hr {
	border: solid var(--titleUnderlineColor);
	border-width: 3px 0 0;
	width: 150px;
	margin: 11px 0 30px;
	height: 0;
	clear: both;
	text-align: left;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

/* for css animations */
.show {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}

/* sections */
.section-head h1 {
	font: 15px/30px "raleway-heavy", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--fontTitleColor);
	margin-bottom: 10px;
	margin-top: 18px;
}

.section-head h1 span {
	color: var(--titleUnderlineColor);
	position: relative;
	left: 3px;
}

.section-head p {
	font: 20px/36px "merriweather-light", serif;
	width: 95%;
}

.section-head:hover h1 + hr {
	border-color: var(--titleUnderLineHoverColor);
	width: 170px;
	text-align: left;
}

@media only screen and (max-width:768px) {
	.section-head {
		text-align: center;
	}

	.section-head p {
		font: 18px/36px "merriweather-light", serif;
		width: auto;
	}

	.section-head h1 + hr {
		margin-left: auto;
		margin-right: auto;
	}

}

@media only screen and (max-width:600px) {
	.section-head p {
		font: 17px/33px "merriweather-light", serif;
		width: auto;
	}

}

@media only screen and (max-width:400px) {
	.section-head [class*="column"] {
		padding: 0;
	}

}


/** 
/* 06. =header styles
/* =================================================================== */

header {
	background: var(--navBandColorTop);
	height: 66px;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 600;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;  

	
}
header.opaque {
	background: var(--navBandColor);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* header logo */
header .logo {
	float: left;
	width: auto;
	margin-left: 15px;
	margin-right: 30px;
	z-index: 600;    
	
	/* add position relative since z-index only applies to  
	elements that have been given an explicit position */
	position: relative;
}

header .logo a {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	width: 168px;
	height: 66px;
	background: url("../images/logos/logo2021.png") no-repeat center;
	background-size: 168px 66px;
}

@media only screen and (max-width:768px) {
	header {
		background: var(--navBandColorTop);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	header .row {
		width: 100%;
	}

	header .logo {
		margin-left: -30px;
	}

}

/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap,
#nav-wrap ul,
#nav-wrap li,
#nav-wrap a {
	margin: 0;
	padding: 0;
}

/* nav-wrap */
#nav-wrap {
	font: 13px "raleway-heavy", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	float: left;  
}

/* hide toggle button */
#nav-wrap > a {
	display: none;
}

ul#nav {
	min-height: 66px;
	display: inline-block;
	width: auto;  
	color:var(--fontNavColor);
	/* left align the menu */
	text-align: left;
}

ul#nav li {
	position: relative;
	list-style: none;
	display: inline-block;
	height: 66px;    
}

/* Links */
ul#nav li a {
	/* 14px padding top + 14px padding bottom + 38px line-height = 66px */
	display: block;
	padding: 14px 12px;
	line-height: 38px;
	text-decoration: none;
	text-align: left;
	color: var(--fontNavColor);
	position: relative;
	-moz-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

ul#nav li a:hover {
	color: var(--fontNavHoverColor);
}

ul#nav li a:active {
	background-color: transparent !important;
}

ul#nav li.current a {
	color: var(--fontNavHoverColor);
}

ul#nav li.current a:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 40px;
	height: 2px;
	margin-left: -23px;
	background-color: var(--currentNavUnderlineColor);
	content: '\0020';
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#dropdown{
  color: var(--fontNavColor);
  background: var(--navBandColorTop);
}


ul#nav .dropdown-content {
  display: none;
  z-index: 1;
  position:absolute;
  padding-bottom: 20px;
  margin:0;
  top: 50px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;  
  
}

ul#nav .dropdown-content.opaque {
	background: var(--navBandColor);
}

ul#nav .dropdown-content li {
	margin:0;
	height: 10px;
	}

ul#nav .dropdown-content a:hover {
	color: var(--fontNavHoverColor);
}

ul#nav .dropdown-li:hover .dropdown-content {
  display: block;
}

/* mobile navigation 
--------------------------------------------------------------------- */
@media only screen and (max-width:1120px) {
	#nav-wrap {
		z-index: 700;
		display: block;
		width: 100%;
		float: none;
		position: absolute;
		top: 0;
		right: 0;
	}

	/* mobile-btn and toggle-btn */
	#nav-wrap > a {
		border: none;
		color: var(--fontNavColor);
		height: 40px;
		min-width: 40px;
		font-size: 12px;
		text-align: left;
		float: right;
		display: block;
		padding: 0;
		position: relative;
		top: 13px;
		right: 20px;
	}
	
		/* mobile-btn and toggle-btn */
	#dropdown {
		background: black;
	}

	#nav-wrap > a:hover .menu-icon {
		background: #ff0000;
	}

	#nav-wrap .menu-icon {
		display: inline-block;
		width: 24px;
		height: 3px;
		margin-top: -3px;
		position: absolute;
		right: 8px;
		top: 50%;
		bottom: auto;
		left: auto;
		background: var(--titleUnderlineColor);
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		font: 0/0 a;
		text-shadow: none;
		color: transparent;
	}

	#nav-wrap .menu-icon:before,
	#nav-wrap .menu-icon:after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		background-color: inherit;
		left: 0;
	}

	#nav-wrap .menu-icon:before {
		bottom: 8px;
	}

	#nav-wrap .menu-icon:after {
		top: 8px;
	}

	/* dropdown nav */
	#nav-wrap ul#nav {
		background: black;
		padding: 54px 45px 60px 45px;
		margin: 0;
		height: auto;
		display: none;
		clear: both;
		width: 100%;
		float: none;
		position: absolute;
		top: 66px;
		right: 0;
	}

	#nav-wrap ul#nav > li {
		display: block;
		float: none;
		height: auto;
		text-align: left;
		border-bottom: 1px dotted rgba(200, 200, 200, 0.1);
		padding: 6px 0;
	}

	#nav-wrap ul#nav > li:first-child {
		border-top: 1px dotted rgba(200, 200, 200, 0.1);
	}

	#nav-wrap ul#nav li a {
		display: block;
		width: auto;
		padding: 0;
		color: var(--fontLinkColor);
		padding: 12px 0;
		line-height: 16px;
		border: none;
	}

	#nav-wrap ul#nav li a:hover {
		color: var(--fontNavHoverColor);
	}

	#nav-wrap ul#nav li.current > a {
		background: none;
		color: var(--fontLinkColor);
	}

	#nav-wrap ul#nav li.current > a:after {
		display: none;
	}

	#nav-wrap a.mobile-btn {
		display: none;
	}

	.js #nav-wrap a#toggle-btn {
		display: block;
	}

	/* if js is disabled */
	.no-js #nav-wrap:not(:target) > a:first-of-type,
	.no-js #nav-wrap:target > a:last-of-type {
		display: block;
	}

	.no-js #nav-wrap:target ul#nav {
		display: block;
	}

}

/* make sure the menu is visible on larger screens
--------------------------------------------------------------------- */
@media only screen and (min-width:1120px) {
	#nav-wrap ul#nav {
		display: block !important;
	}

}


/* 
/* 07. =intro section
/* =================================================================== */

#intro {
	background: var(--bckgdcol1);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 630px;
	width: 100%;
	text-align: left;
	position: relative;
	border-bottom: 1px solid #15191d;
	padding-top:22px
}

/* intro slider */
#intro-slider {
	margin: 45px 0 15px;
}

#intro-slider .slides .flex-caption {
	margin: 0 35% 0 30px;
}

#intro-slider .slides .flex-caption h1 {
	background: var(--slideBackgroundTextColor);
	font: 49px/1.3 "merriweather-bold", sans-serif;
	letter-spacing: -1px;
	padding-bottom: 24px;
	color: var(--fontTitleSlideColor);
	text-shadow: 0 1px 20px rgba(0, 0, 0, 0.6);
	position: relative;    

	/* for css animations */
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}

#intro-slider .slides .flex-caption h1::after {
	display: block;
	background-color: var(--titleUnderlineColor);
	width: 100px;
	height: 3px;
	content: '\0020';
	position: absolute;
	left: 0;
	bottom: 0;
}

#intro-slider .slides .flex-caption h3 {
	background: var(--slideBackgroundTextColor);
	font: 25px/1.9 "merriweather-bold", sans-serif;
	color: var(--fontTitleSlideColor);
	text-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
	width: 85%;
	margin-top: 24px;    

	/* for css animations */
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}

#intro-slider .slides .flex-caption h1 span,
#intro-slider .slides .flex-caption h1 a,
#intro-slider .slides .flex-caption h3 a{
    color: var(--fontLinkColor);/*rgba(237, 155, 74, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
	display: inline-block;
    text-shadow: 0 0px 0px rgba(174, 174, 174, 0.8);
}
#intro-slider .slides .flex-caption h1 a:hover,
#intro-slider .slides .flex-caption h3 a:hover {
    color: var(--fontLinkHoverColor); /*rgba(237, 155, 74, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
}
/* for oldIE - IE9 */
.oldie #intro-slider .slides .flex-caption h1 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}

.oldie #intro-slider .slides .flex-caption h3 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}

/* media queries:  
/* #intro / .intro-contert / #intro-slider */

@media only screen and (max-width:1200px) {
	#intro-slider .slides .flex-caption h1 {
		font: 44px/1.3 "merriweather-bold", sans-serif;
	}

}

@media only screen and (max-width:1024px) {

	#intro-slider {
		text-align: center;
		margin: 45px 0 15px;
	}

	#intro-slider .slides .flex-caption {
		margin: 0 auto;
		max-width: 550px;
		width: 90%;
	}

	#intro-slider .slides .flex-caption h1 {
		font: 43px/1.3 "merriweather-bold", sans-serif;
	}

	#intro-slider .slides .flex-caption h1::after {
		margin-left: -50px;
		left: 50%;
	}

	#intro-slider .slides .flex-caption h3 {
		font: 16px/1.9 "merriweather-light", sans-serif;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

}

@media only screen and (max-width:768px) {
	#intro {
		min-height: auto;
	}

	#intro-slider {
		margin: 84px 0 36px;
	}

	#intro-slider .slides .flex-caption {
		margin: 0 40px 0;
		width: auto;
	}

	#intro-slider .slides .flex-caption h1 {
		font: 41px/1.3 "merriweather-bold", sans-serif;
	}

	#intro-slider .slides .flex-caption h3 {
		font: 16px/1.9 "merriweather-light", sans-serif;
		width: 85%;
	}

}

@media only screen and (max-width:600px) {
	.intro-content {
		padding-bottom: 72px;
	}

	#intro-slider {
		margin: 45px 0 15px;
	}

	#intro-slider .slides .flex-caption {
		margin: 0 35px 0;
		width: auto;
	}

	#intro-slider .slides .flex-caption h1 {
		font: 39px/1.3 "merriweather-bold", sans-serif;
	}

	#intro-slider .slides .flex-caption h3 {
		font: 15px/1.9 "merriweather-light", sans-serif;
		width: 90%;
	}

}

@media only screen and (max-width:480px) {

	#intro-slider {
		margin: 45px 0 15px;
	}

	#intro-slider .slides .flex-caption {
		margin: 0 20px 0;
		width: auto;
	}

	#intro-slider .slides .flex-caption h1 {
		font: 36px/1.3 "merriweather-bold", sans-serif;
	}

	#intro-slider .slides .flex-caption h3 {
		width: auto;
	}

}

@media only screen and (max-width:400px) {
	.intro-content {
		padding-bottom: 54px;
	}

	#intro-slider {
		margin: 45px 0 15px;
	}

	#intro-slider .slides .flex-caption {
		margin: 0;
	}

	#intro-slider .slides .flex-caption h1 {
		font: 30px/1.3 "merriweather-bold", sans-serif;
	}

}

/* control nav */
#intro .flex-control-nav {
	width: 100%;
	text-align: left;
	display: block;
	position: relative;
	bottom: 0;
	left: 30px;
	z-index: 500;
	margin-top: 10px;
}

#intro .flex-control-nav li {
	margin: 0 6px;
	display: inline-block;
	zoom: 1;
}

#intro .flex-control-paging li a {
	width: 12px;
	height: 12px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	border-radius: 50%;
	background: #FFFFFF;
}

#intro .flex-control-paging li a:hover {
	background: var(--fontLinkHoverColor);
}

#intro .flex-control-paging li a.flex-active {
	background: var(--titleUnderlineColor);
	cursor: default;
}

/* media queries - .flex-control-nav */
@media only screen and (max-width:1024px) {
	#intro .flex-control-nav {
		text-align: center;
		left: 0;
	}

}

/** 
/* 08. =scope styles
/* =================================================================== */

#scope {
	background: var(--bckgdcol2);
	padding-top: 10px;
	padding-bottom: 30px;
	border-bottom: 1px solid #15191d;  
}

#scope p,ul  {
	font-size: 15px;
	color: var(--fontTextColor);
}
#scope .row.items {
	max-width: 1260px;
	margin-top: 24px;
}

/* media queries - portfolio */

@media only screen and (max-width:1300px) {
	#scope .row.items {
		width: 100%;
		padding: 0;
	}

	#scope .row.items .columns {
		padding: 0;
	}

}

/** 
/* 08. =Program styles
/* =================================================================== */

#program {
	background: var(--bckgdcol3);
	padding-top: 10px;
	padding-bottom: 15px;
	border-bottom: 1px solid #15191d;  
}
#program h3
{
	font-size: 16px;
	line-height: 16px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-transform: none;
	letter-spacing: 1px;
}

#program table {
  margin-bottom:10px;
  }

#program .fullline {
 width: 100%;
}
#program .nofullline {
 width: 98%;
 margin-left:2%;
}

#program .halfline {
 width: 50%;
}
#program .head {
	 text-align:center;
	 padding: 2px;
	 padding-top: 2px;
	 padding-bottom: 2px;
}

#program .col1 {
 background-color: var(--tabColor1);
}
#program .col2 {
 background-color: var(--tabColor2);
}
#program .col1discussion {
 background-color: var(--tabColor1);
}
#program .col2discussion {
 background-color: var(--tabColor2);
}
#program .col3 {
 background-color: var(--tabColor3);
}
#program .colChair {
 background-color: var(--tabChairColor);
}
#program .col1:hover {background-color: var(--tabColor3);}
#program .col2:hover {background-color: var(--tabColor3);}
/* var(--bckgdcol2)
/* #program tr:nth-child(even){background-color: #34364b;} */
/* #program tr:nth-child(odd){background-color: #2a2b3c;} */
/* #program tr:hover {background-color: #3f415a;} */
	
#program td {
	padding: 5px;
	padding-top: 8px;
	padding-bottom: 8px;
	/* border: 1px solid; */
	/* border-color:	var(--tabBorderColor); */
}

#program .chair{
	width:100%;
	text-align: left;
	padding: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#program .name{
	width:21%;
	text-align: right;
}
#program .company{
	width:15%;
	text-align: right;
}

#program .time{
	width:14%;
	text-align: left;
}

#program .title{
	width:57%;
	text-align: left;
}

#program .tabheader {
	background-color: var(--tabHeaderColor);
	/* font-family: "merriweather-bold"; */
}

#program .break {
	background-color: var(--tabBreakColor);
	/* font-family: "merriweather-bold"; */
}
#program .track {
	background-color: var(--tabTrackColor);
	/* font-family: "merriweather-bold"; */
}
	
/* Popup Modal 
/* ------------------------------------------------------------------ */
.abst{
	max-width: 800px;
}
.short{
	max-width: 550px;
}

.popup-modal {
	background: #FFFFFF;
	position: relative;
	margin: 0 auto;  	
}

.popup-modal .media {
	position: relative;
}

.popup-modal img {
	vertical-align: bottom;
}

/* description */
.popup-modal .description-box {
	padding: 6px 36px 30px;
}
.popup-modal .description-box h3 {
	color: var(--fontTitleColor);
}
	
.popup-modal .description-box h4 {
	font: 15px/24px "raleway-heavy", sans-serif;
	color: var(--fontTitleColor);
}

.popup-modal .description-box p {
	font: 14px/24px "merriweather-light", serif;
	color: #444444;
	margin-bottom: 12px;
}
.popup-modal .description-box a {
	color: #008156;
}
.popup-modal .description-box a:hover {
	color: var(--fontLinkHoverColor);
}
.popup-modal .description-box li{
	font: 14px/24px "merriweather-light", serif;
	color: #444444;
	margin-bottom: 12px;
	}

/* categories */
.popup-modal .categories {
	font: 11px/18px "raleway-heavy", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	text-align: left;
	color: rgba(0, 0, 0, 0.5);
}

/* link box */
.popup-modal .link-box {
	width: 100%;
	overflow: hidden;
	background: #eeeeee;
}

.popup-modal .link-box a {
	font: 12px/60px "raleway-heavy", sans-serif;
	color: var(--fontLinkColor);
	text-transform: uppercase;
	letter-spacing: 3px;
	cursor: pointer;
	display: block;
	text-align: center;
	float: left;
	width: 50%;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.popup-modal .link-box a:first-child {
	border-right: 1px solid rgba(200, 200, 200, 0.1);
}

.popup-modal .link-box a:hover {
	background: var(--buttonColor);
	color: var(--fontLinkHoverColor);
	border: none;
}

/* media queries - popup-modal */

@media only screen and (max-width:600px) {
	.popup-modal {
		width: auto;
		margin: 0 20px;
	}

}

/* transition effect for modal popup
/* ------------------------------------------------------------------ */

/* overlay at start */
.mfp-fade.mfp-bg {
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	filter: alpha(opacity=80);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	opacity: 0.8;
	zoom: 1;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* content animate in */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
/** 
/* 12. =registration
/* ================================================== */
#registration {
	background: var(--bckgdcol4);
	padding-top: 10px;
	padding-bottom: 30px;
	overflow: hidden;
	border-bottom: 1px solid #15191d;  
}

#registration th{
	padding:0px 20px;
	text-align:left;
	font-weight:normal;
}

/* team members
-------------------------------------------------------------- */


#team {
	background: var(--bckgdcol5);
	padding-top: 5px;
	padding-bottom: 10px;
	border-bottom: 1px solid #15191d;  
}

#team-wrapper {
	margin: 0 auto;
}

#team-wrapper .member {
	margin-bottom: 24px;
	margin-top: 12px;
}

#team-wrapper .member h3 {
	line-height: 18px;
	margin-bottom: 0;
}

#team-wrapper .member span {
	position: relative;
	font-size: 13px;
	line-height: 12px;
	color: var(--fontTextColor);
}

#team-wrapper .member p {
	line-height: 20px;
	font-size: 15.5px;
}

#team-wrapper .member-pic {
	position: relative;
	line-height: 1;
	overflow: hidden;
	background: #FFFFFF;
}

#team-wrapper .member-pic img {
	display: flex;
    justify-content: center;
	vertical-align: bottom;
	text-align: center;
}

#team-wrapper .mask {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(100, 100, 100, 0.5);
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#team-wrapper .member:hover .mask {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}

#team-wrapper .member-social {
	font-size: 16px;
	font-weight: normal;
	line-height: 12px;
	color: #969696;
	margin: 0;
	padding: 0;
}

#team-wrapper .member-social li {
	display: inline-block;
	margin-right: 15px;
}

#team-wrapper .member-social li a {
	color: var(--fontLinkColor);
}

/* media queries:  
/* .team / #team-wrapper */

@media only screen and (max-width:1024px) {
	#team-wrapper .member-social li {
		margin-right: 10px;
	}

}

@media only screen and (max-width:768px) {
	#team-wrapper .member p {
		font-size: 14px;
		line-height: 20px;
	}

}

@media only screen and (max-width:600px) {
	#team-wrapper .member-pic {
		width: 80px;
		height: 80px;
		float: left;
		margin-right: 30px;
		position: relative;
		top: 6px;
	}

	#team-wrapper .member-pic .mask {
		display: none;
	}

	#team-wrapper .member-name + p {
		clear: both;
		margin-top: 30px;
	}

	#team-wrapper .member p {
		font-size: 16px;
		line-height: 20px;
	}

}


/** 
/* 12. =contact
/* =================================================================== */

#contact {
	background: var(--bckgdcol6);
	padding-top: 10px;
	padding-bottom: 30px;
	overflow: hidden;
	border-bottom: 1px solid #15191d;  
}

#contact .a:hover{
	color: var(--fontLinkHoverColor);
}

#contact button{
	background: var(--buttonColor);
	color: var(--fontButtonColor);
	margin-left:10%;
	width:200px;
	font: 15px/30px "merriweather-bold", sans-serif;
	height: 60px;
	display: inline-block;
	padding: 15px 30px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
#contact button:hover{
	background:var(--buttonHoverColor);
	color: var(--fontButtonHoverColor);
}

/* MAP 
------------------------------------------- */
.map {
	text-align: right;
}
.map iframe{
	width:500px;
	height:400px;
	border: 0;
	overflow:hidden;
	overflow-x:hidden;
	overflow-y:hidden;
}
@media only screen and (max-width:1024px) {
	.map iframe{
		width:500px;
		height:300px;
	}
}

@media only screen and (max-width:768px) {
	.map iframe{
		width:300px;
		height:200px;
	}
}

@media only screen and (max-width:600px) {
	.map iframe{
		width:300px;
		height:200px;
	}
}

@media only screen and (max-width:400px) {
	.map iframe{
		width:200px;
		height:100px;
	}
}

/** 
/* 13. =footer
/* =================================================================== */

footer {
	background: var(--bckgdcol7);
	padding-top: 60px;
	padding-bottom: 24px;
	position: relative;
	color: var(--fontTextColor);
}

footer a,
footer a:visited {
	color: var(--fontLinkVisitedColor);
}

footer a:hover,
footer a:focus {
	color: var(--fontLinkHoverColor);
}

/* copyright */
footer .copyright {
	clear: both;
	margin: 15px 0;
	padding: 24px 18px 6px 18px;
	font: 14px/24px "raleway-medium", sans-serif;
	letter-spacing: .5px;
	text-align: center;
	color: var(--fontTextColor);
}

footer .copyright li {
	display: inline-block;
	padding: 0 5px;
}

/* go to top button 
------------------------------------------------------------------ */
#go-top {
	position: absolute;
	top: -21px;
	left: 50%;
	z-index: 600;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	height: 54px;
	width: 200px;
	margin-left: -100px;
	background: var(--buttonColor);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
	color: var(--fontButtonColor);
	text-align: center;
	border-radius: 3px;
	font: 12px/54px "merriweather-bold", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#go-top a:hover {
	background: var(--buttonHoverColor);
	color: var(--fontButtonHoverColor);
}
#go-top a i {
	margin-left: 6px;
	position: relative;
	right: -5px;
}
