
*, *::before, *::after {box-sizing: border-box;}
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, small, strike, strong, sub, sup, b, u, i, center, ol, ul, li,
fieldset, form, label, table, caption, article, aside, canvas, figure, footer, header, menu, nav {
    margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;}
body { min-height: 100vh; scroll-behavior: smooth; text-rendering: optimizeSpeed; line-height: 1.4; font-family: 'Raleway', sans-serif; font-size: 1.1em; font-weight:400;}
:focus {outline: 0;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: '';content: none;}
table {border-collapse: collapse; border-spacing: 0;}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {-webkit-appearance: none;-moz-appearance: none;}
input[type=search] {-webkit-appearance: none;-moz-appearance: none;-webkit-box-sizing: content-box;-moz-box-sizing: content-box; box-sizing: content-box;}
textarea {overflow: auto;vertical-align: top;resize: vertical;}
ul, ol {line-height: 1.6em;}
header{
    position: relative;
    width: 100%;
	background-color:#fff;
}

.logowrapper{
    position: relative;
    width: 100%;
}
.logo{
	display:block;
	float:left;
	padding-top:9px;
	padding-left:9px;
}
.logo a {
	font-family: 'Raleway', serif;
	font-size:2.0em;
	font-weight:900;
	text-decoration:none;
	color:#fe1b50;
	line-height:0px;
}
.logo_mobile{
	display:none;
}
img {
	width:100%;
	height:auto;
}
@media only screen and (max-width: 1023px) {
	.logo{
		display:none;
	}
	.logo_mobile{
		display:block;
		position:fixed;
		top:10px;
		left:10px;
		z-index:1001;
	}
}
.logo_slika {
    height: 40px;
    width: auto;
	line-height:0px;
}
.logo_slika_mobile{
    height: 32px;
	width:auto;
}
.navwrapper {
	width:100%;
	height:60px;
	position:fixed;
	z-index:1000;
}
#navbar {
	display: block;
	z-index: 1001;
	background-color:#0B0C10;
}
#navbar input {
	display: none;
}
#navbar span {
	display:none;
}
#menu {
	overflow: hidden;
	z-index:1000;
	width:100%;
	position:relative;
    max-width: 1024px;
    margin: auto;
	text-align: center;
}
#menu ul {
    overflow: hidden;
    display: block;
	background-color:#0B0C10;
    text-align: right;
}
#menu li {
    display: inline-block;
    text-align: center;
    float: none;
}
  
#menu li a {
    display: block;
    color: #FFF;
    text-align: center;
    font-size: 1.1em;
    font-weight: 400;
    padding: 16px 20px 14px;
    text-decoration: none;
	text-transform:uppercase;
	letter-spacing:0.05em;
	color:#66FCF1;
	background-color:#0B0C10;
}
#menu li a:hover {
	color:#0B0C10;
	background-color:#66FCF1;
}

@media only screen and (max-width: 1023px) {
	.navwrapper {
		background-color:#0B0C10;
		position:fixed;
		z-index:999;
		height:50px;
	}
	#navbar {
		display: block;
		position: fixed;
		top: 14px;
		right: 14px;
		z-index: 1001;
		-webkit-user-select: none;
		user-select: none;
	}
	#navbar input {
		display: block;
		width: 50px;
		height: 50px;
		position: absolute;
		top: -10px;
		left: -10px;
		cursor: pointer;
		opacity: 0; /* hide this */
		z-index: 2; /* and place it over the hamburger */
		-webkit-touch-callout: none;
	}

	#navbar span {
	  display: block;
	  width: 33px;
	  height: 4px;
	  margin-bottom: 5px;
	  position: relative;
	  
	  background: #FFF;
	  border-radius: 3px;
	  
	  z-index: 1;
	  
	  transform-origin: 4px 0px;
	  
	  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
				  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
				  opacity 0.55s ease;
	}
	#navbar span:first-child {
	  transform-origin: 0% 0%;
	}
	#navbar span:nth-last-child(2) {
	  transform-origin: 0% 100%;
	}
	/* 
	 * Transform all the slices of hamburger
	 * into a crossmark.
	 */
	#navbar input:checked ~ span {
	  opacity: 1;
	  transform: rotate(45deg) translate(-2px, -1px);
	  background: #FFF;
	}

	/*
	 * But let's hide the middle one.
	 */
	#navbar input:checked ~ span:nth-last-child(3) {
	  opacity: 0;
	  transform: rotate(0deg) scale(0.2, 0.2);
	}

	/*
	 * Ohyeah and the last one should go the other direction
	 */
	#navbar input:checked ~ span:nth-last-child(2) {
	  transform: rotate(-45deg) translate(0, -1px);
	}
	#menu {
		overflow:auto;
		position: absolute;
		width: 350px;
		margin: 9px 0 0 60px;
		background: #eee;
		-webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
		box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);  
		-webkit-font-smoothing: antialiased;
		transform-origin: 0% 0%;
		transform: translate(0%, 0);
		transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	}
	#menu ul {
		width:100%;
		overflow: hidden;
		background-color: #FFF;
		text-align: center;
	}
	#menu li {
		display: block;
		text-align: left;
		float: none;
	}
	#menu li a {
		color:#FFF;
	}
	#navbar input:checked ~ #menu {
	  transform-origin: 0% 0%;
	  transform: translate(-103%, 0);
	  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	}
	#menu img {
		max-width:48px;
	}
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.pagewrapper{
    position: relative;
    width: 100%;
	min-height:100vh;
}
.contentwrapper{
    position: relative;
    width: 100%;
	padding-top:50px;
}
.row{
    position: relative;
    width: 100%;
	padding-top:40px;
	padding-bottom:40px;
}
.row_home {
	position: relative;
    width: 100%;
	padding-bottom:40px;
}

.inner_single {
    position: relative;
    max-width: 996px;
    margin: auto;
}
.inner_narrow {
    position: relative;
    max-width: 720px;
    margin: auto;
}
.inner_wide{
	position: relative;
    max-width: 1600px;
    margin: auto;
}
@media only screen and (max-width: 1232px) {
	.contentwrapper{
		padding-top:44px;
	}
	.inner_single, .inner_narrow {
		width: 94%;
	}
}
@media only screen and (max-width: 1632px) {
	.inner_wide {
		width: 94%;
	}
}
@media only screen and (max-width: 768px) {
	.row{
		padding-top:24px;
		padding-bottom:16px;
	}
	.row_home {
		padding-bottom:16px;
	}
}


.inner_half {
	position:relative;
    width: 47.5%;
    float: left;
}
.inner_half:first-child {
    margin-right: 5%;
}
.inner_third {
	position:relative;
    width: 30%;
    margin-right: 5%;
    float: left;
	padding-bottom:24px;
}
.inner_third:last-child {
    margin-right: 0;
}
.inner_quarter {
	position:relative;
    width: 21.25%;
    margin-right: 5%;
    float: left;
}
.inner_quarter:last-child {
    margin-right: 0;
}
.inner_75 {
	width:70%;
	float:left;
}
.inner_25 {
	width:25%;
	float:right;
	text-align:center;
}
@media only screen and (max-width: 1023px) {
	.inner_half {
		float:none;
		width: 100%;
		max-width:768px;
		margin:auto;
	}
	.inner_half:last-child {
		float:none;
		width:100%;
		max-width:768px;
		margin: auto;
		margin-top: 8px;
	}
	.inner_third {
		max-width:400px;
		width: 100%;
		margin:auto;
		float:none;
		padding-bottom:24px;
	}
	.inner_quarter {
		width: 100%;
		margin:0;
	}
	.inner_third:last-child, .inner_quarter:last-child  {
		margin: auto;
	}
	.inner_75 {
		width:100%;
		float:none;
		margin:auto;
	}
	.inner_25 {
		width:100%;
		clear:right;
		margin:auto;
	}
}
footer {
    position: relative;
	bottom:0px;
    width: 100%;
    background-color: #0B0C10;
    color: #FFF;
    height: auto;
    overflow: auto;
	margin-top:64px;
}
.footer_copyright{
	width:100%;
	border-top: thin solid #aaa;
	text-align:center;
	padding-top:44px;
	padding-bottom:44px;
}




/*Titles, font styles*/
h1 {
	font-family: 'Raleway', sans-serif;
	font-size:2.5em;
	font-weight:900;
	line-height:1.2em;
	color:#45A29E;
	padding-bottom:16px;
	padding-top:8px;
	letter-spacing:0.05em;
	text-align:center;
}

h2 {
	font-family: 'Raleway', sans-serif;
	font-size:2.2em;
	font-weight:900;
	line-height:1.2em;
	padding-bottom:8px;
	padding-top:8px;
	color:#c301e2;
	letter-spacing:0.05em;
	text-align:center;
	/*
	color:#66FCF1; - blue
	color:#45A29E; - vivid blue
	color:#250056; - dark magenta
	color:#5c00b1; - magenta
	color:#c301e2; - vivid magenta
	#337d7e; 
	
	*/
}
h2 span {
	font-weight:400;
}
h3 {
	font-size:1.5em;
	font-weight:900;
	letter-spacing:0.02em;
	line-height:1.2em;
	padding-bottom:16px;
	padding-top:8px;
	color:#0B0C10;
	text-transform:uppercase;
	letter-spacing:0.03em;
	text-align:center;
}
h4 {
	font-size:1.5em;
	font-weight:900;
	line-height:1.2em;
	padding-bottom:16px;
	padding-top:8px;
}
h5 {
	font-size:1.4em;
	font-weight:900;
	line-height:1.2em;
	padding-bottom:16px;
	padding-top:8px;
}
h6 {
	font-size:1.5em;
	font-weight:900;
	line-height:1.2em;
	padding-bottom:16px;
	padding-top:8px;
}
p {
	font-size:1.1em;
	padding-bottom:16px;
	line-height:1.6em;
}
p strong {
	font-weight:900;
	letter-spacing:0.02em;
}
.poudarek {
	font-size:1.4em;
	text-align:center;
	letter-spacing:0.04em;
	line-height:1.4em;
}
a {
	color:#45A29E;
	font-weight:900;
	text-decoration:none;
	letter-spacing:0.04em;
}
@media only screen and (max-width: 768px) {
	/*Titles, font styles*/
	h1 {
		font-size:1.7em;
	}
	h2 {
		font-size:1.5em;
	}
	h1, h2, h3, h4, h5, h6 {
		padding-bottom:12px;
		padding-top:4px;
	}
	p {
		padding-bottom:12px;
	}
	.poudarek {
		font-size:1.2em;
		text-align:center;
		letter-spacing:0.02em;
	}
}

.two_column {
  column-count: 2;
  column-gap: 40px;
}
@media only screen and (max-width: 768px) {
	.two_column {
	  column-count: 1;
	}
}
footer p {
	font-size:1em;
	color:#ddd;
	padding-bottom:0;
	line-height:1.3em;
}
footer .inner_half:last-child {
	text-align:right;
}
footer h3 {
	font-size:1.2em;
	color:#ddd;
	padding-bottom:8px;
	line-height:1.2em;
}
footer p strong {
	font-weight:900;
	letter-spacing:0.05em;
}
.footer_copyright p{
	text-align:center;
}
footer .inner_third:nth-of-type(1){
	text-align:left;
}
footer .inner_third:nth-of-type(2){
	text-align:center;
}
footer .inner_third:nth-of-type(3){
	text-align:right;
}
@media only screen and (max-width: 1023px) {
	footer .inner_third:nth-of-type(1){
		text-align:center;
	}
	footer .inner_third:nth-of-type(2){
		text-align:center;
	}
	footer .inner_third:nth-of-type(3){
		text-align:center;
	}
}

.contentwrapper ol {
	list-style-position: inside;
	list-style-type: decimal;
	padding-bottom:16px;
}
.contentwrapper ul {
	list-style-position: inside;
	list-style-type: disc;
	padding-bottom:16px;
	font-size:1.1em;
}
.contentwrapper ul li strong {
	font-weight:900;
}

.data-insert {
	width:100%;
	position:relative; 
	float:left;
	margin:0 0 16px 0;
	display:inline-block;
}
.data-insert input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	font-size:16px;
	width:100%;
	display:inline-block;
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	line-height:16px;
	border: 1px solid #0b0c10;
	border-radius: 16px;
	-webkit-transition:0.2s ease all;
	-moz-transition:0.2s ease all; 
	-ms-transition:0.2s ease all; 
	-o-transition:0.2s ease all; 
	transition:0.2s ease all; 
}
.data-insert input[type=text] {
	font-weight: 300;
    padding: 6px 3%;
	color: #333333;	
}
.data-insert input:focus { 
	outline:none;
	border: 1px solid #c301e2;

}

.data-insert input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	width:100%;
	height:auto;
	background-image:none;
	padding: 14px 12px 12px 12px;
	text-transform:uppercase;
	font-weight:800;
	font-size:16px;
	line-height:16px;
	letter-spacing:0.05em;
	display:block;
	color:#FFF;
	background-color:#337d7e;
	border: 1px solid #337d7e;
	border-radius: 16px;
	margin:auto;
	cursor: pointer;
}
.data-insert input[type="submit"]:hover {
	background-color:#FFF;
	color: #337d7e;
}


 /*=========  radio button   =============00*/
/* Customize the label (the container) */

.gumb-okvir {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 14px;
  color:#0b0c10;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.gumb-okvir input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -4px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border-radius: 3px;
  border:1px solid #333333;
  box-shadow: 3px 3px 3px 1px rgba(0,0,0,0.3);
}

/* On mouse-over, add a grey background color */
.gumb-okvir:hover input ~ .checkmark {
  background-color: #337d7e;
  
  
}

/* When the checkbox is checked, add a blue background */
.gumb-okvir input:checked ~ .checkmark {
  background-color: #fff;
  border-radius: 3px;
  border:1px solid #337d7e;
  
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.gumb-okvir input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.gumb-okvir .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #337d7e;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.label_p {
	display:inline;
	font-size: 14px;
	color:#0b0c10;
}
.label_a {
	font-size: 14px;
	color:#337d7e;
}
.label_a:hover {
	color:#13455e;
}

/* comment ======================================= */
textarea{
	outline:none;
	resize:none;
	font-family: 'Open Sans', sans-serif;
	font-size:16px;
	width:100%;
	height:120px;
	padding: 10px 3%;
	display:inline-block;
	border-radius:16px;
	border:1px solid #0b0c10;
}
textarea:focus{ 
	outline:none;
	border:1px solid #c301e2;
}


/***********  POSTS styles *************/
.hero_header {
	background: url(../images/hypersvet-hero-background.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	background-size:cover;
}
.featured_title {
	position:relative;
	width:100%;
}
.featured_title h1 {
	padding-top:48px;
	padding-bottom:48px;
	font-family: 'Raleway', sans-serif;
	font-size:2.7em;
	color:#66FCF1;
	text-align:center;
	text-transform:uppercase;
}
.featured_title h1 span{
	text-transform:lowercase;
}
.featured_title h2 {
	padding-top:48px;
	padding-bottom:48px;
	font-family: 'Raleway', sans-serif;
	font-size:2.4em;
	color:#66FCF1;
	text-align:center;
}
/*.featured_title a {
	text-transform:uppercase;
	font-weight:400;
	display:inline-block;
	text-align:center;
	padding:16px 20px;
	color:#66fcf1;
	border-radius:16px;
	border: thin solid #66fcf1;
	margin:0 auto 80px;
}*/
@media only screen and (max-width: 768px) {
	.featured_title h1 {
		padding-top:32px;
		padding-bottom:32px;
		font-size:2.0em;
	}
	.featured_title h1 {
		padding-top:32px;
		padding-bottom:32px;
		font-size:2.0em;
	}
}

.button_link {
	display:block;
	margin:auto;
	padding: 16px 18px;
	border: thin solid #66fcf1;
	border-radius:16px;
	font-family: 'Raleway', sans-serif;
	font-size:1.1em;
	font-weight:400;
	color:#66FCF1;
	text-transform:uppercase;
	text-align:center;
	background: url(../images/hypersvet-hero-background.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	background-size:cover;
}




/*paralax image*/
 .container {
	 max-width: 996px;
	 margin: 0 auto;
}
 .img-responsive {
	 display: block;
	 height: auto;
	 width: 100%;
	 max-width: 100%;
}
 .rounded {
	 border-radius: 4px;
}
 .parallax {
	 display: block;
	 height: auto;
	 position: relative;
	 width: auto;
}
 .parallax-content {
	 box-shadow: 10px 10px 20px rgba(69, 77, 93, .3);
	 height: auto;
	 transform: perspective(1800px);
	 transform-style: preserve-3d;
	 transition: all 0.4s ease;
	 width: 100%;
}
 .parallax-content:before {
	 content: "";
	 display: block;
	 height: 100%;
	 left: 0;
	 position: absolute;
	 top: 0;
	 width: 100%;
}
 .parallax-front {
	 align-items: center;
	 color: #fff;
	 display: flex;
	 height: 100%;
	 justify-content: center;
	 left: 0;
	 position: absolute;
	 text-align: center;
	 text-shadow: 0 0 3rem rgba(69, 77, 93, .95);
	 top: 0;
	 transform: translateZ(16px) scale(0.9);
	 transition: all 0.4s ease;
	 width: 100%;
	 z-index: 1;
}
.paralax_h2 {
	padding:0;
	margin:0;
	display:block;
	padding: 16px 18px;
	border: thin solid #66fcf1;
	border-radius:16px;
	color: #66fcf1;
	font-size:1.5em;
	line-height:1.2em;
}
.parallax-front span {
	text-transform: uppercase;
}

 .parallax-top-left {
	 height: 50%;
	 left: 0;
	 position: absolute;
	 top: 0;
	 width: 50%;
	 z-index: 300;
	 cursor: pointer;
}
 .parallax-top-left:hover ~ .parallax-content {
	 transform: perspective(1800px) rotateX(-5deg) rotateY(5deg);
}
 .parallax-top-left:hover ~ .parallax-content:before {
	 background: linear-gradient(135deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 50%);
}
 .parallax-top-left:hover ~ .parallax-content .parallax-front {
	 transform: translate3d(-0.1px, -0.1px, 48px) scale(0.9);
}
 .parallax-top-right {
	 height: 50%;
	 position: absolute;
	 right: 0;
	 top: 0;
	 width: 50%;
	 z-index: 300;
	 cursor: pointer;
}
 .parallax-top-right:hover ~ .parallax-content {
	 transform: perspective(1800px) rotateX(-5deg) rotateY(-5deg);
}
 .parallax-top-right:hover ~ .parallax-content:before {
	 background: linear-gradient(-135deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 50%);
}
 .parallax-top-right:hover ~ .parallax-content .parallax-front {
	 transform: translate3d(0.1px, -0.1px, 48px) scale(0.9);
}
 .parallax-bottom-left {
	 bottom: 0;
	 height: 50%;
	 left: 0;
	 position: absolute;
	 width: 50%;
	 z-index: 300;
	 cursor: pointer;
}
 .parallax-bottom-left:hover ~ .parallax-content {
	 transform: perspective(1800px) rotateX(5deg) rotateY(5deg);
}
 .parallax-bottom-left:hover ~ .parallax-content:before {
	 background: linear-gradient(45deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 50%);
}
 .parallax-bottom-left:hover ~ .parallax-content .parallax-front {
	 transform: translate3d(-0.1px, 0.1px, 48px) scale(0.9);
}
 .parallax-bottom-right {
	 bottom: 0;
	 height: 50%;
	 position: absolute;
	 right: 0;
	 width: 50%;
	 z-index: 300;
	 cursor: pointer;
}
 .parallax-bottom-right:hover ~ .parallax-content {
	 transform: perspective(1800px) rotateX(5deg) rotateY(-5deg);
}
 .parallax-bottom-right:hover ~ .parallax-content:before {
	 background: linear-gradient(-45deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 50%);
}
 .parallax-bottom-right:hover ~ .parallax-content .parallax-front {
	 transform: translate3d(0.1px, 0.1px, 48px) scale(0.9);
}
 

/*Cookie Consent Begin*/
.js_enabled #cookie-message {
            display: none;
        }
        #content {
            margin: 1em;
        }
        #cookie-message {
			width:100%;
			position:fixed;
			bottom:0px;
			z-index:1010;
            background-color: #0B0C10;
            color: #FFF;
            margin: 0 auto;
            padding: 1em;
			text-align:center;
        }
/*Cookie Consent End*/