.typed-cursor {
  opacity: 1;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #333;
  color: #fff;
}

.shadow-bg {
  background-color: rgba(0, 0, 0, 0.6);
}

nav {
  text-transform: uppercase;
  z-index: 5;
  transition: 0.6s;
}
nav .navbar-toggler {
  padding: 10px 15px;
  border: 10px;
}
nav .nav-link,
nav .navbar-nav .show > .nav-link,
nav .navbar-brand,
nav .fa-bars {
  color: #fff;
}
nav .nav-link:focus,
nav .nav-link:hover,
nav .navbar-nav .nav-link.active,
nav .navbar-nav .show > .nav-link {
  color: #038dff;
}

header.hero-img {
  position: relative;
  height: 100vh;
  background-image: url(../img/hero_img_small.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  z-index: 0;
}
header.hero-img h1 {
  text-transform: uppercase;
}
header.hero-img .hero-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 139, 0.7);
  z-index: -5;
}
header.hero-img .hero-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
header.hero-img .hero-buttons {
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

@media (min-width: 1200px) {
  header.hero-img {
    background-image: url(../img/hero_img_big.jpg);
  }
}/*# sourceMappingURL=main.css.map */