@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {

  --text-h0: 135px/1.2 "Manrope", serif;
  --text-h1: 600 72px/1.25 "Manrope", serif;
  --text-h2: 600 60px/1.2 "Manrope", serif;
  --text-h3: 600 48px/1.25 "Manrope", serif;
  --text-h4: 600 36px/1.222 "Manrope", serif;
  --text-s1: 600 30px/1.266 "Manrope", serif;
  --text-s2: 600 24px/1.333 "Manrope", serif;
  --text-b0: 500 20px/1.5 "Manrope", serif;
  --text-b1: 400 18px/1.555 "Manrope", serif;
  --text-b2: 400 16px/1.5 "Manrope", serif;
  --text-b3: 400 14px/1.4285 "Manrope", serif;
  --text-b4: 400 12px/1.285 "Manrope", serif;

  --gray-1: #F5F6F7;
  --gray-2: #BFBFBF;
  --gray-3: #4C4C4C;
  --gray-4: rgb(76, 76, 76, 0.4);
  --text: #44434C;
  --black: #2B2B2B;
  --color-1: #BC3210;
  --color-2: #FE5B20;
  --color-3: #F38C72;
  --color-4: rgba(254, 91, 32, 0.4);
  --color-5: rgba(254, 91, 32, 0.15);
  --white: #fff;

  --atf: ease-in-out;
  --as: 0.25s;

  --radius: 8px;
  --big-radius: 64px;
}


::selection {
  background: var(--color-2);
  color: var(--white);
}

::-moz-selection {
  background: var(--color-2);
  color: var(--white);
}

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

html {
  position: relative;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", serif;
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  background: var(--gray-1);
  color: var(--black);
  overflow-x: hidden;
  min-width: 360px;
  position: relative;
}

p {
  margin: 1em 0;
}

a {
  color: var(--black);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  /* max-width: 100%; */
  user-select: none;
  pointer-events: none;
}

label {
  user-select: none;
  cursor: pointer;
}


.container {
  max-width: calc(1200px + calc(24px * 2));
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
}

.container_max {
  max-width: 1920px;
  padding-left: 0;
  padding-right: 0;
}



/* button */
.button {
  font: var(--text-b3);
  font-weight: 600;
  /* letter-spacing: 0.055em; */
  display: inline-block;
  background: var(--color-2);
  border: 1px solid var(--color-2);
  color: var(--white);
  text-transform: uppercase;
  padding: 0.5em 0.85em 0.6em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all var(--as) var(--atf);
  border-radius: var(--radius);
}

.button::after {
  /* content: url("./../images/arrow-right.svg"); */
  display: inline-block;
  margin: -0.25em 0.5em 0 0.5em;
  vertical-align: middle;
  line-height: 0;
  position: relative;
  left: 0;
  transition: all var(--as) var(--atf);
}

.button svg {
  width: 1.145em;
  height: auto;
  display: inline-block;
  margin: -0.125em 0 0 0.35em;
  /* margin: -0.25em 0.5em 0 0.5em; */
  vertical-align: middle;
  line-height: 0;
  position: relative;
  left: 0;
  transition: all var(--as) var(--atf);
}


.button_big {
  font: var(--text-b2);
  letter-spacing: 0.01em;
  padding: 0.7em 1em;
  /* padding: 1em 2.75em; */
}

.button_small {
  font: var(--text-s2);
  padding: 1em 1.85em;
}

.button:hover {
  /* opacity: 0.95; */
  background: var(--color-1);
  border-color: var(--color-1);
}

.button:hover::after,
.button:hover svg {
  left: 0.125em;
}

.button.button_disabled,
.button:disabled {
  background: var(--color-4);
  border-color: var(--color-4);
  cursor: not-allowed;
}


/* .button.header__button {
  padding: 1.5em 3em 1.45em 3.5em;
  font: var(--text-b3);
  width: 310px;
} */

/* .button.header__button::after {
  content: url("./../images/arrow-right_small.svg");
} */

.button.button_icon-play::after {
  content: url("./../images/icon-play.svg");
}

.button.button_no-arrow::after {
  content: none;
}


.button-circle {
  width: 32px;
  height: 32px;
  background: var(--color-2);
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--as) var(--atf);
}

.button-circle:hover {
  background: var(--color-1);
}

.button-circle.button-circle_top::after {
  content: url("./../images/arrow-up.svg");
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  line-height: 0;
  position: relative;
  left: 0;
}


.button.button_yt {
  background: #FF0000;
  border-color: #FF0000;
}

.button.button_vk {
  background: #0077FF;
  border-color: #0077FF;
}

.button_yt:hover,
.button_vk:hover {
  opacity: 0.9;
}


/* title */
.title {
  font: var(--text-h1);
  font-weight: 600;
  margin: 1em 0 0.45em;
}

.title span {
  color: var(--color-2);
}

.title svg {
  display: inline-block;
  width: 24px;
  margin: 0 0.25em 0 0;
}

.title.title_weight-400 {
  font-weight: 400;
}

.title.title_weight-500 {
  font-weight: 500;
}

.title.title_weight-600 {
  font-weight: 600;
}

.title.title_weight-700 {
  font-weight: 700;
}

.title .icon-logo {
  margin: 0 0 0 0.075em;
  width: 6.5em;
  position: relative;
  top: 0.025em;
  height: auto;
}

.title:first-child {
  margin-top: 0;
}

.title_center {
  text-align: center;
}

[class].title_h1,
.text h1 {
  font: var(--text-h1);
}

[class].title_h2,
.text h2 {
  font: var(--text-h2);
}

[class].title_h3,
.text h3 {
  font: var(--text-h3);
}

[class].title_h4,
.text h4 {
  font: var(--text-h4);
  letter-spacing: -0.01em;
}

[class].title_h5,
.text h5 {
  font: var(--text-s2);
}

[class].title_h6,
.text h6 {
  font: var(--text-b0);
}


#svg-libs {
  display: none;
}


.page-container {
  position: relative;
  /* padding: 0 16% 0 8.2%; */
  margin: 0 auto;
  max-width: 720px;
}

.text {
  font: var(--text-b1);
  position: relative;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5 {
  margin: 0 0 0.125em;
}

.text img {
  max-width: 100%;
  height: auto;
  margin: 0.65em 0 -0.2em;
}

.text h1+p,
.text h2+p,
.text h3+p,
.text h4+p,
.text h5+p {
  margin-top: 1.5em;
}

.text ol {
  margin: 0.5em 0 0.75em;
  padding: 0 0 0 0.85em;
  list-style: none;
}

.text ol {
  counter-reset: item;
}

.text ol li {
  display: block;
  position: relative;
  margin: 0.85em 0 0;
  padding: 0 0 0 1.5em;
}


.text ol li:first-child {
  margin-top: 0;
}

.text ol li:before {
  content: counter(item) "";
  counter-increment: item;
  color: var(--color-2);
  position: absolute;
  font-size: 0.75em;
  left: 0.125em;
  top: 0.125em;
}

.text ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

.text ul li {
  display: block;
  position: relative;
  margin: 0.5em 0 0;
  padding: 0 0 0 1.5em;
}


.text ul li:first-child {
  margin-top: 0;
}

.text ul li:before {
  content: "\2022";
  color: var(--color-2);
  position: absolute;
  font-size: 1.5em;
  left: 0;
  top: -0.3em;
}

.text__block {
  position: relative;
}

.text-info {
  position: absolute;
  left: 100%;
  margin: 0 0 0 9%;
  top: -0.5rem;
  color: var(--color-2);
  width: 200px;
}

.text-info__name {
  font: var(--text-h4);
  position: relative;
  padding: 0 0 0.2em;
}

.text-info__name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-2);
}

.text-info__text {
  padding: 0.35em 0 0;
  font: var(--text-b2);
}


.text blockquote {
  margin: 3em 0 2em;
  padding: 0.25em 0 0.75em 1.25em;
  border-left: 1px solid var(--color-2);
  font: var(--text-b1);
  position: relative;
  color: var(--color-2);
}

.text blockquote::before {
  /* content: url(./../images/icons/quote.svg); */
  position: absolute;
  left: 1em;
  top: 1em;
  z-index: -1;
  opacity: 0.3;
  transform: scale(1.9, 1.6);
  transform-origin: left top;

}

.text blockquote .blog-page__quote {
  font: var(--text-s2);
  /* line-height: 1.3; */
}

.text blockquote .blog-page__quote-author {
  font: var(--text-b3);
  font-weight: 600;
  margin: 2.25em 0 0;
}

.text blockquote .blog-page__quote-author::before {
  content: "—";
  display: inline-block;
  margin: 0 0.5em 0 0;
}