/**
 * Base
 */
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

/*********************
BREAKPOINTS (desktop first)
*********************/
/**
 * Helpers
 */
/**
 * Layout
 */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f2f2f2;
  font-size: 16px; }
  @media (max-width: 576px) {
    body {
      font-size: 15px; } }

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #5b8ba7; }
  a:hover {
    color: #6c97b0; }
  a:hover, a:focus {
    text-decoration: none; }

img {
  max-width: 100%;
  height: auto; }

::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

::-webkit-scrollbar-thumb {
  background-color: #5b8ba7; }

.noscroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%; }

.main-header {
  position: relative;
  z-index: 30; }
  .main-header .logo {
    font-family: 'Roboto Slab', serif;
    display: inline-block;
    padding: 80px 0 30px 0; }
    @media (max-width: 768px) {
      .main-header .logo {
        display: block;
        text-align: center; } }
    .main-header .logo a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      @media (max-width: 768px) {
        .main-header .logo a {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
    .main-header .logo .image {
      padding-left: 20px;
      padding-right: 45px;
      height: 145px; }
      @media (max-width: 1200px) {
        .main-header .logo .image {
          padding-left: 15px;
          padding-right: 35px;
          height: 120px; } }
      @media (max-width: 992px) {
        .main-header .logo .image {
          padding-left: 10px;
          padding-right: 25px;
          height: 100px; } }
      @media (max-width: 768px) {
        .main-header .logo .image {
          padding-left: 10px;
          padding-right: 10px;
          margin-bottom: 10px; } }
      .main-header .logo .image img {
        height: 100%;
        width: auto;
        display: block;
        max-width: 100%; }
    .main-header .logo .text {
      color: white;
      font-size: 28px;
      font-weight: 700;
      text-shadow: 0 3px 0 black; }
      @media (max-width: 1200px) {
        .main-header .logo .text {
          font-size: 24px; } }
      @media (max-width: 992px) {
        .main-header .logo .text {
          font-size: 20px; } }
      @media (max-width: 768px) {
        .main-header .logo .text {
          font-size: 18px; } }
      @media (max-width: 576px) {
        .main-header .logo .text {
          font-size: 16px; } }
      .main-header .logo .text span {
        display: block;
        line-height: 36px; }
        @media (max-width: 1200px) {
          .main-header .logo .text span {
            line-height: 32px; } }
        @media (max-width: 992px) {
          .main-header .logo .text span {
            line-height: 28px; } }
        @media (max-width: 768px) {
          .main-header .logo .text span {
            line-height: 24px; } }
        @media (max-width: 576px) {
          .main-header .logo .text span {
            line-height: 20px; } }

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
  z-index: 10; }
  .header-background .header-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 0;
    z-index: 7; }
  .header-background:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 300px;
    z-index: 8;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 242, 242, 0)), to(#f2f2f2));
    background-image: -webkit-linear-gradient(top, rgba(242, 242, 242, 0), #f2f2f2);
    background-image: -moz-linear-gradient(top, rgba(242, 242, 242, 0), #f2f2f2);
    background-image: -o-linear-gradient(top, rgba(242, 242, 242, 0), #f2f2f2);
    background-image: linear-gradient(to bottom, rgba(242, 242, 242, 0), #f2f2f2);
    -webkit-transition: height 300ms;
    -moz-transition: height 300ms;
    -ms-transition: height 300ms;
    -o-transition: height 300ms;
    transition: height 300ms; }

.core {
  position: relative;
  min-height: 400px;
  z-index: 20; }

#municipality-picker-select {
  display: none; }

.fixed-top-bar {
  position: fixed;
  z-index: 40;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .fixed-top-bar .row {
    min-height: 50px;
    padding: 0 15px; }
    @media (max-width: 576px) {
      .fixed-top-bar .row .col-4 {
        max-width: none;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        padding: 0; }
      .fixed-top-bar .row .col-4:nth-child(1) {
        max-width: 20px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
        flex: 0 0 20px; }
      .fixed-top-bar .row .col-4:nth-child(2) {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .fixed-top-bar .row .col-4:nth-child(2) .municipality--mobile-picker {
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1; }
      .fixed-top-bar .row .col-4:nth-child(3) {
        max-width: 60px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
        flex: 0 0 60px; } }
  .fixed-top-bar .back-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 50px; }
    .fixed-top-bar .back-link a .icon {
      font-size: 18px; }
    .fixed-top-bar .back-link a .text {
      font-size: 14px;
      font-weight: 500;
      margin-left: 10px;
      line-height: 16px; }
      @media (max-width: 576px) {
        .fixed-top-bar .back-link a .text {
          display: none; } }
  .fixed-top-bar .municipality-picker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (max-width: 992px) {
      .fixed-top-bar .municipality-picker {
        display: none; } }
    .fixed-top-bar .municipality-picker .chosen-container {
      width: 200px !important; }
      .fixed-top-bar .municipality-picker .chosen-container .chosen-drop {
        margin-top: 0;
        border-radius: 0;
        background-clip: padding-box;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.6);
        padding: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .fixed-top-bar .municipality-picker .chosen-container .chosen-drop .chosen-search {
          background: #fff;
          padding: 5px; }
          .fixed-top-bar .municipality-picker .chosen-container .chosen-drop .chosen-search input {
            border: none;
            color: #000;
            padding: 5px; }
        .fixed-top-bar .municipality-picker .chosen-container .chosen-drop .chosen-results {
          margin: 0;
          padding: 5px; }
          .fixed-top-bar .municipality-picker .chosen-container .chosen-drop .chosen-results li {
            color: #fff;
            padding: 8px;
            font-size: 14px;
            font-weight: 500; }
            .fixed-top-bar .municipality-picker .chosen-container .chosen-drop .chosen-results li.highlighted {
              background: rgba(91, 139, 167, 0.6); }
            .fixed-top-bar .municipality-picker .chosen-container .chosen-drop .chosen-results li.result-selected {
              background: #5b8ba7; }
            .fixed-top-bar .municipality-picker .chosen-container .chosen-drop .chosen-results li.no-results {
              background: transparent; }
      .fixed-top-bar .municipality-picker .chosen-container .chosen-single {
        background: transparent;
        border: none;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 14px;
        font-weight: 500;
        height: 50px;
        line-height: 50px;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .fixed-top-bar .municipality-picker .chosen-container .chosen-single input[type=text] {
          padding: 0;
          border: none; }
        .fixed-top-bar .municipality-picker .chosen-container .chosen-single span {
          margin-right: 10px; }
        .fixed-top-bar .municipality-picker .chosen-container .chosen-single div {
          position: static;
          width: auto;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .fixed-top-bar .municipality-picker .chosen-container .chosen-single div b {
            background: url(../images/arrow.png);
            background-position: unset;
            width: 13px;
            height: 8px; }
  .fixed-top-bar .municipality--mobile-picker {
    display: none;
    position: relative;
    max-width: 200px; }
    @media (max-width: 992px) {
      .fixed-top-bar .municipality--mobile-picker {
        display: block; } }
    .fixed-top-bar .municipality--mobile-picker.open .list {
      display: block; }
    .fixed-top-bar .municipality--mobile-picker .current {
      cursor: pointer; }
      .fixed-top-bar .municipality--mobile-picker .current > span {
        background: transparent;
        border: none;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 14px;
        font-weight: 500;
        height: 50px;
        line-height: 50px;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .fixed-top-bar .municipality--mobile-picker .current > span .text {
          margin-right: 10px; }
        .fixed-top-bar .municipality--mobile-picker .current > span .icon {
          font-size: 18px; }
    .fixed-top-bar .municipality--mobile-picker .list {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      margin-top: 0;
      border-radius: 0;
      background-clip: padding-box;
      border: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      background: rgba(0, 0, 0, 0.6);
      padding: 0;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .fixed-top-bar .municipality--mobile-picker .list ul {
        margin: 0;
        padding: 5px;
        list-style: none;
        overflow: auto;
        max-height: 300px; }
        .fixed-top-bar .municipality--mobile-picker .list ul li a {
          color: #fff;
          padding: 8px;
          font-size: 14px;
          font-weight: 500;
          display: block; }
        .fixed-top-bar .municipality--mobile-picker .list ul li:hover a {
          background: #5b8ba7; }
        .fixed-top-bar .municipality--mobile-picker .list ul li.selected {
          background: rgba(91, 139, 167, 0.6); }
  .fixed-top-bar .lang-picker {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .fixed-top-bar .lang-picker .text {
      font-size: 14px;
      text-transform: uppercase;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .fixed-top-bar .lang-picker .text a {
        color: #fff; }
        .fixed-top-bar .lang-picker .text a.active {
          font-weight: bold; }
      .fixed-top-bar .lang-picker .text span {
        font-size: 0;
        margin: 0 8px;
        height: 12px;
        width: 1px;
        background: #fff;
        display: block; }

.nav-col {
  margin-bottom: 30px; }

video {
  width: 100% !important;
  height: auto !important; }

.navigation-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(91, 139, 167, 0.3);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (max-width: 992px) {
    .navigation-section-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  .navigation-section-wrapper .navigation {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .navigation-section-wrapper .search {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .navigation-section-wrapper .search form {
      width: 200px; }
    .navigation-section-wrapper .search .search-input {
      background: transparent;
      height: 50px;
      border: none;
      width: 200px;
      padding: 10px 50px 10px 15px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      -webkit-appearance: none;
      outline: none; }
      .navigation-section-wrapper .search .search-input::-webkit-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #fff;
        opacity: 1;
        /* Firefox */ }
      .navigation-section-wrapper .search .search-input:-ms-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #fff;
        opacity: 1;
        /* Firefox */ }
      .navigation-section-wrapper .search .search-input::-ms-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #fff;
        opacity: 1;
        /* Firefox */ }
      .navigation-section-wrapper .search .search-input::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #fff;
        opacity: 1;
        /* Firefox */ }
      .navigation-section-wrapper .search .search-input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #fff; }
      .navigation-section-wrapper .search .search-input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #fff; }
    .navigation-section-wrapper .search .search-submit {
      width: 50px;
      height: 50px;
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      padding: 0;
      margin: 0;
      line-height: 50px;
      text-align: center;
      cursor: pointer;
      opacity: 0;
      color: #fff;
      border: none;
      outline: none;
      z-index: -1;
      background: #fff; }
    .navigation-section-wrapper .search .search-icon {
      width: 50px;
      height: 50px;
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      padding: 0;
      margin: 0;
      line-height: 50px;
      text-align: center;
      cursor: pointer;
      color: #fff; }

.navigation {
  padding: 0 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media (max-width: 992px) {
    .navigation {
      display: none; } }
  .navigation > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0; }
    .navigation > ul > li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: relative; }
      .navigation > ul > li.active:after {
        content: "";
        top: 100%;
        left: 0;
        right: 0;
        height: 2px;
        position: absolute;
        background: #fff; }
      .navigation > ul > li ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 250px;
        background: #5b8ba7;
        list-style: none;
        margin: 0;
        padding: 0; }
        .navigation > ul > li ul li {
          position: relative; }
          .navigation > ul > li ul li.active {
            background: #6c97b0; }
          .navigation > ul > li ul li ul {
            top: 0;
            left: 100%;
            list-style: none;
            margin: 0;
            padding: 0; }
          .navigation > ul > li ul li:hover ul {
            display: block; }
        .navigation > ul > li ul a {
          font-size: 14px;
          font-weight: 500;
          color: #fff;
          display: block;
          padding: 15px 20px; }
          .navigation > ul > li ul a:hover {
            background: #6c97b0; }
        .navigation > ul > li ul .toggle-button {
          position: absolute;
          color: #fff;
          top: 50%;
          right: 20px;
          -moz-transform: translateY(-50%) rotate(-90deg);
          -o-transform: translateY(-50%) rotate(-90deg);
          -ms-transform: translateY(-50%) rotate(-90deg);
          -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg); }
      .navigation > ul > li:hover > ul {
        display: block; }
      .navigation > ul > li > a {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        line-height: 60px;
        display: block;
        padding: 0 20px; }
        @media (max-width: 1200px) {
          .navigation > ul > li > a {
            padding: 0 10px; } }
        @media (max-width: 576px) {
          .navigation > ul > li > a {
            font-size: 15px; } }
      .navigation > ul > li > .toggle-button {
        margin-left: -15px;
        margin-right: 10px;
        color: #fff; }
        @media (max-width: 1200px) {
          .navigation > ul > li > .toggle-button {
            margin-left: -5px;
            margin-right: 5px; } }

.m-nav {
  display: none;
  padding-right: 10px; }
  @media (max-width: 992px) {
    .m-nav {
      display: block; } }

body.fixed-header .fixed-top-bar {
  background: black; }

body.fixed-header .navigation-section {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background: #5b8ba7;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3); }
  body.fixed-header .navigation-section .navigation-section-wrapper {
    margin: 0 auto;
    max-width: 1340px;
    background: #5b8ba7; }
    @media (max-width: 1200px) {
      body.fixed-header .navigation-section .navigation-section-wrapper {
        max-width: 960px; } }
    @media (max-width: 992px) {
      body.fixed-header .navigation-section .navigation-section-wrapper {
        max-width: 720px; } }
    @media (max-width: 768px) {
      body.fixed-header .navigation-section .navigation-section-wrapper {
        max-width: 540px; } }

body.fixed-header .fixed-top-bar .lang-picker .dropdown-menu {
  background: black; }

body.fixed-header .fixed-top-bar .municipality-picker .chosen-container .chosen-drop {
  background: black; }

.main-content {
  margin-bottom: 30px; }
  .main-content .latest-news .news-top-list {
    position: relative;
    z-index: 2; }
    .main-content .latest-news .news-top-list .category-item {
      background: #fff;
      margin-bottom: 30px;
      padding: 20px 30px; }
      @media (max-width: 576px) {
        .main-content .latest-news .news-top-list .category-item {
          padding: 20px; } }
    .main-content .latest-news .news-top-list h2.item-title {
      font-size: 22px;
      font-weight: 700;
      margin: 0;
      line-height: normal;
      margin-bottom: 20px; }
      @media (max-width: 1200px) {
        .main-content .latest-news .news-top-list h2.item-title {
          font-size: 20px;
          margin-bottom: 15px; } }
      @media (max-width: 992px) {
        .main-content .latest-news .news-top-list h2.item-title {
          font-size: 18px;
          margin-bottom: 15px; } }
      .main-content .latest-news .news-top-list h2.item-title a {
        color: #5b8ba7; }
        .main-content .latest-news .news-top-list h2.item-title a:hover {
          color: #6c97b0; }
    .main-content .latest-news .news-top-list .item-content {
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 10px;
      text-align: justify; }
      @media (max-width: 576px) {
        .main-content .latest-news .news-top-list .item-content {
          font-size: 15px; } }
      .main-content .latest-news .news-top-list .item-content svg {
        margin-bottom: -1px; }
    .main-content .latest-news .news-top-list .details {
      font-weight: 400;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #6b6b6b;
      margin-top: 10px;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      padding-top: 10px;
      text-align: left; }
      @media (max-width: 576px) {
        .main-content .latest-news .news-top-list .details {
          display: block; } }
      .main-content .latest-news .news-top-list .details .date, .main-content .latest-news .news-top-list .details .edit {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto; }
      @media (max-width: 992px) {
        .main-content .latest-news .news-top-list .details .edit {
          display: none; } }
      .main-content .latest-news .news-top-list .details > div:first-child:before {
        display: none; }
      .main-content .latest-news .news-top-list .details > div:before {
        display: inline-block;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        color: #6b6b6b;
        content: "/"; }
        @media (max-width: 576px) {
          .main-content .latest-news .news-top-list .details > div:before {
            display: none; } }
  .main-content .latest-news .news-bottom-list {
    position: relative;
    z-index: 2;
    background: #fff;
    margin-bottom: 30px;
    padding: 20px 30px; }
    @media (max-width: 576px) {
      .main-content .latest-news .news-bottom-list {
        padding: 20px; } }
    .main-content .latest-news .news-bottom-list .news {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding-bottom: 10px;
      margin-bottom: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media (max-width: 576px) {
        .main-content .latest-news .news-bottom-list .news {
          display: block; } }
      .main-content .latest-news .news-bottom-list .news:last-child {
        border-bottom: none;
        margin-bottom: 0; }
    .main-content .latest-news .news-bottom-list h4 {
      font-size: 16px;
      font-weight: 500;
      margin: 0;
      line-height: normal;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
      @media (max-width: 576px) {
        .main-content .latest-news .news-bottom-list h4 {
          font-size: 15px; } }
    .main-content .latest-news .news-bottom-list a {
      color: #5b8ba7; }
      .main-content .latest-news .news-bottom-list a:hover {
        color: #6c97b0; }
    .main-content .latest-news .news-bottom-list .details {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      color: #6b6b6b;
      font-size: 14px;
      font-weight: 400;
      margin-left: 15px;
      line-height: 16px;
      text-align: left; }
      @media (max-width: 576px) {
        .main-content .latest-news .news-bottom-list .details {
          margin: 0;
          margin-top: 10px; } }
  .main-content .read-more {
    margin-top: 15px;
    font-size: 13px;
    font-weight: 700; }

.content-section {
  background: #fff;
  margin-bottom: 30px;
  padding: 30px;
  text-align: justify; }
  @media (max-width: 576px) {
    .content-section {
      padding: 20px; } }
  .content-section .details {
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #6b6b6b;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    text-align: left; }
    .content-section .details .date, .content-section .details .edit {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
    @media (max-width: 992px) {
      .content-section .details .edit {
        display: none; } }
    .content-section .details > div:first-child:before {
      display: none; }
    .content-section .details > div:before {
      display: inline-block;
      padding-right: 0.5rem;
      padding-left: 0.5rem;
      color: #6b6b6b;
      content: "/"; }

pre {
  display: block;
  font-size: 100%;
  color: #212529;
  overflow: auto;
  font-family: Roboto;
  border: none;
  white-space: inherit; }

.category-section .category-item {
  background: #fff;
  margin-bottom: 30px;
  padding: 20px 30px; }
  @media (max-width: 576px) {
    .category-section .category-item {
      padding: 20px; } }
  .category-section .category-item h2.item-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: normal;
    margin-bottom: 20px; }
    @media (max-width: 1200px) {
      .category-section .category-item h2.item-title {
        font-size: 20px;
        margin-bottom: 15px; } }
    @media (max-width: 992px) {
      .category-section .category-item h2.item-title {
        font-size: 18px;
        margin-bottom: 15px; } }
    @media (max-width: 576px) {
      .category-section .category-item h2.item-title {
        margin-bottom: 10px; } }
    .category-section .category-item h2.item-title a {
      color: #5b8ba7; }
      .category-section .category-item h2.item-title a:hover {
        color: #6c97b0; }
  .category-section .category-item .item-content {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: justify; }
    @media (max-width: 576px) {
      .category-section .category-item .item-content {
        font-size: 15px; } }
    .category-section .category-item .item-content svg {
      margin-bottom: -1px; }
  .category-section .category-item .details {
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #6b6b6b;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px; }
    .category-section .category-item .details .date, .category-section .category-item .details .edit {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
    @media (max-width: 992px) {
      .category-section .category-item .details .edit {
        display: none; } }
    .category-section .category-item .details > div:first-child:before {
      display: none; }
    .category-section .category-item .details > div:before {
      display: inline-block;
      padding-right: 0.5rem;
      padding-left: 0.5rem;
      color: #6b6b6b;
      content: "/"; }

.content-header {
  background: #5b8ba7;
  margin-bottom: 30px;
  padding: 20px 30px; }
  @media (max-width: 576px) {
    .content-header {
      padding: 20px; } }
  .content-header .header-breadcrumb {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px; }
    .content-header .header-breadcrumb ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #e0e9ee;
      list-style: none;
      margin: 0;
      padding: 0;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .content-header .header-breadcrumb ul li {
        color: #e0e9ee; }
        .content-header .header-breadcrumb ul li:first-child:before {
          display: none; }
        .content-header .header-breadcrumb ul li:before {
          display: inline-block;
          padding-right: 0.5rem;
          padding-left: 0.5rem;
          color: #e0e9ee;
          content: "/"; }
        .content-header .header-breadcrumb ul li a {
          color: #e0e9ee; }
        .content-header .header-breadcrumb ul li.active {
          color: #fff; }
          .content-header .header-breadcrumb ul li.active a {
            color: #fff; }
  .content-header .content-title h1 {
    color: #fff;
    margin: 0;
    font-size: 36px; }
    @media (max-width: 1200px) {
      .content-header .content-title h1 {
        font-size: 32px; } }
    @media (max-width: 992px) {
      .content-header .content-title h1 {
        font-size: 28px; } }
    @media (max-width: 768px) {
      .content-header .content-title h1 {
        font-size: 23px; } }
    @media (max-width: 576px) {
      .content-header .content-title h1 {
        font-size: 20px; } }

.widget {
  background: #fff;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative; }
  .widget.widget-video {
    padding: 0;
    background: transparent; }
    .widget.widget-video iframe {
      display: block; }
  .widget .widget-header {
    margin-bottom: 10px;
    z-index: 1; }
    .widget .widget-header span.icon {
      position: absolute;
      left: -20px;
      font-size: 80px;
      top: 5px;
      opacity: 0.05;
      z-index: 2;
      color: #000; }
    .widget .widget-header h3 {
      position: relative;
      z-index: 3;
      margin: 0;
      font-size: 16px;
      line-height: normal; }
      .widget .widget-header h3 span {
        display: inline-block;
        background: #5b8ba7;
        color: #fff;
        font-weight: 700;
        padding: 5px 10px; }
  .widget .widget-content {
    position: relative;
    z-index: 2;
    min-height: 60px; }
  .widget .read-more {
    margin-top: 15px;
    font-size: 13px;
    font-weight: 700; }
  .widget.in-color {
    background: #5b8ba7; }
    .widget.in-color .widget-header span.icon {
      color: #fff;
      opacity: 0.1; }
    .widget.in-color .widget-header h3 span {
      padding: 5px 0;
      background: transparent;
      color: #fff; }
  .widget.widget-list ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .widget.widget-list ul li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      line-height: normal;
      padding: 7px 0; }
      .widget.widget-list ul li a {
        font-size: 14px;
        color: #000;
        font-weight: 400; }
        .widget.widget-list ul li a:hover {
          color: #5b8ba7; }
  .widget.widget-links ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .widget.widget-links ul li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      line-height: normal;
      padding: 7px 0; }
      .widget.widget-links ul li a {
        font-size: 15px;
        color: #5b8ba7;
        font-weight: 400; }
        .widget.widget-links ul li a:hover {
          text-decoration: underline;
          color: #5b8ba7; }
  .widget.widget-timer .countdown-timer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 10px 0; }
    .widget.widget-timer .countdown-timer > div {
      width: 70px;
      height: 70px;
      border: 1px solid #fff;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .widget.widget-timer .countdown-timer > div .wrap-count {
        text-align: center;
        color: #fff; }
        .widget.widget-timer .countdown-timer > div .wrap-count .num {
          font-size: 32px;
          font-weight: bold;
          line-height: 34px; }
        .widget.widget-timer .countdown-timer > div .wrap-count .text {
          font-size: 13px;
          line-height: 10px; }
  .widget.widget-voter-list {
    padding: 0;
    background: transparent; }
    .widget.widget-voter-list .widget-header {
      display: none; }
    .widget.widget-voter-list a {
      display: block; }
      .widget.widget-voter-list a:hover {
        text-decoration: underline; }
      .widget.widget-voter-list a .text {
        background: #fff;
        color: #5b8ba7;
        font-weight: 700;
        padding: 10px 20px;
        font-size: 14px; }
      .widget.widget-voter-list a .image img {
        width: 100%;
        height: auto; }
  .widget.widget-newsletter .widget-header span.icon {
    color: #fff;
    opacity: 0.1;
    bottom: -70px;
    top: auto;
    left: 70px;
    font-size: 131px;
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg); }
  .widget.widget-newsletter .mailpoet_form {
    color: #fff;
    position: relative;
    z-index: 2; }
    .widget.widget-newsletter .mailpoet_form label + .mailpoet_paragraph {
      margin-top: 5px;
      margin-bottom: 20px;
      font-size: 14px; }
    .widget.widget-newsletter .mailpoet_form p {
      margin: 0; }
    .widget.widget-newsletter .mailpoet_form form {
      width: 100%;
      position: relative;
      margin-bottom: 10px; }
    .widget.widget-newsletter .mailpoet_form .mailpoet_message .mailpoet_validate_success {
      margin: 0;
      list-style: none;
      background: rgba(99, 198, 12, 0.6);
      padding: 4px 8px;
      font-size: 13px !important;
      margin-top: 5px;
      border-radius: 6px;
      color: #fff !important;
      line-height: normal; }
    .widget.widget-newsletter .mailpoet_form .parsley-errors-list {
      margin: 0;
      list-style: none;
      padding: 0; }
      .widget.widget-newsletter .mailpoet_form .parsley-errors-list li {
        margin: 0;
        list-style: none;
        background: rgba(255, 37, 19, 0.6);
        padding: 4px 8px;
        font-size: 13px !important;
        margin-top: 5px;
        border-radius: 6px;
        color: #fff !important;
        line-height: normal; }
    .widget.widget-newsletter .mailpoet_form .mailpoet_text {
      background: #fff;
      height: 40px;
      border: none;
      padding: 5px 10px;
      font-size: 14px;
      font-weight: 500;
      color: #000;
      -webkit-appearance: none;
      width: 100% !important;
      outline: none; }
      .widget.widget-newsletter .mailpoet_form .mailpoet_text::-webkit-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #000;
        opacity: 1;
        /* Firefox */ }
      .widget.widget-newsletter .mailpoet_form .mailpoet_text:-ms-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #000;
        opacity: 1;
        /* Firefox */ }
      .widget.widget-newsletter .mailpoet_form .mailpoet_text::-ms-input-placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #000;
        opacity: 1;
        /* Firefox */ }
      .widget.widget-newsletter .mailpoet_form .mailpoet_text::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #000;
        opacity: 1;
        /* Firefox */ }
      .widget.widget-newsletter .mailpoet_form .mailpoet_text:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #000; }
      .widget.widget-newsletter .mailpoet_form .mailpoet_text::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #000; }
    .widget.widget-newsletter .mailpoet_form .mailpoet_submit {
      display: block;
      padding: 0 10px;
      margin: 0;
      margin-top: 10px;
      line-height: 35px;
      text-align: center;
      cursor: pointer;
      color: #fff;
      background: #ea6565;
      border: none;
      font-size: 13px; }
      .widget.widget-newsletter .mailpoet_form .mailpoet_submit:hover {
        background: #333333; }

.main-footer {
  background: #dfdfdf;
  padding: 50px 0 20px 0;
  color: #000; }
  .main-footer .footer-widget {
    margin-bottom: 30px; }
    .main-footer .footer-widget.info .icons {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 20px; }
      .main-footer .footer-widget.info .icons > div {
        margin-right: 5px; }
        .main-footer .footer-widget.info .icons > div a {
          display: block;
          background: #5b8ba7;
          height: 30px;
          width: 30px;
          line-height: 30px;
          text-align: center;
          color: #fff;
          border-radius: 15px;
          font-size: 15px; }
          .main-footer .footer-widget.info .icons > div a:hover {
            background: #6c97b0; }
    .main-footer .footer-widget.links h4 {
      position: relative;
      z-index: 3;
      margin: 0;
      font-size: 20px;
      line-height: normal;
      margin-bottom: 15px; }
      .main-footer .footer-widget.links h4 a {
        color: #000; }
    .main-footer .footer-widget.links ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .main-footer .footer-widget.links ul li {
        margin-bottom: 10px;
        line-height: 18px; }
        .main-footer .footer-widget.links ul li:last-child {
          margin-bottom: 0; }
        .main-footer .footer-widget.links ul li.has-submenu > a svg {
          cursor: cell; }
        .main-footer .footer-widget.links ul li.open > ul {
          display: block; }
        .main-footer .footer-widget.links ul li > ul {
          display: none;
          padding: 10px 15px; }
        .main-footer .footer-widget.links ul li a {
          color: #000;
          line-height: 20px; }
          .main-footer .footer-widget.links ul li a svg {
            width: 20px;
            height: 20px; }
          .main-footer .footer-widget.links ul li a:hover {
            color: #5b8ba7; }

.copyright {
  padding: 20px 0; }
  @media (max-width: 576px) {
    .copyright {
      text-align: center; }
      .copyright .row {
        display: block; }
      .copyright [class*="col-"] {
        max-width: none; } }
  .copyright .text {
    text-align: left;
    color: #000;
    font-size: 16px;
    font-weight: 400; }
    @media (max-width: 576px) {
      .copyright .text {
        text-align: center; } }
  .copyright .right {
    text-align: right; }
    @media (max-width: 576px) {
      .copyright .right {
        text-align: center; } }
    .copyright .right a {
      padding: 5px;
      font-weight: 500; }
      .copyright .right a:hover {
        text-decoration: underline; }

.table th, .table td {
  padding: 0.75rem 0; }

.attachments {
  margin: 20px 0; }
  .attachments h4 {
    position: relative;
    z-index: 3;
    margin: 0;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px; }
    .attachments h4 span {
      display: inline-block;
      background: #5b8ba7;
      color: #fff;
      font-weight: 700;
      padding: 5px 10px; }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0; }
  .pagination .page-numbers {
    margin-right: 4px;
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid rgba(91, 139, 167, 0.5);
    color: #fff;
    line-height: normal;
    background: rgba(91, 139, 167, 0.5); }
    .pagination .page-numbers:hover {
      border: 1px solid #5b8ba7;
      background: #5b8ba7; }
    .pagination .page-numbers.current {
      background: #5b8ba7;
      color: #fff; }

.sitemap {
  padding: 20px 0; }
  .sitemap ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .sitemap ul li {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      padding: 12px 0;
      margin-left: 30px;
      position: relative; }
      .sitemap ul li svg {
        position: absolute;
        top: 17px;
        content: "\f105";
        left: -16px;
        color: #5b8ba7;
        font-size: 14px; }
      .sitemap ul li:first-child {
        border-top: none; }
      .sitemap ul li a {
        font-size: 18px; }

.ui-accordion {
  font-family: Roboto;
  margin: 20px 0; }
  .ui-accordion .ui-accordion-header {
    margin: 5px 0 0 0;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    font-weight: 500; }
    .ui-accordion .ui-accordion-header .fa-chevron-down {
      display: none; }
    .ui-accordion .ui-accordion-header.ui-state-active {
      background: #5b8ba7; }
    .ui-accordion .ui-accordion-header.ui-accordion-header-active .fa-chevron-down {
      display: inline-block; }
    .ui-accordion .ui-accordion-header.ui-accordion-header-active .fa-chevron-up {
      display: none; }
    .ui-accordion .ui-accordion-header .accordions-head-title {
      margin-left: 10px; }
  .ui-accordion .ui-accordion-content {
    padding: 20px 30px; }
  .ui-accordion .ui-accordion-content {
    padding: 20px 30px; }
  .ui-accordion .ui-accordion-header-icon {
    display: none !important; }
  .ui-accordion .ui-accordion-content {
    padding: 20px; }

.ui-widget-content {
  border: 1px solid rgba(0, 0, 0, 0.1); }

.envira-gallery-wrap .envira-gallery-public {
  margin: 20px 0 !important; }

.faq-form {
  background: #5b8ba7;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  color: #fff; }
  .faq-form p {
    margin: 0; }
  .faq-form h4 {
    position: relative;
    z-index: 3;
    margin: 0;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px; }
    .faq-form h4 span {
      display: inline-block;
      background: #5b8ba7;
      color: #fff;
      font-weight: 700;
      padding: 5px 0; }
  .faq-form input[type="text"], .faq-form input[type="email"] {
    background: #fff;
    height: 40px;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    -webkit-appearance: none;
    outline: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 350px; }
  .faq-form textarea {
    background: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    -webkit-appearance: none;
    outline: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%; }
  .faq-form div.wpcf7-response-output {
    margin: 0;
    list-style: none;
    background: rgba(99, 198, 12, 0.6);
    padding: 4px 8px;
    font-size: 13px !important;
    margin-top: 5px;
    border-radius: 6px;
    color: #fff !important;
    line-height: normal;
    border: none; }
  .faq-form div.wpcf7-response-output.wpcf7-validation-errors,
  .faq-form div.wpcf7-response-output.wpcf7-acceptance-missing,
  .faq-form div.wpcf7-response-output.wpcf7-mail-sent-ng,
  .faq-form div.wpcf7-response-output.wpcf7-aborted {
    background: rgba(255, 37, 19, 0.6); }
  .faq-form span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 13px;
    font-weight: normal;
    display: block; }

.btn {
  display: block;
  padding: 0 10px;
  margin: 0;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #ea6565;
  border: none;
  font-size: 13px;
  border-radius: 0; }
  .btn:hover {
    background: #333333; }

.btn-primary {
  color: #fff;
  background: #ea6565;
  border-color: #ea6565; }

.profile-wrap {
  margin-bottom: 30px;
  text-align: center; }
  .profile-wrap .image {
    margin-bottom: 10px; }
    .profile-wrap .image img {
      display: block;
      height: 210px;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
  .profile-wrap .name {
    font-weight: 500;
    font-size: 20px; }
  .profile-wrap .position {
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px; }

.profiles .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px; }
  .profiles .button-group button {
    display: block;
    padding: 0 10px;
    margin: 0;
    margin-top: 10px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background: #5b8ba7;
    font-size: 13px;
    margin-right: 5px;
    background: rgba(91, 139, 167, 0.5);
    border: 1px solid rgba(91, 139, 167, 0.5);
    outline: none; }
    .profiles .button-group button.is-checked {
      background: #5b8ba7;
      color: #fff; }
    .profiles .button-group button:hover {
      border: 1px solid #5b8ba7;
      background: #5b8ba7; }

.isotope {
  margin: 0 -15px; }
  .isotope .isotope-sizer, .isotope .item {
    width: 24%;
    padding: 15px; }
    @media (max-width: 992px) {
      .isotope .isotope-sizer, .isotope .item {
        width: 50%; } }

#contact-map {
  height: 400px;
  width: 100%; }

.contact-form {
  overflow: hidden;
  position: relative;
  color: #fff; }
  .contact-form p {
    margin: 0; }
  .contact-form h4 {
    position: relative;
    z-index: 3;
    margin: 0;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px; }
    .contact-form h4 span {
      display: inline-block;
      background: #5b8ba7;
      color: #fff;
      font-weight: 700;
      padding: 5px 0; }
  .contact-form input[type="text"], .contact-form input[type="email"] {
    background: #fff;
    height: 40px;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    -webkit-appearance: none;
    outline: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 350px; }
  .contact-form textarea {
    background: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    -webkit-appearance: none;
    outline: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%; }
  .contact-form div.wpcf7-response-output {
    margin: 0;
    list-style: none;
    background: rgba(99, 198, 12, 0.6);
    padding: 4px 8px;
    font-size: 13px !important;
    margin-top: 5px;
    border-radius: 6px;
    color: #fff !important;
    line-height: normal;
    border: none; }
  .contact-form div.wpcf7-response-output.wpcf7-validation-errors,
  .contact-form div.wpcf7-response-output.wpcf7-acceptance-missing,
  .contact-form div.wpcf7-response-output.wpcf7-mail-sent-ng,
  .contact-form div.wpcf7-response-output.wpcf7-aborted {
    background: rgba(255, 37, 19, 0.6); }
  .contact-form span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 13px;
    font-weight: normal;
    display: block; }

.contact-section .google-map {
  margin-bottom: 30px; }

.contact-section .contact-form {
  height: 100%;
  background: #5b8ba7;
  padding: 30px; }
  @media (max-width: 576px) {
    .contact-section .contact-form {
      padding: 20px; } }

.contact-section .contact-info {
  background: #fff;
  height: 100%;
  padding: 30px; }
  @media (max-width: 576px) {
    .contact-section .contact-info {
      padding: 20px; } }

.contact-section .contact-info .elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .contact-section .contact-info .elem .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #5b8ba7;
    font-size: 36px;
    min-width: 60px;
    text-align: center; }
  .contact-section .contact-info .elem .info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 20px; }
  .contact-section .contact-info .elem:last-child {
    margin-bottom: 0; }

ul.content-categories-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  ul.content-categories-list li {
    margin: 5px 0 0 0; }
    ul.content-categories-list li a {
      padding: 12px 20px;
      font-size: 18px;
      border-radius: 0;
      border: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      outline: none;
      font-weight: 500;
      cursor: pointer;
      position: relative;
      display: block;
      background: #f6f6f6;
      color: #454545; }
      ul.content-categories-list li a:hover {
        background: #ededed;
        color: #2b2b2b; }

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  background-image: url(../images/arrow.png);
  background-position: unset; }

.sidebar-toggle {
  line-height: 1;
  color: #fff;
  padding: 8px 10px;
  font-size: 24px;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important; }
  .sidebar-toggle .text {
    font-size: 16px;
    margin-right: 5px; }

.sidebar-container {
  background: #5b8ba7; }

.sidebar-wrapper {
  background-color: #f2f2f2;
  position: relative;
  left: 0;
  z-index: 99;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  overflow: visible; }
  .sidebar-wrapper::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    -o-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    z-index: 9999; }

.mainnav-android {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s; }
  .mainnav-android::after {
    -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    -o-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; }

.sidebar-open .sidebar-wrapper::after {
  width: 100%;
  height: 10000px;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s; }

.sidebar-open .mainnav-android::after {
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s; }

.sidebar-menu {
  float: none;
  display: block;
  width: 100%; }
  .sidebar-menu > li {
    position: relative;
    border-bottom: 1px solid rgba(91, 139, 167, 0.3);
    margin-bottom: 5px; }
    .sidebar-menu > li a {
      font-size: 15px;
      font-weight: 500;
      display: block;
      line-height: 35px; }
    .sidebar-menu > li.active {
      border-bottom: 2px solid #5b8ba7; }
    .sidebar-menu > li .toggle-deeper {
      position: absolute;
      right: 0;
      top: 0;
      font-size: 18px;
      padding: 0 15px;
      height: 100%;
      line-height: 35px;
      cursor: pointer;
      color: #5b8ba7; }
    .sidebar-menu > li ul {
      padding-left: 10px; }
      .sidebar-menu > li ul a {
        font-size: 13px;
        line-height: 30px; }
  .sidebar-menu .nav-child {
    display: none; }

.sidebar-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  width: 250px;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #5b8ba7;
  color: #333333; }
  .sidebar-container ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .sidebar-container ul li {
      position: relative;
      line-height: 48px;
      border-bottom: 1px solid #6c97b0; }
      .sidebar-container ul li.menu-item-has-children .toggle-button {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 18px !important;
        color: #fff;
        width: 48px;
        height: 48px;
        line-height: 48px;
        border-left: 1px solid #6c97b0;
        margin: 0;
        text-align: center;
        cursor: pointer; }
      .sidebar-container ul li ul {
        padding-left: 15px;
        display: none; }
        .sidebar-container ul li ul li {
          border-bottom: none;
          border-top: 1px solid rgba(0, 0, 0, 0.1); }
      .sidebar-container ul li .container-fluid, .sidebar-container ul li .row {
        padding: 0;
        margin: 0; }
        .sidebar-container ul li .container-fluid > div, .sidebar-container ul li .row > div {
          padding: 0;
          margin: 0;
          width: 100% !important; }
      .sidebar-container ul li:first-child a .title {
        padding-left: 26px; }
      .sidebar-container ul li.active {
        background: rgba(0, 0, 0, 0.1); }
      .sidebar-container ul li a {
        color: #fff;
        padding-left: 24px;
        padding-right: 16px;
        display: block;
        position: relative;
        font-size: 13px;
        font-weight: bold;
        text-transform: uppercase; }
        .sidebar-container ul li a:hover, .sidebar-container ul li a:focus {
          background: rgba(255, 255, 255, 0.1);
          text-decoration: none; }
        .sidebar-container ul li a i {
          font-size: 14px !important;
          margin-right: 4px; }
        .sidebar-container ul li a .title {
          white-space: nowrap;
          overflow: hidden;
          opacity: 1;
          display: block;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis; }

.sidebar-right.sidebar-container {
  display: none; }

.sidebar-right .sidebar-right.sidebar-container {
  display: block; }

html .sidebar-container.sidebar-right {
  left: auto;
  right: 0; }

.sidebar-open .sidebar-container::after {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  -o-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s; }

.sidebar-open .sidebar-current {
  visibility: visible; }

.sidebar-open .sidebar-container {
  overflow-y: auto; }

.sidebar-effect-1.sidebar-container {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.sidebar-effect-1.sidebar-open .sidebar-effect-1.sidebar-container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sidebar-effect-1.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-1.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.sidebar-effect-2.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-2.sidebar-container {
  z-index: 1; }

.sidebar-effect-2.sidebar-open .sidebar-effect-2.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s; }

.sidebar-effect-2.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-2.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.sidebar-effect-3.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-3.sidebar-container {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.sidebar-effect-3.sidebar-open .sidebar-effect-3.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s; }

.sidebar-effect-3.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-3.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.sidebar-right.sidebar-effect-3.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.sidebar-effect-4.sidebar-open .sidebar-wrapper, .sidebar-effect-4.sidebar-open .mainnav-android {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-4.sidebar-container {
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0); }

.sidebar-effect-4.sidebar-open .sidebar-effect-4.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sidebar-effect-4.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-4.sidebar-open .sidebar-wrapper, .sidebar-right.sidebar-effect-4.sidebar-open .mainnav-android {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.sidebar-right.sidebar-effect-4.sidebar-container {
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0); }

.sidebar-effect-5.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-5.sidebar-container {
  z-index: 1;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0); }

.sidebar-effect-5.sidebar-open .sidebar-effect-5.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sidebar-right.sidebar-effect-5.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.sidebar-right.sidebar-effect-5.sidebar-container {
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0); }

body.sidebar-effect-6 {
  -webkit-perspective: 1500px;
  perspective: 1500px; }

.sidebar-effect-6 .sidebar-wrapper {
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  height: auto;
  overflow: hidden; }

.sidebar-effect-6.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0) rotateY(-15deg);
  transform: translate3d(250px, 0, 0) rotateY(-15deg); }

.sidebar-effect-6.sidebar-container {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.sidebar-effect-6.sidebar-open .sidebar-effect-6.sidebar-container {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sidebar-effect-6.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-6 .sidebar-wrapper {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }

.sidebar-right.sidebar-effect-6.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0) rotateY(15deg);
  transform: translate3d(-250px, 0, 0) rotateY(15deg); }

.sidebar-right.sidebar-effect-6.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

body.sidebar-effect-7 {
  -webkit-perspective: 1500px;
  perspective: 1500px;
  -webkit-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%; }

.sidebar-effect-7 .sidebar-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-7.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-7.sidebar-container {
  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
  transform: translate3d(-100%, 0, 0) rotateY(-90deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-7.sidebar-open .sidebar-effect-7.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(-100%, 0, 0) rotateY(0deg);
  transform: translate3d(-100%, 0, 0) rotateY(0deg); }

body.sidebar-effect-7.sidebar-right {
  -webkit-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%; }

.sidebar-right.sidebar-effect-7.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.sidebar-right.sidebar-effect-7.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);
  transform: translate3d(100%, 0, 0) rotateY(90deg);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.sidebar-right.sidebar-effect-7.sidebar-open .sidebar-right.sidebar-effect-7.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0) rotateY(0deg);
  transform: translate3d(100%, 0, 0) rotateY(0deg); }

body.sidebar-effect-8 {
  -webkit-perspective: 1500px;
  perspective: 1500px;
  -webkit-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%; }

.sidebar-effect-8 .sidebar-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-8.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-8.sidebar-container {
  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg);
  transform: translate3d(-100%, 0, 0) rotateY(90deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-8.sidebar-open .sidebar-effect-8.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(-100%, 0, 0) rotateY(0deg);
  transform: translate3d(-100%, 0, 0) rotateY(0deg); }

.sidebar-effect-8.sidebar-container::after {
  display: none; }

body.sidebar-effect-8.sidebar-right {
  -webkit-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%; }

.sidebar-right.sidebar-effect-8.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.sidebar-right.sidebar-effect-8.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg);
  transform: translate3d(100%, 0, 0) rotateY(-90deg);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.sidebar-right.sidebar-effect-8.sidebar-open .sidebar-right.sidebar-effect-8.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0) rotateY(0deg);
  transform: translate3d(100%, 0, 0) rotateY(0deg); }

body.sidebar-effect-9 {
  -webkit-perspective: 1500px;
  perspective: 1500px; }

.sidebar-effect-9 .sidebar-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-9.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(0, 0, -250px);
  transform: translate3d(0, 0, -250px); }

.sidebar-effect-9.sidebar-container {
  opacity: 1;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.sidebar-effect-9.sidebar-open .sidebar-effect-9.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sidebar-effect-9.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-9.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

body.sidebar-effect-10 {
  -webkit-perspective: 1500px;
  perspective: 1500px;
  -webkit-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%; }

.sidebar-effect-10.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-10.sidebar-container {
  z-index: 1;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, -250px);
  transform: translate3d(0, 0, -250px); }

.sidebar-effect-10.sidebar-open .sidebar-effect-10.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

body.sidebar-effect-10.sidebar-right {
  -webkit-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%; }

.sidebar-right.sidebar-effect-10.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

body.sidebar-effect-11 {
  -webkit-perspective: 1500px;
  perspective: 1500px; }

.sidebar-effect-11 .sidebar-wrapper {
  height: auto;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-11.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(100px, 0, -600px) rotateY(-20deg);
  transform: translate3d(100px, 0, -600px) rotateY(-20deg); }

.sidebar-effect-11.sidebar-container {
  opacity: 1;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.sidebar-effect-11.sidebar-open .sidebar-effect-11.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sidebar-effect-11.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-11.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-100px, 0, -600px) rotateY(20deg);
  transform: translate3d(-100px, 0, -600px) rotateY(20deg); }

.sidebar-right.sidebar-effect-11.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

body.sidebar-effect-12 {
  -webkit-perspective: 1500px;
  perspective: 1500px; }

.sidebar-effect-12 .sidebar-wrapper {
  height: auto;
  overflow: hidden;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-12.sidebar-open .sidebar-wrapper {
  -webkit-transform: rotateY(-10deg);
  transform: rotateY(-10deg); }

.sidebar-effect-12.sidebar-container {
  opacity: 1;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.sidebar-effect-12.sidebar-open .sidebar-effect-12.sidebar-container {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sidebar-effect-12.sidebar-container::after {
  display: none; }

.sidebar-right.sidebar-effect-12 .sidebar-wrapper {
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.sidebar-right.sidebar-effect-12.sidebar-open .sidebar-wrapper {
  -webkit-transform: rotateY(10deg);
  transform: rotateY(10deg); }

.sidebar-right.sidebar-effect-12.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

body.sidebar-effect-13 {
  -webkit-perspective: 1500px;
  perspective: 1500px;
  -webkit-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%; }

.sidebar-effect-13.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-13.sidebar-container {
  z-index: 1;
  opacity: 1;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.sidebar-effect-13.sidebar-open .sidebar-effect-13.sidebar-container {
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-speed: 0.2s;
  transition-speed: 0.2s; }

body.sidebar-effect-13.sidebar-right {
  -webkit-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%; }

.sidebar-right.sidebar-effect-13.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

body.sidebar-effect-14 {
  -webkit-perspective: 1500px;
  perspective: 1500px;
  -webkit-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%; }

.sidebar-effect-14 .sidebar-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-14.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.sidebar-effect-14.sidebar-container {
  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg);
  transform: translate3d(-100%, 0, 0) rotateY(90deg);
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sidebar-effect-14.sidebar-open .sidebar-effect-14.sidebar-container {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translate3d(-100%, 0, 0) rotateY(0deg);
  transform: translate3d(-100%, 0, 0) rotateY(0deg); }

body.sidebar-effect-14.sidebar-right {
  -webkit-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%; }

.sidebar-right.sidebar-effect-14.sidebar-open .sidebar-wrapper {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.sidebar-right.sidebar-effect-14.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg);
  transform: translate3d(100%, 0, 0) rotateY(-90deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }

.sidebar-right.sidebar-effect-14.sidebar-open .sidebar-right.sidebar-effect-14.sidebar-container {
  -webkit-transform: translate3d(100%, 0, 0) rotateY(0deg);
  transform: translate3d(100%, 0, 0) rotateY(0deg); }

.old-ie .sidebar-container {
  z-index: 100 !important;
  left: -250px; }

html[dir="ltr"] .sidebar-right.old-ie .sidebar-container {
  right: -250px;
  left: auto; }

.modal-open .sidebar-wrapper {
  position: static; }

/**
 * Pages
 */
