html {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
}

a:link {
  color: #fff;
}

a:visited {
  color: #fff;
}

a:active {
  color: #fff;
}

a:hover {
  color: #fff;
}

body {
  background: #020434;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

.fadeIn {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
}

.wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
  width: 100px;
}

.privacy-logo {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color);
  text-decoration: none;
}

.logo-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.contact-column {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-body {
  font-size: 20px;
  font-weight: 300;
}

.location,
.location:link,
.location:visited,
.location:active {
  color: rgba(255, 255, 255, 0.6) !important;
}

.phone,
.email {
  font-weight: 500;
}

.contact-column-margin-top {
  margin-top: 24px;
}

.contact-column:hover {
  background: #fff;
  color: #020434;
}

.contact-column:hover .contact-info-body,
.contact-column:hover a {
  color: #020434 !important;
}

.info {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  margin-bottom: 8vh;
}

.landing-text-wrapper {
  margin-left: 2vw;
}

.landing-title-text {
  font-size: 50px;
  font-weight: 700;
}

.landing-body-text {
  font-size: 16px;
  padding-right: 16px;
  margin-bottom: 32px;
}

h2,
h3 {
  font-weight: 600;
  margin-bottom: -0.5em;
}

h4 {
  font-size: 15px;
  margin-bottom: -1em;
}

.privacy-wrapper {
  height: 100vh;
  max-width: 90vw;
  padding: 20px 0;
  width: auto;
}

.privacy-body-list {
  font-size: 15px;
  padding-inline-start: 0;
  list-style-type: disc;
  list-style-position: inside;
}

.privacy-body-text {
  font-size: 16px;
}

.privacy-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.privacy-contact-column {
  flex: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 578px) {
  .logo-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .logo {
    padding: 16px;
    width: 50px;
  }

  .landing-title-text {
    font-size: 36px;
  }
}

@media screen and (min-width: 800px) {
  .privacy-wrapper {
    max-width: 70vw;
    padding: 20px 0;
  }
}

@media screen and (min-width: 1640px) {
  .privacy-wrapper {
    max-width: 70vw;
    padding: 20px 0;
  }
}