body {
  background-color: #f6f7f8;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  /* Standard Regular */
}

h1 {
  font-size: 73px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

.privacy-policy {
  margin: 80px 100px 32px 300px;
  position: sticky;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  overflow-y: auto;
  height: 100%;
}

.titleFromPolicy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  width: 100%;
}

.dropdown {
  float: right;
  position: relative;
}

.show {
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  padding: 20px 40px 20px 348px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-content img {
  height: 40px;
  display: none;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icons img {
  height: 32px;
}

.header-help:hover {
  height: 38px;
  cursor: pointer;
}

.header-user-name {
  height: 50px;
  width: 50px;
  border: 3px solid #2a3647;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #29abe2;
  background-color: rgba(12, 46, 98, 0.12);
  display: none;
}

.header-user-name:hover {
  cursor: pointer;
}

.user-content {
  display: none;
  position: absolute;
  background-color: #2a3647;
  min-width: 140px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px 0px 20px 20px;
  padding: 10px;
  top: 96px;
  right: 0;
  z-index: 1;
  cursor: pointer;
}

.user-content a {
  color: #cdcdcd;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.user-content a:hover {
  background-color: #2a3d59;
}

.sidebar {
  background-color: #2a3647;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 232px;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.sidebar-logo {
  width: 100.03px;
  height: 121.97px;
  margin-bottom: 80px;
}

.sidebar img {
  width: 100px;
}

.sidebar-menu {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 200px;
}

.sidebar-links {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #cdcdcd;
  gap: 5px;
  font-size: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 56px;
  width: 176px;
}

.sidebar-links:hover {
  background-color: #2a3d59;
}

.sidebar-links img {
  width: 25px;
  height: 25px;
}

.sidebar-menu-bottom {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.sidebar-menu-bottom a {
  text-decoration: none;
  color: #a8a8a8;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 232px;
}

.sidebar-menu-bottom a:hover {
  color: #29abe2;
  font-weight: 700;
}

.active {
  background-color: #091931;
}

@media (max-width: 1050px) {
  header {
    padding: 20px 40px 20px 40px;
  }

  .header-content img {
    display: block;
  }

  .header-content p {
    display: none;
  }

  .header-user-name {
    height: 40px;
    width: 40px;
  }

  .sidebar {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    width: auto;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sidebar-logo {
    display: none;
  }

  .sidebar-menu {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    height: 80px;
  }

  .sidebar-links {
    flex-direction: column;
    padding-left: 8px;
    width: auto;
    padding: 8px;
    border-radius: 8px;
  }

  .sidebar-menu-bottom {
    display: none;
  }
}

@media (max-width: 600px) {
  .sidebar-links {
    font-size: 12px;
  }

  .sidebar-links img {
    width: 20px;
    height: 20px;
  }
}
