*,
*::before,
*::after {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  display: block;
  color: #f2f3f4;
  text-decoration: none;
}
a:focus {
  color: #f2f3f4;
}
a:hover {
  /* color: #f2f3f4; */
  color: #f0f8ff;
}
ul,
ol {
  list-style: none;
}

/* /////////////////////// */

body {
  background-color: #212121;
   font-family: sans-serif;  /* ШРИФТ СЮДА */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  position: relative;
  width: 100%;
  height: 78vh;
  margin-bottom: 8px;
}

section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navList {
  position: absolute;
  bottom: 25%;
  /* left: 50%; */
  right: 2%;
  transform: translate(-10%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.navList__item {
  cursor: pointer;
  margin: 10px 10px;
  background: #fff;
  padding: 3px;
}

.navList__img {
  width: 80px;
  opacity: 0.7;
  transition: 0.5s;
}
.navList__img:hover {
  width: 100px;
  opacity: 1;
}

footer {
  width: 100%;
  height: 100%;
  color: #d3d3d3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.name {
  font-size: 21px;
  margin-bottom: 6px;
}
.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
  flex-direction: column;
}
.about span {
  margin-bottom: 6px;
}
