.cardLst__el .card__wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  text-decoration: none;
  height: calc(100% - 40px);
}

.cardLst__el .card__wrapper .card__img {
  height: 238px;
}

.cardLst__el .card__wrapper .card__img img {
  height: 238px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.cardLst__el .card__wrapper .card__text {
  padding: 23px 8px 4px;
  color: #000;
}

.cardLst__el .card__wrapper .card__text time {
  display: block;
  margin-bottom: 15px;
}

.cardLst__el .card__wrapper .card__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cardLst__el:hover .card__text h5 {
  transition: 0.3s all;
  color: #3695D8;
}

@media (max-width: 768px) {
  .cardLst__el .card__wrapper {
    margin-bottom: 20px;
    height: calc(100% - 20px);
  }
  .cardLst__el .card__wrapper .card__img {
    height: 161px;
  }
  .cardLst__el .card__wrapper .card__img img {
    height: 161px;
  }
  .cardLst__el .card__wrapper .card__text {
    padding: 12px 0 4px;
  }
  .cardLst__el .card__wrapper .card__text time {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 6px;
  }
  .cardLst__el .card__text h5.title-5 {
    /*font-size: 15px;*/
    line-height: 24px;
  }
}
@media (max-width: 680px) {
  .cardLst__el .card__wrapper .card__img {
    height: 200px;
  }
  .cardLst__el .card__wrapper .card__img img {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .cardLst__el .card__wrapper .card__img {
    height: 170px;
  }
  .cardLst__el .card__wrapper .card__img img {
    height: 170px;
  }
}
@media (max-width: 576px) {
  .cardLst__el .card__wrapper .card__bottom svg {
    width: 137px;
  }
}
@media (max-width: 530px) {
  .cardLst__el .card__wrapper .card__img {
    height: 150px;
  }
  .cardLst__el .card__wrapper .card__img img {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .cardLst__el .card__wrapper .card__img {
    height: 250px;
  }
  .cardLst__el .card__wrapper .card__img img {
    height: 250px;
  }
}
@media (max-width: 411px) {
  .cardLst__el .card__wrapper .card__img {
    height: 220px;
  }
  .cardLst__el .card__wrapper .card__img img {
    height: 220px;
  }
}
@media (max-width: 389px) {
  .cardLst__el .card__wrapper .card__img {
    height: 200px;
  }
  .cardLst__el .card__wrapper .card__img img {
    height: 200px;
  }
}
.latest {
  padding-top: 40px;
}

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

.latestSwiper .swiper-wrapper {
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.latestSwiper .slider_control_wrap {
  bottom: 80px;
  position: relative;
}

.latestSwiper .slider_control {
  position: absolute;
  left: calc(50% - 47px);
  top: 0;
  width: 100%;
  display: flex;
  height: 42px;
}

.latestSwiper .slider_control_wrap .swiper-button-prev {
  width: 42px;
  height: 42px;
  left: 0;
}

.latestSwiper .slider_control_wrap .swiper-button-prev svg,
.latestSwiper .slider_control_wrap .swiper-button-next svg {
  width: 42px;
}

.latestSwiper .slider_control_wrap .swiper-button-prev:hover svg path,
.latestSwiper .slider_control_wrap .swiper-button-next:hover svg path {
  fill: #FFD72A;
  transition: 0.3s all;
}

.latestSwiper .slider_control_wrap .swiper-button-next {
  width: 42px;
  height: 42px;
  left: 52px;
}

.latestSwiper .slider_control_wrap .swiper-button-prev::after {
  display: none;
}

.latestSwiper .slider_control_wrap .swiper-button-next::after {
  display: none;
}

@media (max-width: 992px) {
  .latest {
    padding-top: 20px;
  }
}
.carousel {
  position: relative;
  box-sizing: border-box;
}

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

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

.gallery-block {
  padding-top: 20px;
}

.gallery-block .gallery-block__wrapper {
  color: #3D3D3D;
  text-decoration: none;
}

.gallerySwiper .gallery-block__img {
  width: 100%;
  height: 616px;
  margin-bottom: 10px;
}

.gallerySwiper .gallery-block__img img {
  width: 100%;
  height: 616px;
  -o-object-fit: contain;
     object-fit: contain;
}

.gallerySwiper .gallery-block__text {
  text-align: center;
  font-family: Gilroy, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
  color: #3D3D3D;
  text-decoration: none;
}

.gallerySwiper .slider_control_wrap {
  bottom: 70px;
  position: relative;
}

.gallerySwiper .slider_control {
  position: absolute;
  left: calc(50% - 47px);
  top: 0;
  width: 100%;
  display: flex;
  height: 42px;
}

.gallerySwiper .swiper-wrapper {
  padding-bottom: 40px;
  margin-bottom: 50px;
}

.gallerySwiper .slider_control_wrap .swiper-button-prev {
  width: 42px;
  height: 42px;
  left: 0;
}

.gallerySwiper .slider_control_wrap .swiper-button-next {
  width: 42px;
  height: 42px;
  left: 52px;
}

.gallerySwiper .slider_control_wrap .swiper-button-prev svg, .gallerySwiper .slider_control_wrap .swiper-button-next svg {
  width: 42px;
}

.gallerySwiper .slider_control_wrap .swiper-button-prev:hover svg path, .gallerySwiper .slider_control_wrap .swiper-button-next:hover svg path {
  fill: #FFD72A;
  transition: 0.3s all;
}

.gallerySwiper .swiper-button-next:after, .gallerySwiper .swiper-button-prev:after {
  content: none;
}

@media (max-width: 992px) {
  .gallerySwiper .gallery-block__img {
    height: 500px;
  }
  .gallerySwiper .gallery-block__img img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .gallerySwiper .gallery-block__img {
    height: 350px;
  }
  .gallerySwiper .gallery-block__img img {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .gallerySwiper .gallery-block__img {
    height: 200px;
  }
  .gallerySwiper .gallery-block__img img {
    height: 200px;
  }
}
html, body {
  overflow-x: hidden;
}

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

.banner-top {
  /*height: 452px;*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  margin-bottom: 40px;
}

.banner-top:before {
  content: "";
  /*background: linear-gradient(90deg, #3695D8 0%, #659dc5f0 85%, #72afdba3 100%);*/
  background: linear-gradient(90deg, #3695D8 0%, rgba(161, 205, 237, 0.8980392157) 85%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner-top .banner-top__block {
  padding: 80px 0;
  position: relative;
}

.banner-top .banner-top__block svg {
  margin: 10px 0;
}

.label-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-bottom: 20px;
}

.label-row a {
  color: #181818;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  margin-right: 20px;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: solid 1px #181818;
  transition: 0.3s all;
  margin-bottom: 10px;
}

.label-row a span {
  color: #000000;
  font-size: 25px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  position: relative;
  top: 3px;
  transition: 0.3s all;
}

.label-row a:hover {
  color: #3695D8;
  border-bottom: solid 1px #3695D8;
}

.label-row a:hover span {
  color: #3695D8;
}

.btn-blue {
  margin: 0 10px 20px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #3695D8;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 6px 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: 1px solid #3695D8;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-blue:hover {
  background: #3695D8;
  color: #fff;
}

.card {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.card .card__wrapper {
  /*height: 600px;*/
  max-height: 1650px;
  margin-bottom: 12px;
}

.card__img img {
  width: 100%;
  height: 100%;
  /*height: 600px;*/
  /*object-fit: contain;*/
  max-height: 1650px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card__subtext {
  color: #3D3D3D;
  text-align: center;
  font-family: Gilroy, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
}

.page-part {
  color: #3D3D3D;
  text-align: justify;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 40px;
}

.card-grid {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -12px;
}

.card-grid__cell {
  padding: 0 12px;
  flex: 1 1 50%;
  margin-bottom: 15px;
}

.card-grid__cell .card .card__wrapper {
  height: auto;
  margin-bottom: 0;
}

.card-grid__cell .card__img {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.3125rem;
}

.card-grid__cell .card__img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: top;
}

.card-grid__cell .card__caption {
  text-align: center;
}

.cms-editor a {
  color: #3695D8;
  text-decoration: none;
}

.cms-editor a:hover {
  text-decoration: underline;
  transition: 0.3s all;
}

.cms-editor ul {
  list-style: initial;
  margin-left: 25px;
  margin-bottom: 20px;
}

.cms-editor ol {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.cms-editor strong {
  font-weight: bold;
}

.cms-editor em {
  font-style: italic;
}

.page-part p {
  margin-bottom: 20px;
}

.cms-editor h1, .cms-editor h2, .cms-editor h3, .cms-editor h4, .cms-editor h5 {
  margin-bottom: 40px;
}

.content-bottom {
  padding-top: 40px;
  color: #3695D8;
}

.single-news .latest {
  margin-bottom: 80px;
}

.single-news iframe {
  margin-bottom: 30px;
  max-width: 100%;
  min-width: 60%;
  min-height: 75vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.single-news .latest_case {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 80px 100px;
  position: relative;
}

.single-news .latest_case:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #3695D8 13%, rgba(161, 205, 237, 0.9) 78.5%, rgba(255, 255, 255, 0) 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.single-news .latest_case .title-3 {
  color: #FFFFFF;
  font-family: Gilroy;
  font-size: 35px;
  font-weight: 400;
  line-height: 40.6px;
  text-align: left;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
}

.single-news .latest_case.cases_one .cases_item a {
  color: #FFFFFF;
  font-family: Gilroy;
  font-size: 35px;
  font-weight: 400;
  line-height: 40.6px;
  text-align: left;
  margin-bottom: 0;
  text-decoration: none;
  z-index: 1;
  position: relative;
}

.single-news .latest_case.cases_one .read_more {
  display: flex;
  margin-top: 24px;
  z-index: 1;
}

.single-news .latest_case.cases_one .read_more span {
  font-family: Gilroy;
  font-size: 25px;
  font-weight: 800;
  line-height: 30.63px;
  text-align: center;
  color: #FFFFFF;
  padding-right: 30px;
  z-index: 1;
}

.latest_case.cases_many .cases_item {
  z-index: 1;
  position: relative;
}

.latest_case.cases_many .cases_item li {
  margin-bottom: 24px;
}

.latest_case.cases_many .title-3 {
  margin-bottom: 24px;
}

.latest_case.cases_many .cases_item li:last-child {
  margin-bottom: 0;
}

.latest_case.cases_many .cases_item li a {
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 400;
  line-height: 23.2px;
  text-align: left;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
}

.latest_case.cases_many .cases_item li span {
  max-width: 813px;
}

.latest_case.cases_many .cases_item li svg {
  margin-left: 10px;
  position: relative;
  top: 5px;
}

.latest_case .svg-mobile {
  display: none;
}

.youtube_streams_section {
  margin-bottom: 50px;
}

.youtube_streams_section .youtube_streams_banner {
  padding: 60px 90px;
  background-image: url("/assets/img/youtube-banner.jpg");
  background-size: cover;
  position: relative;
}

.youtube_streams_section .youtube_streams_banner:before {
  content: "";
  /* background: linear-gradient(90deg, #286fa1 0%, rgb(153 190 217 / 47%) 220%, rgba(255, 255, 255, 0.00) 220%); */
  background: linear-gradient(90deg, #3695D8 0%, rgba(161, 205, 237, 0.8980392157) 85%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.youtube_streams_section .youtube_streams_banner .title_column {
  width: 470px;
  max-width: 100%;
}

.youtube_streams_section .youtube_streams_banner .title {
  z-index: 1;
  position: relative;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 30px;
}

.youtube_streams_section .youtube_streams_banner .youtube_streams_more .more {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0%;
  padding-right: 55px;
  cursor: pointer;
}

.youtube_streams_section .youtube_streams_banner .youtube_streams_more .more:before {
  content: "";
  background-image: url("/assets/img/arrow_down_white.svg");
  position: absolute;
  right: 0;
  top: 12px;
  width: 15px;
  height: 8.5px;
}

.youtube_streams_section .youtube_streams_banner.flex {
  justify-content: space-between;
  align-items: center;
}

.youtube_streams_section .video {
  z-index: 1;
  position: relative;
  cursor: pointer;
  width: 370px;
  max-width: 100%;
}

.youtube_streams_section .video img {
  width: 100%;
  height: 100%;
}

.youtube_streams_section .video:before {
  content: "";
  position: absolute;
  background-image: url("/assets/img/play_youtube.svg");
  background-size: cover;
  width: 114px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.youtube_streams_section .more.show_video {
  visibility: hidden;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item {
  padding: 20px 90px;
}

.youtube_streams_section .youtube_streams_list {
  display: none;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item {
  display: none;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item.inRange {
  display: block;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item .flex {
  align-items: center;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item .video {
  margin-right: 30px;
  width: 270px;
  height: 202px;
  flex-shrink: 0;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item .video:before {
  width: 70px;
  height: 50px;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item {
  border-bottom: solid 1px #000;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item a {
  text-decoration: none;
  cursor: pointer;
}

.youtube_streams_section .youtube_streams_wrap .video_info .data {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: 0.3s all;
}

.youtube_streams_section .youtube_streams_wrap .video_info .title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: 0.3s all;
}

.youtube_streams_section .youtube_streams_wrap .video_info .description {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.3s all;
}

.youtube_streams_section .youtube_streams_wrap .youtube_streams_item a:hover *:not(.image_label) {
  color: #3695D8;
}

@media (max-width: 990px) {
  .youtube_streams_section .youtube_streams_banner.flex {
    flex-direction: column-reverse;
  }
  .youtube_streams_section .youtube_streams_banner {
    padding: 40px;
  }
  .youtube_streams_section .youtube_streams_banner .video {
    margin-bottom: 20px;
  }
  .youtube_streams_section .youtube_streams_banner .title {
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 30px;
  }
  .youtube_streams_section .youtube_streams_banner .title_column {
    width: 100%;
  }
  .youtube_streams_section .youtube_streams_banner .youtube_streams_more .more {
    font-size: 22px;
  }
  .youtube_streams_section .youtube_streams_wrap .youtube_streams_item {
    padding: 20px 40px;
  }
}
@media (max-width: 768px) {
  .single-news .latest_case {
    padding: 50px 30px;
  }
  .single-news .latest_case.cases_one .cases_item a {
    font-size: 25px;
  }
  .single-news .latest_case.cases_one .read_more span {
    font-size: 20px;
  }
  .latest_case.cases_one .read_more svg {
    display: none;
  }
  .latest_case.cases_one .read_more .svg-mobile {
    display: block;
    position: relative;
    top: 5px;
  }
  .youtube_streams_section .youtube_streams_wrap .youtube_streams_item {
    padding: 20px 0;
  }
  .youtube_streams_section .youtube_streams_wrap .youtube_streams_item .flex {
    flex-direction: column;
  }
  .youtube_streams_section .youtube_streams_wrap .youtube_streams_item .video {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .youtube_streams_section .youtube_streams_banner .title {
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .youtube_streams_section .youtube_streams_banner .video {
    height: auto;
    width: 100%;
  }
  .youtube_streams_section .youtube_streams_banner {
    padding: 24px;
  }
  .youtube_streams_section .youtube_streams_wrap .youtube_streams_item .video {
    width: 100%;
    height: auto;
  }
}
.cms-editor h2 {
  font-family: Gilroy, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  text-transform: none;
  margin-top: 40px;
  margin-bottom: 20px;
}

.cms-editor h3 {
  font-family: Gilroy, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 20px;
}

.cms-editor h4 {
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: none;
}

.cms-editor .ttl--blue {
  color: #3695D8;
}

.cms-editor .person__wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.cms-editor .person__wrapper .person__img {
  margin-bottom: 20px;
}

.cms-editor .person__wrapper .person__img img {
  max-width: 270px;
  max-height: 270px;
  width: 100%;
}

.cms-editor .person__wrapper .person__name {
  display: flex;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: none;
  margin-bottom: 10px;
}

.cms-editor .person__wrapper .person__position {
  margin-bottom: 5px;
  display: flex;
  text-align: left;
}

.cms-editor .person__wrapper .person__email {
  margin-bottom: 5px;
}

.cms-editor .docs-list {
  margin: 40px 0 0;
}

.cms-editor .docs-list .docs-list__el {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
}

.cms-editor .docs-list .docs-list__el img {
  margin-bottom: 30px;
}

.cms-editor .docs-list .docs-list__el .doc__name {
  text-align: center;
}

.cms-editor blockquote {
  color: #FFFFFF;
  font-family: Gilroy, sans-serif;
  font-size: 35px;
  font-style: italic;
  font-weight: 500;
  line-height: 40px;
  margin: 40px 0;
  padding: 60px 0;
  position: relative;
}

.cms-editor blockquote:before {
  content: "";
  position: absolute;
  width: 200vw;
  height: 100%;
  top: 0;
  left: -100vw;
  background: linear-gradient(90deg, #3695D8 0%, #000 99.99%, #000101 100%);
  z-index: -1;
}

.cms-editor blockquote cite {
  margin-top: 50px;
  display: block;
  font-family: Gilroy, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
  text-align: right;
  font-style: normal;
  color: #FFD72A;
}

@media (max-width: 1366px) {
  .case_banner {
    padding: 70px 0;
  }
  .case_banner h1 {
    font-size: 55px;
    font-weight: 400;
    line-height: 60.5px;
  }
  .banner-top .banner-top__block {
    padding: 70px 0;
  }
}
@media (max-width: 992px) {
  .page-part {
    margin-bottom: 20px;
  }
  .cms-editor h1, .cms-editor h2, .cms-editor h3, .cms-editor h4, .cms-editor h5 {
    margin-bottom: 10px;
    text-align: left;
  }
  .card .card__wrapper {
    /*height: 500px;*/
    max-height: 1300px;
  }
  .card__img img {
    /*height: 500px;*/
    max-height: 1300px;
  }
  .mb-40 {
    margin-bottom: 20px;
  }
  .single-news .latest {
    margin-bottom: 20px;
  }
  .single-news iframe {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .mb-40 {
    margin-bottom: 10px;
  }
  .card .card__wrapper {
    /*height: 350px;*/
    max-height: 1100px;
  }
  .card__img img {
    /*height: 350px;*/
    max-height: 1100px;
  }
  .banner-top .banner-top__block {
    padding: 40px 0;
  }
  .single-news iframe {
    height: 350px;
  }
  .cms-editor h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .cms-editor h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .cms-editor h4 {
    font-size: 17px;
    line-height: 24px;
  }
  .cms-editor blockquote {
    padding: 40px 0;
    font-size: 20px;
    line-height: 25px;
  }
  .cms-editor blockquote cite {
    font-size: 20px;
    line-height: 25px;
  }
  .card-grid__cell {
    flex-basis: 100%;
  }
}
@media (max-width: 576px) {
  .card .card__wrapper {
    /*height: 200px;*/
    max-height: 720px;
  }
  .card__img img {
    /*height: 200px;*/
    max-height: 720px;
  }
  .single-news iframe {
    height: 250px;
  }
}
@media (max-width: 412px) {
  .card .card__wrapper {
    max-height: 570px;
  }
  .card__img img {
    max-height: 570px;
  }
}
