:root {
  --endovideo-red: #a30f1a;
  --endovideo-red-dark: #7f0c15;
  --text: #1a1a1a;
  --muted: #555;
  --page-bg: #e6e6e6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;    
  background: var(--page-bg);
}

body.privacy-page {
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: var(--endovideo-red);
}

.nav.navbar {
  justify-content: center;
  min-height: 90px;
  padding: 24px 0;
}

.logo.navbar-brand {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.logo__img {
  max-width: 200px;
}

.main {
  width: 100%;
  min-width: 100%;
}

.privacy {
  min-height: 620px;
  padding: 160px 0 80px;
  background: var(--page-bg);
}

.privacy__content {
  max-width: 780px;
  margin: 0;
}

.privacy__eyebrow {
  margin: 0 0 14px;
  color: var(--endovideo-red);
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy__title {
  margin: 0 0 24px;
  color: var(--endovideo-red);
  max-width: 100%;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.privacy__text {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.privacy__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 58px;
  padding: 16px 28px;
  border: 2px solid var(--endovideo-red);
  border-radius: 50px;
  background: var(--endovideo-red);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.privacy__button:hover,
.privacy__button:focus-visible {
  background: var(--endovideo-red-dark);
  border-color: var(--endovideo-red-dark);
  color: #fff;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .privacy__title {
    font-size: 44px;
  }
}

@media (min-width: 992px) {
  .nav {
    min-height: 240px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
  }

  .privacy {
    min-height: 720px;
    padding-top: 300px;
  }

  .privacy__title {
    font-size: 58px;
    line-height: 0.95;
  }

  .privacy__text {
    font-size: 22px;
    line-height: 1.45;
  }

}

@media (min-width: 1200px) {
}
