/* === Block navigation === */ 

.navigation { 
  background: 
    -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #612110),
	color-stop(1, #180869)
)
background-image: -o-linear-gradient(bottom, #612110 0%, #180869 100%);
background-image: -moz-linear-gradient(bottom, #612110 0%, #180869 100%);
background-image: -webkit-linear-gradient(bottom, #612110 0%, #180869 100%);
background-image: -ms-linear-gradient(bottom, #612110 0%, #180869 100%);
background-image: linear-gradient(to bottom, #612110 0%, #180869 100%);
  padding: 0px;
}
.navigation ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}
.down.one {
  font-size: 25px; 
  
}

.topmenu > li {
  display: inline-block;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.topmenu > li > a {
  font-family:sans-serif;
  padding: 30px 80px 30px 80px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  font-size: 19px;
  text-decoration: none;
}

.topmenu li a:hover {color: #00CED1; }
.topmenu > li:hover .submenu{
  visibility: visible;
  opacity: 1;
}

/* === Block zagolovki === */ 
h2, h3 {
color: blue;
}

h1{
color: #c1bcbc;
}

h1, h2, h3, h4 {
  margin: 30px;
  text-align: center;
  font-size: 3em;
	
    text-shadow: 0 1px 0 #948e8e, 0 2px 0 #847f7f,
             0 3px 0 #737070, 0 4px 0 #6b6868,
             0 5px 0 #545353, 0 6px 0 #3e3b3b,
             0 7px 0 #2f2f2f, 0 8px 7px rgba(0, 0, 0, 0.4),
             0 9px 10px rgba(0, 0, 0, 0.2);
}
body {
  background: radial-gradient(#89683f, #ddccb7), #bd9b71;
  font-family: 'Antic Slab', arial, sans-serif;
}

/*Slider*/

.conteiner {
  width: 100%;
  
}

.osnov {
  display: flex;
}
.osnov img {
  position: relative;
  text-align: center;
  width: 100%;
  height: 150px;  /*высота каждой маленькой картинки в меняющемся меню снизу*/
}

.ei-slider{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.ei-slider-large{
	height: 100%;
	width: 100%;
	position:relative;
	overflow: hidden;
}
.ei-slider-large li{
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.ei-slider-large li img{
	width: 100%;
}
.ei-title{
	position: absolute;
	right: 30%;
	margin-right:7%;
	top: 80%;
}
.ei-title h2, .ei-title h3{
	text-align: center;
}
.ei-title h2{
	font-size: 40px;
	line-height: 50px;
}
.ei-title h3{
	font-size: 45px;
	line-height: 45px;
	text-transform: uppercase;
}
.ei-slider-thumbs{
	height: 20px;
	margin: 0 auto;
	position: relative;
}
.ei-slider-thumbs li{
	position: relative;
	float: left;
	height: 100%;
}
.ei-slider-thumbs li.ei-slider-element{
	top: 0px;
	left: 0px;
	position: absolute;
	height: 100%;
	z-index: 10;
	text-indent: -9000px;
	background: #000;
	background: rgba(0,0,0,0.9);
}
.ei-slider-thumbs li a{
	display: block;
	text-indent: -9000px;
	background: #666 ;
	width: 100%;
	height: 100%;
	cursor: pointer;
	-webkit-box-shadow: 
        0px 1px 1px 0px rgba(0,0,0,0.3), 
        0px 1px 0px 1px rgba(255,255,255,0.5);
	-moz-box-shadow: 
        0px 1px 1px 0px rgba(0,0,0,0.3), 
        0px 1px 0px 1px rgba(255,255,255,0.5);
	box-shadow: 
        0px 1px 1px 0px rgba(0,0,0,0.3), 
        0px 1px 0px 1px rgba(255,255,255,0.5);
	-webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    -ms-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.ei-slider-thumbs li a:hover{
	background-color: #f0f0f0;
}
.ei-slider-thumbs li img{
	position: absolute;
	bottom: 50px;
	opacity: 0;
	z-index: 999;
	max-width: 100%;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
	-webkit-box-reflect: 
        below 0px -webkit-gradient(
            linear, 
            left top, 
            left bottom, 
            from(transparent), 
            color-stop(50%, transparent), 
            to(rgba(255,255,255,0.3))
            );
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.ei-slider-thumbs li:hover img{
	opacity: 1;
	bottom: 13px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* === Block futer === */ 
.futer {
  display: flex;
  background:-webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #D9C493),
	color-stop(0, #2E2287),
	color-stop(0.48, #A1703F),
	color-stop(1, #690808)
);
background-image: -o-linear-gradient(bottom, #D9C493 0%, #2E2287 0%, #A1703F 48%, #690808 100%);
background-image: -moz-linear-gradient(bottom, #D9C493 0%, #2E2287 0%, #A1703F 48%, #690808 100%);
background-image: -webkit-linear-gradient(bottom, #D9C493 0%, #2E2287 0%, #A1703F 48%, #690808 100%);
background-image: -ms-linear-gradient(bottom, #D9C493 0%, #2E2287 0%, #A1703F 48%, #690808 100%);
background-image: linear-gradient(to bottom, #D9C493 0%, #2E2287 0%, #A1703F 48%, #690808 100%);
}
.futer .text2 {
  margin: 5px 5px 5px 10px;
  color: white;
} 








 
 
 
 
 
 
 
 
 
 
