html,
body {
  font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}

/* Main Navigation Top */

#main-nav-top {
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

#main-nav-top.navbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

#main-nav-top .nav-item {
  padding: 30px 0px;
  margin-left: 30px;
  position: relative;
  transition: 0.3s;
}

#main-nav-top li a {
  color: #232332;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  position: relative;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
}

#main-nav-top .nav-item:hover > a {
  color: var(--bs-secondary);
}

#main-nav-top li a.dropdown-toggle::after {
  display: none;
}

#main-nav-top .nav-item a::before {
  color: rgba(0, 0, 0, 0);
  content: "•";
  font-size: 7px;
  left: 0;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 rgba(0, 0, 0, 0);
  top: 100%;
  transition:
    text-shadow 0.3s ease 0s,
    color 0.3s ease 0s;
}

#main-nav-top .nav-item:hover > a::before,
#main-nav-top .nav-item.active > a::before,
#main-nav-top .nav-item a:focus::before {
  color: #222222;
  text-shadow:
    7px 0 #222222,
    14px 0 #222222;
}

/* preloader */
#preloader-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    display: block;
    background: #fff;
}

.preloader-wave-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 60px;
    margin: -25px 0 0 -25px;
}

/* content */
body > .content:first-of-type {
  margin-top: 85px;
}

/* footer */
footer * {
  font-family: "Lato", sans-serif;
  color: var(--bs-secondary);
  font-size: 12px;
}

/* typography */
h1 {
  margin-bottom: 30px;
}

p {
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #626262;
  margin-bottom: 15px;
}
