* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

.container {
  width: 100%;
  position: relative;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

.wrapper {
  min-height: 100vh;
}
.wrapper .main {
  flex-grow: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/*Start here PRIVACY page styles*/
.privacy {
  padding: 85px 0 70px 0;
  display: flex;
  flex-direction: column;
}
.privacy__title {
  color: #fff;
  /* Header-2 Bold */
  font-family: Outfit;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px; /* 133.333% */
}
@media (max-width: 1180px) {
  .privacy__title {
    font-size: calc(
      30px + 30 *
        ((100vw - 320px) / 860)
    );
  }
}
.privacy__links {
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 10px;
}
@media (max-width: 900px) {
  .privacy {
    padding: 55px 0;
  }
}
.privacy__icon {
  font-size: 14px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 80px 0;
}
.content__title {
  color: #fff;
  font-family: Outfit;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.content__text {
  color: #fff;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
.content__theme {
  color: #fff;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  display: block;
  margin-top: 10px;
}