@font-face {
  font-family: "WorkSans Regular";
  src: url("../fonts/WorkSans-Regular.ttf");
}
@font-face {
  font-family: "WorkSans SemiBold";
  src: url("../fonts/WorkSans-SemiBold.ttf");
}
@font-face {
  font-family: "WorkSans Bold";
  src: url("../fonts/WorkSans-Bold.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a, a:visited {
  text-decoration: none;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  background-color: #FEFEFE;
}

.block-width {
  max-width: 328px;
  width: 100%;
  margin: auto;
}

.common__paragraph-text {
  font-size: 18px;
  font-family: "WorkSans Regular";
  color: #797C7F;
  line-height: 27px;
  margin-bottom: 27px;
}
.common__paragraph-header {
  font-size: 28px;
  font-family: "WorkSans Bold";
  color: #2B2F34;
  margin-bottom: 17px;
}
.common__link {
  font-size: 18px;
  font-family: "WorkSans Regular";
  color: #00C848;
}

@media only screen and (min-width: 768px) {
  .block-width {
    max-width: 704px;
  }
  .common__paragraph-text {
    margin-bottom: 27px;
  }
  .common__paragraph-header {
    margin-bottom: 36px;
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .common__paragraph-text {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 36px;
  }
  .common__paragraph-header {
    font-size: 36px;
    margin-bottom: 52px;
  }
  .common__link {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .block-width {
    max-width: 1320px;
  }
}
header {
  position: fixed;
  background: #FFF;
  padding: 9px 21px 9px 24px;
  width: 100%;
  z-index: 100;
}

.header-fit {
  position: relative;
}
.header__logo {
  font-size: 18px;
  font-family: "WorkSans SemiBold", sans-serif;
  color: #2B2F34;
  display: inline-block;
}
.header__logo-image {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0px 0px 5px 2px #d9eede;
  border-radius: 50%;
}
.header__hamburger {
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  position: absolute;
  width: 18px;
  cursor: pointer;
}
.header__hamburger:before, .header__hamburger:after, .header__hamburger div {
  background: #000;
  content: "";
  display: block;
  height: 2px;
  border-radius: 3px;
  margin: 3px 0;
  transition: 0.5s;
}
.header__hamburger--open:before {
  transform: translateY(5px) rotate(135deg);
}
.header__hamburger--open:after {
  transform: translateY(-5px) rotate(-135deg);
}
.header__hamburger--open div {
  transform: scale(0);
}

.menu--mobile {
  display: none;
  position: fixed;
  top: 47px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 100;
  overflow-y: auto;
}
.menu--mobile__cover {
  padding-top: 45px;
  margin: 0 20px;
}
.menu--open {
  display: block;
}
.menu__item {
  color: #2B2F34;
  display: block;
  background: transparent;
  padding-bottom: 25px;
  font-size: 28px;
  font-family: "WorkSans Medium", sans-serif;
}
.menu__item--active {
  color: #00C848;
}

@media only screen and (min-width: 768px) {
  header {
    padding: 16px 30px 15px 31px;
  }
  .header__logo {
    font-size: 32px;
  }
  .header__logo-image {
    width: 44px;
    height: 44px;
    margin-right: 8px;
  }
  .header__hamburger {
    width: 26px;
  }
  .header__hamburger:before, .header__hamburger:after, .header__hamburger div {
    height: 3px;
    margin: 3px 0;
    transition: 0.5s;
  }
  .header__hamburger--open:before {
    transform: translateY(2px) rotate(135deg);
  }
  .header__hamburger--open:after {
    transform: translateY(-10px) rotate(-135deg);
  }
  .menu--mobile {
    padding-top: 15px;
    top: 66px;
  }
  .menu--mobile__cover {
    margin: 0 30px;
  }
  .menu__item {
    padding: 25px 0 25px 0;
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) {
  header {
    padding: 0;
  }
  .header-fit {
    width: 100%;
    max-width: 1380px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 30px;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  body {
    padding-top: 80px;
  }
  .header__hamburger {
    display: none;
  }
  .menu {
    position: relative;
    display: block;
    margin-left: auto;
    top: 0;
  }
  .menu--mobile {
    background: transparent;
    padding-top: 0;
    margin-top: 0;
    overflow-y: hidden;
  }
  .menu--mobile__cover {
    border-top: none;
    padding-top: 0;
    margin: 0;
  }
  .menu__item {
    color: #797C7F;
    font-family: "WorkSans SemiBold", sans-serif;
    font-size: 20px;
    line-height: 35px;
    padding: 0 8px;
    display: inline-block;
    text-align: center;
    margin-right: 29px;
    text-decoration: none;
  }
  .menu__item--active {
    color: #00C848;
  }
  .menu__item:last-child {
    margin-right: 0;
  }
}
.footer {
  background-color: #454E65;
  padding: 0 25px;
}
.footer__content {
  padding: 28px 0 26px;
}
.footer__menu {
  margin-bottom: 29px;
}
.footer__copyright {
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  font-family: "WorkSans Regular";
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-menu__link {
  color: #FFFFFF;
  display: block;
  font-size: 13px;
  font-family: "WorkSans Regular";
}

@media only screen and (min-width: 768px) {
  .footer {
    padding: 0 30px;
  }
  .footer__content {
    padding: 24.5px 0 40.5px;
  }
  .footer__menu {
    margin-bottom: 0;
  }
  .footer__copyright {
    text-align: left;
    float: right;
    font-size: 14px;
  }
  .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    float: left;
  }
  .footer-menu__item {
    margin-right: 40px;
  }
  .footer-menu__item:last-child {
    margin-right: 0;
  }
  .footer-menu__link {
    display: block;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1440px) {
  .footer {
    padding: 0 30px;
  }
  .footer__content {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    padding: 20px 0 40px 0;
  }
  .footer__copyright {
    font-size: 14px;
  }
  .footer-menu__link {
    font-size: 16px;
  }
}
.common__paragraph-header {
  margin-top: 33px;
}

.privacy {
  padding-top: 96px;
  padding-bottom: 60px;
}
.privacy__content {
  width: 300px;
  margin: 0 auto;
}
.privacy__header {
  font-size: 30px;
  font-weight: bold;
  font-family: "Montserrat Bold", sans-serif;
  line-height: 45px;
  color: #2B2F34;
}
.privacy__updated {
  font-size: 18px;
  font-family: "Montserrat Regular";
  color: #797C7F;
  line-height: 27px;
  margin-top: 10px;
  margin-bottom: 27px;
}

.privacy-links {
  margin-left: 20px;
  margin-bottom: 27px;
}
.privacy-links__item {
  font-size: 18px;
  font-family: "Montserrat Regular";
  color: #797C7F;
  line-height: 27px;
}
.privacy-links__link {
  font-size: 18px;
  font-family: "Montserrat Regular";
  color: #00C848;
  word-break: break-all;
}

.no-margin {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .common__paragraph-header {
    font-size: 36px;
    margin-top: 72px;
  }
  .privacy {
    padding-top: 147px;
    padding-bottom: 80px;
  }
  .privacy__header {
    font-size: 48px;
    line-height: 54px;
  }
  .privacy__updated {
    font-size: 20px;
  }
  .privacy__content {
    width: 673px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .common__paragraph-header {
    font-size: 36px;
    margin-top: 72px;
  }
  .privacy {
    padding-top: 83px;
    padding-bottom: 80px;
  }
  .privacy__header {
    font-size: 60px;
    margin-bottom: 54px;
  }
  .privacy__updated {
    font-size: 18px;
    line-height: 36px;
    margin-top: 10px;
  }
  .privacy__content {
    width: 903px;
    margin: 0 auto;
  }
  .privacy-links {
    margin-bottom: 36px;
  }
  .privacy-links__item {
    font-size: 20px;
    line-height: 36px;
  }
  .privacy-links__link {
    font-size: 20px;
  }
}

/*# sourceMappingURL=privacy.css.map */
