.nav-wrapper {
  z-index: 6;
  position: fixed;
  height: 70px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.4s ease-in;
  border-bottom: 1px solid transparent;
}
@media (min-width: 2500px) {
  .nav-wrapper {
    height: 80px;
  }
}
@media (max-width: 1050px) and (orientation: portrait) {
  .nav-wrapper {
    display: none;
  }
}
@media (max-width: 960px) and (max-height: 500px) and (orientation: landscape) {
  .nav-wrapper {
    display: none;
  }
}
.nav-wrapper.scroll-nav-opacity-toggle {
  background: #ffffff;
}
.nav-wrapper a {
  font-size: 12px;
  font-weight: 400;
  font-family: "montserrat", sans-serif;
  text-decoration: none;
  color: #3a3a3a;
  transition: all 0.1s ease;
}
@media (min-width: 2500px) {
  .nav-wrapper a {
    font-size: 24px;
  }
}
.nav-wrapper a::before {
  display: block;
  font-weight: 900;
  content: attr(data-text);
  overflow: hidden;
  visibility: hidden;
  height: 0px;
}
.nav-wrapper a:hover {
  font-weight: 600;
}
.nav-wrapper a:active {
  font-weight: 900;
}
.nav-wrapper .left-side {
  width: 200px;
  display: flex;
  padding-left: 80px;
  align-items: center;
}
.nav-wrapper .left-side img {
  width: 20px;
  margin-right: 1vw;
}
@media (min-width: 2500px) {
  .nav-wrapper .left-side img {
    width: 45px;
  }
}
.nav-wrapper .middle {
  display: flex;
  width: 600px;
  align-items: center;
  justify-content: space-evenly;
}
.nav-wrapper .middle a {
  text-align: center;
}
.nav-wrapper .right-side {
  display: flex;
  padding-right: 80px;
  align-items: center;
  justify-content: flex-end;
  width: 200px;
}
.nav-wrapper .scroll-nav-link-active {
  font-weight: 600;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.policy {
  padding: 10vw;
}/*# sourceMappingURL=privacy-policy-v2.css.map */