/* Delagics CA
  http://delagics.com
  Copyright 2013-2016 Delagics Creative Agency
  Licensed under MIT (https://opensource.org/licenses/MIT) */
/* ---------------------------------------------------------------------------------------------------------------------
  Owl Carousel
  ---------------------------------------------------------------------------------------------------------------------- */
.carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.carousel__stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.carousel__stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.carousel__stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.carousel__item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.carousel__item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.carousel__nav.disabled,
.carousel__dots.disabled {
  display: none;
}

.carousel__nav .carousel--prev,
.carousel__nav .carousel--next,
.carousel__dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel__dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel__dot {
  height: 15px;
  width: 15px;
  border-radius: 15px;
  background-color: #7f8c8d;
}

.carousel__dot:not(:last-child) {
  margin-right: 10px;
}

.carousel__dot.active {
  background-color: #2980b9;
}

.carousel.carousel--loaded {
  display: block;
}

.carousel.carousel--loading {
  opacity: 0;
  display: block;
}

.carousel.carousel--hidden {
  opacity: 0;
}

.carousel.carousel--refresh .carousel__item {
  visibility: hidden;
}

.carousel.carousel--drag .carousel__item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel.carousel--grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.carousel-rtl {
  direction: rtl;
}

.carousel.carousel-rtl .carousel__item {
  float: right;
}

.no-js .carousel {
  display: block;
}

.carousel .animated {
  -webkit-animation-duration: 1000ms;
       -o-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}

.carousel .owl-animated-in {
  z-index: 0;
}

.carousel .owl-animated-out {
  z-index: 1;
}

.carousel .fadeOut {
  -webkit-animation-name: fadeOut;
       -o-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.carousel-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.carousel .carousel-item .carousel-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.carousel .carousel-item img.carousel-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.carousel .carousel-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.carousel .carousel-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: -o-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease, -o-transform 100ms ease;
}

.carousel .carousel-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
      -ms-transform: scale(1.3, 1.3);
       -o-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.carousel .carousel-video-playing .carousel-video-tn,
.carousel .carousel-video-playing .carousel-video-play-icon {
  display: none;
}

.carousel .carousel-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.carousel .carousel-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* ---------------------------------------------------------------------------------------------------------------------
  Other
  ---------------------------------------------------------------------------------------------------------------------- */
@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* Sticky footer styles */
html,
body {
  height: 100%;
  min-height: 100%;
}

html {
  font-size: 14px;
  position: relative;
}

body {
  background: #dadada;/*f5f5f5*/
}

@media (min-width: 48em) {
  body:not(.error-page) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body:not(.error-page) main {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media (min-width: 48em) {
  .break--toggled-until-sm {
    display: none;
  }
}

@media (min-width: 62em) {
  .break--toggled-until-md {
    display: none;
  }
}

@media (min-width: 75em) {
  .break--toggled-until-lg {
    display: none;
  }
}

a {
  color: #2c3e50;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

a:hover, a:active, a:focus {
  color: #2980b9;
  text-decoration: none;
}

.links--on-dark a {
  color: #fff;
}

.links--on-dark a:hover, .links--on-dark a:active, .links--on-dark a:focus {
  color: #626262;
}

.list--vertical, .list--horizontal, .social--horizontal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list--horizontal li, .social--horizontal li {
  display: inline-block;
}

.list__item {
  font-size: 1rem;
  line-height: 1.28571429;
}

.list__item--primary {
  font-size: 1.14285714rem;
  line-height: 1.25;
  font-weight: bold;
}

.list__item--primary a {
  color: #fff;
}

.error-page {
  background: #222328;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.error-page-icon {
  max-width: 300px;
  text-align: center;
  margin: 0 auto 50px;
}

.error-page-icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.error-page-message {
  font-weight: normal;
  margin-bottom: 50px;
}

.identity-logo {
  text-align: center;
}

@media (min-width: 48em) {
  .identity-logo {
    text-align: left;
  }
}

.identity-logo a {
  outline: none;
}

.identity-logo a:hover, .identity-logo a:focus, .identity-logo a:active {
  opacity: .8;
}

.identity-logo img {
  width: 220px;
}

.identity-logo--grayscale img {
  width: 180px;
}

.lang-switch {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}

.lang-switch li {
  display: inline-block;
}

@media (min-width: 48em) {
  .lang-switch {
    margin-bottom: 30px;
  }
}

.lang-switch__item:not(:last-child) {
  padding-right: 10px;
}

.lang-switch__item a, .lang-switch__item span {
  color: #2980b9;
}

.lang-switch__item a:hover, .lang-switch__item a:active, .lang-switch__item a:focus, .lang-switch__item span:hover, .lang-switch__item span:active, .lang-switch__item span:focus {
  color: #071e33;
}

.lang-switch__item--current a, .lang-switch__item--current span {
  color: #7f8c8d;
  cursor: default;
}

.lang-switch__item--current a:hover, .lang-switch__item--current a:active, .lang-switch__item--current a:focus, .lang-switch__item--current span:hover, .lang-switch__item--current span:active, .lang-switch__item--current span:focus {
  cursor: default;
  color: #7f8c8d;
  outline: none;
}

.header--left {
  margin: 15px 0;
}

@media (min-width: 48em) {
  .header--left {
    margin: 30px 0;
  }
}

.header--right {
  margin: 15px 0;
  text-align: center;
}

@media (min-width: 48em) {
  .header--right {
    margin: 30px 0;
    text-align: right;
  }
}

.footer {
  background: #222328;
  color: #ddd;
}

.footer__content-divider {
  height: 1px;
  background: #2b2d37;
  border: none;
  padding: 0;
  margin: 0;
}

.footer__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  padding-top: 40px;
  padding-bottom: 25px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.footer__column {
  margin: 0 15px 15px;
}

.search {
  display: inline-block;
}

.search::after {
  clear: both;
  content: "";
  display: table;
}

.search-input, .search-button {
  border: 0;
  background-image: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
}

.search-input {
  border-bottom: 2px solid #2980b9;
  height: 45px;
  width: 230px;
  padding-left: 15px;
}

.search-input::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #7f8c8d;
}

.search-input::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #7f8c8d;
}

.search-input:-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #7f8c8d;
}

.search-input:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #7f8c8d;
}

.search-button {
  font-size: 20px;
  height: 45px;
  width: 45px;
  border: 2px solid #2980b9;
  border-radius: 45px;
  color: #2980b9;
  margin-left: -23px;
  -webkit-transition: color 220ms, background-color 200ms;
  -o-transition: color 220ms, background-color 200ms;
  transition: color 220ms, background-color 200ms;
}

.search-button:hover, .search-button:active, .search-button:focus {
  color: #fff;
  background-color: #2980b9;
}

.editors-choice {
  position: relative;
  margin-bottom: 30px;
}

.editors-choice__header {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.editors-choice__header-button {
  display: inline-block;
  padding: 3px 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.editors-choice__header-button span {
  display: none;
}

@media (min-width: 62em) {
  .editors-choice__header-button span {
    display: inline;
  }
}

.editors-choice__header-button:hover, .editors-choice__header-button:focus, .editors-choice__header-button:active {
  background: #fff;
  color: #333333;
}

.editors-choice__item {
  position: relative;
}

.editors-choice__time {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}

.editors-choice__caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: #2c3e50;
  color: #fff;
  padding: 15px;
  height: 120px;
  width: 100%;
}

@media (min-width: 48em) {
  .editors-choice__caption {
    display: block;
    height: auto;
    background: rgba(44, 62, 80, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .editors-choice__caption:after {
    content: normal;
  }
}

.editors-choice__caption-title {
  margin: 0;
  font-size: 1.14285714rem;
  line-height: 1.25;
  font-weight: 500;
}

@media (min-width: 48em) {
  .editors-choice__caption-title {
    font-size: 1.28571429rem;
    line-height: 1.22222222;
  }
}

@media (min-width: 62em) {
  .editors-choice__caption-title {
    margin: 0 0 15px;
  }
}

.editors-choice__caption-title a {
  color: #fff;
}

.editors-choice__caption-title a:hover, .editors-choice__caption-title a:focus, .editors-choice__caption-title a:active {
  color: #b3b3b3;
}

.editors-choice__caption-desc {
  display: none;
}

@media (min-width: 62em) {
  .editors-choice__caption-desc {
    display: block;
    font-size: 1rem;
    line-height: 1.28571429;
    margin: 0;
  }
}

.editors-choice__presentation-image {
  height: 300px;
  background-position: 50% 50%;
  -webkit-background-size: cover;
          background-size: cover;
}

@media (min-width: 48em) {
  .editors-choice__presentation-image {
    height: 400px;
  }
}

.editors-choice__control {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 35px;
  width: 35px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 17.5px;
  color: #fff;
  text-align: center;
  line-height: 31px;
  cursor: pointer;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms;
}

.editors-choice__control.disabled {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
}

.editors-choice__control.disabled:hover, .editors-choice__control.disabled:focus, .editors-choice__control.disabled:active {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
}

.editors-choice__control:hover, .editors-choice__control:focus, .editors-choice__control:active {
  color: #000;
  background-color: #fff;
}

.editors-choice__control--prev {
  left: 15px;
}

.editors-choice__control--next {
  right: 15px;
}

.post-unit {
  margin-bottom: 30px;
}

.post-unit--events .post-unit__content {
  min-height: 360px;
}

.post-unit__header {
  height: 40px;
  font-size: 1.28571429rem;
  line-height: 40px;
  letter-spacing: .5px;
}

.post-unit__header-link {
  color: #fff;
}

.post-unit__header-link:hover, .post-unit__header-link:focus, .post-unit__header-link:active {
  color: #164666;
}

.post-unit__header--blue {
  background-color: #2980b9;
}

.post-unit__header--center {
  text-align: center;
}

.post-unit__content {
  background-color: #fff;
}

.post-unit__item {
  padding: 15px 15px 0;
}

.post-unit__item:not(:last-child) {
  border-bottom: 1px solid #ecf0f1;
}

.post-unit__body {
  padding-bottom: 15px;
}

.post-unit__title {
  font-size: 1.14285714rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 0 15px;
}

.post-unit__desc {
  font-size: 1rem;
  line-height: 1.28571429;
  font-weight: normal;
  margin: 0;
}

.post-unit__footer, .article__footer {
  width: 100%;
  list-style: none;
  padding: 0 0 15px;
  margin: 0;
}

.post-unit__footer-item, .article__footer-item {
  display: inline-block;
  color: #7f8c8d;
  font-size: 0.85714286rem;
  line-height: 1.28571429;
  font-weight: normal;
}

.post-unit__footer-item:not(:last-child), .article__footer-item:not(:last-child) {
  padding-right: 15px;
}

.post-unit__footer-item i, .article__footer-item i {
  font-size: 1rem;
  padding-right: 5px;
}

.post-unit__badge {
  display: inline-block;
  background-color: #f5f5f5;
  padding: 5px 10px;
  border-radius: 20px;
}

.post-unit__badge:hover, .post-unit__badge:focus, .post-unit__badge:active {
  background-color: #2980b9;
  color: #fff;
}

.post-unit__badge--with-icon i {
  padding-right: 5px;
}

.post-unit__presentation, .post-unit__person, .article__person {
  margin-bottom: 15px;
}

@media (min-width: 30em) {
  .post-unit__presentation, .post-unit__person, .article__person {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.post-unit__presentation-link, .post-unit__person-link, .article__person-link {
  display: block;
  margin-right: 15px;
}

@media (max-width: 29.99em) {
  .post-unit__presentation-link, .post-unit__person-link, .article__person-link {
    text-align: center;
    padding-bottom: 15px;
  }
}

.post-unit__presentation-link:hover, .post-unit__presentation-link:focus, .post-unit__presentation-link:active, .post-unit__person-link:hover, .article__person-link:hover, .post-unit__person-link:focus, .article__person-link:focus, .post-unit__person-link:active, .article__person-link:active {
  opacity: .8;
}

.post-unit__presentation-link-image, .post-unit__person-link-image, .article__person-link-image {
  height: 100px;
  width: 100px;
}

.post-unit__presentation-body {
  padding-bottom: 0;
}

.post-unit__person, .article__person {
  padding-right: 15px;
}

.expert-list-page .post-unit__person, .expert-list-page .article__person {
  background-color: #f5f5f5;
  padding: 15px;
}

.post-unit__person-link-image, .article__person-link-image {
  border-radius: 50%;
}

.post-unit__person-info-name, .post-unit__person-info-position, .post-unit__person-info-company {
  font-size: 1.28571429rem;
  line-height: 1.22222222;
}

.post-unit__person-info-name:not(:last-child), .post-unit__person-info-position:not(:last-child), .post-unit__person-info-company:not(:last-child) {
  margin-bottom: 5px;
}

.post-unit__person-info-name {
  font-weight: 500;
}

.post-unit__person-info-company {
  font-weight: 700;
}

.event-unit {
  margin-bottom: 30px;
}

.event-unit__item {
  padding: 15px 15px 0;
}

@media (min-width: 48em) {
  .event-unit__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.event-unit__item:not(:last-child) {
  border-bottom: 1px solid #ecf0f1;
}

.event-unit__dates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  background-color: #95a5a6;
  padding: 10px;
  margin: 0 auto 15px;
}

@media (min-width: 48em) {
  .event-unit__dates {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin: 0 15px 0 0;
  }
}

.event-unit__date-item {
  color: #fff;
}

.event-unit__date-item:last-child {
  font-size: 1.28571429rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.event-unit__title {
  font-size: 1.14285714rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 0 15px;
}

.event-unit__desc {
  font-size: 1rem;
  line-height: 1.28571429;
  font-weight: normal;
  margin: 0 0 10px;
}

.event-unit__footer {
  width: 100%;
  list-style: none;
  padding: 0 0 15px;
  margin: 0;
}

.event-unit__footer-item {
  display: inline-block;
  color: #7f8c8d;
  font-size: 0.85714286rem;
  line-height: 1.28571429;
  font-weight: normal;
}

.event-unit__footer-item:not(:last-child) {
  padding-right: 15px;
}

.event-unit__footer-item i {
  font-size: 1rem;
  padding-right: 5px;
}

.event-unit__badge {
  display: inline-block;
  background-color: #f5f5f5;
  padding: 5px 10px;
  border-radius: 20px;
}

.event-unit__badge:hover, .event-unit__badge:focus, .event-unit__badge:active {
  background-color: #2980b9;
  color: #fff;
}

.event-unit__badge--with-icon i {
  padding-right: 5px;
}

#events-calendar {
  margin-top: 9px;
}

.calendar {
  background: #2980b9;
  color: #fff;
  font-size: 1.28571429rem;
  line-height: 1.22222222;
  margin-bottom: 30px;
}

.calendar__toolbar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  height: 40px;
  line-height: 40px;
}

.calendar__toolbar li {
  padding: 0 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1;
      -ms-flex: 1 1;
          flex: 1 1;
  text-align: center;
}

.calendar__toolbar li:first-child {
  background: #2980b9;
  color: #fff;
}

.calendar__toolbar li:first-child a {
  outline: none;
  color: #fff;
}

.calendar__toolbar li:last-child {
  background: #fff;
  color: #2980b9;
}

.calendar__toolbar li:last-child a {
  outline: none;
  color: #2980b9;
}

.calendar__month {
  text-transform: capitalize;
  font-weight: 500;
}

.calendar__year {
  display: none;
}

@media (min-width: 75em) {
  .calendar__year {
    display: inline;
  }
}

.calendar__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px;
  text-align: center;
}

.calendar__button {
  padding: 10px 0;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

.calendar__button:hover, .calendar__button:active, .calendar__button:focus {
  background: #277ab1;
}

.calendar__button--prev-day:hover, .calendar__button--prev-day:active, .calendar__button--prev-day:focus, .calendar__button--today:hover, .calendar__button--today:active, .calendar__button--today:focus, .calendar__button--next-day:hover, .calendar__button--next-day:active, .calendar__button--next-day:focus {
  cursor: pointer;
}

.calendar__button--prev-day, .calendar__button--next-day {
  width: 20%;
}

.calendar__button--today {
  width: 60%;
  font-size: 1.14285714rem;
  line-height: 1.25;
}

.calendar__grid {
  position: relative;
  padding: 0 15px 15px;
  overflow: hidden;
}

.calendar__grid--show-events .calendar__events {
  left: 0;
}

.calendar__grid table {
  width: 100%;
}

.calendar__header {
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
}

.calendar__header-day {
  padding: 10px 0;
}

.calendar-dow-5, .calendar-dow-6 {
  background-color: #277ab1;
}

.calendar__day {
  padding: 10px 0;
  text-align: center;
  font-weight: 300;
}

.calendar__day--today {
  color: #2980b9;
  background-color: #fff;
}

.calendar__day--has-event {
  background-color: #2ecc71;
  cursor: pointer;
}

.calendar__day--adjacent-month {
  color: #20638f;
}

.calendar__day--adjacent-month.calendar__day--has-event,
.calendar__day--adjacent-month.calendar__day--today {
  background-color: #2677ac;
}

.calendar__events {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #2574a8;
  -webkit-transition: left 500ms;
  -o-transition: left 500ms;
  transition: left 500ms;
}

.calendar__events-header {
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.57142857rem 15px;
  background-color: #277ab1;
}

.calendar__events-header-title, .calendar__events-button--close {
  display: inline-block;
}

.calendar__events-button--close {
  font-size: 1.28571429rem;
  line-height: 1.22222222;
  color: #f5f5f5;
}

.calendar__events-button--close:hover, .calendar__events-button--close:active, .calendar__events-button--close:focus {
  color: #2c3e50;
}

.calendar__events-content {
  padding: 7.5px;
  height: calc(100% - 40px);
  overflow-y: auto;
}

.calendar__events-item a {
  display: block;
  padding: 7.5px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.28571429;
}

.calendar__events-item a:hover, .calendar__events-item a:active, .calendar__events-item a:focus {
  color: #2c3e50;
  background-color: #409ad5;
}

.page {
  background-color: #fff;
  margin-bottom: 30px;
}

.page__header {
  padding: 15px;
  background-color: #fafafa;
}

@media (min-width: 48em) {
  .page__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.page__title {
  font-size: 1.28571429rem;
  line-height: 1.22222222;
  color: #2c3e50;
  margin: 0 0 10px;
}

@media (min-width: 48em) {
  .page__title {
    margin: 0;
  }
}

.page__title a {
  color: #2c3e50;
}

.page__title a:hover, .page__title a:active, .page__title a:focus {
  color: #2980b9;
}

.page__breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #7f8c8d;
}

.page__breadcrumbs li {
  display: inline-block;
}

.page__breadcrumbs a {
  color: #2c3e50;
}

.page__breadcrumbs a:hover, .page__breadcrumbs a:active, .page__breadcrumbs a:focus {
  color: #2980b9;
}

.page__breadcrumbs > li + li::before {
  content: "/\00a0";
  padding: 0 5px;
  color: #ccc;
}

.page__content {
  padding: 15px;
}

.page__pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-page p strong {
  font-size: 1.14285714rem;
  line-height: 1.25;
}

.article {
  color: #2c3e50;
}

.article h1 {
  font-size: 1.28571429rem;
  line-height: 1.22222222;
  font-weight: normal;
  margin: 30px 15px 30px;
  color: #000;
}

.article h2 {
  font-size: 1.14285714rem;
  line-height: 1.25;
  font-weight: bold;
  margin: 15px 0;
  text-align: center;
}

@media (min-width: 48em) {
  .article h2 {
    margin: 30px 0;
  }
}

.article time {
  display: block;
  margin: 0 0 60px;
  color: #95a5a6;
  font-size: 1.14285714rem;
  line-height: 1.25;
  text-align: center;
}

.article__event-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #2980b9;
  margin-bottom: 15px;
  color: #fff;
}

@media (min-width: 48em) {
  .article__event-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.article__event-dates-info div:last-child {
  font-size: 1.28571429rem;
  font-weight: bold;
}

.article__event-dates, .article__event-place {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
}

.article__event-dates-sign, .article__event-place-sign {
  -webkit-box-flex: 0;
  -webkit-flex: 0;
      -ms-flex: 0;
          flex: 0;
  margin-right: 15px;
  font-size: 40px;
  line-height: 40px;
}

.article__event-dates-info, .article__event-place-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.article__person {
  background-color: #2980b9;
  padding: 15px;
}

.article__person-link-image {
  border: 3px solid #fff;
}

.article__person-info-name, .article__person-info-position, .article__person-info-company {
  color: #fff;
  font-size: 1.28571429rem;
  line-height: 1.22222222;
}

.article__person-info-name a, .article__person-info-position a, .article__person-info-company a {
  color: #f5f5f5;
}

.article__person-info-name a:hover, .article__person-info-name a:active, .article__person-info-name a:focus, .article__person-info-position a:hover, .article__person-info-position a:active, .article__person-info-position a:focus, .article__person-info-company a:hover, .article__person-info-company a:active, .article__person-info-company a:focus {
  color: #8ba4bf;
}

.article__person-info-name:not(:last-child), .article__person-info-position:not(:last-child), .article__person-info-company:not(:last-child) {
  margin-bottom: 5px;
}

.article__person-info-name {
  font-weight: 500;
}

.article__person-info-company {
  font-weight: 700;
}

.article .article__presentation {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.article__content {
  padding: 0 15px;
}

.article__content p {
  margin: 0 0 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.article__content p.lead {
  font-weight: 500;
}

@media (min-width: 48em) {
  .article__content p {
    margin: 0 15px 15px;
  }
}

.article__content .embed-responsive {
  margin-bottom: 15px;
}

.article__content ul, .article__content ol {
  margin: 0 15px 15px;
  font-size: 1rem;
  line-height: 1.28571429;
}

.article__content ul li, .article__content ol li {
  margin-bottom: 10px;
}

.article__content ul li > ul, .article__content ol li > ul {
  padding-left: 15px;
  padding-top: 15px;
}

.article__content blockquote {
  background: transparent;
  margin: 0 30px 30px;
  border: 0;
  font-style: italic;
  font-weight: normal;
  font-size: 1.28571429rem;
  line-height: 1.22222222;
  text-align: center;
  quotes: "\201c" "\201d";
}

@media (min-width: 48em) {
  .article__content blockquote {
    margin: 0 140px 30px;
  }
}

html[lang|='uk'] .article__content blockquote,
html[lang|='ru'] .article__content blockquote {
  quotes: "\00ab" "\00bb";
}

.article__content blockquote:before, .article__content blockquote:after {
  color: #95a5a6;
  font-size: 1.28571429rem;
  line-height: .4em;
  vertical-align: sub;
}

.article__content blockquote:before {
  content: open-quote;
}

.article__content blockquote:after {
  content: close-quote;
}

.article__content blockquote p {
  display: inline;
}

.article__content figure {
  margin: 30px 0;
}

.article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

@media (min-width: 48em) {
  .article__content svg {
    margin: 0 70px 15px;
  }
}

.article__content figcaption {
  text-align: center;
  color: #95a5a6;
  font-size: 0.85714286rem;
  line-height: 1.25;
}

.article__footer {
  margin: 0 15px;
}

.article__comments {
  margin: 0 15px;
}

.articles-carousel {
  margin-top: 15px;
  margin-bottom: 15px;
}

.articles-carousel .carousel-nav {
  position: absolute;
  top: -85px;
  left: 0;
  width: 100%;
  text-align: center;
}

.articles-carousel .carousel-nav .disabled {
  color: #2980b9;
}

.articles-carousel .carousel-nav .carousel-prev {
  margin-right: 15px;
}

.ad {
  margin-bottom: 30px;
}

.ad__link {
  display: block;
}

.ad__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.partners {
  margin-bottom: 60px;
}

.partners__header {
  margin-bottom: 30px;
}

.partners__header-title {
  font-size: 1.28571429rem;
  line-height: 1.22222222;
  color: #2c3e50;
  text-align: center;
}

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

.social li:not(:last-child) {
  padding-right: 10px;
}

.leaflet-popup-content-wrapper {
  border-radius: 0;
}

.leaflet-popup-content {
  text-align: center;
}

.leaflet-container a {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: .5px;
  color: #2980b9;
}

.leaflet-container a:hover {
  color: #071e33;
}

.leaflet-container a.leaflet-popup-close-button {
  padding: 3px 4px 0 0;
  color: #95a5a6;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #7f8c8d;
}
