/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 0.3125rem #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 0.625rem;
}

.flickity-prev-next-button.next { right: 0.625rem;
}

/* right to left */

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 0.625rem;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 0.625rem;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -1.5625rem;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.5rem;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
.main h1, .main .h1, .main h2, .main .h2, .main h3, .main .h3, .main h4, .main .h4, .main h5, .main .h5, .main h6, .main .h6 {
  color: black;
}

@media (min-width: 768px) {
  .main__content {
    width: 73.58%;
  }

  .main__sidebar {
    width: 22.64%;
  }
}

.fade-out, .video-popup {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 200ms, opacity 200ms linear;
}

.fade-in, .video-popup.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 200ms linear;
}

.grid-section .grid__header {
  border-bottom: 0.0625rem solid #DDE1EB;
}

.grid-section .grid__card {
  display: block;
}

.grid-section .grid__card:hover .grid__image svg path {
  fill: #FD9142;
}

.grid-section .grid__image {
  width: 100%;
  padding-top: 63.63%;
  overflow: hidden;
  border-radius: 0.625rem;
  position: relative;
}

.grid-section .grid__image svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
  width: 1.875rem;
  height: 1.875rem;
}

.grid-section .grid__image svg path {
  fill: white;
  transition: all 0.5s cubic-bezier(0.48, 0, 0.12, 1);
}

.grid-section .grid__sub-line {
  font-size: 0.75rem;
  line-height: 1;
}

.grid-section .grid__card-title {
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 400;
}

.grid-section .grid__container {
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .grid-section .grid__image svg {
    width: 3rem;
    height: 3rem;
  }

  .grid-section--videos .grid__container {
    margin-bottom: 0;
  }
}

.sidebar__block {
  border-bottom: 0.0625rem solid #DDE1EB;
}

.sidebar__block-icon img {
  max-width: 100%;
}

.sidebar__block-title {
  font-size: 1rem;
  line-height: 1.125rem;
}

.sidebar__block-content {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.schedules__filters select {
  height: 2.5rem;
  border: 0.0625rem solid #DDE1EB;
  border-radius: 1.25rem;
  padding: 0 1.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

.schedules__filter {
  position: relative;
}

.schedules__filter:after {
  content: " ";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: center no-repeat url("../images/static/arrow-down-orange.svg");
}

.schedules__filter:first-child:after {
  right: 2rem;
}

.schedules__date-item {
  height: 2.5rem;
  border-radius: 1.25rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.schedules__date-item svg {
  width: 0.9375rem;
}

.schedules__date-item:hover, .schedules__date-item--active {
  background: #F2F9FF;
}

.schedules__view {
  position: relative;
  width: 100%;
}

.schedules__key {
  position: absolute;
  width: 4.6875rem;
  left: -6.875rem;
  pointer-events: none;
}

.schedules__key-item {
  height: 2.5rem;
  font-size: 0.75rem;
  transform: translateY(-0.625rem);
}

.schedules__rows {
  width: 100%;
  position: relative;
  border-top: 0.0625rem solid #DDE1EB;
}

.schedules__row {
  border-bottom: 0.0625rem solid #DDE1EB;
  height: 2.5rem;
}

.schedules__row:last-child {
  border-bottom: 0;
}

.schedules__event {
  background: #FD9142;
  position: absolute;
  width: 40%;
  left: 0%;
  color: white;
  padding: 0.625rem;
}

.schedules__event h3 {
  color: white;
  font-size: 0.75rem;
  line-height: 1.2;
}

.schedules__event p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.625rem;
}

.schedules__event p svg {
  margin-right: 0.625rem;
}

.schedules__filter:after {
  pointer-events: none;
}

.videos__filter {
  height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid #DDE1EB;
  width: 100%;
  padding: 0 1.25rem;
}

.videos__nav-item {
  min-height: 2.5rem;
  font-size: 0.75rem;
}

.videos__nav-item a {
  transition: all 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  border-radius: 1.25rem;
  padding: 0 1.25rem;
}

.videos__nav-item a:hover, .videos__nav-active {
  background: #F2F9FF;
}

.videos-pagination-result {
  display: block;
  width: 100%;
}

.videos-pagination-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.pagination span,
.pagination a {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  transition: all 0.5s cubic-bezier(0.48, 0, 0.12, 1);
}

.pagination span svg path,
.pagination a svg path {
  transition: all 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  fill: #C4DCF1;
}

.pagination span.pagination__active, .pagination span:hover,
.pagination a.pagination__active,
.pagination a:hover {
  background: #2C85D0;
  color: #F2F9FF;
}

.pagination__active, .pagination__nav {
  background: #0A6ABB;
}

.cta {
  border-bottom: 0.0625rem solid #DDE1EB;
}

.cta__sub-title {
  text-transform: uppercase;
  font-weight: 700;
  color: #BEC1CA;
  font-size: 0.625rem;
  line-height: 0.75rem;
}

.cta__text {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

.cta__image img {
  width: 100%;
  border-radius: 0.625rem;
}

.contacts__sidebar-block {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

.contacts__sidebar-block address {
  font-style: normal;
}

.contacts__sidebar-block li {
  display: flex;
}

.contacts__sidebar-block li span {
  width: 30%;
}

.contacts__sidebar-block--separator {
  border-bottom: 0.0625rem solid #DDE1EB;
}

.contacts__filter input {
  height: 2.5rem;
  width: 100%;
  border: 0.0625rem solid #DDE1EB;
  border-radius: 1.25rem;
  padding: 0 1.25rem;
}

.contacts__map {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 28.125rem;
}

.contacts__map .map {
  height: 28.125rem;
  width: 100%;
}

.newsletter {
  position: relative;
}

@media (min-width: 768px) {
  .newsletter {
    border-radius: 3.125rem;
  }
}

.newsletter__form {
  height: 3.125rem;
  background: white;
  border-radius: 1.5625rem;
  position: relative;
  border: 0.09375rem solid #DDE1EB;
  overflow: hidden;
}

.newsletter__label {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  height: 2.9375rem;
  background: transparent;
  padding: 0 1.25rem;
  width: 100%;
  width: calc(100% - 6.5625rem);
}

.newsletter__input::-moz-placeholder {
  color: black;
  opacity: 0.75;
}

.newsletter__input::placeholder {
  color: black;
  opacity: 0.75;
}

.newsletter__submit {
  position: absolute;
  width: 6.25rem;
  height: 2.5rem;
  right: 0.1875rem;
  top: 0.1875rem;
  color: white;
  justify-content: center;
  border-radius: 1.25rem;
  padding: 0;
}

.newsletter__submit:hover {
  color: black;
}

.newsletter .response {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0.3125rem 0.625rem;
  text-align: center;
}

.newsletter .response p {
  margin-bottom: 0;
  font-size: 0.75rem;
  line-height: 1.2;
}

.newsletter .response p br {
  display: none;
}

@media (min-width: 768px) {
  .newsletter .response {
    width: 50%;
  }
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  padding: 6.25rem 1.875rem 3.125rem;
}

.video-popup .wrapper {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.video-popup .wrapper:before {
  content: "";
  width: 100%;
  display: block;
  padding-top: 56.25%;
}

.video-popup .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-popup .loading h6 {
  color: #FFFFFF;
}

.video-popup .close-button {
  position: absolute;
  top: -2.8125rem;
  right: 0;
  font-size: 2.8125rem;
  line-height: 1;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86) 0ms;
}

.video-popup .close-button:hover {
  color: #FFA32F;
}

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