html,
body {
  margin: 0;
  padding: 0;
  font-family: "Tahoma";
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
span,
div,
input,
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  text-decoration: none;
  list-style: none;
  color: #fff;
  font-family: "Tahoma";
  font-weight: 400;
}
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  z-index: 999;
}
.fixed-nav .logo {
  float: left;
  padding: 1% 0;
}
.fixed-nav .logo img {
  position: absolute;
  height: 65%;
  margin-left: 25px;
}
.fixed-nav .menu {
  float: right;
  padding: 1% 0;
}
.fixed-nav .menu .menu-md {
  position: absolute;
  top: 15%;
  right: 25%;
}
.fixed-nav .menu .menu-md li {
  float: left;
}
.fixed-nav .menu .menu-md li a {
  display: inline-block;
  padding: 10% 50px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50%);
  transition: all 0.8s ease-out;
}
.fixed-nav .menu .menu-md li a.menuA-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}
.fixed-nav .menu .menu-md li:hover {
  animation: liMenu 0.3s linear ;
}
.fixed-nav .menu .menu-md li:hover a {
  color: #a0a0a0;
}
.fixed-nav .menu .menu-sm {
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5%);
  transition: all 0.5s ease-out;
}
.fixed-nav .menu .menu-sm.menuSm-active {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.fixed-nav .menu .menu-sm li {
  margin-left: 50%;
  display: inline-block;
  transform: translateX(-50%);
}
.fixed-nav .menu .menu-sm li a {
  display: inline-block;
  padding: 20px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
}
.fixed-nav .menu .fa-bars {
  position: relative;
  display: inline-block;
  padding: 20px;
  cursor: pointer;
  color: #fff;
}
.fixed-nav .menu .fa-bars .menuFon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.fixed-nav .menu .fa-bars .menuFon.menuFon-active {
  animation: fonMenu 0.5s linear ;
}
.fixed-nav .menu .fa-bars.fa-bars-active {
  color: #a0a0a0;
}
.fixed-nav .menu .radio-li {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-out;
}
@keyframes liMenu {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(-30%);
    opacity: 0;
  }
  70% {
    transform: translateY(30%);
    opacity: 0;
  }
}
@keyframes fonMenu {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: rotate(80deg);
    opacity: .70;
  }
  50% {
    transform: rotate(120deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 0.30;
  }
}
.box-section .section {
  background-color: #1f1f1f;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.box-section .section .title-left {
  text-align: left;
  font-size: 30px;
  margin-top: 5%;
  margin-left: 10%;
}
.box-section .section .title-center {
  text-align: center;
  font-size: 30px;
  padding-top: 3%;
  padding-bottom: 3%;
}
.box-section .section .line-horizon {
  width: 100%;
  height: 0.5vh;
  background-color: #fff;
}
.box-section .section .line-horizon-smalli {
  width: 80%;
  height: 0.5vh;
  background-color: #fff;
  margin-left: 15px;
}
.box-section .section .line-horizon-midle {
  width: 150%;
  height: 0.5vh;
  background-color: #fff;
}
.box-section .section .line-vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.3vw;
  height: 100%;
  background-color: #fff;
}
.box-section .section .bg {
  position: absolute;
  right: -30%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  border-left: 5px solid #fff;
  transform: skew(-25deg);
  z-index: 40;
}
.box-section .section .box-slider-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: black;
  z-index: 30;
}
.box-section .section .box-slider-bg .slide-bg {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.box-section .section .box-slider-bg .animation1 {
  animation: bgHello1 30s linear infinite ;
}
.box-section .section .box-slider-bg .animation2 {
  transform: translateX(100vw);
  animation: bgHello2 30s linear infinite ;
}
@keyframes bgHello1 {
  0% {
    transform: translateX(0vw);
  }
  100% {
    transform: translateX(-100vw);
  }
}
@keyframes bgHello2 {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(0vw);
  }
}
.box-section .section .box-hello {
  position: absolute;
  height: 100%;
  width: 100%;
  margin-top: 10%;
  padding-bottom: 20%;
  box-sizing: border-box;
  z-index: 70;
}
.box-section .section .box-hello .text {
  font-family: 'Roboto Mono', monospace;
  font-weight: 100;
  font-size: 50px;
  color: #fff;
  margin-top: 10%;
  margin-bottom: 30%;
}
.box-section .section .box-hello .text .dud {
  font-family: 'Roboto Mono', monospace;
  font-weight: 100;
  font-size: 50px;
  color: #757575;
}
.box-section .section .box-hello p {
  font-size: 20px;
}
.box-section .section .filler {
  height: 100vh;
}
.box-section .section .about-me {
  height: 70vh;
}
.box-section .section .about-me .position {
  position: fixed;
  top: 15%;
  left: 0;
  bottom: 0;
  right: 0;
}
.box-section .section .about-me .position p {
  margin-top: 10%;
}
.box-section .section .about-me .position .skills {
  height: 200px;
  margin-top: 20%;
  margin-bottom: 20%;
  box-sizing: border-box;
  position: relative;
}
.box-section .section .about-me .position .skills img {
  height: 100px;
  width: 100px;
  float: left;
  padding: 5px;
}
.box-section .section .portfolio-box {
  width: 100%;
  box-sizing: border-box;
}
.box-section .section .portfolio-box h2 {
  margin-bottom: 5%;
}
.box-section .section .portfolio-box .title-plagins {
  margin-bottom: 10%;
}
.box-section .section .portfolio-box .box-slid-vertical {
  margin-top: 20%;
  margin-bottom: 20%;
}
.box-section .section .portfolio-box .box-slid-horizontal {
  margin-top: 20%;
  margin-bottom: 20%;
}
.box-section .section .portfolio-box .title-site {
  margin-top: 10%;
  margin-bottom: 5%;
}
.box-section .section .portfolio-box .box-foto-site {
  margin-top: 5%;
  margin-bottom: 5%;
}
.box-section .section .portfolio-box .box-foto-site img {
  height: 300px;
  width: 600px;
  border: 3px solid #fff;
  margin-bottom: 5%;
  cursor: pointer;
}
.box-section .section .contacts {
  background-color: #000;
  height: 30vh;
  padding-bottom: 30px;
}
.box-section .section .contacts .box-contacts .box {
  margin-bottom: 5%;
}
.box-section .section .contacts .box-contacts .box img {
  height: 30px;
  width: 30px;
}
.box-section .section .contacts .box-contacts .box .img {
  height: 35px;
  width: 35px;
}
.box-section .section .contacts .box-contacts .box h5 {
  display: inline-block;
  vertical-align: super;
}
