/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticeNeueCyr/HelveticaNeueCyr-Roman.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticeNeueCyr/HelveticaNeueCyr-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticeNeueCyr/HelveticaNeueCyr-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticeNeueCyr/HelveticaNeueCyr-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

input,
textarea {
  outline: none;
  background-color: transparent;
}

html,
body {
  overflow-x: hidden;
}

html.with-fancybox {
  overflow: hidden;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "HelveticaNeueCyr", sans-serif;
  font-weight: 400;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

section {
  margin-bottom: clamp(3.75rem, 19.108vw + -8.575rem, 7.5rem);
}

.section {
  margin-bottom: clamp(3.75rem, 19.108vw + -8.575rem, 7.5rem);
}
.section--mb60 {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}

.container {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(20px, 1fr) [right-start center-start] minmax(0, var(--container-width)) [left-end center-end] minmax(20px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .container {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .container {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .container {
    --container-width: 100%;
  }
}

img {
  filter: grayscale(1);
  transition: all 0.38s ease-in-out;
}
@media (hover: hover) {
  img:hover {
    filter: none;
  }
}

.border {
  position: relative;
}
.border::before {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 80px solid white;
  border-bottom: 80px solid transparent;
  width: 0;
}
.border::after {
  z-index: 2;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 80px solid transparent;
  border-bottom: 80px solid white;
  width: 0;
}
.border--min::after {
  border-left: 40px solid transparent;
  border-bottom: 40px solid white;
}
.border--min::before {
  border-left: 40px solid white;
  border-bottom: 40px solid transparent;
}

@media (max-width: 992px) {
  .border::after {
    border-left: 40px solid transparent;
    border-bottom: 40px solid white;
  }
  .border::before {
    border-left: 40px solid white;
    border-bottom: 40px solid transparent;
  }
  .border--min::after {
    border-left: 20px solid transparent;
    border-bottom: 20px solid white;
  }
  .border--min::before {
    border-left: 20px solid white;
    border-bottom: 20px solid transparent;
  }
}
.header__club {
  margin-left: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.header__exit {
  color: #e74b1d;
  font-size: 14px;
}
.header__exit:hover {
  transition: color 0.38s ease-in-out;
  color: #1d1d1b;
}
.header__wrapper {
  padding-top: clamp(0.938rem, 1.592vw + -0.09rem, 1.25rem);
  padding-bottom: clamp(0.938rem, 1.592vw + -0.09rem, 1.25rem);
  grid-area: center;
  display: flex;
  align-items: center;
}
.header__wrapper--border {
  border-bottom: 1px solid #e6e6e6;
}
.header__logo {
  -o-object-fit: contain;
  object-fit: contain;
  width: clamp(8.75rem, 7.962vw + 3.615rem, 10.313rem);
  height: clamp(2.813rem, 1.592vw + 1.785rem, 3.125rem);
  margin-right: clamp(1.875rem, 8.917vw + -3.877rem, 3.625rem);
  filter: none;
}
.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.header__actions .icon-user {
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  color: #7a7a7a;
}
.header__actions p {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 14px;
}

@media (max-width: 992px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    background-color: #fff;
  }
  .header__wrapper {
    justify-content: space-between;
  }
  .header__logo {
    width: 165px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .header__club {
    display: none;
  }
}
@media (max-width: 576px) {
  .header__actions {
    display: none;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 9.554vw + -5.537rem, 2.5rem);
}
.nav a {
  color: #1d1d1b;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  position: relative;
}
.nav a::after {
  content: "";
  width: 0%;
  background-color: #1d1d1b;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .nav a:hover::after {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
  .nav--mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 37px;
    margin-bottom: 30px;
  }
  .nav--mobile a {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
  }
}
.button {
  cursor: pointer;
  background-color: #e74b1d;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 16px 24px 16px 24px;
  transition: all 0.38s ease-in-out;
}
@media (hover: hover) {
  .button:hover {
    background-color: #1d1d1b;
  }
}
.button--grey {
  background-color: #e6e6e6;
  color: #1d1d1b;
}
@media (hover: hover) {
  .button--grey:hover {
    color: #ffffff;
  }
}
.button--white {
  background-color: #fff;
  color: #e74b1d;
  border: 1px solid #e74b1d;
  width: 100%;
  margin-top: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}
@media (hover: hover) {
  .button--white:hover {
    background-color: #e74b1d;
    color: #ffffff;
  }
}
.button--all-white {
  background-color: #fff;
  color: #1d1d1b;
}
@media (hover: hover) {
  .button--all-white:hover {
    background-color: #e74b1d;
    color: #ffffff;
  }
}
.button--center {
  margin: 0 auto;
}
.button--edit {
  display: none;
}
.button--padding {
  padding-right: 50px;
  padding-left: 50px;
}

.hero {
  position: relative;
}
.hero__wrapper {
  grid-area: center;
  padding-top: clamp(3.75rem, 30.573vw + -15.97rem, 9.75rem);
  padding-bottom: clamp(3.75rem, 30.573vw + -15.97rem, 9.75rem);
  height: clamp(25rem, 101.911vw + -40.732rem, 45rem);
}
.hero__title {
  font-weight: 700;
  font-size: clamp(2.875rem, 8.28vw + -2.466rem, 4.5rem);
  min-width: 500px;
  max-width: 600px;
  line-height: clamp(2.875rem, 8.28vw + -2.466rem, 4.5rem);
  margin-bottom: 20px;
  color: #ffffff;
}
.hero__text {
  color: #ffffff;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.548vw + -0.143rem, 2rem);
  line-height: clamp(2rem, 2.548vw + 0.357rem, 2.5rem);
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
  max-width: 500px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1764px;
  height: 100%;
  z-index: -1;
}
.hero__bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1d1d1b;
  opacity: 0.7;
  z-index: 1;
  width: 100%;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__button-list {
  display: flex;
  gap: 10px;
}
.hero__bottom {
  position: absolute;
  bottom: clamp(1.25rem, 12.739vw + -6.967rem, 3.75rem);
  width: 100%;
}
.hero__pagination {
  text-align: left;
  grid-area: center;
}
.hero .swiper-horizontal > .swiper-pagination-bullets,
.hero .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero .swiper-pagination-custom,
.hero .swiper-pagination-fraction {
  position: static;
  display: flex;
  gap: 16px;
}
.hero .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.3019607843);
  width: 16px;
  height: 16px;
  border-radius: 0px;
  opacity: 1;
}
.hero .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #e74b1d;
  background: #e74b1d;
}

@media (max-width: 992px) {
  .hero {
    margin-top: 80px;
  }
  .hero__title {
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 30px;
    line-height: 30px;
  }
  .hero__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 90vh;
    margin-left: 20px;
    margin-right: 20px;
  }
  .hero__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 90vh;
  }
  .hero__button-list {
    flex-direction: column;
  }
  .hero__button-list > * {
    width: 200px;
    text-align: center;
  }
}
.dot {
  font-size: inherit;
  color: #e74b1d;
  line-height: inherit;
}

.advantages__wrapper {
  grid-area: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
       column-gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  row-gap: clamp(3.75rem, 9.554vw + -2.412rem, 5.625rem);
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.advantages__item-value {
  font-weight: 700;
  color: #e74b1d;
  font-size: clamp(3.5rem, 2.548vw + 1.857rem, 4rem);
  line-height: clamp(3.5rem, 2.548vw + 1.857rem, 4rem);
}
.advantages__item-text {
  color: #7a7a7a;
  font-size: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
  line-height: clamp(1.375rem, 0.955vw + 0.759rem, 1.563rem);
}

@media (max-width: 992px) {
  .advantages__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .advantages__wrapper {
    grid-template-columns: 1fr;
  }
}
.title {
  font-weight: 700;
  font-size: clamp(3rem, 5.096vw + -0.287rem, 4rem);
  line-height: clamp(3rem, 5.096vw + -0.287rem, 4rem);
  color: #1d1d1b;
}
.title--mb {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.title span {
  font-size: inherit;
  color: #e74b1d;
  line-height: inherit;
}

@media (max-width: 992px) {
  .title {
    font-size: 42px;
    line-height: 42px;
  }
}
.events--mb60 {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.events__subtitle {
  color: #1d1d1b;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
  font-size: clamp(1.5rem, 2.548vw + -0.143rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.5rem, 2.548vw + -0.143rem, 2rem);
}
.events__wrapper {
  grid-area: center;
}
.events__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.events__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.events__selects {
  display: flex;
  align-items: center;
  gap: clamp(6.25rem, 53.822vw + -28.465rem, 16.813rem);
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.events__selects--gap {
  gap: clamp(6.25rem, 35.35vw + -16.551rem, 13.188rem);
}

@media (max-width: 992px) {
  .events__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .events__top {
    flex-direction: column;
    gap: 30px;
  }
  .events__list {
    grid-template-columns: 1fr;
  }
  .events__selects--gap {
    justify-content: space-between;
  }
  .events .choices[data-type*=select-one]::after {
    right: 7px;
  }
}
.eventCard {
  border: 1px solid #e6e6e6;
  background-color: #f8f8f8;
  padding: clamp(0.938rem, 1.592vw + -0.09rem, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 9.554vw + -4.912rem, 3.125rem);
}
.eventCard__title {
  font-weight: 500;
  color: #1d1d1b;
  font-size: clamp(1rem, 1.274vw + 0.178rem, 1.25rem);
  line-height: clamp(1.25rem, 1.592vw + 0.223rem, 1.563rem);
}
.eventCard__bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.eventCard__date {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.eventCard__date-value, .eventCard__date-time {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 14px;
}
.eventCard__status {
  font-size: 12px;
  line-height: 12px;
  padding: 8px;
  color: #e74b1d;
  border: 1px solid #e74b1d;
}
.eventCard__status--active {
  background-color: #e74b1d;
  color: #ffffff;
}

@media (max-width: 992px) {
  .eventCard {
    min-height: 180px;
  }
  .eventCard__title {
    font-size: 20px;
    line-height: 25px;
  }
}
.showMore {
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #e74b1d;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}
.showMore__icon {
  rotate: -90deg;
  font-weight: 600;
  font-size: 12px;
  transition: rotate 0.38s ease-in-out;
}
.showMore--black {
  color: #1d1d1b;
}
.showMore--black .showMore__icon {
  color: #e74b1d;
  rotate: 0deg;
}
.showMore--black .showMore__icon--open {
  rotate: -180deg;
}
.showMore--mb40 {
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.showMore--reverse {
  flex-direction: row-reverse;
}
.showMore--reverse .showMore__icon {
  rotate: 90deg;
}
.showMore--size {
  font-size: 24px;
  line-height: 24px;
}
.showMore--size .showMore__icon {
  font-size: 18px;
}

.about__container {
  grid-area: center;
}
.about__container--column {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.tabs--width {
  width: 83%;
}
.tabs--mbNone {
  margin-bottom: 0;
}
.tabs--mb60 {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.tabs__item {
  cursor: pointer;
  color: #7a7a7a;
  border: 1px solid #7a7a7a;
  padding-left: clamp(0.625rem, 1.592vw + -0.402rem, 0.938rem);
  padding-right: clamp(0.625rem, 1.592vw + -0.402rem, 0.938rem);
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  transition: all 0.38s ease-in-out;
}
@media (hover: hover) {
  .tabs__item:hover {
    border-color: #e74b1d;
    color: #e74b1d;
  }
}
.tabs__item--active {
  pointer-events: none;
  color: #e74b1d;
  border-color: #e74b1d;
}

.contentTabs {
  height: inherit;
}
.contentTabs__item {
  opacity: 0;
  transition: opacity 0.38s ease-in-out;
  display: none;
  height: inherit;
}
.contentTabs__item--active {
  display: block;
}
.contentTabs__item--opacity {
  opacity: 1;
}

@media (max-width: 768px) {
  .tabs--mobile {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
  }
}
.news__container {
  grid-area: center;
}
.news__wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.news__wrapper--mbNone {
  margin-bottom: 0;
}
.news__cards {
  display: grid;
  gap: 30px;
}

@media (max-width: 992px) {
  .news__cards {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .news__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 31.7%;
}
.card__photo {
  width: 100%;
  height: clamp(11.25rem, 16.242vw + 0.774rem, 14.438rem);
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.card--home {
  width: auto;
}
.card--home:first-child {
  grid-area: 1/1/3/9;
}
.card--home:first-child .card__photo {
  height: clamp(32.5rem, 21.019vw + 18.943rem, 36.625rem);
}
.card--home:nth-child(2) {
  grid-area: 1/9/2/17;
}
.card--home:nth-child(3) {
  grid-area: 1/17/2/26;
}
.card--home:nth-child(4) {
  grid-area: 2/9/3/17;
}
.card--home:nth-child(5) {
  grid-area: 2/17/3/26;
}
.card__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  color: #1d1d1b;
  margin-bottom: 10px;
}
.card__date {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 14px;
}

@media (max-width: 992px) {
  .card {
    width: 47.9%;
  }
  .card--home:first-child .card__photo {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}
.spikes__container {
  grid-area: center;
}
.spikes__wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.spikes__description {
  color: #7a7a7a;
  font-size: clamp(1rem, 1.274vw + 0.178rem, 1.25rem);
  line-height: clamp(1.5rem, 1.911vw + 0.268rem, 1.875rem);
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
  width: 75%;
}
.spikes__cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}

@media (max-width: 768px) {
  .spikes__wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .spikes__description {
    width: 100%;
  }
  .spikes__cards {
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
  }
}
.spiker {
  width: 23.2%;
}
.spiker img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: clamp(13.75rem, 31.847vw + -6.791rem, 20rem);
  margin-bottom: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.spiker__name {
  color: #1d1d1b;
  font-size: clamp(1.125rem, 1.911vw + -0.107rem, 1.5rem);
  font-weight: 500;
  line-height: clamp(1.125rem, 3.822vw + -1.34rem, 1.875rem);
}

@media (max-width: 992px) {
  .spiker {
    width: 47.9%;
  }
}
@media (max-width: 576px) {
  .spiker {
    width: 47%;
  }
  .spiker img {
    height: 170px;
  }
  .spiker__name {
    font-size: 14px;
    line-height: 18px;
  }
}
.team__container {
  grid-area: center;
}
.team__wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.team__wrapper--end {
  align-items: flex-end;
}
.team__cards {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: clamp(0.938rem, 4.777vw + -2.144rem, 1.875rem);
       column-gap: clamp(0.938rem, 4.777vw + -2.144rem, 1.875rem);
  row-gap: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.team__buttons {
  margin-top: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.team__accordions {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}

@media (max-width: 992px) {
  .team__wrapper--end {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .team__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.entrepreneur {
  flex: 48%;
  display: flex;
  gap: 20px;
}
.entrepreneur__photo {
  height: 150px;
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.entrepreneur__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.entrepreneur__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #1d1d1b;
  margin-bottom: 10px;
}
.entrepreneur__company {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 20px;
  color: #7a7a7a;
}
.entrepreneur__link {
  word-break: break-word;
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #e74b1d;
  margin-bottom: 20px;
  transition: color 0.38s ease-in-out;
}
@media (hover: hover) {
  .entrepreneur__link:hover {
    color: #1d1d1b;
  }
}
.entrepreneur__text {
  font-size: 14px;
  line-height: 18px;
  color: #7a7a7a;
  margin-bottom: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
}
.entrepreneur__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.entrepreneur__tabs-item {
  padding: 8px;
  border: 1px solid #7a7a7a;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 12px;
}

@media (max-width: 992px) {
  .entrepreneur {
    flex: 100%;
  }
}
@media (max-width: 768px) {
  .entrepreneur {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .entrepreneur__photo {
    -o-object-position: top;
       object-position: top;
  }
}
.footer {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(20px, 1fr) [right-start center-start] minmax(0, var(--container-width)) [left-end center-end] minmax(20px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  --container-width: 1760px;
  grid-area: center;
}
@media (max-width: 992px) {
  .footer {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .footer {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .footer {
    --container-width: 100%;
  }
}
.footer__container {
  grid-area: center;
  position: relative;
  background-color: #1d1d1b;
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(20px, 1fr) [right-start center-start] minmax(0, var(--container-width)) [left-end center-end] minmax(20px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .footer__container {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .footer__container {
    --container-width: 100%;
  }
}
.footer__container::before {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 80px solid white;
  border-bottom: 80px solid transparent;
  width: 0;
}
.footer__container-wrapper {
  grid-area: center;
  padding-top: clamp(3.125rem, 9.554vw + -3.037rem, 5rem);
  padding-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(3.125rem, 14.331vw + -6.119rem, 5.938rem);
}
.footer__wrapper:last-child {
  align-items: center;
  margin-bottom: 0;
}
.footer__wrapper-box {
  display: flex;
  align-items: center;
  gap: clamp(1.875rem, 22.293vw + -12.504rem, 6.25rem);
}
.footer__logo {
  display: block;
  width: clamp(13.75rem, 26.752vw + -3.505rem, 19rem);
  height: 92px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: none;
}
.footer__text {
  font-size: clamp(0.75rem, 0.637vw + 0.339rem, 0.875rem);
  line-height: 14px;
  color: #e6e6e6;
}
.footer__text--link {
  transition: color 0.38s ease-in-out;
  color: #7a7a7a;
}
.footer__text--link:hover {
  color: #e6e6e6;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  -moz-column-gap: clamp(1.25rem, 15.924vw + -9.021rem, 4.375rem);
       column-gap: clamp(1.25rem, 15.924vw + -9.021rem, 4.375rem);
  width: 36%;
}
.footer__list-link {
  width: 32%;
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  transition: color 0.38s ease-in-out;
}
@media (hover: hover) {
  .footer__list-link:hover {
    color: #e6e6e6;
  }
}
.footer__contacts {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.footer__contacts-links {
  display: flex;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
  margin-bottom: clamp(1.563rem, 7.325vw + -3.162rem, 3rem);
}
.footer__contacts-adress {
  width: 80%;
  text-align: right;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.375rem, 1.274vw + 0.553rem, 1.625rem);
  margin-bottom: clamp(0.938rem, 5.414vw + -2.555rem, 2rem);
}
.footer__develop {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (hover: hover) {
  .footer__develop:hover .footer__text--link {
    color: #e6e6e6;
  }
}
.footer__develop img {
  width: 46px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: none;
}

@media (max-width: 992px) {
  .footer__container::before {
    border-left: 40px solid white;
    border-bottom: 40px solid transparent;
  }
  .footer__container-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer__wrapper {
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
  }
  .footer__contacts {
    align-items: flex-start;
  }
  .footer__contacts-adress {
    width: 100%;
    text-align: left;
  }
  .footer__list-link {
    font-size: 16px;
  }
  .footer__text {
    font-size: 14px;
  }
  .footer__text--mb {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .footer__list {
    width: 49%;
  }
}
@media (max-width: 576px) {
  .footer__container-wrapper {
    display: flex;
    flex-direction: column;
  }
  .footer__wrapper {
    gap: 60px;
  }
  .footer__logo {
    width: 100%;
    height: 50px;
  }
  .footer__logo img {
    -o-object-position: right;
       object-position: right;
  }
  .footer__list {
    width: 100%;
    order: 2;
    row-gap: 30px;
  }
  .footer__list-link {
    width: 46%;
  }
  .footer__contacts {
    order: 1;
  }
  .footer__contacts-links {
    flex-direction: column;
    gap: 16px;
  }
  .footer__wrapper-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    order: 1;
  }
  .footer__text {
    order: 2;
  }
  .footer__develop {
    margin-top: -30px;
    order: 3;
  }
  .footer__develop img {
    width: 53px;
    height: 42px;
  }
}
.link {
  display: flex;
  gap: 20px;
}
.link--mb {
  margin-bottom: 20px;
}
.link__icon {
  color: #e74b1d;
  font-size: 24px;
}
.link__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
  transition: color 0.38s ease-in-out;
}
.link__text--black {
  color: #1d1d1b;
}
.link__text--min {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}
.link__text--location {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.link__text--location p {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.link__text--location h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: #1d1d1b;
}

@media (max-width: 576px) {
  .link--mb {
    margin-bottom: 30px;
  }
}
.socials {
  display: flex;
  gap: 40px;
}
.socials__icon {
  font-size: 24px;
  color: #7a7a7a;
  transition: color 0.38s ease-in-out;
}
@media (hover: hover) {
  .socials__icon:hover {
    color: #e74b1d;
  }
}
.socials--size .socials__icon {
  font-size: 32px;
}

.breadcrumb {
  position: relative;
  padding-top: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(20px, 1fr) [right-start center-start] minmax(0, var(--container-width)) [left-end center-end] minmax(20px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 992px) {
  .breadcrumb {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .breadcrumb {
    --container-width: 100%;
  }
}
.breadcrumb__wrapper {
  grid-area: center;
  display: flex;
  align-items: center;
}
.breadcrumb a, .breadcrumb__last {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
  position: relative;
}
.breadcrumb a::before, .breadcrumb__last::before {
  content: url('data:image/svg+xml,<svg width="4" height="4" viewBox="0 0 4 4" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="4" height="4" fill="%23E74B1D"/></svg>');
  padding-right: 21px;
  padding-left: 19px;
  font-size: 7px;
}
.breadcrumb__last {
  color: #1d1d1b;
}
.breadcrumb a:first-child::before {
  display: none;
}
.breadcrumb__title {
  color: #7a7a7a;
}

@media (max-width: 992px) {
  .breadcrumb {
    padding-top: 110px;
  }
  .breadcrumb__wrapper {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .breadcrumb a, .breadcrumb__last {
    padding-right: 19px;
  }
  .breadcrumb a:before, .breadcrumb__last:before {
    padding-left: 0;
  }
}
.spikesTab__container {
  grid-area: center;
  color: #1d1d1b;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  width: 74%;
}

@media (max-width: 992px) {
  .spikesTab__container {
    width: 100%;
  }
}
.meetings {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}

.subscription {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.subscription__container {
  background-color: #1d1d1b;
  padding: clamp(2.5rem, 6.369vw + -1.608rem, 3.75rem);
  position: relative;
  grid-area: center;
}
.subscription__title {
  color: #fff;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
}
.subscription__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.subscription__text {
  width: 50%;
  color: #e6e6e6;
  font-size: 20px;
  line-height: 30px;
}
.subscription__form {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.subscription__input {
  background-color: #e6e6e6;
  color: #1d1d1b;
  font-size: 16px;
  line-height: 20px;
  padding: 16px;
  width: 52%;
}
.subscription__input::-moz-placeholder {
  color: #7a7a7a;
}
.subscription__input::placeholder {
  color: #7a7a7a;
}

.choices {
  margin-bottom: 0;
}
.choices__inner {
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0 !important;
  min-height: auto;
}
.choices__inner .choices__item {
  padding: 0 !important;
}
.choices__list--single {
  padding: 0px 27px 0px 0px;
}
.choices[data-type*=select-one]::after {
  content: "";
  background-image: url("../img/Union (1).png");
  background-repeat: no-repeat;
  background-size: 10px;
  border: none;
  transform: translateY(-30%);
  margin-top: 0;
  width: 10px;
  height: 10px;
  transition: 0.38s ease-in-out;
  rotate: 0deg;
}
.choices[data-type*=select-one].is-open::after {
  transform: translateY(80%);
  rotate: 180deg;
  margin-top: 0;
}
.choices__item {
  white-space: nowrap;
  padding: 5px !important;
  font-weight: 500;
  color: rgb(29, 29, 27);
  font-size: 16px;
}
.choices__list {
  width: auto !important;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border: 0;
}

.photoreports__wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.photoreports__box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.photoreports__text {
  color: #1d1d1b;
  font-size: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
  line-height: clamp(1.438rem, 0.637vw + 1.027rem, 1.563rem);
}
.photoreports__items {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.photoreports__year {
  color: #1d1d1b;
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.photoreports__cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.photoreports__table td,
.photoreports__table th {
  padding: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  padding-left: 0;
  text-align: left;
  vertical-align: top;
  color: #7a7a7a;
  font-size: clamp(0.75rem, 0.637vw + 0.339rem, 0.875rem);
  line-height: clamp(0.75rem, 0.637vw + 0.339rem, 0.875rem);
}
.photoreports__table td h3,
.photoreports__table td h2,
.photoreports__table td h4,
.photoreports__table th h3,
.photoreports__table th h2,
.photoreports__table th h4 {
  color: #1d1d1b;
  font-size: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
  font-weight: 500;
  line-height: clamp(1.438rem, 0.637vw + 1.027rem, 1.563rem);
  margin-bottom: clamp(0.438rem, 2.548vw + -1.206rem, 0.938rem);
}
.photoreports__table td h3:last-child,
.photoreports__table td h2:last-child,
.photoreports__table td h4:last-child,
.photoreports__table th h3:last-child,
.photoreports__table th h2:last-child,
.photoreports__table th h4:last-child {
  margin-bottom: 0;
}
.photoreports__table td p,
.photoreports__table th p {
  margin-bottom: clamp(0.438rem, 2.548vw + -1.206rem, 0.938rem);
  line-height: 18px;
}
.photoreports__table td p:last-child,
.photoreports__table th p:last-child {
  margin-bottom: 0;
}
.photoreports__table td:first-child,
.photoreports__table th:first-child {
  width: 14%;
  padding-left: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.photoreports__table td:last-child,
.photoreports__table th:last-child {
  color: #1d1d1b;
  width: 17%;
}
.photoreports__table td:last-child p,
.photoreports__table th:last-child p {
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.photoreports__table td a,
.photoreports__table th a {
  position: relative;
  color: #e74b1d;
}
.photoreports__table td a::after,
.photoreports__table th a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .photoreports__table td a:hover::after,
  .photoreports__table th a:hover::after {
    width: 0%;
  }
}
.photoreports__table td .button,
.photoreports__table th .button {
  font-family: "HelveticaNeueCyr" !important;
  border: 1px solid #e74b1d;
  background-color: transparent;
  color: #e74b1d;
  font-size: clamp(0.813rem, 0.955vw + 0.196rem, 1rem);
  font-weight: 500;
  line-height: clamp(0.938rem, 1.592vw + -0.09rem, 1.25rem);
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.637vw + 0.089rem, 0.625rem);
  padding: clamp(0.5rem, 0.637vw + 0.089rem, 0.625rem) clamp(0.5rem, 2.229vw + -0.938rem, 0.938rem) clamp(0.5rem, 0.637vw + 0.089rem, 0.625rem) clamp(0.5rem, 2.229vw + -0.938rem, 0.938rem);
}
.photoreports__table td .button::before,
.photoreports__table th .button::before {
  font-family: "icomoon" !important;
  font-size: clamp(1rem, 2.548vw + -0.643rem, 1.5rem);
}
.photoreports__table td .button::after,
.photoreports__table th .button::after {
  content: none;
}
@media (hover: hover) {
  .photoreports__table td .button:hover,
  .photoreports__table th .button:hover {
    background-color: #ffffff;
  }
}
.photoreports__table th {
  font-weight: 500;
  color: #1d1d1b;
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  line-height: clamp(1.625rem, 1.274vw + 0.803rem, 1.875rem);
}
.photoreports__table tbody tr:nth-child(2n-1) {
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
}
.photoreports__table tbody tr:last-child {
  border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 992px) {
  .photoreports__item-container {
    overflow: auto;
  }
  .photoreports__item-container::-webkit-scrollbar {
    width: 15px;
  }
  .photoreports__item-container::-webkit-scrollbar-track {
    background: #ffffff;
  }
  .photoreports__item-container::-webkit-scrollbar-thumb {
    background-color: #e74b1d;
    border-radius: 10px;
    border: 5px solid #ffffff;
  }
  .photoreports__table {
    min-width: 1000px;
  }
}
@media (max-width: 768px) {
  .photoreports__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.content {
  grid-area: center;
  display: flex;
  align-items: center;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.content--gap {
  gap: clamp(1.875rem, 15.924vw + -8.396rem, 5rem);
}
.content--gap30 {
  gap: 30px;
}
.content--reverse {
  flex-direction: row-reverse;
}
.content--map {
  position: relative;
  height: clamp(35rem, 31.847vw + 14.459rem, 41.25rem);
}
.content__photo {
  width: 54%;
  position: relative;
}
.content__photo--width {
  width: 33%;
}
.content__photo--before::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 8.44%, rgba(255, 255, 255, 0) 48.21%);
  z-index: 1;
}
.content__photo--before img {
  filter: none;
}
.content__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content__logo {
  filter: none;
  -o-object-fit: contain;
     object-fit: contain;
  width: clamp(13.75rem, 62.102vw + -26.306rem, 25.938rem);
  height: clamp(4.063rem, 19.427vw + -8.468rem, 7.875rem);
}
.content__map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  filter: none;
}
.content__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content__text--width {
  width: 70%;
}
.content__text--gap {
  gap: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.content__text--map {
  width: 100%;
}
.content__text h1,
.content__text h2,
.content__text h3 {
  color: #1d1d1b;
  font-weight: 700;
  font-size: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  line-height: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
}
.content__text h1 span,
.content__text h2 span,
.content__text h3 span {
  font-size: inherit;
  color: #e74b1d;
  line-height: inherit;
}
.content__text h3 {
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  font-weight: 500;
  line-height: clamp(1.625rem, 1.274vw + 0.803rem, 1.875rem);
}
.content__text h1 {
  font-size: clamp(3rem, 5.096vw + -0.287rem, 4rem);
  line-height: clamp(3rem, 5.096vw + -0.287rem, 4rem);
}
.content__text p,
.content__text li,
.content__text a {
  color: #1d1d1b;
  font-size: clamp(1rem, 1.274vw + 0.178rem, 1.25rem);
  line-height: clamp(1.5rem, 1.911vw + 0.268rem, 1.875rem);
}
.content__text a {
  position: relative;
  color: #e74b1d;
}
.content__text a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .content__text a:hover::after {
    width: 0%;
  }
}
.content__text ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.content__text ul li {
  position: relative;
  padding-left: clamp(1.625rem, 3.185vw + -0.429rem, 2.25rem);
}
.content__text ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  height: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  background-color: #e74b1d;
}
.content__text .button {
  color: #ffffff;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  font-weight: 500;
  line-height: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
}
.content__text .button::after {
  content: none;
}
.content__text--home h2 {
  font-size: clamp(3rem, 5.096vw + -0.287rem, 4rem);
  line-height: clamp(3rem, 5.096vw + -0.287rem, 4rem);
}
.content__text--home p,
.content__text--home li {
  color: #7a7a7a;
}
.content__text--size p,
.content__text--size li,
.content__text--size a {
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
}
.content__text--liMin ul {
  width: 70%;
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.content__text--liMin ul li {
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
}

@media (max-width: 992px) {
  .content {
    flex-direction: column;
  }
  .content--reverse {
    flex-direction: column-reverse;
  }
  .content--map {
    height: auto;
  }
  .content__map {
    -o-object-position: top;
       object-position: top;
    position: static;
  }
  .content__photo {
    width: 100%;
    height: 420px;
  }
  .content__photo--width {
    width: 33%;
  }
  .content__text {
    width: 100%;
  }
  .content__text h1 {
    font-size: 42px;
    line-height: 42px;
  }
  .content__text h2 {
    font-size: 35px;
    line-height: 35px;
  }
  .content__text--home h2 {
    font-size: 42px;
    line-height: 42px;
  }
}
@media (max-width: 576px) {
  .content__photo--width {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.moredetails__container {
  grid-area: center;
}
.moredetails__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}

@media (max-width: 992px) {
  .moredetails__wrapper {
    grid-template-columns: 1fr;
  }
}
.more {
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(10rem, 12.739vw + 1.783rem, 12.5rem);
  transition: border-color 0.38s ease-in-out;
}
.more__icons {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  position: relative;
}
.more__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: none;
  transition: opacity 0.38s ease-in-out;
}
.more__icon:last-child {
  opacity: 0;
}
.more__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.more__text {
  color: #7a7a7a;
  font-size: clamp(0.75rem, 0.637vw + 0.339rem, 0.875rem);
  line-height: clamp(0.75rem, 0.637vw + 0.339rem, 0.875rem);
  transform: color 0.38s ease-in-out;
}
.more__title {
  color: #1d1d1b;
  font-size: clamp(0.938rem, 1.592vw + -0.09rem, 1.25rem);
  font-weight: 500;
  line-height: clamp(1.25rem, 1.592vw + 0.223rem, 1.563rem);
}
@media (hover: hover) {
  .more:hover {
    border-color: #e74b1d;
  }
  .more:hover .more__icon:last-child {
    opacity: 1;
  }
  .more:hover .more__text {
    color: #e74b1d;
  }
}

.subtitle {
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
  font-size: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  color: #1d1d1b;
}
.subtitle span {
  color: #e74b1d;
}
.subtitle--mb {
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.subtitle--mb60 {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}

.accordion__item {
  margin-top: unset;
  border: unset;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.accordion__item:first-child {
  border-top: 1px solid #e6e6e6;
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__item.is-active .button--edit {
  display: block;
}
.accordion__title {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  font-weight: 500;
  line-height: clamp(1.625rem, 1.274vw + 0.803rem, 1.875rem);
  color: #1d1d1b;
}
.accordion__title span {
  color: #e74b1d;
  font-size: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
}
.accordion__title--mb {
  margin-bottom: 11px;
}
.accordion .ac-trigger {
  font: medium "HelveticaNeueCyr", sans-serif;
  display: flex;
  font-weight: 500;
  align-items: center;
  padding: 0;
}
.accordion .ac-trigger::after {
  content: "";
  width: 16px;
  height: 16px;
  right: 0;
}
.accordion .ac-trigger[aria-expanded=true]::after {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 11.5L8 7.5L12 11.5L13.5 10L8 4.5L2.5 10L4 11.5Z" fill="%237A7A7A"/></svg>');
}
.accordion .ac-trigger[aria-expanded=false]::after {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5L8 8.5L4 4.5L2.5 6L8 11.5L13.5 6L12 4.5Z" fill="%237A7A7A"/></svg>');
}
.accordion--club .accordion__item {
  padding: 0;
  border-bottom: none;
  margin-bottom: 30px;
}
.accordion--club .accordion__item:last-child {
  margin-bottom: 0;
}
.accordion--club .accordion__item:first-child {
  border-top: none;
}
.accordion--club .ac-trigger[aria-expanded=true]::after {
  top: 0;
  right: 13px;
  content: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.4 5H14.6V14.6H5V17.4H14.6V27H17.4V17.4H27V14.6H17.4V5Z" fill="%237A7A7A"/></svg>');
}
.accordion--club .ac-trigger[aria-expanded=false]::after {
  top: 0;
  right: 13px;
  content: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 14.6V17.4H27V14.6L5 14.6Z" fill="%237A7A7A"/></svg>');
}
.accordion__header.ac-trigger {
  flex-direction: column;
  align-items: flex-start;
}
.accordion__header.ac-trigger::after {
  top: 10px;
}
.accordion__wrapper {
  display: flex;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.accordion__photo {
  width: 150px;
  height: 150px;
  position: relative;
}
.accordion__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.accordion__photo-tag {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: #e6e6e6;
  color: #7a7a7a;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  padding: 8px;
}
.accordion__photo-tag--orange {
  color: #fff;
  background-color: #e74b1d;
}
.accordion__info {
  width: 80%;
}
.accordion__company {
  margin-bottom: 20px;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  color: #7a7a7a;
}
.accordion__link {
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
  color: #e74b1d;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  transition: color 0.38s ease-in-out;
}
@media (hover: hover) {
  .accordion__link:hover {
    color: #1d1d1b;
  }
}
.accordion__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #7a7a7a;
  margin-bottom: 20px;
}
.accordion__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.accordion__tabs-item {
  padding: 8px;
  border: 1px solid #7a7a7a;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: #7a7a7a;
}
.accordion__content {
  padding-top: 20px;
  padding-left: clamp(3.125rem, 3.185vw + 1.071rem, 3.75rem);
  padding-right: clamp(3.125rem, 3.185vw + 1.071rem, 3.75rem);
  font-size: 16px;
  line-height: 24px;
  color: #1d1d1b;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.accordion__content--description {
  padding: 0;
}
.accordion__content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion__content-title {
  font-size: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
  font-weight: 500;
  line-height: clamp(1.438rem, 0.637vw + 1.027rem, 1.563rem);
}
.accordion__content-item {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.accordion__content-name {
  width: 90%;
}
.accordion__content p b {
  font-weight: 700;
}
.accordion__content b {
  font-weight: 700;
}
.accordion__content a {
  position: relative;
  color: #e74b1d;
}
.accordion__content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
}
.accordion__content ul:last-child {
  margin-bottom: 0;
}
.accordion__content ul li {
  position: relative;
  padding-left: clamp(0.938rem, 3.185vw + -1.117rem, 1.563rem);
}
.accordion__content ul li::before {
  content: "";
  border-radius: 50%;
  background-color: #1d1d1b;
  width: 5px;
  height: 5px;
  position: absolute;
  left: clamp(0rem, 2.548vw + -1.643rem, 0.5rem);
  top: 10px;
}
.accordion__content-text {
  width: 90%;
  font-weight: 400;
  color: #7a7a7a;
}
.accordion__content-text--full {
  width: 100%;
}
.accordion__content-text a {
  color: #e74b1d;
  transition: color 0.38s ease-in-out;
}
.accordion__content-text a:after {
  content: none;
}
@media (hover: hover) {
  .accordion__content-text a:hover {
    color: #1d1d1b;
  }
}
.accordion__content-dop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

@media (max-width: 992px) {
  .accordion {
    width: 100%;
  }
  .accordion__title {
    width: 90%;
  }
  .accordion__content-item {
    flex-wrap: wrap;
    gap: 5px;
  }
  .accordion__content-name {
    width: 100%;
  }
  .accordion__content-text {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .accordion__wrapper {
    flex-direction: column;
  }
  .accordion__info {
    width: 100%;
  }
  .accordion__item.is-active .accordion__wrapper {
    gap: 60px;
  }
}
.etiquette__container {
  grid-area: center;
}
.etiquette__text {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  color: #1d1d1b;
  font-size: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
  line-height: clamp(1.375rem, 0.955vw + 0.759rem, 1.563rem);
}
.etiquette__text h2,
.etiquette__text h3 {
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
}
.etiquette__text ol,
.etiquette__text ul {
  display: flex;
  flex-direction: column;
  counter-reset: example 0;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.etiquette__text ol li,
.etiquette__text ul li {
  padding-left: clamp(3.75rem, 9.554vw + -2.412rem, 5.625rem);
  position: relative;
  counter-increment: example 1;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.etiquette__text ol li::before,
.etiquette__text ul li::before {
  color: #e74b1d;
  font-size: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  position: absolute;
  left: 0;
  top: 0;
  width: 7%;
  display: flex;
  justify-content: center;
  min-height: 48px;
  content: counter(example);
}
.etiquette__text ol li h3,
.etiquette__text ol li h4,
.etiquette__text ul li h3,
.etiquette__text ul li h4 {
  font-size: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
  font-weight: 500;
  line-height: clamp(1.75rem, 0.637vw + 1.339rem, 1.875rem);
  margin-bottom: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.etiquette__text--meet {
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
}
.etiquette__text--meet ol li,
.etiquette__text--meet ul li {
  flex-direction: column;
  align-items: flex-start;
}
.etiquette__text a {
  position: relative;
  color: #e74b1d;
}
.etiquette__text a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .etiquette__text a:hover::after {
    width: 0%;
  }
}

@media (max-width: 992px) {
  .etiquette__text {
    width: 100%;
  }
  .etiquette__text ol li,
  .etiquette__text ul li {
    padding-left: 40px;
  }
}
.clubCard {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.clubCard__container {
  grid-area: center;
  color: #1d1d1b;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
}
.clubCard h4 {
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  font-weight: 500;
  line-height: clamp(1.625rem, 1.274vw + 0.803rem, 1.875rem);
  margin-bottom: clamp(0.625rem, 1.592vw + -0.402rem, 0.938rem);
}
.clubCard h4:last-child {
  margin-bottom: 0;
}
.clubCard p {
  margin-bottom: clamp(0.625rem, 1.592vw + -0.402rem, 0.938rem);
}
.clubCard p:last-child {
  margin-bottom: 0;
}
.clubCard span {
  color: #e74b1d;
}
.clubCard h2,
.clubCard h3 {
  margin-bottom: clamp(1.25rem, 6.369vw + -2.858rem, 2.5rem);
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  color: #1d1d1b;
}
.clubCard ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.clubCard ul li {
  position: relative;
  padding-left: clamp(1.625rem, 3.185vw + -0.429rem, 2.25rem);
}
.clubCard ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  height: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  background-color: #e74b1d;
}

.clubTabs {
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.clubTabs__container {
  grid-area: center;
}

.table td,
.table th {
  width: 25%;
  padding: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  text-align: left;
  vertical-align: top;
  color: #1d1d1b;
  font-size: clamp(1.25rem, 1.274vw + 0.428rem, 1.5rem);
  line-height: clamp(1.625rem, 1.274vw + 0.803rem, 1.875rem);
}
.table td p small,
.table th p small {
  display: block;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
}
.table th {
  font-weight: 500;
}
.table tbody tr:nth-child(2n-1) {
  background-color: #f8f8f8;
}

@media (max-width: 992px) {
  .table {
    overflow: auto;
  }
  .table table {
    min-width: 550px;
  }
  .table::-webkit-scrollbar {
    width: 13px;
  }
  .table::-webkit-scrollbar-track {
    background: #f8f8f8;
  }
  .table::-webkit-scrollbar-thumb {
    background-color: #e74b1d;
    border-radius: 10px;
    border: 5px solid #f8f8f8;
  }
}
@media (max-width: 576px) {
  .table table {
    min-width: 750px;
  }
}
.steps__container {
  grid-area: center;
}
.steps__wrapper {
  display: flex;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.steps__wrapper:last-child {
  align-items: center;
  margin-bottom: 0;
}
.steps__link {
  position: relative;
  color: #e74b1d;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
}
.steps__link::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .steps__link:hover::after {
    width: 0%;
  }
}

@media (max-width: 992px) {
  .steps__wrapper {
    flex-wrap: wrap;
  }
}
.step {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
  width: 25%;
}
.step__number {
  color: #e74b1d;
  font-size: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 3.822vw + -0.215rem, 3rem);
}
.step__text {
  font-size: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
  font-weight: 400;
  line-height: clamp(1.438rem, 0.637vw + 1.027rem, 1.563rem);
  color: #7a7a7a;
}

@media (max-width: 992px) {
  .step {
    width: 48.6%;
  }
}
@media (max-width: 768px) {
  .step {
    width: 47%;
  }
}
@media (max-width: 576px) {
  .step {
    width: 100%;
  }
}
.questions__container {
  grid-area: center;
}

.questionnaire__container {
  grid-area: center;
}
.questionnaire__title {
  color: #1d1d1b;
  margin-bottom: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
}
.questionnaire__form {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 3.185vw + -0.179rem, 2.5rem);
}
.questionnaire__form-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-template-rows: repeat(5, minmax(0px, 1fr));
  -moz-column-gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
       column-gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
  row-gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
@media (max-width: 768px) {
  .questionnaire__form-wrapper {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-rows: unset;
  }
}
.questionnaire__form-item {
  flex: 46%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.questionnaire__form-item:last-child {
  grid-area: -1/1/-1/3;
}
@media (max-width: 768px) {
  .questionnaire__form-item:last-child {
    grid-area: unset;
  }
}
.questionnaire__form-item input,
.questionnaire__form-item textarea {
  width: 100%;
  padding: 16px;
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  font-size: 16px;
  line-height: 20px;
  color: #1d1d1b;
}
.questionnaire__form-item input::-moz-placeholder, .questionnaire__form-item textarea::-moz-placeholder {
  color: #7a7a7a;
}
.questionnaire__form-item input::placeholder,
.questionnaire__form-item textarea::placeholder {
  color: #7a7a7a;
}
.questionnaire__form-item .choices__inner {
  width: 100%;
  padding: 16px !important;
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  font-size: 16px;
  line-height: 20px;
}
.questionnaire__form-item .choices__list--dropdown {
  width: 100% !important;
  background-color: #f8f8f8;
  padding: 10px;
  max-height: 140px;
  overflow-y: auto;
}
.questionnaire__form-item .choices__list--dropdown::-webkit-scrollbar {
  width: 13px;
}
.questionnaire__form-item .choices__list--dropdown::-webkit-scrollbar-track {
  background: #f8f8f8;
}
.questionnaire__form-item .choices__list--dropdown::-webkit-scrollbar-thumb {
  background-color: #e74b1d;
  border-radius: 10px;
  border: 5px solid #f8f8f8;
}
.questionnaire__form-item .choices__list--dropdown,
.questionnaire__form-item .choices__list[aria-expanded] {
  border: 1px solid #e6e6e6;
}
.questionnaire__form-item .choices__list--dropdown .choices__item--selectable.is-highlighted,
.questionnaire__form-item .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: transparent;
}
.questionnaire__form-item .choices__item {
  white-space: break-spaces;
  color: #1d1d1b;
  font-weight: 400;
}
.questionnaire__form-item .choices__item--selectable[data-value="0"] {
  color: #7a7a7a;
}
.questionnaire__form-item .choices__item--choice[data-value="0"] {
  display: none;
}
.questionnaire__form-item .choices[data-type*=select-one]::after {
  background-image: url("../img/arrow.svg");
  right: 16px;
}
.questionnaire__form-item textarea {
  resize: none;
  height: 128px;
  overflow-y: auto;
}
.questionnaire__form-item textarea::-webkit-scrollbar {
  width: 13px;
}
.questionnaire__form-item textarea::-webkit-scrollbar-track {
  background: #f8f8f8;
}
.questionnaire__form-item textarea::-webkit-scrollbar-thumb {
  background-color: #e74b1d;
  border-radius: 10px;
  border: 5px solid #f8f8f8;
}
.questionnaire__form-text {
  color: #7a7a7a;
  font-size: clamp(0.75rem, 0.637vw + 0.339rem, 0.875rem);
  line-height: 14px;
}
.questionnaire__form-text span {
  color: #e74b1d;
}
.questionnaire__form-text a {
  position: relative;
  color: #e74b1d;
}
.questionnaire__form-text a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .questionnaire__form-text a:hover::after {
    width: 0%;
  }
}
.questionnaire__form-bottom {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.questionnaire__form-bottom .questionnaire__form-text {
  line-height: 18px;
  width: 68%;
}

@media (max-width: 1335px) {
  .questionnaire__form-bottom .questionnaire__form-text {
    width: 43%;
  }
}
@media (max-width: 992px) {
  .questionnaire__form {
    width: 100%;
  }
  .questionnaire__form-wrapper {
    align-items: flex-end;
  }
}
@media (max-width: 576px) {
  .questionnaire__form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .questionnaire__form-bottom .questionnaire__form-text {
    width: 55%;
  }
}
@media (max-width: 558px) {
  .questionnaire__form-bottom .questionnaire__form-text {
    width: 60%;
  }
}
@media (max-width: 500px) {
  .questionnaire__form-bottom .questionnaire__form-text {
    width: 77%;
  }
}
@media (max-width: 410px) {
  .questionnaire__form-bottom .questionnaire__form-text {
    width: 90%;
  }
}
.gallery__container {
  grid-area: center;
}
.gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.gallery__wrapper--size {
  grid-template-columns: repeat(6, 1fr);
}
.gallery__link {
  position: relative;
}
.gallery__link-img {
  width: 100%;
  height: clamp(6.875rem, 15.924vw + -3.396rem, 10rem);
  -o-object-fit: contain;
     object-fit: contain;
}
@media (hover: hover) {
  .gallery__link:hover .gallery__photo {
    z-index: 2;
    visibility: visible;
    width: 165%;
    height: auto;
  }
}
.gallery__photo {
  position: absolute;
  display: flex;
  flex-direction: column;
  display: flex;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  padding: 20px;
  width: 0%;
  height: 0%;
  top: -20px;
  left: -20px;
  z-index: -2;
  visibility: hidden;
}
.gallery__photo-img {
  width: clamp(15.625rem, 31.847vw + -4.916rem, 21.875rem);
  -o-object-fit: cover;
     object-fit: cover;
  filter: none;
}
.gallery__photo-text {
  font-size: 14px;
  line-height: 18px;
  color: #7a7a7a;
}

@media (max-width: 992px) {
  .gallery__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery__link-img {
    height: 200px;
  }
}
.contacts__container {
  grid-area: center;
  display: flex;
  gap: clamp(3.125rem, 15.924vw + -7.146rem, 6.25rem);
}
.contacts__info {
  width: 47%;
}
.contacts__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.contacts__wrapper-box {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  padding-left: 44px;
}
.contacts__map {
  position: relative;
  width: 51%;
  height: clamp(26.188rem, 19.427vw + 13.657rem, 30rem);
}
.contacts__map .ymaps-2-1-79-ground-pane {
  filter: grayscale(1);
}

@media (max-width: 992px) {
  .contacts__container {
    flex-wrap: wrap;
  }
  .contacts__info {
    width: 100%;
  }
  .contacts__map {
    width: 100%;
    height: 300px;
  }
}
.contactsCard__container {
  grid-area: center;
  display: flex;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}

@media (max-width: 992px) {
  .contactsCard__container {
    flex-wrap: wrap;
  }
}
.president {
  width: 50%;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.president__photo {
  width: 193px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.president__name {
  margin-bottom: 10px;
  color: #1d1d1b;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.president__text {
  margin-bottom: 20px;
  color: #7a7a7a;
  font-size: 16px;
  line-height: 20px;
}
.president__link {
  color: #e74b1d;
  font-size: 16px;
  line-height: 16px;
  position: relative;
}
.president__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .president__link:hover::after {
    width: 0%;
  }
}

@media (max-width: 992px) {
  .president {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .president__name {
    font-size: 18px;
    line-height: 18px;
  }
  .president__text {
    font-size: 14px;
    line-height: 18px;
  }
  .president__link {
    font-size: 14px;
  }
  .president__photo {
    width: 180px;
    height: 180px;
  }
}
.contentNews__container {
  grid-area: center;
  display: flex;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.contentNews__text {
  width: 58%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 3.185vw + -1.179rem, 1.5rem);
  color: #1d1d1b;
  font-size: clamp(1rem, 1.274vw + 0.178rem, 1.25rem);
  line-height: clamp(1.625rem, 1.274vw + 0.803rem, 1.875rem);
}
.contentNews__text-item {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.contentNews__text-item:last-child {
  margin-bottom: 0;
}
.contentNews__text h2,
.contentNews__text h3 {
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
}
.contentNews__text b {
  font-weight: 700;
  display: block;
}
.contentNews__text small {
  color: #7a7a7a;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
}
.contentNews__text ol {
  list-style: decimal;
  margin-left: 2em;
}
.contentNews__text ul {
  list-style: square !important;
  margin-left: 2em;
}
.contentNews__text li::marker {
  color: #e74b1d;
}
.contentNews__text a {
  position: relative;
  color: #e74b1d;
  width: -moz-fit-content;
  width: fit-content;
}
.contentNews__text a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .contentNews__text a:hover::after {
    width: 0%;
  }
}
.contentNews__text .button {
  color: #ffffff;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  font-weight: 500;
  line-height: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
}
.contentNews__text .button::after {
  content: none;
}
.contentNews__photo {
  width: 42%;
  height: clamp(21.875rem, 28.662vw + 3.388rem, 27.5rem);
}
.contentNews__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 992px) {
  .contentNews__container {
    flex-direction: column;
  }
  .contentNews__text, .contentNews__photo {
    width: 100%;
  }
  .contentNews__photo {
    height: 420px;
  }
}
.otherNews__container {
  grid-area: center;
}
.otherNews__title {
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  color: #1d1d1b;
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
}
.otherNews__cards {
  display: flex;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}

@media (max-width: 992px) {
  .otherNews__cards {
    flex-wrap: wrap;
  }
}
.cities__container {
  grid-area: center;
}
.cities__title {
  margin-bottom: clamp(1.875rem, 6.369vw + -2.233rem, 3.125rem);
  color: #1d1d1b;
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 1.274vw + 1.428rem, 2.5rem);
  width: 67%;
}
.cities__title span {
  color: #e74b1d;
}
.cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.625rem, 6.369vw + -3.483rem, 1.875rem);
  margin-bottom: clamp(1.875rem, 6.369vw + -2.233rem, 3.125rem);
}
.cities__list:last-child {
  margin-bottom: 0;
}
.cities__list-item {
  position: relative;
  padding-left: clamp(1.625rem, 3.185vw + -0.429rem, 2.25rem);
  flex: 31% 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cities__list-item::before {
  content: "";
  position: absolute;
  top: clamp(0.438rem, 1.592vw + -0.59rem, 0.75rem);
  left: 7px;
  width: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  height: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  background-color: #e74b1d;
}
.cities__list-name {
  color: #1d1d1b;
  font-size: clamp(1.125rem, 1.911vw + -0.107rem, 1.5rem);
  font-weight: 500;
  line-height: clamp(1.5rem, 1.911vw + 0.268rem, 1.875rem);
}
.cities__list-text {
  color: #7a7a7a;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.5rem, 0.637vw + 1.089rem, 1.625rem);
}
.cities__text {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
  font-size: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
  line-height: clamp(1.375rem, 2.548vw + -0.268rem, 1.875rem);
  color: #1d1d1b;
}
.cities__text a {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: #e74b1d;
}
.cities__text a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .cities__text a:hover::after {
    width: 0%;
  }
}

@media (max-width: 992px) {
  .cities__title {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cities__list-item {
    flex: 48%;
  }
}
@media (max-width: 576px) {
  .cities__list-item {
    flex: 100%;
  }
  .cities__text {
    width: 100%;
  }
}
.citiesText__container {
  grid-area: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 6.369vw + -3.483rem, 1.875rem);
  color: #1d1d1b;
  font-size: clamp(1rem, 1.274vw + 0.178rem, 1.25rem);
  line-height: clamp(1.625rem, 1.274vw + 0.803rem, 1.875rem);
  width: 75%;
}
.citiesText__container h2 {
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(2.25rem, 1.274vw + 1.428rem, 2.5rem);
}
.citiesText__container a {
  position: relative;
  color: #e74b1d;
}
.citiesText__container a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e74b1d;
  transition: width 0.38s ease-in-out;
}
@media (hover: hover) {
  .citiesText__container a:hover::after {
    width: 0%;
  }
}
.citiesText__container .button {
  color: #ffffff;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  font-weight: 500;
  line-height: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
}
.citiesText__container .button::after {
  content: none;
}
.citiesText__container ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.citiesText__container ul li {
  position: relative;
  padding-left: clamp(1.875rem, 1.911vw + 0.643rem, 2.25rem);
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
}
.citiesText__container ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: clamp(0.188rem, 1.274vw + -0.634rem, 0.438rem);
  width: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  height: clamp(0.375rem, 0.637vw + -0.036rem, 0.5rem);
  background-color: #e74b1d;
}
.citiesText__container ul li ul {
  display: block;
}
.citiesText__container ul li ul li {
  padding-left: clamp(1rem, 3.185vw + -1.054rem, 1.625rem);
}
.citiesText__container ul li ul li::before {
  background-color: #1d1d1b;
  border-radius: 50%;
  width: clamp(0.25rem, 0.637vw + -0.161rem, 0.375rem);
  height: clamp(0.25rem, 0.637vw + -0.161rem, 0.375rem);
}

@media (max-width: 992px) {
  .citiesText__container {
    width: 100%;
  }
}
.slider {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(20px, 1fr) [right-start center-start] minmax(0, var(--container-width)) [left-end center-end] minmax(20px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  --container-width: 1084px;
  margin-bottom: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
@media (max-width: 992px) {
  .slider {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .slider {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .slider {
    --container-width: 100%;
  }
}
.slider__container {
  grid-area: center;
}
.slider__wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.slider__title {
  color: #1d1d1b;
  font-size: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
}
.slider__date {
  color: #7a7a7a;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.slider__box {
  position: relative;
}
.slider__swiper {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.slider__slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.slider__slide img {
  width: 100%;
  height: clamp(28.125rem, 49.045vw + -3.509rem, 37.75rem);
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__btn:after {
  content: none;
}
.slider__btn::before {
  transform: rotate(90deg);
  font-size: clamp(1.625rem, 1.802vw + 0.463rem, 2.625rem);
  color: #7a7a7a;
}
.slider__btnPrev {
  left: -100px;
}
.slider__btnNext {
  right: -100px;
  transform: rotate(-180deg);
}
.slider__text {
  width: 75%;
  color: #1d1d1b;
  font-size: clamp(0.875rem, 0.637vw + 0.464rem, 1rem);
  line-height: clamp(1.125rem, 0.637vw + 0.714rem, 1.25rem);
}

@media (max-width: 1460px) {
  .slider__btn {
    z-index: 8;
  }
  .slider__btnPrev {
    left: -70px;
  }
  .slider__btnNext {
    right: -70px;
  }
}
@media (max-width: 1380px) {
  .slider__btnPrev {
    left: -25px;
  }
  .slider__btnNext {
    right: -25px;
  }
}
@media (max-width: 992px) {
  .slider__btnPrev {
    left: -30px;
  }
  .slider__btnNext {
    right: -30px;
  }
  .slider__text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .slider__wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .slider__slide img {
    height: 325px;
  }
}
@media (max-width: 576px) {
  .slider__slide img {
    height: 190px;
  }
}
.burger {
  display: none;
}

@media (max-width: 992px) {
  .burger {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 32px;
    margin-left: 30px;
  }
  .burger span {
    width: 6px;
    height: 6px;
    background-color: #1d1d1b;
    transition: 0.38s ease-in-out;
  }
  .burger span:last-child {
    background-color: #e74b1d;
  }
  .burger--open span {
    background-color: #e74b1d;
  }
}
.menu {
  --container-width: 1306px;
  display: grid;
  grid-template-columns: [full-start left-start] minmax(20px, 1fr) [right-start center-start] minmax(0, var(--container-width)) [left-end center-end] minmax(20px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  background-color: #fff;
  position: fixed;
  left: -100%;
  top: 0px;
  width: 100%;
  height: 100vh;
  padding-bottom: 30px;
  padding-top: 110px;
  z-index: 9;
  transition: 0.38s ease-in-out;
  overflow: auto;
}
@media (max-width: 992px) {
  .menu {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .menu {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .menu {
    --container-width: 100%;
  }
}
.menu--open {
  left: 0;
}
.menu__container {
  grid-area: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu__container-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.menu__actions-icon {
  font-size: 32px;
  color: #7a7a7a;
}
.menu__actions-text {
  color: #7a7a7a;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.modal {
  display: none;
  width: clamp(23.75rem, 24.204vw + 8.139rem, 28.5rem);
  padding: 30px;
  background-color: #ffffff;
}
.modal--photo {
  border: 1px solid #e6e6e6;
  padding: 20px;
  width: clamp(40.625rem, 60.51vw + 1.596rem, 52.5rem);
}
.modal--photo .fancybox__content > .f-button.is-close-btn {
  top: 30px;
  right: 30px;
  width: clamp(2rem, 3.185vw + -0.054rem, 2.625rem);
  height: clamp(2rem, 3.185vw + -0.054rem, 2.625rem);
}
.modal--photo .f-button svg {
  display: none;
}
.modal--photo .modal__container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  filter: none;
}
.modal--photo .modal__container p {
  color: #7a7a7a;
  font-size: 16px;
  line-height: clamp(0.938rem, 4.777vw + -2.144rem, 1.875rem);
}
.modal__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #1d1d1b;
  margin-bottom: 30px;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__form-input {
  border: 1px solid #e6e6e6;
  background-color: #f8f8f8;
  padding: 16px;
  color: #1d1d1b;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
}
.modal__form-input::-moz-placeholder {
  color: #7a7a7a;
}
.modal__form-input::placeholder {
  color: #7a7a7a;
}
.modal__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__form-wrapper--between {
  margin-top: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.modal__form-text {
  font-size: 14px;
  line-height: 14px;
  color: #7a7a7a;
}
.modal__form-link {
  color: #7a7a7a;
  font-size: 16px;
  line-height: 20px;
  position: relative;
}
.modal__form-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #7a7a7a;
}

.is-compact .modal.fancybox__content > .f-button.is-close-btn,
.modal.fancybox__content > .f-button.is-close-btn {
  top: 32px;
  right: 28px;
  width: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
  height: clamp(1.75rem, 1.274vw + 0.928rem, 2rem);
}
.is-compact .modal.fancybox__content > .f-button.is-close-btn::after,
.modal.fancybox__content > .f-button.is-close-btn::after {
  content: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.7667 9.21183L22.7868 7.23193L15.9986 14.0202L9.21037 7.23193L7.23047 9.21183L14.0187 16.0001L7.23047 22.7883L9.21037 24.7682L15.9986 17.98L22.7868 24.7682L24.7667 22.7883L17.9785 16.0001L24.7667 9.21183Z" fill="%237A7A7A"/></svg>');
}

.is-compact .modal--photo.fancybox__content > .f-button.is-close-btn::after,
.modal--photo.fancybox__content > .f-button.is-close-btn::after {
  content: url('data:image/svg+xml,<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M32.5085 12.0908L29.9099 9.49219L21.0004 18.4017L12.0908 9.49219L9.49219 12.0908L18.4017 21.0004L9.49219 29.9099L12.0908 32.5085L21.0004 23.599L29.9099 32.5085L32.5085 29.9099L23.599 21.0004L32.5085 12.0908Z" fill="white"/></svg>');
}

.f-button svg {
  display: none;
}

.fancybox__nav svg {
  display: block;
}

.f-button {
  background: transparent;
}

html.with-fancybox {
  overflow: hidden;
}

.profile__container {
  grid-area: center;
}
.profile__wrapper {
  display: flex;
  gap: clamp(1.875rem, 9.554vw + -4.287rem, 3.75rem);
}
.profile__photo {
  width: 150px;
  height: 150px;
  position: relative;
}
.profile__photo-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.profile__photo-tag {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: #e6e6e6;
  color: #7a7a7a;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  padding: 8px;
}
.profile__photo-tag--orange {
  color: #fff;
  background-color: #e74b1d;
}
.profile__title {
  color: #1d1d1b;
  font-size: clamp(1.375rem, 0.637vw + 0.964rem, 1.5rem);
  font-weight: 500;
  line-height: clamp(1.563rem, 1.592vw + 0.535rem, 1.875rem);
}
.profile__info {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.profile__info-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.profile__info-wrapper--gap {
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.profile__info-tag {
  background-color: #e6e6e6;
  color: #7a7a7a;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  padding: 8px;
}
.profile__info-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.profile__info-item {
  display: flex;
  flex-direction: column;
  gap: clamp(0.313rem, 1.592vw + -0.715rem, 0.625rem);
}
.profile__info-item--gap {
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.profile__info-name {
  color: #1d1d1b;
  font-size: 16px;
  line-height: 20px;
}
.profile__info-name--width {
  width: 10%;
}
.profile__info-text {
  color: #7a7a7a;
  font-size: 16px;
  line-height: 20px;
}
.profile__info-form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.profile__info-link {
  color: #e74b1d;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: color 0.38s ease-in-out;
}
@media (hover: hover) {
  .profile__info-link:hover {
    color: #1d1d1b;
  }
}
.profile__info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.625rem, 3.185vw + -1.429rem, 1.25rem);
}
.profile__info-password {
  color: #7a7a7a;
  font-size: clamp(1.625rem, 1.592vw + 0.598rem, 1.938rem);
  line-height: 20px;
}
.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.profile__tag {
  padding: 8px;
  border: 1px solid #7a7a7a;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: #7a7a7a;
}
.profile__tag--orange {
  border: 1px solid #e74b1d;
  color: #e74b1d;
}
.profile__subtitle {
  font-size: 20px;
  font-weight: 550;
  line-height: 25px;
  color: #1d1d1b;
}
.profile__map {
  margin-top: 10px;
  width: clamp(31.25rem, 34.076vw + 9.271rem, 37.938rem);
  height: clamp(21.875rem, 21.656vw + 7.907rem, 26.125rem);
}
.profile__form {
  width: 59%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.185vw + -0.804rem, 1.875rem);
}
.profile__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(0.313rem, 1.592vw + -0.715rem, 0.625rem);
}
.profile__form-label {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 14px;
}
.profile__form-input {
  width: 100%;
  border: 1px solid #e6e6e6;
  background-color: #f8f8f8;
  padding: 16px;
  color: #1d1d1b;
  font-size: 16px;
  line-height: 20px;
  overflow: auto;
}
.profile__form-input::-moz-placeholder {
  color: #7a7a7a;
}
.profile__form-input::placeholder {
  color: #7a7a7a;
}
.profile__form-input::-webkit-scrollbar {
  width: 10px;
}
.profile__form-input::-webkit-scrollbar-track {
  background: #f8f8f8;
}
.profile__form-input::-webkit-scrollbar-thumb {
  background-color: #e74b1d;
  border: 3px solid #f8f8f8;
}
.profile__form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile__form-checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  background-image: url(../img/union.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 15px 10px;
  background-position: center;
  transition: all 0.38s ease-in-out;
  border: 1px solid #1D1D1B;
}
.profile__form-checkbox input:checked {
  background-color: #e74b1d;
  border: 1px solid #e74b1d;
}
.profile__form-checkbox label {
  color: #1D1D1B;
  font-size: 14px;
}
.profile__form input[type=date]::-webkit-inner-spin-button,
.profile__form input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.profile__form textarea {
  resize: none;
  height: 128px;
}
.profile__form-buttons {
  display: flex;
  margin-top: -10px;
  gap: 10px;
}

@media (max-width: 992px) {
  .profile__form {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .profile__wrapper {
    flex-direction: column;
    gap: 80px;
  }
  .profile__info {
    width: 100%;
  }
  .profile__map {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .profile__info-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile__form {
    margin-top: 5px;
  }
  .profile__form-buttons {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=style.css.map */