
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800&subset=greek');


@font-face {
    font-family: 'HandBook';
    src: url(fonts/PFHandbookPro-Thin.ttf);
    font-weight: 300;
}
@font-face {
    font-family: 'HandBook';
    src: url(fonts/PFHandbookPro-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: 'HandBook';
    src: url(fonts/PFHandbookPro-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: 'HandBook';
    src: url(fonts/PFHandbookPro-Black.ttf);
    font-weight: 900;
}

:root {
    
    --fontA: 'Open Sans', sans-serif;
    --fontB: 'HandBook', sans-serif;
    
    
    --colorA: hsl(176, 77%, 48%);
    --colorB: hsl(217, 29%, 14%);
    --colorC: hsl(212, 79%, 96%);
    --colorD: hsl(216, 25%, 25%);
    --colorE: hsl(240, 11%, 96%);
    --colorF: hsl(201, 24%, 25%);
    
    

    --txA: 0 0 1px hsla(217, 29%, 14%, 0.4);
    --txB: 0 0 1px hsla(176, 77%, 48%, 0.4);
    --txWH: 0 0 1px hsla(0, 0%, 100%, 0.4);
    --txBL: 0 0 1px hsla(0, 0%, 0%, 0.4);
}




body { 
    margin: 0;
    font: 400 14px var(--fontA); 
    line-height: 1.3; 
}
*, *::before, *::after { box-sizing: border-box; }    



.hvcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.vcenter {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.hidden { display: none; }
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


a,p,h1,h2,h3,h4,h5 {
    color: hsl(60, 0%, 10%);
    text-shadow: 0 0 1px hsla(60, 41%, 10%, 0.35);
}


a {
    margin: 0 0 8px 0;
    font: 900 16px var(--fontA);
    text-decoration: none;
    color: var(--colorB);
    text-shadow: var(--txB);
}
a:hover { color: var(--colorA); }
p {
    margin: 0 0 8px 0;
    font: 400 14px var(--fontA);
}
h1 {
    margin: 8px 0 16px 0;
    font: 900 36px var(--fontA);
}
h2 {
    margin: 8px 0 8px 0;
    font: 400 28px var(--fontA);
    color: var(--colorA);
    text-shadow: var(--txA);
}
h3 {
    margin: 0 0 8px 0;
    font: 900 22px var(--fontA);
}
h4 {
    margin: 0 0 8px 0;
    font: 700 20px var(--fontA);
}
h5 {
    margin: 0 0 8px 0;
    font: 400 18px var(--fontA);
}



/* Heading Underline */
.uline { position: relative; display: inline-block; }
.uline::after {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -12px;
    content: "";
    border-bottom: 8px solid var(--colorA);
}
.uline-small::after { width: 64px; }

h1.uline { margin-bottom: 24px; }
h2.uline { 
    margin-bottom: 24px;
    color: var(--colorB);
    text-shadow: var(--txB);
    font-weight: 900;
}
h3.uline::after { 
    bottom: -8px; 
    border-bottom: 4px solid var(--colorA);
}
h4.uline::after,
h5.uline::after { bottom: -4px; border-bottom: 2px solid var(--colorA); }





/* *************************************************** DARK BACK */
.dark-back h1 {
    color: white;
    text-shadow: var(--txWH);
}
.dark-back h3,
.dark-back h4,
.dark-back h5,
.dark-back p,
.dark-back a {
    color: var(--colorD);
    text-shadow: var(--txD);
}


.dark-back h2.uline {
    color: white;
    text-shadow: var(--txWH);
    font-weight: 900;
}
.dark-back h3.uline,
.dark-back h4.uline,
.dark-back h5.uline {
    margin-bottom: 16px;
    color: white;
    text-shadow: var(--txWH); 
}








.floatingX { transition: 0.9s linear all; }


.box-overlay {
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--colorA);
    mix-blend-mode: multiply;
}
.actusbase-home-card-A:hover .box-overlay { animation: box-overlay 1s; }

@keyframes box-overlay {
  0%   { left: 100% ; width: 0px; }
  50%  { left: 0; width: 100%; }
  100% { left: 0; width: 0px; }
}




#content, footer { display: block; }






/* *************************************************** LAYOUT */
.half  { width: 50%; }
.third { width: 33.333%; }
.two-thirds { width: 66.666%; }
.quarter  { width: 25%; }

.floL { float: left; }
.floR { float: right; }

.txtC { text-align: center; }
.txtL { text-align: left; }
.txtR { text-align: right; }


.space { width: 100%; height: 32px; clear: both; }
.space16 { height: 16px; }
.space64 { height: 64px; }
.space128 { height: 128px; }

.pad8  { padding: 8px; }
.pad16 { padding: 16px; }
.pad32 { padding: 32px; }
.pad64 { padding: 64px; }
.pad128 { padding: 128px; }

 
/* ***************************************************
/* *************************************************** actusbase
/* ************************************************ */
.actusbase-header {
    width: 100%;
    padding: 64px 96px 0px;
}



h2.with-line {
    display: inline-block;
    padding: 0 8px;
    background: white;
}
.title-line {
    width: 64px;
    margin-bottom: 16px;
    border-top: 4px solid var(--colorB);
}
.title-line-B {
    width: 80px;
    margin-bottom: 16px;
    border-top: 4px solid var(--colorA);
}

.Hline.small {
    width: 48px;
    height: 2px;
    background: white;
    margin: 0 auto;
}
.Hline.colA { background: var(--colorA); }

.grey-back {
    background: hsl(0, 0%, 97%);
}
.dark-back {
    background: var(--colorB);
}

 

.actusbase-more {
    position: relative;
    display: inline-block;
    margin-top: 16px;
    overflow: hidden;
    background: var(--colorA);
    border-radius: 16px;
    cursor: pointer;
}
.actusbase-more p {
    position: relative;
    padding: 4px 16px 0 !important;
    margin-bottom: 4px;
    letter-spacing: 0.5px; 
    font: 300 14px var(--fontA);
    color: var(--colorE);
    text-shadow: var(--txE);
}
.actusbase-more .overlay {
    position: absolute;
    width: 0%;
    height: 100%;
    overflow: hidden;
    background: black;
    transition: 0.2s all;
    border-radius: 16px;
}

.dark-back .actusbase-more { background: white; }
.dark-back .actusbase-more p {
    color: var(--colorB);
    text-shadow: var(--txB);
}
.dark-back .actusbase-more .overlay { background: var(--colorA); }

.dark-back .title-line-B { } 


.actusbase-more:hover .overlay { width: 100%; }
.dark-back .actusbase-more:hover p { color: white; text-shadow: var(--txWH); }


/* ************************************************ MENU */
.actusbase-main-navigation {
    position: relative;
    width: 100%;
    margin: 16px 0 0;
    z-index: 9;
}

#primary-menu {
    display: block;
    text-align: center;
    text-shadow: 0 0 1px hsla(0, 0%, 0%, 0.66);
    padding: 0;
    margin: 0;
}
#primary-menu .nav-menu {
    text-align: center;
    margin: 0;
    padding: 0 32px;
}
#primary-menu .menu-item {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    margin: 8px 24px;
    text-align: center;
    color: black;
}
#primary-menu .menu-item a {
    font: 300 14px var(--fontA);
    letter-spacing: 0.3px;
    color: var(--colorC);
    text-shadow: var(--txC);
    text-shadow: 0 0 1px hsla(0, 0%, 38%, 1);
    text-decoration: none;
    opacity: 0.75;
}
#primary-menu .menu-item a:hover,
#primary-menu .current-menu-item a {
    color: var(--colorA);
    text-shadow: var(--txA);
    text-shadow: 0 0 1px hsla(349, 100%, 75%, 1);
    opacity: 1;
}


#primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 32px;
    left: 0;
    width: 200px;
    margin: 0;
    padding: 8px;
    background: white;
    box-shadow: 0px 3px 6px black;
    z-index: 999;
}
#primary-menu .sub-menu .menu-item {
    display: block;
}
#primary-menu .sub-menu:hover,
#primary-menu .menu-item-has-children:hover .sub-menu { display: block; }






/* ************************************************ PARTICLES */

.actusbase-slider .particle-frame {
    position: absolute;
    top: 15vw;
    width: 100%;
    height: 25vw;
    z-index: 9;
    opacity: 0.35;
}
.particle-frame #particle-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* ************************************************ HOME SLIDER */
.actusbase-slider {
    position: relative;
    width: 100%;
    height: 35vw;
    background: var(--colorB);
    text-align: center;
}
.single-post .actusbase-slider { height: 25vw; overflow: hidden; }

.actusbase-slider .synergon-logo { 
    position: relative;
    margin: 10vw auto 0;
}
.actusbase-slider p {
    position: relative;
    color: white;
    text-shadow: var(--txWH);
    font: 700 32px var(--fontB);
    opacity: 0.25;
    letter-spacing: 7px;
}
.actusbase-slider-sub {
    position: relative;
    padding: 32px 0;
    background: var(--colorA);
    text-align: center;
}
.actusbase-slider-sub h1 {
    position: relative;
    margin: 0;
    font: 700 32px var(--fontB);
    color: var(--colorB);
    text-shadow: var(--txB);
}

.polygons-pic {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 200%;
    opacity: 0.5;
    animation: background-move-A 120s infinite;
}
@keyframes background-move-A {
      0% { left:   0%; top:    0%; }
     25% { left:   0%; top: -100%; }
     50% { left: -50%; top: -100%; }
     75% { left: -50%; top:    0%; }
    100% { left:   0%; top:    0%; }
}

.actus-divider-01 {
    clear: both;
    width: 100%;
    height: 64px;
}
/* ************************************************ IMAGES */
.white-cubes {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: auto;
}
.white-cubes.bottom { 
    left: initial;
    top: initial;
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}
.white-cubes.multiply { 
    mix-blend-mode: multiply;
    filter: brightness(120%);
}
.back-01 {
    position: absolute;
    left: 0;
    top: 20%;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}
.circuit-02 {
    position: absolute;
    left: 0;
    bottom: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
}
/* ************************************************ HOME SCREENSHOTS */
.actusbase-screenshots {
    position: relative;
    padding: 128px 20% 64px;
    font: 700 22px var(--fontB);
    text-shadow: var(--txBL);
    background: var(--colorE);
}
.actusbase-screenshots .screenshot {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 8px 8px 20px hsla(0, 0%, 0%, 0.71);
    z-index: 5;
}
.actusbase-screenshots .screenshot-2 { width: 90%; }
.actusbase-screenshots h2 {
    position: relative;
    font: 700 38px var(--fontB);
    color: var(--colorA);
    text-shadow: var(--txA);
}
.actusbase-screenshots p {
    position: relative;
    padding: 32px;
    text-align: center;
    font: 300 24px var(--fontB);
    text-shadow: var(--txBL);
}
.actusbase-screenshots .text { padding: 64px; align-self: center; z-index: 5; }
.actusbase-screenshots li {
    position: relative;
    margin-bottom: 24px;
    font: 300 22px var(--fontB);
    color: white;
    text-shadow: var(--txWH);
    opacity: 0.5
}
.actusbase-screenshots-B { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 6vw 2vw;
    padding: 64px 10%;
    background: var(--colorF);
}
.actusbase-screenshots-C { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr;
    padding: 64px 10%;
    background: var(--colorF);
}



/* ************************************************ HOME TEXT */
.actusbase-text {
    padding: 0 25%;
}
.title-container {
    width: 33.333%;
    margin: 0 auto;
}
.actusbase-home-text-A {
    width: 33.333%;
    text-align: right;
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    float: left;
    padding-right: 16px;
}
.actusbase-home-text-B {
    width: 46.666%;
    column-count: 1;
    margin-top: 4px;
    color: var(--colorB);
    text-shadow: var(--txB);
    font-size: 16px;
    opacity: 0.5;
    float: left;
}




/* ************************************************************* */
/* ************************************************ ICON BUTTONS */
/* ************************************************************* */


/* ************************************************ CIRCLE BUTTONS A */
.actusbase-circle-buttons-A {
    text-align: center;
}
.actusbase-circle-button {
    display: inline-block;
    position: relative;
    width: 192px;
    text-align: center;
    text-decoration: none;
} 

.actusbase-circle-button img {
    width: 80px;
    height: 80px;
    padding: 12px;
    background: var(--colorA2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s all;
}
.actusbase-circle-button p {
    font-size: 16px;
    color: var(--colorA2);
    text-shadow: var(--txA2);
    transition: 1s all;
}
.actusbase-circle-button:hover img {
    width: 72px;
    height: 72px;
    padding: 12px;
    background: var(--colorB2);
}
.actusbase-circle-button:hover p {
    color: hsl(60, 41%, 10%);
    text-shadow: var(--txB2);
}



/* ************************************************ ICON BUTTONS A */
.actusbase-icon-buttons-A {
    position: relative;
    width: 100%;
    text-align: center;
}
.actusbase-icon-button {
    display: inline-block;
    position: relative;
    width: 256px;
    height: 120px;
    text-align: center;
    text-decoration: none;
    border-right: 3px solid var(--colorA3);
} 
.actusbase-icon-button:last-child { border-right: 0; }

.actusbase-icon-button img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    margin: auto;
    padding: 12px;
    cursor: pointer;
    transition: 0.3s all;
}
.actusbase-icon-button img.icon-hover { opacity: 0; }
.actusbase-icon-button p { 
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font: 400 22px var(--fontB);
    transition: 1s all;
}
.actusbase-icon-button:hover img {
    width: 72px;
    height: 72px;
    padding: 12px;
    opacity: 1;
}
.actusbase-icon-button:hover p {
    color: hsl(210, 74%, 48%);
    text-shadow: var(--txA3);
}



/* ************************************************ ICON BUTTONS DARK */
.actusbase-icon-buttons-dark {
    position: relative;
    width: 100%;
    padding: 64px 10%;
    margin-bottom: 64px;
}
.actusbase-icon-buttons-dark h2 { font-family: var(--fontB); }
.actusbase-icon-buttons-dark p {
    font: 400 18px var(--fontB); 
    opacity: 0.5; 
}
.actusbase-icon-button-dark > .third { padding-right: 32px; }
.actusbase-icon-button-dark > .two-thirds { padding: 16px 0; }
.actusbase-icon-button-dark {
    position: relative;
    height: 120px;
    padding: 0 16px;
    text-align: center;
    border-right: 4px solid var(--colorA);
    cursor: pointer;
}
.actusbase-icon-button-dark:last-child { border-right: 0px; }

.actusbase-icon-button-dark img { height: 64px; margin-bottom: 8px; }
.actusbase-icon-button-dark h3 { font: 700 20px var(--fontB); }
.actusbase-icon-button-dark .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--colorA);
    mix-blend-mode: darken;
    display: none;
}
.actusbase-icon-button-dark:hover h3 { color: var(--colorA); }
.actusbase-icon-button-dark:hover img { color: var(--colorA); }
.actusbase-icon-button-dark:hover .overlay { display: block; }









/* ************************************************************* */
/* ************************************************ BOX BUTTONS */
/* ************************************************************* */


/* ************************************************ BOX BUTTONS A */
.actusbase-box-buttons-A {
    position: relative;
    width: 100%;
    margin: auto;
    text-align: center;
}

.actusbase-box-button {
    position: relative;
    width: 192px;
    padding: 0 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-block; 
}
.actusbase-box-button img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    opacity: 0.2;
    transition: 1s all;
}
.actusbase-box-button p {
    font: 900 20px var(--fontA);
    color: black;
    text-shadow: var(--txBL);
    transition: 0.5s all;
    opacity: 0.5;
}
.actusbase-box-button:hover img { opacity: 1; }
.actusbase-box-button:hover p { opacity: 1; }




/* ************************************************ BOX BUTTONS B */
.actusbase-box-buttons-B {
    position: relative;
    width: 100%;
    padding: 32px 15%;
    text-align: center;
    
}
.actusbase-box-button-B {
    position: relative;
    padding: 0 16px;
}

.actusbase-box-button-B .image-frame {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.actusbase-box-button-B h4 {
    margin: 0;
    font: 700 18px var(--fontA);
    color: hsl(60, 41%, 10%);
    text-shadow: 0 0 1px hsla(60, 41%, 10%, 0.66);
    text-align: left;
    transition: 0.4s all;
    opacity: 0.35;
}
.actusbase-box-button-B img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s all;
}
.actusbase-box-button-B .label {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 8px;
    left: 24px;
    padding: 14px 0px;
    background: var(--colorA2);
    color: white;
    text-align: center;
    font: 700 18px var(--fontA);
    border-radius: 50%;
    transform: rotate( -12deg );
}
.actusbase-box-button-B:hover img { 
    transform: scale( 1.2 ) rotate( 5deg ); 
}
.actusbase-box-button-B:hover h4 { opacity: 1; }




/* ************************************************ BOX BUTTONS C */
.actusbase-box-buttons-C {
    position: relative;
    width: 100%;
    padding: 32px 5%;
    text-align: center;
    
}
.actusbase-box-button-C {
    position: relative;
    height: 200px;
    padding: 0 8px;
    overflow: hidden;
} 
.actusbase-box-button-C .image-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.actusbase-box-button-C .overlay {
    background: var(--colorA3-75);
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0px;
    padding: 4px 8px;
    transition: 0.6s all;
}
.actusbase-box-button-C h4 {
    margin: 0;
    text-align: center;
    font: 700 20px var(--fontB);
    color: white;
    text-shadow: var(--txWH);
    transition: 0.4s all;
}
.actusbase-box-button-C .subtitle {
    margin: 0;
    padding: 0 48px;
    text-align: center;
    font: 300 16px var(--fontB);
    color: white;
    text-shadow: var(--txWH);
    opacity: 0;
    transition: 1s all;
}
.actusbase-box-button-C img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 2s all;
}
.actusbase-box-button-C .actusbase-more {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    padding: 2px 8px;
    font: 700 14px var(--fontA);
    background: var(--colorB3);
    color: white;
    text-shadow: var(--txWH);
    border-radius: 36px;
    transition: 0.6s all;
}
.actusbase-box-button-C:hover .overlay {
    height: 100%;
    background: var(--colorA3-50);
}
.actusbase-box-button-C:hover img { 
    transform: scale( 1.2 ) rotate( 15deg ); 
    filter: blur( 12px );
}
.actusbase-box-button-C:hover h4 { margin: 16px 0; }
.actusbase-box-button-C:hover .subtitle { opacity: 1; }
.actusbase-box-button-C:hover .actusbase-more { bottom: 32px; }





.typewriter h4 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

















/* ************************************************ HOME CARDS */
.actusbase-home-cards { padding: 0 15%; }

.actusbase-home-card-A {
    position: relative;
    width: 100%;
    height: 350px;
    cursor: pointer;
}
.actusbase-home-card-A .eikona {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 350px;
    background: var(--colorE);
}
.actusbase-home-card-A .eikona img {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 2s all;
}
.actusbase-home-card-A:hover .eikona img { filter: grayscale(0%); }
.actusbase-home-card-A .keimeno {
    position: relative;
    width: 44%;
    padding-top: 32px;
}
.actusbase-home-card-A h1 { font-size: 48px; margin: 16px 0; }
.actusbase-home-card-A .label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--colorD);
}

.actusbase-home-card-A.right .eikona { left: 0; right: initial; }
.actusbase-home-card-A.right .keimeno {
    text-align: right;
    float: right;
}
.actusbase-home-card-A.right .title-line-B { float: right; }
.actusbase-home-card-A.right .eikona img { left: 0; right: initial; }





/* ************************************************ HOME RECENT POSTS */
#actusbase-recent {
    position: relative;
    width: 100%;
    padding: 64px 10%;
}










/* ************************************************ BLOG */
.actusbase-blog-header {
    display: block;
    height: 500px;
    margin: 0;
}
.actusbase-blog-header img {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}
.actusbase-blog-header .text { 
    position: absolute;
    left: 0;
    bottom: 32px;
    padding: 0 25%;
    text-align: center;
    color: white;
}
.actusbase-blog-header > .overlay { height: 100%; }
.actusbase-blog-header h1 { color: white; margin: 24px 0; }
.actusbase-blog-header .excerpt { 
    margin-top: 24px;
    color: white;
    font-weight: 400;
}
.actusbase-blog-title { padding: 64px; }
.actusbase-blog-title h2 { font-weight: 900; color: white; }

.actusbase-blog { padding: 64px; }
.actusbase-blog article {
    position: relative;
    width: 25%;
    padding: 16px;
    float: left;
}
.actusbase-blog article a:hover { color: var(--colorA); }


.actus-carousel-box .overlay,
.actusbase-blog article .overlay {
    position: absolute;
    left: calc(100% - 16px);
    top: 16px;
    width: 0;
    height: 256px;
    background: var(--colorA);
    mix-blend-mode: multiply;
}
.actus-carousel-box .overlay { height: 160px; }
.actus-carousel-box:hover .overlay,
.actusbase-blog article:hover .overlay {
    animation: post-box-overlay 1s;   
}
.actusbase-blog article img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 1s all;
}
.actusbase-blog article:hover img { filter: grayscale(0%); }
.actusbase-blog article h1 { font: 900 20px var(--fontA); }
.actusbase-blog article .excerpt { font: 400 16px var(--fontA); }


@keyframes post-box-overlay {
  0%   { left: calc(100% - 16px); width: 0px; }
  50%  { left: 16px; width: calc(100% - 32px); }
  100% { left: 16px; width: 0px; }
}


/* ************************************************ POST */
.actusbase-post-slider {
    position: relative;
    height: 100px;
}
.actusbase-post-slider .overlay {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: var(--colorA);
}
.actusbase-post-slider img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: white;
}
.actusbase-post-slider h1 {
    position: relative;
    padding: 16px;
    margin: 0;
    font-size: 48px;
    text-align: center;
    line-height: 1.25;
    color: white;
}

.actusbase-post-content { 
    position: relative;
    padding: 64px 15%;
    background: radial-gradient( hsla(0, 0%, 0%, 0.0), hsla(0, 0%, 0%, 0.25) );
}
.actusbase-post-content h3 { margin-top: 28px; }
.actusbase-post-content h2 span,
.actusbase-post-content h2 {
    font: 900 28px var(--fontA) !important;
    color: var(--colorA);
    text-shadow: var(--txA);
}
.actusbase-post-content ul li,
.actusbase-post-content span,
.actusbase-post-content a,
.actusbase-post-content p {
    color: hsla(0, 0%, 0%, 0.65);
    font-family: var(--fontA) !important;
    font-size: 18px !important; 
    line-height: 1.2 !important; 
}
.actusbase-post-content a { color: var(--colorB); }
.actusbase-post-content a:hover { color: var(--colorA); }
.actusbase-post-content ul li { margin-bottom: 16px; }
.actusbase-post-content ul li strong { font-size: 18px !important; }
.actusbase-post-content h2 a {
	display: block;
	font-size: 28px !important;
    text-align: center;
}

.actusbase-post-content .colorbox {
    position: absolute;
    top: 20%;
    right: 0;
    width: 30%;
    height: 60%;
    background: var(--colorA);
    mix-blend-mode: multiply;
    opacity: 0.25;
}
.actusbase-content { position: relative; }



/* ************************************************ ΥΠΗΡΕΣΙΑ */
#actusbase-ypiresia-header h1 { 
    position: relative;
    padding: 64px;
    color: white; 
}
#actusbase-ypiresia-header img { 
    position: absolute; 
    right: 0; 
    left: initial; 
}

.actusbase-ypiresia { max-height: 2600px; }
.actusbase-ypiresia img {
    position: absolute;
    width: 100%;
    opacity: 1;
    filter: grayscale(100%);
}
.actusbase-ypiresia .text {
    position: relative;
    max-height: 2600px;
    margin-left: 100%; 
    padding: 64px 20%;
}

.actusbase-ypiresia .text h1 span { font-size: 36px !important; }
.actusbase-ypiresia .text h2 span { font-size: 28px !important; }

 


/* ************************************************ CONTACT */
.contact-tree  { position: relative; padding: 0 20%; }
.contact-tree .tree {
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
}
.contact-tree .icon {
    position: absolute;
    font: 700 14px var(--fontA);
    cursor: pointer;
}
.contact-tree .icon img {
    width: 64px;
    height: 64px;
    padding: 12px;
    background: var(--colorB);
    border-radius: 50%;
}
.contact-tree .icon a {
    display: block;
    width: 0px;
    height: 24px;
    overflow: hidden;
    transition: 0.3s all;
}
.contact-tree .icon:hover a { width: 128px; }
.contact-tree .iconB:hover a { width: 128px; }
.contact-tree .iconC:hover a { width: 160px; }
.contact-tree .icon a p {
    height: 24px;
    padding: 4px 8px;
    overflow: hidden;
    background: var(--colorB);
    color: white;
    letter-spacing: 0;
    text-shadow: var(--txWH);
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
}
.contact-tree .iconA { left: 70%; top: 50%; }
.contact-tree .iconB { left: 20%; top: 35%; }
.contact-tree .iconC { left: 35%; top: 65%; }

.contact-tree .address {
    position: absolute;
    left: 59%; bottom: -8px;
    text-align: left;
}
.contact-tree .address h4 {
    font: 700 18px var(--fontA);
}
.contact-tree .address p {
    font: 400 16px var(--fontA);
}





/* ************************************************ FOOTER */
#wpfooter { display: none; }
.actusbase-footer-col {
    width: 25%;
    padding: 16px;
    float: left;
}
.actusbase-footer-col .actusbase-logo { padding: 0 32px; }

.actusbase-footer-col p { margin-bottom: 2px; font-size: 14px; }

.actusbase-footer-col a {
    display: block;
    margin: 0;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 400;
}
.actusbase-footer-col a:hover { font-weight: 700; color: hsl(219, 90%, 34%); }

.actusbase-footer-col h3 {
    font-size: 22px;
}
.actusbase-footer-col h4 {
    margin: 24px 0 16px;
    font-size: 18px;
    color: black;
    text-shadow: 0 0 1px hsla(0, 0%, 0%, 0.35);
}

.actusbase-footer-col .line {
    width: 48px;
    border-bottom: 4px solid black;
    margin-bottom: 16px;
}


.actusbase-footer-col ul {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.actusbase-footer-created {
    width: 100%;
    text-align: center;
    padding: 8px;
    background: hsl(0, 0%, 97%);
}
.actusbase-footer-created a {
    font-weight: 700;
    color: var(--colorA2);
}
.actusbase-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}





/* ************************************************ CONTACT FORM */
.actusbase-contact-form {
    
}
.actusbase-contact-form textarea:-ms-input-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}
.actusbase-contact-form textarea:-moz-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}
.actusbase-contact-form textarea::-moz-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}
.actusbase-contact-form textarea::-webkit-input-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}
.actusbase-contact-form input:-ms-input-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}
.actusbase-contact-form input:-moz-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}
.actusbase-contact-form input::-moz-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}
.actusbase-contact-form input::-webkit-input-placeholder {
    font: 700 16px var(--fontA);
    opacity: 0.3;
}

.actusbase-contact-form p,
.actusbase-contact-form textarea,
.actusbase-contact-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 4px;
    outline: 0;
    border: 0;
    font: 400 16px var(--fontA);
}

.actusbase-contact-content {
    position: relative;
    margin-bottom: 64px;
    text-align: center;
}
.actusbase-contact-text {
    position: relative; 
    text-align: center;
}
.actusbase-contact-text p { color: white; opacity: 0.5; }

.actusbase-contact-form.big {
    position: relative;
    padding: 48px 20% 0;
}
.actusbase-contact-form.big input[type="submit"] {
    position: relative;
    background: transparent;
    text-align: right;
    outline: 0;
    border: 0;
    font: 900 18px var(--fontA);
    color: white;
    opacity: 0.5;
}
.actusbase-contact-form.big input[type="submit"]:hover { opacity: 1; }














/* *************************************************** ANIMATION */
img.wipe-down,
.wipe-down { height: 0%; }
.wipe-left { width: 0%; }
.actusbase-doctors .actusbase-doctor .text.wipe-right { width: 0%; padding: 64px 0; }
.actusbase-pathisi .wipe-right { width: 0%; padding: 64px 0; }






.actus-lines { overflow: hidden; }
.actus-lines-frame {
    position: absolute;
    left: -10%;
    top: -70%;
    width: 150%;
    height: 200%;
    overflow: hidden;
    transform: rotate( -30deg );
}
.actus-line {
    width: 300px;
    height: 6px;
    background: var(--colorA);
    position: absolute;
}
.actus-lines.white .actus-line { background: hsla(0, 0%, 100%, 0.75); }



















/* **************************************************************** */
@media (max-width: 1024px) {
/* **************************************************************** */

    .actusbase-pathiseis { padding: 64px 15%; }
    
    
}





/* **************************************************************** */
@media (max-width: 800px) {
/* **************************************************************** */

    .actusbase-header { text-align: center; }
    .actusbase-slider { height: 500px; }
    .actusbase-text { padding: 0 10%; }
    
    .actusbase-home-icon .dark-back h3 { font-size: 20px; }
    .actusbase-home-icons { padding: 32px 5%; }
    
    .actusbase-pathiseis { padding: 64px 32px; }
    .actusbase-pathisi { max-height: 800px; }
    .actusbase-pathisi .text { max-height: 800px; }

    .actusbase-footer { padding: 0 16px; }
    .actusbase-footer-col { width: 33.333%; }
    a.actusbase-footer-col { display: none; }
    
    .actusbase-blog article { width: 50%; height: 512px; margin-bottom: 32px; }
    
    .actusbase-footer-col { 
        width: 33.333%;
        text-align: center;
    }
    .actusbase-footer-col p { font-size: 18px; }
    .actusbase-footer-col a { font-size: 18px; font-weight: 900; opacity: 0.5; }
    a.actusbase-footer-logo { opacity: 1; }
    .actusbase-footer-col ul li a { font-size: 22px; }
    .actusbase-footer-col .line { margin: auto; }
    .actusbase-footer-col .actusbase-logo { padding: 0; }
    .actusbase-footer-col .actusbase-logo img { width: 100%; }
}



/* **************************************************************** */
@media (max-width: 480px) {
/* **************************************************************** */100
    #masthead { position: relative; }
    
    
    .menu-menu-1-container {
        position: absolute;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        pointer-events: none;
    }
    .menu-menu-1-container.open { pointer-events: all; }
    
    .actusbase-main-navigation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        z-index: 997;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 64px;
        height: 64px;
        background: transparent;
        border: 0;
    }
    .menu-toggle img {
        width: 100%;
        height: 100%;
    }
    .close-mobile-menu {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 64px;
        height: 64px;
        z-index: 999;
        object-fit: contain;
        opacity: 0;
        cursor: pointer;
        transition: 0.5s all;
        transform: scale(0.2);
        pointer-events: none;
    }
    .close-mobile-menu.open {
        opacity: 0.3;
        transform: scale(1);
        pointer-events: all;
    }
    .close-mobile-menu:hover { opacity: 1; }
    

    #primary-menu {
        position: absolute;
        left: 100%;
        top: 0;
        width: 0%;
        min-height: 100vh;
        padding: 64px 16px;
        font-size: 20px;
        background: var(--colorB);
        transition: 0.4s all;
        z-index: 998;
    }
    #primary-menu.open { left: 0%; width: 100%; }
    #primary-menu.open-sub { height: auto; }
    #primary-menu .menu-item { display: block; text-align: left; }
    #primary-menu .sub-menu {
        position: relative;
        top: 0;
        height: 0px;
        padding-top: 0px;
        margin-bottom: 32px;
        overflow: hidden;
        background: transparent;
        border-top: 0px solid black;
        box-shadow: 0 0 0 black;
    }
    #primary-menu .sub-menu.open {
        width: 100%;
        height: auto; 
        padding: 0 4px;
    }

    #primary-menu .menu-item a { font-size: 18px; opacity: 1; }
    #primary-menu .sub-menu .menu-item a { font-size: 14px; }
    #primary-menu .sub-menu .menu-item { 
        margin: 0px 24px;
        color: white;
    }

    
    .actusbase-doctors .actusbase-doctor img { width: 100%; }
    .actusbase-doctors .actusbase-doctor .text { margin-left: 0; }

    .actusbase-header { padding: 64px 15% 32px; }
    .actusbase-header .actusbase-logo img { 
        height: auto; 
        width: 100%; 
    }

    .actusbase-slider { 
        height: 350px;
    }
    .actusbase-slider .text { 
        width: 160px;
        top: 96px;
        right: 5%;
    }
    .actusbase-slider .text h3,
    .actusbase-slider .text h2 { font-size: 28px; }
    
    .actusbase-recent { padding: 64px 20%; }
    .actusbase-recent h2 { width: 70%; margin: auto; }
    
    .title-container { margin: 0; }
    .actusbase-home-text-A,
    .actusbase-home-text-B,
    .two-thirds,
    .third { width: 100%; }
    
    .actusbase-home-text-A { margin-bottom: 32px; }
    .actusbase-home-text-B { column-count: 1; }
    
    .actusbase-home-icons { margin-bottom: 0; padding: 32px 20%; }
    .actusbase-home-icons > .third { 
        text-align: center; 
        padding: 0; 
        margin-bottom: 32px;
    }
    .actusbase-home-icon {
        height: 190px;
        padding: 48px 8px;
        border-right: 0;
        border-top: 4px solid var(--colorA);
    }
    
    .page-template-page-home .space128 { height: 64px; }
    .actusbase-home-cards { padding: 0; }
    .actusbase-home-card-A .eikona { width: 100%; }
    .actusbase-home-card-A .keimeno {
        width: 60%;
        padding: 16px;
    }
    .actusbase-home-card-A h1 { font-size: 32px; }
    .actusbase-home-card-A .label { color: var(--colorC); }
    .actusbase-home-card-A .eikona { opacity: 0.5; }
    .actusbase-home-card-A:hover .eikona { opacity: 1; }

    
    .page-template-page-home .actusbase-doctor img { 
        position: relative; 
        width: 100%; 
        height: 275px;
    }
    .page-template-page-home .actusbase-doctor .text { 
        position: relative; 
        width: 100%; 
        padding: 32px; 
        margin: 0; 
    }
    
    .page-template-page-iatroi .site-main .space32:first-child { display: none; }
    .page-template-page-iatroi .actusbase-doctor { max-height: none; }
    .page-template-page-iatroi .actusbase-doctor img { 
        position: relative;
        height: 0px;
    }
    .page-template-page-iatroi .actusbase-doctor .text { 
        position: relative; 
        padding: 32px; 
    }
    
    .actusbase-team { padding: 16px; }
    .actusbase-team h2 { width: 100%; }
    .actusbase-team-doctor { width: 50%; }
    
    .actusbase-blog-header { height: 400px; }
    .actusbase-pathiseis-header { height: 200px; }
    .actusbase-blog-header .text { padding: 0 6%; }
    .actusbase-blog-header h2,
    .actusbase-pathiseis-header h2 {
        width: 50%;
        margin-left: 5%; 
        padding-top: 8px;
        line-height: 0.86 !important;
    }
    .actusbase-pathiseis-header img {
        width: 35%;
        margin-left: 10%;
    }
    .actusbase-pathisi img { position: relative; width: 100%; height: 0px; }
    .actusbase-pathisi .text { 
        position: relative; 
        width: 100%;
        max-height: none; 
        padding: 32px;
        margin-left: 0;
    }
    .actusbase-pathiseis { padding: 64px 32px; }
    .actusbase-pathiseis .pathisi { width: 100% !important; height: 360px; }
    .actusbase-pathiseis .pathisi .V-line { display: none; }
    

    .actusbase-blog { padding: 64px 32px; }
    .actusbase-blog article { width: 100%; margin-bottom: 32px; }
    
    .actusbase-address { width: 100%; padding: 32px 64px; }
    .actusbase-contact-form.big { padding: 48px 5% 0; }

    
    .actusbase-footer ul li { margin: 16px 0; }
    .actusbase-footer ul li a { font-size: 16px; }
    
    .page-template-page-pathiseis .eyerobotica-slider-B { display: none; }
    

    .contact-tree { padding: 0; }
    
    
    
    .actusbase-footer-col { 
        width: 100%;
        text-align: center;
        margin-bottom: 32px;
    }
    .actusbase-footer-col .actusbase-logo { padding: 0 32px; }
    
}



/* **************************************************************** */
@media (max-width: 320px) {
/* **************************************************************** */

    
}
























@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}


/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 45%;
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    background-size: cover;
    opacity: 0.75;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    opacity: 1;
}
.slick-prev { 
    background: url(img/left.png);
    left: -64px;
    background-size: cover;
}
.slick-next { 
    background: url(img/right.png);
    right: -64px;
    background-size: cover;
}

/* Dots */
.slick-dotted.slick-slider { margin-bottom: 30px; }
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus { outline: none; }
.slick-dots li button:hover:before,
.slick-dots li button:focus:before { opacity: 1; }
.slick-dots li button:before {
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}


/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus { outline: none; }
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img { display: block; }
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden { display: none; }


.actus-carousel-box { position: relative; padding: 16px; }
.actus-carousel-box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 1s all;
}
.actus-carousel-box:hover img { filter: grayscale(0%); }
.actus-carousel-box .info { margin-top: 8px; }
.actus-carousel-box .info h3 { 
    font: 900 22px var(--fontA); 
    margin-bottom: 4px;
    line-height: 1.2;
}
.actus-carousel-box .info p { font: 400 14px var(--fontA); }














.fontA { font-family: var(--fontA) !important; }
.fontB { font-family: var(--fontB) !important; }


