/* FONTS */

@font-face {
    font-family: 'PF Encore';
    src:    url('../fonts/PFEncore/PFEncoreSansPro-Book.eot?#iefix') format('embedded-opentype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Book.otf') format('opentype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Book.woff') format('woff'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Book.ttf') format('truetype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Book.svg#Lack-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'PF Encore';
    src:    url('../fonts/PFEncore/PFEncoreSansPro-Light.eot?#iefix') format('embedded-opentype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Light.otf') format('opentype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Light.woff') format('woff'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Light.ttf') format('truetype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-Light.svg#Lack-Regular') format('svg');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'PF Encore';
    src:    url('../fonts/PFEncore/PFEncoreSansPro-LightItalic.eot?#iefix') format('embedded-opentype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-LightItalic.otf') format('opentype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-LightItalic.woff') format('woff'), 
            url('../fonts/PFEncore/PFEncoreSansPro-LightItalic.ttf') format('truetype'), 
            url('../fonts/PFEncore/PFEncoreSansPro-LightItalic.svg#Lack-Regular') format('svg');
    font-weight: 200;
    font-style: italic;
}


/* GENERAL */

:root {
    --space: 2rem;
	--sm-space: 1rem;
	--xs-space: .5rem;
    --space-negative: -2rem;
    --line: 3rem;
    --sm-line: 2.1rem;
    --xl-size: 2.5rem;
    --sm-size: 1.8rem;
}
html {
    font-size: 62.5%;
    color: #000;
}
body {
    color: #000;
    font-size: var(--xl-size);
    line-height: var(--line);
    font-family: 'PF Encore', sans-serif;
    font-weight: 200;
    letter-spacing: 0.1rem;
    padding: 0 var(--space) 0 var(--space);
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-size: var(--xl-size);
    font-weight: 200;
    margin: 0;
    padding: 0;
}
a {
    color: #000;
    text-decoration: none !important;
}
a:hover{
    background: transparent;
    color: #000;
}
a:focus, a:active {
    background: transparent;
    color: #000;
    text-decoration: none !important;
}
.container, .container-fluid {
    padding-right: var(--space);
    padding-left: var(--space);
}
p {
    margin: 0 0 var(--space) 0;
}
::selection {
    color: #ffffff;
    background: #000000;
}
::-moz-selection {
    color: #ffffff;
    background: #000000;
}
*, ::after, ::before {
    box-sizing: border-box;
}
footer {
    margin-top: var(--space);
}
a.arrow.router-link-active:not(.blog):before,
a.arrow.router-link-exact-active:before,
a.arrow.active:before,
a.arrow:hover:before {
    content: '→';
    padding-right: 1rem; 
}
a.first-active.arrow:before {
    content: '→';
    padding-right: 1rem; 
}
.sidebar .top ul > li > a.arrow.router-link-active:not(.router-link-exact-active):hover span:before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.m-t-space {
    margin-top: var(--space);
}


/* SCROLLBARS */

::-webkit-scrollbar {
    width: .5rem;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.5); 
}
::-webkit-scrollbar-thumb:hover {
	background: #000000; 
}
::-webkit-scrollbar {
	display: none;
	background: transparent; 
}

/* RESPOSIVE SIZES */

@media (max-width: 1400px) {
    html {
        font-size: 57.5%
    }
}
@media (min-width: 1800px) {
    html {
        font-size: 65%;
    }
}
@media (min-width: 2600px) {
    html {
        font-size: .50vw
    }
}


/* UTILITIES */

.d-none {
    display: none;
}
.p-r-0 {
   padding-right: 0 !important;
}
.img { 
    max-width: 100%;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: var(--space-negative);
    margin-left: var(--space-negative);
}
.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-3, .col-6, .col-9, .col-12 {
    width: 100%;
    padding-right: var(--space);
    padding-left: var(--space);
}
.hidden {
    display: none;
}

/* HEADER */

header {
    padding: var(--space) 0;
    margin: 0 0 var(--space) 0;
    line-height: 1;
    border-bottom: solid 1px #000;
    height: calc(6rem - 1px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: #fff;
    z-index: 3;
}
header h1 {
    height: var(--space);
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
header a {
    height: var(--space);
    display: inline-block;
}
header .lang {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    -ms-flex-item-align: end!important;
    align-self: flex-end!important;
    height: var(--space);
    text-align: right;
}
header .lang span,
header .lang:hover span.active {
    width: 0px;
    display: inline-block;
    overflow: hidden;
    line-height: 2.6rem;
    cursor: pointer;
    text-align: right;
    float: right;
}
header .lang span.active,
header .lang:hover span {
    width: 5rem;
}

/* LAYOUT */

#main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: var(--space-negative);
    margin-right: var(--space-negative);
}
.main-fluid {
    max-width: 80%;
    -ms-flex: 0 0 auto;
    flex: 0 0 80%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: var(--space);
    padding-right: var(--space);
    margin-bottom: var(--space);
    margin-left: 20%;
}
.backToTopText-wrap,
.backToTop-wrap {
    text-align: right;
    padding-top: var(--space);
    padding-bottom: 0;
    border-top: solid 1px #000;
}
.backToTop {
    cursor: pointer;
}
.backToTop:before{
    content: '↑';
    padding-right: 1rem; 
    opacity: 0;
}
.backToTop:hover:before {
    opacity: 1;
}

/* SIDEBAR */

.sidebar {
    max-width: 20%;
    width: 20%;
    padding-left: var(--space);
    padding-right: var(--space);
    border-right: solid 1px #000;
    position: fixed;
    top: 8rem;
    height: calc(100vh - 10rem);
    justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.sidebar .top {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-bottom: auto;
}
.sidebar .bottom {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    -ms-flex-item-align: end!important;
    align-self: flex-end!important;
    margin-top: auto;
    font-size: var(--sm-size);
    line-height: var(--sm-line);
}
.sidebar .bottom p:last-child {
    margin: 0;
}
.sidebar .top ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar .top ul > li {
    line-height: var(--sm-line);
}
.sidebar .top ul > li + li {
    margin-top: var(--space);
}
.sidebar .top ul > li > a {
    line-height: var(--sm-line);
    display: inline-block;
}
.sidebar .top ul > li > a.arrow.router-link-active:not(.router-link-exact-active) span {
    position:relative;
}
.sidebar .top ul > li > a.arrow.router-link-active:not(.router-link-exact-active) span:before {
    content: '';
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0.15rem;
    left: 0.625rem;
    transform: rotate(45deg);
    pointer-events: none;
}
html[lang="el"] .sidebar .top ul > li > a.arrow span {
    display: none;
}
html[lang="el"] .sidebar .top ul > li > a.arrow.router-link-active:not(.router-link-exact-active) span {
    display: inline;
}
html[lang="el"] .sidebar .top ul > li > a.arrow.router-link-active:not(.router-link-exact-active) span:before {
    left: -1rem;
}

/* EXHIBITONS */

.exhibitions-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-content: flex-start;
}
.exhibition-wrap {
	margin-bottom:calc(var(--space) / 1.5);
}
.exhibitions-border {
    min-height: calc(100vh - 10rem);
    border-right: solid 1px #000;
}
.exhibitions-year {
    font-size: var(--sm-size);
    cursor: pointer;
	width:auto;
	display:inline-block;
	vertical-align:top;
	line-height: var(--sm-line);
	margin-bottom:calc(var(--space) / 1.5);
}
.exhibitions-year_wrap {
    margin-bottom: var(--space);
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.exhibitions-year_wrap:last-child {
    margin-bottom: 0;
}
.exhibitions-year_wrap:last-child .exhibition-wrap:last-child {
    margin-bottom: 0;
}
.exhibitions-year_wrap.collapse .exhibition-wrap {
    display: none;
}
.exhibition-wrap .exhibition-title {
	display:inline-block;
	vertical-align:top;
}
.exhibition-wrap .exhibition-title > a {
	line-height: var(--line);
	display:flex;
	align-items:flex-start;
}
.exhibitions-image {
    position: sticky;
    top: 8rem;
	height:calc(100vh - 10rem);
}
.exhibitions-image img {
	max-height:100%;
	width:auto;
}

/* EXHIBITONS */

.exhibition_s-wrap {

}
.exhibition_s-wrap .exhibition_s-title {
    min-height: calc(100vh - 10rem);
    position: fixed;
    max-width: 20%;
    width: 20%;
}
.exhibition_s-wrap .exhibition_s-title h3 {
    font-size: var(--sm-size);
    line-height: var(--sm-line);
    clear: both;
}
.exhibition_s-wrap .exhibition_s-title h1 {
    padding: 1rem 0;
	padding-top: var(--xs-space);
    border-bottom: solid 1px #000;
}
.exhibition_s-wrap .exhibition_s-main {
    border-left: solid 1px #000;
    margin-left: 25%;
}
.exhibition_s-wrap .exhibition_s-tabs > a {
    clear: both;
    display: block;
    margin-top: 1rem;
    line-height: var(--line);
}
.exhibition_s-wrap .exhibition_s-tab {
    display: none;
    min-height: calc(100vh - 10rem);
}
.exhibition_s-wrap .exhibition_s-tab.active {
    display: block;
}
.exhibition_s-wrap .exhibition_s-gallery_image p {
    font-size: var(--sm-size);
    line-height: var(--sm-line);
    margin: 1rem 0 0 0;
}
.exhibition_s-wrap .exhibition_s-gallery_image img {
    display: block;
}
.exhibition_s-wrap .exhibition_s-gallery_image {
    margin-bottom: var(--space);
}



.exhibition_s-wrap .exhibition_s-gallery figure {
    margin: 0;
    margin-bottom: var(--space);
    display: block;
}
.exhibition_s-wrap .exhibition_s-gallery figure img {
    max-width: 100%;
    display: block;
}
.exhibition_s-wrap .exhibition_s-gallery figure p {
    font-size: var(--sm-size);
    line-height: var(--sm-line);
    margin: 1rem 0 0 0;
}


.exhibition_s-wrap .pswp__item {
    top: calc(6rem + var(--space) - 1px);
    height: calc(100vh - 12rem - var(--space) - var(--space) + 2px);
}
.exhibition_s-wrap .pswp__counter {
    /* display: none; */
    line-height: calc(6rem - 1px);
    height: calc(6rem - 1px);
    opacity: 1;
    color: #000;
    font-size: inherit;
}
.exhibition_s-wrap .pswp__zoom-wrap {
    position: absolute;
    transform: none !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
	display:flex;
}
.exhibition_s-wrap .pswp__zoom-wrap .pswp__img,
.exhibition_s-wrap .pswp--zoom-allowed .pswp__img {
	cursor: default;
    max-width:calc(100% - (var(--space) * 2)); 
    max-height: 100%;
    margin: auto;
    width: auto!important;
    position: static;
}
.exhibition_s-wrap .pswp__bg {
    background: rgba(255, 255, 255, 0.85);
}
.exhibition_s-wrap .pswp__ui {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.exhibition_s-wrap .pswp__ui--fit .pswp__top-bar {
    background: none;
    opacity: 1;
    border-bottom: solid 1px #000;
    font-size: var(--xl-size);
    line-height: calc(6rem - 1px);
    height: calc(6rem - 1px);
    width: calc(100vw - var(--space) - var(--space));
    left: var(--space);
}
.exhibition_s-wrap .pswp__ui--fit .pswp__caption {
    background: none;
    opacity: 1;
    border-top: solid 1px #000;
    height: calc(6rem - 1px);
    text-align: center;
    width: calc(100vw - var(--space) - var(--space));
    left: var(--space);
}
.exhibition_s-wrap .pswp__caption__center {
    color: #000;
    font-size: var(--sm-size);
    line-height: calc(6rem - 1px);
    max-width: 100%;
    padding: 0;
    text-align: center;
}
.exhibition_s-wrap .pswp__top-caption {
    width: 100%;
    text-align: center;
    z-index: 10;
}
.exhibition_s-wrap .pswp__button--close,
.exhibition_s-wrap .pswp__button--close.pswp__button--close-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(6rem - 1px);
    z-index: 11;
    background: none;
    /*     background-color: rgba(44, 94, 121, 0.5); */
    background: none !important;
    cursor: none;
}
.exhibition_s-wrap .pswp__button--close.pswp__button--close-bottom {
    top: unset;
    bottom: 0;
/*     background-color: rgba(43, 134, 88, 0.5); */
    cursor: none;
}
.exhibition_s-wrap .pswp__button.pswp__button--arrow--right, 
.exhibition_s-wrap .pswp__button.pswp__button--arrow--left {
    opacity: 1;
    height: calc(100vh - 12rem + 2px);
    width: 50%;
    margin: 0;
    top: calc(6rem - 1px);
    position: absolute;
    /*     background-color: rgba(187, 45, 45, 0.3); */
    cursor: none;
}
.exhibition_s-wrap .pswp__button.pswp__button--arrow--right{
/*     background-color: rgba(0, 0, 0, 0.4); */
}
.exhibition_s-wrap .pswp__button--close:hover ~ #mouse_nav:after {
    content: "CLOSE";
}
.exhibition_s-wrap .pswp__button--arrow--left:hover ~ #mouse_nav:after {
    content: "PREVIOUS";
}
.exhibition_s-wrap .pswp__button--arrow--right:hover ~ #mouse_nav:after {
    content: "NEXT";
}
.exhibition_s-wrap .pswp__button.pswp__button--arrow--right:before, 
.exhibition_s-wrap .pswp__button.pswp__button--arrow--left:before {
    display: none;   
}
.exhibition_s-wrap  #mouse_nav {
    position: absolute;
    width: auto;
    height: 2.5rem;
    line-height: 2.5rem;
    margin: 0;
    transform: translate3d(-50%, -1.25rem, 0);
    display: block;
    z-index: 1020;
    pointer-events: none;
    text-align: center;
    cursor: none;
}

.exhibition_s-wrap .exhibition_s-text {
    /*font-size: var(--sm-size);
    line-height: var(--sm-line);*/
}

.exhibition_s-wrap .exhibition_s-text p {
	font-size: var(--sm-size);
    line-height: var(--sm-line);
    margin: 0 0 var(--sm-space) 0;
}

.exhibition_s-wrap .exhibition_s-text strong {
    font-size: var(--xl-size);
    line-height: var(--line);
	font-weight:300;
}

.exhibition_s-artists .exhibition_s-list {
    margin: 0;
    padding: 0;
    list-style: none;
	font-style:normal;
}
.exhibition_s-artists .artist-list-wrap {
    max-width: 38.5vw;
    width: 38.5vw;
    padding-right: var(--space);
    padding-left: var(--space);
}
.exhibition_s-artists .artist-image-wrap {
    max-width: 20vw;
    width: 20vw;
    padding-left: var(--space);
    padding-right: 0;
}
.exhibition_s-artists .exhibition_s-list li {
    line-height: var(--sm-line);
}
.exhibition_s-artists .exhibition_s-list li  {
    margin-bottom: calc(var(--space));
}
.exhibition_s-artists .exhibition_s-list li a{
    line-height: var(--sm-line);
    display: inline-block;
}


/* ARTISTS */

.artist-wrap {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}


/* PROJECTS */




/* PROJECT */



/* BLOG */

.blog-image img {
    max-width: 100%;
	width:100%;
}
.blog-wrap {
    border-bottom: solid 1px #000;
    padding-top: var(--space);
    padding-bottom: var(--space);
}
.blog-wrap:first-child {
    padding-top: 0;
}
.blog-wrap:last-child {
    border-bottom: 0;
}
.blog-subtitle {

}
.blog-description p {
	font-size: var(--sm-size);
    line-height: var(--sm-line);
    margin: 0 0 var(--sm-space) 0;
}

.blog-description strong {
    font-size: var(--xl-size);
    line-height: var(--line);
	font-weight:300;
}

.blog-image p {
    margin: 0 0 0 0;
    font-size: var(--sm-size);
    line-height: var(--sm-line);
}
.blog-description a:hover:before {
    content: '→';
    padding-right: 1rem; 
}


/* INFO */

.info-wrap p strong,
.info-wrap div strong {
    font-size: var(--sm-size);
    font-weight: normal;
    line-height: var(--sm-line);
	width:100%;
	display:inline-block;
}
.info-wrap a:hover:not(.not-arrow):before {
    content: '→';
    padding-right: 1rem; 
}
.info-wrap .showMap {
    cursor: pointer;
    clear: both;
}
.info-map {
    position: absolute;
    top: 0;
    left: 2rem;
    width: calc(100% - 4rem);
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.info-map.active {
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
}
.info-map iframe {
    width: 100%;
    height: 100%;
}
.info-map #gmap_canvas {
    width: 100% !important;
    height: 100% !important;
}
.info-map-wrap {
    position: relative;
}
body:not(.mobile) .info-text .not-arrow {
    display: flex;
	float:left;
}
body:not(.mobile) .info-text .not-arrow:hover > p {
    padding-left: 1rem;
}
body:not(.mobile) .info-text .not-arrow:hover:before {
    content: "→";
    display: block;
    float: left;
    padding-right: 1rem;
}
body:not(.mobile) .info-text .not-arrow:hover p {
    display: block;
    float: left;
}
.mobile-header {
    display: none;
}
.safari header {
    position: fixed;
    width: calc(100% - var(--space) - var(--space));
    left: var(--space);
    top: 0;
}
.safari #main {
    margin-top: 8rem;
}
.mobile-only {
    display: none;
}

/* RESPOSIVE */

@media only screen and (min-width: 2100px) {
    header,
    .sidebar,
    .blog-wrap,
    .backToTop-wrap,
    .backToTopText-wrap,
    .exhibitions-border,
    .exhibition_s-wrap .exhibition_s-main,
    .exhibition_s-wrap .exhibition_s-title h1,
    .exhibition_s-wrap .pswp__ui--fit .pswp__top-bar,
    .exhibition_s-wrap .pswp__ui--fit .pswp__caption
    {
        border-width: 0.15rem;
    }
    .sidebar .top ul > li > a.arrow.router-link-active:not(.router-link-exact-active) span:before {
        width: 0.15rem;
    }
    html {
        font-size: 75%;
    }
}


@media (min-width: 991px){
	.d-mobile {
		display:none;
	}
	.main-fluid.left-scroll-line {
		position:relative;
		border-left: solid 1px #000;
		left: -1px;	
	}
	.info-scroll {
		display:none;
	}
	.exhibitions-year:hover:after {
		content: "↑";
		padding-left: 1rem;
	}
	.exhibitions-year_wrap.collapse .exhibitions-year:hover:after {
		content: "↓";
		padding-left: 1rem;
	}
}
@media (max-width: 991px){
	.d-desktop {
		display:none;
	}
    header,
    .sidebar {
        display: none;
    }
    .main-fluid {
        max-width: 100%;
        -ms-flex: 0 0 auto;
        flex: 0 0 100%;
        margin-left: 0;
    }
    .exhibitions-border {
        border: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        min-height: unset;
    }
    .exhibitions-image {
        display: none;
    }
    .mobile .exhibitions-year:after {
        content: "↑";
        padding-left: 1rem;
    }
    .exhibition_s-wrap .exhibition_s-title {
        position: static;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        min-height: unset;
    }
    .exhibition_s-wrap .exhibition_s-main {
        margin-left: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border: 0;
    }
    .exhibition_s-tabs {
        border-bottom: solid 1px #000;
        margin-bottom: var(--space);
        padding-bottom: var(--space);
    }
    .exhibition_s-artists .artist-list-wrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .exhibition_s-wrap .exhibition_s-title h1 {
        margin-bottom: var(--space);
    }
    .exhibition_s-wrap .artist_s-title h1 {
        padding: 0 0 var(--space) 0;
    }
    .exhibition_s-wrap .exhibition_s-tab {
        min-height: unset;
    }    
	.exhibitions-year:after {
		display:none;
	}
	.main-fluid.left-scroll-line .exhibitions-image {
		display:none;
	}
    .mobile-header {
        padding: var(--space) 0;
        margin: 0;
        line-height: 1;
        border-bottom: solid 1px #000;
        height: calc(11rem + 1px);
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between;
        position: fixed;
        top: 0;
        background: #fff;
        z-index: 3;
        width: calc(100% - 4rem);
        left: var(--space);
    }
    .mobile-header ul {
        display: block;
        margin: var(--space) 0 0 0;
        padding: 0;
        list-style: none;
    }
    .mobile-header ul li {
        display: none;
        position: relative;
    }
    .mobile-header.active ul li {
        display: block;
        margin-bottom: var(--space)
    }
    .mobile-header ul li a {
        position: relative;
    }
    .mobile-header ul li a span {
        position: relative;
    }
    .mobile-header.active ul li:last-child {
        margin-bottom: 0;
    }
    .mobile-header ul li.router-link-active {
        display: inline-block;
    }
    .mobile-header ul li.router-link-active a:before {
        content: '→';
        padding-right: 1rem;
    }
    .mobile-header ul > li.router-link-active:not(.router-link-exact-active) span:before {
		content: '';
		width: 1px;
		height: 100%;
		background: #000;
		position: absolute;
		top: 50%;
		transform: translate(-50%,-50%) rotate(45deg);
		left: 50%;
		pointer-events: none;
    }
    .mobile-header.active ul > li.router-link-active:not(.router-link-exact-active) span:before {
        display: none;
    }
    .mobile-header #mmenu {
			height: 4.5rem;
			padding: 1rem;
			top: -1rem;
			right: -1rem;
			position:relative;
    }
    .mobile-header #mmenu span {
        width: 2.5rem;
        border-bottom: solid 1px #000;
        display: block;
        margin-bottom: 6px;
        margin-left: auto;
    }
    .mobile-header #mmenu span:nth-child(1) {
		position: absolute;
		top: 1rem;
		right: 1rem;
    }
    .mobile-header #mmenu span:nth-child(2) {
		position: absolute;
		top: calc(1rem + 6px);
		right: 1rem;
    }
    .mobile-header #mmenu span:nth-child(3) {
		position: absolute;
		top: calc(1rem + 12px);
		right: 1rem;
    }
    .mobile-header .lang {
        margin: 0 0 0 0;
    }
    .mobile-header .lang > span {
        display: block;
        width: 4rem;
        text-align: right;
    }
    .mobile-none {
        display: none;
    }
    
    .mobile-header #mmenu span {
        transition: linear 0.2s all;
    }
    .mobile-header.active #mmenu span:nth-child(1) {
        position: absolute;
        top: calc(1rem + 8px);
        right: 1rem;
        transform: rotate(45deg);
    }
    .mobile-header.active #mmenu span:nth-child(2) {
        display: none;
    }
    .mobile-header.active #mmenu span:nth-child(3) {
        position: absolute;
         top: calc(1rem + 8px);
         right: 1rem;
        transform: rotate(-45deg);
    }
    .wrap2 {
        border-left: solid 1px #000;
        padding-left: var(--space);
    }
    .mobile-header.active,
    .mobile-header.large-one.active {
        height: auto;
        z-index: 100;
    }
    .mobile-header.large-one {
        height: calc(15rem + 1px);
    }

    .mobile-title {
        line-height: var(--space);
        margin: var(--space) 0 0 0;
    }
    .mobile-header.active .mobile-title {
        display: none;
    }
    .mmenu-active #app:after {
        content: '';
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.7);
    }
    #main, .safari #main {
        margin-top: calc(11rem + 1px);
        padding-top: var(--space);
    }
    .mobile-header.large-one + #main {
        margin-top: calc(15rem + 1px);
    }
    .info-wrap .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        min-height: auto;
    }
    .exhibition_s-wrap .exhibition_s-tabs > a:first-child {
        margin-top: 0;
    }
    .backToTopText-wrap, .backToTop-wrap {
        text-align: left;
    }
    .backToTop:before {
        display: none;
    }
    .backToTop:after {
        content: '↑';
        padding-left: 1rem;
    }
    html[lang="el"] .mobile-header ul > li > a.arrow span {
        display: none;
    }
    html[lang="el"] .mobile-header ul > li.router-link-active:not(.router-link-exact-active) > a.arrow span {
        display: inline;
    }
    html[lang="el"] .mobile-header ul > li.router-link-active:not(.router-link-exact-active) > a.arrow span:before {
        left: -1rem;
    }
    html[lang="el"] .mobile-header.active ul > li.router-link-active:not(.router-link-exact-active) > a.arrow span {
        display: none;
    }

}

@media (max-width: 550px){
    html {
        font-size: 50%
    }
    .blog-text,
    .blog-image {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mobile-header #mmenu {

    }
    .mobile-header {
        height: 89px;
        padding: 16px 0;
    }
    #main, .safari #main {
        margin-top: 89px;
    }
}

@media (max-width: 350px){
    html {
        font-size: 42.5%
    }
    .blog-text,
    .blog-image {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mobile-header {
        height: 86px;
        padding: 15px 0;
    }
    #main, .safari #main {
        margin-top: 86px;
    }
}