@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  *:focus {
    outline: none; }

table {
  border-spacing: 0; }

@-moz-document url-prefix() {
  body {
    letter-spacing: -0.09px; } }

/*
Ця функція, яку названо customClamp, призначена для обмеження значень у заданому діапазоні, пропорційно розміру екрану. Давайте розглянемо її структуру та функціональність:

Аргументи функції:

$maxValue: Це максимальне значення, від якого ми хочемо обмежити.
$minValue: Це мінімальне значення, до якого ми хочемо обмежити.
$maxScreen: Розмір екрану, до якого ми хочемо прив'язати максимальне значення.
$minScreen: Розмір екрану, до якого ми хочемо прив'язати мінімальне значення.
Результат функції:

Функція повертає значення, обмежене у заданому діапазоні, пропорційно розміру екрану.
Опис алгоритму функції:

Використовуючи clamp, функція обмежує значення у заданому діапазоні.
Вираз calc(...) обчислює пропорційне значення відносно розміру екрану.

Формула використовує лінійну інтерполяцію між $minValue і $maxValue в залежності від того,
як відноситься поточний розмір екрану (100vw) до $minScreen і $maxScreen.

Вираз clamp(...) забезпечує, що обчислений результат не виходить за межі вказаного діапазону.

Ця функція корисна для створення адаптивних дизайнів, де ви хочете, щоб певні значення (наприклад, розмір шрифту або відступи) змінювалися пропорційно розміру екрану,
але залишалися у межах певного діапазону для забезпечення візуальної гармонії.

Використання міксина для властивості font-size
h1 {
  font-size: customClamp(36, 24, 1200, 320);
}

p {
  font-size: customClamp(18, 14, 1200, 320);
}


У цьому прикладі customClamp використовується для налаштування розміру шрифту (font-size) для заголовків (h1) та абзаців (p).
Параметри міксина передають максимальне та мінімальне значення шрифту, а також максимальні та мінімальні значення ширини екрану, на які потрібно реагувати.
Це дозволяє автоматично адаптувати розмір шрифту в залежності від ширини екрану, забезпечуючи більш гнучкий та адаптивний дизайн.
 */
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  src: url("/static/fonts/Gilroy-Bold.woff2") format("woff2"); }

@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  src: url("/static/fonts/Gilroy-Semibold.woff2") format("woff2"); }

@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  src: url("/static/fonts/Gilroy-Medium.woff2") format("woff2"); }

@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  src: url("/static/fonts/Gilroy-Regular.woff2") format("woff2"); }

body {
  padding: 0; }

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

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px; }
  @media (min-width: 1400px) {
    .container {
      width: 1316px; } }
  @media (min-width: 1200px) and (max-width: 1399px) {
    .container {
      width: 1140px; } }
  @media (min-width: 1025px) and (max-width: 1199px) {
    .container {
      width: 970px; } }
  @media (min-width: 769px) and (max-width: 1024px) {
    .container {
      width: 750px; } }
  @media (max-width: 768px) {
    .container {
      width: 100%; } }
.column-js, .column-jc, .ae-jb, .as-jc, .jb, .as-jb, .ac-jb, .ac-jc, .as, .ac, .flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.ae-jb, .jb, .as-jb, .ac-jb {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between; }

.column-js {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start; }

.column-jc, .as-jc, .ac-jc {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center; }

.ac-jb, .ac-jc, .ac {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }

.as-jc, .as-jb, .as {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start; }

.column-js, .column-jc {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.ae-jb {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end; }

.shrink {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0; }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.back-layer {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); }
  .back-layer.menu-open {
    pointer-events: all;
    z-index: 100;
    -webkit-animation: back-layer .5s forwards;
    animation: back-layer .5s forwards; }
  .back-layer.back-transition {
    opacity: 1;
    z-index: 100;
    -webkit-animation: hide .6s forwards;
    animation: hide .6s forwards; }

@-webkit-keyframes back-layer {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes back-layer {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes hide {
  100% {
    opacity: 0; }
  0% {
    opacity: 1; } }

@keyframes hide {
  100% {
    opacity: 0; }
  0% {
    opacity: 1; } }

.close-popup {
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  transition: opacity .2s;
  cursor: pointer;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }
  .close-popup.menu-open {
    pointer-events: all;
    z-index: 103;
    opacity: 1;
    transition-delay: .4s; }

.popup-slider {
  pointer-events: none;
  z-index: 101;
  position: fixed; }
  .popup-slider.menu-open {
    pointer-events: all; }
  .popup-slider.menu-right {
    top: 0;
    right: 0;
    -moz-transform: translateX(120%);
    -o-transform: translateX(120%);
    -ms-transform: translateX(120%);
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    transition: transform 0.4s; }
    .popup-slider.menu-right.menu-open {
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      -webkit-transform: translateX(0);
      transform: translateX(0); }
  .popup-slider.menu-left {
    top: 0;
    left: 0;
    -moz-transform: translateX(-120%);
    -o-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
    transition: transform 0.4s; }
    .popup-slider.menu-left.menu-open {
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      -webkit-transform: translateX(0);
      transform: translateX(0); }
  .popup-slider.menu-top {
    top: 0;
    left: 0;
    -moz-transform: translateY(-120%);
    -o-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    transition: transform 0.4s; }
    .popup-slider.menu-top.menu-open {
      -moz-transform: translateY(0);
      -o-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0); }
  .popup-slider.menu-fade {
    opacity: 0;
    top: 0;
    left: 0;
    transition: opacity 0.4s; }
    .popup-slider.menu-fade.menu-open {
      opacity: 1; }

body {
  width: 100vw;
  max-width: 100%; }

.header {
  width: 100%; }

.RatingStar {
  width: 16px;
  height: 16px;
  stroke: #FDD700;
  stroke-width: 0; }
  .RatingStar .LR {
    --color-star-full: #FDD700;
    --color-star: #E6E6E6 ; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Gilroy", sans-serif;
  font-size: 100%;
  font-weight: normal; }

h1, .h1 {
  font-weight: 700;
  font-size: clamp(28px, calc(28px + (64 - 28) * ((100vw - 500px) / (1300 - 500))), 64px);
  margin-bottom: clamp(15px, calc(15px + (20 - 15) * ((100vw - 500px) / (1300 - 500))), 20px); }

h2, .h2 {
  font-weight: 600;
  font-size: clamp(26px, calc(26px + (48 - 26) * ((100vw - 500px) / (1300 - 500))), 48px);
  margin-bottom: clamp(15px, calc(15px + (20 - 15) * ((100vw - 500px) / (1300 - 500))), 20px); }

h3, .h3 {
  font-weight: 600;
  font-size: clamp(24px, calc(24px + (36 - 24) * ((100vw - 500px) / (1300 - 500))), 36px);
  margin-bottom: clamp(15px, calc(15px + (20 - 15) * ((100vw - 500px) / (1300 - 500))), 20px); }

h4, .h4 {
  font-weight: 600;
  font-size: clamp(22px, calc(22px + (28 - 22) * ((100vw - 500px) / (1300 - 500))), 28px);
  margin-bottom: clamp(15px, calc(15px + (20 - 15) * ((100vw - 500px) / (1300 - 500))), 20px); }

h5, .h5 {
  font-weight: 600;
  font-size: clamp(20px, calc(20px + (22 - 20) * ((100vw - 500px) / (1300 - 500))), 22px);
  margin-bottom: clamp(15px, calc(15px + (20 - 15) * ((100vw - 500px) / (1300 - 500))), 20px); }

h6, .h6 {
  font-weight: 600;
  font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px);
  margin-bottom: clamp(15px, calc(15px + (20 - 15) * ((100vw - 500px) / (1300 - 500))), 20px); }

.slick-arrow, .button-1, .button, .button-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  transition: .5s; }
  .slick-arrow svg, .button-1 svg, .button svg, .button-alt svg, .slick-arrow img, .button-1 img, .button img, .button-alt img {
    width: 1em;
    height: 1em;
    fill: currentColor; }
  .slick-arrow input, .button-1 input, .button input, .button-alt input {
    display: none; }

.button-alt {
  width: fit-content;
  min-height: 40px;
  padding: 10px 10px;
  background-color: #FFFFFF;
  border: 1px solid #FDD700;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  gap: 5px; }
  .button-alt b {
    width: 0;
    height: 0;
    border-bottom: 3px solid transparent;
    border-left: 6px solid currentColor;
    border-top: 3px solid transparent; }
  @media (hover: hover) {
    .button-alt:hover {
      color: #000000;
      background-color: #FDD700; } }
.button {
  width: fit-content;
  min-height: 40px;
  padding: 10px 20px;
  background-color: #FDD700;
  border: 1px solid #FDD700;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  gap: 5px; }
  .button b {
    width: 0;
    height: 0;
    border-bottom: 3px solid transparent;
    border-left: 6px solid currentColor;
    border-top: 3px solid transparent; }
  @media (hover: hover) {
    .button:hover {
      background-color: #FFFFFF; } }
.button-1 {
  width: fit-content;
  min-height: 40px;
  padding: 10px 20px;
  background-color: #FDD700;
  border: 1px solid #FDD700;
  color: #000000;
  font-size: 16px;
  font-weight: 600; }
  @media (hover: hover) {
    .button-1:hover {
      background-color: #FFFFFF; } }
.nav-slider {
  display: flex;
  align-items: center;
  gap: clamp(5px, calc(5px + (10 - 5) * ((100vw - 500px) / (1300 - 500))), 10px); }

.slick-arrow {
  width: clamp(40px, calc(40px + (50 - 40) * ((100vw - 500px) / (1300 - 500))), 50px);
  height: clamp(40px, calc(40px + (50 - 40) * ((100vw - 500px) / (1300 - 500))), 50px);
  border-radius: 50%;
  background: #FDD700;
  border: 2px solid #FDD700; }
  .slick-arrow .icon {
    width: 25%;
    height: 25%;
    fill: #000000; }
  @media (hover: hover) {
    .slick-arrow:hover {
      background-color: #F9F9F9; } }
.slick-dots {
  display: flex;
  gap: 5px;
  margin: 0;
  position: absolute;
  bottom: clamp(10px, calc(10px + (30 - 10) * ((100vw - 500px) / (1300 - 500))), 30px);
  left: 50%;
  transform: translate(-50%);
  z-index: 1; }
  .slick-dots li {
    list-style: none;
    width: 35px;
    height: 2px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2);
    margin: 0; }
    .slick-dots li:only-child {
      display: none; }
    .slick-dots li.slick-active {
      background-color: #FDD700; }
  .slick-dots button {
    display: none; }

.button-more {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  background-color: #FDD700;
  width: fit-content;
  gap: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: .4s;
  padding: 0 5px;
  user-select: none; }
  @media (hover: hover) {
    .button-more:hover {
      color: #ffffff; } }
  .button-more b {
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid currentColor; }
  .button-more.active b {
    border-top: 0px solid currentColor;
    border-bottom: 6px solid currentColor; }

.more {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  width: fit-content;
  gap: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: .4s;
  padding: 0 5px;
  user-select: none; }
  @media (hover: hover) {
    .more:hover {
      color: #FDD700; } }
  .more b {
    width: 5px;
    height: 5px;
    transform: translateY(-25%) rotate(45deg);
    border-bottom: 1px solid currentColor;
    border-right: 1px solid currentColor; }
  .more.active b {
    transform: translateY(25%) rotate(-135deg); }

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: .4s; }
  @media (hover: hover) {
    .play-button:hover {
      color: #FDD700; }
      .play-button:hover .play {
        background-color: #FDD700; } }
  .play-button .play {
    fill: #000000;
    width: 40px;
    height: 40px;
    border: 2px solid #FDD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    transition: .4s; }
    .play-button .play .icon {
      transform: translateX(20%);
      width: 30%;
      height: 30%; }
  .play-button span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600; }

.social__list {
  display: flex;
  gap: 10px; }
  .social__list .social__item {
    display: block;
    width: clamp(30px, calc(30px + (40 - 30) * ((100vw - 500px) / (1300 - 500))), 40px);
    height: clamp(30px, calc(30px + (40 - 30) * ((100vw - 500px) / (1300 - 500))), 40px);
    transition: .4s;
    cursor: pointer; }
    @media (hover: hover) {
      .social__list .social__item:hover {
        transform: scale(1.1); } }
    .social__list .social__item img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.duplication_date_range_label {
  display: flex;
  align-items: center;
  background-color: #F2F2F2;
  gap: 5px;
  padding: 10px; }
  .duplication_date_range_label svg {
    width: 18px;
    height: 18px; }
  .duplication_date_range_label input {
    border: none;
    background-color: transparent; }

form {
  font-family: "Gilroy", sans-serif; }

.validation-field {
  position: relative;
  display: block;
  width: 100%; }
  .validation-field textarea:-webkit-autofill, .validation-field > input:-webkit-autofill, .validation-field > select:-webkit-autofill, .validation-field > .select2:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px transparent !important;
    -webkit-text-fill-color: #000000 !important;
    color: #000000 !important;
    transition: background-color 50000s ease-in-out 0s; }
  .validation-field textarea::-webkit-outer-spin-button, .validation-field > input::-webkit-outer-spin-button, .validation-field > select::-webkit-outer-spin-button, .validation-field > .select2::-webkit-outer-spin-button, .validation-field textarea::-webkit-inner-spin-button, .validation-field > input::-webkit-inner-spin-button, .validation-field > select::-webkit-inner-spin-button, .validation-field > .select2::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .validation-field textarea, .validation-field > input, .validation-field > select, .validation-field > .select2 {
    -webkit-appearance: none;
    width: 100%;
    padding: 5px 10px;
    background-color: #F9F9F9;
    border: 1px solid #F9F9F9;
    font-family: "Gilroy", sans-serif;
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px);
    color: #000000;
    min-height: 40px;
    transition: .4s; }
    .validation-field textarea::-webkit-input-placeholder, .validation-field > input::-webkit-input-placeholder, .validation-field > select::-webkit-input-placeholder, .validation-field > .select2::-webkit-input-placeholder {
      font-family: "Gilroy", sans-serif;
      font-size: 0; }
    .validation-field textarea:-moz-placeholder, .validation-field > input:-moz-placeholder, .validation-field > select:-moz-placeholder, .validation-field > .select2:-moz-placeholder {
      font-family: "Gilroy", sans-serif;
      font-size: 0; }
    .validation-field textarea::-moz-placeholder, .validation-field > input::-moz-placeholder, .validation-field > select::-moz-placeholder, .validation-field > .select2::-moz-placeholder {
      font-family: "Gilroy", sans-serif;
      font-size: 0; }
    .validation-field textarea:-ms-input-placeholder, .validation-field > input:-ms-input-placeholder, .validation-field > select:-ms-input-placeholder, .validation-field > .select2:-ms-input-placeholder {
      font-family: "Gilroy", sans-serif;
      font-size: 0; }
    .validation-field textarea:hover, .validation-field > input:hover, .validation-field > select:hover, .validation-field > .select2:hover, .validation-field textarea:focus, .validation-field > input:focus, .validation-field > select:focus, .validation-field > .select2:focus {
      border-color: #FDD700; }
  .validation-field textarea:focus + .placeholder, .validation-field > input:focus + .placeholder, .validation-field > select:focus + .placeholder, .validation-field > .select2:focus + .placeholder, .validation-field.active > .placeholder {
    top: 0;
    font-size: 10px;
    opacity: 0; }
  .validation-field > input, .validation-field > select, .validation-field > .select2 {
    vertical-align: middle; }
    .validation-field > input + .placeholder, .validation-field > select + .placeholder, .validation-field > .select2 + .placeholder {
      top: 50%;
      transform: translateY(-50%); }
  .validation-field .django-ckeditor-widget {
    width: 100%; }
  .validation-field textarea {
    height: 90px;
    padding-top: 10px;
    resize: vertical;
    width: 100%; }
  .validation-field > .placeholder {
    pointer-events: none;
    position: absolute;
    top: 15px;
    left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
    z-index: 2; }
  .validation-field.captcha-field {
    margin-top: 55px; }
    .validation-field.captcha-field img {
      height: 50px;
      object-fit: contain;
      position: absolute;
      bottom: calc(100% + 5px);
      left: 0; }
  .validation-field .errorlist {
    position: absolute;
    bottom: 2px;
    left: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
    font-size: 10px; }
    .validation-field .errorlist li {
      margin: 0;
      list-style: none;
      color: red; }

.form-success.green {
  font-size: clamp(24px, calc(24px + (18 - 24) * ((100vw - 500px) / (1300 - 500))), 18px);
  padding: 20px;
  text-align: center; }
  .form-success.green:after {
    display: none; }

.g-recaptcha > div {
  margin: 0 calc(50% - 152px); }
  @media (max-width: 768px) {
    .g-recaptcha > div {
      -moz-transform: scale(0.8, 0.8);
      -o-transform: scale(0.8, 0.8);
      -ms-transform: scale(0.8, 0.8);
      -webkit-transform: scale(0.8, 0.8);
      transform: scale(0.8, 0.8); } }
input[type='checkbox'] {
  display: none; }
  input[type='checkbox']:checked + .box {
    background-color: rgba(0, 0, 0, 0.1); }
    input[type='checkbox']:checked + .box .icon {
      opacity: 1; }

.checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  cursor: pointer;
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px);
  margin-bottom: 20px;
  color: #000000; }
  .checkbox .box {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    position: relative;
    transition: .4s;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    @media (hover: hover) {
      .checkbox .box:hover {
        background-color: rgba(0, 0, 0, 0.1); }
        .checkbox .box:hover .icon {
          opacity: .3; } }
    .checkbox .box .icon {
      opacity: 0;
      transition: inherit;
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 60%;
      height: 60%;
      fill: #000000; }

.input-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  cursor: pointer;
  width: fit-content; }
  .input-checkbox input {
    display: none; }
    .input-checkbox input:checked + b {
      background-color: #FDD700; }
      .input-checkbox input:checked + b svg {
        opacity: 1; }
  .input-checkbox b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 2px solid #FDD700;
    transition: .4s; }
    .input-checkbox b svg {
      height: 100%;
      width: 100%;
      transition: inherit;
      opacity: 0; }
  .input-checkbox span {
    font-weight: 500;
    font-size: 14px; }

.certificates-form {
  padding: clamp(15px, calc(15px + (30 - 15) * ((100vw - 500px) / (1300 - 500))), 30px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #FFFFFF; }
  .certificates-form .form-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px; }
  .certificates-form .form-title {
    font-size: clamp(24px, calc(24px + (28 - 24) * ((100vw - 500px) / (1300 - 500))), 28px);
    font-weight: 600; }
  .certificates-form .form-text {
    font-size: 12px;
    font-weight: 500; }
  .certificates-form .form-type {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .certificates-form .form-type input {
      display: none; }
  .certificates-form .type-item {
    padding: 10px 15px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    background-color: #F9F9F9;
    cursor: pointer; }
  .certificates-form input:checked + .type-item {
    background-color: #FDD700; }
  .certificates-form .form-row {
    display: flex;
    gap: 5px; }
    @media (max-width: 768px) {
      .certificates-form .form-row {
        flex-direction: column; } }
    .certificates-form .form-row > * {
      width: 50%; }
      @media (max-width: 768px) {
        .certificates-form .form-row > * {
          width: 100%; } }
  .certificates-form .form-column {
    display: flex;
    flex-direction: column;
    gap: 5px; }
  .certificates-form .colors {
    display: flex;
    align-items: center;
    gap: 5px; }
    .certificates-form .colors input {
      display: none; }
  .certificates-form input:checked + .color-item {
    border: 2px solid #FDD700; }
  .certificates-form .color-item {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: calc(50% - 2.5px);
    border: 2px solid transparent;
    cursor: pointer; }
    .certificates-form .color-item:after {
      content: '';
      display: block;
      padding-top: calc(180 / 140 * 100%); }
    .certificates-form .color-item > img, .certificates-form .color-item > svg, .certificates-form .color-item > video, .certificates-form .color-item > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .certificates-form .button {
    margin-top: 5px;
    width: 100%;
    min-height: 50px; }

.reviews-form {
  background-color: #FFFFFF;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  max-width: 650px;
  width: 100%;
  z-index: 2;
  height: fit-content; }
  .reviews-form .form-row {
    display: flex;
    gap: 5px; }
    @media (max-width: 768px) {
      .reviews-form .form-row {
        flex-wrap: wrap; } }
    .reviews-form .form-row > * {
      width: 50%; }
      @media (max-width: 768px) {
        .reviews-form .form-row > * {
          width: 100%; } }
  .reviews-form .form-column {
    display: flex;
    flex-direction: column;
    gap: 5px; }
  .reviews-form .button {
    margin-top: 5px;
    width: 100%;
    min-height: 50px; }
  .reviews-form .form-rating-list {
    display: flex;
    gap: 5px; }
  .reviews-form .form-rating-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px; }
  @media (max-width: 768px) {
    .reviews-form .form-rating-block {
      min-width: 48%; } }
  .reviews-form .form-rating-label {
    font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 500px) / (1300 - 500))), 14px);
    font-weight: 600;
    background-color: #FDD700;
    width: fit-content;
    margin-bottom: 10px; }
  .reviews-form .rating {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: .4s; }
    .reviews-form .rating .icon {
      width: 100%;
      height: 100%;
      fill: currentColor; }
    .reviews-form .rating.active {
      color: #FDD700; }

.form {
  padding: clamp(20px, calc(20px + (40 - 20) * ((100vw - 500px) / (1300 - 500))), 40px);
  position: relative;
  z-index: 0; }
  .form:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(249, 249, 249, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: -2; }
  .form .form-elem-deco-1 {
    position: absolute;
    bottom: 100%;
    left: 100%;
    z-index: -1;
    transform: translate(-40%, 40%); }
    .form .form-elem-deco-1 img {
      animation: zoom 30s infinite linear; }
  .form .form-elem-deco-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-35%, 5%);
    z-index: -5; }
    .form .form-elem-deco-2 img {
      animation: zoom 30s infinite linear; }
  .form .form-title {
    font-size: clamp(20px, calc(20px + (36 - 20) * ((100vw - 500px) / (1300 - 500))), 36px);
    font-weight: 800;
    margin-bottom: 12px;
    font-family: "Gilroy", sans-serif;
    text-align: center; }
  .form .form-text {
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px);
    font-weight: 500;
    margin-bottom: clamp(15px, calc(15px + (25 - 15) * ((100vw - 500px) / (1300 - 500))), 25px);
    text-align: center;
    text-shadow: 0px 0px 0.7em #FDD700, 0.2em 0.2em 0.7em #FDD700, -0.2em -0.2em 0.7em #FDD700; }
  .form .inputs-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; }
    .form .inputs-inner > * {
      min-width: 200px;
      flex: 1 1 24%;
      min-height: 65px; }
  .form .checkbox {
    width: fit-content;
    margin: 25px auto 0; }
    .form .checkbox a {
      color: #000000;
      text-decoration: underline;
      transition: .4s; }
      @media (hover: hover) {
        .form .checkbox a:hover {
          color: #FDD700; } }
@keyframes zoom {
  0% {
    transform: scale(0.8) rotate(-15deg); }
  50% {
    transform: scale(1) rotate(15deg); }
  100% {
    transform: scale(0.8) rotate(-15deg); } }

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 15px; }
  .breadcrumbs__list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    gap: 10px; }
  .breadcrumbs li {
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600; }
    .breadcrumbs li:after {
      content: '';
      display: block;
      width: 4px;
      height: 4px;
      background-color: #FDD700;
      border-radius: 50%;
      flex-shrink: 0; }
    .breadcrumbs li.active a, .breadcrumbs li:hover a {
      text-decoration: none; }
    .breadcrumbs li:last-child:after {
      content: none; }
    .breadcrumbs li:last-child a {
      color: #000000;
      pointer-events: none; }
  .breadcrumbs a {
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    transition: .4s;
    width: max-content;
    color: rgba(0, 0, 0, 0.5); }
    .breadcrumbs a:hover {
      color: #FDD700; }

.pagination {
  position: relative;
  margin: 20px 0 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; }

.pagination-item {
  margin: 0;
  font-weight: 500;
  line-height: 1;
  border-radius: 50%;
  background-color: transparent; }
  .pagination-item.active {
    background-color: #FDD700; }
    .pagination-item.active .pagination-link {
      pointer-events: none; }

.pagination-link {
  min-width: 28px;
  min-height: 28px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: .4s; }
  .pagination-link:hover {
    color: #FDD700; }

.filter-button-wrap {
  margin-bottom: 20px;
  display: none; }
  @media (max-width: 768px) {
    .filter-button-wrap {
      display: flex; } }
.filter {
  width: 250px;
  flex-shrink: 0;
  align-self: flex-start; }
  @media (max-width: 768px) {
    .filter {
      display: none;
      width: 100%;
      height: 100%;
      overflow-y: auto;
      padding: 10px; }
      .filter.popup-slider {
        display: block; } }
  .filter .filter-close {
    display: none;
    position: absolute;
    top: 5px;
    right: 20px;
    z-index: 3;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    cursor: pointer; }
    @media (max-width: 768px) {
      .filter .filter-close {
        display: block; } }
    .filter .filter-close:after, .filter .filter-close:before {
      content: '';
      background-color: #000000;
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .filter .filter-close:after {
      width: 100%;
      height: 2px; }
    .filter .filter-close:before {
      width: 2px;
      height: 100%; }
  .filter .filter-main {
    background-color: #ffffff;
    padding: 15px; }
  .filter .filter-group:not(.filter-group:last-child) {
    border-bottom: 1px solid #E6E6E6; }
  .filter .filter-group__title {
    display: flex;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    gap: 5px;
    cursor: pointer; }
    .filter .filter-group__title .icon {
      margin-left: auto;
      width: 12px;
      height: 12px;
      transition: .4s; }
    .filter .filter-group__title.active .icon {
      transform: rotate(180deg); }
    .filter .filter-group__title + .filter-group__inner {
      padding-top: 0; }
  .filter .filter-group__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 15px;
    padding-top: 15px; }
    .filter .filter-group__inner:empty {
      padding: 0; }
  .filter .button {
    width: 100%; }

.wrap {
  padding-top: 165px; }
  @media (max-width: 1599px) {
    .wrap {
      padding-top: 180px; } }
  @media (max-width: 1399px) {
    .wrap {
      padding-top: 250px; } }
  @media (max-width: 1024px) {
    .wrap {
      padding-top: 255px; } }
  @media (max-width: 768px) {
    .wrap {
      padding-top: 95px; } }
.header {
  padding: 10px 0;
  background-color: #FFFFFF;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 120; }
  @media (max-width: 768px) {
    .header {
      min-height: 85px; } }
  @media (min-width: 1600px) {
    .header .container {
      width: 1450px; } }
  .header__inner {
    display: flex;
    align-items: center;
    gap: clamp(10px, calc(10px + (30 - 10) * ((100vw - 500px) / (1300 - 500))), 30px); }
  .header__logo {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    display: block;
    max-width: 180px; }
    .header__logo:after {
      content: '';
      display: block;
      padding-top: calc(100 / 180 * 100%); }
    .header__logo > img, .header__logo > svg, .header__logo > video, .header__logo > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: contain; }
    @media (max-width: 768px) {
      .header__logo {
        max-width: 115px; } }
  .header__block {
    flex: 1 1 auto; }
  .header__top {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    padding: 15px 0; }
  @media (max-width: 768px) {
    .header__block {
      display: none; } }
  .header__buttons {
    display: none;
    margin-left: auto;
    width: fit-content;
    align-items: center; }
    @media (max-width: 768px) {
      .header__buttons {
        display: flex; } }
  .header__btn {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #FDD700;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s; }
    @media (hover: hover) {
      .header__btn:hover {
        color: #FDD700; } }
    .header__btn .icon {
      width: 50%;
      height: 50%;
      fill: transparent;
      stroke: currentColor; }
      .header__btn .icon:nth-child(2) {
        display: none; }
    .header__btn.menu-open .icon:nth-child(1) {
      display: none; }
    .header__btn.menu-open .icon:nth-child(2) {
      display: block; }
  .header__bottom {
    position: relative; }
  .header .nav {
    display: flex;
    margin: 0;
    list-style: none;
    gap: clamp(5px, calc(5px + (20 - 5) * ((100vw - 500px) / (1300 - 500))), 20px); }
  .header .nav-item {
    margin: 0; }
  .header .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 1200px) / (1920 - 1200))), 14px);
    display: flex;
    align-items: center;
    gap: 5px; }
    .header .nav-link .icon {
      fill: currentColor;
      width: 10px;
      height: 10px; }
  .header .lang__list {
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600; }
    .header .lang__list .lang {
      cursor: pointer;
      color: rgba(0, 0, 0, 0.5); }
      .header .lang__list .lang.active {
        color: #000000; }

.menu-mobile, .menu-servi, .menu-right {
  display: none;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 85px);
  padding: 20px;
  background-color: #FFFFFF; }
  .menu-mobile.menu-open, .menu-servi.menu-open, .menu-right.menu-open {
    display: flex;
    top: 85px; }

.menu-mobile {
  justify-content: space-between; }
  .menu-mobile .nav {
    display: flex;
    flex-direction: column;
    margin: 0;
    list-style: none;
    gap: 20px; }
  .menu-mobile .nav-item {
    margin: 0; }
  .menu-mobile .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px; }
    .menu-mobile .nav-link .icon {
      fill: currentColor;
      width: 10px;
      height: 10px; }
  .menu-mobile .lang__list {
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600; }
    .menu-mobile .lang__list .lang {
      cursor: pointer;
      color: rgba(0, 0, 0, 0.5); }
      .menu-mobile .lang__list .lang.active {
        color: #000000; }

.menu-servio .sbq-layer-300 {
  z-index: 30000; }

.ServioResult {
  background-color: #FFFFFF; }

.ServioResult #ServioResult:has(div) {
  padding-top: 50px;
  padding-bottom: 50px; }
  .ServioResult #ServioResult:has(div) + .main {
    display: none; }

.banner-section {
  position: relative; }
  .banner-section .nav-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%); }
  .banner-section .dots .slick-dots {
    position: static;
    transform: translate(0); }
  .banner-section .btns {
    display: flex;
    align-items: center;
    gap: 10px; }
    @media (max-width: 768px) {
      .banner-section .btns {
        display: none; } }
  .banner-section .slick-dots {
    order: -1;
    margin-right: auto; }

.banner-card {
  aspect-ratio: 1440 / 560;
  position: relative;
  z-index: 0;
  padding-top: 40px;
  padding-bottom: 90px;
  align-items: center;
  color: #ffffff; }
  @media (max-width: 1400px) {
    .banner-card {
      aspect-ratio: initial;
      min-height: 500px; } }
  .banner-card.slick-slide {
    display: flex; }
  .banner-card:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    background: linear-gradient(85.89deg, rgba(0, 0, 0, 0.61) 31.16%, rgba(149, 130, 29, 0.61) 95.59%); }
  .banner-card__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    object-position: center;
    object-fit: cover; }
  .banner-card__info {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column; }
  .banner-card__title {
    font-size: clamp(48px, calc(48px + (64 - 48) * ((100vw - 500px) / (1300 - 500))), 64px);
    font-weight: 700;
    margin-bottom: 15px; }
    @media (max-width: 768px) {
      .banner-card__title {
        font-weight: 500; } }
  .banner-card__text {
    margin-bottom: clamp(20px, calc(20px + (50 - 20) * ((100vw - 500px) / (1300 - 500))), 50px);
    max-width: 636px;
    font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 500px) / (1300 - 500))), 18px);
    line-height: 1.2; }
  .banner-card__button {
    min-height: 50px;
    min-width: 145px;
    background-color: #FDD700; }
    .banner-card__button:hover {
      background-color: #F9F9F9; }

.shares-section .title-section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; }

.shares-section .title-section {
  margin: 0; }

.shares-items-page .title-section-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    .shares-items-page .title-section-wrap {
      flex-direction: column;
      justify-content: center; } }
.shares-items-page .title-section {
  margin: 0; }

.shares-section__mesh {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px); }
  .shares-section__mesh > * {
    flex: 0 1 auto; }
  .shares-section__mesh > * {
    flex-basis: calc(100% / 4 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 4 * 3); }
  @media (max-width: 1199px) {
    .shares-section__mesh > * {
      flex-basis: calc(100% / 3 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 3 * 2); } }
  @media (max-width: 768px) {
    .shares-section__mesh > * {
      flex-basis: calc(100% / 2 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 2 * 1); } }
.shares-items__mesh {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px); }
  .shares-items__mesh > * {
    flex: 0 1 auto; }
  .shares-items__mesh > * {
    flex-basis: calc(100% / 4 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 4 * 3); }
  @media (max-width: 1199px) {
    .shares-items__mesh > * {
      flex-basis: calc(100% / 3 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 3 * 2); } }
  @media (max-width: 768px) {
    .shares-items__mesh > * {
      flex-basis: calc(100% / 2 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 2 * 1); } }
.share-card {
  position: relative;
  overflow: hidden;
  transition: .4s;
  border: 2px solid transparent; }
  .share-card__link {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1; }
  .share-card__label {
    pointer-events: none;
    position: absolute;
    z-index: 0;
    top: 10px;
    left: 0;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 0 20px 20px 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    color: #ffffff; }
    .share-card__label:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      border-radius: 0 20px 20px 0;
      border: 1px solid rgba(0, 0, 0, 0.25);
      pointer-events: none; }
    .share-card__label.gradient-1 {
      background: linear-gradient(87.44deg, #FF1B1B -36.23%, #FF8E09 144.8%); }
    .share-card__label.gradient-2 {
      background: linear-gradient(87.44deg, #27BFA4 -36.23%, #034934 144.8%); }
  .share-card__image {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%; }
    .share-card__image:after {
      content: '';
      display: block;
      padding-top: calc(264 / 309 * 100%); }
    .share-card__image > img, .share-card__image > svg, .share-card__image > video, .share-card__image > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .share-card__image img {
      z-index: -1; }
  .share-card__text-block {
    padding: clamp(10px, calc(10px + (15 - 10) * ((100vw - 500px) / (1300 - 500))), 15px);
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .share-card__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500; }
  .share-card__date-icon {
    width: 1.175em;
    height: 1.175em;
    fill: currentColor;
    flex-shrink: 0; }
  .share-card__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px);
    line-height: 1.2;
    height: calc(3 * clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px) * 1.2);
    font-weight: 500; }
  .share-card__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px);
    line-height: 1.2;
    height: calc(2 * clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px) * 1.2); }
  .share-card__button {
    position: relative;
    z-index: 0; }
  @media (hover: hover) {
    .share-card:hover {
      border: 2px solid #FDD700; } }
.share-item__inner {
  display: flex; }
  @media (max-width: 768px) {
    .share-item__inner {
      flex-direction: column; } }
.share-item__image {
  align-self: flex-start;
  flex: 1 1 38%;
  min-width: 250px;
  position: sticky;
  top: 200px; }
  @media (max-width: 768px) {
    .share-item__image {
      position: relative;
      top: initial;
      flex: initial;
      width: 100%;
      margin-bottom: 20px; } }
  .share-item__image .share-item__banner-image.slick-slide {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%; }
    .share-item__image .share-item__banner-image.slick-slide:after {
      content: '';
      display: block;
      padding-top: calc(470 / 500 * 100%); }
    .share-item__image .share-item__banner-image.slick-slide > img, .share-item__image .share-item__banner-image.slick-slide > svg, .share-item__image .share-item__banner-image.slick-slide > video, .share-item__image .share-item__banner-image.slick-slide > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }

.share-item__text-1 {
  flex: 1 1 62%; }

.share-item__text-2 {
  margin-top: 20px; }

.news-section .title-section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; }

.news-section .title-section {
  margin: 0; }

.news-section__slider {
  margin: 0 calc(-1 * clamp(5px, calc(5px + (10 - 5) * ((100vw - 500px) / (1300 - 500))), 10px)); }
  .news-section__slider .new-card {
    margin: 0 clamp(5px, calc(5px + (10 - 5) * ((100vw - 500px) / (1300 - 500))), 10px); }

.news-items__mesh {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px); }
  .news-items__mesh > * {
    flex: 0 1 auto; }
  .news-items__mesh > * {
    flex-basis: calc(100% / 4 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 4 * 3); }
  @media (max-width: 1199px) {
    .news-items__mesh > * {
      flex-basis: calc(100% / 3 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 3 * 2); } }
  @media (max-width: 768px) {
    .news-items__mesh > * {
      flex-basis: calc(100% / 2 - clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) / 2 * 1); } }
.new-card {
  position: relative; }
  .new-card:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #FDD700;
    opacity: 0;
    transition: .4s;
    z-index: 3;
    pointer-events: none; }
  .new-card:hover:after {
    opacity: 1; }
  .new-card__link {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 3; }
  .new-card__image {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%; }
    .new-card__image:after {
      content: '';
      display: block;
      padding-top: calc(264 / 309 * 100%); }
    .new-card__image > img, .new-card__image > svg, .new-card__image > video, .new-card__image > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .new-card__text-block {
    padding: clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px);
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .new-card__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500; }
  .new-card__date-icon {
    width: 1.175em;
    height: 1.175em;
    fill: currentColor;
    flex-shrink: 0; }
  .new-card__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px);
    line-height: 1.2;
    height: calc(3 * clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px) * 1.2);
    font-weight: 500; }
  .new-card__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px);
    line-height: 1.2;
    height: calc(3 * clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px) * 1.2);
    font-weight: 400;
    word-break: break-word; }

.news-item__banner-image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%; }
  .news-item__banner-image:after {
    content: '';
    display: block;
    padding-top: calc(505 / 1296 * 100%); }
  .news-item__banner-image > img, .news-item__banner-image > svg, .news-item__banner-image > video, .news-item__banner-image > iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }

.stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px; }
  .stars .star {
    width: 22px;
    height: 22px;
    fill: #FDD700; }

.hotel-page__banner-image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%; }
  .hotel-page__banner-image[data-fancybox] {
    cursor: pointer; }
  .hotel-page__banner-image:after {
    content: '';
    display: block;
    padding-top: calc(1 / 1 * 100%); }
  .hotel-page__banner-image > img, .hotel-page__banner-image > svg, .hotel-page__banner-image > video, .hotel-page__banner-image > iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hotel-page__banner-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: clamp(40px, calc(40px + (70 - 40) * ((100vw - 500px) / (1300 - 500))), 70px);
    height: clamp(40px, calc(40px + (70 - 40) * ((100vw - 500px) / (1300 - 500))), 70px); }

.hotel-page__contacts-wrap {
  display: flex; }
  @media (max-width: 1024px) {
    .hotel-page__contacts-wrap {
      flex-direction: column; } }
.hotel-page__contacts {
  padding: 25px;
  background-color: #FFFFFF;
  width: 100%; }

.hotel-page__contact-title {
  text-align: left; }

.hotel-page__contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, calc(5px + (14 - 5) * ((100vw - 500px) / (1300 - 500))), 14px) clamp(10px, calc(10px + (24 - 10) * ((100vw - 500px) / (1300 - 500))), 24px); }
  .hotel-page__contact-info > * {
    flex: 0 1 auto; }
  .hotel-page__contact-info > * {
    flex-basis: calc(100% / 2 - clamp(10px, calc(10px + (24 - 10) * ((100vw - 500px) / (1300 - 500))), 24px) / 2 * 1); }
  @media (max-width: 768px) {
    .hotel-page__contact-info > * {
      flex-basis: calc(100% / 1 - clamp(10px, calc(10px + (24 - 10) * ((100vw - 500px) / (1300 - 500))), 24px) / 1 * 0); } }
.hotel-page__map {
  width: 50%;
  max-width: 610px;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%; }
  .hotel-page__map:after {
    content: '';
    display: block;
    padding-top: calc(380 / 610 * 100%); }
  .hotel-page__map > img, .hotel-page__map > svg, .hotel-page__map > video, .hotel-page__map > iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (max-width: 1024px) {
    .hotel-page__map {
      width: 100%;
      max-width: initial; } }
.hotel-page__attributes {
  padding: clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px) clamp(15px, calc(15px + (30 - 15) * ((100vw - 500px) / (1300 - 500))), 30px);
  background-color: #FFFFFF;
  display: flex;
  gap: clamp(10px, calc(10px + (30 - 10) * ((100vw - 500px) / (1300 - 500))), 30px);
  flex-wrap: wrap;
  justify-content: space-between; }

.hotel-page__attribute-wrap {
  flex: 1 1 auto; }

.hotel-page__attribute-label {
  font-size: 14px;
  font-weight: 600;
  padding: 3px;
  width: fit-content;
  background-color: #FDD700;
  margin-bottom: 8px; }

.hotel-page__attribute-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  gap: 5px;
  margin-top: 8px; }

.hotel-page__attribute-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 8px; }

.hotel-page__attribute-key {
  display: flex;
  align-items: center; }

.hotel-page__attribute-value {
  text-align: right; }

.seo-text-section .button-more {
  display: none; }

.seo-text {
  max-height: 150px;
  transition: .4s;
  overflow: hidden; }
  .seo-text li, .seo-text a, .seo-text p {
    color: rgba(0, 0, 0, 0.75); }
  .seo-text *:last-child {
    margin-bottom: 0; }
  .seo-text.on {
    position: relative; }
    .seo-text.on:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 20%;
      background: linear-gradient(0deg, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
      transition: .4s; }
    .seo-text.on.active:after {
      opacity: 0; }
    .seo-text.on + .button-more {
      display: flex; }

.catalog-wrap {
  display: flex;
  column-gap: clamp(5px, calc(5px + (20 - 5) * ((100vw - 500px) / (1300 - 500))), 20px); }

.catalog-items__mesh {
  column-count: 3;
  column-gap: clamp(5px, calc(5px + (20 - 5) * ((100vw - 500px) / (1300 - 500))), 20px);
  flex: 1 1 calc(100% - 270px);
  width: calc(100% - 270px);
  margin-bottom: 6px; }
  .catalog-items__mesh > div {
    overflow: hidden;
    /* Fix for firefox and IE 10-11  */
    -webkit-column-break-inside: avoid;
    /* Chrome, Safari, Opera */
    page-break-inside: avoid;
    /* Firefox */
    break-inside: avoid;
    /* IE 10+ */
    break-inside: avoid-column; }
  @media (max-width: 1199px) {
    .catalog-items__mesh {
      column-count: 2; } }
  @media (max-width: 768px) {
    .catalog-items__mesh {
      column-count: 1; } }
.catalog-item {
  background-color: #FFFFFF;
  padding: 15px 20px; }
  .catalog-item__city {
    font-size: 14px;
    font-weight: 600;
    color: #939393;
    background-color: transparent;
    transition: .4s;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer; }
    @media (hover: hover) {
      .catalog-item__city:hover {
        color: #000000;
        background-color: #FDD700; } }
  .catalog-item__hotel-list {
    display: flex;
    flex-direction: column;
    gap: 15px; }
  .catalog-item__hotel {
    display: flex;
    flex-direction: column;
    gap: 7px; }
  .catalog-item__hotel-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: .4s;
    font-weight: 600; }
    @media (hover: hover) {
      .catalog-item__hotel-item:hover {
        color: #FDD700; } }
    .catalog-item__hotel-item img {
      width: 14px;
      height: 14px;
      object-fit: contain; }

.brands-items-page .title-section-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    .brands-items-page .title-section-wrap {
      flex-direction: column;
      justify-content: center; } }
.brands-items-page .title-section {
  margin: 0; }

.brands-items-page .bar-navigation {
  margin: 0; }

.brands-items-page .bar-item {
  flex: initial; }

.brands-items__mesh {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, calc(10px + (10 - 10) * ((100vw - 500px) / (1300 - 500))), 10px) clamp(10px, calc(10px + (10 - 10) * ((100vw - 500px) / (1300 - 500))), 10px); }
  .brands-items__mesh > * {
    flex: 0 1 auto; }
  .brands-items__mesh > * {
    flex-basis: calc(100% / 2 - clamp(10px, calc(10px + (10 - 10) * ((100vw - 500px) / (1300 - 500))), 10px) / 2 * 1); }
  @media (max-width: 1199px) {
    .brands-items__mesh > * {
      flex-basis: calc(100% / 1 - clamp(10px, calc(10px + (10 - 10) * ((100vw - 500px) / (1300 - 500))), 10px) / 1 * 0); } }
.brand-card {
  display: flex; }
  @media (max-width: 500px) {
    .brand-card {
      flex-direction: column; } }
  .brand-card__image {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    width: 40%;
    max-width: 230px;
    flex-shrink: 0; }
    .brand-card__image:after {
      content: '';
      display: block;
      padding-top: calc(1 / 1 * 100%); }
    .brand-card__image > img, .brand-card__image > svg, .brand-card__image > video, .brand-card__image > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media (max-width: 500px) {
      .brand-card__image {
        width: 100%;
        max-width: initial; } }
  .brand-card__text-block {
    flex: 1 1 auto;
    background-color: #FFFFFF;
    padding: clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px); }
  .brand-card__title {
    margin-bottom: 8px;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: clamp(18px, calc(18px + (24 - 18) * ((100vw - 500px) / (1300 - 500))), 24px);
    line-height: 1.2;
    height: calc(1 * clamp(18px, calc(18px + (24 - 18) * ((100vw - 500px) / (1300 - 500))), 24px) * 1.2); }
  .brand-card__text {
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px);
    line-height: 1.2;
    height: calc(5 * clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px) * 1.2); }

.join-banner {
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
  aspect-ratio: 1440 / 386;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .join-banner:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1; }
  .join-banner__bg {
    z-index: -2;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .join-banner__inner {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0; }
  .join-banner__title {
    font-size: clamp(32px, calc(32px + (64 - 32) * ((100vw - 500px) / (1300 - 500))), 64px);
    text-align: center;
    color: #ffffff; }

.room-page .bar-navigation {
  margin-bottom: clamp(15px, calc(15px + (30 - 15) * ((100vw - 500px) / (1300 - 500))), 30px); }

.rooms-mesh {
  display: flex;
  flex-direction: column;
  gap: 5px; }

.room-card {
  display: flex; }
  @media (max-width: 1024px) {
    .room-card {
      flex-direction: column-reverse; } }
  .room-card__info {
    width: 50%;
    background: #FFFFFF;
    padding: clamp(15px, calc(15px + (30 - 15) * ((100vw - 500px) / (1300 - 500))), 30px); }
    @media (max-width: 1024px) {
      .room-card__info {
        width: 100%; } }
  .room-card__title {
    font-size: clamp(20px, calc(20px + (28 - 20) * ((100vw - 500px) / (1300 - 500))), 28px);
    font-weight: 600;
    margin-bottom: 12px; }
  .room-card__text {
    margin-bottom: 15px;
    font-weight: 500; }
  .room-card__properties {
    columns: 2; }
  .room-card__property {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px; }
    .room-card__property svg, .room-card__property img {
      width: 20px;
      height: 20px; }
  .room-card__line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: clamp(15px, calc(15px + (30 - 15) * ((100vw - 500px) / (1300 - 500))), 30px);
    gap: 10px; }
  .room-card__slider {
    width: 50%; }
    @media (max-width: 1024px) {
      .room-card__slider {
        width: 100%; } }
    .room-card__slider .slick-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2; }
      .room-card__slider .slick-arrow.slick-left {
        left: 30px; }
      .room-card__slider .slick-arrow.slick-right {
        right: 30px; }
    .room-card__slider .slick-list {
      display: flex;
      height: 100%; }
    .room-card__slider .slick-track {
      display: flex;
      height: auto; }
  .room-card__slider-image.slick-slide {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%; }
    .room-card__slider-image.slick-slide:after {
      content: '';
      display: block;
      padding-top: calc(300 / 650 * 100%); }
    .room-card__slider-image.slick-slide > img, .room-card__slider-image.slick-slide > svg, .room-card__slider-image.slick-slide > video, .room-card__slider-image.slick-slide > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }

.reviews-page .bar-navigation {
  margin-bottom: clamp(40px, calc(40px + (30 - 40) * ((100vw - 500px) / (1300 - 500))), 30px); }

.review-contact {
  display: flex;
  align-items: center; }
  @media (max-width: 1024px) {
    .review-contact {
      padding: 15px;
      background-color: #FFFFFF;
      gap: 15px; } }
  @media (max-width: 768px) {
    .review-contact {
      flex-direction: column;
      text-align: center; } }
  .review-contact__image {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 185px; }
    .review-contact__image:after {
      content: '';
      display: block;
      padding-top: calc(195 / 185 * 100%); }
    .review-contact__image > img, .review-contact__image > svg, .review-contact__image > video, .review-contact__image > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .review-contact__info {
    align-self: flex-end;
    flex: 1 1 auto;
    padding: clamp(15px, calc(15px + (25 - 15) * ((100vw - 500px) / (1300 - 500))), 25px);
    background-color: #FFFFFF; }
    @media (max-width: 1024px) {
      .review-contact__info {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column; } }
  .review-contact__name {
    font-size: clamp(18px, calc(18px + (24 - 18) * ((100vw - 500px) / (1300 - 500))), 24px);
    margin-bottom: 6px; }
  .review-contact__position {
    width: fit-content;
    background-color: #FDD700;
    padding: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px; }
  .review-contact__text {
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
    margin-bottom: 10px; }
  .review-contact__line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px; }
    @media (max-width: 768px) {
      .review-contact__line {
        justify-content: center; } }
  .review-contact__social {
    width: 20px;
    height: 20px; }
    .review-contact__social img {
      width: 100%;
      height: 100%; }
  .review-contact__phone {
    font-size: 18px;
    font-weight: 500; }
  .review-contact__email {
    font-size: 18px;
    font-weight: 500; }

.review-info {
  margin: 10px 0;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between; }
  .review-info__statistics {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 15px; }
    @media (max-width: 768px) {
      .review-info__statistics {
        padding: 5px 20px;
        flex-direction: column; } }
  .review-info__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; }
    .review-info__rating svg {
      width: clamp(16px, calc(16px + (24 - 16) * ((100vw - 500px) / (1300 - 500))), 24px);
      height: clamp(16px, calc(16px + (24 - 16) * ((100vw - 500px) / (1300 - 500))), 24px); }
  .review-info__points {
    font-size: 18px; }
    .review-info__points span {
      display: inline-block;
      font-weight: 500;
      margin-right: 5px; }

.reviews-mesh {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, calc(10px + (20 - 10) * ((100vw - 500px) / (1300 - 500))), 20px); }

.review-card-main {
  padding: 20px;
  background-color: #FFFFFF; }
  .review-card-main__line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px clamp(6px, calc(6px + (12 - 6) * ((100vw - 500px) / (1300 - 500))), 12px);
    margin-bottom: 8px; }
  .review-card-main__name {
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px);
    font-weight: 500; }
    @media (max-width: 768px) {
      .review-card-main__name {
        order: -2;
        flex: 1 1 70%; } }
  .review-card-main__rating {
    display: flex;
    gap: 5px; }
    .review-card-main__rating svg {
      width: 18px;
      height: 18px; }
  .review-card-main__label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5); }
  .review-card-main__date {
    font-weight: 500;
    margin-left: auto; }
    @media (max-width: 768px) {
      .review-card-main__date {
        order: -1;
        flex: 1 1 25%;
        text-align: right; } }
  .review-card-main__title {
    margin-bottom: 8px;
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px);
    font-weight: 500; }
  .review-card-main__text {
    margin-bottom: 6px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75); }
    .review-card-main__text > *:last-child {
      margin-bottom: 0; }
  .review-card-main__plus, .review-card-main__minus {
    margin-bottom: 4px;
    text-transform: uppercase;
    background-color: #FDD700;
    width: fit-content;
    padding: 3px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center; }
    .review-card-main__plus span, .review-card-main__minus span {
      display: inline-block;
      width: 14px;
      height: 14px;
      background-color: #caac00;
      margin-right: 5px;
      position: relative; }
      .review-card-main__plus span:after, .review-card-main__plus span:before, .review-card-main__minus span:after, .review-card-main__minus span:before {
        background-color: #ffffff; }
      .review-card-main__plus span:after, .review-card-main__minus span:after {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 80%;
        height: 2px; }
      .review-card-main__plus span:before, .review-card-main__minus span:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 2px;
        height: 80%; }
  .review-card-main__plus {
    background-color: #13BC42; }
    .review-card-main__plus span {
      background-color: #0E8D31; }
      .review-card-main__plus span:after, .review-card-main__plus span:before {
        content: ''; }
  .review-card-main__minus {
    background-color: #D35252; }
    .review-card-main__minus span {
      background-color: #9E3D3D; }
      .review-card-main__minus span:after {
        content: ''; }

.review-card-answer {
  padding: 20px;
  background-color: #FFFFFF;
  margin-left: clamp(40px, calc(40px + (80 - 40) * ((100vw - 500px) / (1300 - 500))), 80px);
  margin-top: 5px;
  position: relative; }
  .review-card-answer:after {
    content: '';
    position: absolute;
    width: clamp(25px, calc(25px + (40 - 25) * ((100vw - 500px) / (1300 - 500))), 40px);
    height: clamp(18px, calc(18px + (30 - 18) * ((100vw - 500px) / (1300 - 500))), 30px);
    border-radius: 0 0 0 20px;
    border-left: 2px solid #FDD700;
    border-bottom: 2px solid #FDD700;
    right: calc(100% + 10px);
    top: 0; }
  .review-card-answer__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px; }
  .review-card-answer__label {
    padding: 3px;
    width: fit-content;
    background-color: #FDD700;
    font-weight: 600;
    font-size: 14px; }
  .review-card-answer__date {
    font-weight: 500; }
  .review-card-answer__text {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75); }
    .review-card-answer__text > *:last-child {
      margin-bottom: 0; }
  .review-card-answer__more {
    margin-top: 10px;
    display: none; }

.conference-page__text {
  padding: 20px;
  background-color: #FFFFFF; }

.conference-page__block {
  padding: clamp(15px, calc(15px + (25 - 15) * ((100vw - 500px) / (1300 - 500))), 25px);
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 15px; }
  @media (max-width: 768px) {
    .conference-page__block {
      align-items: flex-start;
      flex-direction: column; } }
.conference-page__block-image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 160px;
  flex-shrink: 0; }
  .conference-page__block-image:after {
    content: '';
    display: block;
    padding-top: calc(1 / 1 * 100%); }
  .conference-page__block-image > img, .conference-page__block-image > svg, .conference-page__block-image > video, .conference-page__block-image > iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }

.conference-page__block-text .button {
  margin-top: 10px; }

.rule-items__wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start; }
  @media (max-width: 1024px) {
    .rule-items__wrap {
      flex-wrap: wrap; } }
.rule-items__images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 45%; }

.rule-items__image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  width: 100%; }
  .rule-items__image:after {
    content: '';
    display: block;
    padding-top: calc(450 / 500 * 100%); }
  .rule-items__image > img, .rule-items__image > svg, .rule-items__image > video, .rule-items__image > iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; }

.rule-text-page {
  flex: 1 1 55%; }

.contacts-section {
  background-color: #FFFFFF;
  padding: clamp(15px, calc(15px + (30 - 15) * ((100vw - 500px) / (1300 - 500))), 30px);
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px; }

.contact__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 calc(100% / 4 - 20px / 4 * 3); }

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px; }

.contact__label {
  font-weight: 500;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5); }

.contact__phone {
  font-size: 16px;
  font-weight: 600; }

.contact__email {
  font-size: 14px;
  font-weight: 600; }

.contact__address {
  font-size: 14px;
  font-weight: 600; }

.contact__social {
  display: flex;
  align-items: center;
  gap: 10px; }

.contact__social-item {
  width: 24px;
  height: 24px;
  display: block; }
  .contact__social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.certificates__inner {
  display: flex;
  align-items: flex-start; }
  @media (max-width: 768px) {
    .certificates__inner {
      flex-direction: column; } }
  .certificates__inner .certificate__image {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%; }
    .certificates__inner .certificate__image:after {
      content: '';
      display: block;
      padding-top: calc(300 / 640 * 100%); }
    .certificates__inner .certificate__image > img, .certificates__inner .certificate__image > svg, .certificates__inner .certificate__image > video, .certificates__inner .certificate__image > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .certificates__inner .certificates {
    flex: 1 1 auto; }
  .certificates__inner .text-block {
    width: 50%; }
    @media (max-width: 768px) {
      .certificates__inner .text-block {
        width: 100%; } }
.footer-top {
  padding: clamp(20px, calc(20px + (35 - 20) * ((100vw - 500px) / (1300 - 500))), 35px) 0;
  background-color: #FFFFFF; }
  .footer-top__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px; }

.footer-bottom {
  padding: 5px 0;
  background-color: #F2F2F2; }
  .footer-bottom__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px; }
    @media (max-width: 768px) {
      .footer-bottom__row {
        flex-direction: column;
        justify-content: center; } }
  .footer-bottom__item {
    display: inline-block;
    color: #A2A2AA;
    margin: 0 auto; }
    @media (min-width: 1600px) {
      .footer-bottom__item:first-child, .footer-bottom__item:last-child {
        margin: initial; } }
.web-developed span {
  color: #000000; }

.web-developed b {
  color: #EC033B; }

.footer-contact__label {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer; }

.footer-contact__link {
  font-size: 14px;
  font-weight: 600; }

.footer-socials {
  display: flex;
  gap: 10px; }
  .footer-socials__item {
    display: block;
    width: clamp(30px, calc(30px + (40 - 30) * ((100vw - 500px) / (1300 - 500))), 40px);
    height: clamp(30px, calc(30px + (40 - 30) * ((100vw - 500px) / (1300 - 500))), 40px);
    transition: .4s; }
    @media (hover: hover) {
      .footer-socials__item:hover {
        transform: scale(1.1); } }
    .footer-socials__item img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

html,
body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  position: relative; }

body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  font-family: "Gilroy", sans-serif;
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 500px) / (1300 - 500))), 16px);
  color: #000000;
  width: 100vw;
  max-width: 100%;
  background-color: #F9F9F9;
  overflow-x: hidden !important; }
  body.fancybox-iosfix {
    position: relative !important;
    left: 0;
    top: inherit !important;
    right: 0; }
  body .wrap {
    flex: 1 0 auto; }
    body .wrap:before, body .wrap:after {
      content: "";
      display: table; }
    body .wrap:after {
      clear: both; }

ul,
ol {
  list-style-position: outside;
  margin-bottom: 25px; }
  ul li,
  ol li {
    margin-bottom: 10px;
    margin-left: 15px;
    font-size: inherit;
    color: #000000; }

a {
  color: inherit;
  text-decoration: none;
  transition: .4s; }
  a:hover {
    color: #FDD700; }
  a img {
    border: none; }

p {
  margin-bottom: 24px;
  font-size: inherit;
  line-height: inherit;
  color: inherit; }

table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  font-family: "Gilroy", sans-serif; }
  table th,
  table td {
    padding: 15px 10px;
    border: 1px solid #d6d6d6;
    font-size: 16px;
    color: #3c3c3c; }
    @media (max-width: 450px) {
      table th,
      table td {
        padding: 5px; } }
  table th {
    border-bottom-width: 3px;
    font-weight: 400; }

input[type="submit"] {
  font-family: "Gilroy", sans-serif;
  outline: none;
  cursor: pointer;
  line-height: 1.3;
  -webkit-appearance: none;
  -moz-appearance: none; }

textarea,
input,
select {
  font-family: "Gilroy", sans-serif; }

button {
  border: none; }

.content {
  padding-top: 15px;
  padding-bottom: clamp(30px, calc(30px + (100 - 30) * ((100vw - 500px) / (1300 - 500))), 100px); }

.text-page:before, .text-page:after {
  content: "";
  display: table; }

.text-page:after {
  clear: both; }

.text-page img {
  max-width: 100%; }
  @media (max-width: 1024px) {
    .text-page img {
      float: none !important;
      display: block;
      margin: 0 auto 30px !important; } }
.text-page ul,
.text-page ol {
  overflow: hidden; }
  .text-page ul li,
  .text-page ol li {
    position: relative;
    left: 15px;
    padding-right: 15px;
    font-size: 16px; }

.text-page table img {
  float: none;
  max-width: inherit;
  margin: 0; }

.attention {
  display: none; }

html[data-useragent*='MSIE 10.0'] body * {
  display: none !important; }

html[data-useragent*='MSIE 10.0'] .attention img {
  display: block !important;
  margin: 0 auto 30px; }

html[data-useragent*='MSIE 10.0'] .attention {
  display: block !important;
  padding-top: 15%;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center; }

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

.hidden {
  display: none !important; }

.overflow-wrap {
  overflow-y: hidden;
  overflow-x: auto; }

.mt-content, .my-content {
  margin-top: clamp(40px, calc(40px + (80 - 40) * ((100vw - 500px) / (1300 - 500))), 80px); }

.mb-content, .my-content {
  margin-bottom: clamp(40px, calc(40px + (80 - 40) * ((100vw - 500px) / (1300 - 500))), 80px); }

.banner-block {
  position: relative; }
  .banner-block .slick-slide {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%; }
    .banner-block .slick-slide:after {
      content: '';
      display: block;
      padding-top: calc(505 / 1296 * 100%); }
    .banner-block .slick-slide > img, .banner-block .slick-slide > svg, .banner-block .slick-slide > video, .banner-block .slick-slide > iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .banner-block .slick-arrow {
    position: absolute;
    z-index: 3; }
  .banner-block .slick-left {
    top: 50%;
    transform: translateY(-50%);
    left: 30px; }
    @media (max-width: 768px) {
      .banner-block .slick-left {
        left: -10px; } }
  .banner-block .slick-right {
    top: 50%;
    transform: translateY(-50%);
    right: 30px; }
    @media (max-width: 768px) {
      .banner-block .slick-right {
        right: -10px; } }
.label-row {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 2px 6px;
  display: inline-block;
  background-color: #FDD700;
  margin-bottom: 8px; }

.info-row {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  gap: 5px;
  margin-top: 8px;
  width: fit-content; }
  .info-row svg {
    align-self: flex-start;
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
    stroke: currentColor;
    fill: transparent; }
  .info-row img {
    align-self: flex-start;
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0; }

.bar-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 10px; }

.bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px;
  background-color: #FFFFFF;
  font-weight: 500;
  border: 1px solid #FFFFFF;
  transition: .4s;
  flex: 1 1 auto; }
  @media (max-width: 768px) {
    .bar-item {
      flex: 1 1 150px;
      justify-content: flex-start; } }
  @media (hover: hover) {
    .bar-item:hover {
      border: 1px solid #FDD700; } }
  .bar-item.active {
    pointer-events: none;
    border: 1px solid #FDD700;
    background-color: #FDD700; }
  .bar-item .icon {
    width: 2.25em;
    height: 2.25em;
    flex-shrink: 0;
    fill: transparent;
    stroke: currentColor; }
  .bar-item .icon-link {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    fill: transparent;
    stroke: #FDD700; }

.text-block {
  padding: clamp(10px, calc(10px + (25 - 10) * ((100vw - 500px) / (1300 - 500))), 25px);
  background-color: #FFFFFF; }

.ckeditor h1,
.ckeditor .h1,
.ckeditor h2,
.ckeditor .h2,
.ckeditor h3,
.ckeditor .h3,
.ckeditor h4,
.ckeditor .h4,
.ckeditor h5,
.ckeditor .h5,
.ckeditor h6,
.ckeditor .h6 {
  text-align: left; }

.vr {
  width: 6px;
  height: 6px;
  background-color: #FDD700; }

.more-text-js {
  max-height: 300px;
  transition: .4s;
  overflow: hidden; }
  .more-text-js.on {
    position: relative; }
    .more-text-js.on:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 20%;
      background: linear-gradient(0deg, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
      transition: .4s; }
    .more-text-js.on.active:after {
      opacity: 0; }
    .more-text-js.on + .more-js {
      display: flex; }

.management-page .title-section-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    .management-page .title-section-wrap {
      flex-direction: column;
      justify-content: center; } }
.management-page .title-section {
  margin: 0; }

.management-page .bar-navigation {
  margin: 0; }

.management-page .bar-item {
  flex: initial; }

.relative {
  position: relative; }

.deco-circle {
  position: absolute;
  width: clamp(100px, calc(100px + (300 - 100) * ((100vw - 500px) / (1300 - 500))), 300px);
  height: clamp(100px, calc(100px + (300 - 100) * ((100vw - 500px) / (1300 - 500))), 300px);
  background-color: #FDD700;
  border-radius: 50%;
  z-index: -1;
  opacity: .5;
  filter: blur(300px); }
  .deco-circle.top {
    top: 0; }
  .deco-circle.left {
    left: 0; }
  .deco-circle.right {
    right: 0; }
  .deco-circle.bottom {
    bottom: 0; }
  .deco-circle.top.right {
    transform: translate(25%, -25%); }
  .deco-circle.top.left {
    transform: translate(-25%, -25%); }

.select2-container--default .select2-results__option {
  margin: 0; }

.error {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  max-width: 855px;
  margin: 50px auto; }
  .error__image {
    width: 80%;
    max-width: 586px;
    margin-bottom: 15px; }
  .error__title {
    font-size: clamp(24px, calc(24px + (48 - 24) * ((100vw - 500px) / (1300 - 500))), 48px);
    font-weight: 600;
    margin-bottom: 10px; }
  .error__text {
    color: #717171;
    font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 500px) / (1300 - 500))), 18px);
    margin-bottom: 15px; }

/*# sourceMappingURL=main.css.map */