*,*:before,*:after {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  position:relative;
  overflow: hidden;
  height: 100vh;
  background:black;
  color:white;
}
body:before{
  content:'';
  position:absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  background-image: url("https://source.unsplash.com/featured?dark");
  background-size: cover;
  background-repeat: no-repeat;
  opacity:0.5;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.fog:before,
.fog:after {
  content: "";
  position: absolute;
  background: url("https://opengameart.org/sites/default/files/fog01.png") repeat-x;
  background-size: contain;
  background-position: center;
  -webkit-animation: marquee 120s linear infinite;
          animation: marquee 120s linear infinite;
  width: 300vw;
  height: 100vh;
  z-index: 0;
  opacity: 0.2;
  user-select: none;
  pointer-events: none;
  background-blend-mode: difference;
}
.fog:before{
  -webkit-animation: marquee 300s linear infinite;
          animation: marquee 300s linear infinite;
  opacity: 0.1;
}

@media (max-width: 768px) {
  .fog:before,
  .fog:after {
    background-size: cover;
  }
}
.section {
  position: relative;
}
.section__inner {
  /* max-width: 1200px; */
  padding: 0 calc(100% / 7);
  margin: 0 auto;
  z-index: 2;
}
.section__content {
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
}
.section__content-label {
  position: relative;
  margin: 0 120px 20px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.section__content-label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: #fff;
}

.title {
  color: #fff;
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .title {
    font-size: 46px;
    line-height: 1.2;
  }
}

.subtitle {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 1px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 20px;
    margin-top: 15px;
    line-height: 1.4;
  }
}

.buttons_group {
  display: flex;
  margin-top: 40px;
}

.button {
  position: relative;
  width: auto;
  max-width: 270px;
  padding: 15px 35px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 2px;
  cursor: pointer;
  border: 1px solid #fff;
  transition: color 0.4s ease-in-out;
}
.button:hover {
  color: #111;
}
.button:before {
  content: "";
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  z-index: -1;
  transition: right 0.4s ease-in-out;
}
.button:hover:before {
  right: 0;
}

.vertical-lines {
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  /* z-index: -1; */
  user-select: none;
  pointer-events: none;
}
.vertical-lines div {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}
@media (max-width: 768px) {
  .vertical-lines div {
    border-right: 0;
  }
}

.dribbble {
  position: fixed;
  display: block;
  right: 20px;
  bottom: 20px;
}

@-webkit-keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-200vw, 0, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-200vw, 0, 0);
  }
}
.loading {
  background: #111;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  visibility: visible;
  transition-duration: 1s;
}



.topnav {
  overflow: hidden;
  display:flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px calc(100% / 7);
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
}
.topnav a {
  text-decoration: none;

  position: relative;
  width: auto;
  max-width: 270px;
  padding: 7px 15px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 2px;
  cursor: pointer;
  transition: color 0.4s ease-in-out;
}
.topnav a:hover {
  color: #111;
}

.topnav a:before {
  content: "";
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  z-index: -1;
  transition: right 0.4s ease-in-out;
}
.topnav a:hover:before {
  right: 0;
}

.topnav a.active {
  border-bottom: 2px solid #fff;
}
.topnav .logo {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 7px 10px 3px 10px;
  margin-top: 2px;
  text-decoration: none;
  font-size: 17px;
}
.topnav .logo img {
  width: 30px;
  height: auto;
}
.topnav .logo:hover {
  background: transparent;
}
.topnav button {
  display: none;
}