*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
}

:focus,
:focus-visible,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

address {
  font-style: normal;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

a,
button,
input,
select,
textarea {
  background: none;
  color: inherit;
  border: none;
  text-transform: none;
  text-decoration: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

ul {
  list-style: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

@media screen and (max-width: 575px) {
  .container_100 {
    max-width: 100%;
  }
}
.accordion-main {
  background: #F9F9F9;
  padding: 60px 0;
}
.accordion-main__wrapper {
  width: 100%;
  max-width: 1111px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .accordion-main__wrapper {
    max-width: 90%;
  }
}
.accordion-main__item {
  margin-bottom: 20px;
}
.accordion-main__item_active > .accordion-main__content {
  height: auto;
  overflow: visible;
  opacity: 1;
}
.accordion-main__item_active > .accordion-main__header::before {
  transform: rotate(180deg);
}
.accordion-main__header {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #181818;
  background: #fff;
  padding: 20px 30px;
  position: relative;
  pointer-events: none;
}
.accordion-main__header::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
  transition: all 0.4s linear;
}
.accordion-main__content {
  background: #fff;
  transition: all 0.4s linear;
  position: relative;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.accordion-main__content::before {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 1px;
  background: #E3E3E3;
}
.accordion-main__content-inner {
  padding: 20px 30px;
}
.accordion-main__content-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 20px;
}
.accordion-main__content-text_bold {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.accordion__item {
  margin-bottom: 34px;
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__item_active .accordion__content {
  opacity: 1;
  height: auto;
  overflow: auto;
}
.accordion__item_active .accordion__header::before {
  transform: rotate(180deg);
}
.accordion__header {
  background: #F9F9F9;
  padding: 40px 36px 40px 66px;
  position: relative;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #100F0F;
  pointer-events: none;
}
.accordion__header::before {
  content: "";
  position: absolute;
  display: block;
  top: 40px;
  left: 36px;
  width: 16px;
  height: 16px;
  background: url("../../../../image/array_down_red.svg") center/contain no-repeat;
  transition: all 0.4s linear;
}
.accordion__header_right {
  padding-left: 32px;
}
.accordion__header_right::before {
  left: calc(100% - 50px);
}
.accordion__header_subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  margin-top: 10px;
}
.accordion__content {
  background: #fff;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s linear;
}
.accordion__content_grey {
  background-color: #F9F9F9;
  position: relative;
}
.accordion__content_grey::before {
  content: "";
  display: block;
  position: absolute;
  left: 32px;
  right: 32px;
  top: 0;
  height: 1px;
  background: #E3E3E3;
}

@media screen and (max-width: 575px) {
  .accordion__item {
    margin-bottom: 14px;
  }
  .accordion__header {
    padding: 17px 17px 17px 54px;
    font-size: 14px;
  }
  .accordion__header::before {
    left: 22px;
    top: 20px;
  }
  .accordion__header_right {
    padding-left: 32px;
  }
  .accordion__header_right::before {
    left: calc(100% - 50px);
  }
  .accordion-main {
    padding: 30px 0 10px 0;
  }
}
.button-main {
  width: 202px;
  background: #ED1C24;
  border: 1px solid #ED1C24;
  padding: 16px;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s linear;
}
.button-main:hover {
  color: #fff;
}
.button-main_disabled {
  background: #E3E3E3;
  border-color: #E3E3E3;
  color: #8E8E8E;
}
.button-main_disabled:hover {
  color: #8E8E8E;
}

.button-white {
  width: 202px;
  background: #fff;
  border: 1px solid #ED1C24;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #ED1C24;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s linear;
}
.button-white__img {
  margin-right: 10px;
}
.button-white_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-white_disabled {
  border-color: #C6C6C6;
  color: #C6C6C6;
}
.button-white_disabled:hover {
  background: #fff;
}
.button-white_active {
  color: #fff;
  background: #ED1C24;
}

.button-left {
  width: 60px;
  height: 18px;
  background: url("../../../../image/arrow-left.svg") 0 0/cover no-repeat;
  cursor: pointer;
  display: block;
}

@media screen and (max-width: 575px) {
  .button-main {
    width: 100%;
  }
  .button-white {
    width: 100%;
  }
}
@media screen and (min-width: 576px) {
  .button-white:hover {
    background: #F8A4A7;
  }
  .button-white_disabled:hover {
    background: #fff;
  }
}
.breadcrumbs {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  padding-bottom: 10px;
  overflow: auto;
}
.breadcrumbs__item {
  flex-shrink: 0;
  margin-right: 16px;
}
.breadcrumbs__item:last-child {
  margin-right: 0;
}
.breadcrumbs__item:last-child .breadcrumbs__link::after {
  content: "";
  background: none;
}
.breadcrumbs__link {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: #181818;
  position: relative;
  padding-right: 20px;
}
.breadcrumbs__link::after {
  content: "";
  display: block;
  background: url("../../../../image/arrow_right_black.svg") 100% 0/contain no-repeat;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

@media screen and (max-width: 575px) {
  .breadcrumbs {
    padding-top: 20px;
  }
}
.container {
  width: 100%;
  max-width: 1111px;
  margin: 0 auto;
}

.container-md {
  width: 100%;
  max-width: 834px;
}

@media screen and (max-width: 1199px) {
  .container {
    max-width: 90%;
  }
}
@media screen and (max-width: 575px) {
  .container_100 {
    max-width: 100%;
  }
}
.input {
  position: relative;
  width: 100%;
}
.input__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #8E8E8E;
  pointer-events: none;
  position: absolute;
  transition: all 0.4s linear;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 3px;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.input__marker {
  color: #ED1C24;
  margin-left: 5px;
}

.input-search {
  padding: 13px 14px;
  background: #fff;
  border: 1px solid #C6C6C6;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #100F0F;
}
.input-search::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #C6C6C6;
}
.input-search::placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #C6C6C6;
}

.input-marker {
  color: #ED1C24;
  margin-left: 5px;
}

.input-field {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #181818;
  padding: 13px 40px 13px 14px;
  min-width: 263px;
  border: 1px solid #C6C6C6;
  width: 100%;
}
.input-field::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #8E8E8E;
}
.input-field::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #8E8E8E;
}
.input-field_bottom {
  border: none;
  border-bottom: 1px solid #C6C6C6;
  padding: 10px 0;
}
.input-field_marker:focus + .input__label {
  display: none;
}
.input-field_marker:not(:-moz-placeholder-shown) + .input__label {
  display: none;
}
.input-field_marker:not(:placeholder-shown) + .input__label {
  display: none;
}
.input-field_calendar {
  position: relative;
}
.input-field_calendar::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
}
.input-field_calendar::-webkit-inner-spin-button, .input-field_calendar::-webkit-clear-button {
  z-index: 1;
}

.input-calendar::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url("../../../../image/calendar.svg") 0 0/contain no-repeat;
  pointer-events: none;
  z-index: 5;
}
.input-calendar__label_active {
  color: #181818;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
}
.input-group__input {
  max-width: 263px;
  margin-right: 40px;
  margin-bottom: 40px;
}
.input-group__input:nth-child(even) {
  margin-right: 0;
}

.textarea-block {
  position: relative;
}
.textarea-block__label {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #181818;
  color: #8E8E8E;
  pointer-events: none;
  position: absolute;
  transition: all 0.4s linear;
  left: 20px;
  right: 3px;
  top: 20px;
  background-color: #fff;
}
.textarea-block__textarea:focus + .textarea-block__label {
  display: none;
}
.textarea-block__textarea:not(:-moz-placeholder-shown) + .textarea-block__label {
  display: none;
}
.textarea-block__textarea:not(:placeholder-shown) + .textarea-block__label {
  display: none;
}

.textarea {
  width: 100%;
  max-height: 155px;
  padding: 20px;
  background: #fff;
  border: 1px solid #C6C6C6;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #181818;
  resize: none;
}
.textarea::-moz-placeholder {
  color: #C6C6C6;
}
.textarea::placeholder {
  color: #C6C6C6;
}

.search-input-group {
  position: relative;
  width: 100%;
}
.search-input-group__button {
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 24px;
  height: 24px;
}

.checkbox {
  position: relative;
  padding-left: 34px;
}
.checkbox__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #8E8E8E;
}
.checkbox__marker-colored {
  color: #ED1C24;
  text-decoration: underline;
}
.checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.checkbox__input:checked ~ .checkbox__point {
  background: url("../../../../image/tick_white.svg") center/75% no-repeat, #ED1C24;
}
.checkbox__point {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #C6C6C6;
  border-radius: 4px;
  transition: all 0.4s linear;
  background: url("../../../../image/tick_white.svg") center/75% no-repeat;
}

@media screen and (max-width: 575px) {
  .input-group__input {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .input-group__input:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 374px) {
  .input-search::-moz-placeholder {
    font-size: 12px;
  }
  .input-search::placeholder {
    font-size: 12px;
  }
}
.filter__body {
  display: flex;
}
.filter__item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #181818;
  padding-bottom: 6px;
  cursor: pointer;
}
.filter__item_active {
  border-bottom: 1px solid #ED1C24;
}
.filter__item:not(:last-child) {
  margin-right: 32px;
}
.filter__dropdown-list {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s linear;
  position: absolute;
  top: 50px;
  width: 100%;
  max-height: 328px;
  overflow-y: scroll;
  z-index: 2;
  background-color: #fff;
  padding: 0 15px;
}
.filter__select {
  position: relative;
}
.filter__select_active .filter__select-header {
  color: #ED1C24;
  border-bottom: none;
}
.filter__select_active .filter__select-header::before {
  transform: rotate(180deg);
  background: url("../../../../image//array_down_red.svg") 0 0/contain no-repeat;
}
.filter__select_active .filter__dropdown-list {
  height: auto;
  overflow: visible;
  opacity: 1;
}
.filter__select-header {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #181818;
  padding-bottom: 9px;
  border-bottom: 1px solid #E3E3E3;
  position: relative;
  cursor: pointer;
}
.filter__select-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  right: 10px;
  width: 18px;
  height: 9px;
  background: url("../../../../image/arrow-down_black.svg") 0 0/contain no-repeat;
}
.filter__dropdown-list-item {
  margin-top: 37px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #181818;
  position: relative;
  cursor: pointer;
}
.filter__dropdown-list-item:first-child {
  margin-top: 26px;
}
.filter__dropdown-list-item:last-child {
  margin-bottom: 31px;
}
.filter__dropdown-list-item_active {
  color: #C6C6C6;
}
.filter__dropdown-list-item_active::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 18px;
  height: 13px;
  background: url("../../../../image/tick_red.svg") 0 0/contain no-repeat;
}
.filter__options {
  display: flex;
}
.filter__option-item {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #181818;
  padding-bottom: 6px;
  cursor: pointer;
}
.filter__option-item:not(:last-child) {
  margin-right: 30px;
}
.filter__option-item_active {
  border-bottom: 1px solid #ED1C24;
}

.dropdown-list-filter-title {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #181818;
  color: #8E8E8E;
}
.dropdown-list-filter-title__marker {
  color: #ED1C24;
  margin-left: 5px;
}

.panel-info {
  background: #F9F9F9;
  padding: 40px 47px 40px 40px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 2fr 202px;
  grid-gap: 20px;
}
.panel-info__column-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #100F0F;
  margin-bottom: 14px;
}
.panel-info__column-info {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #100F0F;
}
.panel-info__column-inner:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (max-width: 1200px) {
  .panel-info {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .panel-info {
    grid-template-columns: none;
    grid-template-areas: "header header" "col1 col2" "address address" "button button";
  }
  .grid-header {
    grid-area: header;
  }
  .grid-col1 {
    grid-area: col1;
  }
  .grid-col2 {
    grid-area: col2;
  }
  .grid-address {
    grid-area: address;
  }
  .grid-button {
    grid-area: button;
  }
}
@media screen and (max-width: 575px) {
  .panel-info {
    grid-gap: 0;
    grid-column-gap: 10px;
  }
}
.policy-info {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}
.policy-info__list {
  margin-bottom: 34px;
}
.policy-info__list-item {
  padding-left: 15px;
  position: relative;
  margin-bottom: 18px;
}
.policy-info__list-item:last-child {
  margin-bottom: 0;
}
.policy-info__list-item::before {
  content: "";
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ED1C24;
}
.policy-info p {
  margin-bottom: 34px;
}
.policy-info p:last-child {
  margin-bottom: 0;
}

.title-main {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
}

.text-main {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}

.title-section {
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 65px;
  color: #ED1C24;
}

.title-nav {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #181818;
}

.slider-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #E77E82;
}

.page-title {
  font-family: "Oswald", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 68px;
}

.filter-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #181818;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  color: #C6C6C6;
}

.textarea-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #181818;
  display: block;
}

.title-main-mobile {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 34px;
  color: #181818;
}

.page-subtitle-grey {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  color: #C6C6C6;
}

.bold-600 {
  font-weight: 600;
}

.colored {
  color: #ED1C24;
}

@media screen and (max-width: 575px) {
  .code-title {
    font-size: 40px;
  }
}
.footer {
  background: #181818;
}
.footer__top {
  padding: 55px 0 106px 0;
  border-bottom: 1px solid #ED1C24;
}
.footer__top-wrapper {
  width: 100%;
  max-width: 1111px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .footer__top-wrapper {
    max-width: 90%;
  }
}
.footer__top-inner {
  display: flex;
}
.footer__nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}
.footer__column {
  flex-grow: 1;
}
.footer__column-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: #fff;
  margin-bottom: 16px;
  display: block;
  transition: all 0.4s linear;
}
.footer__column-title_contacts {
  font-size: 14px;
}
.footer__column-title:hover {
  color: #ED1C24;
}
.footer__logo {
  margin-right: 88px;
}
.footer__logo-img {
  width: 183px;
}
.footer__link {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #fff;
  margin-bottom: 10px;
  transition: all 0.4s linear;
}
.footer__link:hover {
  color: #ED1C24;
}
.footer__contacts {
  max-width: 263px;
  margin-bottom: 24px;
}
.footer__contacts-info {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
  color: #fff;
}
.footer__contacts-info:not(:last-child) {
  margin-bottom: 10px;
}
.footer__button {
  margin-bottom: 30px;
}
.footer__icons {
  display: flex;
  align-items: center;
}
.footer__icon-link:not(:last-child) {
  margin-right: 17px;
}
.footer__bottom {
  padding: 34px 0;
}
.footer__bottom-wrapper {
  width: 100%;
  max-width: 1111px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .footer__bottom-wrapper {
    max-width: 90%;
  }
}
.footer__bottom-inner {
  display: flex;
}
.footer__bottom-item {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
  color: #fff;
  margin-bottom: 14px;
}
.footer__bottom-column_mod {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
  color: #fff;
  max-width: 734px;
}
.footer__bottom-column:not(:last-child) {
  margin-right: 113px;
}
.footer__mobile-nav {
  display: none;
}
.footer__column_contacts_hide {
  display: none;
}
.footer__mobile-nav-footer {
  display: none;
}

.mobile-nav-footer__item {
  padding: 20px 0 8px;
  border-bottom: 1px solid rgba(237, 28, 36, 0.15);
  position: relative;
}
.mobile-nav-footer__item_dropdown::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 20px;
  right: 30px;
  background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
  transition: all 0.4s linear;
}
.mobile-nav-footer__item_dropdown_active::before {
  transform: rotate(180deg);
}
.mobile-nav-footer__item_dropdown_active .mobile-nav-footer__link {
  color: #ED1C24;
}
.mobile-nav-footer__item_dropdown_active .mobile-nav-footer__list {
  height: auto;
  overflow: auto;
  opacity: 1;
}
.mobile-nav-footer__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #fff;
  transition: all 0.4s linear;
}
.mobile-nav-footer__list {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s linear;
}
.mobile-nav-footer__list-inner {
  padding: 30px 0 10px 0;
}
.mobile-nav-footer__list-item {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: #fff;
  margin-bottom: 23px;
}
.mobile-nav-footer__list-item:active, .mobile-nav-footer__list-item:hover {
  color: #fff;
}
.mobile-nav-footer__list-item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .footer__nav {
    flex-wrap: wrap;
  }
  .footer__column {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .footer__column_contacts_hide {
    display: block;
    margin-top: 30px;
  }
  .footer__logo-img {
    min-width: 120px;
  }
  .footer__logo {
    margin-right: 0;
  }
  .footer__top {
    padding: 30px 0 10px 0;
  }
  .footer__top-inner {
    flex-direction: column;
  }
  .footer__bottom-column_mod {
    font-size: 9px;
  }
  .footer__bottom-column_hide {
    display: none;
  }
  .footer__nav {
    display: none;
  }
  .footer__mobile-nav {
    display: block;
  }
  .footer__column {
    width: 100%;
  }
  .footer__icons {
    justify-content: center;
  }
  .footer__icon {
    width: 28px;
  }
  .footer__icon-link:not(:last-child) {
    margin-right: 28px;
  }
  .footer__mobile-nav-footer {
    display: block;
  }
}
.header {
  position: relative;
}
.header__logo {
    max-width: 183px;
}
.header__burger {
  display: none;
  width: 24px;
  height: 16px;
  position: relative;
}
.header__burger::before, .header__burger:after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #ED1C24;
  position: absolute;
  left: 0;
  transition: all 0.4s linear;
}
.header__burger::before {
  top: 0;
}
.header__burger:after {
  bottom: 0;
}
.header__burger_active .header__burger-line {
  display: none;
}
.header__burger_active::before, .header__burger_active:after {
  top: 50%;
}
.header__burger_active::before {
  transform: translateY(-50%) rotate(45deg);
}
.header__burger_active:after {
  transform: translateY(-50%) rotate(-45deg);
}
.header__burger-line {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 3px;
  width: 100%;
  background: #ED1C24;
}
.header__bottom-panel {
  position: relative;
  z-index: 101;
  box-shadow: 0 4px 6px rgba(24, 24, 24, 0.1);
}
.header__mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 0;
  overflow: hidden;
  transition: all 0.4s linear;
}
.header__mobile-nav_active {
  height: 100vh;
  overflow: auto;
}

.top-panel {
  background: #181818;
  padding: 18px 0 17px 0;
}
.top-panel__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-panel__item {
  display: flex;
  align-items: center;
}
.top-panel__item:hover > .top-panel__title {
  color: #ED1C24;
}
.top-panel__item:hover > .top-panel__icon path {
  stroke: #ED1C24;
}
.top-panel__icon {
  margin-right: 13px;
}
.top-panel__icon path {
  stroke: #fff;
  transition: all 0.4s linear;
}
.top-panel__title {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
  color: #fff;
  transition: all 0.4s linear;
}

.bottom-panel {
  padding: 21px 0 20px 0;
}
.bottom-panel__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  gap: 60px;
}
.nav__link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #181818;
  padding-bottom: 6px;
  transition: all 0.4s linear;
  border-bottom: 1px solid transparent;
}
.nav__link_active {
  border-bottom: 1px solid #ED1C24;
}
.nav__link:hover {
  border-bottom: 1px solid #ED1C24;
}

.mobile-nav {
  background: #fff;
}
.mobile-nav__panel {
  margin-bottom: 40px;
}
.mobile-nav__dropdown-list {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s linear;
}
.mobile-nav__list-item {
  padding: 24px 0 8px 0;
  border-bottom: 1px solid #E3E3E3;
}
.mobile-nav__list-item_dropdown {
  position: relative;
}
.mobile-nav__list-item_dropdown::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 20px;
  right: 30px;
  background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
  transition: all 0.4s linear;
}
.mobile-nav__list-item_dropdown_active::before {
  transform: rotate(180deg);
}
.mobile-nav__list-item_dropdown_active .mobile-nav__link {
  color: #ED1C24;
}
.mobile-nav__list-item_dropdown_active .mobile-nav__dropdown-list {
  height: auto;
  overflow: auto;
  opacity: 1;
}
.mobile-nav__dropdown-list-item {
  display: block;
  padding: 24px 0 8px 0;
}
.mobile-nav__button {
  margin: 0 auto;
}
.mobile-nav__button:not(:last-child) {
  margin-bottom: 20px;
}
.mobile-nav__icons {
  margin: 36px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav__icon-link {
  margin-right: 28px;
}

@media screen and (max-width: 991px) {
  .header__nav {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .header__logo-img {
    max-width: 120px;
  }
}
@media screen and (max-width: 575px) {
  .top-panel__inner {
    justify-content: center;
  }
  .top-panel__item_hide {
    display: none;
  }
  .bottom-panel {
    padding: 10px 0 10px 0;
  }
}
.privacy-policy-page__wrapper {
  width: 100%;
  max-width: 1111px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .privacy-policy-page__wrapper {
    max-width: 90%;
  }
}
.privacy-policy-page__breadcrumbs {
  margin-bottom: 60px;
}
.privacy-policy-page__section-info {
  margin-bottom: 100px;
}
.privacy-policy-page__section-contacts {
  padding-bottom: 277px;
}
.privacy-policy-page__page-title {
  font-family: "Oswald", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 68px;
  margin-bottom: 34px;
}
.privacy-policy-page__section-accordion {
  margin-bottom: 100px;
}

.section-info__info {
  max-width: 755px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #181818;
  margin-bottom: 35px;
}
.section-info p {
  margin-bottom: 20px;
}
.section-info p:last-child {
  margin-bottom: 0;
}
.section-info__info_bold {
  font-weight: 600;
}
.section-info__link-info {
  padding-left: 46px;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  height: 32px;
  display: flex;
  align-items: center;
}
.section-info__link-info::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../../../../image/document_pdf.svg");
}

.section-accordion__policy-info {
  padding: 34px 0 64px 0;
  max-width: 755px;
}

.section-contacts__block {
  margin-bottom: 60px;
}
.section-contacts__block:last-child {
  margin-bottom: 0;
}
.section-contacts__page-subtitle-grey {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  color: #C6C6C6;
  margin-bottom: 34px;
}
.section-contacts p {
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  max-width: 755px;
}
.section-contacts p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .privacy-policy-page__breadcrumbs {
    margin-bottom: 14px;
  }
  .privacy-policy-page__page-title {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 29px;
  }
  .privacy-policy-page__section-info {
    padding-bottom: 80px;
    margin-bottom: 0;
  }
  .privacy-policy-page__section-accordion {
    margin-bottom: 80px;
  }
  .privacy-policy-page__section-contacts {
    padding-bottom: 160px;
  }
  .section-info__link:last-of-type {
    margin-bottom: 0;
  }
  .section-contacts__block {
    margin-bottom: 60px;
  }
  .section-contacts__block:last-child {
    margin-bottom: 0;
  }
  .section-contacts p {
    margin-bottom: 20px;
  }
  .section-contacts p:last-child {
    margin-bottom: 0;
  }
}