:root {
  --col-shadow: #2b2b2b2f;
  --col-white: white;
  --col-lightblue: #29abe2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e9e9e9;
}

.sidebar {
  position: fixed !important;
}

.navbar-wrap {
  position: fixed;
  top: 0;
  left: 240px;
  right: 0;
  z-index: 9;
}

h1 {
  padding-bottom: 50px;
}

.privacy-container {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  padding: 140px 70px 40px 70px;
}

.privacy-content {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 32px;
}

.privacy-content h1 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1.8px;
}

.privacy-content p {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
  margin-top: -26px;
}

.privacy-content h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 0;
}

.privacy-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-content li {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 8px;
}

.privacy-content a {
  font-size: 1.3rem;
  color: var(--col-lightblue);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

address span {
  font-weight: bolder;
  color: var(--col-lightblue);
}

@media (max-width: 880px) {
  .privacy-content h1 {
    font-size: 3rem;
    line-height: 1.5;
  }
}

@media (max-width: 770px) {
  .privacy-content h1 {
    font-size: 2.5rem;
    margin-top: 32px;
    padding: 32px 0;
    line-height: 1.5;
  }

  .privacy-content {
    margin-bottom: 80px;
  }

  .privacy-container {
    padding: 24px;
  }

  .privacy-content h1 {
    padding: 32px 0;
  }
}

@media (max-width: 670px) {
  .navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
  }

  .privacy-container {
    margin-top: 80px;
  }
}

/* Firefox */
@-moz-document url-prefix() {
  .privacy-content {
    scrollbar-width: thin;
    scrollbar-color: #a8a8a8 !important;
  }
}

/* Chrome */
.privacy-content::-webkit-scrollbar {
  width: 6px !important;
  height: 8px !important;
}

.privacy-content::-webkit-scrollbar-track {
  background-color: transparent !important;
}

.privacy-content::-webkit-scrollbar-thumb {
  background: #a8a8a8 !important;
  border-radius: 8px !important;
}

.privacy-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8 !important;
  cursor: n-resize;
}

.privacy-content::-webkit-scrollbar-button {
  display: none !important;
}

.d_none {
  display: none;
}

.menu {
  bottom: -150px;
}

@media (max-width: 670px) {
  .menu {
    bottom: -200px !important;
  }
}
