@charset "UTF-8";
html {
  box-sizing: border-box;
}

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

.disable-scroll {
  position: relative;
  overflow: hidden;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.graph-modal {
  --transition-time:0.3s;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-time), visibility var(--transition-time);
}

.graph-modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.graph-modal__container {
  position: relative;
  width: 1000px;
  margin: 50px auto;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  cursor: default;
  text-align: left;
  display: none;
}

@media (max-width: 1024px) {
  .graph-modal__container {
    width: 90%;
  }
}
.graph-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512.001 512.001'%3E%3Cpath d='M284.286 256.002L506.143 34.144c7.811-7.811 7.811-20.475 0-28.285-7.811-7.81-20.475-7.811-28.285 0L256 227.717 34.143 5.859c-7.811-7.811-20.475-7.811-28.285 0-7.81 7.811-7.811 20.475 0 28.285l221.857 221.857L5.858 477.859c-7.811 7.811-7.811 20.475 0 28.285a19.938 19.938 0 0014.143 5.857 19.94 19.94 0 0014.143-5.857L256 284.287l221.857 221.857c3.905 3.905 9.024 5.857 14.143 5.857s10.237-1.952 14.143-5.857c7.811-7.811 7.811-20.475 0-28.285L284.286 256.002z'/%3E%3C/svg%3E");
  cursor: pointer;
}

.graph-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition-time), visibility var(--transition-time);
}

.graph-modal__container.graph-modal-open {
  display: inline-block;
}

.fade {
  opacity: 0;
}

.fade, .fade.animate-open {
  transition: opacity var(--transition-time);
}

.fade.animate-open {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(-100px);
}

.fadeInUp, .fadeInUp.animate-open {
  transition: transform var(--transition-time), opacity var(--transition-time);
}

.fadeInUp.animate-open {
  opacity: 1;
  transform: translateY(0);
} 

.air-datepicker-cell.-day-.-other-month-, .air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}
.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled) !important;
}
.air-datepicker-cell.-day-.-other-month-:hover, .air-datepicker-cell.-year-.-other-decade-:hover {
  color: var(--adp-color-other-month-hover);
}

.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-, .-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}

.-selected-.air-datepicker-cell.-day-.-other-month-, .-selected-.air-datepicker-cell.-year-.-other-decade- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}

.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-, .-selected-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background: var(--adp-background-color-selected-other-month-focused);
}

.-in-range-.air-datepicker-cell.-day-.-other-month-, .-in-range-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}

.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-, .-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range-focused);
}

.air-datepicker-cell.-day-.-other-month-:empty, .air-datepicker-cell.-year-.-other-decade-:empty {
  background: none;
  border: none;
}

.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}

.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}

.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}

.air-datepicker-cell.-in-range-:hover {
  background: var(--adp-cell-background-color-in-range-hover);
}

.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}

.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}

.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}

.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}

.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}

.air-datepicker-body.-hidden- {
  display: none;
}

.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}

.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}

.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}

.air-datepicker-body--cells {
  display: grid;
}

.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}

.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}

.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}

.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}

.-only-timepicker- .air-datepicker-nav {
  display: none;
}

.air-datepicker-nav--title, .air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}

.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}

.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}

.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}

.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}

.air-datepicker-nav--title:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}

.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}

.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}

.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}

.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}

.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.air-datepicker-time {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}

.-only-timepicker- .air-datepicker-time {
  border-top: none;
}

.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}

.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.air-datepicker-time--current-hours, .air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.air-datepicker-time--current-hours:after, .air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.air-datepicker-time--current-hours.-focus-:after, .air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}

.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}

.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}

.air-datepicker-time--row input[type=range] {
  background: none;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
  display: none;
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:focus {
  outline: none;
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
  background: transparent;
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
  background: transparent;
}

.air-datepicker {
  --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas:
  "nav"
  "body"
  "timepicker"
  "buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, .1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}

.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, .3);
  --adp-overlay-transition-duration: .3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}

.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, -webkit-max-content);
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}

.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}

.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}

.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}

.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}

.air-datepicker.-active-.-custom-position- {
  transition: none;
}

.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}

.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}

.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: transparent;
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}

.air-datepicker.-custom-position- {
  transition: none;
}

.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}

.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}

.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}

.-top-left- .air-datepicker--pointer, .-top-center- .air-datepicker--pointer, .-top-right- .air-datepicker--pointer, [data-popper-placement^=top] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}

.-top-left- .air-datepicker--pointer:after, .-top-center- .air-datepicker--pointer:after, .-top-right- .air-datepicker--pointer:after, [data-popper-placement^=top] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}

.-right-top- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer, [data-popper-placement^=right] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}

.-right-top- .air-datepicker--pointer:after, .-right-center- .air-datepicker--pointer:after, .-right-bottom- .air-datepicker--pointer:after, [data-popper-placement^=right] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}

.-bottom-left- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer, [data-popper-placement^=bottom] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}

.-bottom-left- .air-datepicker--pointer:after, .-bottom-center- .air-datepicker--pointer:after, .-bottom-right- .air-datepicker--pointer:after, [data-popper-placement^=bottom] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}

.-left-top- .air-datepicker--pointer, .-left-center- .air-datepicker--pointer, .-left-bottom- .air-datepicker--pointer, [data-popper-placement^=left] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}

.-left-top- .air-datepicker--pointer:after, .-left-center- .air-datepicker--pointer:after, .-left-bottom- .air-datepicker--pointer:after, [data-popper-placement^=left] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}

.-top-left- .air-datepicker--pointer, .-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}

.-top-right- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}

.-top-center- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}

.-left-top- .air-datepicker--pointer, .-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}

.-left-bottom- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}

.-left-center- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}

.air-datepicker--navigation {
  grid-area: nav;
}

.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}

.-only-timepicker- .air-datepicker--content {
  display: none;
}

.air-datepicker--time {
  grid-area: timepicker;
}

.air-datepicker--buttons {
  grid-area: buttons;
}

.air-datepicker--buttons, .air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}

.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}

.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
}

/* stylelint-disable */
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;
}

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 {
  display: block;
  list-style: none;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s linear;
}
a:hover {
  color: inherit;
  opacity: 1;
  text-decoration: none;
}

button {
  transition: opacity 0.2s linear;
}
button:hover {
  opacity: 1;
}

button:focus {
  outline: none;
}

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;
}

@font-face {
  font-family: VESTISANSBOLD;
  font-display: swap;
  src: url("../fonts/VESTISANSBOLD.woff2") format("woff2"), url("../fonts/VESTISANSBOLD.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: VESTISANSLIGHT_1;
  font-display: swap;
  src: url("../fonts/VESTISANSLIGHT_1.woff2") format("woff2"), url("../fonts/VESTISANSLIGHT_1.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: VESTISANSMEDIUM_0;
  font-display: swap;
  src: url("../fonts/VESTISANSMEDIUM_0.woff2") format("woff2"), url("../fonts/VESTISANSMEDIUM_0.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: VESTISANSREGULAR_0;
  font-display: swap;
  src: url("../fonts/VESTISANSREGULAR_0.woff2") format("woff2"), url("../fonts/VESTISANSREGULAR_0.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
html,
body {
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #1B1B1B;
  font-family: "VESTISANSLIGHT_1";
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #1B1B1B;
}
@media (max-width: 991px) {
  html,
body {
    font-size: 13px;
    line-height: 22px;
  }
}

html {
  scroll-behavior: smooth;
}

body.hidden {
  overflow: hidden;
}

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

.section-title {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title {
    margin-bottom: 20px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

@keyframes text-top {
  0% {
    top: 120px;
  }
  100% {
    top: 10px;
  }
}
@keyframes grad-top {
  0% {
    height: 40%;
  }
  100% {
    height: 100%;
  }
}
.container-header {
  max-width: 1480px;
}

.container-sidebar {
  position: relative;
  z-index: 1;
}

.container-lg {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-fluid-width);
}

.container-fluid {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #0064FF;
  font-family: "VESTISANSREGULAR_0";
}

h1 {
  font-size: 32px;
  line-height: 36px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 21px;
    line-height: 27px;
  }
}

h2 {
  font-size: 28px;
  line-height: 32px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 18px;
    line-height: 21px;
  }
}

h3 {
  font-size: 18px;
  line-height: 22px;
  color: #1B1B1B;
}

h4 {
  font-size: 15px;
  line-height: 20px;
  color: #1B1B1B;
  font-family: "VESTISANSREGULAR_0";
}
@media (max-width: 991px) {
  h4 {
    font-size: 12px;
    line-height: 16px;
  }
}

h5 {
  font-family: "VESTISANSMEDIUM_0";
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}

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;
}

.category-name {
  margin-bottom: 20px;
  overflow: hidden;
}
.category-name__title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
@media (max-width: 991px) {
  .category-name__title {
    font-size: 15px;
    line-height: 18px;
  }
}
.category-name__title::after {
  content: "";
  width: 100%;
  background-color: rgba(0, 100, 255, 0.2);
  height: 1px;
  margin-left: 20px;
}

.news-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .news-row {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.news-col {
  grid-column: 4 span;
}

.category-title {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .category-title {
    color: #0064FF;
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  .category__item {
    min-width: fit-content;
  }
}

.mfp-title {
  display: none;
}

.btn {
  box-sizing: border-box;
  height: 40px;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s linear, border-width 0.2s linear;
  width: 173px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .btn {
    height: 40px;
    width: fit-content;
    padding: 0 20px;
    font-size: 14px;
    line-height: 18px;
  }
}
.btn:hover {
  color: #fff;
}

.blue-lg {
  height: 30px;
  background-color: #0064FF;
}
@media (max-width: 575px) {
  .blue-lg {
    height: 20px;
    line-height: 15px;
  }
}
.blue-lg:hover {
  background-color: #fff;
  color: #0064FF;
}

.blue-sm {
  height: 32px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  background-color: #0064FF;
  font-family: "VESTISANSREGULAR_0";
}
@media (max-width: 575px) {
  .blue-sm {
    font-size: 12px;
    line-height: 16px;
    height: 30px;
  }
}
.blue-sm:hover {
  background-color: #fff;
  color: #0064FF;
}

.transp-lg {
  height: 50px;
  border: 1px solid #0064FF;
  font-family: "VESTISANSLIGHT_1";
  color: #0064FF;
  letter-spacing: -0.01em;
  transition: none;
}
@media (max-width: 991px) {
  .transp-lg {
    height: 45px;
  }
}
.transp-lg:hover {
  border: 3px solid #0064FF;
  color: #0064FF;
}

.transp-sm {
  height: 40px;
  font-size: 14px;
  line-height: 20px;
  font-family: "VESTISANSLIGHT_1";
}
@media (max-width: 991px) {
  .transp-sm {
    height: 32px;
    font-size: 12px;
    line-height: 16px;
  }
}
.transp-sm:hover {
  border: 2px solid #0064FF;
}

.header__btn {
  border: 1px solid #fff;
}
@media (max-width: 991px) {
  .header__btn {
    padding: 0 8px;
  }
}
@media (max-width: 575px) {
  .header>div{
    padding-right: 20px;
  }
  .header__btn {
    font-size: 12px;
    height: 20px;
    padding: 0 5px;
  }
}

.main-news__content-btn {
  width: 135px;
}
@media (max-width: 991px) {
  .main-news__content-btn {
    height: 45px;
    width: fit-content;
    padding: 0 20px;
  }
}

.main-news__content-btn {
  position: relative;
  z-index: 1;
}

.archive-news-card__btn {
  background-color: #fff;
  width: 132px;
  color: #0064FF;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: background-color 0.2s linear, color 0.2s linear;
  height: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .archive-news-card__btn {
    height: 45px;
  }
}
@media (max-width: 575px) {
  .archive-news-card__btn {
    position: absolute;
    right: 25px;
    bottom: 25px;
  }
}
.archive-news-card__btn:hover {
  background-color: #005EF0;
  color: #fff;
}

.previous-news__item-btn {
  width: 133px;
}

.tv__item-btn {
  width: 105px;
}

.tv__category-btn {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .tv__category-btn {
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .tv__category-btn {
    width: 100%;
  }
}

.tv-article__more-btn {
  color: #0064FF;
  transition: opacity 0.2s linear;
}
@media (max-width: 575px) {
  .tv-article__more-btn {
    width: 100%;
    text-align: start;
  }
}
.tv-article__more-btn:hover {
  opacity: 1;
}

.tv-article__content-hide {
  display: none;
}

.tv-article__content-hide.active {
  display: block;
}

.team-slide__btn {
  width: 105px;
  margin-top: 4px;
}

.radio__btn {
  width: 281px;
  padding: 0 14px;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  border: 1px solid #0064FF;
  color: #0064FF;
  transition: opacity 0.2s linear;
}
.radio__btn_fm {
  width: 231px;
}
@media (max-width: 575px) {
  .radio__btn {
    width: 100%;
    font-size: 14px;
    line-height: 18px;
  }
}
.radio__btn:hover {
  color: #0064FF;
}

.radio-item__btn {
  width: 105px;
}

.search-form__btn {
  width: 100%;
}

.modal-days__btn {
  position: relative;
  left: 114px;
  margin-top: 30px;
  width: 155px;
}
@media (max-width: 575px) {
  .modal-days__btn {
    left: 81px;
  }
}

.latest__btn {
  position: relative;
}
@media (max-width: 575px) {
  .latest__btn {
    width: 100%;
  }
}
.latest__btn:hover {
  color: #005EF0;
  background-color: #fff;
}

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

.contacts-sm-btn {
  border: 1px solid #0064FF;
  display: flex !important;
  width: 137px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  color: #0064FF;
}
.contacts-sm-btn:hover {
  color: #0064FF !important;
}

.translation__item-btn {
  width: 148px;
  height: 32px;
  border: 1px solid #FFFFFF;
  font-family: "VESTISANSREGULAR_0";
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  margin-top: 8px;
  color: #fff;
  transition: background-color 0.2s linear, color 0.2s linear;
}
.translation__item-btn:hover {
  background-color: #fff;
  color: #0064FF;
}

.breadcrumbs {
  padding-top: 18px;
  padding-bottom: 25px;
  font-size: 11px;
  line-height: 16px;
  color: #1B1B1B;
  font-weight: 300;
  font-family: "VESTISANSLIGHT_1";
}
@media (max-width: 991px) {
  .breadcrumbs {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.breadcrumbs a {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 10px;
  color: #0064FF;
  margin-right: 5px;
  transition: color 0.2s linear;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs a::after {
  content: "";
  width: 6px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/breadcrumbs/breadcr-arrow.svg") no-repeat center center/contain;
}
.breadcrumbs span {
  color: #1B1B1B;
}
@media (max-width: 575px) {
  .breadcrumbs span {
    height: 17px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: background 0.2s linear;
}

.hamburger.active {
  background: url("../img/close-icon.png") no-repeat center center/cover;
  width: 18px;
  height: 14px;
}

.hamburger div {
  align-self: flex-start;
  height: 2px;
  width: 100%;
  background: #fff;
}

.hamburger .meat {
  width: 100%;
}

.hamburger .bottom-bun {
  width: 100%;
}

.hamburger .top-bun {
  width: 100%;
}

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

.graph-modal__container {
  width: 768px;
  padding: 40px 60px 60px;
  background-color: #F2F7FF;
  border-radius: 0;
}
@media (max-width: 991px) {
  .graph-modal__container {
    padding: 30px 40px 40px;
  }
}
@media (max-width: 790px) {
  .graph-modal__container {
    width: calc(100% - 10px);
  }
}
@media (max-width: 575px) {
  .graph-modal__container {
    padding: 20px 30px 20px;
  }
}

.graph-modal__close {
  background-image: url("../img/modal/close-icon.svg");
  background-repeat: no-repeat;
  transition: background 0.2s linear;
  right: 29px;
  top: 29px;
}
@media (max-width: 575px) {
  .graph-modal__close {
    right: 20px;
    top: 20px;
  }
}

.graph-modal__close:hover {
  background-image: url("../img/modal/close-blue.svg");
}

.form-floating > label {
  padding: 0.75rem 0.75rem;
}

.form-floating > .form-control {
  height: calc(3rem + 2px);
}

@media (max-width: 991px) {
  .modal-news__title {
    font-size: 20px;
    line-height: 24px;
  }
}

.modal-news input {
  font-size: 15px;
  line-height: 22px;
  color: #757575;
}

.modal-news textarea {
  font-size: 15px;
  line-height: 22px;
  color: #757575;
  height: 100px !important;
}

.form-control {
  border: 1px solid rgba(0, 100, 255, 0.2);
}

.news-form__file {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .news-form__file {
    margin-bottom: 0;
  }
}

.news-form__file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size: 0;
}

.news-form__file-btn {
  background-color: transparent;
  transition: background-color 0.2s linear;
  border-radius: 0;
  box-shadow: none;
  height: 50px;
  padding-left: 15px;
  padding-right: 16px;
  width: 295px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #0064FF;
  border: 1px solid #0064FF;
}
@media (max-width: 767px) {
  .news-form__file-btn {
    height: 40px;
    font-size: 14px;
    width: fit-content;
    padding: 0 14px;
  }
}
.news-form__file-btn:hover {
  color: #0064FF;
  border-width: 2px;
}

.file-result {
  display: none;
  margin-top: 8px;
}

.file-wrapper {
  gap: 10px;
  margin-top: 14px;
}
.news-form__file-input:hover + .news-form__file-btn {
  border-width: 2px;
}

.news-form__link-btn {
  width: 220px;
}
@media (max-width: 767px) {
  .news-form__link-btn {
    width: fit-content;
    padding: 0 14px;
  }
}

.rect {
  width: 15px;
  min-width: 15px;
  height: 15px;
  border: 1px solid #757575;
  border-radius: 1px;
  margin-right: 12px;
  position: relative;
  top: 4px;
  cursor: pointer;
}

.agreement__checkbox {
  display: none;
}

.agreement__checkbox:checked + label .rect {
  border: 1px solid #0064FF;
  background: url("../img/modal/arrow.svg") no-repeat center center/8px;
}

.agreement__text {
  cursor: pointer;
}
.agreement__text a {
  display: inline;
  color: #0064FF;
  text-decoration: underline;
  transition: color 0.2s linear;
}
.agreement__text a:hover {
  color: #000;
}

.days-item {
  margin-bottom: 14px;
}
.days-item__left {
  margin-right: 14px;
}
@media (max-width: 575px) {
  .days-item__left {
    margin-right: 4px;
  }
}
.days-item__title {
  margin-bottom: 8px;
}
.days-item__text {
  font-size: 11px;
  line-height: 16px;
  font-family: "VESTISANSREGULAR_0";
}

.days-time {
  width: 100px;
  font-family: "VESTISANSMEDIUM_0";
  font-size: 14px;
  line-height: 17px;
  color: #0064FF;
}
@media (max-width: 575px) {
  .days-time {
    font-size: 11px;
    line-height: 14px;
    width: 75px;
  }
}

.modal-search {
  width: fit-content;
}
.modal-search .search-form__btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/modal/search-gray.svg") no-repeat center center/16px;
}

.search-form__wrapper {
  position: relative;
  width: 330px;
}
.search-form__wrapper input {
  width: 100%;
  padding: 0 12px;
  font-size: 13px;
  line-height: 13px;
  color: #1B1B1B !important;
  opacity: 1;
}
.search-form__wrapper input::placeholder {
  color: #757575;
}
.search-form__wrapper input:hover {
  border: 1px solid #1B1B1B;
}

.modal-translation {
  right: 50px;
  bottom: 50px;
  position: fixed;
  width: 450px;
  padding: 20px 30px;
  box-shadow: 0 0 11px 0px #a3a3a3;
  background-color: #fff;
  z-index: 1;
  display: none;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (max-width: 575px) {
  .modal-translation {
    width: calc(100% - 17px);
    bottom: unset;
    right: 8px;
    left: 8px;
    top: 50%;
    margin: auto;
    transform: translateY(-50%);
    min-height: 250px;
    z-index: 2;
  }
}
.modal-translation.active {
  display: block;
}
.modal-translation.opacity {
  opacity: 1;
}
.modal-translation .graph-modal__close {
  right: 10px;
  top: 10px;
}

.player {
  background-image: url("../img/audio/audio-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 20px;
  --player-button-width: 3em;
  --sound-button-width: 2em;
  --space: .5em;
}
@media (max-width: 991px) {
  .player {
    background-size: auto;
  }
}

.play-btn {
  width: 48px;
  cursor: pointer;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .play-btn {
    position: relative;
    left: -5px;
  }
}

@media (max-width: 991px) {
  .controls {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .controls__left {
    gap: 10px;
  }
}
.controls__left span {
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
}
.controls__left span:nth-child(2) {
  font-weight: 400;
  margin-right: 30px;
  display: flex;
  align-items: center;
}
.controls__left span:nth-child(2)::before {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  background-color: #F01E28;
  border-radius: 50%;
  margin-right: 10px;
}
.controls__left span:nth-child(3) {
  font-weight: 600;
}

.control__volume-img, .podcast__volume-img {
  width: 27px;
  min-width: 27px;
  cursor: pointer;
  margin-right: 27px;
}
.control__volume input[type=range], .podcast__volume input[type=range] {
  width: 200px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.control__volume input[type=range]::-webkit-slider-runnable-track, .podcast__volume input[type=range]::-webkit-slider-runnable-track {
  border-radius: 0;
  height: 4px;
  background-color: #fff;
}
.control__volume input[type=range]::-webkit-slider-thumb, .podcast__volume input[type=range]::-webkit-slider-thumb {
  background: #fff;
  cursor: pointer;
  width: 5px;
  height: 14px;
  border-radius: 2px;
  -webkit-appearance: none;
  margin-top: -5px;
}
.control__volume input[type=range]::-moz-range-track, .podcast__volume input[type=range]::-moz-range-track {
  border-radius: 10px/100%;
  height: 5px;
  background-color: #fff;
}
.control__volume input[type=range]::-moz-range-thumb, .podcast__volume input[type=range]::-moz-range-thumb {
  background: #ecf0f1;
  cursor: pointer;
}

.podcast__volume input[type=range] {
  width: 150px;
}
.podcast__volume input[type=range]::-webkit-slider-runnable-track {
  background-color: #1b1b1b;
}
.podcast__volume input[type=range]::-webkit-slider-thumb {
  background: #1b1b1b;
}

.player-podcasts__time {
  font-family: "VESTISANSREGULAR_0";
  font-size: 14px;
  line-height: 14px;
  color: #757575;
}
.player-podcasts .controls {
  display: grid;
  grid-template-columns: 49px 1fr 93px;
  align-items: center;
  gap: 0 25px;
}
@media (max-width: 767px) {
  .player-podcasts .controls {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.podcasts__item {
  position: relative;
  border: 1px solid rgba(0, 100, 255, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}
.podcasts__item:hover {
  border: 1px solid #757575;
}
.podcasts__item:hover .podcast__content-title {
  color: #0064FF;
}
.podcasts__item:focus-within {
  border: 2px solid #0064FF;
  padding: 19px;
}
.podcasts__item:focus-within .podcast__content-title {
  color: #0064FF;
}
.podcasts__item:focus-within .podcast__volume {
  opacity: 1;
}
.podcasts__item:active {
  border: 2px solid #0064FF;
  padding: 19px;
}
.podcasts__item:active .podcast__content-title {
  color: #0064FF;
}
.podcasts__item:last-child {
  margin-bottom: 30px;
}

.podcast__volume {
  opacity: 0.6;
}
.podcast__content {
  padding-left: 15px;
}
@media (max-width: 767px) {
  .podcast__content {
    padding-left: 0;
  }
}
.podcast__content-title {
  margin-bottom: 8px;
  transition: color 0.2s linear;
}
.podcast__content-descr {
  font-size: 11px;
  line-height: 16px;
  color: #757575;
  font-family: "VESTISANSREGULAR_0";
  height: 18px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.podcast__content-date {
  font-size: 11px;
  line-height: 11px;
  color: #757575;
}

.cast-play-btn {
  width: 48px;
  min-width: 48px;
  cursor: pointer;
}

.focus-el {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}

.header {
  color: #fff;
  background-color: #0064FF;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}
.header::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 0;
  background: linear-gradient(255.2deg, rgba(255, 255, 255, 0) 10.1%, rgba(255, 255, 255, 0.15) 92.28%);
}
.header::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: 0;
  right: 0;
  background: linear-gradient(255.2deg, rgba(255, 255, 255, 0) 10.1%, rgba(255, 255, 255, 0.15) 92.28%);
  transform: rotate(-180deg);
}
@media (max-width: 1199px) {
  .header__nav-list {
    gap: 20px;
    padding-left: 20px;
  }
}
.header__nav-list li:not(:last-child) {
  margin-right: 12px;
}
.header__nav-list li a {
  font-size: 14px;
  line-height: 20px;
  position: relative;
  display: block;
  padding-bottom: 3px;
}
@media (max-width: 1199px) {
  .header__nav-list li a {
    font-family: "VESTISANSREGULAR_0";
  }
}
.header__nav-list li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: width 0.2s linear;
  background-color: #fff;
}
.header__nav-list li a:hover:after {
  width: 100%;
}
.header__phone {
  margin-right: 28px;
  margin-left: 28px;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  font-family: "VESTISANSMEDIUM_0";
}
@media (max-width: 1199px) {
  .header__phone {
    margin-right: 0;
    margin-left: 0;
  }
}
.header__phone:hover {
  opacity: 0.75;
}
.header__weather {
  display: flex;
  align-items: center;
  margin-right: 28px;
  font-size: 13px;
  line-height: 14px;
}
.header__weather::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/header/weather.svg") no-repeat center center/contain;
  margin-right: 4px;
}
.header__weather span {
  vertical-align: super;
  font-size: 10px;
  position: relative;
  top: 2px;
  margin-right: 1px;
  margin-left: 1px;
}
.header .socials {
  margin-right: 28px;
}
@media (max-width: 1199px) {
  .header .socials {
    margin-top: 60px;
    margin-left: auto;
    margin-right: 0;
  }
}
.header .socials__list li:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 1199px) {
  .header .socials__list li:not(:last-child) {
    margin-right: 24px;
  }
}
.header .socials__list li a:hover {
  opacity: 0.75;
}
@media (max-width: 1199px) {
  .header .socials__list li a img {
    width: 24px;
  }
}
.header .socials__list li.ok {
  width: 16px;
}
.header__search {
  display: flex;
}
.header__search-btn:hover {
  opacity: 0.75;
}
.header .container {
  position: relative;
  z-index: 1;
}
.header .overlay {
  position: fixed;
  background: #0064FF;
  top: 0;
  right: 0;
  width: 320px;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s;
  -o-transition: opacity 0.35s, visibility 0.35s;
  transition: opacity 0.35s, visibility 0.35s;
  overflow: hidden;
  z-index: 777777;
}
.header .overlay::before {
  content: "";
  width: 100%;
  height: 26px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(255.2deg, rgba(255, 255, 255, 0) 10.1%, rgba(255, 255, 255, 0.15) 92.28%);
}
.header .overlay::after {
  content: "";
  width: 100%;
  height: 26px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(255.2deg, rgba(255, 255, 255, 0) 10.1%, rgba(255, 255, 255, 0.15) 92.28%);
  transform: rotate(-180deg);
}
.header .overlay.open {
  opacity: 1;
  visibility: visible;
  height: fit-content;
  width: 100%;
  max-width: 320px;
  padding-left: 15px;
  padding-top: 20px;
  padding-right: 15px;
  overflow-y: auto;
  z-index: 3;
  padding-bottom: 20px;
  border-left: 1px solid rgba(242, 247, 255, 0.15);
  border-bottom: 1px solid rgba(242, 247, 255, 0.15);
}
.header-mobile__top {
  margin-bottom: 60px;
}
.header-mobile .header__phone {
  display: flex;
  align-items: center;
}
.header-mobile .header__phone::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("../img/header/phone-sm.svg") no-repeat center center/12px;
  display: block;
  margin-right: 7px;
}
.header .search-form {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .header .search-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header .search-form__wrapper {
  width: 100%;
}
.header .search-form__wrapper input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  width: 100%;
  color: #fff !important;
  font-family: "VESTISANSREGULAR_0";
  font-size: 14px;
  line-height: 20px;
  height: 28px;
  padding: 4px 0;
}
.header .search-form__wrapper input:hover {
  border: unset;
  border-bottom: 1px solid #fff;
}
.header .search-form__wrapper input::placeholder {
  color: #fff !important;
  font-size: 14px;
  line-height: 20px;
}
.header .search-form__btn {
  background: url("../img/header/search-white.svg") no-repeat center center/16px;
  right: 0;
}

@media (max-width: 575px) {
  .logo {
    width: 110px;
  }
}
@media (max-width: 360px) {
  .logo {
    width: 90px;
  }
}

.header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.sidebar__nav {
  border: 1px solid rgba(0, 100, 255, 0.2);
}
.sidebar__nav-title {
  background-color: #0064FF;
  color: #fff;
  padding: 16px 14px 14px 14px;
}
.sidebar__nav-item {
  transition: background-color 0.2s linear;
}
.sidebar__nav-item:hover {
  background-color: #F2F7FF;
}
.sidebar__nav-item:hover a {
  color: #0064FF;
}
.sidebar__nav-item a {
  font-family: "VESTISANSMEDIUM_0";
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  color: #1B1B1B;
  transition: color 0.2s linear;
  padding: 16px 14px 14px 14px;
}
@media (max-width: 575px) {
  .sidebar__nav-item a {
    font-size: 12px;
  }
}
.sidebar__nav-item.active {
  background-color: #F2F7FF;
}
.sidebar__nav-item.active a {
  color: #0064FF;
}

@media (max-width: 991px) {
  .tv__nav {
    border: none;
  }
}
@media (max-width: 991px) {
  .tv__nav-title {
    display: none;
  }
}
@media (max-width: 991px) {
  .tv__nav-list {
    display: flex;
    overflow-x: scroll;
    border-width: 1px 0px;
    border-style: solid;
    border-color: #F2F7FF;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .tv__nav-item {
    width: fit-content;
    min-width: fit-content;
  }
}
@media (max-width: 991px) {
  .tv__nav-item:not(:last-child) {
    margin-right: 16px;
  }
}
@media (max-width: 991px) {
  .tv__nav-item a {
    padding: 14px 0;
  }
}
@media (max-width: 991px) {
  .tv__nav-item.active {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .sidebar.fixed {
    position: fixed;
    top: 70px;
    background-color: #fff;
    left: 0;
    width: 100%;
    padding: 0 10px;
    z-index: 1;
  }
}

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

@media (max-width: 991px) {
  .main-news {
    padding-top: 0;
  }
}
.main-news__content {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 450px;
  padding: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .main-news__content {
    height: 360px;
  }
}
.main-news__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.main-news__content-title {
  color: #fff;
  margin-top: 13px;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}

.baner {
  height: 180px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 991px) {
  .baner {
    height: 120px;
  }
}
.baner__title {
  font-family: "VESTISANSBOLD";
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 991px) {
  .baner__title {
    font-size: 24px;
    line-height: 24px;
  }
}
.baner > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.baner-card {
  height: 355px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 27px 25px;
  position: relative;
}
@media (max-width: 991px) {
  .baner-card {
    height: 240px;
  }
}
.baner-card__title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.04em;
  font-family: "VESTISANSBOLD";
  text-transform: uppercase;
  color: #fff;
}
.baner-card > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.baner-sm {
  height: 136px;
}
@media (max-width: 991px) {
  .baner-sm {
    height: 120px;
  }
}

.latest {
  padding-top: 0;
}
@media (max-width: 991px) {
  .latest__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.latest__wrapper {
  position: relative;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .latest__wrapper {
    padding-top: 25px;
    margin-bottom: 15px;
    padding-right: 0;
  }
}
.latest__wrapper::before {
  content: "";
  position: absolute;
  background-color: #F2F7FF;
  height: 100%;
  width: calc(100% + 200px);
  right: 0;
  top: 0;
  z-index: -1;
}

.news-card {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 100, 255, 0.2);
}
@media (max-width: 991px) {
  .news-card {
    padding-bottom: 16px;
  }
}
.news-card:not(:first-child) {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .news-card:not(:first-child) {
    padding-top: 16px;
  }
}
@media (max-width: 991px) {
  .news-card-list {
    padding-top: 20px;
  }
}
.news-card__date {
  font-family: "VESTISANSLIGHT_1";
  font-size: 11px;
  line-height: 11px;
  color: #F01E28;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .news-card__date {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 8px;
  }
}
.news-card__text {
  font-family: "VESTISANSREGULAR_0";
  max-height: 80px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: color 0.2s linear;
}
@media (max-width: 991px) {
  .news-card__text {
    font-size: 12px;
    line-height: 16px;
  }
}
.news-card__text:hover {
  color: #0064FF;
}
.news-card__descr {
  font-size: 11px;
  line-height: 15px;
  color: #757575;
  height: 31px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}

.news-card-img-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .news-card-img-list {
    gap: 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .news-card-img-list .baner-card {
    grid-column: 12 span;
  }
}

.news-card-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 230px;
  grid-column: 4 span;
  justify-content: flex-end;
  padding-top: 15px;
  transition: justify-content 0.2s linear;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-card-img {
    grid-column: 6 span;
    height: 200px;
  }
}
.news-card-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 65%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
/* .news-card-img:hover .news-card-img__content {
  animation-name: text-top;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
} */

.news-card-img:hover .news-card-img__text-hide {
  /* height: 80px; */
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  opacity: 1;
  /* margin-top: 8px; */
  color: #fff;
  font-family: "VESTISANSREGULAR_0";
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
}
.news-card-img:hover:before {
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  animation-name: grad-top;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}
.news-card-img__content {
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  z-index: 1;
  bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .news-card-img__content {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }
}
.news-card-img__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.news-card-img__text {
  max-height: 60px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: color 0.2s linear;
  color: #fff;
  position: relative;
  z-index: 1;
}
.news-card-img__text:hover {
  color: #fff;
}
.news-card-img__text-hide {
  height: 0;
  opacity: 0;
}
.news-card-img__date {
  margin-bottom: 8px;
}
.news-card-img.news-card-lg {
  height: 263px;
}
@media (max-width: 991px) {
  .news-card-img.news-card-lg {
    height: 240px;
  }
}
.news-card-img > a {
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
}

.date-blur {
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 12px;
  padding-right: 7px;
  width: fit-content;
}
@media (max-width: 991px) {
  .date-blur {
    font-size: 10px;
    line-height: 10px;
  }
}
@media (max-width: 575px) {
  .date-blur {
    padding-right: 0;
  }
}
.date-blur::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.15) 2.83%, rgba(255, 255, 255, 0.15) 41.82%);
  backdrop-filter: blur(2px);
  left: 0;
  top: 0;
}
.date-blur::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #F01E28;
  left: 0;
  top: 0;
  z-index: 1;
}
.date-blur span {
  position: relative;
  z-index: 1;
}

.archive-news-card {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top 0px;
  position: relative;
  height: 373px;
  padding: 30px;
}
@media (max-width: 991px) {
  .archive-news-card {
    height: 270px;
    background-position: center;
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .archive-news-card {
    height: 130px;
  }
}
.archive-news-card::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 50px;
  width: 100px;
  height: 85px;
  background: url("../img/baner/letter.svg") no-repeat center center/cover;
  z-index: 0;
}
.archive-news-card__title {
  font-size: 24px;
  line-height: 32px;
  color: #0064FF;
  max-width: 130px;
  font-family: "VESTISANSREGULAR_0";
}

.news-card-sm {
  border: 1px solid rgba(0, 100, 255, 0.1);
  transition: box-shadow 0.2s linear;
}
.news-card-sm:not(:last-child) {
  margin-bottom: 10px;
}
.news-card-sm:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.news-card-sm__img {
  width: 109px;
  min-width: 109px;
  height: 109px;
  position: relative;
  transition: opacity 0.2s linear;
}
.news-card-sm__img:hover {
  opacity: 0.85;
}
.news-card-sm__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-sm__img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.news-card-sm__content {
  padding: 12px 12px 0 12px;
}
.news-card-sm .news-card {
  padding-bottom: 0;
}

.popular .news-card__text {
  -webkit-line-clamp: 3;
  max-height: 60px;
}

.popular__title {
  font-size: 20px;
  line-height: 24px;
}

.news {
  padding-top: 0;
}
.news .news-card-img-list {
  margin-bottom: 20px;
}

.category {
  border-width: 1px 0px;
  border-style: solid;
  border-color: #F2F7FF;
  margin-bottom: 6px;
}
.category__list {
  gap: 20px;
  overflow-x: scroll;
  padding-bottom: 4px;
}
.category__list::-webkit-scrollbar {
  height: 4px;
  background-color: #f3f6fa;
}
.category__list::-webkit-scrollbar-thumb {
  background-color: #0064FF;
  border-radius: 4px;
}

.category__list::-webkit-scrollbar-thumb:hover {
  background-color: #0f4391;
}
@media (max-width: 991.98px) {
  .category__list {
    padding-bottom: 0;
  }
  .category__list::-webkit-scrollbar { height: 0; }
  .category__list { -ms-overflow-style: none; }
  .category__list { overflow: -moz-scrollbars-none; }
}
.category__item a {
  padding: 14px 0px;
  font-weight: 500;
  font-family: "VESTISANSMEDIUM_0";
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  position: relative;
  color: #1B1B1B;
}
@media (max-width: 991px) {
  .category__item a {
    font-size: 13px;
    line-height: 13px;
  }
}
.category__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #0064FF;
  height: 2px;
  width: 0;
  transition: width 0.2s linear;
}
.category__item a:hover:after {
  width: 100%;
}
.category__item.active a::after {
  width: 100%;
}

.sort__name {
  font-size: 12px;
  line-height: 12px;
  font-family: "VESTISANSLIGHT_1";
  margin-right: 4px;
}
.sort .btn {
  margin-left: auto;
  color: #0064FF;
  width: fit-content;
}
.sort .dropdown-toggle::after {
  border: none;
  background: url("../img/sort/arrow-down.svg") no-repeat center center/contain;
  width: 10px;
  height: 6px;
}

.news__content {
  margin-bottom: 20px;
}
.news__content .news-card-sm {
  border-right: none;
  border-left: none;
  border-top: none;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.news__content .news-card-sm:hover {
  box-shadow: none;
}
.news__content .news-card-sm:first-child {
  border-top: 1px solid rgba(0, 100, 255, 0.1);
}
.news__content .news-card-sm__img {
  width: 165px;
  min-width: 165px;
}
@media (max-width: 575px) {
  .news__content .news-card-sm__img {
    width: 100px;
    min-width: 105px;
    height: 107px;
  }
}
.news__content .news-card-sm__content {
  padding-left: 30px;
}
@media (max-width: 575px) {
  .news__content .news-card-sm__content {
    padding-left: 12px;
  }
}

#dropdownSort {
  font-size: 12px;
  line-height: 12px;
  padding: 0;
  height: fit-content;
}

.dropdown-item {
  font-size: 12px;
  line-height: 16px;
}

.dropdown-menu {
  z-index: 1;
}

.news-article {
  padding-top: 0;
}
.news-article__title {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 32px;
}
@media (max-width: 991px) {
  .news-article__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .news-article__title {
    font-size: 15px;
    line-height: 18px;
  }
}
.news-article__date {
  font-family: "VESTISANSLIGHT_1";
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0.03em;
  color: #757575;
  margin-bottom: 20px;
  display: block;
}
.news-article__link {
  font-size: 11px;
  line-height: 16px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.3);
}
.news-article__signature {
  margin-top: 26px;
}
@media (max-width: 575px) {
  .news-article__signature {
    flex-direction: column;
  }
}
.news-article__author {
  font-family: "VESTISANSLIGHT_1";
  font-size: 11px;
  line-height: 16px;
  color: #1B1B1B;
}
@media (max-width: 575px) {
  .news-article__author {
    margin-bottom: 5px;
  }
}
.news-article__link {
  transition: color 0.2s linear;
}
@media (max-width: 575px) {
  .news-article__link {
    margin-top: 6px;
  }
}
.news-article__socials span {
  font-size: 11px;
  line-height: 16px;
  color: #1B1B1B;
  margin-right: 12px;
}
.news-article__socials .socials__item {
  transition: opacity 0.2s linear;
}
.news-article__socials .socials__item:hover {
  opacity: 0.7;
}
.news-article .socials__list {
  gap: 16px;
}

.news-article-slider {
  margin-bottom: 16px;
}

.news-article-slide__img {
  height: 430px;
  margin-bottom: 4px;
}
.news-article-slide__img a {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .news-article-slide__img {
    height: 240px;
  }
}
.news-article-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .news-article-slide__content {
    flex-direction: column;
    gap: 4px;
  }
}
.news-article-slide__content span {
  font-family: "VESTISANSLIGHT_1";
  font-size: 11px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.5);
}
.news-article-slide__content a {
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.2s linear;
}
.news-article-slide__content a:hover {
  color: rgb(0, 0, 0);
}

.news-article-thumb-slider {
  margin-bottom: 24px;
}

.news-article-thumb-slide {
  border: 3px solid rgba(255, 255, 255, 0);
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.2s linear;
}
.news-article-thumb-slide__img {
  height: 120px;
}
@media (max-width: 767px) {
  .news-article-thumb-slide__img {
    height: 80px;
  }
}
@media (max-width: 575px) {
  .news-article-thumb-slide__img {
    height: 60px;
  }
}
.news-article-thumb-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-article-thumb-slide:hover {
  opacity: 0.9;
}
.news-article-thumb-slide.swiper-slide-thumb-active {
  border: 3px solid #F01E28;
}
.news-article-thumb-slide.swiper-slide-thumb-active:hover {
  opacity: 1;
}

.news-thumb__arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  z-index: 1;
  transition: opacity 0.2s linear, width 0.2s linear;
}
.news-thumb__arrow.swiper-button-disabled {
  opacity: 0.3;
}
.news-thumb__arrow.swiper-button-disabled:hover {
  width: 60px;
}
.news-thumb__arrow:hover {
  width: 80px;
}

.news-thumb__arrow-prev {
  left: 0;
}
.news-thumb__arrow-prev::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 0px;
  top: 2px;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.news-thumb__arrow-prev img {
  position: relative;
  left: 20px;
  z-index: 1;
}
.news-thumb__arrow-prev.swiper-button-disabled::after {
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.news-thumb__arrow-next {
  right: 0;
}
.news-thumb__arrow-next::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 4px;
  top: 2px;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.news-thumb__arrow-next img {
  margin-left: auto;
  position: relative;
  right: 20px;
  z-index: 1;
}
.news-thumb__arrow-next.swiper-button-disabled::after {
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.news-article__text p:not(:last-child) {
  margin-bottom: 15px;
}
.news-article__text>blockquote{
  padding-left: 55px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}
.news-article__text>blockquote::before{
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 35px;
  left: 0;
  top:0;
  background-color: #0064ffc4;
}
.previous-news {
  background: #F2F7FF;
  padding: 24px;
}
@media (max-width: 767px) {
  .previous-news {
    padding: 15px;
  }
}
.previous-news__item {
  padding-right: 20px;
}
@media (max-width: 767px) {
  .previous-news__item {
    flex-direction: column;
    padding-right: 0;
  }
}
.previous-news__item-text {
  height: 108px;
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #000000;
}
@media (max-width: 767px) {
  .previous-news__item-text {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.previous-news__item-img {
  width: 263px;
  min-width: 263px;
  height: 185px;
  transition: opacity 0.2s linear;
  position: relative;
}
@media (max-width: 767px) {
  .previous-news__item-img {
    width: 100%;
  }
}
.previous-news__item-img:hover {
  opacity: 0.85;
}
.previous-news__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.previous-news__item-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.previous-news__item-content {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .previous-news__item-content {
    padding-left: 0;
  }
}
.previous-news__title {
  margin-bottom: 8px;
  transition: opacity 0.2s linear;
}
@media (max-width: 991px) {
  .previous-news__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.previous-news__title:hover {
  opacity: 0.85;
}

.tv {
  padding-top: 0;
}
.tv__category {
  padding-top: 30px;
  margin-bottom: 30px;
}
.tv__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
@media (max-width: 575px) {
  .tv__list {
    gap: 15px;
  }
}
.tv__item {
  grid-column: 4 span;
  transition: box-shadow 0.2s linear;
}
@media (max-width: 767px) {
  .tv__item {
    grid-column: 6 span;
  }
}
@media (max-width: 575px) {
  .tv__item {
    grid-column: 12 span;
  }
}
.tv__item:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.tv__item:hover .tv__item-content {
  border-color: #0064FF;
}
.tv__item:hover .tv__item-img {
  border: 1px solid #0064FF;
  border-bottom: none;
}
.tv__item-content {
  padding: 20px;
  border-left: 1px solid rgba(0, 100, 255, 0.2);
  border-right: 1px solid rgba(0, 100, 255, 0.2);
  border-bottom: 1px solid rgba(0, 100, 255, 0.2);
}
.tv__item-img {
  height: 160px;
  position: relative;
  transition: opacity 0.2s linear;
}
.tv__item-img:hover {
  opacity: 0.75;
}
.tv__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tv__item-img a {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.tv__item-title {
  transition: opacity 0.2s linear;
  margin-bottom: 12px;
}
.tv__item-title:hover {
  opacity: 0.75;
}
.tv__item-text {
  font-size: 11px;
  line-height: 16px;
  color: #757575;
  font-family: "VESTISANSREGULAR_0";
  margin-bottom: 12px;
  height: 84px;
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (max-width: 575px) {
  .tv__item-text {
    height: auto;
  }
}

.tv-article {
  padding-bottom: 45px;
  padding-top: 0;
}
.tv-article__title {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 32px;
}
@media (max-width: 991px) {
  .tv-article__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
.tv-article__image {
  height: 375px;
}
@media (max-width: 767px) {
  .tv-article__image {
    height: 245px;
  }
}
.tv-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tv-article__text {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .tv-article__text {
    margin-top: 15px;
  }
}
.tv-article__text p:not(:last-child) {
  margin-bottom: 15px;
}
.tv-article h3 {
  color: #0064FF;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .tv-article h3 {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 15px;
  }
}

.tv-card {
  margin-bottom: 30px;
}
.tv-card__img {
  position: relative;
  height: 160px;
  margin-bottom: 15px;
}
.tv-card__img img {
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tv-card__title {
  cursor: pointer;
  margin-bottom: 10px;
  height: 57px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: color 0.2s linear;
}
@media (max-width: 991px) {
  .tv-card__title {
    height: auto;
  }
}
.tv-card__title:hover {
  color: #0064FF;
}
.tv-card__btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.tv-card__btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  transition: background 0.2s linear;
  background: url("../img/tv/arrow-def.svg") no-repeat center center/contain;
}
.tv-card__btn::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.tv-card__btn:hover::before {
  background: url("../img/tv/arrow-act.svg") no-repeat center center/contain;
}
.tv-card__btn:active:after {
  opacity: 1;
}

.team {
  background-color: #F2F7FF;
  padding: 45px 0;
}
.team-slider {
  margin-bottom: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.team-slide {
  background: #FFFFFF;
  border: 1px solid rgba(0, 100, 255, 0.2);
  transition: box-shadow 0.2s linear;
}
.team-slide:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.team-slide__title {
  margin-bottom: 4px;
}
.team-slide__content {
  padding: 20px;
  height: 134px;
}
@media (max-width: 575px) {
  .team-slide__content {
    padding: 10px;
  }
}
.team-slide__img {
  height: 320px;
  position: relative;
  transition: opacity 0.2s linear;
}
@media (max-width: 575px) {
  .team-slide__img {
    height: auto;
  }
}
.team-slide__img:hover {
  opacity: 0.85;
}
.team-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-slide__img a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.team-slide__descr {
  font-size: 11px;
  line-height: 16px;
  color: #757575;
  font-family: "VESTISANSREGULAR_0";
}
.team h3 {
  color: #0064FF;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .team-row {
    gap: 25px 0;
  }
}

.radio {
  padding-bottom: 0;
  padding-top: 0;
}
.radio-content {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F2F7FF;
}
.radio-content h3 {
  margin-bottom: 30px;
  color: #0064FF;
}
@media (max-width: 991px) {
  .radio-content h3 {
    margin-bottom: 15px;
  }
}
.radio-item {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 100, 255, 0.2);
  transition: box-shadow 0.2s linear, border 0.2s linear;
  margin-bottom: 30px;
}
.radio-item:hover {
  border: 1px solid #0064FF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.radio-item__img {
  position: relative;
  height: 160px;
  transition: opacity 0.2s linear;
}
.radio-item__img:hover {
  opacity: 0.85;
}
.radio-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.radio-item__img a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.radio-item__content {
  padding: 20px;
}
.radio-item__title {
  margin-bottom: 12px;
  transition: color 0.2s linear;
  height: 44px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.radio-item__title:hover {
  color: #0064FF;
}
.radio-item__text {
  font-family: "VESTISANSREGULAR_0";
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #757575;
  height: 82px;
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.radio-item__btn-wrapper span {
  color: #0064FF;
  font-family: "VESTISANSREGULAR_0";
  font-size: 11px;
  line-height: 16px;
}

.radio-article {
  padding-top: 0;
}
.radio-article__title {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 32px;
}
@media (max-width: 991px) {
  .radio-article__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .radio-article__content {
    margin-top: 15px;
  }
}
.radio-article__image {
  height: 375px;
}
@media (max-width: 767px) {
  .radio-article__image {
    height: 245px;
  }
}
.radio-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.radio-article__text {
  margin-bottom: 15px;
}
.radio-article__text p:not(:last-child) {
  margin-bottom: 15px;
}
.radio-article h3 {
  color: #0064FF;
  margin-bottom: 20px;
}

.about {
  padding-top: 0;
}
.about__image {
  position: relative;
}
.about__image p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: "VESTISANSREGULAR_0";
  font-size: 28px;
  line-height: 32px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .about__image p {
    font-size: 20px;
    line-height: 24px;
  }
}
.about__content {
  margin-top: 30px;
}
.about__content p:not(:last-child) {
  margin-bottom: 15px;
}
.about__content a {
  display: inline-block;
  color: rgb(0, 100, 255);
  transition: color 0.2s linear;
}
.about__content a:hover {
  color: #1b1b1b;
}

.about-category {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .about-category {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about-category .dropdown {
    width: 100%;
  }
}
.about-category__name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 45px;
  border: 1px solid rgba(0, 100, 255, 0.2);
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  color: #000;
  font-family: "VESTISANSMEDIUM_0";
  width: 330px;
}
@media (max-width: 575px) {
  .about-category__name {
    width: 100%;
  }
}
.about-category__name:hover {
  color: #000;
}
@media (max-width: 991px) {
  .about-category .dropdown-item:active {
    background-color: transparent;
  }
  .about-category .dropdown-item:hover {
    background-color: transparent;
  }
}
.about-category .dropdown-menu {
  width: 100%;
  z-index: 2;
}
.about-category .dropdown-menu a {
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  color: #757575;
  font-family: "VESTISANSMEDIUM_0";
}
.about-category .dropdown-menu a:hover {
  color: #0064FF;
}
.about-category .dropdown-menu a:not(:last-child) {
  margin-bottom: 6px;
}
.about-category .dropdown-toggle::after {
  border: none;
  width: 16px;
  height: 16px;
  background: url("../img/about/arrow-down-about.svg") no-repeat center center/16px;
}

.history {
  padding-top: 0;
}
.history__title {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 30px;
}
.history-card__arrow {
  background: url("../img/about/minus.svg") no-repeat center center/contain;
  width: 20px;
  height: 20px;
  transition: background 0.2s linear;
  z-index: 1;
}
.history-card {
  margin-bottom: 10px;
  border: none;
  background-color: #F2F7FF;
}
.history-card:last-child {
  position: relative;
}
.history-card:last-child:after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 44px);
  left: 15px;
  top: 35px;
  background-color: #F2F7FF;
  z-index: 2;
}
.history-card__head {
  display: flex;
  justify-content: space-between;
}
.history-card__year {
  font-family: "VESTISANSMEDIUM_0";
  font-size: 16px;
  line-height: 16px;
  color: #0064FF;
}
.history-card__year::before {
  content: "";
  z-index: 1;
  margin-right: 12px;
  width: 16px;
  height: 16px;
  background-color: #0064FF;
  border-radius: 50%;
}
.history .accordion {
  position: relative;
}
.history .accordion::after {
  content: "";
  height: calc(100% - 40px);
  width: 2px;
  background: rgba(0, 100, 255, 0.2);
  position: absolute;
  left: 15px;
  top: 20px;
  z-index: 0;
}
.history .collapsing {
  transition: none !important;
  top: 0px;
}
.history .card-header {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding-left: 8px;
  padding-top: 17px;
  padding-bottom: 17px;
}
.history .card-body {
  margin-top: -54px;
  padding-bottom: 10px;
  padding-left: 105px;
  padding-right: 40px;
}
@media (max-width: 575px) {
  .history .card-body {
    padding-left: 84px;
  }
}
.history .collapse.show .card-body {
  position: relative;
  margin-top: -54px;
}
@media (max-width: 575px) {
  .history .collapse.show .card-body {
    margin-top: -46px;
  }
}

.card-header.collapsed .history-card__arrow {
  background: url("../img/about/plus.svg") no-repeat center center/contain;
}
.card-header.collapsed .history-card__year {
  color: #1B1B1B;
}
.card-header.collapsed .history-card__year::before {
  background-color: #1B1B1B;
}

.news-company {
  padding-top: 0;
}
.news-company__title {
  font-size: 28px;
  line-height: 32px;
}
.news-company .tv-card__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
}
@media (max-width: 575px) {
  .news-company .tv-card__list {
    gap: 15px;
    margin-bottom: 20px;
  }
}
.news-company .tv-card {
  grid-column: 4 span;
}
@media (max-width: 767px) {
  .news-company .tv-card {
    grid-column: 6 span;
  }
}
@media (max-width: 575px) {
  .news-company .tv-card {
    grid-column: 12 span;
    margin-bottom: 15px;
  }
}
.news-company .tv-card__img {
  position: relative;
  transition: opacity 0.2s linear;
}
.news-company .tv-card__img:hover {
  opacity: 0.75;
}
.news-company .tv-card__img a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.news-company .news-article__date {
  margin-bottom: 0;
}
.news-company .tv-card__title {
  transition: color 0.2s linear;
}
.news-company .tv-card__title:hover {
  color: #0064FF;
}

.company-article {
  padding-top: 0;
}
.company-article .previous-news__item-content {
  padding-left: 0;
}

.team-article {
  padding-top: 0;
}
.team-article__title {
  font-size: 28px;
  line-height: 32px;
}
.team-article .card-header {
  border: none;
}
.team-article .card-body {
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 0;
  padding-top: 20px;
}
@media (max-width: 575px) {
  .team-article .card-body {
    gap: 10px;
  }
}
.team-article .team-slide {
  grid-column: 4 span;
}
@media (max-width: 767px) {
  .team-article .team-slide {
    grid-column: 6 span;
  }
}
.team-article .history-card:last-child:after {
  display: none;
}
.team-article .card-header {
  font-family: "VESTISANSREGULAR_0";
  font-size: 18px;
  line-height: 22px;
  color: #0064FF;
}
.team-article .card-header.collapsed {
  color: #1B1B1B;
}

.person {
  padding-top: 0;
}
.person__title {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .person__title {
    margin-bottom: 8px;
  }
}
.person__image {
  width: 360px;
  min-width: 360px;
  height: 400px;
}
@media (max-width: 450px) {
  .person__image {
    width: 200px;
    height: 222px;
    min-width: 200px;
  }
}
.person__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person__job {
  margin-bottom: 30px;
  font-family: "VESTISANSREGULAR_0";
  font-size: 15px;
  line-height: 20px;
  color: #757575;
}
@media (max-width: 991px) {
  .person__job {
    margin-bottom: 20px;
  }
}
.person__content {
  padding-right: 50px;
}
@media (max-width: 575px) {
  .person__content {
    padding-right: 0;
  }
}
.person__content h3 {
  color: #0064FF;
  margin-bottom: 16px;
}
.person__content p {
  margin-bottom: 30px;
}

.programs {
  background-color: #F2F7FF;
}
.programs__title {
  color: #0064FF;
}
.programs .tv__item {
  margin-bottom: 30px;
}

.contacts {
  padding-top: 0;
}
.contacts__title {
  font-size: 28px;
  line-height: 32px;
}
.contacts__name {
  font-family: "VESTISANSREGULAR_0";
  font-size: 15px;
  line-height: 22px;
  color: #1B1B1B;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .contacts__name {
    margin-bottom: 15px;
  }
}
.contacts__content-title {
  color: #0064FF;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .contacts__content-title {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 12px;
  }
}
.contacts__content-text {
  color: #000000;
  margin-bottom: 8px;
}
.contacts__content a {
  display: inline-block;
  color: #0064FF;
  transition: color 0.2s linear;
}
.contacts__content a:hover {
  color: #1b1b1b;
}

.callback {
  background-color: #F2F7FF;
}
.callback__title {
  color: #0064FF;
}
.callback-form input {
  height: 40px;
}
.callback-form input::placeholder {
  font-size: 13px;
  line-height: 13px;
  color: #757575;
}
.callback-form textarea {
  height: 90px !important;
}
.callback-form textarea::placeholder {
  font-size: 13px;
  line-height: 13px;
  color: #757575;
}

.advertising {
  padding-top: 0;
}
.advertising__title {
  font-size: 28px;
  line-height: 32px;
}
.advertising__content-name {
  color: #0064FF;
  font-family: "VESTISANSREGULAR_0";
  font-size: 15px;
  line-height: 22px;
  color: #0064FF;
  margin-bottom: 14px;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .advertising__content-name {
    font-size: 14px;
    line-height: 17px;
    margin-top: 20px;
  }
}
.advertising__content h3 {
  color: #0064FF;
}
@media (max-width: 991px) {
  .advertising__content h3 {
    font-size: 15px;
    line-height: 18px;
  }
}
.advertising__content p {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .advertising__content p {
    font-size: 14px;
    line-height: 22px;
  }
}
.advertising__content a {
  color: #0064FF;
  display: inline-block;
  transition: color 0.2s linear;
}
.advertising__content a:hover {
  color: #1b1b1b;
}

.information {
  padding-top: 0;
}
.information__title {
  font-size: 28px;
  line-height: 32px;
}
.information__content {
  padding-right: 50px;
}
.information__content h3 {
  margin-bottom: 10px;
}
.information__content p {
  margin-bottom: 15px;
}
.information__content ul {
  padding-top: 10px;
  padding-left: 20px;
  margin-bottom: 15px;
}
.information__content ul li {
  list-style-type: disc;
}

.archive {
  padding-top: 0;
}

.search-form .form-outline {
  width: 100%;
  height: 40px;
}
.search-form input {
  font-size: 13px;
  line-height: 13px;
  color: #757575;
  height: 40px;
  border-radius: 0;
  border: 2px solid #0064FF;
}
.search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.air-datepicker {
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid rgba(0, 100, 255, 0.2) !important;
}

.timetable__calendar-hide {
  display: none;
}

.air-datepicker-body--day-name {
  color: #1B1B1B;
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: #1B1B1B;
  font-family: "VESTISANSMEDIUM_0";
}
.air-datepicker-body--day-name.-weekend- {
  color: #F01E28;
}

.air-datepicker-nav {
  border-bottom: none;
}

.air-datepicker-nav--title {
  font-size: 15px;
  line-height: 100%;
  color: #1B1B1B;
  font-family: "VESTISANSREGULAR_0";
}
.air-datepicker-nav--title i {
  color: #1B1B1B;
  font-family: "VESTISANSREGULAR_0";
}

.air-datepicker-cell.-day- {
  font-family: "VESTISANSREGULAR_0";
  font-size: 14px;
  line-height: 120%;
  color: #1b1b1b;
}

.air-datepicker-cell.-day-.-selected- {
  background: #0064FF;
  border-radius: 0;
  color: #fff;
}

.air-datepicker-cell.-day-.-current- {
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  color: #0064FF;
}

.air-datepicker-cell.-day-.-other-month- {
  color: #6C7470;
}

.air-datepicker-cell.-day-.-current-.-selected- {
  color: #fff;
}

.footer {
  color: #fff;
  font-family: "VESTISANSREGULAR_0";
}
.footer__title {
  color: #fff;
  margin-bottom: 20px;
}
.footer__logo {
  margin-bottom: 25px;
}
.footer__top {
  background-color: #0064FF;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (max-width: 575px) {
  .footer__top {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.footer__bottom {
  background-color: #1B1B1B;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .footer__bottom {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.footer__bottom-right {
  height: 100%;
}
.footer .socials {
  margin-bottom: 25px;
}
.footer .socials__list li {
  transition: opacity 0.2s linear;
}
.footer .socials__list li:not(:last-child) {
  margin-right: 16px;
}
.footer .socials__list li:hover {
  opacity: 0.7;
}
.footer__nav-list li:not(:last-child) {
  margin-bottom: 12px;
}
.footer__nav-list li a {
  font-size: 14px;
  line-height: 20px;
  position: relative;
  display: inline-block;
}
@media (max-width: 575px) {
  .footer__nav-list li a {
    font-size: 13px;
    line-height: 18px;
  }
}
.footer__nav-list li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: width 0.2s linear;
  background-color: #fff;
}
.footer__nav-list li a:hover:after {
  width: 100%;
}

.footer__item {
  margin-bottom: 20px;
}
.footer__item-name {
  font-size: 11px;
  line-height: 16px;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 4px;
}
.footer__item-text {
  font-size: 13px;
  line-height: 18px;
}
.footer__item-text a {
  font-size: 14px;
  line-height: 20px;
  position: relative;
  display: inline-block;
}
.footer__item-text a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: width 0.2s linear;
  background-color: #fff;
}
.footer__item-text a:hover:after {
  width: 100%;
}

.politics {
  max-width: 250px;
  font-family: "VESTISANSMEDIUM_0";
  font-size: 13px;
  line-height: 20px;
  transition: opacity 0.2s linear;
}
.politics:hover {
  opacity: 0.7;
}

.develop {
  transition: opacity 0.2s linear;
}
.develop::before {
  content: "";
  width: 20px;
  height: 16px;
  background: url("../img/footer/develop.svg") no-repeat center center/contain;
  margin-right: 9px;
}
.develop:hover {
  opacity: 0.7;
}

.footer__text p {
  font-size: 11px;
  line-height: 18px;
}
.footer__text p:not(:last-child) {
  margin-bottom: 20px;
}

.translation {
  position: fixed;
  right: 0;
  z-index: 2;
  top: 114px;
  display: flex;
  transform: translateX(240px);
  transition: height 0.2s linear;
  height: 53px;
}
.translation__btn {
  height: fit-content;
  transition: transform 0.2s linear, opacity 0.2s linear;
  position: relative;
  z-index: 5;
}
.translation__btn:hover {
  opacity: 0.85;
}
.translation__list {
  background: #0064FF;
  border-radius: 0px 0px 0px 0px;
  width: 240px;
  border-left: 1px solid rgba(242, 247, 255, 0.15);
  border-bottom: 1px solid rgba(242, 247, 255, 0.15);
  border-top: 1px solid rgba(242, 247, 255, 0.15);
}
.translation__item {
  padding-left: 17px;
  padding-bottom: 19px;
  padding-right: 17px;
  padding-top: 17px;
  border-bottom: 1px solid rgba(242, 247, 255, 0.15);
}
.translation__item-img {
  margin-bottom: 8px;
}
.translation__item-descr {
  color: #fff;
}
.translation.active {
  transition: transform 0.2s linear;
  transform: translateX(0);
  height: fit-content;
  overflow: visible;
}
.translation button img {
  width: 64px;
}

.ml-1 {
  margin-left: 4px;
}

.vacancies-article {
  padding-top: 0;
}
.vacancies-article__title {
  font-size: 28px;
  line-height: 32px;
}
.vacancies-article .card-header {
  border: none;
}
.vacancies-article .card-body {
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 0;
  padding-top: 20px;
}
@media (max-width: 575px) {
  .vacancies-article .card-body {
    gap: 10px;
  }
}
.vacancies-article .vacancies-slide {
  grid-column: 4 span;
}
@media (max-width: 767px) {
  .vacancies-article .vacancies-slide {
    grid-column: 6 span;
  }
}
.vacancies-article .history-card:last-child:after {
  display: none;
}
.vacancies-article .card-header {
  font-family: "VESTISANSREGULAR_0";
  font-size: 18px;
  line-height: 22px;
  color: #0064FF;
}
.vacancies-article .card-header.collapsed {
  color: #1B1B1B;
}

.vacancies-slide__btn {
  width: 105px;
  margin-top: 4px;
}

.vacancies-slide {
  background: #FFFFFF;
  border: 1px solid rgba(0, 100, 255, 0.2);
  transition: box-shadow 0.2s linear;
  min-width: 100%;
}
.vacancies-slide:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}
.vacancies-slide__title {
  margin-bottom: 4px;
}
.vacancies-slide__content {
  padding: 20px !important; 
}
@media (max-width: 575px) {
  .vacancies-slide__content {
    padding: 10px;
  }
}
.vacancies-slide__img {
  height: 160px;
  position: relative;
  transition: opacity 0.2s linear;
}
@media (max-width: 575px) {
  .vacancies-slide__img {
    height: auto;
  }
}
.vacancies-slide__img:hover {
  opacity: 0.85;
}
.vacancies-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.vacancies-slide__img a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vacancies-slide__descr {
  font-size: 11px;
  line-height: 16px;
  color: #757575;
  font-family: "VESTISANSREGULAR_0";
}
.vacancies-slide__salary {
  margin: 10px 0;
  font-size: 15px;
  line-height: 16px;
  color: #444;
  font-family: "VESTISANSREGULAR_0";
}

.vacancy {
  padding-top: 0;
}
.vacancy__title {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 12px;
}
.vacancy__image-default {
  max-height: 160px;
  max-width: 272px;
}
@media (max-width: 991px) {
  .vacancy__title {
    margin-bottom: 8px;
  }
}
.vacancy__image {
  min-height: 160px;
  min-width: 320px;
}
@media (max-width: 450px) {
  .vacancy__image {
    height: auto;
  }
}
.vacancy__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
.vacancy__salary {
  margin: 10px 0;
  font-family: "VESTISANSREGULAR_0";
  font-size: 15px;
  line-height: 20px;
  color: #444;
}

.vacancy__content {
  padding-right: 50px;
}
@media (max-width: 575px) {
  .vacancy__content {
    padding-right: 0;
  }
}
.vacancy__content h3 {
  color: #0064FF;
  margin-bottom: 16px;
}
.vacancy__content p {
  margin-bottom: 30px;
}
