/* === 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 globus-effect === */ 

body {
	background : url('pictures/8.png');
}
  
#globus{ 
    height: 1000px;
  }
  
h1{
	color: white;
	position : absolute;  
	margin-top : 1%;
	margin-left : 20%;
	font-size: 40px; 
	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);
}
.logo{
	background : url('pictures/logo.png');
	position : relative;
	width : 400px;
	height : 140px;
	margin-top : 7%;
	margin-left : 5%;
	display : block;
}
	/*стилизация (оформление) вращающегося объекта */
.earth {
	background : url('pictures/earth.png');
	position : absolute;
	width : 900px;
	height : 920px;
	top : 100px;
	margin-left : 40%;
	transform : rotate(360deg);
	
	/*-webkit-transform, -moz-transform, -ms-transform, -o-transform,  transform применяют трансформации (преобразования) к элементу earth (земля), 
	в данном случае - поворот на 360 градусов*/
	-webkit-transform: rotate(360deg);  /*использовано свойство transform*/
	-moz-transform: rotate(360deg); /*использовано свойство transform*/
	-ms-transform: rotate(360deg);  /*использовано свойство transform*/
    -o-transform: rotate(360deg);  /*использовано свойство transform*/
    transform: rotate(360deg);  /*использовано свойство transform*/
	
	-moz-animation-name: earth; /*имя, связанное с @keyframes, которому задается последовательность движения (земля).*/
	-moz-animation-duration: 77s;/*задает длительность анимации в секундах (s)*/
	-webkit-animation-name: earth;/*имя анимации, при обращении к которому будет проводиться анимация (земля)*/
	-webkit-animation-duration: 77s;/*задает длительность анимации в секундах (s)*/

	-moz-animation-timing-function: linear;/*использует математическую функцию, называемую Кубической Кривой Безье, для создания кривой скорости, здесь - линейная*/
	-moz-animation-iteration-count: infinite;/*определяет сколько раз будет проигрываться анимационный цикл, перед тем как остановиться, здесь - бесконечность*/
	-moz-animation-direction: normal; /*анимация идёт с самого начала, после завершения цикла возвращается к исходному состоянию*/
	-moz-animation-delay: 0; /*устанавливает время ожидания перед воспроизведением анимации, в данном случае указано значение 0, которое запускает анимацию сразу же, как только она применяется к элементу.*/
	-moz-animation-play-state: running; /*указывает, будет воспроизводиться анимация или она будет остановлена (на паузе), в данном случае - будет воспроизводиться сразу.*/
	-moz-animation-fill-mode: forwards; /*устанавливает в каком положении останавливаться анимации после ее окончания, 
	в данном случае значение forwards оставляет изначально заданные стили (анимация бесконечная)*/
	
	-webkit-animation-timing-function: linear; /*использовано свойство animation*/
	-webkit-animation-iteration-count: infinite; /*использовано свойство animation*/
	-webkit-animation-direction: normal; /*использовано свойство animation*/
	-webkit-animation-delay: 0; /*использовано свойство animation*/
	-webkit-animation-play-state: running; /*использовано свойство animation*/
	-webkit-animation-fill-mode: forwards; /*использовано свойство animation*/ 
}

/*keyframes позволяет производить изменения (в данном случае постоянно и автоматически - вращение земли 
(картинка earth в png) с помощью свойства rotate)*/

@-webkit-keyframes earth { /*анимация CSS свойств описывается в виде перечня ключевых кадров, вращение от исходного 0 градусов до 360 градусов при каждом входе на сайт*/
	
0% {
    -moz-transform: rotate(0deg); /*использовано свойство transform*/
    -webkit-transform: rotate(0deg); /*использовано свойство transform*/
   }
100% {
    -moz-transform: rotate(360deg); /*использовано свойство transform*/
    -webkit-transform: rotate(360deg); /*использовано свойство transform*/
}
}
@-moz-keyframes earth {
0% {
    -moz-transform: rotate(0deg); /*использовано свойство transform*/
    -webkit-transform: rotate(0deg); /*использовано свойство transform*/
    }
100% {
    -moz-transform: rotate(360deg); /*использовано свойство transform*/
    -webkit-transform: rotate(360deg); /*использовано свойство transform*/
}
}

/* === Block parallax-effect === */ 
.parallax {
  position:relative;
  z-index:1;
  height:900px;
  -webkit-box-shadow: inset 0px -6px 5px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: inset 0px -6px 5px rgba(50, 50, 50, 0.75);
  box-shadow: inset 0px -6px 5px rgba(50, 50, 50, 0.75);
}

.clear {
clear: both; 
}

#trans1 {
  background: url('pictures/12.jpg') no-repeat fixed;
  height:950px;
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#trans2 {
  background: url('pictures/7.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:950px;
}

#trans3 {
  background: url('pictures/11.jpg') no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:950px;
}

#trans4 {
  background: url('pictures/10.jpg') no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:950px;
}

.txt {
  font-family: 'Niconne', cursive;
  font-size:55px;
  color:#000;
  width:auto;
  background:#FD62A9;
  background:rgba(150, 102, 153, 0.60);
  padding:5px 10px;
}
.txt.right {
  margin: 150px 100px 0 0;
  float:right;
  text-align:right;
}
.txt.left {
  float:left;
  text-align:left;
  margin: 150px 0 0 100px;
}

.txt.sub {
  font-size:50px;
  line-height:175%;
  font-weight:lighter;
  letter-spacing:1.5px;
  background:#000;
  background:rgba(0,0,0,0.60);
  font-size:25px;
  color:#ccc;
  margin: 0 100px 0 100px;
}
.content {
  box-sizing:border-box;-moz-box-sizing:border-box;
  position:relative;
  background:#FFF;
  width:100%;
  height: 300px;
  margin:0;
  padding:100px;
  -webkit-box-shadow: 0px 6px 5px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: 0px 6px 5px rgba(50, 50, 50, 0.75);
  box-shadow: 0px 6px 5px rgba(50, 50, 50, 0.75);
  text-align:left;
}
.content p {
  font-size:30px;
}

.content.right {
  text-align:right;
}

/* === Text effect === */ 

 h2{
  font-family: arial;
  letter-spacing: 2px;
  font-size: 40px;
  color: #999999;
  -webkit-animation: 0.5s color infinite;
  animation: 0.5s color infinite;
}

@-webkit-keyframes color {
  50% {
    color: #8fc8ae;
  }
}

@keyframes color {
  50% {
    color: #8fc8ae;
  }
}
    
/* === 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;
}

/* === Block form === */ 
button {text-align: center; border: none; -webkit-border-radius: 5px; border-radius: 5px; background: transparent; cursor: pointer; transition: all 0.2s;}
textarea {height: 100px; display: block; font: normal 16px Roboto, Verdana, sans-serif; resize: none;}

	
	.form-list li {position: relative;}
	.form-list li + li {margin-top: 24px;}
	.form-list label {width: 204px; float: left; text-align: right; padding: 7px 36px 0 0;}
		/*.form-list label + div {margin-left: 204px;}*/
	.form-list button {height: 36px; font-size: 12px; line-height: 38px; color: #fff; text-transform: uppercase; padding: 0 24px; background: #058cd0;}
	.form-list button:hover {background: #0497e0;}
	.form-control {width: 100%; font-size: 16px; padding: 9px 12px 7px 10px; border: solid 1px #c6c6c6; -webkit-border-radius: 3px; border-radius: 3px; background: #fff;}
	.form-control:focus {color:#3C464E; border:solid 1px #82B0D5; -webkit-box-shadow:0 0 9px rgba(123,198,254,0.37), inset 0 1px 2px rgba(91,114,132,0.3); box-shadow:0 0 9px rgba(123,198,254,0.37), inset 0 1px 2px rgba(91,114,132,0.3);}
	input[type="text"].form-control {max-width: 400px;}

/* error */
.error {max-width: 260px; display: none; font-size: 13px; line-height: 15px; color: #fff; position: absolute; left: 228px; top: calc(100% + 8px); z-index: 100; padding: 6px 10px 7px; -webkit-border-radius: 6px; border-radius: 6px; background: #d99;}
.error:before {width: 0; height: 0; content: ''; position: absolute; left: 15px; top: -7px; border-right: 8px solid transparent; border-left: 8px solid transparent; border-bottom: 8px solid #d99;}
.form-control_error {border-color: #d99;}

.form-list_contact li {
	display: flex;
}

.form-list_contact{
	margin-top: 20px;
}

#feedback {
	color: white;
} 

#form-valid {
	color: #fff;
    border-radius: 6px;
    background: #d99;
	padding: 20px;
    margin: 20px 0 0 40px;
	display: none;
}

.part img {  
   width: 150px;
   height: 70px; 
   margin: 2px 10px 2px 10px;
}


































