/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* stylelint-disable indentation */
/* stylelint-disable at-rule-empty-line-before */
/* Open Sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v34-latin_cyrillic-regular.woff2") format("woff2"), url("../fonts/open-sans-v34-latin_cyrillic-regular.woff") format("woff");
  font-display: swap;
}
/* Open Sans-500 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/open-sans-v34-latin_cyrillic-500.woff2") format("woff2"), url("../fonts/open-sans-v34-latin_cyrillic-500.woff") format("woff");
  font-display: swap;
}
/* Open Sans-600 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v34-latin_cyrillic-600.woff2") format("woff2"), url("../fonts/open-sans-v34-latin_cyrillic-600.woff") format("woff");
  font-display: swap;
}
/* Open Sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v34-latin_cyrillic-700.woff2") format("woff2"), url("../fonts/open-sans-v34-latin_cyrillic-700.woff") format("woff");
  font-display: swap;
}
:root {
  box-sizing: border-box;
}

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

body {
  /* overflow-x: hidden; */
  font-family: var(--font-main);
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

p {
  padding: 0;
  margin: 0;
}

img, svg {
  vertical-align: top;
}

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

button,
input[type=submit] {
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: none;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  background-color: var(--color-accent);
  border-radius: 10px;
  transition: 0.2s all ease;
}
.button:hover {
  background-color: #4a4545;
  transition: 0.2s all ease;
}
.button:active {
  background-color: var(--color-accent);
}

.decor-elem--1 {
  position: absolute;
  right: 100px;
  bottom: 20px;
  height: 244px;
  border-left: 1px dotted #b4bec8;
  animation: scroll-animation 2s forwards ease infinite;
}
@media screen and (max-width: 1536px) {
  .decor-elem--1 {
    display: none;
  }
}

.decor-elem--2 {
  position: absolute;
  top: -220px;
  left: 174px;
  height: 244px;
  border-left: 1px dotted #b4bec8;
  animation: scroll-animation 2s forwards ease infinite;
}
@media screen and (max-width: 768px) {
  .decor-elem--2 {
    display: none;
  }
}

.decor-elem-inner {
  position: relative;
  top: 60%;
  left: -50%;
  width: 36px;
  height: 244px;
  height: 54px;
  background-color: #b4bec8;
  border-radius: 10px;
}
.decor-elem-inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  content: url("../img/header/arrow-right-white.svg");
  transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes scroll-animation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.modal {
  position: fixed;
  z-index: 150;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal--active {
  display: grid;
}

.modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  padding: 70px;
  padding-bottom: 100px;
  margin: auto;
  color: #fff;
  background-color: var(--color-accent);
  border-radius: 10px;
  box-shadow: 2px 10px 28px rgba(75, 0, 129, 0.12);
}
@media screen and (max-width: 576px) {
  .modal__inner {
    width: 320px;
    height: auto;
    padding: 30px;
  }
}
.modal__inner::before {
  position: absolute;
  bottom: -77px;
  left: -77px;
  width: 154px;
  height: 154px;
  content: url("../img/decor-dots.svg");
}
.modal__inner::after {
  position: absolute;
  top: -77px;
  right: -77px;
  width: 154px;
  height: 154px;
  content: url("../img/decor-dots.svg");
}

.modal__close {
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .modal__close {
    top: 10px;
    left: 10px;
  }
}

.modal__title {
  position: relative;
  max-width: 320px;
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  text-align: center;
  letter-spacing: 0.05em;
}
.modal__title::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 140px;
  height: 2px;
  content: "";
  background-color: #fff;
  transform: translateX(-50%);
}
@media screen and (max-width: 576px) {
  .modal__title {
    font-size: 24px;
  }
}

.modal__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}

.hidden {
  display: none !important;
}

.body--stop-scroll {
  height: 100%;
  overflow: hidden;
}

.container {
  max-width: 1248px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 576px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  padding: 6px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .container-wide {
    padding: 10px;
  }
}

#panelcontainer {
  z-index: 10;
  width: 162px;
  height: 32px;
}

.text-accent-span {
  color: var(--color-accent);
}

.scroll-up-button {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  cursor: pointer;
  visibility: hidden;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s all ease;
  transform: translateY(40px);
  background-color: rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1921px) {
  .scroll-up-button {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .scroll-up-button {
    display: none;
  }
}
.scroll-up-button:hover {
  opacity: 0.6;
}
.scroll-up-button:active {
  opacity: 0.8;
}
.scroll-up-button--active {
  visibility: visible;
  opacity: 0.8;
  transition: 0.2s all ease;
  transform: translateY(0);
}

.scroll-up-button__img {
  width: 48px;
  height: 48px;
}

.header {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
@media screen and (min-width: 1921px) {
  .header {
    height: auto;
  }
}
@media screen and (max-width: 1536px) {
  .header {
    height: auto;
  }
}

.header__id2-container {
  background-color: #f5f5f5;
}

.header__id2-container-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__id2-container-logo-img {
  width: 200px;
  height: 20px;
  object-fit: contain;
}

.header__upper {
  position: relative;
  background: linear-gradient(90deg, #fff 54%, var(--color-accent) 84%);
  box-shadow: 0 21px 80px rgba(122, 117, 117, 0.05), 0 2px 10.0172px rgba(122, 117, 117, 0.025);
}
@media screen and (max-width: 576px) {
  .header__upper {
    background: linear-gradient(90deg, #fff 0%, var(--color-accent) 90%);
  }
}

.header__container--upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
}
@media screen and (max-width: 980px) {
  .header__container--upper {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .header__container--upper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .header__container--upper {
    flex-direction: row;
  }
}

.header__logo-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .header__logo-list {
    margin: 10px;
  }
}
@media screen and (max-width: 576px) {
  .header__logo-list {
    display: none;
  }
}

.header__logo-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-list-item:not(:last-child) {
  margin-right: 40px;
}

.header__logo-img {
  object-fit: contain;
  width: 100px;
  height: 70px;
}

.header__burger-button {
  display: none;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .header__burger-button {
    display: flex;
  }
}

.header__burger-img rect {
  fill: var(--color-accent);
}

@media screen and (max-width: 980px) {
  .header__nav {
    margin: 10px;
  }
}
@media screen and (max-width: 576px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.96);
  }
}
.header__nav--active {
  display: flex;
}

.header__nav-close {
  display: none;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .header__nav-close {
    position: absolute;
    top: 70px;
    right: 14px;
    z-index: 30;
    display: flex;
    width: 40px;
    height: 40px;
  }
}

.header__nav-svg {
  width: 40px;
  height: 40px;
}

.header__menu {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
  }
}

.header__menu-item {
  cursor: pointer;
}
.header__menu-item:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header__menu-item:not(:last-child) {
  margin-right: 34px;
}
@media screen and (max-width: 576px) {
  .header__menu-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}

.header__info-wrapper {
  z-index: 0;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 980px) {
  .header__info-wrapper {
    margin: 10px;
  }
}

.header__date-wrapper {
  margin-right: 20px;
}

.header__date {
  z-index: -1;
  margin-bottom: 10px;
  font-size: 30px;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .header__date {
    color: #000;
  }
}
@media screen and (max-width: 576px) {
  .header__date {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 140.5%;
    letter-spacing: 0.03em;
    color: #fff;
  }
}

.header__date-mode {
  z-index: -1;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .header__date-mode {
    color: #000;
  }
}
@media screen and (max-width: 576px) {
  .header__date-mode {
    color: #fff;
  }
}

.header__date-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__container--lower {
  position: relative;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .header__container--lower {
    height: auto;
  }
}

.header__lower {
  position: relative;
  flex-grow: 1;
  padding-top: 190px;
}
@media screen and (max-width: 900px) {
  .header__lower {
    padding-top: 120px;
  }
}
@media screen and (max-width: 576px) {
  .header__lower {
    flex-grow: 0;
    padding-top: 80px;
    padding-bottom: 0;
  }
}

.header__left {
  position: relative;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .header__left {
    width: 100%;
  }
}

.header__decor-elem-img {
  transform: rotate(180deg);
}

.header__right {
  position: relative;
  display: flex;
  justify-content: center;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .header__right {
    display: none;
  }
}

.header__right-picture {
  position: absolute;
  padding-left: 200px;
}
@media screen and (max-width: 576px) {
  .header__right-picture {
    display: none;
  }
}

.header__picture-source {
  object-fit: contain;
  width: 418px;
  height: 338px;
}

.header__img {
  object-fit: contain;
  width: 550px;
  height: 338px;
}

.header__title {
  margin-bottom: 30px;
  font-size: 52px;
  font-weight: 600;
  line-height: 61px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .header__title {
    font-size: 35px;
    line-height: 41px;
  }
}

.header__text {
  max-width: 480px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 576px) {
  .header__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.02em;
  }
}

.header__button {
  position: relative;
  padding-right: 60px;
  margin-bottom: 200px;
}
@media screen and (max-width: 900px) {
  .header__button {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 576px) {
  .header__button {
    margin-bottom: 0;
  }
}
.header__button::before {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 22px;
  height: 12px;
  content: url("../img/header/white-arrow-right.svg");
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .header__button::before {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .header__button {
    width: 100%;
    padding-right: 40px;
  }
}

.features__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.features__title {
  max-width: 560px;
  margin-bottom: 44px;
  font-size: 52px;
  font-weight: 600;
  line-height: 61px;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .features__title {
    font-size: 35px;
    line-height: 41px;
  }
}

.features__descr-wrapper {
  position: relative;
  margin-bottom: 44px;
}
.features__descr-wrapper::before {
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 1px;
  height: 82px;
  content: "";
  background-color: #b4bec8;
}
.features__descr-wrapper::after {
  position: absolute;
  top: 0;
  right: 14px;
  width: 1px;
  height: 82px;
  content: "";
  background-color: #b4bec8;
}

.features__text {
  position: relative;
  max-width: 820px;
  padding-right: 50px;
  padding-left: 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.02em;
}
.features__text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url("../img/features/quotes-left.svg");
  background-repeat: no-repeat;
}
.features__text::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url("../img/features/quotes-right.svg");
  background-repeat: no-repeat;
}

.features__button {
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .features__button {
    display: none;
  }
}

.features__list {
  display: flex;
  color: #b4bec8;
}

.features__list-item {
  position: relative;
  text-align: center;
}
.features__list-item:first-child::after {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 38px;
  height: 22px;
  content: url("../img/features/arrow-long-right-grey.svg");
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .features__list-item:first-child::after {
    top: 30%;
    right: -40px;
  }
}
.features__list-item:nth-child(2)::after {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 38px;
  height: 22px;
  content: url("../img/features/arrow-long-right-grey.svg");
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .features__list-item:nth-child(2)::after {
    top: 30%;
    right: -40px;
  }
}
.features__list-item:not(:last-child) {
  margin-right: 150px;
}
@media screen and (max-width: 576px) {
  .features__list-item:not(:last-child) {
    margin-right: 26px;
  }
}
.features__list-item--two-items:nth-child(2)::after {
  display: none;
  content: "";
}

.featers__list-num {
  font-size: 69px;
  font-weight: 600;
  line-height: 134.5%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .featers__list-num {
    font-size: 22px;
    line-height: 94.5%;
  }
}

.features__list-explain {
  letter-spacing: 0.05em;
}

.explain__container {
  display: flex;
  padding-bottom: 160px;
}
@media screen and (max-width: 576px) {
  .explain__container {
    flex-direction: column;
    padding-bottom: 100px;
  }
}

.explain__left {
  position: relative;
  width: 50%;
  padding-right: 84px;
}
@media screen and (max-width: 576px) {
  .explain__left {
    width: auto;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.explain__left::after {
  position: absolute;
  top: 50%;
  right: -27px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 36px;
  content: "";
  background-image: url("../img/explain/arrow-short-right-grey.svg");
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #b4bec8;
  border-radius: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .explain__left::after {
    top: auto;
    right: auto;
    bottom: -70px;
    left: 70px;
  }
}
@media screen and (max-width: 345px) {
  .explain__left::after {
    left: 30px;
  }
}

.explain__right {
  width: 50%;
  padding-left: 84px;
}
@media screen and (max-width: 576px) {
  .explain__right {
    width: auto;
    padding-left: 0;
  }
}

.explain__left-upper,
.explain__right-upper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .explain__left-upper,
.explain__right-upper {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 576px) {
  .explain__left-upper,
.explain__right-upper {
    justify-content: flex-end;
  }
}
.explain__left-upper::before,
.explain__right-upper::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 214px;
  height: 2px;
  content: "";
  background-color: #b4bec8;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .explain__left-upper::before,
.explain__right-upper::before {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .explain__left-upper:first-child {
    justify-content: flex-start;
  }
}

.explain__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.05em;
}

.explain__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #4a4545;
  letter-spacing: 0.02em;
}

.program__container {
  padding-bottom: 150px;
}
@media screen and (max-width: 576px) {
  .program__container {
    padding-bottom: 100px;
  }
}

.program__upper {
  padding-bottom: 64px;
}
@media screen and (max-width: 576px) {
  .program__upper {
    padding-bottom: 40px;
  }
}

.program__title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .program__title {
    font-size: 34px;
  }
}

.program__lower {
  display: flex;
  justify-content: center;
}

.program__list {
  max-width: 900px;
}

.program__list-item {
  display: flex;
  padding: 20px;
  border: 3px solid #b4bec8;
  border-radius: 22px;
}
@media screen and (max-width: 768px) {
  .program__list-item {
    flex-direction: column;
  }
}
.program__list-item:not(:last-child) {
  margin-bottom: 20px;
}

.program__list-item-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .program__list-item-left {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 10px;
  }
}

.program__list-item-right {
  width: 80%;
}
@media screen and (max-width: 576px) {
  .program__list-item-right {
    width: 100%;
  }
}

.program__list-item-time {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.program__list-item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
}

.speakers {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 576px) {
  .speakers {
    padding-bottom: 100px;
  }
}

.speakers__title {
  width: 50%;
  font-size: 52px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .speakers__title {
    width: auto;
    font-size: 35px;
    font-weight: 600;
    line-height: 52px;
    text-align: center;
    letter-spacing: 0.05em;
  }
}

.speakers__lower {
  padding-top: 50px;
}

.speakers__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
@media screen and (max-width: 576px) {
  .speakers__list {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
}
.speakers__list--column-mode {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
}

.speakers__list-item:last-child {
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .speakers__list-item:last-child {
    margin-bottom: 0;
  }
}

.speakers__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.speakers__figure--column-mode {
  flex-direction: row;
  justify-content: flex-start;
}
@media screen and (max-width: 576px) {
  .speakers__figure--column-mode {
    flex-direction: column;
  }
}

.speakers__picture {
  position: relative;
  width: 216px;
  height: 216px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .speakers__picture {
    margin-bottom: 20px;
  }
}

.speakers__img {
  position: relative;
  z-index: 30;
  width: 216px;
  height: 216px;
  object-fit: contain;
}

.speakers__text {
  padding-right: 20px;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #4a4545;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 576px) {
  .speakers__text {
    padding-right: 0;
    padding-left: 0;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }
}
.speakers__text--column-mode {
  padding-left: 160px;
  text-align: left;
}
@media screen and (max-width: 980px) {
  .speakers__text--column-mode {
    padding-left: 80px;
  }
}
@media screen and (max-width: 576px) {
  .speakers__text--column-mode {
    padding-left: 0;
    text-align: center;
  }
}

.organisers__container {
  position: relative;
  display: flex;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .organisers__container {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .organisers__container {
    padding-bottom: 50px;
  }
}

.organisers__left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .organisers__left {
    width: auto;
  }
}

.organisers__title {
  color: var(--color-accent);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .organisers__title {
    margin-bottom: 30px;
  }
}

.organisers__right {
  display: flex;
  width: 70%;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 2px solid #b4bec8;
  border-bottom: 2px solid #b4bec8;
}
@media screen and (max-width: 768px) {
  .organisers__right {
    width: auto;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
}

.organisers__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .organisers__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .organisers__list {
    flex-direction: column;
  }
}

@media screen and (max-width: 900px) {
  .organisers__list-item {
    margin: 10px;
  }
}
@media screen and (max-width: 576px) {
  .organisers__list-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.organisers__img {
  object-fit: contain;
  width: 200px;
  height: 90px;
}

.request__container {
  padding-bottom: 150px;
}
@media screen and (max-width: 576px) {
  .request__container {
    padding-bottom: 50px;
  }
}

.request__inner {
  position: relative;
  padding: 60px;
  padding-bottom: 90px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 2px 10px 28px rgba(75, 0, 129, 0.12);
  transform-style: preserve-3d;
}
@media screen and (max-width: 576px) {
  .request__inner {
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
    box-shadow: none;
  }
}
.request__inner::before {
  position: absolute;
  bottom: -77px;
  left: -77px;
  width: 154px;
  height: 154px;
  content: url("../img/decor-dots.svg");
  transform: translateZ(-1px);
}
@media screen and (max-width: 1400px) {
  .request__inner::before {
    display: none;
  }
}
.request__inner::after {
  position: absolute;
  top: -77px;
  right: -77px;
  width: 154px;
  height: 154px;
  content: url("../img/decor-dots.svg");
  transform: translateZ(-1px);
}
@media screen and (max-width: 1400px) {
  .request__inner::after {
    display: none;
  }
}

.request__upper {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .request__upper {
    margin-bottom: 30px;
  }
}
.request__upper::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 140px;
  height: 2px;
  content: "";
  background-color: var(--color-accent);
  transform: translateX(-50%);
}

.request__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0.03em;
}

.request__lower {
  display: flex;
}
@media screen and (max-width: 900px) {
  .request__lower {
    flex-direction: column;
  }
}

.request__lower-text {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #0f001a;
  letter-spacing: 0.05em;
}

.request__lower-left {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .request__lower-left {
    width: auto;
  }
}

.request__lower-right {
  width: 50%;
  padding-top: 54px;
  padding-left: 60px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #0f001a;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .request__lower-right {
    width: auto;
    padding-left: 0;
  }
}

.request__address {
  position: relative;
  max-width: 280px;
  padding-left: 40px;
  margin-bottom: 18px;
  font-style: normal;
}
.request__address::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  content: url("../img/request/icon-point.svg");
}

.request__date {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
}
.request__date::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  content: url("../img/request/icon-calendar.svg");
}

.request__descr {
  padding-left: 40px;
  margin-bottom: 30px;
  font-weight: 700;
}

.request__form {
  display: flex;
  flex-direction: column;
}

.request__fieldset {
  margin-bottom: 26px;
  border-radius: 10px;
  outline: none;
  cursor: text;
}
.request__fieldset--focus {
  border: 1px solid var(--color-accent);
}

.request__legend {
  padding-right: 10px;
  padding-left: 10px;
}

.request__input {
  width: 100%;
  border: none;
  outline: none;
}

.request__button {
  padding-top: 16px;
  padding-bottom: 16px;
}

.request__map {
  width: 340px;
  height: 240px;
  filter: grayscale(1);
}
@media screen and (max-width: 576px) {
  .request__map {
    width: 100%;
  }
}

.footer {
  background-color: #b4bec8;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.footer__logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .footer__logo-list {
    margin-bottom: 30px;
  }
}

.footer__logo-list-item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 576px) {
  .footer__logo-list-item:not(:last-child) {
    margin-right: 24px;
  }
}

.footer__logo-list-img {
  object-fit: contain;
  width: 220px;
  height: 70px;
}
@media screen and (max-width: 576px) {
  .footer__logo-list-img {
    width: 80px;
    height: 50px;
  }
}

.footer__info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 576px) {
  .footer__info-wrapper {
    align-items: flex-start;
  }
}

.footer__copyright {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 22px;
}

.footer__policy {
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
}
