@charset "UTF-8";
html, body, div, span,
h1, p,
a, img, ul, li, footer, header,
main, nav {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

footer, header, main, nav {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */

body {
  line-height: 1;
}

 ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

:root {
  --amaranth-red: #e81649;
  --lightest-grey: #fbfcff;
  --grey: #d0ccd0;
  --graphite-black: #262626;
  --calm-deep-green: #254441;
  --light-green: #42aa8b;
  --font-family: "Quietism Text", sans-serif;
  --second-family: "Quietism VFR", sans-serif;
  --third-family: "Geologica", sans-serif;
}

@font-face {
  font-family: "Quietism VFR";
  src: url("../fonts/QuietismVariable-Roman.woff2") format("woff2"), url("../fonts/QuietismVariable-Roman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Quietism VFR";
  src: url("../fonts/QuietismVariable-Italic.woff2") format("woff2"), url("../fonts/QuietismVariable-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
	font-family: 'Quietism Text';
	src: url('../fonts/QuietismText-Regular.eot');
	src: url('../fonts/QuietismText-Regular.eot?#iefix') format('embedded-opentype'),
			url('../fonts/QuietismText-Regular.woff2') format('woff2'),
			url('../fonts/QuietismText-Regular.woff') format('woff'),
			url('../fonts/QuietismText-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Quietism Text';
	src: url('../fonts/QuietismText-Bold.eot');
	src: url('../fonts/QuietismText-Bold.eot?#iefix') format('embedded-opentype'),
			url('../fonts/QuietismText-Bold.woff2') format('woff2'),
			url('../fonts/QuietismText-Bold.woff') format('woff'),
			url('../fonts/QuietismText-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Quietism Text';
	src: url('../fonts/QuietismText-BoldItalic.eot');
	src: url('../fonts/QuietismText-BoldItalic.eot?#iefix') format('embedded-opentype'),
			url('../fonts/QuietismText-BoldItalic.woff2') format('woff2'),
			url('../fonts/QuietismText-BoldItalic.woff') format('woff'),
			url('../fonts/QuietismText-BoldItalic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

body {
  font-family: var(--font-family), sans-serif;
  overflow-x: hidden;
}

.wrapper {
  padding: 0 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.header {
  padding: 4.267vw 0;
  border-bottom: 1.5px solid var(--graphite-black);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--lightest-grey);
  z-index: 999;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header__download {
  width: 10.667vw;
  height: 10.667vw;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--graphite-black);
  border-radius: 50%;
}
.header__download svg {
  width: 4.267vw;
  height: 4.267vw;
}
.header__download span {
  display: none;
}
.header__logo {
  display: block;
}
.header__logo img {
  width: 30.4vw;
  height: auto;
}
.header__zagoriy_desktop {
  display: none;
}
.header__burger {
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
.header__burger svg rect {
  transition: all 0.5s;
}
.header__burger_active svg rect:nth-child(1) {
  x: 4;
  y: 10;
}
.header__burger_active svg rect:nth-child(2) {
  fill: var(--amaranth-red);
}
.header__burger_active svg rect:nth-child(3) {
  x: 16;
  y: 10;
}
.header__burger svg {
  width: 6.4vw;
  height: 6.4vw;
}
.header__menu {
  display: none;
}
.header__menu_mobile {
  padding-top: 4.267vw;
  margin: 0 -16px;
  width: calc(100% + 32px);
  max-height: 85vh;
  overflow-y: auto;
}
.header__menu_mobile_active {
  display: flex;
  flex-direction: column;
}
.header__menu_mobile .menu-item {
  padding: 6.4vw 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 4.267vw;
  line-height: 112%;
  text-transform: uppercase;
  color: var(--graphite-black);
  border-top: 1.5px solid var(--graphite-black);
  text-align: center;
}
.header__menu_mobile .menu-item a {
  color: var(--graphite-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__menu_mobile .menu-item a:before {
  content: "";
  margin-right: 1.867vw;
  height: 1.067vw;
  width: 1.067vw;
  background: var(--amaranth-red);
}
.header__menu_mobile .menu-item a:hover {
  color: rgba(38, 38, 38, 0.4);
}
.header__menu_mobile .menu-item a:hover:before {
  background: var(--graphite-black);
}
.header__menu_mobile .menu-item a:focus {
  color: var(--graphite-black);
}
.header__menu_mobile .menu-item a:focus:before {
  background: var(--graphite-black);
}
.header__social {
  padding: 6.4vw 16px;
  border-top: 1.5px solid var(--graphite-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__social a {
  margin: 0 5.333vw;
  color: var(--graphite-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.267vw;
  text-transform: uppercase;
}
.header__social a:before {
  content: "";
  margin-right: 1.867vw;
  height: 1.067vw;
  width: 1.067vw;
  background: var(--amaranth-red);
}
.header__social a:hover {
  color: rgba(38, 38, 38, 0.4);
}
.header__social a:hover:before {
  background: var(--graphite-black);
}
.header__social a:focus {
  color: var(--graphite-black);
}
.header__social a:focus:before {
  background: var(--graphite-black);
}
.header__zagoriy {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 4.267vw;
  line-height: 200%;
  text-transform: uppercase;
  color: var(--graphite-black);
  padding: 4.267vw 16px 0;
  border-top: 1.5px solid var(--graphite-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .header {
    width: 329px;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 64px 30px 48px;
    border-right: 2px solid var(--graphite-black);
  }
  .header::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .header::-webkit-scrollbar-button {
    width: 6px;
    height: 6px;
  }
  .header::-webkit-scrollbar-thumb {
    background: var(--graphite-black);
    border: 0px none #ffffff;
    border-radius: 50px;
  }
  .header::-webkit-scrollbar-thumb:hover {
    background: #c0c5cf;
  }
  .header::-webkit-scrollbar-thumb:active {
    background: #c0c5cf;
  }
  .header::-webkit-scrollbar-track {
    background: rgba(208, 204, 208, 0.4);
    border: 0;
    border-radius: 50px;
  }
  .header::-webkit-scrollbar-track:hover {
    background: #ffffff;
  }
  .header::-webkit-scrollbar-track:active {
    background: #ffffff;
  }
  .header::-webkit-scrollbar-corner {
    background: transparent;
  }
  .header .wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: nowrap;
    padding: 0;
  }
  .header__logo {
    order: 0;
    width: 188px;
    margin-bottom: 53px;
  }
  .header__logo img {
    width: 188px;
  }
  .header__burger {
    display: none;
  }
  .header__zagoriy_desktop {
    display: flex;
    order: 1;
    flex: 1;
    height: 100%;
    align-items: center;
    margin-bottom: 53px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
    text-transform: uppercase;
    text-align: center;
    color: var(--graphite-black);
  }
  .header__menu_mobile {
    display: none;
  }
  .header__menu_desktop {
    display: flex;
    order: 2;
    height: 100%;
    flex: 1;
    align-items: center;
    margin-bottom: 53px;
  }
  .header__menu_desktop .menu-item {
    padding: 8px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    text-transform: uppercase;
    color: var(--graphite-black);
    text-align: center;
    margin-bottom: 24px;
  }
  .header__menu_desktop .menu-item:last-child {
    margin-bottom: 0;
  }
  .header__menu_desktop .menu-item a {
    color: var(--graphite-black);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__menu_desktop .menu-item a:before {
    content: "";
    margin-right: 8px;
    height: 4px;
    width: 4px;
    background: var(--amaranth-red);
  }
  .header__menu_desktop .menu-item a:hover {
    color: rgba(38, 38, 38, 0.4);
  }
  .header__menu_desktop .menu-item a:hover:before {
    background: var(--graphite-black);
  }
  .header__menu_desktop .menu-item a:focus {
    color: var(--graphite-black);
  }
  .header__menu_desktop .menu-item a:focus:before {
    background: var(--graphite-black);
  }
  .header__download {
    order: 3;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    background: var(--graphite-black);
  }
  .header__download span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    text-transform: uppercase;
    text-align: center;
    color: var(--lightest-grey);
    max-width: 145px;
    margin-bottom: 0;
  }
  .header__download span:before {
    content: "";
    margin-bottom: 10px;
    height: 4px;
    width: 4px;
    background: var(--amaranth-red);
  }
  .header__download svg {
		display: none;
    width: 34px;
    height: 33px;
  }
  .header__download svg path {
    fill: var(--lightest-grey);
  }
  .header__download:focus,
  .header__download:hover {
    background: transparent;
  }
  .header__download:focus span,
  .header__download:hover span {
    color: var(--graphite-black);
  }
  .header__download:focus svg path,
  .header__download:hover svg path {
    fill: #262626;
  }
}

.main {
  padding: 30.133vw 0 0;
}
@media screen and (min-width: 992px) {
  .main {
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    height: 100vh;
    padding: 0 0 0 329px;
  }
}
@media screen and (min-width: 992px) {
  .main > .wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
  }
  .main > .wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .main > .wrapper::-webkit-scrollbar-button {
    width: 6px;
    height: 6px;
  }
  .main > .wrapper::-webkit-scrollbar-thumb {
    background: var(--graphite-black);
    border: 0px none #ffffff;
    border-radius: 50px;
  }
  .main > .wrapper::-webkit-scrollbar-thumb:hover {
    background: #c0c5cf;
  }
  .main > .wrapper::-webkit-scrollbar-thumb:active {
    background: #c0c5cf;
  }
  .main > .wrapper::-webkit-scrollbar-track {
    background: rgba(208, 204, 208, 0.4);
    border: 0;
    border-radius: 50px;
  }
  .main > .wrapper::-webkit-scrollbar-track:hover {
    background: #ffffff;
  }
  .main > .wrapper::-webkit-scrollbar-track:active {
    background: #ffffff;
  }
  .main > .wrapper::-webkit-scrollbar-corner {
    background: transparent;
  }
}

.footer {
  border-top: 1px solid var(--graphite-black);
  padding: 6.4vw 0;
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__menu .menu-item {
  padding: 8px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 4.267vw;
  line-height: 112%;
  text-transform: uppercase;
  color: var(--graphite-black);
  text-align: center;
  margin-bottom: 6.4vw;
}
.footer__menu .menu-item a {
  color: var(--graphite-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__menu .menu-item a:before {
  content: "";
  margin-right: 1.867vw;
  height: 1.067vw;
  width: 1.067vw;
  background: var(--amaranth-red);
}
.footer__menu .menu-item a:hover {
  color: rgba(38, 38, 38, 0.4);
}
.footer__menu .menu-item a:hover:before {
  background: var(--graphite-black);
}
.footer__menu .menu-item a:focus {
  color: var(--graphite-black);
}
.footer__menu .menu-item a:focus:before {
  background: var(--graphite-black);
}
.footer__copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 4.267vw;
  text-transform: uppercase;
  color: var(--graphite-black);
}
@media screen and (min-width: 992px) {
  .footer {
    padding: 26px 0;
  }
  .footer .wrapper {
    justify-content: center;
    align-items: center;
  }
  .footer__menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__menu .menu-item {
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 50px;
  }
  .footer__menu .menu-item a:before {
    margin-right: 8px;
    height: 4px;
    width: 4px;
  }
  .footer__copyright {
    margin-top: 24px;
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (min-width: 1442px) {
  .footer__copyright {
    margin-top: 0;
    width: auto;
    text-align: left;
  }
  .footer__menu .menu-item {
    margin-right: 80px;
  }
}

.main-post > .wrapper {
  margin-bottom: 21.333vw;
}
.main-post__head {
  margin-bottom: 10.667vw;
  text-align: center;
}
.main-post__head-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 3.733vw;
  line-height: 143%;
  text-transform: uppercase;
  color: var(--graphite-black);
  margin-bottom: 4.8vw;
}
.main-post__head-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 8.533vw;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--graphite-black);
}
.main-post__image {
  width: calc(100% + 32px);
  max-width: calc(100% + 32px);
  max-height: 58vh;
  border-bottom: 1.5px solid var(--graphite-black);
  border-top: 1.5px solid var(--graphite-black);
  margin: 0 -16px 10.667vw;
  overflow: hidden;
}
.main-post__image-desktop {
  display: none;
}
.main-post__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.main-post__content {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 4.267vw;
  line-height: 5.87vw;
  color: var(--graphite-black);
}
.main-post__content p {
  margin-bottom: 4.267vw;
}
@media screen and (min-width: 992px) {
  .main-post > .wrapper {
    padding: 0;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
		display: flex;
  }
  .main-post__wrapper {
    max-height: 100vh;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    width: auto;
    padding: 3.333vw;
  }
  .main-post__wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .main-post__wrapper::-webkit-scrollbar-button {
    width: 6px;
    height: 6px;
  }
  .main-post__wrapper::-webkit-scrollbar-thumb {
    background: var(--graphite-black);
    border: 0px none #ffffff;
    border-radius: 50px;
  }
  .main-post__wrapper::-webkit-scrollbar-thumb:hover {
    background: #c0c5cf;
  }
  .main-post__wrapper::-webkit-scrollbar-thumb:active {
    background: #c0c5cf;
  }
  .main-post__wrapper::-webkit-scrollbar-track {
    background: rgba(208, 204, 208, 0.4);
    border: 0;
    border-radius: 50px;
  }
  .main-post__wrapper::-webkit-scrollbar-track:hover {
    background: #ffffff;
  }
  .main-post__wrapper::-webkit-scrollbar-track:active {
    background: #ffffff;
  }
  .main-post__wrapper::-webkit-scrollbar-corner {
    background: transparent;
  }
  .main-post__head {
    margin-bottom: 40px;
    text-align: left;
  }
  .main-post__head-date {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .main-post__head-title {
    font-size: 32px;
    text-align: left;
  }
  .main-post__image {
    display: none;
  }
  .main-post__image-desktop {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    width: auto;
    height: 100vh;
		flex: none;
    border-left: 2px solid var(--graphite-black);
  }
  .main-post__image-desktop img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .main-post__content {
    font-size: 16px;
		line-height: 22px;
  }
  .main-post__content p {
    margin-bottom: 16px;
  }
}
