@font-face {
	font-family: 'HelveticLight';
	src: url('../fonts/helveticaneuecyr-light.otf');
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helveticaneuecyr-roman.otf');
}

.my-fixed-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background-color: #87CEEB;
  font-family: "Helvetica", Arial, 'sans serif';
  height: 59px;
  line-height: 62px;
}

/* The element at the top of the page right after the fixed navigation bar
   MUST have sufficient top margin or else it will be covered by the bar */
.content {
  margin-top: 20px;
}

/* Example responsive navigation menu  */
.my-fixed-nav-bar li, .my-fixed-nav-bar a { 
  height: 50px;
  line-height: 50px;
}
.my-menu {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.my-menu a, .my-menu a:visited {
  color: #ffffff;
}
.my-menu a:hover, .my-menu a:target {
  color: #ebebeb;
}
.my-menu-items {
  display: inline-block;
}
.my-menu-items li {
  padding-right: 20px;
}

.sitename {
  display: inline-block;
  margin-right: 20px;
  margin-left: 10px;
  font-size: 1.5em;
}
a.sitename, a:visited.sitename {
  /*color: #e0e0e0;*/
  color: #FFFFFF;
}
.my-menu-items li {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  font-size: 1.5em;
}
.my-menu-items a {
  text-decoration: none;
}

.my-menu-items .menu-lang{
   margin-right: 0; 
   margin-left: 0px; 
   padding-right: 2px;
}

.my-menu-items .menu-lang__link{
   margin-right: 0; 
   margin-left: 0px; 
   padding-right: 2px;
}

.my-show, .my-hide {
  display: none;
  padding-left: 15px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center left;
  color: #dde1e2;
}
.my-show {
  background-image: url(../down-arrow-icon.png);
}
.my-hide {
  background-image: url(../up-arrow-icon.png);
}



@media only screen and (max-width: 800px) {
  .my-menu { 
    position: relative;
    width: 100%;
  }
  .sitename {
    position: absolute;
    top: 0;
    left: 15px;
    margin-left: 0px;
  }
  .my-menu-items {
    display: none; 
    width: 100%;
    margin-top: 50px;
    background-color: #87CEEB;
  }
  .my-menu-items li {
    display: block;
    text-align: center;
  }
  .my-show, .my-hide {  
    position: absolute;
    top: 0;
    right: 15px;
  }
  .my-show {
    display: inline-block;
  }
  .my-hide {
    display: none;
  }
  #my-menu:target .my-show {
    display: none;
  }
  #my-menu:target .my-hide, #my-menu:target .my-menu-items {
    display: inline-block;
  }
}

@media only screen and (max-width: 220px) {
  .sitename, .my-show, .my-hide {
    font-size: 14px;
  }
}

.my-menu-items li a{
	text-decoration: none;
}

.my-menu-items li a:hover {
	color: #089de3;

	-webkit-transition: color 500ms linear;
    -moz-transition: color 500ms linear;
    -o-transition: color 500ms linear;
    -ms-transition: color 500ms linear;
    transition: color 500ms linear;
}


*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	font-family: 'Raleway', sans-serif;
}

#cl-effect-4 a {
	position: relative;
	/*display: inline-block;*/
	/*margin: 15px 25px;*/
	outline: none;
	color: #fff;
	text-decoration: none;
	letter-spacing: 1px;
	/*font-weight: 400;*/
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	/*font-size: 1.35em;*/
}

#cl-effect-4 a:hover,
#cl-effect-4 a:focus {
	outline: none;
	color: #089de3;
	/*opacity: 0.7;*/

    /*-webkit-transition: color 1000ms linear;
    -moz-transition: color 1000ms linear;
    -o-transition: color 1000ms linear;
    -ms-transition: color 1000ms linear;
    transition: color 1000ms linear;*/
}

/* Effect 4: bottom border enlarge */
.cl-effect-4 a {
	padding: 0 0 10px;
}

.cl-effect-4 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	/*background: #fff;*/
	background-color: #089de3;
	content: '';
	opacity: 0;

	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);

	
}

.cl-effect-4 a:hover::after,
.cl-effect-4 a:focus::after {
	height: 5px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}