@import url('https://fonts.googleapis.com/css?family=Roboto:200,300,400,400i,700');
html {
    font-size: 10px;
}

html,
body {
    height: 100%;
    background-color: #fff;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-repeat: repeat;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #222;
    margin: 0;
    padding: 125px 0 0;
    overflow-y: auto;
}

body.noscroll {
    overflow: hidden;
}

a {
    color: #235acc;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    color: #235acc;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: #235acc;
}

h3 {
    font-size: 2.2rem;
    color: #235acc;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.6rem;
}

strong,
b {
    font-weight: 700;
}

.row {
    min-width: 100%
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.btn {
    position: relative;
    background-color: transparent;
    border: 2px solid #235acc;
    color: #235acc;
    display: inline-block;
    outline: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 1.2rem 3rem;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn:hover {
    color: #000;
    border-color: #000;
    text-decoration: none;
}

.btn-dark {
    color: #fff;
    border-color: #235acc;
    background-color: #235acc;
}

.btn-dark:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.btn-arrow {
    border: 0;
    background-image: url(../img/icon-arrow-right.svg);
    background-size: auto 60%;
    background-position: 100% 40%;
    background-repeat: no-repeat;
    padding: 1rem 4rem 1rem 0;
}

.btn-arrow:hover {
    padding: 1rem 5rem 1rem 0;
}

.btn-sm {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
}

.btn-xl {
    padding: 1.4rem 4rem;
    font-size: 1.6rem;
}

.btn-block {
    display: block;
}


/* --------------------------
  FORMS
-------------------------- */

.form-group {
    margin: 1.5rem 0;
}

.form-group label {
    margin: 0 0 .7rem;
    display: inline-block;
}

.form-control {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    height: 4.4rem;
    line-height: 1.4;
    color: inherit;
    background-color: #f5f5f5;
    background-clip: padding-box;
    border: 1px solid #eee;
    border-radius: .25rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: 'Roboto', arial, sans-serif;
}

.form-control:focus {
    background-color: #cedcec;
    border: 1px solid #cedcec;
}

textarea.form-control {
    height: 13rem
}

.form-control.short {
    width: 120px;
}


/* Custom radio */

.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radio [type="radio"]:checked + label,
.custom-radio [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #111;
    font-family: 'Roboto', arial, sans-serif;
}

.custom-radio [type="radio"]:checked + label:before,
.custom-radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #235acc;
    border-radius: 100%;
    background: transparent;
}

.custom-radio [type="radio"]:checked + label:before {
    border: 2px solid #235acc;
}

.custom-radio [type="radio"]:checked + label:after,
.custom-radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #235acc;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* Custom check */

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 0 0 3px;
    opacity: 1;
    display: inherit;
    line-height: 24px;
    color: #222;
    font-size: 1.4rem;
}

.styled-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 4px;
    border: 2px solid #235acc;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.styled-checkbox:hover + label:before {
    background: #fff;
    border: 2px solid #fff;
}

.styled-checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.styled-checkbox:checked + label:before {
    background: transparent;
    border: 2px solid #235acc;
}

.styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    width: 7px;
    height: 10px;
    border: solid #235acc;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}


/* --------------------------
  MISC
-------------------------- */

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.margintop10 {
    margin-top: 10px
}

.margintop20 {
    margin-top: 20px
}

.margintop30 {
    margin-top: 30px
}

.margintop40 {
    margin-top: 40px
}

.margintop50 {
    margin-top: 50px
}

.marginbtm10 {
    margin-bottom: 10px
}

.marginbtm20 {
    margin-bottom: 20px
}

.marginbtm30 {
    margin-bottom: 30px
}

.marginbtm40 {
    margin-bottom: 40px
}

.marginbtm50 {
    margin-bottom: 50px
}


/* IMG instead of background */

.scalable-img {
    height: 1200px;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.scalable-img img {
    /*max-width: 100%;*/
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%;
    max-width: 1000%;
    min-height: 100%;
    min-width: 100%;
}

.scalable-img:before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 23, 86, 0.5);
    position: absolute;
}


/* Slider general */

.swiper-container {
    width: 100%;
    height: auto;
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    background: #fff;
    position: relative;
}


/* --------------------------
	HEADER
-------------------------- */

.header_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 99;
}

.smaller .header_container {
    position: fixed;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
}

.logo {
    width: 250px;
    display: block;
}


/* Language */

.language {
    width: 65px;
    margin: 5px 0 0 auto;
    background-image: url(../img/icon-arrow-down.svg);
    background-size: 22px auto;
    background-position: 100% 10px;
    background-repeat: no-repeat;
}

.language ul {
    position: relative;
}

.language ul li {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

.language ul a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 15px;
    border: 0;
    color: #235acc;
    line-height: unset;
    background: transparent !important;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    padding-right: 1rem;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after{
  display: none;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu{
  border: 0;
}

.language ul li ul {
    background: #eee;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    float: left;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    z-index: 1;
    width: 60px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.language ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

.language ul li ul a {
    padding: 1rem;
    display: block;
    font-weight: 700;
    background: transparent;
}

.language ul li ul a:hover {
    background: #ccc;
}


/* Header main */

.header-main {
    padding: 3rem 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    align-items: center;
}

.smaller .header-main {
    padding: 1.5rem 0;
}

.topmenu {
    margin-left: auto;
}

.topmenu li {
    display: inline-block;
    text-transform: uppercase;
    margin: 0 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.topmenu a {
    position: relative;
    display: block;
    padding: 1rem 0;
}

.topmenu a:hover,
.topmenu .active a,
.current-menu-item a,
.current-page-ancestor a {
    color: #000;
}

.topmenu span {
    position: relative;
    margin-left: 5px;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../img/icon-arrow-down.svg);
    background-size: contain;
    background-position: 100%;
    background-repeat: no-repeat;
}


/* Topmenu megamenu */

.topmenu-bigmenu {
    position: fixed;
    z-index: 90;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    transform: translateY(-100%);
    padding-left: 50%;
    background-color: #f5f5f5;
}

.topmenu-bigmenu.active {
    transform: translateY(0%);
    top: 122px;
    height: calc(100vh - 122px);
}

.smaller .topmenu-bigmenu.active {
    top: 92px;
    height: calc(100vh - 92px);
}

.close-topmenu-bigmenu {
    position: absolute;
    top: 20px;
    right: 21px;
    font-size: 4rem;
    line-height: 1;
    display: block;
    z-index: 4;
}

.close-topmenu-bigmenu span {
    font-size: 11px;
    vertical-align: top;
    text-transform: uppercase;
    font-weight: 700;
}

.topmenu-bigmenu.scalable-img img {
    position: absolute;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    z-index: 1;
}

.topmenu-bigmenu.scalable-img:before {
    z-index: 2;
}

.topmenu-bigmenu-text {
    position: relative;
    background-color: #f5f5f5;
    z-index: 3;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 3rem 12rem;
}

.topmenu-bigmenu-text h2 {
    margin: 2rem 0;
}

.topmenu-bigmenu-text ul {
    margin: 2rem 0;
    padding: 0;
}

.topmenu-bigmenu-text ul a {
    display: block;
    padding: .6rem 0;
}


/* Triggers */

.topaction {
    z-index: 9;
    display: block;
    margin-left: 4rem;
    position: relative;
    text-align: center;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: 30px;
    padding-top: 35px;
    min-width: 30px;
}
.topaction span {
    display: block;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
}

.trigger-nav {
    display: none;
    background-image: url(../img/icon-nav.svg);
}

.trigger-nav.active {
    background-image: url(../img/icon-close.svg);
    background-size: 70%;
}

.trigger-search {
    background-image: url(../img/icon-search.svg);
}

/* .trigger-weather {
    background-image: url(../img/icon-weather.svg);
} */


header .simple-weather--view-large-icons .sw {
    font-size: 2.6em;
    top: -40px;
    left: -5px;
    -webkit-transform: none;
    transform:none;

    position: absolute;
    margin: 0;
}
a.topaction.trigger-weather .simple-weather__date {
  display: none;
}
a.topaction.trigger-weather .simple-weather--view-large-icons .simple-weather__day{
  min-height: unset;
}
a.topaction.trigger-weather .simple-weather--view-large-icons .simple-weather__day{
  padding: 0;
}

/* Search */

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    z-index: 92;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
    border-top: 1px solid #eee;
}

.search-modal.visible {
    opacity: 1;
    transform: translateY(0%);
    padding: 3rem 0;
    box-shadow: 0 0 2rem rgba(0, 0, 0, .1);
    top: 123px;
}

.smaller .search-modal.visible {
    top: 93px;
}

.search-modal.visible::after {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 999;
    right: 0;
    content: '';
    height: 1000%;
}

.search-modal .close-search {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3rem;
    line-height: 1;
}

.search-modal .form-inner {
    position: relative;
}

.search-modal input {
    border: 0;
    width: 100%;
    background: transparent;
    border-bottom: 2px solid #aaa;
    font-size: 3rem;
    line-height: 1.2;
    padding: 1rem;
}



/* --------------------------
	SUBPAGES INTRO
--------------------------*/

.subpages-intro-inner{
    padding:4rem;
    color:#fff;
    position: relative;
    min-height: 200px;
    align-items: center;
    border-radius: 10px;
}
.subpages-intro-inner.scalable-img img {
    position: absolute;
    z-index: 1;
}
.subpages-intro-inner.scalable-img:before {
    z-index: 2;
}
.subpages-intro-inner h1,
.subpages-intro-inner h2{
    position: relative;
    z-index: 3;
    color:#fff;
}

.weather-block{
    padding:5rem 3rem;
    background: #f1efed;
    border-radius: 10px;
}


/* --------------------------
	HOME SLIDER
--------------------------*/

.home-slider-wrapper {
    position: relative;
}

.home-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    transform: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 30% 3rem 8rem;
    color: #fff;
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
    border-radius: 10px;
}

.home-slider-content:hover {
    color: #dc9b00;
}

.home-slider-content em {
    font-style: normal;
    color: #dc9b00;
    font-size: 1.5rem;
    line-height: 1;
    padding: 1rem 0;
}

.home-slider-content span {
    font-size: 1.7rem;
    display: block;
    margin: 2rem 0;
}

.home-slider-content .btn {
    margin-top: 2rem;
    color: #fff;
    border-color: #235acc;
    background-color: #235acc;
}

.home-slider-content .btn:hover {
    border-color: #dc9b00;
    background-color: #dc9b00;
}

.home-slider .swiper-slide {
    height: 500px;
}

.home-slider .swiper-slide.scalable-img img,
.home-slider .swiper-slide.scalable-img:before {
    border-radius: 10px;
}

.home-next,
.home-prev {
    color: #fff;
    font-size: 40px;
}

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

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 18px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 9;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: #fff;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #dc9b00;
}


/* --------------------------
    HOME CONTENT
-------------------------- */

.home-content {
    padding: 5rem 0;
}

.home-content-wrapper {
    flex-wrap: wrap;
}

.home-cols {
    flex: 1 1 50%;
    max-width: 50%;
}

.home-cols:last-child {
    padding-left: 4rem;
}

.home-cols-heading {
    flex-wrap: wrap;
}

.home-cols-heading .btn {
    margin-left: auto;
}


/* --------------------------
    NEWS
-------------------------- */

.home-news {
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.home-news.news-page {
    margin: 0;
}

.home-news-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin: 10px 10px 15px;
}

.news-page .home-news-item {
    flex: 1 1 calc(33.33333% - 20px);
    max-width: calc(33.33333% - 20px);
}

.home-news-item h5 {
    font-size: 1.25rem;
    color: #834a27;
    text-transform: none;
    margin:0;
}

.home-news-item h5 span {
    margin-right: 1rem;
}

.home-news-item img {
    margin: 1.5rem 0;
    transition: all .3s ease;
}

.home-news-item:hover img {
    opacity: .7;
}

.home-news-item h3 {
    font-size: 1.7rem;
    margin:0;
}

/* News details */

.home-news-details h5 {
    font-size: 1.25rem;
    color: #834a27;
    text-transform: none;
    margin:0;
}
.home-news-details h5 span {
    margin-right: 1rem;
}


/* --------------------------
    HOME TIMES
-------------------------- */

.home-times {
    margin: 2rem 0;
    padding: 2rem;
    background: #e9ebf1;
    box-shadow: 0 20px 34px rgba(0, 0, 0, .1);
}

.home-times .times-list-list {
    height: 200px;
}

.times-list-list div {
    padding: .7rem 0;
}

.home-times-list-comment {
    padding: .7rem 0;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
    opacity: .5;
}

.times-list-list div span {
    display: inline-block;
    width: 70px;
    opacity: .5;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: right;
    padding-right: 25px;
}

.tabs {
    align-items: stretch;
    justify-content: space-between;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.tabs > li {
    transition-duration: .25s;
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 700;
}

.tabs > li.active {
    color: #235acc;
    border-bottom: 2px solid #235acc;
}

.tab__content {
    position: relative;
    width: 100%;
}

.tab__content > li {
    width: 100%;
    display: none;
    list-style: none;
    padding: 2rem 0;
}

.tab__content > li li {
    position: relative;
    margin: .5rem 0;
    padding: 0 0 0 2.5rem;
    line-height: 1.5;
    font-size: 15px;
}


/* --------------------------
    HOME SHORTCUTS
-------------------------- */

.home-shortcuts{
    flex-wrap: wrap;
    margin: 1rem -1rem;
}
.home-shortcut-item{
    flex:1;
    max-width: 50%;
    height: 200px;
    justify-content: center;
    align-items: center;
    color:#fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-weight: 700;
    font-size:2rem;
    margin: 1rem;
    background-color: #245acc;
    background-blend-mode: soft-light;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .2);
}
.home-shortcut-item:last-child{
    background-color: #dc9b04;
    background-blend-mode: multiply;
}
.home-shortcut-item:hover{
    background-color: #000;
    background-blend-mode: luminosity;
    color:#235acc;
}



/* --------------------------
    SUBPAGES CONTENT
-------------------------- */

.subpages_content {
    padding-bottom: 50px;
}

.sidebar-content {
    flex-wrap: wrap;
    align-items: flex-start;
    padding:4rem 0;
}

.sidebar-content-left {
    flex: 1 1 260px;
    padding: 4rem 3rem 0 0;
    max-width: 260px;
}

.sidebar-content-right {
    flex: 1 1 calc(100% - 260px);
    max-width: calc(100% - 260px);
}

.subpages_content h2,
.subpages_content h3,
.subpages_content h4,
.subpages_content h5,
.subpages_content p,
.subpages_content .btn,
.subpages_content ul {
    margin: 2rem 0;
}
.subpages_content .sidebar-content-left .btn{
  margin: 1rem 0 0;
}
.subpages_content .home-news-item h5,
.subpages_content .home-news-item h3 {
    margin:0;
}

.subpages_content .sidebar-content-left h3{
    margin-bottom:0;
}

.subpages_content li {
    position: relative;
    margin: .8rem 0;
    padding: 0 0 0 3rem;
    line-height: 1.3;
}

.subpages_content li:before {
    content: '';
    width: 1.3rem;
    height: 1px;
    background: #aaa;
    position: absolute;
    top: 10px;
    left: 0;
}

.subpages_content ol{
	list-style: decimal;
	padding-left:20px;
}
.subpages_content ol li{
	display: list-item;
	padding:0 0 0 1rem;
}
.subpages_content ol li:before {
    content: none;
}

.subpages_content .sidebar-menu {
    border-bottom:1px solid #eee;
    padding:2rem 0;
    margin:0;
}

.subpages_content .sidebar-menu li {
    font-size: 1.5rem;
}

.subpages_content .sidebar-menu li ul {
    display: none;
}

.subpages_content .sidebar-menu li.active ul,
.subpages_content .sidebar-menu li.page_item_has_children.current_page_item ul{
    display: block;
}

.subpages_content .sidebar-menu.archives li{
    font-size:2rem;
}
.subpages_content .sidebar-menu li.active a,
.subpages_content .sidebar-menu li a[aria-current] {
    color: #222;
}
.subpages_content .sidebar-menu li.active li.active a {
    color: #235acc;
}

.subpages_content li.active:before {
    background: #222;
}

.subpages_content .sidebar-menu li.active li.active:before {
    background: #235acc;
}

.subpages_content .table {
    margin: 2rem 0;
}


.subpages_content img.alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
}

.subpages_content img.alignright {
    float: right;
    margin: 0 0 1em 1.5em;
}

.subpages_content p a,
.subpages_content ul a {
    font-weight: 700;
}


.right-content-block{
    padding: 0 0 2rem;
    background: #f1efed;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    margin-bottom: 4rem;
}

.content-entry-content {
    padding: 3rem 9rem;
    position: relative;
}

.content-entry-heading {
    padding: 3rem 9rem;
    position: relative;
    align-items: center;
}

.content-entry-heading .btn {
    margin-left: auto;
}

.content-entry-image{
    position: relative;
}
.content-entry-image h6 {
    text-align: right;
    padding:0 9rem;
}

.content-entry-content .btn + .btn{
    margin-left:2rem;
}

.subpages_content h1 {
    margin: 1rem 0 3rem;
}
.subpages_content .content-entry-heading h1 {
    margin: 1rem 0;
}
.subpages_content .content-entry-heading h2, .subpages_content .content-entry-heading h3 {
    margin: 1rem 0;
}

/* Gallery */

.gallery {
    position: relative;
    text-align: center;
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.content-entry-image .gallery {
    margin: 0 20px;
}

.gallery a {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    margin: 10px;
    display: block;
    position: relative;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery .caption {
    display: none
}

.gallery .hidden-img {
    display: none
}

.content-entry-image .isvideo {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/icon-video.svg');
    transition: all .3s ease-in-out;
}

.content-entry-image a:hover .isvideo {
    transform: translate(-50%, -50%) scale(1.1);
}

.morephotos {
    position: absolute;
    top: calc(50% - 10px);
    left: 50%;
    z-index: 2;
    text-transform: uppercase;
    font-size: 2rem;
    transform: translate(-50%,-50%);
    background: #f1efed;
    padding: 1rem 3rem;
}



/* Share article */
.share-article{
    border-top:1px solid #ccc;
    padding: 1rem 9rem;
    align-items: center;
    position: relative;
    margin-top: 3rem;
}
.share-article p{
    margin-right:1rem;
}
.share-article a{
    padding:1rem;
    display: inline-block;
}
.share-article img{
    height:30px;
}


/* Breadcrumbs */

.breadcrumbs {
    padding: 2rem 0;
}

.breadcrumbs ul li {
    display: inline;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.breadcrumbs ul li+li:before {
    padding: .8rem;
    color: #bbb;
    content: "/\00a0";
}


/* Accordion */

.accordion {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.accordion h3,
.subpages_content .accordion h3 {
    position: relative;
    padding: 1.5rem 5rem 1.5rem 0;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    margin: 0;
    background-image: url(../img/icon-arrow-down.svg);
    background-size: auto 26px;
    background-position: 100% 40%;
    background-repeat: no-repeat;
    font-size:1.6rem;
    border-bottom: 1px solid #aaa;
}

.accordion h3.active {
    color: #000;
    border: 0;
    background-image: url(../img/icon-arrow-up.svg);
}

.accordion .acc_txt {
    position: relative;
    padding: 0 0 1rem;
    border-bottom: 1px solid #aaa;
}


/* Tabel */

.table {
    width: 100%;
    text-align: left;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 2rem 0;
}

.table td,
.table th {
    padding: 1rem;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    text-align: left;
    transition: all .3s ease
}

.table td:last-child,
.table th:last-child {
    border-right: 0;
}

.table th {
    background-color: #fff;
    border-bottom:0;
}
.table td {
    font-size: 1.5rem
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-kalapyyk-times td{
    width:20%;
}
.table-kalapyyk-times td:first-child{
    width:100px;
}
.table-kalapyyk-times td:last-child{
    width:35%;
}

/* Responsive video */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    margin-top: 15px
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Search results */
.serach-result-item{
	margin:2rem 0;
	max-width:800px;
}

.serach-result-item p,
.serach-result-item .btn{
	margin:1.5rem 0;
}

/* Lightgallery */

.lg-backdrop {
    background-color: #fff;
}

.lg-toolbar {
    background-color: rgba(255, 255, 255, 0.45);
}

.lg-toolbar .lg-icon {
    color: #235acc;
}

.lg-toolbar .lg-icon:hover {
    color: #000;
}

.lg-sub-html {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}

.lg-sub-html h4 {
    font-size: 24px;
    font-weight: 700;
    color: #235acc;
}

.lg-sub-html p {
    font-size: 15px;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
    background-color: rgba(255, 255, 255, 0.7);
    color: #235acc;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: #000;
}

.lg-outer .lg-thumb-outer {
    background-color: #235acc;
}

.lg-outer .lg-toogle-thumb {
    background-color: #235acc;
    color: #fff;
}

.lg-outer .lg-thumb-item {
    border-radius: 0;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #000;
}



/* -------------------------
	SUPPORTERS
--------------------------*/

.supporters {
    text-align: center;
    padding: 5rem 0;
}

.supporters h2 {
    font-size: 1.25rem;
    margin: 0 0 3rem;
    text-transform: uppercase;
    opacity: .5;
}

.supporters a {
    display: inline-block;
    margin: 1rem;
}

.supporters img {
    height: 80px;
    mix-blend-mode: multiply;
}


/* --------------------------
	FOOTER
-------------------------- */

.footer_container {
    position: relative;
    padding: 5rem 0;
}

.footer-content {
    flex-wrap: wrap;
    padding: 2rem;
    background: #e2e8ff;
    justify-content: center;
    align-items: center;
}

.footer-content p {
    margin: 1rem 2rem;
}

.footer-links ul {
    margin: 1.5rem 0;
    text-align: center;
}

.footer-links li {
    text-transform: uppercase;
    margin: 1rem;
    display: inline-block;
    font-weight: 700;
}

.copy {
    padding: 5rem 0 3rem;
    font-size: 1.2rem;
    color: #aaa;
    text-align: center;
}


/* --------------------------
	COOKIES
-------------------------- */

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(220, 155, 2);
    color: #fff;
    z-index: 9;
    opacity: 1;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    font-size: 12px;
}

.cookies.hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookies-content {
    position: relative;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
}

.cookies-content a {
    color: #fff;
}

.cookies-content p {
    flex: 2;
    padding-right: 3rem;
}

.cookies-content .btn {
    font-size: 11px;
    margin-left: auto;
    background: #222;
    border: 0;
}

.cookies-content .btn:hover {
    background: #235acc;
}


/* --------------------------
    MOBILE NAV
-------------------------- */

.nav_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100% - 64px);
    transform: translateX(-100%);
    background: #f5f5f5;
    box-shadow: 0 0 5rem rgba(0, 0, 0, .2);
    opacity: 0;
    z-index: 1001;
    overflow: auto;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    padding: 3rem;
}

.nav_overlay.active {
    transform: translateX(0%);
    opacity: 1;
}

.nav_overlay ul {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0 0 1rem;
}

.nav_overlay ul li {
    position: relative;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-size: 2rem;
    line-height: 1.3;
}
.nav_overlay .mobile-lang li {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
}
.nav_overlay ul li a {
    padding: .7rem 0;
    text-decoration: none;
    display: block;
    color: #235acc;
    border-bottom: 1px solid #eee;
}
.nav_overlay .mobile-lang li a {
    padding: .7rem 1rem .7rem 0;
    border:0;
}

.nav_overlay ul li:last-child a {
    border-bottom: 0;
}

.nav_overlay ul li a:hover,
.nav_overlay ul li.active a {
    color: #000;
}
.mobile-lang .wpml-ls-statics-footer{
  display: block;
}
.wpml-ls-statics-footer{
  display: none;
}
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer>ul {
  text-align: left;
}
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
  margin-bottom: 20px;
  border: 0;
  padding: 0;
}


/* --------------------------
	MEDIA QUERIES
-------------------------- */

@media only screen and (max-width: 1500px) {}

@media only screen and (max-width: 1250px) {}

@media only screen and (max-width: 1160px) {
    .topmenu li {
        margin: 0 1.2rem;
        font-size: 1.4rem;
    }
    .subpages_content .sidebar-menu li {
        font-size: 1.5rem;
    }
    .styled-checkbox + label {
        font-size: 1.35rem;
    }
    .content-entry-heading,
    .content-entry-content {
        padding: 3rem 5rem;
    }
}

@media only screen and (max-width: 1100px) {
    .topmenu {
        display: none;
    }
    .trigger-nav {
        display: block;
    }
    .supporters img {
        height: 65px;
    }
    .home-slider .swiper-slide {
        height: 400px;
    }
    .home-slider-content {
        padding: 4rem 8rem 2rem 6rem;
    }
}

@media only screen and (max-width: 960px) {
    body {
        font-size: 1.4rem;
    }
    .home-slider-content {
        font-size: 4rem;
    }
    .home-content-wrapper {
        flex-direction: column;
    }
    .home-cols {
        flex: 1;
        max-width: 100%;
    }
    .home-cols:last-child {
        padding-left: 0;
        margin-top:50px;
    }
}

@media only screen and (max-width: 768px) {
    .sidebar-content {
        padding: 3rem 0;
        display: block;
    }
    .sidebar-content-left {
        padding: 0 0 3rem;
        max-width: 100%;
    }
    .sidebar-content-right {
        max-width: 100%;
    }
}

@media only screen and (max-width: 700px) {}

@media only screen and (max-width: 640px) {
    body {
        padding: 114px 0 0;
    }
    .header_container {
        position: fixed;
		box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    }
    h2 {
        font-size: 2.5rem;
    }
    .home-slider-content {
        font-size: 3rem;
        padding: 3rem 5rem;
    }
    .language{
        display: none;
    }
    .trigger-weather{
        margin-left: auto;
    }
    .logo {
        width: 195px;
    }
    .supporters img {
        height: 42px;
    }
}

@media only screen and (max-width: 500px) {
    h1 {
        font-size: 3rem;
    }
    .topaction {
        margin-left: 2rem;
    }
    .trigger-weather{
        margin-left: auto;
    }
    .home-news-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 10px 0;
    }
    .home-slider-content span {
        font-size: 1.4rem;
    }
	.content-entry-heading, .content-entry-content {
        padding: 2rem 3rem;
    }
}

@media only screen and (max-width: 450px) {
    body {
        padding: 90px 0 0;
    }
    .header-main {
        padding: 2rem 0;
        align-items: center;
    }
    .topaction span {
        font-size: 10px;
    }
    .nav_overlay {
        width: calc(100% - 90px);
    }
    .logo {
        width: 175px;
    }
    .home-slider-content {
        font-size: 2.5rem;
        padding: 3rem 3rem;
    }
}

@media only screen and (max-width: 380px) {
    .home-shortcuts {
        display: block;
    }
    .home-shortcut-item {
        max-width: 100%;
        height: auto;
        padding: 7rem 0;
    }
}

@media (min-width: 1500px) {
    .home-slider-wrapper .container {
        max-width: 1500px;
    }
}

@media (min-width: 1600px) {
    .home-slider-wrapper .container {
        max-width: 1600px;
    }
    .home-slider-content {
        padding: 5rem 33% 3rem 11rem;
    }
}
