/* VARS */

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-main: #0069b4;
  --color-grey: #989898;
  --color-grey-light: #e1e1e1;
  --color-grey-light2: #f3f3f3;
  --color-green: #409957;
  --color-red: #cb333c;
}

/* FONTS */

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Manrope;
  font-display: swap;
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

html,
body {
  position: relative;
  min-width: 320px;
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  background-color: transparent;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

input:focus,
input:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

legend {
  display: block;
}

/* HTML LOADED */

/* BODY */

body {
  color: var(--color-black);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1;
}

body._locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

/* ANIMATION */

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 24px, 0);
    transform: translate3d(0, 24px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 24px, 0);
    transform: translate3d(0, 24px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* WRAPPER */

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/* CONTAINER */

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1168px;
}

/* COMMON */

.page-top {
  margin-bottom: 48px;
}

.page-top__inner {
  padding-left: 208px;
}

.page-title {
  font-family: Manrope, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
}

.page-title:not(:last-child) {
  margin-bottom: 28px;
}

/* SECTION */

.section {
  padding: 100px 0;
}

.section.section--dark {
  background-color: var(--color-grey-light2);
}

.section--pb {
  padding: 0 0 60px;
}

.section-title {
  margin-bottom: 40px;
  font-family: Manrope, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

.section-title.section-title--small {
  font-size: 36px;
}

.section-subtitle {
  margin-bottom: 40px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
}

.section-text {
  line-height: 1.5;
}

.section-text.section-text--grey {
  color: var(--color-grey);
}

.section-text > p:not(:last-child) {
  margin-bottom: 24px;
}

/* CONTENT EDITOR */

.content-editor {
  font-size: 16px;
  line-height: 1.5;
}

.content-editor > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.content-editor > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5,
.content-editor h6 {
  padding: 0;
  margin: 0;
  margin-top: 44px;
  margin-bottom: 28px;
  font-family: Manrope, sans-serif;
  font-weight: 600;
  line-height: 1.33;
}

.content-editor h1 {
  font-size: 48px;
}

.content-editor h2 {
  font-size: 36px;
}

.content-editor h3 {
  font-size: 24px;
}

.content-editor h4 {
  font-size: 20px;
}

.content-editor h5,
.content-editor h6 {
  font-size: 18px;
}

.content-editor hr {
  margin-top: 36px;
  margin-bottom: 24px;
  display: block;
  height: 1px;
  background-color: var(--color-grey-light);
}

.content-editor strong,
.content-editor b {
  font-weight: 600;
}

.content-editor p {
  margin-bottom: 24px;
}

.content-editor img {
  width: 100%;
  height: auto;
  max-height: 348px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.content-editor a {
  color: var(--color-main);
  text-decoration: underline;
}

.content-editor ul,
.content-editor ol {
  margin-top: -12px;
  margin-bottom: 24px;
}

.content-editor ul {
  list-style: none;
}

.content-editor ul > li {
  padding-left: 32px;
  position: relative;
}

.content-editor ul > li:not(:last-child) {
  margin-bottom: 8px;
}

.content-editor ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 12px;
  width: 8px;
  height: 8px;
  background-color: var(--color-main);
  border-radius: 50%;
}

.content-editor ol {
  padding-left: 12px;
  list-style-position: inside;
}

.content-editor ol > li:not(:last-child) {
  margin-bottom: 8px;
}

.content-editor ol > li::marker {
  color: var(--color-main);
  font-weight: 600;
}

.content-editor._3images > p:has(img) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.content-editor._3images > p:has(img) img {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

/* BUTTONS */

.btn {
  padding: 0px 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 56px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid var(--color-white);
  -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn.btn--w {
  color: var(--color-main);
  background-color: var(--color-white);
}

.btn.btn--b {
  color: var(--color-white);
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.btn.btn--btr {
  color: var(--color-black);
  border-color: var(--color-main);
}

.btn svg {
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-main);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.btn-link svg {
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-link span {
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}

/* IMG */

.img {
  padding-bottom: 60%;
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  border-radius: inherit;
  overflow: hidden;
}

.img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

a.img {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

/* SWIPER */

.swiper:has(.swiper-button-lock) .swiper-nav {
  display: none;
}

.swiper .swiper-wrapper._animation {
  pointer-events: none;
}

.swiper .swiper-slide {
  height: auto;
}

.swiper .swiper-nav {
  margin-top: 32px;
  position: relative;
  width: auto;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.swiper .swiper-nav > .swiper-pagination {
  margin: 0 16px;
  width: auto;
  min-width: 48px;
  position: static;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 0;
  font-size: 18px;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
  right: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  pointer-events: auto;
  background-color: var(--color-white);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  color: var(--color-main);
  font-size: 18px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.swiper .swiper-pagination {
  top: auto;
  bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.swiper .swiper-pagination > .swiper-pagination-bullet {
  margin: 0;
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-white);
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.swiper .swiper-pagination > .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.swiper .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  opacity: 1;
}

.swiper .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/* DATE & FLAG */

.date-flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.date {
  padding: 0 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 16px;
  white-space: nowrap;
  background-color: var(--color-green);
  border-radius: 4px;
}

.flag {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 46px;
  height: 34px;
  overflow: hidden;
  border-radius: 4px;
}

.flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

/* FORMS */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 0;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

select::-ms-expand {
  display: none;
}

.form {
  position: relative;
}

.form::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: url("../img/loading.svg") 0 0 / contain no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form._sending > * {
  pointer-events: none;
  opacity: 0.25 !important;
}

.form._sending::after {
  opacity: 1;
  visibility: visible;
}

.form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 30px;
}

.form-row:not(:last-child) {
  margin-bottom: 30px;
}

.form-row.form-row--3cols .form-item {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.form-row.form-row--3cols .form-item.form-item--2cols {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

.form-row > .form-item:not(:last-child) {
  margin: 0;
}

.form-item {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.form-item.form-item--selectable {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-item.form-item--selectable > .form-label {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.form-item.form-item--selectable .form-input__wrapper.form-input__wrapper--1 {
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
}

.form-item.form-item--selectable .form-input__wrapper.form-input__wrapper--2 {
  width: calc(100% - 120px);
}

.form-item:not(:last-child) {
  margin-bottom: 30px;
}

.form-item:has(._required) .form-label::after {
  content: " *";
  color: var(--color-main);
}

.form-item:has(._error) .form-input__error {
  opacity: 1;
  visibility: visible;
}

.form-label {
  margin-bottom: 10px;
  display: block;
  color: var(--color-grey);
  font-size: 14px;
  line-height: 1.2;
}

.form-input__wrapper {
  position: relative;
}

.form-input__wrapper:has(.form-input--select)::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  background: url("../img/icons/sprite.svg#arrow") center/contain no-repeat;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.form-input {
  padding: 0 12px;
  display: block;
  width: 100%;
  height: 52px;
  color: var(--color-black);
  font-size: 16px;
  border-radius: 4px !important;
  border: 1px solid var(--color-grey-light);
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.form-input::-webkit-input-placeholder {
  color: var(--color-grey);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-moz-placeholder {
  color: var(--color-grey);
  -moz-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input:-ms-input-placeholder {
  color: var(--color-grey);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-ms-input-placeholder {
  color: var(--color-grey);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::placeholder {
  color: var(--color-grey);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input:focus {
  border-color: var(--color-main);
}

.form-input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input.form-input--ta {
  padding: 10px 20px;
  resize: none;
  height: 90px;
  overflow: auto;
  outline: none;
}

.form-input.form-input--select {
  padding-right: 40px;
  outline: none;
}

.form-input.form-input--select option {
  color: var(--color-black);
  background-color: var(--color-white);
}

.form-input.form-input--select option:disabled {
  opacity: 0.5;
}

.form-input.form-input--select option:checked {
  background-color: var(--color-grey-light);
}

.form-input[readonly] {
  pointer-events: none;
}

.form-input[readonly],
.form-input._disabled,
.form-input:disabled {
  background-color: var(--color-grey-light2);
}

.form-input[readonly]::-webkit-input-placeholder,
.form-input._disabled::-webkit-input-placeholder,
.form-input:disabled::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input[readonly]::-moz-placeholder,
.form-input._disabled::-moz-placeholder,
.form-input:disabled::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input[readonly]:-ms-input-placeholder,
.form-input._disabled:-ms-input-placeholder,
.form-input:disabled:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input[readonly]::-ms-input-placeholder,
.form-input._disabled::-ms-input-placeholder,
.form-input:disabled::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input[readonly]::placeholder,
.form-input._disabled::placeholder,
.form-input:disabled::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input._error {
  border-color: var(--color-red);
}

.form-input__error {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  color: var(--color-red);
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-btn.btn {
  position: relative;
  height: 56px;
}

/* BREADCRUMBS */

.breadcrumbs {
  margin: 0px 0px 28px 0px;
}

.breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumbs > span > span {
  padding: 4px 0;
  padding-right: 16px !important;
  margin-right: 10px;
  position: relative;
  color: var(--color-grey);
  font-size: 14px;
}

.breadcrumbs > span > span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url("../img/icons/sprite.svg#arrow-grey") center/contain no-repeat;
}

.breadcrumbs > span > span:last-child {
  padding-right: 0;
}

.breadcrumbs > span > span:last-child:after {
  display: none;
}

.breadcrumbs > span > span > a {
  color: var(--color-grey);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* PAGINATION */

.pagination {
  margin-top: 60px;
}

.pagination > ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.pagination > ul > li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pagination > ul > li > .page-numbers {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 16px;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pagination > ul > li > .page-numbers.prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination > ul > li > .page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.pagination > ul > li > .page-numbers svg {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ACCORDEON */

[data-accordeon-btn] {
  padding-right: 30px !important;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

[data-accordeon-btn]._active::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

[data-accordeon-btn]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  width: 12px;
  height: 12px;
  z-index: 2;
  background: url("../img/icons/sprite.svg#arrow-black") center/contain no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* POPUP */

.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup._open .popup-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup.popup-video .popup-content {
  padding: 0;
  max-width: 1000px;
  background-color: var(--color-black);
}

.popup.popup-video .popup-close__btn {
  top: -36px;
  right: 4px;
  color: var(--color-white);
}

html._loaded .popup {
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-body {
  padding: 40px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}

.popup-content {
  padding: 40px 28px 32px;
  position: relative;
  width: 100%;
  max-width: 400px;
  background-color: var(--color-white);
  border-radius: 25px;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-content .form-btn {
  width: 100%;
}

.popup-close__btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  z-index: 2;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.popup-close__btn img,
.popup-close__btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.popup-title {
  padding-right: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

.popup-title:not(:last-child) {
  margin-bottom: 28px;
}

.popup-text {
  line-height: 1.5;
}

.popup-video__wrapper {
  padding-bottom: 56%;
  position: relative;
  width: 100%;
  height: 0;
}

.popup-video__wrapper > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* HEADER */

.header {
  position: relative;
  z-index: 9;
}

.header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-logo {
  margin-right: 50px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 158px;
  z-index: 2;
}

.header-logo__img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-logo__img img {
  width: 100%;
  height: 100%;
}

.header-body {
  padding: 30px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.header-top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.header-language {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-language.header-language--mobile {
  display: none;
  margin-top: 40px;
}

.header-language._active > li > a::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header-language._active > li .sub-menu {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-language > li {
  position: relative;
  cursor: pointer;
}

.header-language > li > a {
  padding: 0 6px;
  min-width: 72px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--color-grey-light);
  pointer-events: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.header-language > li > a::after {
  content: "";
  margin-left: 8px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background: url("../img/icons/sprite.svg#arrow-black") center/12px 12px no-repeat;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.header-language .sub-menu {
  padding: 20px;
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  -webkit-transform: translate3d(-50%, -10px, 0);
  transform: translate3d(-50%, -10px, 0);
  width: 100%;
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-grey-light);
  -webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
}

.header-language .sub-menu > li:not(:last-child) {
  margin-bottom: 16px;
}

.header-language .sub-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-language .current-lang {
  color: var(--color-main);
}

.header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.header-contacts.header-contacts--mobile {
  display: none;
  margin-top: 40px;
}

.header-contacts__link {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-contacts__btn {
  padding: 0 6px;
  height: 40px;
  color: var(--color-main);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-socials {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-socials.header-socials--mobile {
  display: none;
  margin-top: 40px;
}

.header-socials > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.header-socials > a img,
.header-socials > a svg {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.header-menu__list > li.current-menu-item > a {
  color: var(--color-main);
}

.header-menu__list > li > a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-menu__list > li > a._active {
  color: var(--color-main);
}

.header-burger {
  padding: 0 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 32px;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--color-grey-light);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.header-burger.header-burger--close {
  margin-bottom: 40px;
}

.header-burger span {
  margin-right: 13px;
  font-size: 14px;
  text-transform: uppercase;
}

.header-burger svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* FOOTER */

.footer {
  padding-top: 80px;
}

.footer.footer--border {
  border-top: 1px solid var(--color-grey-light);
}

.footer-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 255px 48px 1fr 48px 255px;
  grid-template-columns: 255px 1fr 255px;
  gap: 48px;
}

.footer-row.footer-row--top {
  margin-bottom: 48px;
}

.footer-row.footer-row--bottom {
  padding-bottom: 40px;
}

.footer-col {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.footer-logo {
  margin-bottom: 20px;
  width: 125px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.footer-socials > a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--color-grey-light2);
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.footer-socials > a svg,
.footer-socials > a img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-nav {
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

.footer-menu {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 50%;
}

.footer-menu > li:not(:last-child) {
  margin-bottom: 22px;
}

.footer-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-contacts {
  padding-top: 8px;
}

.footer-contacts__item:not(:last-child) {
  margin-bottom: 30px;
}

.footer-contacts__item-title {
  margin-bottom: 12px;
  color: var(--color-grey);
  font-size: 14px;
  line-height: 1.3;
}

.footer-contacts__item-body {
  font-weight: 500;
  line-height: 1.5;
}

.footer-contacts__item-body > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-text {
  color: var(--color-grey);
  font-size: 14px;
  line-height: 1.5;
}

.footer-text > a {
  color: var(--color-main);
  text-decoration: underline;
}

/* INTRO */

.intro {
  padding: 0 50px;
}

.intro-slider.swiper .swiper-nav {
  margin: 0;
  padding: 0 36px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.intro-slider.swiper .swiper-button-prev,
.intro-slider.swiper .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.35);
}

.intro-slider.swiper .swiper-button-prev::after,
.intro-slider.swiper .swiper-button-next::after {
  color: var(--color-white);
}

.intro-slider.swiper .swiper-pagination {
  bottom: 30px;
}

.intro-slide {
  padding: 140px 0 68px;
  position: relative;
  min-height: 794px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-radius: 35px;
  overflow: hidden;
  color: var(--color-white);
}

.intro-slide > .container {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.intro-slide__inner {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
}

.intro-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-slide__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.intro-slide__content {
  margin-right: 48px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.intro-slide__title {
  font-family: Manrope, sans-serif;
  font-size: 48px;
  font-weight: 600;
  text-wrap: balance;
}

.intro-slide__title:not(:last-child) {
  margin-bottom: 40px;
}

.intro-slide__text {
  max-width: 878px;
  font-size: 24px;
  line-height: 1.33;
  text-wrap: balance;
}

.intro-slide__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* OUR-FESTS */

.our-fests.section {
  padding-bottom: 0;
}

.our-fests__top {
  margin-bottom: 70px;
}

.our-fests__top > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.our-fests__title.section-title {
  margin-right: 124px;
  margin-bottom: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 446px;
}

.our-fests__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.our-fests__body {
  position: relative;
}

.our-fests__slider.swiper {
  position: relative;
  z-index: 2;
}

.our-fests__slider.swiper .swiper-nav {
  margin: 0;
  position: absolute;
  bottom: 70px;
  left: 50.3%;
}

.our-fests__slider.swiper .swiper-nav > .swiper-pagination {
  color: var(--color-white);
}

.our-fests__slider.swiper .swiper-button-prev,
.our-fests__slider.swiper .swiper-button-next {
  background-color: transparent;
  border: 1px solid var(--color-white);
}

.our-fests__slider.swiper .swiper-button-prev::after,
.our-fests__slider.swiper .swiper-button-next::after {
  color: var(--color-white);
}

.our-fests__slide > .container {
  position: relative;
  height: 100%;
}

.our-fests__slide-img {
  position: absolute;
  top: 0;
  left: 20px;
  width: 446px;
  z-index: 2;
  background-color: var(--color-white);
}

.our-fests__slide-img > .img {
  padding-bottom: 137%;
}

.our-fests__slide-content {
  padding-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: 682px;
}

.our-fests__slide-content-top {
  padding-bottom: 40px;
  padding-left: 570px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.our-fests__slide-df {
  margin-bottom: 20px;
}

.our-fests__slide-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.our-fests__slide-title > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.our-fests__slide-text {
  margin-bottom: 40px;
}

.our-fests__slide-download-btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.our-fests__slide-btns {
  padding: 36px 0 100px;
  padding-left: 570px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.our-fests__slide-btns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100vw - 100px);
  height: calc(100% + 70px);
  z-index: 1;
  background-color: var(--color-main);
  border-radius: 35px;
}

.our-fests__slide-btn {
  position: relative;
  z-index: 2;
}

/* CALENDAR */

.calendar-top {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calendar-title {
  margin-right: 124px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 446px;
}

.calendar-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 124px;
}

.calendar-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 446px;
  flex: 0 1 446px;
  padding-bottom: 8px;
  min-height: 82px;
  border-bottom: 1px solid var(--color-grey-light);
}

.calendar-item__date-flag {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.calendar-item__date-flag > span:first-child {
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
}

.calendar-item__date-flag > span:first-child img,
.calendar-item__date-flag > span:first-child svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.calendar-item__date-flag > span:last-child {
  font-weight: 500;
  white-space: nowrap;
}

.calendar-item__body {
  font-weight: 500;
  line-height: 1.5;
}

.calendar-item__body > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* GALLERY-TICKER */

.gallery-ticker.swiper {
  pointer-events: none;
}

.gallery-ticker.swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.gallery-ticker__slide {
  border-radius: 8px;
}

.gallery-ticker__slide > .img {
  padding-bottom: 87%;
}

/* ABOUT-HOME */

.about-home__title {
  max-width: 726px;
}

.about-home__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-home__content {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 44%;
}

.about-home__text:not(:last-child) {
  margin-bottom: 60px;
}

.about-home__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-main);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.about-home__btn svg {
  margin-left: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}

.about-home__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48%;
}

.about-home__img > .img {
  padding-bottom: 70%;
  position: relative;
  width: 100%;
  height: 0;
}

.about-home__img > .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* BLOG-HOME */

.blog-home {
  padding: 0 50px;
  position: relative;
  color: var(--color-white);
}

.blog-home__inner {
  background-color: var(--color-main);
  border-radius: 35px;
}

.blog-home__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-home__list {
  width: 48%;
}

.blog-home__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-home__item:not(:last-child) {
  margin-bottom: 30px;
}

.blog-home__item.blog-home__item--main {
  display: block;
}

.blog-home__item.blog-home__item--main:not(:last-child) {
  margin-bottom: 60px;
}

.blog-home__item.blog-home__item--main .blog-home__item-img {
  margin: 0 0 24px;
  width: 100%;
  height: auto;
}

.blog-home__item.blog-home__item--main .blog-home__item-img > .img {
  padding-bottom: 63%;
  height: 0;
}

.blog-home__item.blog-home__item--main .blog-home__item-link {
  display: none;
}

.blog-home__item-img {
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-white);
}

.blog-home__item-img > .img {
  padding: 0;
  height: 100%;
}

.blog-home__item-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 4px 0;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-home__item-date {
  margin-bottom: 16px;
  font-size: 16px;
}

.blog-home__item-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.blog-home__item-title:not(:last-child) {
  margin-bottom: 12px;
}

.blog-home__item-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
}

.blog-home__item-link svg {
  margin-left: 16px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}

.blog-home__body-col {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-home__btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

/* BLOG */

.blog-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 30px;
}

.blog-item {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-item:nth-child(1),
.blog-item:nth-child(2) {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.blog-item__img {
  margin-bottom: 24px;
  background-color: var(--color-white);
  border-radius: 8px;
}

.blog-item__date {
  margin-bottom: 16px;
  color: var(--color-grey);
}

.blog-item__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.blog-item__title > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.blog-item__text:not(:last-child) {
  margin-bottom: 24px;
}

.blog-item__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-main);
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.blog-item__link svg {
  margin-left: 12px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ARTICLE */

.article-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article {
  margin-right: 128px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.article-top {
  margin-bottom: 20px;
}

.article__main-img:not(:last-child) {
  margin-bottom: 24px;
}

.article__main-img img {
  width: 100%;
  height: auto;
  max-height: 348px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.article-date {
  color: var(--color-grey);
  font-weight: 500;
}

.article-section__sidebar {
  width: 255px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.article-section__sidebar-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.article-section__sidebar-body .blog-item:not(:last-child) {
  margin-bottom: 24px;
}

.article-section__sidebar-body .blog-item__img {
  margin-bottom: 15px;
}

.article-section__sidebar-body .blog-item__date {
  margin-bottom: 10px;
}

.article-section__sidebar-body .blog-item__title {
  font-size: 18px;
}

.article-section__sidebar-body .blog-item__title:not(:last-child) {
  margin-bottom: 12px;
}

.article-section__sidebar-body .blog-item__text {
  display: none;
}

/* FESTS */

.fests-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fests-item:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-grey-light);
}

.fests-item__img {
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48%;
  border-radius: 8px;
}

.fests-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fests-item__content-top {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 40px;
}

.fests-item__df {
  margin-bottom: 20px;
}

.fests-item__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.fests-item__title:not(:last-child) {
  margin-bottom: 20px;
}

.fests-item__title > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.fests-item__download-link {
  margin-bottom: 20px;
}

.fests-item__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

/* FEST-TOP */

.fest-top__slider.swiper .swiper-nav {
  margin: 0;
  padding: 0 12px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.fest-top__slider.swiper .swiper-button-prev,
.fest-top__slider.swiper .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.75);
}

.fest-top__slider.swiper .swiper-pagination {
  bottom: 24px;
}

.fest-top__img {
  padding-bottom: 43%;
  position: relative;
  width: 100%;
  height: 0;
  min-height: 440px;
  border-radius: 35px;
  overflow: hidden;
}

.fest-top__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

/* FEST-INFO */

.fest-info__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fest-info__items:not(:last-child) {
  margin-bottom: 60px;
}

.fest-info__item-title {
  margin-bottom: 12px;
  color: var(--color-grey);
  font-size: 16px;
}

.fest-info__item-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
}

.fest-info__accordeon-item {
  border-bottom: 1px solid var(--color-grey);
}

.fest-info__accordeon-item:not(:last-child) {
  margin-bottom: 12px;
}

.fest-info__accordeon-title {
  padding: 18px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.fest-info__accordeon-content {
  padding: 12px 0 20px;
}

/* FEST-JUDGES */

.fest-judges__content {
  max-width: 825px;
}

.fest-judges__content:not(:last-child) {
  margin-bottom: 40px;
}

.fest-judges__subtitle {
  text-wrap: balance;
}

.fest-judges__list > li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.fest-judges__list > li:not(:last-child) {
  margin-bottom: 20px;
}

.fest-judges__list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/icons/sprite.svg#check-circle") center/contain no-repeat;
}

.fest-judges__slider:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-grey-light);
}

.fest-judge__photo {
  margin-bottom: 24px;
  padding-bottom: 110%;
  position: relative;
  width: 100%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.fest-judge__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.fest-judge__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
}

.fest-judge__name:not(:last-child) {
  margin-bottom: 10px;
}

/* FEST-PROGRAM */

.fest-program__item {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-grey-light);
}

.fest-program__item:not(:last-child) {
  margin-bottom: 40px;
}

.fest-program__item-title {
  margin-bottom: 44px;
}

.fest-program__item-list {
  max-width: 1020px;
}

.fest-program__item-list:not(:last-child) {
  margin-bottom: 20px;
}

.fest-program__item-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fest-program__item-list > li:not(:last-child) {
  margin-bottom: 20px;
}

.fest-program__item-list > li > div:first-child {
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 160px;
  color: var(--color-main);
  font-weight: 500;
  line-height: 1.5;
}

.fest-program__item-list > li > div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 1.5;
}

.fest-program__item-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fest-program__item-img {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  border-radius: 8px;
}

.fest-program__item-img > .img {
  padding: 0;
  height: 250px;
}

.fest-program__bottom {
  text-align: center;
}

/* MORE-FESTS */

.more-fests__item {
  padding-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.more-fests__item-img {
  margin-bottom: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 8px;
}

.more-fests__item-df {
  margin-bottom: 20px;
}

.more-fests__item-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.33;
}

.more-fests__item-text {
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.more-fests__item-download {
  margin-bottom: 20px;
}

.more-fests__item-btn {
  width: 100%;
}

/* GALLERIES */

.galleries-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 44px 30px;
}

.galleries-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.galleries-item__img {
  margin-bottom: 24px;
  border-radius: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.galleries-item__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.galleries-item__title:not(:last-child) {
  margin-bottom: 24px;
}

.galleries-item__title > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.galleries-item__btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

/* GALLERY */

.gallery-nav {
  margin-bottom: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-nav__btn {
  padding: 10px 10px 24px;
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-grey);
  overflow: hidden;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gallery-nav__btn._active {
  color: var(--color-main);
  border-color: var(--color-main);
}

.gallery-grid {
  display: none;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}

.gallery-grid._active {
  display: -ms-grid;
  display: grid;
  -webkit-animation: fadeUp 0.3s ease 0s forwards;
  animation: fadeUp 0.3s ease 0s forwards;
}

.gallery-grid.gallery-grid--video > .gallery-item::after {
  content: "";
  pointer-events: none;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  background-color: var(--color-white);
  background-image: url("../img/icons/sprite.svg#play");
  background-position: center;
  background-size: 30% 30%;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.gallery-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  position: relative;
  background-color: var(--color-white);
  border-radius: 8px;
}

/* CONTACTS */

/* CONTACTS-PERSONS */

.contacts-persons {
  margin-bottom: 52px;
}

.contacts-person {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--color-grey-light);
}

.contacts-person:not(:last-child) {
  margin-bottom: 40px;
}

.contacts-person__img {
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 255px;
  border-radius: 8px;
}

.contacts-person__img > .img {
  padding-bottom: 100%;
}

.contacts-person__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts-person__body-top {
  margin-bottom: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.contacts-person__name {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.contacts-person__text:not(:last-child) {
  margin-bottom: 12px;
}

.contacts-person__body-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 44px;
}

.contacts-person__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 36px;
}

.contacts-person__list > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.contacts-person__list > a[href^="mailto:"] {
  word-break: break-word;
}

.contacts-person__list > a svg {
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-main);
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-person__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contacts-person__socials > a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.contacts-person__socials > a img,
.contacts-person__socials > a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* CONTACTS-INFO */

.contacts-info {
  margin-bottom: 60px;
}

.contacts-info__body {
  padding-top: 16px;
}

.contacts-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-info__item:not(:last-child) {
  margin-bottom: 20px;
}

.contacts-info__item-title {
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 160px;
  color: var(--color-grey);
  font-size: 14px;
  line-height: 1.5;
}

.contacts-info__item-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.contacts-info__item-body > a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.contacts-info__item-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.contacts-info__item-socials > a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.contacts-info__item-socials > a[href^="mailto:"] {
  word-break: break-word;
}

.contacts-info__item-socials > a img,
.contacts-info__item-socials > a svg {
  width: 100%;
  height: 100%;
}

/* CONTACTS-MAP */

.contacts-map {
  position: relative;
  height: 486px;
  border-radius: 35px;
  overflow: hidden;
}

.contacts-map > iframe {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* OFFICES */

.offices-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.offices-item:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-grey-light);
}

.offices-item__img {
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 350px;
  border-radius: 8px;
}

.offices-item__img > .img {
  padding-bottom: 92%;
}

.offices-item__top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.offices-item__country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.offices-item__country > .country {
  margin-left: 12px;
  padding: 0 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-black);
  font-size: 16px;
  white-space: nowrap;
  background-color: var(--color-grey-light);
  border-radius: 4px;
}

.offices-item__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.offices-item__text {
  margin-bottom: 40px;
}

.offices-item__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  line-height: 1.33;
}

.offices-item__address:not(:last-child) {
  margin-bottom: 20px;
}

.offices-item__address svg {
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.offices-item__map:not(:last-child) {
  margin-bottom: 20px;
}

.offices-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 44px;
}

.offices-item__contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 36px;
}

.offices-item__contacts-list > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.offices-item__contacts-list > a[href^="mailto:"] {
  word-break: break-word;
}

.offices-item__contacts-list > a svg {
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-main);
  -o-object-fit: contain;
  object-fit: contain;
}

.offices-item__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.offices-item__socials > a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.offices-item__socials > a img,
.offices-item__socials > a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ORDER-FORM */

.order-form__item:not(:last-child) {
  margin-bottom: 56px;
}

.order-form__item-title {
  margin-bottom: 30px;
  padding-bottom: 24px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-grey-light);
}

.order-form__item-body {
  max-width: 824px;
}

/* 404 */

.page-404 {
  padding: 0 50px;
}

.page-404__inner {
  padding: 20vh 0;
  background-color: var(--color-main);
  border-radius: 35px;
}

.page-404__inner > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.page-404__title {
  color: var(--color-white);
  font-size: 200px;
  font-weight: 600;
}

/* RESPONSIVE */

@media screen and (max-width: 1640px) {
  .intro-slide {
    min-height: 680px;
  }
}

@media screen and (max-width: 1439.98px) {
  .page-top {
    padding-top: 12px;
  }

  .page-top__inner {
    padding-left: 194px;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 48px;
    height: 48px;
  }

  .swiper .swiper-pagination {
    bottom: 40px;
  }

  .header-logo {
    width: 144px;
  }

  .header-body {
    padding: 24px 0;
  }

  .intro {
    padding: 0 20px;
  }

  .intro-slider.swiper .swiper-nav {
    padding: 0 20px;
  }

  .intro-slide {
    padding: 100px 0  68px;
    min-height: 640px;
  }

  .our-fests__title.section-title {
    margin-right: 80px;
  }

  .our-fests__slider.swiper .swiper-nav {
    left: 47.2%;
  }

  .our-fests__slide-content-top,
  .our-fests__slide-btns {
    padding-left: 526px;
  }

  .our-fests__slide-btns::before {
    width: calc(100vw - 60px);
  }

  .blog-home {
    padding: 0 20px;
  }

  .page-404 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1199.98px) {
  .page-top__inner {
    padding-left: 172px;
  }

  .page-title {
    font-size: 40px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 32px;
    font-size: 40px;
  }

  .section-title.section-title--small {
    font-size: 32px;
  }

  .section-subtitle {
    margin-bottom: 32px;
    font-size: 22px;
  }

  .content-editor h1 {
    font-size: 40px;
  }

  .content-editor h2 {
    font-size: 32px;
  }

  .content-editor._3images > p:has(img) {
    gap: 20px;
  }

  .breadcrumbs {
    margin: 0px 0px 24px 0px;
  }

  .popup-title {
    font-size: 28px;
  }

  .header-logo {
    margin-right: 36px;
    width: 136px;
  }

  .footer-row {
    gap: 36px;
  }

  .intro-slider.swiper .swiper-nav {
    top: 40%;
  }

  .intro-slide {
    min-height: 600px;
  }

  .intro-slide__inner {
    padding: 36px 28px;
  }

  .intro-slide__content {
    margin-right: 32px;
  }

  .intro-slide__title {
    font-size: 40px;
  }

  .intro-slide__title:not(:last-child) {
    margin-bottom: 32px;
  }

  .intro-slide__text {
    font-size: 20px;
  }

  .our-fests__top > .container {
    display: block;
  }

  .our-fests__title.section-title {
    margin: 0 0 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
  }

  .our-fests__slider.swiper .swiper-nav {
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .our-fests__slide-img {
    width: 264px;
  }

  .our-fests__slide-content {
    padding: 0;
    min-height: unset;
  }

  .our-fests__slide-content-top {
    padding: 0;
    padding-left: 320px;
    min-height: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .our-fests__slide-btns {
    margin-top: 40px;
    padding: 40px 0 120px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .our-fests__slide-btns::before {
    height: 100%;
    width: 100%;
  }

  .calendar-top {
    display: block;
  }

  .calendar-title {
    margin: 0 0 30px;
    width: 100%;
  }

  .calendar-body {
    gap: 20px 80px;
  }

  .calendar-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: calc(50% - 40px);
  }

  .blog-home__list {
    width: 52%;
  }

  .blog-home__body-col {
    width: 43%;
  }

  .blog-home__item-title {
    font-size: 22px;
  }

  .blog-body {
    gap: 40px 20px;
  }

  .article {
    margin-right: 40px;
  }

  .fest-info__accordeon-title {
    padding: 16px 0;
    font-size: 22px;
  }

  .fest-program__item-title {
    margin-bottom: 32px;
  }

  .fest-program__item-list > li > div:first-child {
    margin-right: 20px;
  }

  .fest-program__item-list > li > div:last-child {
    font-size: 16px;
  }

  .fest-program__item-images {
    gap: 20px;
  }

  .gallery-nav {
    gap: 20px;
  }

  .gallery-grid {
    gap: 30px 20px;
  }
}

@media screen and (max-width: 991.98px) {
  .page-top__inner {
    padding-left: 128px;
  }

  .content-editor._3images > p:has(img) {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .content-editor._3images > p:has(img) picture:nth-child(3n),
  .content-editor._3images > p:has(img) img:nth-child(3n) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .btn {
    padding: 0px 32px;
    height: 48px;
    font-size: 14px;
  }

  .form-row {
    gap: 30px 20px;
  }

  .breadcrumbs {
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 10px 0px;
    overflow: auto;
  }

  .breadcrumbs > span {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .breadcrumbs > span > span {
    padding: 0;
    white-space: nowrap;
  }

  .pagination > ul > li > .page-numbers {
    width: 48px;
    height: 48px;
  }

  .header-logo {
    margin-right: 28px;
    width: 100px;
  }

  .header-body {
    padding: 20px 0;
  }

  .header-top {
    margin: 0;
  }

  .header-language > li > a {
    height: 32px;
  }

  .header-burger.header-burger--open {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .header-contacts {
    gap: 6px 12px;
  }

  .header-contacts.header-contacts--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .header-contacts.header-contacts--mobile .header-contacts__link {
    font-size: 24px;
  }

  .header-contacts.header-contacts--mobile .header-contacts__btn {
    padding: 0 12px;
    font-size: 20px;
    height: 44px;
  }

  .header-contacts__link {
    font-size: 14px;
  }

  .header-contacts__btn {
    font-size: 14px;
    height: 32px;
  }

  .header-menu {
    padding: 20px 20px 32px;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(105%, 0, 0);
    transform: translate3d(105%, 0, 0);
    width: 100%;
    height: 100dvh;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: var(--color-white);
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }

  .header-menu._active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .header-menu__list {
    padding: 4px 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: block;
    text-align: right;
    overflow-y: auto;
  }

  .header-menu__list > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .header-menu__list > li > a {
    font-size: 24px;
  }

  .header-socials.header-socials--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px 16px;
  }

  .header-socials.header-socials--mobile > a {
    width: 56px;
    height: 56px;
  }

  .header-socials.header-socials--mobile > a img,
  .header-socials.header-socials--mobile > a svg {
    width: 70%;
    height: 70%;
  }

  .header-burger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .footer-row {
    -ms-grid-columns: 1fr 300px;
    grid-template-columns: 1fr 300px;
  }

  .footer-row.footer-row--top {
    gap: 44px 28px;
  }

  .footer-row.footer-row--bottom {
    gap: 20px 28px;
  }

  .footer-col:nth-child(1) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .intro-slider.swiper .swiper-nav {
    display: none;
  }

  .intro-slider.swiper .swiper-pagination {
    bottom: 18px;
  }

  .intro-slide {
    padding: 100px 0 48px;
  }

  .intro-slide__inner {
    display: block;
  }

  .intro-slide__content {
    margin: 0 0 32px;
  }

  .intro-slide__title:not(:last-child) {
    margin-bottom: 24px;
  }

  .our-fests__slide > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .our-fests__slide-img {
    margin: 0 auto 40px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 460px;
  }

  .our-fests__slide-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .our-fests__slide-content-top {
    padding: 0;
    min-height: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .calendar-body {
    gap: 20px 40px;
  }

  .calendar-item {
    width: calc(50% - 20px);
  }

  .about-home__body {
    display: block;
  }

  .about-home__content {
    margin-bottom: 60px;
    width: 100%;
  }

  .about-home__text:not(:last-child) {
    margin-bottom: 32px;
  }

  .about-home__img {
    margin: 0 auto;
    width: 100%;
    max-width: 460px;
  }

  .blog-home__inner.section {
    padding: 60px 0;
  }

  .blog-home__body {
    display: block;
  }

  .blog-home__list {
    margin-bottom: 44px;
    width: 100%;
  }

  .blog-home__item.blog-home__item--main:not(:last-child) {
    margin-bottom: 44px;
  }

  .blog-home__body-col {
    width: 100%;
  }

  .blog-home__btn {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .blog-body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .blog-item {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .blog-item:nth-child(1),
  .blog-item:nth-child(2) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .blog-item__title {
    font-size: 20px;
  }

  .article__main-img {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .article__main-img img {
    height: 440px;
    max-height: unset;
    border-radius: 0;
  }

  .article-section__inner {
    display: block;
  }

  .article {
    margin: 0 0 40px;
  }

  .article-section__sidebar {
    width: 100%;
  }

  .article-section__sidebar-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .article-section__sidebar-body .blog-item:not(:last-child) {
    margin-bottom: 0;
  }

  .fests-item__img {
    margin-right: 20px;
    width: 40%;
  }

  .fest-top__slider.swiper .swiper-nav {
    display: none;
  }

  .fest-top__img {
    padding-bottom: 50%;
    min-height: unset;
  }

  .fest-program__item-images {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .fest-program__item-img:nth-child(3n) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .galleries-body {
    gap: 36px 20px;
  }

  .galleries-item__img {
    margin-bottom: 20px;
  }

  .galleries-item__title {
    font-size: 20px;
  }

  .galleries-item__title:not(:last-child) {
    margin-bottom: 20px;
  }

  .gallery-nav {
    margin-bottom: 32px;
  }

  .gallery-nav__btn {
    padding: 10px 10px 20px;
  }

  .contacts-person__body-bottom {
    display: block;
  }

  .contacts-person__list {
    margin: 0 0 20px;
  }

  .offices-item__img {
    margin-right: 20px;
    width: 40%;
  }

  .offices-item__title {
    font-size: 22px;
  }

  .offices-item__text {
    margin-bottom: 32px;
  }

  .offices-item__bottom {
    display: block;
  }

  .offices-item__contacts-list {
    margin: 0 0 20px;
  }

  .order-form__item:not(:last-child) {
    margin-bottom: 52px;
  }

  .order-form__item-title {
    margin-bottom: 24px;
    padding-bottom: 20px;
    font-size: 20px;
  }

  .order-form__item-body {
    max-width: unset;
  }
}

@media screen and (max-width: 767.98px) {
  .header-language.header-language--desktop {
    display: none;
  }

  .header-language.header-language--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-language._active > li .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: fadeUp 0.3s ease 0s forwards;
    animation: fadeUp 0.3s ease 0s forwards;
  }

  .header-language > li {
    text-align: right;
  }

  .header-language > li > a {
    padding: 0 16px;
    height: 56px;
  }

  .header-language .sub-menu {
    margin-top: 12px;
    padding: 16px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px 16px;
    position: relative;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .header-language .sub-menu > li:not(:last-child) {
    margin-bottom: 0;
  }

  .header-contacts {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer-row {
    display: block;
    text-align: center;
  }

  .footer-row.footer-row--top {
    margin-bottom: 40px;
  }

  .footer-row.footer-row--top .footer-col:not(:last-child) {
    margin-bottom: 44px;
  }

  .footer-row.footer-row--bottom .footer-col:not(:last-child) {
    margin-bottom: 24px;
  }

  .footer-nav {
    padding-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
  }

  .footer-menu {
    padding: 0 16px;
    width: 50%;
    max-width: unset;
  }

  .footer-contacts {
    padding-top: 0;
  }

  .intro {
    padding: 0;
  }

  .intro-slide {
    border-radius: 0;
  }

  .intro-slide__inner {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .intro-slide__title {
    font-size: 32px;
  }

  .intro-slide__text {
    font-size: 18px;
  }

  .our-fests__slide-btns::before {
    left: -20px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: calc(100% + 40px);
    border-radius: 0;
  }

  .calendar-item {
    width: 100%;
    min-height: unset;
  }

  .blog-home {
    padding: 0;
  }

  .blog-home__inner {
    border-radius: 0;
  }

  .fests-item {
    display: block;
  }

  .fests-item__img {
    margin: 0 -20px 20px;
    width: calc(100% + 40px);
    border-radius: 0;
  }

  .fest-top__slider.swiper {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .fest-top__img {
    border-radius: 0;
  }

  .fest-info__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-nav {
    gap: 10px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .contacts.section--pb {
    padding-bottom: 0;
  }

  .contacts-person__img {
    margin-right: 20px;
    width: 188px;
  }

  .contacts-map {
    margin: 0 -20px;
    width: calc(100% + 40px);
    height: 440px;
    border-radius: 0;
  }

  .page-404 {
    padding: 0;
  }

  .page-404__inner {
    padding: 160px 0;
    border-radius: 0;
  }

  .page-404__title {
    font-size: 35vw;
  }
}

@media screen and (max-width: 640px) {
  .page-top {
    padding-top: 25px;
  }

  .page-top__inner {
    padding-left: 0;
  }

  .header {
    padding: 20px 0;
  }

  .header > .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-logo__img {
    position: relative;
  }

  .header-top {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
    gap: 0;
  }

  .header-body {
    padding: 0;
  }

  .header-burger.header-burger--open {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }

  .header-contacts {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 12px;
    gap: 16px 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .header-socials {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .header-contacts__link {
    font-size: 16px;
  }

  .galleries-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .galleries-item__img {
    margin: 0 -20px 20px;
    width: calc(100% + 40px);
    border-radius: 0;
  }

  .galleries-item__img > .img {
    padding-bottom: 66%;
  }

  .offices-item {
    display: block;
  }

  .offices-item:not(:last-child) {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .offices-item__img {
    margin: 0 0 28px;
    width: 100%;
  }

  .offices-item__top {
    margin-bottom: 15px;
    display: block;
  }

  .offices-item__country:not(:last-child) {
    margin-bottom: 15px;
  }

  .offices-item__title {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

@media screen and (max-width: 575.98px) {
  .page-top {
    margin-bottom: 40px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-title:not(:last-child) {
    margin-bottom: 20px;
  }

  .section {
    padding: 56px 0;
  }

  .section--pb {
    padding: 0 0 40px;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .section-title.section-title--small {
    font-size: 28px;
  }

  .section-subtitle {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .content-editor h1 {
    font-size: 32px;
  }

  .content-editor h2 {
    font-size: 28px;
  }

  .content-editor h3 {
    font-size: 22px;
  }

  .content-editor img {
    height: 250px;
    max-height: unset;
  }

  .content-editor ul > li {
    padding-left: 20px;
  }

  .content-editor ul > li::before {
    left: 0;
  }

  .content-editor ol {
    padding: 0;
  }

  .content-editor._3images > p:has(img) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .content-editor._3images > p:has(img) picture:nth-child(3n),
  .content-editor._3images > p:has(img) img:nth-child(3n) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .btn-link {
    font-size: 14px;
  }

  .btn-link svg {
    width: 18px;
    height: 18px;
  }

  .swiper .swiper-nav > .swiper-pagination {
    min-width: 44px;
    font-size: 16px;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper .swiper-button-prev::after,
  .swiper .swiper-button-next::after {
    font-size: 14px;
  }

  .swiper .swiper-pagination {
    bottom: 30px;
  }

  .form-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row.form-row--3cols .form-item {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .form-row.form-row--3cols .form-item.form-item--2cols {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .form-item {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .form-item.form-item--selectable {
    display: block;
  }

  .form-item.form-item--selectable .form-input__wrapper.form-input__wrapper--1 {
    margin: 0 0 20px;
    width: 100px;
  }

  .form-item.form-item--selectable .form-input__wrapper.form-input__wrapper--2 {
    width: 100%;
  }

  .form-label {
    margin-bottom: 6px;
  }

  .form-input__error {
    bottom: -13px;
    font-size: 11px;
  }

  .form-btn.btn {
    width: 100%;
  }

  .breadcrumbs {
    margin: 0px 0px 16px 0px;
  }

  .pagination {
    margin-top: 40px;
  }

  .pagination > ul {
    gap: 5px;
  }

  .pagination > ul > li > .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .pagination > ul > li > .page-numbers svg {
    width: 10px;
    height: 10px;
  }

  .pagination > ul > li:has(.prev),
  .pagination > ul > li:has(.next) {
    display: none;
  }

  .popup-content {
    padding: 28px 20px 28px;
  }

  .header-logo {
    margin-right: 20px;
    width: 34.3%;
    max-width: 140px;
  }

  .header-menu__list > li > a {
    font-size: 18px;
  }

  .header-contacts.header-contacts--mobile .header-contacts__link,
  .header-contacts.header-contacts--mobile .header-contacts__btn {
    font-size: 18px;
  }

  .header-socials.header-socials--mobile {
    margin-top: 20px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-row {
    text-align: left;
  }

  .footer-logo {
    margin: 0 0 20px;
  }

  .footer-socials {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer-nav {
    display: block;
  }

  .footer-menu {
    padding: 0;
    width: 100%;
  }

  .footer-menu:not(:last-child) {
    margin-bottom: 52px;
  }

  .intro-slider.swiper .swiper-pagination {
    bottom: 15px;
  }

  .intro-slide {
    padding: 64px 0 40px;
    min-height: 452px;
  }

  .intro-slide__inner {
    padding: 16px;
  }

  .intro-slide__content {
    margin: 0 0 20px;
  }

  .intro-slide__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .intro-slide__title:not(:last-child) {
    margin-bottom: 12px;
  }

  .intro-slide__text {
    font-size: 14px;
  }

  .intro-slide__btn {
    width: 100%;
  }

  .our-fests__top {
    margin-bottom: 40px;
  }

  .our-fests__slide-img {
    margin: 0 auto 20px;
  }

  .our-fests__slide-df {
    margin-bottom: 12px;
  }

  .our-fests__slide-title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .our-fests__slide-text {
    margin-bottom: 24px;
  }

  .our-fests__slide-download-btn {
    width: 100%;
  }

  .our-fests__slide-btns {
    margin-top: 18px;
    padding: 24px 0 84px;
  }

  .our-fests__slide-btn {
    width: 100%;
  }

  .our-fests__slider.swiper .swiper-nav {
    bottom: 24px;
  }

  .calendar-top {
    margin-bottom: 40px;
  }

  .about-home__content {
    margin-bottom: 48px;
  }

  .about-home__text:not(:last-child) {
    margin-bottom: 24px;
  }

  .about-home__btn {
    font-size: 14px;
  }

  .about-home__btn svg {
    width: 10px;
    height: 10px;
  }

  .blog-home__inner.section {
    padding: 44px 0 32px;
  }

  .blog-home__list {
    margin-bottom: 40px;
  }

  .blog-home__item {
    display: block;
  }

  .blog-home__item:not(:last-child) {
    margin-bottom: 40px;
  }

  .blog-home__item.blog-home__item--main:not(:last-child) {
    margin-bottom: 40px;
  }

  .blog-home__item.blog-home__item--main .blog-home__item-img {
    margin: 0 0 20px;
  }

  .blog-home__item.blog-home__item--main .blog-home__item-img > .img {
    padding-bottom: 86%;
  }

  .blog-home__item.blog-home__item--main .blog-home__item-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .blog-home__item-img {
    margin: 0 0 20px;
    width: 100%;
    height: auto;
  }

  .blog-home__item-img > .img {
    padding-bottom: 86%;
    height: 0;
  }

  .blog-home__item-title {
    font-size: 18px;
  }

  .blog-home__btn {
    width: 100%;
  }

  .blog-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-item__img {
    margin: 0 -20px 24px;
    width: calc(100% + 40px);
    border-radius: 0;
  }

  .blog-item__img > .img {
    padding-bottom: 78%;
  }

  .blog-item__title {
    font-size: 18px;
  }

  .article-section__sidebar-title {
    font-size: 20px;
  }

  .article-section__sidebar-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-section__sidebar-body .blog-item__title {
    font-size: 16px;
  }

  .fest-top__slider.swiper .swiper-pagination {
    bottom: 15px;
  }

  .fests-item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .fests-item__img > .img {
    padding-bottom: 78%;
  }

  .fests-item__content-top {
    margin-bottom: 20px;
  }

  .fests-item__df {
    margin-bottom: 12px;
  }

  .fests-item__title {
    font-size: 18px;
  }

  .fests-item__title:not(:last-child) {
    margin-bottom: 10px;
  }

  .fests-item__btn {
    width: 100%;
  }

  .fest-info__items:not(:last-child) {
    margin-bottom: 32px;
  }

  .fest-info__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .fest-info__item-text {
    font-size: 16px;
  }

  .fest-info__accordeon-title {
    padding: 12px 0;
    font-size: 18px;
  }

  .fest-judge__photo {
    margin-bottom: 20px;
    padding-bottom: 102%;
  }

  .fest-program__item {
    padding-bottom: 32px;
  }

  .fest-program__item:not(:last-child) {
    margin-bottom: 32px;
  }

  .fest-program__item-title {
    margin-bottom: 20px;
  }

  .fest-program__item-list > li {
    display: block;
  }

  .fest-program__item-list > li > div:first-child {
    margin: 0 0 4px;
    width: 100%;
  }

  .fest-program__item-images {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .fest-program__item-img:nth-child(3n) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .more-fests__item-title {
    font-size: 18px;
  }

  .galleries-item__title {
    font-size: 18px;
  }

  .galleries-item__btn {
    width: 100%;
  }

  .gallery-nav {
    margin-bottom: 24px;
  }

  .gallery-nav__btn {
    padding: 10px 10px 16px;
    font-size: 16px;
  }

  .gallery-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts-person {
    padding-bottom: 28px;
    display: block;
  }

  .contacts-person:not(:last-child) {
    margin-bottom: 28px;
  }

  .contacts-person__img {
    margin: 0 0 20px;
    width: 100%;
  }

  .contacts-person__name {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .contacts-person__list {
    gap: 20px 36px;
  }

  .contacts-info {
    margin-bottom: 40px;
  }

  .contacts-info__body {
    padding-top: 8px;
  }

  .contacts-info__item {
    display: block;
  }

  .contacts-info__item-title {
    margin: 0 0 10px;
  }

  .offices-item__contacts-list {
    gap: 20px 36px;
  }

  .order-form__section.section--pb {
    padding-bottom: 60px;
  }

  .page-404__inner {
    padding: 120px 0;
  }
}

@media (pointer: fine) {
  .content-editor a:hover {
    text-decoration: none;
  }

  .btn:hover {
    color: var(--color-main);
    background-color: var(--color-white);
  }

  .btn.btn--w:hover {
    color: var(--color-white);
    background-color: transparent;
  }

  .btn.btn--b:hover {
    color: var(--color-main);
    background-color: transparent;
  }

  .btn.btn--btr:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }

  .btn-link:hover {
    color: var(--color-black);
  }

  a.img:hover {
    opacity: 0.85;
  }

  .swiper .swiper-button-prev:hover,
  .swiper .swiper-button-next:hover {
    background-color: var(--color-main);
  }

  .swiper .swiper-button-prev:hover::after,
  .swiper .swiper-button-next:hover::after {
    color: var(--color-white);
  }

  .breadcrumbs > span > span > a:hover {
    color: var(--color-main);
  }

  .pagination > ul > li > .page-numbers:not(.dots):hover {
    color: var(--color-white);
    background-color: var(--color-main);
    border-color: var(--color-main);
  }

  [data-accordeon-btn]:hover {
    color: var(--color-main);
  }

  .popup-close__btn:hover {
    color: var(--color-red);
  }

  .header-language .sub-menu > li > a:hover {
    color: var(--color-main);
  }

  .header-contacts__link:hover {
    color: var(--color-main);
  }

  .header-contacts__btn:hover {
    color: var(--color-black);
  }

  .header-socials > a:hover {
    background-color: var(--color-grey-light2);
  }

  .header-menu__list > li > a:hover {
    color: var(--color-main);
  }

  .header-burger:hover {
    background-color: var(--color-grey-light);
  }

  .footer-socials > a:hover {
    background-color: var(--color-grey-light);
  }

  .footer-menu > li > a:hover {
    color: var(--color-main);
  }

  .footer-contacts__item-body > a:hover {
    color: var(--color-main);
  }

  .footer-text > a:hover {
    text-decoration: none;
  }

  .intro-slider.swiper:hover .swiper-nav {
    opacity: 1;
    visibility: visible;
  }

  .intro-slider.swiper .swiper-button-prev:hover,
  .intro-slider.swiper .swiper-button-next:hover {
    background-color: var(--color-white);
  }

  .intro-slider.swiper .swiper-button-prev:hover::after,
  .intro-slider.swiper .swiper-button-next:hover::after {
    color: var(--color-main);
  }

  .our-fests__slider.swiper .swiper-button-prev:hover,
  .our-fests__slider.swiper .swiper-button-next:hover {
    background-color: var(--color-white);
  }

  .our-fests__slider.swiper .swiper-button-prev:hover::after,
  .our-fests__slider.swiper .swiper-button-next:hover::after {
    color: var(--color-main);
  }

  .our-fests__slide-title > a:hover {
    color: var(--color-main);
  }

  .calendar-item__body > a:hover {
    color: var(--color-main);
  }

  .about-home__btn:hover {
    color: var(--color-black);
  }

  .blog-home__item-title > a:hover {
    text-decoration: underline;
  }

  .blog-home__item-link:hover > span {
    text-decoration: underline;
  }

  .blog-item__title > a:hover {
    color: var(--color-main);
  }

  .blog-item__link:hover {
    color: var(--color-black);
  }

  .fests-item__title > a:hover {
    color: var(--color-main);
  }

  .fest-top__slider.swiper:hover .swiper-nav {
    opacity: 1;
    visibility: visible;
  }

  .fest-top__slider.swiper .swiper-button-prev:hover,
  .fest-top__slider.swiper .swiper-button-next:hover {
    background-color: var(--color-white);
  }

  .fest-top__slider.swiper .swiper-button-prev:hover::after,
  .fest-top__slider.swiper .swiper-button-next:hover::after {
    color: var(--color-main);
  }

  .more-fests__item-title > a:hover {
    color: var(--color-main);
  }

  .galleries-item__title > a:hover {
    color: var(--color-main);
  }

  .gallery-nav__btn:hover {
    color: var(--color-main);
  }

  .contacts-person__list > a:hover {
    color: var(--color-main);
  }

  .contacts-person__socials > a:hover {
    opacity: 0.75;
  }

  .contacts-info__item-body > a:hover {
    color: var(--color-main);
  }

  .contacts-info__item-socials > a:hover {
    opacity: 0.75;
  }

  .offices-item__contacts-list > a:hover {
    color: var(--color-main);
  }

  .offices-item__socials > a:hover {
    opacity: 0.75;
  }
}