@font-face {
	font-family: Oswald;
	src: url(../fonts/Oswald/Oswald-VariableFont_wght.ttf);
  }

:root{
--background-color-primary: #000;
--background-color-secondary: #020202; /*#262626;*/
--background-color-tertiary: #0f0f0f; /* #313030; */
--text-color-primary: #adadad;
--text-color-secondary: #bababa;
--text-color-headings: #fff;
--text-color-link: #008080;
--text-color-link-hover: #00AEAE;
--border-color: #7c7c7c; /* #3e3e3e; */
}

.logo canvas {
border-radius: 200px;
outline: var(--text-color-primary) 3px solid;
}

/*
.jumbotron{
background-image: url("../img/bckg/header.png");
background-repeat:no-repeat;
background-position:50% 20%;
}
*/

.h_iframe {
  height: 100%;
  width: 100%;
}

.h_iframe iframe {
  width: 100%;
  height: 100%;
}

.imgcontainer{
width: 100%;
height: auto;
display: block;
}

img {
	height: auto;
	max-width: 100%;
  }

.jumbotron{
	background-color: var(--background-color-primary); /*#d3d3d3;*/
	border: 1px solid var(--text-color-primary);
	border-radius: 10px;
	padding: 15px;
}

.carousel-indicators li {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  border: 1px solid black;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 14px;
  height: 14px;
  margin: 0;
  background-color: black;
}

body.pages{
	/*background-image: url("../img/bckg/header.png");*/
	background-color: var(--background-color-secondary); /*#e0e0e0;*/
	color: var(--text-color-primary);
}
/* up to here */

body {
  background-color: var(--background-color-primary); /*#f2f2f2;*/
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 16px;
	color: var(--text-color-primary);
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
	color: var(--text-color-secondary);
}

/* Paragraph & Typographic */
p {
  font-family: 'Oswald', sans-serif;
  line-height: 28px;
  margin-bottom: 25px;
}

.centered {
  text-align: center;
}

/* Links */
a {
	color: var(--text-color-link);
  word-wrap: break-word;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -ms-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--text-color-link-hover);
  text-decoration: none;
  outline: 0;
}

a:before,
a:after {
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -ms-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}

hr {
  display: block;
  height: 1px;
  border: 0;
	border-top: 1px solid var(--text-color-secondary);
  margin: 1em 0;
  padding: 0;
}

li{
  text-align:left;
}

table, th{
  border: 1px solid black;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  color: #333;
  text-align: center;
}

td{
  border: 1px solid black;
  font-family: 'Oswald', sans-serif;
  font-weight: 350;
  font-size: 20px;
  color: #333;
  text-align: left;
  text-indent: 40px;
}

/* ==========================================================================
   Wrap Sections
   ========================================================================== */

#headerwrap {
	/*background: url(../imgs/bckg/...) no-repeat center top;*/
	margin-top: 0px;
	padding-top: 20px;
	text-align: left;
	background-attachment: relative;
	background-position: center center;
	max-width:100%;
	min-height: 100vh;
	/*height:auto;*/

  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#headerwrap h1 {
	margin-top: 150px;
	color: gray20;
  font-family: 'Oswald', sans-serif;
	font-size: 50px;
	font-weight: 700;
}

#headerwrap h2 {
	color: gray20;
  font-family: 'Oswald', sans-serif;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 2px;
}

#headerwrap h3 {
	color: gray20;
	font-size: 30px;
	font-weight: 100;
  font-family: 'Oswald', sans-serif;
	/*font-style: oblique;*/
}

#headerwrap .logo {
	text-align: center;
	margin-left: 20px;
	margin-top: 20px;
}

.sectionwrap {
	margin-top: 30px;
	padding-top: 30px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	min-height: 50vh;

  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Footer Wrap */

#footer {
	background: rgba(2, 2, 2, 0.7); /*var(--background-color-secondary); */
	/*position: fixed;*/
	left: 0;
	bottom: 0;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	/*
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: var(--text-color-secondary);
	*/
}


#footer h3 {
	color: var(--text-color-secondary);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1px;
}

#footer i {
	font-size: 24px;
	color: var(--text-color-link);
  padding: 3px;
}

#footer i:hover{
	color: var(--text-color-link-hover);
}

#footer p {
	font-size: 20px;
	color: var(--text-color-secondary);
}

#footer img {
	text-align: center;
}


/* MENU CONF*/

.menu {
	position: fixed;
	right: -200px;
	width: 260px;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: left;
}

.menu.menu-open {
	right: 0px;
}

.menu-wrap {
	position: absolute;
	top: 0;
	left: 60px;
	background: var(--background-color-tertiary);
	width: 200px;
	height: 100%;
}

.menu h1.logo a {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 40px;
	text-transform: uppercase;
	color: var(--text-color-link);
	margin-top: 20px;
}

.menu h1.logo a:hover {
	color: var(--text-color-link-hover); /*#FA8D11;*/ /* #f85c37; */
}

.menu img.logo {
	margin: 20px 0;
	max-width: 160px;
}

.menu a {
	margin-left: 30px;
	color: var(--text-color-secondary);
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.menu a:hover {
	color: var(--text-color-primary);
}

.menu a:active {
	color: var(--text-color-primary);
}

.menu a > i {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	width: 25px;
	font-size: 14px;
	line-height: 40px;
	margin: 25px 2px;
}

.menu-close {
	cursor: pointer;
	display: block;
	position: absolute;
	font-size: 14px;
	color: var(--text-color-secondary);
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 20px;
	right: 20px;
	-webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.menu-close:hover {
	color: var(--text-color-primary);
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

/* Push the body after clicking the menu button */
.body-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.body-push-toright {
	left: 200px;
}

.body-push-toleft {
	left: -200px;
}

.menu,
.body-push {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

#menuToggle {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 11;
	display: block;
	text-align: center;
	font-size: 14px;
	color: var(--text-color-link);
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	background: rgba(0,0,0,0.25);
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

#menuToggle:hover {
	color: var(--text-color-link-hover);
	background: rgba(0,0,0,0.2);
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.zoom {
	/*
	padding: 50px;
	background-color: green;
	*/
	transition: transform .2s; /* Animation */
	/*
	width: 200px;
	height: 200px;
	*/
	margin: 0 auto;
  }

.zoom:hover {
transform: scale(1.01); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.link {
	color: var(--text-color-link);
	text-decoration: none;
}

a:hover .link{
	color: var(--text-color-link-hover);
	text-decoration: none;
}

.btn-custom {
	background-color: var(--text-color-link);
	border-radius: 5px;
}

a:hover .btn-custom{
	background-color: var(--text-color-link-hover);
}
