/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez <victor@vctrfrnndz.com>
 * MIT Licensed.
 */
/* Requirements */
[data-accordion] [data-content] {
  overflow: hidden;
  max-height: 0;
}
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-infobar, .fancybox-toolbar, .fancybox-caption, .fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar, .fancybox-show-caption .fancybox-caption, .fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--previous, .fancybox-slide--current, .fancybox-slide--next {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}
.fancybox-slide--image::before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-swipe .fancybox-content, .fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox-container [data-selectable='true'] {
  cursor: text;
}
.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--video .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-video, .fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, .6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button, .fancybox-button:visited, .fancybox-button:link {
  color: #ccc;
}
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}
/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--play svg:nth-child(2), .fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}
.fancybox-button--pause svg:nth-child(1), .fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
}
/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}
/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:visited, .fancybox-share__button:link {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, .1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-dots {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.slick-dots li {
  list-style-type: none;
  font-size: 0;
  margin: 0 4px;
}
.slick-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -1000px;
  background-color: #cbcbcb;
}
.slick-dots li.slick-active button {
  background-color: #888a8a;
}
*:before, *:after, * {
  box-sizing: border-box;
}
:focus {
  outline: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
button::-moz-focus-inner {
  border: 0;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f3f3f3;
  color: #000;
  font-size: 16px;
  font-family: "czgbcfont", "proxima-nova", "Proxima Nova", sans-serif;
  padding: 0;
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding-top: 60px;
  font-size: 16px;
}
@media (max-width:989px) {
  .menu-active body {
    position: fixed;
  }
}
@media (min-width:990px) {
  body {
    padding-top: 10.08vw;
  }
}
@media (min-width: 1285px) {
  body {
    padding-top: 129.6px;
  }
}
@media (min-width: 1454.5454545455px) {
  body {
    font-size: 1.1vw;
  }
}
@media (min-width: 1636.3636363636px) {
  body {
    font-size: 18px;
  }
}
svg, img {
  max-width: 100%;
}
a {
  color: inherit;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
p {
  margin: 0 0 1em 0;
}
p:last-child {
  margin-bottom: 0;
}
sup {
  vertical-align: middle;
  position: relative;
  top: -0.5em;
  font-size: 0.6em;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0.8em 0 0.3em 0;
  line-height: 1.1;
  font-weight: bold;
  font-family: inherit;
}
h2 {
  font-size: 1.4em;
  margin: 0.3em 0 1.2em 0;
}
h4 {
  font-size: 1.3em;
}
figure {
  margin: 0;
}
button, input, select {
  border-radius: 0;
}
button {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  background-color: transparent;
  padding: 0;
  margin: 0;
  line-height: inherit;
  cursor: pointer;
  border: none;
}
.anchor {
  display: block;
  position: relative;
  top: -60px;
}
@media (min-width:990px) {
  .anchor {
    top: -128px;
  }
}
.ul--styled, .block__text--styled ul, .energy__content ul, .person__text ul, .terms__content ul {
  padding: 0;
  margin: 0 0 1em 0;
  line-height: 1.4;
  list-style-type: none;
}
.ul--styled li, .block__text--styled ul li, .energy__content ul li, .person__text ul li, .terms__content ul li {
  padding: 0 0 0 18px;
  position: relative;
  margin: 0 0 2px 0;
}
.ul--styled li:before, .block__text--styled ul li:before, .energy__content ul li:before, .person__text ul li:before, .terms__content ul li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  background-color: #5fa82c;
  border-radius: 50%;
  display: block;
  width: 7px;
  height: 7px;
}
.xxx {
  display: block;
  background-color: red;
  height: 300px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInUpLarge {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInDownLarge {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.button {
  border: none;
  font-family: inherit;
  font-size: inherit;
  background-color: #5fa82c;
  color: #fff !important;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  padding: 0.75em 1.8em;
  position: relative;
  transition: background-color 0.3s;
  cursor: pointer;
}
.button:hover {
  background-color: #488021;
}
.button--full-width {
  width: 100%;
  display: block;
}
.button--large {
  padding-top: 0.95em;
  padding-bottom: 0.95em;
}
@media (min-width:990px) {
  .button--large {
    font-size: 1.2em;
  }
}
.button--back {
  padding-left: 2.8em;
}
.button--back:after {
  content: "";
  display: inline-block;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 0.7em;
  height: 0.7em;
  vertical-align: -0.02em;
  position: absolute;
  top: 50%;
  margin-top: -0.35em;
  left: 1.3em;
}
.button--next {
  padding-right: 2.8em;
}
.button--next:after {
  content: "";
  display: inline-block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 0.7em;
  height: 0.7em;
  vertical-align: -0.02em;
  position: absolute;
  top: 50%;
  margin-top: -0.35em;
  right: 1.3em;
}
.burger {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: 10;
  width: 60px;
  height: 60px;
}
.burger__inside, .burger:before, .burger:after {
  content: "";
  display: block;
  position: absolute;
  top: 29px;
  height: 3px;
  background-color: #5fa82c;
  left: 17px;
  right: 17px;
  overflow: hidden;
  text-indent: 1000px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-active .burger__inside {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
}
.burger:before {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
.menu-active .burger:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger:after {
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}
.menu-active .burger:after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media (min-width:990px) {
  .burger {
    display: none;
  }
}
.hp {
  padding: 30px 20px;
  background-image: url(../img/content/hp.jpg?v2);
  background-size: cover;
  background-position: 50% 50%;
}
@media (min-width:990px) {
  .hp {
    display: flex;
    align-items: center;
    padding: 2em;
    min-height: 28em;
  }
}
@media (min-width:1200px) {
  .hp {
    min-height: 30em;
  }
}
@media (min-width:990px) {
  .hp__inside {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.hp__box {
  margin: 0 auto 40px auto;
  max-width: 400px;
}
@media (min-width:990px) {
  .hp__box {
    margin: 0;
    max-width: none;
    width: 40%;
  }
}
@media (min-width:1200px) {
  .hp__box {
    width: auto;
  }
}
.hp__box h1 {
  margin: 0 0 1.3em 0;
  line-height: 1.2;
  white-space: nowrap;
  font-size: 20px;
}
@media (min-width: 500px) {
  .hp__box h1 {
    font-size: 4vw;
  }
}
@media (min-width: 750px) {
  .hp__box h1 {
    font-size: 30px;
  }
}
@media (min-width:990px) {
  .hp__box h1 {
    font-size: 30px;
  }
}
@media (min-width:990px) and (min-width: 1111.1111111111px) {
  .hp__box h1 {
    font-size: 2.7vw;
  }
}
@media (min-width:990px) and (min-width: 2222.2222222222px) {
  .hp__box h1 {
    font-size: 60px;
  }
}
.hp__box strong {
  font-weight: inherit;
  color: #5fa82c;
}
.hp__box em {
  display: inline-block;
  font-style: inherit;
  position: relative;
}
.hp__box em:after {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.08em;
  background-color: #5fa82c;
  width: 100%;
  content: "";
  display: block;
}
@media (min-width:1200px) {
  .hp__box .button--large {
    font-size: 1.3em;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  z-index: 1000;
  padding: 0 10px;
}
@media (min-width:990px) {
  .header {
    padding: 0 25px;
    border-bottom: 2px solid #5fa82c;
    transition: transform 0.6s;
    font-size: 14px;
  }
  html[data-scrolldir="down"] .header {
    transform: translateY(-55px);
  }
}
@media (min-width:990px) and (min-width: 1000px) {
  .header {
    font-size: 1.4vw;
  }
}
@media (min-width:990px) and (min-width: 1285.7142857143px) {
  .header {
    font-size: 18px;
  }
}
@media (min-width:1200px) {
  .header {
    padding: 0 2.6em;
  }
}
.header__inside {
  height: 60px;
  display: flex;
  align-items: center;
}
@media (min-width:990px) {
  .header__inside {
    height: 7.2em;
    justify-content: space-between;
  }
}
.header__logo {
  position: relative;
  z-index: 100;
}
@media (min-width:990px) {
  .header__logo {
    transition: transform 0.6s;
    transform-origin: 0 100%;
  }
  html[data-scrolldir="down"] .header__logo {
    transform: translateY(7px) scale(0.6);
  }
}
@media (max-width:989px) {
  .header__nav {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 70px;
    top: 60px;
    padding: 0 20px;
    background-color: #fff;
  }
  .menu-active .header__nav {
    display: block;
  }
}
@media (min-width:990px) {
  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.header__top {
  background-color: #fff;
  display: flex;
  white-space: nowrap;
  align-items: center;
}
@media (max-width:989px) {
  .header__top {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    justify-content: space-between;
  }
}
@media (min-width:990px) {
  .header__top {
    padding: 0.1em 0 0.6em 0;
    border-bottom: 1px solid #d4d4d4;
    transition: transform 0.3s;
  }
  html[data-scrolldir="down"] .header__top {
    transform: translateY(-6px);
  }
}
.header__social {
  display: flex;
  align-items: center;
  font-size: 14px;
}
@media (min-width:990px) {
  .header__social {
    font-size: 10px;
  }
}
@media (min-width:990px) and (min-width: 1000px) {
  .header__social {
    font-size: 1vw;
  }
}
@media (min-width:990px) and (min-width: 1400px) {
  .header__social {
    font-size: 14px;
  }
}
.header__social .social {
  margin-left: 10px;
}
@media (min-width:990px) {
  .header__social .social {
    margin-right: 45px;
  }
}
@media (max-width:989px) {
  .header__menu {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 70px;
    overflow: auto;
  }
}
@media (min-width:990px) {
  .header__menu {
    display: flex;
    align-items: center;
    transition: transform 0.6s;
  }
  html[data-scrolldir="down"] .header__menu {
    transform: translateY(0.4em);
  }
}
@media (min-width:990px) {
  .menu {
    margin-right: 5px;
  }
}
@media (min-width:1400px) {
  .menu {
    margin-right: 15px;
  }
}
.menu > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (min-width:990px) {
  .menu > ul {
    display: flex;
  }
}
.menu > ul > li {
  position: relative;
}
@media (max-width:989px) {
  .menu > ul > li {
    padding: 7px;
  }
  .menu > ul > li:not(:first-child) {
    border-top: 1px solid #eee;
  }
}
.menu > ul > li.has-submenu {
  padding-right: 2.5em;
}
.menu > ul > li.has-submenu:after {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  width: 0.5em;
  height: 0.5em;
  margin-top: -0.4em;
  right: 1em;
  z-index: 10;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width:990px) {
  .menu > ul > li.has-submenu:after {
    top: 50%;
    right: 0.7em;
  }
}
@media (min-width:990px) {
  .menu > ul > li.has-submenu {
    padding-right: 1em;
  }
  .menu > ul > li.has-submenu:before {
    position: absolute;
    z-index: 5;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    content: "";
    display: block;
  }
}
@media (min-width:990px) {
  .menu > ul > li.has-submenu.open {
    transition: box-shadow 0.4s;
    box-shadow: 1px 1px 15px -5px rgba(0, 0, 0, 0.2);
  }
}
.menu > ul > li.has-submenu.open:before {
  transition: opacity 0.4s;
  opacity: 1;
}
.menu > ul > li > a {
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 10;
  transition: color 0.1s;
  line-height: 1.2;
}
.menu > ul > li > a:hover {
  color: #5fa82c;
}
@media (min-width:990px) {
  .menu > ul > li > a {
    padding: 1.2em 0.6em;
  }
}
@media (min-width:1400px) {
  .menu > ul > li > a {
    padding: 1.2em 0.65em;
  }
}
.menu > ul > li.active > a {
  color: #5fa82c;
}
.menu > ul > li > ul {
  margin: 0;
  padding: 5px 0 10px 0;
  min-width: 100%;
  list-style-type: none;
  white-space: nowrap;
  display: none;
}
@media (min-width:990px) {
  .menu > ul > li > ul {
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 1px 2px 15px -5px rgba(0, 0, 0, 0.1);
  }
}
.menu > ul > li.open > ul {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}
.menu > ul > li > ul > li > a {
  display: block;
  text-decoration: none;
  font-size: 14px;
}
@media (min-width:990px) {
  .menu > ul > li > ul > li > a {
    font-size: 16px;
  }
}
@media (min-width:990px) {
  .menu > ul > li > ul > li > a {
    padding: 0.35em 1.5em 0.35em 1.1em;
  }
}
.menu > ul > li > ul > li > a:hover {
  color: #5fa82c;
}
.menu > ul > li > ul > li.active > a {
  color: #5fa82c;
}
@media (min-width:990px) {
  .menu > ul > li > ul > li:first-child > a {
    padding-top: 0.9em;
  }
  .menu > ul > li > ul > li:last-child > a {
    padding-bottom: 1em;
  }
}
.langswitcher {
  border: 1px solid #b7b7b7;
  padding: 1px;
  border-radius: 2em;
  font-size: 12px;
}
@media (min-width:990px) {
  .langswitcher {
    font-size: 10px;
  }
}
@media (min-width:990px) and (min-width: 1000px) {
  .langswitcher {
    font-size: 1vw;
  }
}
@media (min-width:990px) and (min-width: 1400px) {
  .langswitcher {
    font-size: 14px;
  }
}
.langswitcher ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
}
.langswitcher a {
  display: block;
  border-radius: 2em;
  padding: 0.15em 0.4em;
  text-decoration: none;
}
.langswitcher li.active a {
  background-color: #5fa82c;
  padding: 0.15em 0.8em;
  color: #fff;
}
.social ul {
  display: flex;
  padding: 0;
  margin: 0 -3px;
  list-style-type: none;
}
.social li {
  margin: 0 3px;
}
.social__item {
  width: 25px;
  height: 25px;
  display: block;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-indent: -1000px;
  overflow: hidden;
}
.social__item--facebook {
  background-image: url("../img/vector/icon-facebook.svg");
}
.social__item--youtube {
  background-image: url("../img/vector/icon-youtube.svg");
}
.social__item--linkedin {
  background-image: url("../img/vector/icon-linkedin.svg");
}
.social__item--twitter {
  background-image: url("../img/vector/icon-twitter.svg");
}
.social--large ul {
  margin: 0 -4px;
}
.social--large li {
  margin: 0 4px;
}
.social--large .social__item {
  width: 38px;
  height: 38px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.3;
  font-size: 11px;
}
@media (min-width:990px) {
  .logo {
    font-size: 1.1em;
  }
}
.logo__img {
  flex-shrink: 0;
  width: 4.8em;
  height: 4.8em;
  background-image: url(../img/vector/czgbc-logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 1em;
}
.logo__first {
  display: block;
  font-size: 1em;
}
.logo__sep {
  display: block;
  height: 2px;
  width: 5em;
  margin: 0.35em 0 0.35em 0;
  overflow: hidden;
  text-indent: -1000px;
  background-color: #5fa82c;
}
.logo__second {
  display: block;
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: bold;
}
.search {
  position: relative;
}
@media (max-width:989px) {
  .search {
    position: fixed;
    bottom: 70px;
    right: 25px;
    left: 25px;
    z-index: 100;
  }
}
.search__button {
  width: 1.5em;
  height: 1.5em;
  background-size: 1em auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(../img/vector/icon-search.svg);
  overflow: hidden;
  text-indent: -1000px;
}
@media (max-width:989px) {
  .search__open {
    display: none;
  }
}
.search__form {
  background-color: #fff;
}
@media (min-width:990px) {
  .search__form {
    display: none;
    z-index: 1000;
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: #fff;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
  }
  .search-active .search__form {
    display: block;
  }
}
.search__input {
  display: block;
  padding-right: 30px;
  padding: 10px;
  padding-right: 40px;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: 1px solid #eee;
  width: 100%;
}
@media (min-width:990px) {
  .search__input {
    border: none;
    width: 20em;
  }
}
.search__action {
  position: absolute;
  top: 10px;
  right: 10px;
}
.hp-slider {
  background-color: #fff;
  box-shadow: 0.2em 0.2em 1em 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.hp-slider:hover {
  box-shadow: 0.2em 0.4em 2em 0 rgba(0, 0, 0, 0.1);
}
.hp-slider--main {
  max-width: 25em;
  margin: 0 auto;
}
@media (min-width:750px) {
  .hp-slider--main {
    width: 35em;
    max-width: none;
  }
}
@media (min-width:990px) {
  .hp-slider--main {
    margin-right: 0;
    margin-left: 5vw;
    width: calc(60% - 5vw);
  }
}
@media (min-width:1200px) {
  .hp-slider--main {
    margin-left: 7vw;
    width: 53vw;
    max-width: 46em;
  }
}
.hp-slider__slide {
  text-decoration: none;
  width: 100%;
  flex-shrink: 0;
}
.hp-slider__slide:not(.slick-slide):nth-child(n+2) {
  display: none;
}
@media (min-width:750px) {
  .hp-slider__slide, .hp-slider__slide.slick-slide {
    display: flex;
  }
}
.hp-slider__img {
  background-color: #eee;
  background-size: cover;
  background-position: 50% 50%;
}
.hp-slider__img:after {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}
@media (min-width:750px) {
  .hp-slider__img {
    width: 40%;
  }
}
@media (min-width:1200px) {
  .hp-slider__img {
    width: 50%;
  }
}
.hp-slider__content {
  position: relative;
  padding: 40px;
  padding-bottom: 80px;
}
@media (min-width:750px) {
  .hp-slider__content {
    padding: 2.5em 3em;
    width: 60%;
  }
}
@media (min-width:1200px) {
  .hp-slider__content {
    width: 50%;
  }
}
.hp-slider__content ul {
  padding-left: 1.25em;
  line-height: 1.5;
  font-size: 1em;
}
.hp-slider__content ul li {
  margin: 0 0 5px 0;
}
.hp-slider__content p {
  line-height: 1.5;
  font-size: 1em;
}
.hp-slider__title {
  text-decoration: underline;
  line-height: 1.4;
  font-size: 1.2em;
  margin: 0 0 0.5em 0;
}
.hp-slider__title:before {
  content: "";
  display: block;
  width: 1.7em;
  height: 0.1em;
  background-color: #5fa82c;
  margin-bottom: 0.3em;
}
.hp-slider__slide--blue .hp-slider__title:before {
  background-color: #2c7ba8;
}
.hp-slider__date {
  position: absolute;
  top: 12px;
  right: 15px;
  color: #b2b2b2;
  font-size: 0.875em !important;
}
.hp-slider .slick-list, .hp-slider .slick-track {
  display: flex;
}
.hp-slider .slick-dots {
  top: auto;
  bottom: 2em;
  z-index: 20;
}
@media (min-width:750px) {
  .hp-slider .slick-dots {
    justify-content: flex-start;
    bottom: 1.5em;
    left: 40%;
    padding-left: 2.8em;
  }
}
@media (min-width:1200px) {
  .hp-slider .slick-dots {
    bottom: 2em;
    padding-left: 3em;
    left: 50%;
  }
}
.hp-slider__badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #5fa82c;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  padding: 0.5em 1em;
  text-transform: uppercase;
}
.hp-slider__slide--blue .hp-slider__badge {
  background-color: #2c7ba8;
}
.news--single .hp-slider__badge {
  top: auto;
  bottom: 100%;
}
.projs {
  padding: 30px 20px;
}
@media (min-width:750px) {
  .projs {
    padding: 4em 4em;
  }
}
.projs__inside {
  max-width: 75em;
  margin: 0 auto;
}
@media (min-width:480px) {
  .projs__blocks {
    margin: 0 -5px;
    display: flex;
  }
}
@media (min-width:480px) {
  .projs__blocks {
    margin: 0 -10px;
  }
}
.projs__block {
  position: relative;
  flex-basis: 0;
  flex-grow: 1;
  display: block;
  overflow: hidden;
  background-color: #888;
  margin: 20px 0;
  box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width:480px) {
  .projs__block {
    margin: 0 5px;
  }
}
@media (min-width:750px) {
  .projs__block {
    margin: 0 10px;
  }
}
.projs__block:hover {
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}
.projs__img {
  background-size: cover;
  background-position: 50% 50%;
}
.projs__img:after {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (min-width:480px) {
  .projs__img {
    background-size: cover;
    background-position: 50% 50%;
  }
  .projs__img:after {
    content: "";
    display: block;
    padding-top: 150%;
  }
}
.projs__text {
  position: absolute;
  top: 0;
  right: 100%;
  margin-top: 1em;
  margin-right: -0.4em;
  z-index: 10;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  font-size: 20px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
@media (min-width: 1000px) {
  .projs__text {
    font-size: 2vw;
  }
}
@media (min-width: 2000px) {
  .projs__text {
    font-size: 40px;
  }
}
.projs__text:after {
  content: "";
  display: block;
  width: 1.2em;
  height: 0.1em;
  background-color: #5fa82c;
  margin-left: auto;
}
.partners {
  background-color: #fff;
  padding: 30px 20px;
  position: relative;
}
@media (max-width:989px) {
  .partners--has-all {
    padding-bottom: 50px;
  }
}
@media (min-width:990px) {
  .partners {
    padding: 4em 2em 4.5em 2em;
  }
}
.partners--top-line {
  border-top: 1px solid #e2e2e2;
}
.partners__inside {
  max-width: 75em;
  margin: 0 auto;
}
@media (min-width:750px) {
  .partners__inside {
    display: flex;
    align-items: center;
  }
}
.partners__items {
  max-height: 125px;
  margin-bottom: 20px;
}
@media (min-width:750px) {
  .partners__items {
    margin-bottom: 0px;
    width: calc(100% - 10em);
  }
}
@media (min-width:990px) {
  .partners__items {
    width: calc(100% - 20em);
  }
}
.partners__items:not(.slick-initialized) {
  overflow: hidden;
}
@media (max-width:749px) {
  .partners__head {
    text-align: center;
  }
}
@media (min-width:750px) {
  .partners__head {
    width: 10em;
    flex-shrink: 0;
  }
}
@media (min-width:990px) {
  .partners__head {
    width: 20em;
  }
}
.partners__head h2 {
  line-height: 1.3;
  margin: 0 0 0.3em 0;
}
@media (max-width:989px) {
  .partners__head h2 {
    line-height: 1.2;
    font-size: 1.3em;
  }
}
@media (min-width:750px) {
  .partners__head h2 {
    margin: 0 0 0.6em 0;
  }
}
.partners__head a {
  color: #5fa82c;
}
.partners__logo {
  background-size: cover;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.partners__logo:after {
  content: "";
  display: block;
  padding-top: 57.8947368421%;
}
@media (max-width:749px) {
  .partners__all {
    position: absolute;
    left: 0;
    bottom: 17px;
    right: 0;
    font-size: 14px;
  }
}
.partners .slick-dots {
  margin-top: 10px;
}
@media (min-width:990px) {
  .partners .slick-dots {
    margin-top: 20px;
    left: -20em;
  }
}
.newsletter {
  background-color: #000;
  background-image: url(../img/content/newsletter.jpg);
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  padding: 30px 20px;
}
@media (min-width:1200px) {
  .newsletter {
    padding: 100px;
  }
}
.newsletter__inside {
  max-width: 1090px;
  margin: 0 auto;
}
@media (min-width:990px) {
  .newsletter__form {
    display: flex;
    padding-bottom: 80px;
    align-items: center;
  }
}
.newsletter__block {
  flex-grow: 1;
  flex-basis: 0;
  margin: 0 0 20px 0;
}
@media (min-width:990px) {
  .newsletter__block {
    margin: 0;
  }
}
.newsletter__block h2 {
  margin: 0 0 1.2em 0;
  font-size: 1.4em;
}
@media (min-width:990px) {
  .newsletter__block h2 {
    margin: 0 0 1em 0;
    font-size: 1.7em;
  }
}
.newsletter__block h2:after {
  content: "";
  display: block;
  margin-top: 0.4em;
  background-color: #5fa82c;
  height: 0.12em;
  width: 3em;
}
@media (min-width:990px) {
  .newsletter__block h2:after {
    margin-top: 0.2em;
    width: 5em;
  }
}
.newsletter__social {
  border-top: 1px solid #707070;
  font-weight: bold;
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 25px;
}
.newsletter__social .social {
  margin-left: 25px;
}
.newsletter-form__form {
  display: flex;
  margin: 0 0 25px 0;
}
.newsletter-form__form .button {
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  flex-shrink: 0;
  padding-left: 1.4em;
  white-space: nowrap;
  padding-right: 2.4em;
}
@media (min-width:1200px) {
  .newsletter-form__form .button {
    width: 12rem;
  }
}
.newsletter-form__input {
  flex-grow: 1;
  width: auto;
  padding: 0.2em 1em;
  font-family: inherit;
  font-size: inherit;
  background-color: #fff;
  border-radius: 0;
  min-width: 0;
  border: none;
}
.newsletter-form__archive {
  text-align: right;
}
@media (min-width:1200px) {
  .newsletter-form__archive .obutton {
    width: 12rem;
  }
}
.obutton {
  border: 2px solid #5fa82c;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.9em 1.2em;
  display: inline-block;
  text-align: center;
}
.obutton:hover {
  background-color: #488021;
  border-color: #488021;
}
.checkbox {
  padding-left: 2em;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  display: block;
  max-width: 26em;
}
.checkbox__check {
  width: 1.125em;
  height: 1.125em;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
}
.checkbox--bordered .checkbox__check {
  border: 1px solid #ddd;
}
.checkbox__check:after {
  content: "";
  border-left: 2px solid #5fa82c;
  border-bottom: 2px solid #5fa82c;
  display: block;
  position: absolute;
  width: 0.7em;
  height: 0.4em;
  top: 0.27em;
  left: 0.23em;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.checkbox__input:checked ~ .checkbox__check:after {
  opacity: 1;
}
.checkbox__input {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
}
.footer {
  padding: 30px 20px;
}
@media (min-width:1200px) {
  .footer {
    padding: 70px 80px 80px 80px;
  }
}
@media (min-width:990px) {
  .footer__inside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 75em;
    margin: 0 auto;
  }
}
.footer__blocks {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
@media (min-width:990px) {
  .footer__blocks {
    flex-wrap: nowrap;
  }
}
.footer__block {
  width: 50%;
  margin: 0 0 30px 0;
}
.footer__block.fcontacts {
  margin: 0 0 20px 0;
  width: 100%;
}
@media (min-width:990px) {
  .footer__block {
    width: auto !important;
    max-width: 190px;
    flex-grow: 1;
    flex-basis: 0;
    margin: 0 !important;
  }
}
.footer__block h3 {
  font-size: 1.4em;
  margin: 0 0 0.5em 0;
}
@media (min-width:990px) {
  .footer__block h3 {
    margin: 0 0 1.5em 0;
  }
}
.footer__block h3:after {
  content: "";
  margin-top: 0.4em;
  display: block;
  width: 1.7em;
  height: 0.15em;
  background-color: #5fa82c;
}
.footer__block ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer__block--menu a {
  text-decoration: none;
}
.footer__block--menu a:hover {
  text-decoration: underline;
}
@media (min-width:990px) {
  .footer__info {
    text-align: right;
  }
}
.footer__info small {
  font-size: inherit;
  color: #afb2b4;
}
.fcontacts li {
  margin: 0 0 0.6em 0;
}
.fcontacts a {
  display: block;
  font-size: 1.2em;
  padding-left: 2.2em;
  font-weight: bold;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 1.6em auto;
}
.fcontacts a[href^="tel:"] {
  text-decoration: none;
  background-image: url(../img/vector/icon-tel.svg);
}
.fcontacts a[href^="mailto:"] {
  text-decoration: underline;
  background-image: url(../img/vector/icon-mail.svg);
  color: #5fa82c;
}
.section {
  padding: 30px 20px;
}
@media (min-width:750px) {
  .section {
    padding: 4em 4em;
  }
}
@media (min-width:750px) {
  .section--after-graph {
    padding-top: 120px;
    padding-bottom: 140px;
  }
}
.section__inside {
  max-width: 60em;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.section--wide .section__inside {
  max-width: none;
}
@media (min-width:1200px) {
  .section--wide .section__inside {
    max-width: 75em;
  }
}
.section__text {
  max-width: 44em;
}
.section h1 {
  font-size: 30px;
  margin: 0 0 0.7em 0;
}
@media (min-width: 750px) {
  .section h1 {
    font-size: 4vw;
  }
}
@media (min-width: 1250px) {
  .section h1 {
    font-size: 50px;
  }
}
.section h1:after {
  content: "";
  display: block;
  width: 3.82em;
  height: 0.07em;
  margin-top: 0.2em;
  background-color: #5fa82c;
}
.section__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: none;
}
@media (min-width:990px) {
  .section__cover {
    height: 35em;
    display: block;
  }
}
@media (min-width:1200px) {
  .section__cover {
    height: 43em;
  }
}
.section__more {
  display: flex;
  margin-top: 2em;
  justify-content: center;
}
@media (min-width:990px) {
  .visions {
    display: flex;
    margin: 60px -8px 70px -8px;
  }
}
.visions__block {
  flex-basis: 0;
  flex-grow: 1;
  color: #fff;
  position: relative;
  padding: 1.5em;
  margin: 1.5em 0 0 0;
}
@media (min-width:990px) {
  .visions__block {
    margin: 0 8px;
  }
}
@media (min-width:1200px) {
  .visions__block {
    padding: 40px 80px 80px 110px;
  }
}
.visions__block:nth-child(1) {
  background-color: #5fa82c;
}
.visions__block:nth-child(2) {
  background-color: #3c822b;
}
.visions__text {
  position: relative;
  z-index: 10;
}
.visions__title {
  position: absolute;
  top: 0;
  right: 100%;
  margin: 0;
  margin-right: -0.27em;
  opacity: 0.2;
  margin-top: 0.29em;
  text-transform: uppercase;
  font-size: 60px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 100% 0%;
  -moz-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -o-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
@media (min-width: 750px) {
  .visions__title {
    font-size: 8vw;
  }
}
@media (min-width: 1500px) {
  .visions__title {
    font-size: 120px;
  }
}
.graph {
  background-color: #fff;
  padding: 30px 25px;
  max-width: 400px;
  margin: 0 auto 20px auto;
}
@media (min-width:990px) {
  .graph {
    padding: 0 50px;
    max-width: none;
  }
}
@media (min-width:990px) {
  .graph__inside {
    display: flex;
    width: 100%;
    max-width: 60em;
    margin: 0 auto;
    align-items: center;
  }
}
.graph__legend, .graph__info {
  flex-grow: 1;
  flex-basis: 0;
}
.graph__legend h2, .graph__info h2 {
  margin: 0;
}
.graph__image {
  position: relative;
}
@media (min-width:990px) {
  .graph__image {
    width: 57%;
    margin-top: -6.5%;
    margin-bottom: -6.5%;
  }
}
.graph__logo {
  position: absolute;
  top: 37%;
  left: 37%;
  width: 26%;
  height: 26%;
  background-image: url(../img/vector/czgbc-logo.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: 10;
}
.graph__svg {
  position: relative;
  z-index: 5;
  padding: 11%;
  border-radius: 50%;
  background-color: #fff;
}
.graph__svg svg {
  border-radius: 50%;
  border: 2px solid #fff;
  width: 100%;
  position: relative;
  z-index: 10;
  height: auto;
  display: block;
}
@media (min-width:990px) {
  .graph__svg:after {
    content: "";
    position: absolute;
    width: 64%;
    left: 18%;
    z-index: 6;
    bottom: 1%;
    opacity: 0.2;
    height: 24%;
    display: block;
    background-image: url(../img/content/graph-shadow.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
}
.legend ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.legend li {
  position: relative;
  padding-left: 16px;
  margin: 3px 0;
}
.legend__dot {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4.5px;
}
@media (min-width:990px) {
  .block {
    margin: 0 -40px;
    display: flex;
  }
}
.block--standalone {
  margin: 4.5em 0;
  display: block;
}
.block--standalone:first-child {
  margin-top: 0;
}
.block--reversed {
  flex-direction: row-reverse;
}
.block--centered {
  align-items: center;
}
@media (max-width:989px) {
  .block__col + .block__col {
    margin-top: 40px;
  }
}
@media (min-width:990px) {
  .block__col {
    width: calc(50% - 80px);
    margin: 0 40px;
  }
  .block__col--wide {
    width: calc(60% - 80px);
  }
  .block__col--narrow {
    width: calc(40% - 80px);
  }
}
.block__text h2 {
  margin: 0 0 0.9em 0;
  font-size: 2.5em;
}
.block__text h2:after {
  content: "";
  display: block;
  margin-top: 0.08em;
  width: 2.8em;
  height: 0.1em;
  background-color: #5fa82c;
}
.block__text--smaller-h2 h2 {
  margin-top: 1.5em;
  font-size: 2em;
}
.block__text h3 {
  font-size: 1.45em;
  margin: 1em 0 0.7em 0;
}
.block__text--styled p {
  max-width: 48em;
}
.block__text--styled ul li {
  margin: 0 0 0.8em 0;
}
.block__buttons {
  margin-top: 2.6em;
}
.block__perex {
  font-style: italic;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0 0 1.5em 0;
  font-size: 1.1em;
}
.block__reg-btn {
  margin-top: 3em;
  margin-bottom: 1em;
}
.card {
  background-color: #fff;
  padding: 20px;
  border-top: 3px solid #5fa82c;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width:750px) {
  .card {
    padding: 2.1em 3.125em 2.8em 3.125em;
  }
}
.card--person {
  text-align: center;
  padding-top: 2em;
}
.card--logo {
  border-top: none;
}
.card a {
  color: #5fa82c;
}
.card h2 {
  margin-top: 0;
  margin-bottom: 1.4em;
}
.card--large {
  margin-top: 60px;
  font-size: 1.125em;
}
.card--person h2 {
  margin: 0 0 0.2em 0;
}
.card__role {
  font-weight: bold;
  text-transform: uppercase;
}
.card__img {
  border-radius: 50%;
  background-size: cover;
  background-position: 50% 50%;
  max-width: 12.5em;
  margin: 1em auto 1.25em auto;
  border: 0.8em solid #fff;
  box-shadow: 0 0 0 3px #e6e6e6;
}
.card__img:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.card__logo {
  max-width: 16em;
  margin: 0 auto;
}
.energy {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
}
.energy:after {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.energy__tiles {
  display: none;
}
@media (min-width:990px) {
  .energy__tiles {
    display: block;
  }
}
.energy__tile {
  font-size: 14px;
  position: absolute;
  transition: width 0.5s;
  display: flex;
  flex-direction: column;
  margin-top: -22px;
  margin-left: -22px;
}
.energy__tile.open {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.1s;
  transition-delay: 0.2s;
  z-index: 10;
}
.energy__tile--left {
  align-items: flex-start;
}
.energy__tile--right {
  align-items: flex-end;
}
.energy__tiles {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.energy__head {
  color: #fff;
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  white-space: nowrap;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-color: #007088;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.energy__tile.open .energy__head {
  width: 100% !important;
  transition: width 0.2s;
  transition-delay: 0s;
  border-radius: 0;
}
.energy__head h2, .energy__head h3 {
  cursor: pointer;
  padding: 10px 18px 10px 40px;
  font-size: inherit;
  font-weight: 500;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  line-height: inherit;
  background-color: #007088;
  opacity: 0;
}
.energy__tile.open .energy__head h2, .energy__tile.open .energy__head h3 {
  opacity: 1;
}
.energy__head:after, .energy__head:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 14px;
  background-color: #fff;
  left: 15px;
  transition: transform 0.3s;
}
.energy__head:after {
  -webkit-transform: rotate(-270deg);
  -moz-transform: rotate(-270deg);
  -ms-transform: rotate(-270deg);
  -o-transform: rotate(-270deg);
  transform: rotate(-270deg);
}
.energy__head:before {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.energy__tile.open .energy__head:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.energy__tile.open .energy__head:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.energy [data-content] {
  width: 100%;
}
.energy__tile.open .energy [data-content] {
  transition-delay: 0.3s !important;
}
.energy__content {
  padding: 20px 40px;
  background-color: #fff;
  transition: opacity 0.4s;
  opacity: 0;
}
.energy__tile.open .energy__content {
  opacity: 1;
  transition-delay: 0.2s;
}
.energy__content ul {
  margin: 0;
}
.energy__content li {
  padding-left: 0 !important;
}
.energy__content li:before {
  left: -1em !important;
  width: 4px !important;
  height: 4px !important;
  background-color: #007088 !important;
}
.rd {
  margin: 0px auto;
  overflow: hidden;
}
.rd__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0px auto;
  max-width: 400px;
}
@media (min-width:750px) {
  .rd__items {
    max-width: none;
    margin: 0 -10px;
  }
  .rd[data-items='1'] .rd__items {
    justify-content: center;
  }
}
@media (min-width:990px) {
  .rd[data-items='2'] .rd__items {
    justify-content: center;
  }
}
.rd__item {
  width: 100%;
  background-color: #e0e0e0;
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: background-color 0.3s;
}
@media (min-width:750px) {
  .rd__item {
    margin: 0 10px;
    width: calc(50% - 20px);
  }
}
@media (min-width:990px) {
  .rd[data-max-cols="3"] .rd__item, .rd[data-max-cols="4"] .rd__item {
    width: calc(33.33% - 20px);
  }
}
@media (min-width:1200px) {
  .rd[data-max-cols="4"] .rd__item {
    width: calc(25% - 20px);
  }
}
.rd__item:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.rd__item:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -20px;
  content: "";
  display: block;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.rd__item--active:before {
  opacity: 1;
}
.rd__item--active, .rd__item--active:hover {
  background-color: #fff;
}
.rd__hcontent {
  display: none;
}
.rd__arrow {
  border-left: 1px solid #9e9e9e;
  border-bottom: 1px solid #9e9e9e;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  bottom: 20px;
  right: calc(50% - 10px);
  z-index: 1;
  transition: transform 0.3s;
}
.rd__item--active .rd__arrow {
  border-color: #5fa82c;
  -webkit-transform: rotateX(180deg) translateY(-7px) rotate(-45deg);
  -moz-transform: rotateX(180deg) translateY(-7px) rotate(-45deg);
  -ms-transform: rotateX(180deg) translateY(-7px) rotate(-45deg);
  -o-transform: rotateX(180deg) translateY(-7px) rotate(-45deg);
  transform: rotateX(180deg) translateY(-7px) rotate(-45deg);
}
.rd__placeholder {
  width: 100%;
  flex-shrink: 0;
  height: 0;
  overflow: hidden;
  position: relative;
  transition: height 0.5s;
  display: block;
  margin-top: 20px;
}
.rd__placeholder--active {
  margin-bottom: 20px;
}
@media (min-width:750px) {
  .rd__placeholder {
    display: none;
  }
  .rd__placeholder:last-child {
    display: block !important;
  }
}
@media (min-width:750px and max-width:989px) {
  .rd__placeholder:nth-child(4n) {
    display: block;
  }
}
@media (min-width:990px and max-width:1199px) {
  .rd__placeholder:nth-child(6n) {
    display: block;
  }
}
@media (min-width:1200px) {
  .rd__placeholder:nth-child(8n) {
    display: block;
  }
}
.rd__description {
  position: relative;
}
.rd__placeholder--active .rd__description {
  background-color: #fff;
}
.rd__content {
  margin: 0px auto;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s;
}
.rd__content--narrow {
  max-width: 60em;
}
.rd__placeholder--complete .rd__content {
  opacity: 1;
}
@media (min-width:750px) {
  .rd__content {
    padding: 50px;
  }
}
@media (min-width:990px) {
  .rd__content {
    padding: 70px;
  }
}
@media (min-width:1200px) {
  .rd__content {
    padding: 90px;
  }
}
.rd__text {
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
@media (min-width:990px) {
  .rd__text {
    padding: 50px;
  }
}
@media (min-width:1200px) {
  .rd__text {
    padding: 60px 40px;
  }
}
.rd__name {
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.rd__item--active .rd__name {
  color: #5fa82c;
}
.rd__img {
  border-radius: 50%;
  background-size: cover;
  background-position: 50% 50%;
  max-width: 160px;
  margin: 0px auto 25px auto;
  background-clip: content-box;
  border: 8px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 3px #cdcdcd;
}
.rd__img:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.rd__item--active .rd__img {
  box-shadow: 0 0 0 3px #5fa82c;
}
.rd__img--logo {
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
}
.rd__img--full {
  border-radius: 0;
  box-shadow: none !important;
  background-size: contain;
  background-repeat: no-repeat;
}
.rd__img--full:after {
  padding-top: 120%;
}
.rd__badge {
  position: absolute;
  top: 2.2em;
  left: -6.5em;
  text-align: center;
  display: block;
  width: 24em;
  font-size: 11px;
  padding: 0.5em;
  background-color: #2c7ba8;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.rd__more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.rd .empty {
  margin: 10px;
  display: block;
}
.person {
  max-width: 70em;
  margin: 0 auto;
}
@media (min-width:750px) {
  .person {
    display: flex;
    justify-content: space-between;
  }
}
.person__block {
  min-width: 12em;
}
.person__text {
  margin: 0 0 1em 0;
}
@media (min-width:750px) {
  .person__text {
    padding-right: 5em;
    margin: 0;
  }
}
.person__text li {
  margin: 0 0 0.5em 0 !important;
}
.contacts {
  white-space: nowrap;
  min-width: 12em;
}
.contacts ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contacts li {
  margin: 0 0 0.5em 0;
}
.contacts a {
  display: block;
  background-size: 1.5em auto;
  background-repeat: no-repeat;
  padding-left: 2.2em;
  background-position: 0 50%;
  color: #5fa82c;
  background-image: url(../img/vector/icon-www.svg);
}
.contacts a[href^="mailto:"] {
  background-image: url(../img/vector/icon-mail.svg);
}
.contacts a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  background-image: url(../img/vector/icon-tel.svg);
}
.contacts a[href*="linkedin"] {
  background-image: url(../img/vector/icon-linkedin.svg);
}
.contacts a[href*="youtube"] {
  background-image: url(../img/vector/icon-youtube.svg);
}
.map {
  margin-top: 70px;
  position: relative;
}
.map__header {
  position: absolute;
  top: -1.3em;
  right: 10%;
  padding: 0.5em 2em 0.6em 2em;
  background-color: #5fa82c;
  height: 2.6em;
  display: flex;
  align-items: center;
  font-size: 20px;
}
@media (min-width: 1000px) {
  .map__header {
    font-size: 2vw;
  }
}
@media (min-width: 1500px) {
  .map__header {
    font-size: 30px;
  }
}
.map__header h2 {
  font-size: inherit;
  color: #fff;
  margin: 0;
}
.map__element iframe {
  width: 100%;
  display: block;
  height: 90vh;
  max-height: 700px;
}
.docs {
  padding: 20px 0;
  background-color: #fff;
}
@media (min-width:750px) {
  .docs {
    padding: 1.8em;
  }
}
.docs ul {
  padding: 0;
  margin: 0;
}
.docs li {
  display: block;
}
.docs__item {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 25px 60px 25px 80px;
}
.docs__item:after {
  background-color: #cfcfcf;
  content: "";
  position: absolute;
  left: 80px;
  bottom: 0;
  width: 30px;
  height: 1px;
  display: block;
}
li:last-child > .docs__item:after {
  display: none;
}
.docs__item:hover {
  background-color: #f8f8f8;
}
.docs__icon {
  position: absolute;
  left: 10px;
  bottom: 18px;
  top: 18px;
  width: 60px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.docs__item[href$=".pdf"] .docs__icon {
  background-image: url(../img/vector/file-pdf.svg);
}
.docs__item[href$=".doc"] .docs__icon {
  background-image: url(../img/vector/file-doc.svg);
}
.docs__item[href$=".docx"] .docs__icon {
  background-image: url(../img/vector/file-docx.svg);
}
.docs__item[href$=".xls"] .docs__icon {
  background-image: url(../img/vector/file-xls.svg);
}
.docs__item[href$=".xlsx"] .docs__icon {
  background-image: url(../img/vector/file-xlsx.svg);
}
.docs__download {
  position: absolute;
  top: calc(50% - 0.8em);
  right: 1.6em;
  display: block;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../img/vector/icon-download.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.docs__head {
  padding: 0 23px;
}
.docs__head h2, .docs__head h3 {
  margin: 0.5em 0 0.8em 0;
  font-size: 1.6em;
}
.docs__head h2:after, .docs__head h3:after {
  display: none;
}
.checklist ul {
  margin: 20px 0 40px 0;
  padding: 0;
  list-style-type: none;
}
.checklist li {
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 7px 0;
}
.checklist li:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 9px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 6px;
  left: 1px;
  border-left: 2px solid #5fa82c;
  border-bottom: 2px solid #5fa82c;
}
@media (min-width:990px) {
  .activities {
    display: flex;
  }
}
.activities__nav {
  margin: 0;
  padding: 0;
  display: none;
}
@media (min-width:990px) {
  .activities__nav {
    display: flex;
    flex-direction: column;
    width: 17em;
  }
}
.activities__nav li {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
}
.activities__nav a {
  font-size: 1.25em;
  font-weight: bold;
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
  align-items: center;
  padding: 0.8em 1.9em;
  transition: color 0.3s;
}
.activities__nav a.active {
  color: #5fa82c;
  transition: color 0.3s, background-color 1s;
  background-color: #fff;
}
@media (min-width:990px) {
  .activities__contents {
    width: calc(100% - 17em);
    display: flex;
    flex-direction: column;
  }
}
.activities__content {
  background-color: #fff;
  padding: 20px;
  margin: 0 0 20px 0;
}
@media (min-width:990px) {
  .activities__content {
    margin: 0;
    display: none;
    width: 100%;
    flex-grow: 1;
    padding: 50px 90px;
    flex-direction: column;
    justify-content: center;
  }
  .activities__content.active {
    animation-name: fadeIn;
    animation-duration: 1s;
    display: flex;
  }
}
.activities__title h3 {
  margin-top: 0;
}
@media (min-width:990px) {
  .activities__title {
    display: none;
  }
}
.form {
  position: relative;
}
.form--in-rd {
  margin: 40px 0 0 0;
  padding: 0 0 20px 0;
}
@media (min-width:750px) {
  .form--in-rd {
    padding: 0;
  }
}
.form--in-page {
  background-color: #fff;
  padding: 30px 20px;
}
@media (min-width:750px) {
  .form--in-page {
    padding: 3.8em;
  }
}
.form__help {
  color: #777;
  font-size: 14px;
  margin: 0px 0 20px 0;
}
@media (min-width:750px) {
  .form__help {
    position: absolute;
    top: 15px;
    margin: 0;
    right: 20px;
  }
}
.form--in-page .form__intro h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 2em;
}
@media (min-width:750px) {
  .form--in-page .form__intro h2 {
    margin-bottom: 0.9em;
  }
}
.form__item {
  display: block;
  margin: 0 0 20px 0;
  position: relative;
}
.form__item .form__error {
  position: absolute;
  bottom: 4px;
  left: 5px;
  text-align: right;
  right: 5px;
  color: red;
  font-size: 13px;
}
.form__label {
  display: block;
  line-height: 1.1;
  font-size: 0.92em;
  font-weight: 500;
  margin: 0 0 0.7em 0;
}
.form__input {
  display: block;
  width: 100%;
  border: 1px solid #b7b7b7;
  border-radius: 0.25em;
  padding: 0.8em 1em;
  font-family: inherit;
  font-size: 1em;
}
.form__input--textarea {
  min-height: 10em;
}
.form__select {
  display: block;
  width: 100%;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  padding: 0.8em 1em;
  font-family: inherit;
  font-size: 1em;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAyNTUgMjU1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNTUgMjU1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGcgaWQ9ImFycm93LWRyb3AtZG93biI+PHBvbHlnb24gcG9pbnRzPSIwLDYzLjc1IDEyNy41LDE5MS4yNSAyNTUsNjMuNzUgIi8+PC9nPjwvc3ZnPg==);
  background-position: top 50% right 14px;
  background-size: 12px auto;
  background-repeat: no-repeat;
}
.form__select::-ms-expand {
  display: none;
}
.form__fieldsets {
  margin: 0 -1.5em;
  display: flex;
  flex-wrap: wrap;
}
.form__fieldset {
  margin: 0 1.5em;
  width: calc(100% - 3em);
}
@media (min-width:750px) {
  .form__fieldset {
    width: calc(50% - 3em);
  }
}
.form__group {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5em;
}
.form__group .form__item {
  width: calc(100% - 3em);
  margin-left: 1.5em;
  margin-right: 1.5em;
}
@media (min-width:750px) {
  .form__group .form__item {
    width: calc(50% - 3em);
  }
}
.form__buttons {
  margin: 2em 0 0 0;
  text-align: center;
}
@media (min-width:750px) {
  .form__buttons {
    margin: 3.5em 0 0 0;
  }
}
.form__buttons .button {
  text-transform: uppercase;
}
.form h3:after {
  content: "";
  display: block;
  width: 2em;
  margin-top: 0.2em;
  height: 3px;
  background-color: #5fa82c;
}
.form h3 small {
  font-size: 16px;
  color: #7f7f7f;
  font-weight: normal;
  display: block;
  margin: 0.3em 0 0.6em 0;
}
.form--in-page h3 {
  margin: 2em 0 1em 0;
}
.form h4 {
  margin: 1em 0;
}
.form__notes {
  margin: 2em 0 1em 0;
}
.form__notes a {
  color: #5fa82c;
}
.terms {
  background-color: #ebf6e3;
  padding: 45px;
}
.terms__content ul {
  margin-bottom: 0;
}
.terms__content li {
  margin-bottom: 0.5em !important;
}
.terms__content li:last-child {
  margin-bottom: 0em !important;
}
.terms__head {
  font-size: 1.3em;
  font-weight: bold;
  color: #5fa82c;
  margin: 0 0 0.5em 0;
  display: block;
  cursor: pointer;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.terms__input {
  position: absolute;
  top: 0;
  opacity: 0;
  left: 0;
}
.terms__check {
  width: 20px;
  height: 20px;
  border: 1px solid #d7e6cc;
  vertical-align: -0.1em;
  margin-right: 0.5em;
  display: inline-block;
  background-color: #fff;
  position: relative;
}
.terms__check:after {
  content: "";
  display: block;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-left: 2px solid #5fa82c;
  border-bottom: 2px solid #5fa82c;
  position: absolute;
  top: 4px;
  left: 2px;
  width: 14px;
  height: 7px;
  opacity: 0;
}
input:checked ~ .terms__check:after {
  opacity: 1;
}
.cards {
  background-color: #fff;
}
.cards--in-hero {
  max-width: 21em;
}
.cards--slider {
  text-align: center;
  font-style: italic;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.cards__card {
  padding: 2.5em;
  padding-top: 1.85em;
  line-height: 1.8;
}
.cards--slider .cards__card {
  padding: 20px 35px 80px 35px;
}
.cards--slider .cards__card:not(.slick-slide):nth-child(n+2) {
  display: none;
}
.cards__logo {
  background-size: cover;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 220px;
  margin: 0 auto;
}
.cards__logo:after {
  content: "";
  display: block;
  padding-top: 57.8947368421%;
}
.cards__buttons {
  margin-top: 2em;
}
.cards .slick-dots {
  top: auto;
  bottom: 25px;
}
.cards h2 {
  font-size: 1.3em;
  margin: 0.2em 0 0.5em 0;
}
@media (min-width:750px) {
  .filter {
    display: flex;
    justify-content: space-between;
  }
}
.filter__items {
  display: flex;
  margin: 0 0 20px 0;
  align-items: flex-start;
  font-size: 0.7em;
}
@media (min-width:750px) {
  .filter__items {
    font-size: inherit;
    margin: 0;
  }
}
.filter__select {
  font-size: inherit;
  font-family: inherit;
  border: 2px solid #5fa82c;
  padding: 0.8em 2.4em 0.8em 0.9em;
  font-weight: bold;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMy44IDguMyIgdmlld0JveD0iMCAwIDEzLjggOC4zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Im02LjkgOC4zLTYuOS02LjkgMS40LTEuNCA1LjUgNS41IDUuNS01LjUgMS40IDEuNHoiLz48L3N2Zz4=);
  background-size: 0.9em auto;
  background-position: right 0.9em top 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.filter__select::-ms-expand {
  display: none;
}
.filter__select + .filter__select {
  margin-left: 1.5em;
}
.filter__year {
  font-size: inherit;
  font-family: inherit;
  border: 2px solid #707070;
  color: #707070;
  padding: 0.8em 2.4em 0.8em 2em;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMy44IDguMyIgdmlld0JveD0iMCAwIDEzLjggOC4zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGw9IiM3MDcwNzAiIGQ9Im02LjkgOC4zLTYuOS02LjkgMS40LTEuNCA1LjUgNS41IDUuNS01LjUgMS40IDEuNHoiLz48L3N2Zz4=);
  background-size: 0.7em auto;
  background-position: right 0.9em top 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.filter__year::-ms-expand {
  display: none;
}
.filter__year + .filter__year {
  margin-left: 1.5em;
}
.filter__button {
  padding: 0.9em 1em;
  text-transform: uppercase;
  color: #707070;
  border: 2px solid #707070;
  cursor: pointer;
  text-decoration: none;
  width: 12em;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.filter__button[href]:hover {
  color: #000;
  border-color: #000;
}
.filter__button + .filter__button {
  margin-left: 1em;
}
.filter__button--active {
  cursor: default;
  border-color: #5fa82c;
  background-color: #5fa82c;
  color: #fff;
}
.projects__blocks {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
.projects__block {
  display: block;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  margin: 10px 15px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: calc(100% - 30px);
}
.projects__block:after {
  content: "";
  display: block;
  padding-top: 66.5865384615%;
}
@media (min-width:750px) {
  .projects__block {
    margin: 15px;
    width: calc(50% - 30px);
  }
}
@media (min-width:1200px) {
  .projects__block {
    width: calc(33.33% - 30px);
  }
}
.projects__block:before {
  width: 100%;
  height: 4px;
  content: "";
  background-color: #5fa82c;
  display: block;
  transition: transform 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform-origin: 0 0;
  transform: scaleX(0);
  z-index: 10;
}
.projects__block:hover {
  z-index: 10;
}
.projects__block:hover:before {
  transform: scaleX(1);
}
.projects__title {
  position: absolute;
  color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.55);
  padding: 25px 35px 22px 35px;
  transition: background-color 0.3s;
}
.projects__block:hover .projects__title {
  background-color: rgba(0, 0, 0, 0.65);
}
.projects__title h2 {
  margin: 0;
  font-size: 1.3em;
}
.projects__title h2:after {
  width: 1.8em;
  height: 0.12em;
  content: "";
  background-color: #5fa82c;
  display: block;
  transition: opacity 0.3s;
  margin: 0.2em 0 0 0;
}
.projects__block:hover .projects__title h2:after {
  opacity: 0;
}
.projects__overlay {
  position: absolute;
  top: 100%;
  left: 0;
  height: calc(100% + 30px);
  right: 0;
  padding: 35px 40px;
  background-color: #fff;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  display: none;
  line-height: 1.4;
  font-size: 16px;
}
@media (max-width:989px) {
  .projects__overlay {
    display: none !important;
  }
}
.projects__block:hover .projects__overlay {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  display: flex;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.projects__overlay .button {
  background-color: #5fa82c !important;
}
.projects__text {
  width: 100%;
  max-height: calc(100% - 60px);
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}
.projects__text:after {
  position: absolute;
  bottom: 0;
  z-index: 5;
  left: 0;
  right: 0;
  content: "";
  display: block;
  height: 40px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
.hero {
  padding: 3.8em;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
@media (max-width:989px) {
  .hero--hide-mobile {
    display: none;
  }
}
.hero__content {
  max-width: 75em;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (min-width:750px) {
  .hero__content {
    min-height: 25em;
  }
}
.hero--has-card .hero__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__slides {
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero__slide {
  transition: opacity 0.3s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.hero__slide.active {
  opacity: 1;
}
.hero__overlay {
  background-color: rgba(153, 153, 153, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.news {
  display: flex;
  flex-wrap: wrap;
  margin: -0.875em;
}
.news--single {
  margin: 0;
  width: 100%;
  max-width: 500px;
}
.news__block {
  display: block;
  background-color: #fff;
  margin: 0.875em;
  width: calc(100% - 1.75em);
  position: relative;
  text-decoration: none;
}
@media (min-width:750px) {
  .news__block {
    width: calc(50% - 1.75em);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width:1200px) {
  .news__block {
    width: calc(33.33% - 1.75em);
  }
}
.news__block[href]:hover {
  transform: translateY(-6px);
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.2);
}
.news--single .news__block {
  width: 100%;
  margin: 0;
}
.news__img {
  background-size: cover;
  background-position: 50% 50%;
}
.news__img:after {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}
.news__content {
  padding: 2.5em;
  position: relative;
}
@media (min-width:750px) {
  .news__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.news--single .news__content {
  padding: 2em;
}
.news__content .button {
  text-transform: uppercase;
  padding-left: 3em;
  padding-right: 3em;
  background-color: #5fa82c;
}
.news__content .button.button--next {
  padding-left: 2em;
  padding-right: 3.2em;
}
.news__block--blue .news__content .button {
  background-color: #2c7ba8;
}
.news__content h2 {
  text-decoration: underline;
  line-height: 1.35;
  margin: 0 0 0.7em 0;
}
.news__content h2:before {
  content: "";
  display: block;
  width: 1.8em;
  height: 4px;
  margin: 0 0 0.6em 0;
  background-color: #5fa82c;
}
.news__block--blue .news__content h2:before {
  background-color: #2c7ba8;
}
.news__info {
  padding: 0;
  list-style: none;
  margin: 0.2em 0 2em 0;
}
.news__info-item {
  margin: 0 0 0.5em 0;
  padding: 0.2em 0.2em 0.2em 2em;
  background-size: 1.3em auto;
  line-height: 1.2;
  font-weight: 500;
  background-position: 0 0.2em;
  background-repeat: no-repeat;
}
.news__info-item--time {
  background-image: url(../img/vector/icon-clock-primary.svg);
}
.news__block--blue .news__info-item--time {
  background-image: url(../img/vector/icon-clock-blue.svg);
}
.news__info-item--map {
  background-image: url(../img/vector/icon-map-primary.svg);
  min-height: 4em;
}
.news__block--blue .news__info-item--map {
  background-image: url(../img/vector/icon-map-blue.svg);
}
.news--single .news__info-item--map {
  min-height: 2.2em;
}
.news__badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #5fa82c;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  padding: 0.5em 1em;
  text-transform: uppercase;
}
.news__block--blue .news__badge {
  background-color: #2c7ba8;
}
.news--single .news__badge {
  top: auto;
  bottom: 100%;
}
.news__text {
  margin: 0 0 1.8em 0;
}
.news__date {
  position: absolute;
  top: 0.7em;
  right: 1em;
  font-size: 0.825em;
  color: #b2b2b2;
}
.archive__filter {
  margin: 0 0 1em 0;
  display: flex;
}
.archive__select {
  font-size: inherit;
  font-family: inherit;
  border: none;
  background: transparent;
  padding: 0.4em 2.1em 0.4em 0;
  font-weight: bold;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTMuOCA4LjMiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDEzLjggOC4zOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9PC9zdHlsZT48cG9seWxpbmUgY2xhc3M9InN0MCIgcG9pbnRzPSIwLjcsMC43IDYuOSw2LjkgMTMuMSwwLjcgIi8+PC9zdmc+);
  background-size: 0.9em auto;
  background-position: right 0.9em top 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.archive__select::-ms-expand {
  display: none;
}
.archive__select + .archive__select {
  margin-left: 1.5em;
}
.archive__table table {
  width: 100%;
  border-spacing: 0;
}
@media (max-width:749px) {
  .archive__table thead {
    display: none;
  }
}
.archive__table td {
  padding: 1em 0;
}
@media (max-width:749px) {
  .archive__table td {
    padding: 0;
    display: inline-block;
  }
  .archive__table td.archive__name, .archive__table td.archive__date {
    display: block;
  }
}
@media (max-width:749px) {
  .archive__table tr {
    display: block;
    margin: 0 0 1em 0;
  }
}
.archive__th {
  text-align: left;
  font-size: 0.875em;
  font-weight: normal;
  color: #a9a9a9;
  padding: 0.5em 0;
  border-bottom: 2px solid #a9a9a9;
}
.archive__th--date {
  width: 8em;
}
.archive__th--download, .archive__th--photogallery {
  width: 7em;
  text-align: center;
}
.archive__ico {
  display: block;
  width: 100%;
  background-size: 1.8em auto;
  height: 2em;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width:749px) {
  .archive__ico {
    width: auto;
    background-position: 0 0%;
    padding-left: 2.5em;
    display: inline-block;
    margin: 0 1em 0 0;
    color: #5fa82c;
    text-decoration: none;
  }
}
@media (min-width:750px) {
  .archive__ico {
    background-position: 50% 50%;
    text-indent: -150px;
  }
}
.archive__ico--download {
  background-image: url(../img/vector/icon-download.svg);
}
.archive__ico--photogallery {
  background-image: url(../img/vector/icon-photogallery.svg);
}
.archive__name {
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.3;
}
@media (max-width:749px) {
  .archive__name {
    margin: 0 0 0.6em 0;
  }
}
.archive__name a:hover {
  color: #5fa82c;
}
.archive__more {
  display: flex;
  margin-top: 2em;
  justify-content: center;
}
.articles {
  margin-top: 2em;
}
.articles__block {
  display: block;
  text-decoration: none;
  color: inherit;
}
.articles__block:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.2em;
  margin-bottom: 2em;
}
.articles__block h2 {
  margin: 0 0 0.7em 0;
}
.articles__block:hover h2 {
  text-decoration: underline;
}
.articles__block p {
  max-width: 60em;
  margin: 0 0 0.5em 0;
}
.articles__buttons {
  color: #5fa82c;
}
.articles__buttons a {
  text-decoration: none;
  font-weight: 500;
}
.articles__buttons a:hover {
  color: #2c7ba8;
}
.articles__read {
  text-decoration: none;
  font-weight: 500;
  color: #5fa82c;
  transition: color 0.3s;
}
a:hover .articles__read {
  color: #2c7ba8;
}
.dates {
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 1.7em 0;
}
.dates ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width:750px) {
  .dates ul {
    display: flex;
    align-items: center;
  }
}
@media (max-width:749px) {
  .dates li + li {
    margin-top: 1em;
  }
}
@media (min-width:750px) {
  .dates li + li {
    margin-left: 2.5em;
  }
}
.dates__location, .dates__time {
  background-position: 0 50%;
  background-size: 1.2em auto;
  background-repeat: no-repeat;
  padding: 0 0 0 2em;
  min-height: 2em;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.dates__location {
  background-image: url(../img/vector/icon-map-primary.svg);
}
.dates__time {
  background-image: url(../img/vector/icon-clock-primary.svg);
}
.admissions {
  display: flex;
  margin: -0.7em;
  margin-bottom: 4em;
  flex-wrap: wrap;
}
@media (min-width:990px) {
  .admissions {
    flex-wrap: nowrap;
  }
}
.admissions__block {
  width: 17em;
  margin: 0.7em;
  background-color: #fff;
  padding: 1.8em;
  line-height: 1.4;
  position: relative;
  padding-bottom: 3.3em;
  box-shadow: 0.1em 0.1em 1em 0 rgba(0, 0, 0, 0.1);
  font-weight: bold;
}
.admissions__block--info {
  font-weight: normal;
  width: auto;
  padding: 1.8em 2.3em;
  font-size: 0.875em;
  border-top: 3px solid #5fa82c;
}
.admissions__price {
  font-size: 1.8em;
  font-weight: bold;
  position: absolute;
  bottom: 0.6em;
  left: 0.9em;
  right: 0.9em;
  color: #5fa82c;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  margin: -0.25em;
  margin-bottom: 4em;
  font-size: 10px;
}
@media (min-width:990px) {
  .logos {
    font-size: inherit;
  }
}
.logos__logo {
  display: block;
  text-decoration: none;
  margin: 0.25em;
  width: 14em;
  padding: 0.5em;
  background-color: #fff;
}
.logos__logo img {
  display: block;
}
.checkbox-items {
  margin: 1.5em 0;
}
.checkbox-items ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.checkbox-items li + li {
  margin-top: 0.5em;
}
.banner {
  background-color: #e8e8e8;
  margin: 2.5em 0;
}
.banner__placeholder {
  height: 15em;
}
.sgallery {
  margin-top: 4em;
  padding: 1em 2.5em;
  box-shadow: 0.2em 0.2em 2em 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.sgallery__item {
  padding: 0.7em;
}
.sgallery__img {
  background-size: cover;
  background-position: 50% 50%;
  background-color: #eee;
  display: block;
  transition: transform 0.3s;
  transform: translateX(-5em);
}
.sgallery__img:after {
  content: "";
  display: block;
  padding-top: 75%;
}
.sgallery__item.slick-active .sgallery__img {
  transform: translateX(0);
}
.sgallery__item.slick-active ~ .sgallery__item:not(.slick-active) .sgallery__img {
  transform: translateX(5em);
}
.sgallery .slick-list, .sgallery .slick-track {
  overflow: visible;
}
.sgallery .slick-arrow {
  position: absolute;
  top: 0;
  animation-name: fadeIn;
  animation-duration: 0.3s;
  z-index: 10;
  width: 2em;
  height: 100%;
  background-size: 1em auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-indent: -100px;
  overflow: hidden;
}
.sgallery .slick-arrow.slick-disabled {
  animation-name: none;
  visibility: hidden;
}
.sgallery .slick-arrow.slick-prev {
  right: 100%;
  background-image: url(../img/vector/arrow-left.svg);
}
.sgallery .slick-arrow.slick-next {
  left: 100%;
  background-image: url(../img/vector/arrow-right.svg);
}
.cnt {
  margin-top: 3em;
}
@media (min-width:750px) {
  .cnt {
    display: flex;
  }
}
.cnt__text {
  margin-bottom: 2em;
}
@media (min-width:750px) {
  .cnt__text {
    width: 45%;
    margin-bottom: 0;
    padding-right: 4em;
  }
}
.cnt__text h2 {
  margin-top: 0 !important;
}
.cnt__map {
  height: 300px;
}
@media (min-width:750px) {
  .cnt__map {
    width: 55%;
  }
}
.cnt__map iframe {
  width: 100%;
  height: 100%;
}
.news-slider {
  max-width: 500px;
  width: 100%;
}
.news-slider .slick-dots {
  top: auto;
  bottom: 3.15em;
  justify-content: flex-end;
  right: 2.3em;
}
.news-slider .news__block {
  transform: none !important;
}
.news-slider .news--single:not(.slick-slide):nth-child(n+2) {
  display: none;
}
.news-slider .slick-track {
  display: flex;
}
.news-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
  padding: 2em 0;
}
.proj-img img {
  display: block;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
}
.gallery__items {
  display: flex;
  margin: -5px;
  flex-wrap: wrap;
}
.gallery__item {
  display: block;
  margin: 5px;
  width: calc(50% - 10px);
}
.gallery__item:hover {
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width:750px) {
  .gallery__item {
    width: calc(33.33% - 10px);
  }
}
@media (min-width:990px) {
  .gallery__item {
    width: calc(25% - 10px);
  }
}
@media (min-width:1200px) {
  .gallery__item {
    width: calc(20% - 10px);
  }
}
.gallery__buttons {
  text-align: center;
  margin-top: 60px;
}
.gallery img {
  display: block;
}
.cbanner {
  display: block;
  padding: 30px 20px;
  background-image: url(../img/content/cbanner.jpg?v2);
  background-size: cover;
  background-position: 50% 50%;
  text-decoration: none;
  color: #fff;
  box-shadow: inset 0 5px 12px rgba(0, 0, 0, 0.2);
  transition: color 0.3s, box-shadow 0.3s;
}
@media (min-width:990px) {
  .cbanner {
    padding: 5em 2em;
  }
}
.cbanner:hover {
  text-decoration: underline;
  box-shadow: inset 0 5px 12px rgba(0, 0, 0, 0.7);
}
.cbanner__inside {
  text-align: center;
}
.cbanner h1, .cbanner h2, .cbanner h3 {
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  color: inherit;
  font-size: 20px;
}
@media (min-width: 500px) {
  .cbanner h1, .cbanner h2, .cbanner h3 {
    font-size: 4vw;
  }
}
@media (min-width: 750px) {
  .cbanner h1, .cbanner h2, .cbanner h3 {
    font-size: 30px;
  }
}
@media (min-width:990px) {
  .cbanner h1, .cbanner h2, .cbanner h3 {
    font-size: 30px;
  }
}
@media (min-width:990px) and (min-width: 1200px) {
  .cbanner h1, .cbanner h2, .cbanner h3 {
    font-size: 2.5vw;
  }
}
@media (min-width:990px) and (min-width: 2400px) {
  .cbanner h1, .cbanner h2, .cbanner h3 {
    font-size: 60px;
  }
}
.cbanner em {
  display: inline-block;
  font-style: inherit;
  position: relative;
}
.cbanner em:after {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.08em;
  background-color: #920404;
  width: 100%;
  content: "";
  display: block;
}
.hp__box {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.3s;
  animation-fill-mode: backwards;
}
.hp-slider {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.6s;
  animation-fill-mode: backwards;
}
.cbanner__inside {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.9s;
  animation-fill-mode: backwards;
}
.partners__inside, .footer__inside, .graph__legend, .graph__info, .section__inside {
  animation-name: fadeIn;
  animation-duration: 0.7s;
  animation-delay: 0.2s;
  animation-fill-mode: backwards;
}
.news-slider, .cards--in-hero {
  animation-name: fadeInUp;
  animation-duration: 0.7s;
  animation-delay: 0.1s;
  animation-fill-mode: backwards;
}
.news__block, .projects__block {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: backwards;
}
.news__block:nth-child(1), .projects__block:nth-child(1) {
  animation-delay: 0.08s;
}
.news__block:nth-child(2), .projects__block:nth-child(2) {
  animation-delay: 0.16s;
}
.news__block:nth-child(3), .projects__block:nth-child(3) {
  animation-delay: 0.24s;
}
.news__block:nth-child(4), .projects__block:nth-child(4) {
  animation-delay: 0.32s;
}
.news__block:nth-child(5), .projects__block:nth-child(5) {
  animation-delay: 0.4s;
}
.news__block:nth-child(6), .projects__block:nth-child(6) {
  animation-delay: 0.48s;
}
.news__block:nth-child(7), .projects__block:nth-child(7) {
  animation-delay: 0.56s;
}
.news__block:nth-child(8), .projects__block:nth-child(8) {
  animation-delay: 0.64s;
}
.news__block:nth-child(9), .projects__block:nth-child(9) {
  animation-delay: 0.72s;
}
.news__block:nth-child(10), .projects__block:nth-child(10) {
  animation-delay: 0.8s;
}
.news__block:nth-child(11), .projects__block:nth-child(11) {
  animation-delay: 0.88s;
}
.news__block:nth-child(12), .projects__block:nth-child(12) {
  animation-delay: 0.96s;
}
.news__block:nth-child(13), .projects__block:nth-child(13) {
  animation-delay: 1.04s;
}
.news__block:nth-child(14), .projects__block:nth-child(14) {
  animation-delay: 1.12s;
}
.news__block:nth-child(15), .projects__block:nth-child(15) {
  animation-delay: 1.2s;
}
.news__block:nth-child(16), .projects__block:nth-child(16) {
  animation-delay: 1.28s;
}
.news__block:nth-child(17), .projects__block:nth-child(17) {
  animation-delay: 1.36s;
}
.news__block:nth-child(18), .projects__block:nth-child(18) {
  animation-delay: 1.44s;
}
.news__block:nth-child(19), .projects__block:nth-child(19) {
  animation-delay: 1.52s;
}
.news__block:nth-child(20), .projects__block:nth-child(20) {
  animation-delay: 1.6s;
}
.news__block:nth-child(21), .projects__block:nth-child(21) {
  animation-delay: 1.68s;
}
.news__block:nth-child(22), .projects__block:nth-child(22) {
  animation-delay: 1.76s;
}
.news__block:nth-child(23), .projects__block:nth-child(23) {
  animation-delay: 1.84s;
}
.news__block:nth-child(24), .projects__block:nth-child(24) {
  animation-delay: 1.92s;
}
.news__block:nth-child(25), .projects__block:nth-child(25) {
  animation-delay: 2s;
}
.news__block:nth-child(26), .projects__block:nth-child(26) {
  animation-delay: 2.08s;
}
.news__block:nth-child(27), .projects__block:nth-child(27) {
  animation-delay: 2.16s;
}
.news__block:nth-child(28), .projects__block:nth-child(28) {
  animation-delay: 2.24s;
}
.news__block:nth-child(29), .projects__block:nth-child(29) {
  animation-delay: 2.32s;
}
.news__block:nth-child(30), .projects__block:nth-child(30) {
  animation-delay: 2.4s;
}
.news__block:nth-child(31), .projects__block:nth-child(31) {
  animation-delay: 2.48s;
}
.news__block:nth-child(32), .projects__block:nth-child(32) {
  animation-delay: 2.56s;
}
.news__block:nth-child(33), .projects__block:nth-child(33) {
  animation-delay: 2.64s;
}
.news__block:nth-child(34), .projects__block:nth-child(34) {
  animation-delay: 2.72s;
}
.news__block:nth-child(35), .projects__block:nth-child(35) {
  animation-delay: 2.8s;
}
.news__block:nth-child(36), .projects__block:nth-child(36) {
  animation-delay: 2.88s;
}
.news__block:nth-child(37), .projects__block:nth-child(37) {
  animation-delay: 2.96s;
}
.news__block:nth-child(38), .projects__block:nth-child(38) {
  animation-delay: 3.04s;
}
.news__block:nth-child(39), .projects__block:nth-child(39) {
  animation-delay: 3.12s;
}
.news__block:nth-child(40), .projects__block:nth-child(40) {
  animation-delay: 3.2s;
}
.news__block:nth-child(41), .projects__block:nth-child(41) {
  animation-delay: 3.28s;
}
.news__block:nth-child(42), .projects__block:nth-child(42) {
  animation-delay: 3.36s;
}
.news__block:nth-child(43), .projects__block:nth-child(43) {
  animation-delay: 3.44s;
}
.news__block:nth-child(44), .projects__block:nth-child(44) {
  animation-delay: 3.52s;
}
.news__block:nth-child(45), .projects__block:nth-child(45) {
  animation-delay: 3.6s;
}
.news__block:nth-child(46), .projects__block:nth-child(46) {
  animation-delay: 3.68s;
}
.news__block:nth-child(47), .projects__block:nth-child(47) {
  animation-delay: 3.76s;
}
.news__block:nth-child(48), .projects__block:nth-child(48) {
  animation-delay: 3.84s;
}
.news__block:nth-child(49), .projects__block:nth-child(49) {
  animation-delay: 3.92s;
}
.news__block:nth-child(50), .projects__block:nth-child(50) {
  animation-delay: 4s;
}
.rd__item {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-delay: 0.1s;
  animation-fill-mode: backwards;
}
.rd--animate .rd__item:nth-child(1) {
  animation-delay: 0.04s;
}
.rd--animate .rd__item:nth-child(2) {
  animation-delay: 0.08s;
}
.rd--animate .rd__item:nth-child(3) {
  animation-delay: 0.12s;
}
.rd--animate .rd__item:nth-child(4) {
  animation-delay: 0.16s;
}
.rd--animate .rd__item:nth-child(5) {
  animation-delay: 0.2s;
}
.rd--animate .rd__item:nth-child(6) {
  animation-delay: 0.24s;
}
.rd--animate .rd__item:nth-child(7) {
  animation-delay: 0.28s;
}
.rd--animate .rd__item:nth-child(8) {
  animation-delay: 0.32s;
}
.rd--animate .rd__item:nth-child(9) {
  animation-delay: 0.36s;
}
.rd--animate .rd__item:nth-child(10) {
  animation-delay: 0.4s;
}
.rd--animate .rd__item:nth-child(11) {
  animation-delay: 0.44s;
}
.rd--animate .rd__item:nth-child(12) {
  animation-delay: 0.48s;
}
.rd--animate .rd__item:nth-child(13) {
  animation-delay: 0.52s;
}
.rd--animate .rd__item:nth-child(14) {
  animation-delay: 0.56s;
}
.rd--animate .rd__item:nth-child(15) {
  animation-delay: 0.6s;
}
.rd--animate .rd__item:nth-child(16) {
  animation-delay: 0.64s;
}
.rd--animate .rd__item:nth-child(17) {
  animation-delay: 0.68s;
}
.rd--animate .rd__item:nth-child(18) {
  animation-delay: 0.72s;
}
.rd--animate .rd__item:nth-child(19) {
  animation-delay: 0.76s;
}
.rd--animate .rd__item:nth-child(20) {
  animation-delay: 0.8s;
}
.rd--animate .rd__item:nth-child(21) {
  animation-delay: 0.84s;
}
.rd--animate .rd__item:nth-child(22) {
  animation-delay: 0.88s;
}
.rd--animate .rd__item:nth-child(23) {
  animation-delay: 0.92s;
}
.rd--animate .rd__item:nth-child(24) {
  animation-delay: 0.96s;
}
.rd--animate .rd__item:nth-child(25) {
  animation-delay: 1s;
}
.rd--animate .rd__item:nth-child(26) {
  animation-delay: 1.04s;
}
.rd--animate .rd__item:nth-child(27) {
  animation-delay: 1.08s;
}
.rd--animate .rd__item:nth-child(28) {
  animation-delay: 1.12s;
}
.rd--animate .rd__item:nth-child(29) {
  animation-delay: 1.16s;
}
.rd--animate .rd__item:nth-child(30) {
  animation-delay: 1.2s;
}
.rd--animate .rd__item:nth-child(31) {
  animation-delay: 1.24s;
}
.rd--animate .rd__item:nth-child(32) {
  animation-delay: 1.28s;
}
.rd--animate .rd__item:nth-child(33) {
  animation-delay: 1.32s;
}
.rd--animate .rd__item:nth-child(34) {
  animation-delay: 1.36s;
}
.rd--animate .rd__item:nth-child(35) {
  animation-delay: 1.4s;
}
.rd--animate .rd__item:nth-child(36) {
  animation-delay: 1.44s;
}
.rd--animate .rd__item:nth-child(37) {
  animation-delay: 1.48s;
}
.rd--animate .rd__item:nth-child(38) {
  animation-delay: 1.52s;
}
.rd--animate .rd__item:nth-child(39) {
  animation-delay: 1.56s;
}
.rd--animate .rd__item:nth-child(40) {
  animation-delay: 1.6s;
}
.rd--animate .rd__item:nth-child(41) {
  animation-delay: 1.64s;
}
.rd--animate .rd__item:nth-child(42) {
  animation-delay: 1.68s;
}
.rd--animate .rd__item:nth-child(43) {
  animation-delay: 1.72s;
}
.rd--animate .rd__item:nth-child(44) {
  animation-delay: 1.76s;
}
.rd--animate .rd__item:nth-child(45) {
  animation-delay: 1.8s;
}
.rd--animate .rd__item:nth-child(46) {
  animation-delay: 1.84s;
}
.rd--animate .rd__item:nth-child(47) {
  animation-delay: 1.88s;
}
.rd--animate .rd__item:nth-child(48) {
  animation-delay: 1.92s;
}
.rd--animate .rd__item:nth-child(49) {
  animation-delay: 1.96s;
}
.rd--animate .rd__item:nth-child(50) {
  animation-delay: 2s;
}
.projs__block, .visions__block {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: backwards;
}
.projs__block:nth-child(1), .visions__block:nth-child(1) {
  animation-delay: 0.2s;
}
.projs__block:nth-child(2), .visions__block:nth-child(2) {
  animation-delay: 0.4s;
}
.projs__block:nth-child(3), .visions__block:nth-child(3) {
  animation-delay: 0.6s;
}
.projs__block:nth-child(4), .visions__block:nth-child(4) {
  animation-delay: 0.8s;
}
.projs__block:nth-child(5), .visions__block:nth-child(5) {
  animation-delay: 1s;
}
.projs__block:nth-child(6), .visions__block:nth-child(6) {
  animation-delay: 1.2s;
}
.projs__block:nth-child(7), .visions__block:nth-child(7) {
  animation-delay: 1.4s;
}
.projs__block:nth-child(8), .visions__block:nth-child(8) {
  animation-delay: 1.6s;
}
.projs__block:nth-child(9), .visions__block:nth-child(9) {
  animation-delay: 1.8s;
}
.projs__block:nth-child(10), .visions__block:nth-child(10) {
  animation-delay: 2s;
}
