﻿@charset "utf-8";
/* CSS Document */
/* -------------reset----------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 93%;
}
input:focus, button:focus {outline:0;}

img {
    vertical-align: middle;
}

a{
	text-decoration:none;
}

ul li{ 
	list-style:none;
}

html,body{
	font-family: 'Audiowide', serif;
	color:#666 /*color-text*/;
	height:100%;
	width:100%;
}

h1{
	font-size: 1.5em;
	text-align:left;
	font-weight: bold;
	color:#001261/* primary color*/;
}

/* -----------------container and content ------------------ */

.container .content{
	max-width:1200px;
	margin:auto;
	padding: 70px 10px;
}

.container .content a{
	color:#001261/* primary color*/;
	text-decoration: underline;
	font-weight: bold;
}

.container .content a:hover{
	color:#52BAD5/* primary lightcolor*/;
}

/* -----------------Menu mobile-----------------*/

.active{
	color:#FFFFFF/* primary super-lightcolor*/;
	background-color: rgba(0, 0, 139,0.3)/* primary lightcolor*/;
}
	
.active-dropdown{
	color:#FFFFFF /* primary super-lightcolor*/;
	background-color: #52BAD5/* primary lightcolor*/;
}

.newsletter{
	color:#FFFFFF/* primary super-lightcolor*/;
	background-color: rgba(65, 65, 65,0.6)/* primary lightcolor*/;
}
	
.newsletter-dropdown{
	color:#FFFFFF /* primary super-lightcolor*/;
	background-color: #52BAD5/* primary lightcolor*/;
}

.contacts{
	color:#FFFFFF/* primary super-lightcolor*/;
	background-color: rgba(65, 65, 65,0.6)/* primary lightcolor*/;
}
	
.contacts-dropdown{
	color:#FFFFFF /* primary super-lightcolor*/;
	background-color: #52BAD5/* primary lightcolor*/;
}

nav{
	height:100%;
	background-color: rgba(0,0,0,0.6);/* primary lightcolor* /* background menu mobile*/
	color: #001261;
	position:fixed;
	width:65%;
	margin-top:54px;
	margin-left:17vw;
	z-index:3;
	visibility:hidden;
	overflow:auto;/* allow scroll when menu is open*/
	   
}

nav ul{
	padding-bottom:54px;
}

nav ul li a {
	padding: 16px 0 16px 20px;
	display:block;
	color:#fbfafa;
	font-size:16px;
	transition: background-color 0.3s ease;
}

.intro{
	border-top: 1px solid #FFFFFF/* primary lightcolor*/;
}

.intro > a::before{
	content: "";
	float: left;
	padding-right: 0px;
}

.submenu{
	color:#25FFFF /* primary super-lightcolor*/;
	padding-left: 20px;
	padding-bottom: 5px;
}

nav ul li ul {
	padding-left:0; 
	padding-bottom:0;
}

nav ul li ul li a {
	font-size:16px;
	padding:10px 0 10px 30px;
	border:hidden;
}

.newsletter{
	border-top: 1px solid #FFFFFF/* primary lightcolor*/;
}

.newsletter > a::before{
	content: "";
	float: left;
	padding-right: 0px;
}

.contacts{
	border-top: 0px solid #FFFFFF/* primary lightcolor*/;
}

.contacts > a::before{
	content: "";
	float: left;
	padding-right: 0px;
}

.lang{
	border-top: 1px solid #FFFFFF/* primary lightcolor*/;
}

.lang > a::before{
	content: url(../images/lang_globe_icon.png);
	float: left;
	padding-right: 8px;
}

.social{
	border-top: 1px solid #FFFFFF/* primary lightcolor*/;
}

.social > a::before{
	content: url(../images/facebook_round_icon.png);
	float: left;
	padding-right: 8px;
}

/* ----------------- div bar for menu activation ------------------ */

#bar{
	background-color: #00008B /* primary color*/; 
	height:54px;
	width:100%;
	z-index:2;
	position:fixed;
	box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.4);
}

#bar #logo{
	float:left;
	margin-left:12px;
}

/* ----------------- Hamburger animation ------------------ */

#hamburger {
  display: none;
}

.menuicon {
    position: fixed;
    right: 12px;
    height: 54px;
    width: 54px;
    z-index:3;
}

.menuicon  span {
    display: block;
    top: 25px;
    width: 40px;
    height:3px;
    left:8px;
    background-color: #fff;
    position: relative;
	border-radius:20px;
    transition-duration: 0;
    transition-delay: .1s;
}
    
.menuicon  span::after, .menuicon  span::before {
    display: block;
    content: '';
    position: absolute;
    width: 40px;
    height:3px;
    background-color: #fff;
	border-radius:20px;
    transition-duration: .1s;
	-webkit-transition-delay: .1s, 0;
    transition-delay: .1s, 0;
}
.menuicon  span::before {
      margin-top: -10px;
}
.menuicon  span::after {
      margin-top: 10px;
}

#hamburger:checked ~ .menuicon span{
    background-color: rgba(0,0,0,0);
}
    
#hamburger:checked ~ .menuicon span::before {
      margin-top: 0px;
      -webkit-transition-delay: 0, .3s;
      -moz-transition-delay: 0, .3s;
      -ms-transition-delay: 0,.3s;
      -o-transition-delay: 0, .3s;
      transition-delay: 0, .3s;
}
	
#hamburger:checked ~ .menuicon span::after {
      margin-top: 0px;
      -webkit-transition-delay: 0, .3s;
      -moz-transition-delay: 0, .3s;
      -ms-transition-delay: 0,.3s;
      -o-transition-delay: 0, .3s;
      transition-delay: 0, .3s;
}

#hamburger:checked ~ .menuicon span::before {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
}

#hamburger:checked ~ .menuicon span::after {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

/* ----------------- menu animation start ------------------ */

#hamburger:checked ~ .menu-visibility {
	visibility:visible;
}

/* -----------------media horizontal menu ------------------ */
 
@media screen and (min-width: 1350px) and (min-aspect-ratio: 211/250){
	
.menuicon{
	display:none; /* remove hambuger icon */
}
	
#bar #logo{
	float:right;
	margin-right:12px;
}

nav{
	z-index:3;
	margin-top:19px;
	margin-left:0px;
	height:auto;
	background-color:transparent;
	transition:none;
	width:auto;
	float:right;
	left:12px;
	visibility:visible;
	font-family:'Audiowide', serif;
	overflow:inherit;
}

.active{
	background-color:transparent;
	color:#52BAD5 /* primary super-lightcolor*/;
}
	
.active-dropdown{
	color:#fff;
	background-color:#52BAD5/* primary lightcolor*/;
}

.active2{
	background-color:transparent;
	color:#52BAD5 /* primary super-lightcolor*/;
}
	
.active2-dropdown{
	color:#fff;
	background-color:#52BAD5/* primary lightcolor*/;
}

.newsletter{
	background-color:transparent;
	color:#52BAD5 /* primary super-lightcolor*/;
}
	
.newsletter-dropdown{
	color:#fff;
	background-color:#52BAD5/* primary lightcolor*/;
}

.contacts{
	background-color:transparent;
	color:#52BAD5 /* primary super-lightcolor*/;
}
	
.contacts-dropdown{
	color:#fff;
	background-color:#52BAD5/* primary lightcolor*/;
}

nav ul{
	padding:0;
}
	
nav ul li a {
	padding:0;
	display:inline;
	font-size:16px;
	color: #FFFFFF;
}

nav ul li a:hover {
	background-color:transparent;
	color:#25FFFF /* primary super-lightcolor*/;
}
	
.submenu{
	padding-left: 0;
	color:#FFFFFF;
}

nav ul li {	
	margin:0;
	float:left;
	position:relative;
	padding:0 16px;
}

.submenu::after{
	content: url(../images/arrow_down.svg);
	float: right;
	padding-left: 6px;
}
	
/* ----------------- dropdown - activate dropdown menu ------------------ */
	
nav ul li ul { 
	position:fixed;
	height:0;
	overflow:hidden;
	background-color: #00008B /* primary color*/
}
	
nav ul li:hover ul{
	height:auto;
	padding-top: 14px;
	position: absolute;
	right: 0;
}

nav ul li ul li {
	font-size: 14px;
	font-weight: normal;
	float:none;
	padding:0;
	min-width: 160px;
	border-top: 1px solid #B3B3B3/* primary lightcolor*/;
}

nav ul li ul li a {
	padding: 16px 32px;
	display: block;
	background-color: #00008B/* primary color*/;
	color: #ffffff;
	font-weight: normal;
}

nav ul li ul li a:hover {
	background-color: #00094B/* primary lightcolor*/;
	color:#25FFFF /* primary super-lightcolor*/;
}

.intro{
	border-top: 0;
	border-left: solid 1px #fff;
	float: left;
}

.newsletter{
	border-top: 0;
	border-left: solid 1px #fff;
	float: left;
}

.contacts{
	border-top: 0;
	border-left: solid 1px #fff;
	float: left;
}

.lang{
	border-top: 0;
	border-left: solid 1px #fff;
	float: left;
}

.social{
	border-top: 0;
	border-left: solid 1px #fff;
	float: left;
}