:root {
  --content-width: 1820px;
  --content-fluid-width: 1700px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-fluid-width: calc(var(--content-fluid-width) + (var(--container-offset) * 2));
  --font-family: "Golos Text", sans-serif;
  --main-color: #212529;
  --brand-primary: #0a51a1;
  --hover: #07458b;
  --gray-gray-100: #f8f9fa;
  --gray-gray-200: #e9ecef;
  --gray-gray-300: #dee2e6;
  --gray-gray-400: #ced4da;
  --gray-gray-500: #adb5bd;
  --gray-gray-600: #6c757d;
  --gray-gray-700: #495057;
  --gray-gray-800: #343a40;
  --gray-gray-900: #212529;
  --bootstrap-primary: #0d6efd;
  --bootstrap-secondary: #6c757d;
  --bootstrap-success: #198754;
  --bootstrap-danger: #dc3545;
  --bootstrap-warning: #ffc107;
  --bootstrap-info: #0dcaf0;
  --bootstrap-light: #f8f9fa;
  --bootstrap-dark: #212529;
  --bootstrap-white: #fff;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
@font-face {
  font-family: WorkSansCyr;
  font-display: swap;
  src: url("../fonts/WorkSansCyr-Light.woff2") format("woff2"), url("../fonts/WorkSansCyr-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: WorkSansCyr;
  font-display: swap;
  src: url("../fonts/WorkSansCyr-Bold.woff2") format("woff2"), url("../fonts/WorkSansCyr-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: WorkSansCyr;
  font-display: swap;
  src: url("../fonts/WorkSansCyr-Regular.woff2") format("woff2"), url("../fonts/WorkSansCyr-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
html {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

input[type=range] {
  -webkit-appearance: none;
  /* Скрывает слайдер, чтобы можно было создать свой */
  width: 100%;
  /* Указание параметра ширины требуется для Firefox. */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
  /* Убирает голубую границу у элемента. Хотя, возможно, и стоит создавать некоторое оформления для состояния фокуса в целях обеспечения доступности. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  /* Скрывает слайдер, чтобы можно было добавить собственные стили. */
  border-color: transparent;
  color: transparent;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

button, input, select, textarea {
  font: inherit;
  outline: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

ul[class] {
  list-style: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  list-style: none;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s linear, color 0.2s linear, background-color 0.2s linear;
}
a svg {
  transition: fill 0.2s linear, stroke 0.2s linear;
}
a:hover {
  opacity: 1;
  text-decoration: none;
}

button {
  transition: opacity 0.2s linear, color 0.2s linear;
  cursor: pointer;
}
button svg {
  transition: fill 0.2s linear, stroke 0.2s linear;
}
button:hover {
  opacity: 1;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background-color: transparent;
}

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

a {
  text-decoration: none;
}

.form-control:focus {
  box-shadow: none;
}

.modal-footer button:active:focus {
  box-shadow: none;
}

.btn-close:focus {
  box-shadow: none;
}

* {
  box-sizing: border-box;
}

*::after {
  box-sizing: border-box;
}

*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: var(--main-color);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
}

html {
  scroll-behavior: smooth;
}

body.hidden {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  width: 100%;
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  section {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.sect.pb-0 {
  padding-bottom: 0;
}
.sect.pt-0 {
  padding-top: 0;
}
.sect.pb-60 {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .sect.pb-60 {
    padding-bottom: 30px;
  }
}

.formInput {
  height: 40px;
  border-radius: 2px;
  background-color: transparent;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
}
@media (max-width: 991px) {
  .formInput {
    font-size: 16px;
  }
}
.formInput::placeholder {
  color: #697077;
  font-size: 14px;
}
@media (max-width: 991px) {
  .formInput::placeholder {
    font-size: 16px;
  }
}
.formInput--search {
  padding-left: 36px;
  background-image: url("../img/icons/search.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: left 12px center;
  padding-right: 40px;
}
.formInput--calendar {
  padding-right: 36px;
  background-image: url("../img/icons/calendar.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 12px center;
}
.formInput.w-650 {
  width: 650px;
}
@media (max-width: 767px) {
  .formInput.w-650 {
    width: 100%;
  }
}
.formInput.w-400 {
  width: 400px;
}
@media (max-width: 575px) {
  .formInput.w-400 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .formInput.w-400.w-md-100 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .formInput.w-400.w-lg-100 {
    width: 100%;
  }
}
.formInput.w-200 {
  width: 200px;
}
.formInput.w-140 {
  width: 140px;
}
@media (max-width: 991px) {
  .formInput.w-140.w-140-lg-100 {
    width: 100%;
  }
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

@media (max-width: 991px) {
  .fw-lg-normal {
    font-weight: normal !important;
  }
}

@media (max-width: 991px) {
  .fw-lg-400 {
    font-weight: normal !important;
  }
}

.sectHead {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .sectHead {
    margin-bottom: 24px;
  }
}

@media (max-width: 991px) {
  .pageHead {
    padding-top: 32px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  background-color: #fff;
  padding-bottom: 51px;
  padding-top: 119px;
}
.wrapper.wrapper--no-ticker {
  padding-top: 77px;
}
@media (max-width: 1199px) {
  .wrapper {
    padding-top: 111px;
  }
  .wrapper.wrapper--no-ticker {
    padding-top: 69px;
  }
}
@media (max-width: 991px) {
  .wrapper {
    padding-bottom: 0;
    padding-top: 119px;
  }
  .wrapper.wrapper--no-ticker {
    padding-top: 77px;
  }
}

.flex-1 {
  flex: 1;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  padding: 0 var(--container-offset);
}
@media (max-width: 575px) {
  .container {
    padding: 0 12px;
  }
}

.container {
  padding: 0 15px;
}

@media (min-width: 575.98px) {
  .container {
    max-width: 540px;
    margin: auto;
    padding: 0;
  }
}
@media (min-width: 767.98px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 991.98px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1199.98px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}
.container-fluid {
  max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-family);
  color: var(--main-color);
  font-weight: 600;
  line-height: normal;
}

.font-family-inter {
  font-family: "Inter", sans-serif;
}

h1,
.h1 {
  font-size: 40px;
  line-height: 120%;
}
@media (max-width: 991px) {
  h1,
.h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 991px) {
  h1.h1-lg-40,
.h1.h1-lg-40 {
    font-size: 40px;
    line-height: 120%;
  }
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 28px;
  line-height: 36px;
}
@media (max-width: 1199px) {
  h3,
.h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

h4,
.h4 {
  font-size: 24px;
  line-height: 133%;
}
@media (max-width: 991px) {
  h4.h4-lg-h5,
.h4.h4-lg-h5 {
    font-size: 20px;
    line-height: 140%;
  }
}

h5,
.h5 {
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 991px) {
  h5,
.h5 {
    font-size: 16px;
    line-height: 24px;
  }
}

h6,
.h6 {
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 991px) {
  h6.fz-lg-14,
.h6.fz-lg-14 {
    font-size: 14px;
  }
}

.fz-20 {
  font-size: 20px;
  line-height: 28px;
}

a.h6,
a.h5,
a.h4,
a.h3 {
  width: fit-content;
}

.underline {
  text-decoration: underline;
}

@-webkit-keyframes shows {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shows {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .fz-lg-12 {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  .fz-sm-12 {
    font-size: 12px;
    line-height: 16px;
  }
}

.content {
  font-size: 16px;
  line-height: 24px;
}
.content > p {
  margin-bottom: 20px;
}
.content > p a {
  display: inline;
  border-bottom: 1px solid #000;
}
.content > ul {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
  padding-left: 20px;
}
.content blockquote {
  position: relative;
  margin-bottom: 24px;
  padding: 40px;
  background-color: var(--gray-gray-100);
  border-left: 4px solid var(--brand-primary);
  font-style: italic;
}
.content blockquote::before {
  display: block;
  content: "";
  width: 16px;
  height: 36px;
  background: url("../img/icons/quote-prev.svg") no-repeat center center/contain;
  position: absolute;
  top: 5px;
  left: 20px;
}
.content blockquote::after {
  display: block;
  content: "";
  width: 16px;
  height: 36px;
  background: url("../img/icons/quote-next.svg") no-repeat center center/contain;
  position: absolute;
  right: 20px;
  bottom: 5px;
}
.content blockquote > :last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .content blockquote {
    color: var(--gray-gray-700);
  }
}
.content mark.marker-yellow {
  display: block;
  margin-bottom: 24px;
  padding: 40px;
  background-color: #e9efff;
  color: var(--brand-primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 991px) {
  .content mark.marker-yellow {
    padding: 24px;
    font-size: 16px;
    line-height: 24px;
  }
}
.content > a {
  display: inline;
  border-bottom: 1px solid #000;
}

.navArrow {
  border-radius: 50%;
  border: 1px solid var(--outline);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}
.navArrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}
@media (max-width: 991px) {
  .gap-12.gap-12-lg-8 {
    gap: 8px;
  }
}

.gap-20 {
  gap: 20px;
}
@media (max-width: 1199px) {
  .gap-20.gap-xl-12 {
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .gap-20.gap-lg-20 {
    gap: 20px;
  }
}

.bg-gray-100 {
  background-color: var(--gray-gray-100);
}

.bg-gray-200 {
  background-color: var(--gray-gray-200);
}

.bg-gray-700 {
  background-color: var(--gray-gray-700);
}

.bg-gray-900 {
  background-color: var(--gray-gray-900);
}

.bg-brand-primary {
  background-color: var(--brand-primary);
}

.bg-bootstrap-danger {
  background-color: var(--bootstrap-danger);
}

.bg-purple {
  background-color: #e9efff;
}

@media (max-width: 991px) {
  .bg-lg-none {
    background-color: transparent;
  }
}

.border-gray-200 {
  border: 1px solid var(--gray-gray-200);
}

.border-gray-400 {
  border: 1px solid var(--gray-gray-400);
}

.border-bootstrap-white {
  border: 1px solid var(--bootstrap-white);
}

.border-gray-800 {
  border: 1px solid var(--gray-gray-800);
}

.border-b-gray-300 {
  border-bottom: 1px solid var(--gray-gray-300) !important;
}

.border-b-gray-400 {
  border-bottom: 1px solid var(--gray-gray-400);
}

@media (max-width: 991px) {
  .border-b-gray-lg-400 {
    border-bottom: 1px solid var(--gray-gray-400);
  }
}

.border-b-gray-700 {
  border-bottom: 1px solid var(--gray-gray-700);
}

@media (max-width: 991px) {
  .border-b-lg-none {
    border-bottom: none;
  }
}

.border-t-gray-400 {
  border-top: 1px solid var(--gray-gray-400);
}

@media (max-width: 991px) {
  .border-t-gray-lg-400 {
    border-top: 1px solid var(--gray-gray-400);
  }
}

.color-bootstrap-white {
  color: var(--bootstrap-white);
}

.color-brand-primary {
  color: var(--brand-primary);
}

.color-gray-300 {
  color: var(--gray-gray-300);
}

.color-gray-400 {
  color: var(--gray-gray-400);
}

.color-gray-500 {
  color: var(--gray-gray-500);
}

.color-gray-600 {
  color: var(--gray-gray-600);
}

.color-gray-700 {
  color: var(--gray-gray-700);
}

@media (max-width: 991px) {
  .color-lg-gray-700 {
    color: var(--gray-gray-700);
  }
}

.hover-opacity:hover {
  opacity: 0.55;
}

.hover-bg-gray-400:hover {
  background-color: var(--gray-gray-400) !important;
}

.hover-bg-gray-300:hover {
  background-color: var(--gray-gray-300) !important;
}

.radius-2 {
  border-radius: 2px;
}

.bg-linear::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(29, 31, 34, 0) 0%, #1d1f22 100%);
}

.h-200 {
  height: 200px;
}

.h-460 {
  height: 460px;
  min-height: 100%;
}
@media (max-width: 991px) {
  .h-460 {
    height: 420px;
  }
}

.h-520 {
  height: 520px;
}
@media (max-width: 1199px) {
  .h-520.h-xl-400 {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .h-520.h-sm-250 {
    height: 250px;
  }
}

.h-80 {
  height: 80px;
}

.h-252 {
  height: 252px;
}

.newsCard.h-400 {
  min-height: 400px;
}
.newsCard.h-252 {
  min-height: 252px;
}
.newsCard.h-160 {
  height: 160px;
}
@media (max-width: 991px) {
  .newsCard.h-160.h-lg-430 {
    height: 430px;
  }
}
.newsCard.bg-linear::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(29, 31, 34, 0) 0%, #1d1f22 100%);
}
.newsCardDescr {
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
}
.newsCardDescr--stroke-3 {
  -webkit-line-clamp: 3;
}
.newsCardDescr--stroke-2 {
  -webkit-line-clamp: 2;
}
@media (max-width: 575px) {
  .newsCard--row {
    flex-direction: column;
  }
}
.newsCard--row .newsCardImage {
  width: 240px;
}
@media (max-width: 575px) {
  .newsCard--row .newsCardImage {
    width: 100%;
  }
}
.newsCard--row .newsCardImage.radius-2 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.newsCard--row .newsCardImage.h-160 {
  height: 160px;
}
@media (max-width: 575px) {
  .newsCard--row .newsCardImage.h-160 {
    height: 240px;
  }
}
@media (max-width: 575px) {
  .newsCard--row .newsCardImage.h-160.h-160-sm-235 {
    height: 235px;
  }
}
.newsCard--row .newsCardImage.h-200 {
  height: 200px;
}
.newsCard--row .newsCardImage.w-280 {
  width: 280px;
}

.max-w-440 {
  max-width: 440px;
}

.max-w-540 {
  max-width: 540px;
}

.max-w-565 {
  max-width: 565px;
}
@media (max-width: 1400px) {
  .max-w-565 {
    max-width: 493px;
  }
}
@media (max-width: 1199px) {
  .max-w-565 {
    max-width: 373px;
  }
}
@media (max-width: 991px) {
  .max-w-565 {
    max-width: 460px;
  }
}
@media (max-width: 767px) {
  .max-w-565 {
    max-width: 420px;
  }
}
@media (max-width: 575px) {
  .max-w-565 {
    max-width: calc(100% - 50px);
  }
}

.fz-12 {
  font-size: 12px;
  line-height: 133%;
}

.fz-16 {
  font-size: 16px;
  line-height: 150%;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .px-20.px-20-lg-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 991px) {
  .px-20.px-20-lg-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .py-20.py-20-lg-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1199px) {
  .px-30.px-30-xl-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.pl-3 {
  padding-left: 16px;
}

.pl-4 {
  padding-left: 24px;
}
@media (max-width: 991px) {
  .pl-4.pl-lg-21 {
    padding-left: 21px;
  }
}

.pr-3 {
  padding-right: 16px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.p-20 {
  padding: 20px;
}
@media (max-width: 991px) {
  .p-20.p-20-lg-16 {
    padding: 16px;
  }
}

.p-32 {
  padding: 32px;
}

.p-40 {
  padding: 40px;
}
@media (max-width: 991px) {
  .p-40.p-lg-24 {
    padding: 24px;
  }
}

.l-0 {
  left: 0;
}

.r-0 {
  right: 0;
}

.w-fit {
  width: fit-content;
}

.w-40 {
  width: 40px;
  flex-shrink: 0;
}

.t-50 {
  top: 50%;
}

.transf-50 {
  transform: translateY(-50%);
}

.mt-20 {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .mt-20.mt-20-lg-10 {
    margin-top: 10px;
  }
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-20 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .mb-20.mb-lg-16 {
    margin-bottom: 16px;
  }
}
@media (max-width: 991px) {
  .mb-20.mb-lg-10 {
    margin-bottom: 10px;
  }
}

.max-w-350 {
  max-width: 350px;
}

.p-1px {
  padding: 1px;
}

.w-125 {
  width: 125px;
}

.select2-dropdown {
  border-color: transparent;
  border: 1px solid var(--gray-gray-300);
}

.select2-container--default .select2-selection--single {
  border: none;
  border-bottom: 1px solid var(--gray-gray-300);
  border-radius: 2px;
  background: var(--gray-gray-100);
  height: 40px;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  background: url("../img/icons/arrow-down.svg") no-repeat center center/16px;
  right: 8px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 12px;
  padding-right: 36px;
}
@media (max-width: 991px) {
  .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
  }
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--brand-primary);
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--gray-gray-200);
}

.sortBlock {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #fff;
  display: none;
  z-index: 1;
}
@media (max-width: 575px) {
  .sortBlock {
    width: 100%;
  }
}
.sortBlock.active {
  display: block;
  -webkit-animation: shows 0.2s;
  animation: shows 0.2s;
}
.sortBlock ul li:not(:last-child) {
  margin-bottom: 16px;
}
.sortBlock ul li a:hover {
  color: var(--brand-primary);
}

.text-cursive {
  font-style: italic;
}

.border-l-brand-primary {
  border-left: 1px solid var(--brand-primary);
}

.border-width-4 {
  border-width: 4px;
}

.quote-arrows::before {
  display: block;
  content: "";
  width: 16px;
  height: 36px;
  background: url("../img/icons/quote-prev.svg") no-repeat center center/contain;
  position: absolute;
  top: 5px;
  left: 20px;
}
.quote-arrows::after {
  display: block;
  content: "";
  width: 16px;
  height: 36px;
  background: url("../img/icons/quote-next.svg") no-repeat center center/contain;
  position: absolute;
  bottom: 5px;
  right: 20px;
}

.articleSlider {
  padding-left: 130px;
  padding-right: 130px;
}
@media (max-width: 767px) {
  .articleSlider {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 575px) {
  .articleSlider {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.articleSlider .navArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.articleSlider .navArrowPrev {
  left: 80px;
}
@media (max-width: 767px) {
  .articleSlider .navArrowPrev {
    left: 60px;
  }
}
@media (max-width: 575px) {
  .articleSlider .navArrowPrev {
    left: 0;
  }
}
.articleSlider .navArrowNext {
  right: 80px;
}
@media (max-width: 767px) {
  .articleSlider .navArrowNext {
    right: 60px;
  }
}
@media (max-width: 575px) {
  .articleSlider .navArrowNext {
    right: 0;
  }
}
.articleSlider .swiper-slide {
  transition: opacity 0.2s linear;
}
.articleSlider .swiper-slide:hover {
  opacity: 0.85;
}
.articleSlider .swiper-slide.swiper-slide-active::before {
  opacity: 0;
}
.articleSlider .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--gray-gray-900);
  opacity: 0.5;
  transition: opacity 0.2s linear;
  border-radius: 2px;
}
.articleSlider .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
}
@media (max-width: 575px) {
  .articleSlider .swiper-slide img {
    height: 55vw;
  }
}

.sliderW {
  position: relative;
  z-index: 0;
}

.articleThumbSlider {
  height: auto !important;
}

.articleThumbSlider .swiper-wrapper {
  align-items: flex-start;
  height: auto !important;
}

.articleThumbSlider .swiper-slide {
  height: auto !important;
}

.radioW input {
  display: none;
}
.radioW input:checked + label::after {
  display: block;
  content: "";
  position: absolute;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: var(--brand-primary);
  z-index: 1;
  border-radius: 50%;
}
.radioW label {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
}
.radioW label::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--brand-primary);
  border-radius: 50%;
}

.line-result {
  background-color: var(--gray-gray-200);
  height: 4px;
  position: relative;
}

.line-drag {
  background-color: var(--gray-gray-500);
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
}

.gazetaCardImg {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .gazetaCardImg {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .gazetaCardImg {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .gazetaCardImg {
    height: 55vw;
  }
}

.air-datepicker-cell.-current- {
  color: var(--brand-primary);
  font-weight: 600;
}

.air-datepicker-body--day-name {
  color: var(--bootstrap-warning);
}

.teamCardImg {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .teamCardImg {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .teamCardImg {
    height: 55vw;
  }
}

.contactsIcon {
  width: 32px;
}

.errorTitle {
  font-size: 256px;
  line-height: 256px;
  font-weight: 700;
  font-family: "Work Sans", sans-serif;
}
@media (max-width: 991px) {
  .errorTitle {
    font-size: 140px;
    line-height: 160px;
  }
}

.errorDescr {
  max-width: 380px;
}

.errorLinks .sep {
  height: 13px;
  width: 1px;
  background-color: var(--brand-primary);
}

.errorImage {
  position: absolute;
  left: 28px;
  top: 79px;
}
@media (max-width: 1199px) {
  .errorImage {
    left: -56px;
  }
}
@media (max-width: 991px) {
  .errorImage {
    width: 230px;
    left: unset;
    right: 200px;
    top: -30px;
  }
}
@media (max-width: 767px) {
  .errorImage {
    right: 100px;
  }
}
@media (max-width: 575px) {
  .errorImage {
    right: 10px;
  }
}

.ml-20 {
  margin-left: 20px;
}

.ml-100 {
  margin-left: 100px;
}

@media (max-width: 991px) {
  .ml-lg-auto {
    margin-left: auto;
  }
}

.searchW .search-clear {
  right: 12px;
  position: absolute;
  top: 50%;
  transition: opacity 0.2s linear;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.searchW .search-clear.active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.searchW .search-clear:hover {
  opacity: 0.85;
}
.searchW:has(.formInput:focus) .search-clear {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .searchW.w-md-100 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .searchW.w-lg-100 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .w-lg-100 {
    width: 100%;
  }
}

.sub-menu {
  position: absolute;
  background: var(--bootstrap-white);
  z-index: 2;
  left: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  transition: opacity 0.2s linear, visibility 0.2s linear;
}
@media (max-width: 991px) {
  .sub-menu {
    position: unset;
    visibility: visible;
    opacity: 1;
    display: none;
  }
}
.sub-menu.active {
  opacity: 1;
  visibility: visible;
}
.sub-menu-l {
  border: 1px solid var(--gray-gray-200);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  width: 200px;
}
@media (max-width: 991px) {
  .sub-menu-l {
    width: 100%;
    border: none;
  }
}
.sub-menu-r {
  width: 400px;
}
@media (max-width: 991px) {
  .sub-menu-r {
    width: 100%;
  }
}

.box-shadow-menu {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px) {
  .box-shadow-menu.box-shadow-menu-lg-none {
    box-shadow: none;
  }
}

.menu-has-children {
  position: relative;
}

.max-h-270 {
  max-height: 270px;
  overflow-y: auto;
}
.max-h-270::-webkit-scrollbar {
  background-color: var(--gray-gray-100);
  width: 4px;
}
.max-h-270::-webkit-scrollbar-thumb {
  background-color: var(--gray-gray-400);
}
@media (max-width: 991px) {
  .max-h-270.max-h-lg-100 {
    max-height: 100%;
  }
}

@media (max-width: 991px) {
  .filter-action {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    background-color: #fff;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.filter-action.active {
  display: block;
}
.filter-action .selectW {
  grid-column: 6 span;
}
@media (max-width: 991px) {
  .filter-action .selectW {
    width: 100%;
    grid-column: 12 span;
    display: block;
  }
}
@media (max-width: 991px) {
  .filter-action .formSelect {
    width: 100% !important;
  }
}

.selection {
  width: 100%;
  display: flex;
}

.select2-container--default .select2-selection--single {
  width: 100%;
  display: flex;
}

.select2-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .select2-container {
    width: 100% !important;
  }
}

.filterSelectGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
}

@media (max-width: 991px) {
  .text-lg-cursive-unset {
    font-style: normal !important;
  }
}

@media (max-width: 575px) {
  .w-sm-100 {
    width: 100%;
  }
}

.socials-wrap {
  width: 280px;
}
.socials-wrap ul li a:hover {
  background-color: var(--brand-primary);
}
.socials-wrap ul li a:hover span {
  color: #fff;
}
.socials-wrap ul li a:hover svg {
  stroke: #fff;
}
.socials-wrap ul li img {
  width: 24px;
  flex-shrink: 0;
}
.socials-wrap ul li svg {
  width: 24px;
  height: 24px;
  fill: transparent;
  stroke: #000;
  stroke-width: 1.5px;
}

.socials-logo {
  width: 260px;
}
@media (max-width: 991px) {
  .socials-logo {
    width: 240px;
  }
}

@media (max-width: 991px) {
  .position-lg-relative {
    position: relative;
  }
}

.agreement input {
  display: none;
}
.agreement input:checked + label .rect {
  background-color: var(--brand-primary);
  background-image: url("../img/icons/checked.svg");
  border-color: var(--brand-primary);
}
.agreement label {
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.agreement label .rect {
  border: 1px solid var(--gray-gray-400);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
}
@media (max-width: 991px) {
  .agreement label .agreementText {
    font-size: 13px;
    line-height: 15px;
  }
}
.agreement label .agreementText a {
  color: var(--brand-primary);
}

.fileWrap label {
  cursor: pointer;
  transition: opacity 0.2s linear;
}

.form-floating > .form-control:focus ~ label::after {
  background-color: transparent;
}

.spinner {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 10px;
}
.spinner img {
  width: 25px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: background-color 0.2s linear, color 0.2s linear;
  column-gap: 10px;
  height: 36px;
  font-size: 14px;
  line-height: 143%;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 2px;
  cursor: pointer;
}
.button--lg {
  height: 65px;
}
@media (max-width: 991px) {
  .button--lg {
    height: 50px;
  }
}
.button--white {
  background-color: #fff;
}
.button--blue {
  background: var(--brand-primary);
  color: var(--bootstrap-white);
}
.button--blue:hover {
  background: var(--hover);
}
.button-gray-800 {
  background-color: var(--gray-gray-800);
  color: var(--bootstrap-white);
}
.button-gray-800:hover {
  background-color: var(--gray-gray-700);
}
.button-gray-800 svg {
  fill: var(--gray-gray-500) !important;
  stroke: transparent !important;
}
.button-transparent {
  background-color: transparent;
}
.button-transparent:hover {
  background: var(--gray-gray-200);
}
.button-transparent-blue {
  border: 1px solid var(--brand-primary);
}
.button-transparent-blue:hover {
  background-color: var(--brand-primary);
  color: var(--bootstrap-white);
}
.button-transparent-white {
  border: 1px solid var(--bootstrap-white);
}
.button-transparent-white:hover {
  background-color: var(--bootstrap-white);
  color: var(--brand-primary);
}
.button-transparent-gray-300 {
  border: 1px solid var(--gray-gray-300);
}
.button-transparent-gray-300:hover {
  background-color: var(--gray-gray-300);
}
.button-transparent-gray-400 {
  border: 1px solid var(--gray-gray-400);
}
.button-transparent-gray-400:hover {
  background-color: var(--gray-gray-400) !important;
}
.button.h-44 {
  height: 44px;
}
@media (max-width: 385px) {
  .button.fz-385-12 {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .button.w-md-100 {
    width: 100%;
  }
}
.button svg {
  width: 16px;
  height: 16px;
  stroke: #000;
}

.play-btn {
  width: fit-content;
  position: relative;
  z-index: 1;
}
.play-btn img {
  width: 64px;
}

.footerActionBtn[aria-expanded=true] svg {
  transform: rotate(180deg);
}

.filterBtn, .sortBtn {
  padding-left: 12px;
  padding-right: 12px;
}
.filterBtn img, .sortBtn img {
  width: 16px;
  flex-shrink: 0;
}

.headerSearchBtn img {
  transition: opacity 0.2s linear, visibility 0.2s linear;
}
.headerSearchBtn.active {
  background: url("../img/icons/close.svg") no-repeat center center/24px;
}
.headerSearchBtn.active img {
  opacity: 0;
  visibility: hidden;
}

.headerSearchEnter {
  position: absolute;
  right: 12px;
  top: 12px;
}

.pagination {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pagination ul {
  column-gap: 5px;
}
.pagination ul li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-gray-100);
  color: var(--gray-gray-700);
}
.pagination ul li a:hover {
  background-color: var(--gray-gray-200);
}
.pagination ul li.active a {
  background-color: var(--gray-gray-200);
  color: var(--brand-primary);
}
.pagination ul li.active:hover {
  opacity: 1;
}
.pagination ul li.disabled a {
  pointer-events: none;
  color: rgba(221, 221, 221, 0.7);
}

.pag-arrow svg {
  fill: transparent;
  stroke: var(--gray-gray-600);
  width: 8px;
  height: 13px;
  stroke-width: 2px;
}

/* Hamburger Menu */
.hamburger {
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 0;
  cursor: pointer;
  position: relative;
  display: none;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}

.hamburger div {
  align-self: flex-start;
  height: 2px;
  width: 100%;
  background: var(--main-color);
  border-radius: 10px;
}

.hamburger .meat {
  width: 100%;
}

.top-bun.active,
.meat.active,
.bottom-bun.active {
  opacity: 0;
}

.modal {
  display: none;
  height: fit-content;
  width: 880px;
  padding: 0;
  overflow: hidden;
  padding-left: 40px;
  padding-right: 40px;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .modal {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.modal .modalInner {
  overflow-y: auto;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .modal .modalInner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.modal .f-button.is-close-btn {
  top: 10px;
  right: 10px;
  background-color: transparent;
}
.modal .inputGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.modal .inputGrid .form-floating {
  grid-column: 4 span;
}
@media (max-width: 767px) {
  .modal .inputGrid .form-floating {
    grid-column: 12 span;
  }
}
.modal .inputGrid .form-floating.grid-col-12 {
  grid-column: 12 span;
}
.modal .inputGrid .form-control {
  border: none;
  border-radius: 2px;
}
.modal .inputGrid .form-control:focus {
  background-color: var(--gray-gray-100);
}

.tabs__nav {
  display: flex;
  column-gap: 16px;
  padding: 4px;
  background-color: var(--background);
  width: fit-content;
  border-radius: 15px;
}
.tabs__nav-btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 14px;
  padding-left: 16px;
  padding-right: 16px;
}
.tabs__nav-btn--active {
  background-color: var(--primary);
  color: #fff;
}
.tabs__panel {
  display: none;
}
.tabs__panel--active {
  display: block;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff;
  top: 0;
  z-index: 44;
}
.headerT {
  background: var(--gray-gray-800);
  padding-top: 10px;
  padding-bottom: 10px;
}
.headerB {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-gray-300);
  width: 100%;
  background-color: #fff;
  z-index: 44;
  top: 0;
}
.header .logo img {
  width: 175px;
}
@media (max-width: 1199px) {
  .header .logo img {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .header .logo img {
    width: 175px;
  }
}
.headerNav {
  position: relative;
}
.headerNavW {
  position: relative;
}
@media (max-width: 991px) {
  .headerNavW {
    position: unset;
  }
}
@media (max-width: 991px) {
  .headerNav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    z-index: 2;
    background-color: #fff;
  }
}
.headerNav.active {
  display: block;
  -webkit-animation: shows 0.2s;
  animation: shows 0.2s;
}
.headerNav.active + .search-action-field {
  top: 0px;
  width: 100%;
}
.headerNav > ul {
  display: flex;
  column-gap: 4px;
}
@media (max-width: 991px) {
  .headerNav > ul {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .headerNav > ul {
    max-width: 540px;
  }
}
.headerNav > ul > li.menu-has-children > a {
  padding-right: 36px;
  background-image: url("../img/icons/arrow-down.svg");
  background-size: 16px;
  background-position: right 15px center;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .headerNav > ul > li.menu-has-children > a {
    padding-right: 25px;
    background-position: right 5px center;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .headerNav > ul > li.menu-has-children > a {
    font-size: 14px;
    background-position: right 15px center;
  }
}
.headerNav > ul > li.menu-has-children > a.active {
  background-color: var(--gray-gray-200);
}
@media (max-width: 991px) {
  .headerNav > ul > li.menu-has-children > a.active {
    background-image: url("../img/icons/arrow-up.svg");
    background-color: transparent;
  }
}
.headerNav > ul > li > a {
  padding: 8px 12px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 143%;
  color: var(--gray-gray-900);
  display: flex;
}
.headerNav > ul > li > a:hover {
  background-color: var(--gray-gray-200);
}
@media (max-width: 991px) {
  .headerNav > ul > li > a:hover {
    background-color: transparent;
  }
}
.header .sep {
  width: 1px;
  height: 24px;
  background: var(--gray-gray-300);
}
.header .socials ul li a:hover {
  opacity: 0.85;
}
.header .socials ul li a img {
  width: 24px;
}

.header-marquee-item-cat {
  border: 1px solid var(--gray-gray-200);
  border-radius: 2px;
  padding: 2px 4px;
  background: rgba(248, 249, 250, 0.1);
  font-size: 12px;
  line-height: 133%;
  color: var(--bootstrap-white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
}
.header-marquee-item-text {
  font-size: 14px;
  line-height: 143%;
  color: var(--bootstrap-white);
  white-space: nowrap;
}
@media (max-width: 991px) {
  .header-marquee-item-text {
    font-size: 12px;
  }
}

.headerMarquee .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  width: max-content;
  gap: 45px;
  will-change: transform;
}
.headerMarquee.is-animated .swiper-wrapper {
  -webkit-animation: header-marquee-scroll var(--header-marquee-duration, 15s) linear infinite;
  animation: header-marquee-scroll var(--header-marquee-duration, 15s) linear infinite;
}
.headerMarquee .swiper-slide {
  width: fit-content;
}
@-webkit-keyframes header-marquee-scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(var(--header-marquee-translate, -100%), 0, 0);
    transform: translate3d(var(--header-marquee-translate, -100%), 0, 0);
  }
}
@keyframes header-marquee-scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(var(--header-marquee-translate, -100%), 0, 0);
    transform: translate3d(var(--header-marquee-translate, -100%), 0, 0);
  }
}
@media (max-width: 990.98px) {
  .headerMarquee .swiper-wrapper {
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .mobileNavBody {
    display: none;
  }
}

@media (max-width: 991px) {
  .mobileNavHead {
    background-repeat: no-repeat;
    padding-right: 25px;
    background-position: right 15px center;
    font-size: 13px;
    background-image: url("../img/icons/arrow-down.svg");
  }
}
.mobileNavHead.active {
  background-image: url("../img/icons/arrow-up.svg");
}

.header__fxd._fixed {
  position: fixed;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__fxd._show {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.search-action-field {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
@media (max-width: 991px) {
  .search-action-field {
    z-index: 11;
    top: 9px;
    width: calc(100% - 100px);
  }
}
.search-action-field.active {
  display: block;
  -webkit-animation: shows 0.2s;
  animation: shows 0.2s;
}
.search-action-field .formInput {
  background-color: #fff;
  z-index: 1;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  transition: transform 0.2s linear;
  transform: translateY(0);
}
.footerC {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footerB {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer .socials ul li a:hover {
  opacity: 0.85;
}
.footer.is-hidden {
  transform: translateY(100%);
}
@media (max-width: 991px) {
  .footer {
    display: none;
  }
}

.develop:hover {
  opacity: 0.85;
}
