/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS:
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited).
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar.
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars.
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars.
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
  /* direct pointer events to js */ }

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto; }

.mCustomScrollBox {
  /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr; }

.mCSB_container {
  /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto; }

/*
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
  margin-right: 30px; }

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0; }

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px; }

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0; }

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0; }

.mCSB_outside + .mCSB_scrollTools {
  right: -26px; }

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0; }

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px; }

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto; }

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0; }

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px; }

.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1; }

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center; }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */ }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */ }

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer; }

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0; }

/*
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px; }

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%; }

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0; }

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0; }

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px; }

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  /* minimum dragger width */
  height: 100%;
  left: 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto; }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  /* auto-expanded scrollbar */
  margin: 2px auto; }

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  /* auto-expanded scrollbar */
  margin: 4px 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0; }

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0; }

/*
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS
yx-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px; }

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  box-sizing: border-box; }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px; }

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px; }

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0; }

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0; }

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px; }

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0; }

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px; }

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0; }

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0; }

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  /* non-visible scrollbar */
  margin-left: 0; }

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0; }

/*
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out; }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; }

/*
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
------------------------------------------------------------------------------------------------------------------------
*/
/*
	----------------------------------------
	6.1 THEMES
	----------------------------------------
	*/
/* default theme ("light") */
/* ---------------------------------------- */
/**
 * HTML basic setup
 *
 * 1. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom:
 *    https://necolas.github.io/normalize.css/
 */
html {
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  /* [1] */
  -webkit-text-size-adjust: 100%;
  /* [1] */
  background-color: #e4ddd5;
  box-sizing: border-box;
  height: 100%; }

/**
 * Inherit box-sizing from the parent elements
 *
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*, *::before, *::after {
  box-sizing: border-box; }

/**
 * Reset - Customed
 *
 * http://meyerweb.com/eric/tools/css/reset/
 */
body,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0; }

/**
 * Body basic setup
 */
body {
  height: 100%;
  color: #707070;
  font-family: "Titillium Web", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4; }

/**
 * HTML5 display setup for older browsers
 *
 * http://meyerweb.com/eric/tools/css/reset/
 */
footer,
header,
main,
menu,
nav,
section {
  display: block; }

/**
 * Strong setup
 */
strong {
  font-weight: 600; }

/**
 * Images setup
 *
 * 1. Set images for responsive friendly
 * 2. Remove the border on images inside links in IE 10-.
 *    https://necolas.github.io/normalize.css/
 */
img {
  max-width: 100%;
  /* [1] */
  height: auto;
  /* [1] */
  border: 0;
  /* [2] */ }

/**
 * Remove the gap between these elements and the bottom of their containers
 *
 * https://github.com/h5bp/html5-boilerplate/issues/440
 * Borrowed from HTML5 Boilerplate
 */
img,
svg,
video {
  vertical-align: middle; }

/**
 * Remove text-shadow and set color on selection
 *
 * https://twitter.com/miketaylr/status/12228805301
 */
::-moz-selection {
  background: #ffffff;
  text-shadow: none; }
::selection {
  background: #ffffff;
  text-shadow: none; }

/**
 * Clear links
 */
a {
  color: inherit;
  color: #8299ce;
  background-color: transparent;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

/**
 * Grid
 *
 * Small flexbox grid setup for this page
 *
 */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

/* xxs - from 0 */
.col-xxs-2 {
  -ms-flex-preferred-size: 16.66666667%;
      flex-basis: 16.66666667%;
  max-width: 16.66666667%; }

.col-xxs-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%; }

.col-xxs-4 {
  -ms-flex-preferred-size: 33.33333333%;
      flex-basis: 33.33333333%;
  max-width: 33.33333333%; }

.col-xxs-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%; }

.col-xxs-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%; }

/* sm - from 478px */
@media (min-width: 478px) {
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; } }

/* md - from 768px */
@media (min-width: 768px) {
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%; } }

/* md - from 992px */
@media (min-width: 992px) {
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
    max-width: 58.33333333%; } }

/**
 * Containers layout
 *
 */
.container {
  max-width: 58.75rem;
  margin: 0 auto 40px;
  padding: 0 0.625rem; }

/**
 * Main header layout
 *
 * Used in home page only
 *
 * Holder for .logo (components/_logo.scss)
 *            .lng (component/_lng.scss)
 */
.main-header {
  max-width: 58.75rem;
  position: relative;
  margin: 0 auto;
  padding-top: 4.375rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #8299ce; }
  @media (min-width: 768px) {
    .main-header {
      padding-top: 9.5625rem;
      padding-bottom: 5.9375rem; } }

/**
 * Subheader layout
 *
 * Used in all pages
 *
 * Holder for .category (components/_category.scss)
 *            .subnav (components/_nav.scss) - except home page
 */
.subheader {
  max-width: 58.75rem;
  margin: 0 auto;
  padding: 1.25rem 0; }
  @media (min-width: 768px) {
    .subheader {
      padding: 5.9375rem 0; } }

/**
 * Header layout
 *
 * Used in all pages except home page
 *
 * Holder for .logo (components/_logo.scss)
 *            .nav (components/_nav.scss)
 *            .nav-toggle (components/_nav-toggle.scss)
 */
.header {
  height: 6.25rem;
  max-width: 100%;
  width: 100%;
  padding: 0 0.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #8299ce; }
  @media (min-width: 768px) {
    .header {
      height: 9.375rem;
      -ms-flex-pack: distribute;
          justify-content: space-around; } }
  @media (min-width: 992px) {
    .header {
      height: 12.5rem; } }

/**
 * Articles layout
 *
 */
.articles {
  margin: 1.25rem 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  @media (min-width: 768px) {
    .articles {
      -ms-flex-direction: row;
          flex-direction: row;
      margin: 3.125rem 0; } }

.articles__main {
  min-height: 700px;
  padding: 0 0.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  @media (min-width: 768px) {
    .articles__main {
      max-width: 65%;
      padding: 0 1.875rem 0 0; } }

.articles__main p { margin-bottom: 1em; }

.articles__main figure {
	margin: 0 0 40px 0;
}

.articles__main img {
	width: 100%;
	height: auto;
}

.articles__category {
  /* to be used in the future */
  font-size: 1rem;
  font-weight: 600;
  color: #8299ce; }
  @media (min-width: 768px) {
    .articles__category {
      font-size: 1.1875rem; } }

.articles__subcategory {
  /* to be used in the future */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #8299ce; }
  @media (min-width: 768px) {
    .articles__subcategory {
      font-size: 1.0625rem; } }
  .articles__subcategory span {
    position: relative;
    width: 0.25rem;
    height: 0.25rem;
    margin: 0 0.4375rem 0 0.4375rem;
    background-color: #8299ce;
    border-radius: 50%; }

.articles__title {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #707070; }
  @media (min-width: 768px) {
    .articles__title {
      font-size: 1.1875rem; } }

.articles__article {
  -ms-flex-positive: 1;
      flex-grow: 1;
  /* for pushing arrows to the bottom */ }

.articles__arrows {
  margin-top: 1.875rem;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%; }

.articles__arrows-left {
  width: 70px; }

.articles__arrows-right {
  width: 70px; }

.articles__sidebar {
  height: 200px;
  overflow: auto;
  padding: 1.875rem 0.625rem 0 0.625rem; }
  @media (min-width: 768px) {
    .articles__sidebar {
      height: 700px;
      padding: 0rem 0.625rem 0 1.875rem;
      border-left: 1px solid #8299ce; } }

.articles__links {
  display: block;
  margin-top: 1.875rem;
  font-weight: 600;
  color: #707070;
  transition: .3s; }
  .articles__links:hover {
    color: #8299ce;
    text-decoration: none; }

/**
 * Footer layout
 *
 * ...with all elements
 */
.footer {
  width: 100%;
  padding: 2.5625rem 0.625rem;
  background-color: rgba(130, 153, 206, 0.6);
  border-top: 6px solid #8e9dc3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center; }

.footer__text {
  padding-bottom: 10px;
  line-height: 1;
  font-size: 0.75rem;
  color: #ffffff;
  text-align: center; }
  @media (min-width: 768px) {
    .footer__text {
      font-size: 0.875rem; } }

.footer__mail {
  color: #ffffff;
  transition: .3s; }
  .footer__mail:hover {
    color: #707070;
    text-decoration: underline; }

.footer__social {
  font-size: 0.75rem;
  color: #ffffff;
  margin: 1.875rem 0 1.25rem;
  transition: .3s; }
  @media (min-width: 768px) {
    .footer__social {
      font-size: 0.875rem; } }
  .footer__social:hover {
    color: #707070; }

.footer__logo {
  width: 65px;
  height: 65px;
  background-image: url("../images/logo-footer.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
    .footer__logo {
      background-image: url("../images/logo-footer@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

/**
 * Lng component
 *
 * Positioned inside main header (components/_header.scss)
 * Contains two-language selection and separation element
 */
.lng {
  max-width: 100%;
  position: absolute;
  top: 1.25rem;
  right: 0.625rem; }
  @media (min-width: 768px) {
    .lng {
      top: 3.125rem; } }
  @media (min-width: 992px) {
    .lng {
      right: 0; } }

.lng__link {
  color: #707070;
  transition: .3s; }
  .lng__link:hover {
    color: #8299ce;
    text-decoration: none; }

.lng__link--active {
  color: #8299ce; }

.lng__separator {
  display: inline-block;
  height: 1rem;
  position: relative;
  top: 0.3125rem;
  margin: 0 0.1875rem 0 0.1875rem;
  border-right: solid 2px #707070; }

/**
 * Main-logo component
 *
 * Used inside .main-header (layout/_main-header.scss) - home page only
 * main-logo.png is used as .main-logo__icon background - with same dimensions
 * Contains subheading
 */
.main-logo {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  @media (min-width: 768px) {
    .main-logo {
      max-width: 377px; } }

.main-logo__icon {
  width: 300px;
  height: 88px; }
  @media (max-width: 767px) {
    .main-logo__icon {
      background-image: url("../images/main-logo-xxs.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 767px) and (min-resolution: 192dpi) {
    .main-logo__icon {
      background-image: url("../images/main-logo-xxs@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  @media (min-width: 768px) {
    .main-logo__icon {
      width: 377px;
      height: 111px;
      background-image: url("../images/main-logo-md.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 768px) and (min-resolution: 192dpi) {
    .main-logo__icon {
      background-image: url("../images/main-logo-md@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

.main-logo__subtitle {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .2px;
  font-weight: 600;
  text-transform: uppercase;
  color: #8299ce; }
  @media (min-width: 768px) {
    .main-logo__subtitle {
      font-size: 18px;
      letter-spacing: .1px;
      font-weight: 600; } }

/**
 * Logo component
 *
 * Used inside .header (layout/_header.scss)
 * logo.png is used as .logo__icon background - with same dimensions
 * Contains subheading text
 */
.logo {
  width: 161px;
  /* extra px needed for .logo subtitle on low res screens */
  text-align: center; }
  .logo:hover a {
    text-decoration: none; }
  @media (min-width: 992px) {
    .logo {
      width: 250px; } }

.logo__icon {
  width: 160px;
  height: 47px; }
  @media (max-width: 991px) {
    .logo__icon {
      background-image: url("../images/logo-xxs.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (max-width: 991px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 991px) and (min-resolution: 192dpi) {
    .logo__icon {
      background-image: url("../images/logo-xxs@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  @media (min-width: 992px) {
    .logo__icon {
      width: 250px;
      height: 73px;
      background-image: url("../images/logo-md.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (min-width: 992px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 992px) and (min-resolution: 192dpi) {
    .logo__icon {
      background-image: url("../images/logo-md@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

.logo__subtitle {
  margin-top: 5px;
  font-size: 7px;
  line-height: 1.15;
  letter-spacing: .3px;
  font-weight: 600;
  text-transform: uppercase;
  color: #8299ce; }
  @media (min-width: 992px) {
    .logo__subtitle {
      margin-top: 10px;
      font-size: 12px;
      letter-spacing: normal;
      font-weight: 600; } }

/**
 * Category component
 *
 * Placed inside .subheader (layout/_subheader.scss)
 * Used as main navigation from homepage
 * Used as page title
 *
 * [1] Contains 4 modifiers (with different icons) for different categories
 * [2] Hover rotates background icon
 * [3] Reverse rotate for still effect
 */
.category {
  width: 110px;
  height: 114px;
  margin: 0.625rem auto;
  transition: .9s; }
  @media (min-width: 768px) {
    .category {
      width: 143px;
      height: 148px;
      margin: 0 auto; } }
  .category:hover {
    /* [2] */
    transform: rotate(360deg); }
  .category:hover .category__link {
    transform: rotate(-360deg);
    /* [3] */
    text-decoration: none; }

.category--platforma-clanaka {
  /* [1] */ }
  @media (max-width: 767px) {
    .category--platforma-clanaka {
      background-image: url("../images/cat__platforma-clanaka-xxs.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 767px) and (min-resolution: 192dpi) {
    .category--platforma-clanaka {
      background-image: url("../images/cat__platforma-clanaka-xxs@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  @media (min-width: 768px) {
    .category--platforma-clanaka {
      background-image: url("../images/cat__platforma-clanaka-md.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 768px) and (min-resolution: 192dpi) {
    .category--platforma-clanaka {
      background-image: url("../images/cat__platforma-clanaka-md@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

.category--waldorfska-inicijativa {
  /* [1] */ }
  @media (max-width: 767px) {
    .category--waldorfska-inicijativa {
      background-image: url("../images/cat__wald-inicijativa-xxs.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 767px) and (min-resolution: 192dpi) {
    .category--waldorfska-inicijativa {
      background-image: url("../images/cat__wald-inicijativa-xxs@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  @media (min-width: 768px) {
    .category--waldorfska-inicijativa {
      background-image: url("../images/cat__wald-inicijativa-md.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 768px) and (min-resolution: 192dpi) {
    .category--waldorfska-inicijativa {
      background-image: url("../images/cat__wald-inicijativa-md@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

.category--swi {
  /* [1] */ }
  @media (max-width: 767px) {
    .category--swi {
      background-image: url("../images/cat__swi-xxs.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 767px) and (min-resolution: 192dpi) {
    .category--swi {
      background-image: url("../images/cat__swi-xxs@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  @media (min-width: 768px) {
    .category--swi {
      background-image: url("../images/cat__swi-md.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 768px) and (min-resolution: 192dpi) {
    .category--swi {
      background-image: url("../images/cat__swi-md@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

.category--waldorf-100 {
  /* [1] */ }
  @media (max-width: 767px) {
    .category--waldorf-100 {
      background-image: url("../images/cat__waldorf-100-xxs.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 767px) and (min-resolution: 192dpi) {
    .category--waldorf-100 {
      background-image: url("../images/cat__waldorf-100-xxs@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  @media (min-width: 768px) {
    .category--waldorf-100 {
      background-image: url("../images/cat__waldorf-100-md.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 768px) and (min-resolution: 192dpi) {
    .category--waldorf-100 {
      background-image: url("../images/cat__waldorf-100-md@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

.category--donirajte {
  /* [1] */ }
  @media (max-width: 767px) {
    .category--donirajte {
      background-image: url("../images/cat__donirajte-xxs.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 767px) and (min-resolution: 192dpi) {
    .category--donirajte {
      background-image: url("../images/cat__donirajte-xxs@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  @media (min-width: 768px) {
    .category--donirajte {
      background-image: url("../images/cat__donirajte-md.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll; } }
  @media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 768px) and (min-resolution: 192dpi) {
    .category--donirajte {
      background-image: url("../images/cat__donirajte-md@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }

.category__link {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: .9s; }
  .category__link:hover .category__title {
    color: #707070; }

.category__title {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  transition: .6s; }
  @media (min-width: 768px) {
    .category__title {
      font-size: 16px; } }

/**
 * Text component
 *
 * Used for paragraphs
 */
.text {
  max-width: 38.875rem;
  margin: 0 auto;
  text-align: center; }

  .text p {
	  margin-bottom: 1em;
  }

  div.text {
	  margin-bottom: 200px;
  }

  .text ul {
	  margin: 0 auto;
	  text-align: left;
  }


.text--coming-soon {
  /* used on empty page */
  margin-bottom: 200px; }

/**
 * Donate component
 *
 * Placed across site
 * Links to seperate donate page
 *
 * [1] Hover rotates background icon
 * [2] Reverse rotate for still effect
 */
.donate {
  width: 114px;
  height: 114px;
  margin: 5.9375rem auto;
  transition: .9s;
  background-image: url("../images/donirajte.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
    .donate {
      background-image: url("../images/donirajte@2x.png");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: scroll;
      background-size: contain; } }
  .donate:hover {
    transform: rotate(360deg);
    /* [1] */ }
  .donate:hover .donate__link {
    transform: rotate(-360deg);
    /* [2] */ }

.donate__link {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: .9s; }
  .donate__link:hover,
  .donate__link:hover .donate__title {
    color: #707070;
    text-decoration: none; }

.donate__title {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  transition: .6s; }
  @media (min-width: 768px) {
    .donate__title {
      font-size: 16px; } }

/**
 * Mobile-nav component
 *
 * Used on all pages for mobile navigation
 * [1] Opens with .nav-toggle (components/_nav-toggle) via jQuery
 */
.mobile-nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: block;
  padding: 6.25rem 0.625rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  background-color: #e4ddd5;
  transition: .3s; }

.mobile-nav--opened {
  /* [1] */
  opacity: 1;
  z-index: 2;
  pointer-events: all; }

.mobile-nav__link {
  display: block;
  margin: 0.3125rem 0;
  padding: 0.3125rem 0;
  color: #707070;
  transition: .3s; }
  .mobile-nav__link:hover {
    color: #8299ce;
    text-decoration: none; }

.mobile-nav__link--active {
  color: #8299ce; }

.mobile-nav__title {
  margin-bottom: 0.3125rem;
  font-size: 1.1875rem;
  font-weight: 600; }

.mobile-nav__subtitle {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline; }

.mobile-nav__separator {
  display: block;
  width: 3.125rem;
  height: 0.125rem;
  margin: 0.4375rem auto;
  border-top: solid 2px #707070; }

.mobile-nav__dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 1.25rem auto;
  background-color: #707070;
  border-radius: 50%; }

/**
 * Nav component
 *
 * Main navigation on medium and large screens
 * This navigation is not used on home page, instead are .category components
 * Used inside .header (layout/_header.scss)
 * Contains line and dot as separator
 */
.nav {
  display: none; }
  @media (min-width: 768px) {
    .nav {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      background-color: #e4ddd5;
      text-transform: uppercase; } }

.nav__link {
  font-size: 0.875rem;
  padding: 0.625rem 0;
  transition: .3s;
  color: #707070; }
  @media (min-width: 768px) {
    .nav__link {
      padding: 0; } }
  @media (min-width: 992px) {
    .nav__link {
      font-size: 1rem; } }
  .nav__link:hover {
    color: #8299ce;
    text-decoration: none; }

.nav__link--active {
  color: #8299ce; }

.nav__separator {
  height: 0.875rem;
  /* same as font-size */
  margin: 0 0.4375rem 0 0.4375rem;
  border-right: solid 2px #707070;
  -ms-flex-item-align: end;
      align-self: flex-end;
  /* top of separator is aligned with letters */ }
  @media (min-width: 992px) {
    .nav__separator {
      height: 1rem;
      /* same as font-size */ } }

.nav__dot {
  width: 0.375rem;
  height: 0.375rem;
  margin: 0 0.4375rem 0 0.4375rem;
  background-color: #707070;
  border-radius: 50%; }

/**
 * Nav-toggle component
 *
 * Classic hamburger icon, rotates/transforms in X on click
 * Placed inside .header (layout/_header.scss)
 * [1] Visible only on small screens
 * Triggers .mobile-nav (componenet/_mobile-nav.scss) with jQuery
 */
.nav-toggle {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 9999; }
  @media (min-width: 768px) {
    .nav-toggle {
      display: none;
      /* [1] */ } }

.nav-toggle span {
  position: absolute;
  top: 15px; }

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
  width: 30px;
  height: 2px;
  position: absolute;
  content: '';
  background-color: #707070;
  transition: all 500ms ease-in-out; }

.nav-toggle span:before {
  top: -7px; }

.nav-toggle span:after {
  bottom: -7px; }

.nav-toggle--opened span {
  background-color: transparent; }

.nav-toggle--opened span:before,
.nav-toggle--opened span:after {
  top: 0; }

.nav-toggle--opened span:before {
  transform: rotate(45deg); }

.nav-toggle--opened span:after {
  transform: rotate(-45deg); }

/**
 * Subnav component
 *
 * Navigation for sub categories
 * Positioned (if needed) inside .subheader (layout/_subheader.scss)
 * With modifiers used in three variants
 * [1] Modifier used if bottom border is needed
 * [2] Modifier used for two level navigation (platforma-clanaka page)
 * [3] Modifier used for positioning dot on border for marking active link
 * [4] Contains line and dot as category separator
 *
 */
.subnav {
  margin-top: 1.875rem;
  padding-bottom: 1.25rem;
  display: none;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #e4ddd5; }
  @media (min-width: 768px) {
    .subnav {
      padding-bottom: 0;
      display: -ms-flexbox;
      display: flex; } }

.subnav--with-border {
  /* [1] */
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #8299ce; }

.subnav--active .subnav__link {
  /* [2] */
  color: #8299ce;
  font-size: 0.9375rem; }
  @media (min-width: 992px) {
    .subnav--active .subnav__link {
      font-size: 1.0625rem; } }
  .subnav--active .subnav__link:hover {
    color: #707070; }

.subnav__link {
  font-size: 1.0625rem;
  transition: .3s;
  color: #707070; }
  @media (min-width: 992px) {
    .subnav__link {
      font-size: 1.1875rem; } }
  .subnav__link:hover {
    color: #8299ce;
    text-decoration: none; }

.subnav__link--active {
  font-weight: 600;
  color: #8299ce; }

.subnav__link--active-dot {
  /* used when .subnav has bottom border */
  position: relative;
  color: #8299ce; }
  .subnav__link--active-dot::after {
    /* [3] */
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    bottom: -1.5625rem;
    /* same as .subnav padding-bottom + dot halfheight */
    left: 40%;
    border-radius: 50%;
    background-color: #8299ce; }
    @media (min-width: 768px) {
      .subnav__link--active-dot::after {
        bottom: -2.1875rem; } }

.subnav--active .subnav__link--active-dot {
  /* keeps selected color on hover */ }
  .subnav--active .subnav__link--active-dot:hover {
    color: #8299ce; }

.subnav__separator {
  /* [4] */
  height: 1rem;
  /* same as font-size */
  margin: 0 0.625rem 0 0.625rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  border-right: solid 2px #707070; }
  @media (min-width: 768px) {
    .subnav__separator {
      height: 1.1875rem;
      /* same as font-size */ } }

.subnav__dot {
  /* [4] */
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.3125rem 0 0.3125rem;
  background-color: #8299ce;
  border-radius: 50%; }
  @media (min-width: 992px) {
    .subnav__dot {
      width: 0.3125rem;
      height: 0.3125rem;
      margin: 0 0.625rem 0 0.625rem; } }

/**
 * News component
 *
 * Used in swi/novosti.html (news) page as component for entering news
 *
 * [1] Placeholder for - Enter date
 * [2] Placeholder for - Enter title
 * [3] Placeholder for - Enter news content
 */
.news {
  margin-bottom: 3.125rem;
  border-bottom: 1px dotted #8299ce; }

.news__date {
  /* [1] */
  margin-bottom: 0.3125rem;
  font-size: 1rem;
  font-weight: 400; }

.news__title {
  /* [2] */
  margin-bottom: 0.625rem;
  font-size: 1.1875rem;
  font-weight: 600; }

.news__content {
  margin-bottom: 1.875rem; }

  .bx-wrapper {
	  border: 0;
	  background: transparent;

  }
  .slides {
	  height: 80vh;
  }

/**
 * Scrollbar component
 *
 * jquery.mCustomScrollbar plugin - my custom theme
 * for the sake of space saving all themes from original file are deleted
 */
.mCS-my-theme.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 0; }

.mCS-my-theme.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #8299ce;
  width: 1px; }

.mCS-my-theme.mCSB_scrollTools .mCSB_dragger {
  height: 14px !important; }

.mCS-my-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
  background-color: #8299ce; }

.mCS-my-theme.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px; }

.mCS-my-theme.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0; }

.mCS-my-theme.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  width: 16px;
  /* auto-expanded scrollbar */
  height: 16px;
  margin: -1px 0; }

.mCS-my-theme.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  width: 4px;
  /* auto-expanded scrollbar */ }

.mCS-my-theme.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  height: 16px;
  /* auto-expanded scrollbar */
  width: 16px;
  margin: 0 -1px; }

.mCS-my-theme.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  height: 4px;
  /* auto-expanded scrollbar */
  margin: 6px 0; }

/*# sourceMappingURL=main.min.css.map */
