@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');


/* ============================= GLOBAL ================================== */

html, b, p, span, li, a, table, td, tr, input, div{
    font-family: "Geologica", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Geologica", sans-serif !important;
    font-weight: bold !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

#wpadminbar .ab-icon, #wpadminbar .ab-item:before, #wpadminbar>#wp-toolbar>#wp-admin-bar-root-default .ab-icon, .wp-admin-bar-arrow {
    font: normal 20px/1 dashicons !important;
}

::-moz-selection { /* Code for Firefox */
    color: var(--bgcol);
    background: var(--primcol);
}

::selection {
    color: var(--bgcol);
    background: var(--primcol);
}

::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar
{
  width: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  background-color: var(--seccol);
}

a {
    color: var(--linkcol) !important;
    text-decoration: none !important;
    transition: 0.3s ease all;
}

a:hover {
    color: var(--seccol) !important;
    text-decoration: none;
    transition: 0.3s ease all;
}

.sr-only-focusable {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    z-index: 1000;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

a.sr-only-focusable {
    background: white !important;
    color: black !important;
}

.hideThis {
    display: none;
}

p, section ul li {
    color: var(--parcol) !important;  
}

blockquote {
    position: relative;
}

blockquote::before{
    background-image: url(/wp-content/themes/lioncode/assets/img/quote-before.svg);
    background-size: 40px 40px;
    display: inline-block;
    width: 40px;
    height: 40px;
    content: "";
}

blockquote::after {
    background-image: url(/wp-content/themes/lioncode/assets/img/quote-after.svg);
    background-size: 40px 40px;
    display: inline-block;
    width: 40px;
    height: 40px;
    content: "";
}

/* ============================= BASIC HEADING STYLES ================================== */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--headcol) !important;
    font-weight: normal !important;
}

/* Desktop */

h1, .h1 {
    font-size: 3rem !important; 
    line-height: 1.2 !important;
}

h2, .h2 {
    font-size: 2.75rem !important;
    line-height: 1.3 !important;
}

h3, .h3 {
    font-size: 2.5rem !important;
    line-height: 1.4 !important;
}

h4, .h4 {
    font-size: 2rem !important;
    line-height: 1.4 !important;
}

h5, .h5 {
    font-size: 1.75rem !important;
    line-height: 1.5 !important;
}

h6, .h6 {
    font-size: 1.5rem !important;
    line-height: 1.5 !important;
}

/* Tablets */

@media (max-width: 1024px) { 
    h1, .h1 {
    font-size: 2.5rem !important;
    }
    h2, .h2 {
    font-size: 2.25rem !important;
    }
    h3, .h3 {
    font-size: 1.875rem !important;
    }
    h4, .h4 {
    font-size: 1.625rem !important;
    }
    h5, .h5 {
    font-size: 1.375rem !important;
    }
    h6, .h6 {
    font-size: 1.125rem !important;
    }
}

/* Mobile */

@media (max-width: 768px) { 
    h1, .h1 {
    font-size: 2rem !important;
    }
    h2, .h2 {
    font-size: 1.75rem !important;
    }
    h3, .h3 {
    font-size: 1.5rem !important;
    }
    h4, .h4 {
    font-size: 1.25rem !important;
    }
    h5, .h5 {
    font-size: 1rem !important;
    }
    h6, .h6 {
    font-size: 0.875rem !important;
    }
}

/* ============================= SOCIAL ICONS ================================== */

.social a svg {
    width: 30px;
    height: 30px;
}

.social {
    display: flex;
    align-items: center;
}

.social a {
    text-decoration: none;
    margin-left: 2px;
    margin-right: 2px;
}

.social a svg path, .headericon .icon svg path {
    transition: 0.3s ease all;
    fill: var(--svgcol);
}

.social a:hover svg path, .headericon .icon:hover svg path {
    fill: var(--linkcol);
}


.headericon .icon svg {
    width: 24px;
    height: 24px;
}

/* ============================= SECTIONS GENERAL ================================== */

section, .section-padding {
    padding: 50px 0 !important;
    overflow: hidden;
}

.section-title {
    position: relative;
}

.section-bg {
    background: var(--primcol20) !important;
}

.section-title h2,
.section-title h3, 
.section-title h4, 
.section-title h5, 
.section-title h6 {
    font-size: 40px !important;
    font-weight: 700 !important;
    padding: 0;
    margin: 0 0 5px 0;
    /* letter-spacing: 2px; */
    color: var(--primcol);

}

.section-title h2 span, 
.section-title h3 span, 
.section-title h4 span, 
.section-title h5 span, 
.section-title h6 span{
    color: var(--seccol);

}

.section-title h2 a, 
.section-title h3 a, 
.section-title h4 a, 
.section-title h5 a, 
.section-title h6 a {
    color: var(--primcol) !important;
}

.section-title h2 a:hover, 
.section-title h3 a:hover, 
.section-title h4 a:hover, 
.section-title h5 a:hover, 
.section-title h6 a:hover{
    color: var(--seccol) !important;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--seccol);
}

.section-title-center {
    text-align: center;
    padding-bottom: 60px;
}

.section-title-center h2,
.section-title-center h3,
.section-title-center h4,
.section-title-center h5,
.section-title-center h6 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
}

.section-title-center h2:after,
.section-title-center h3:after,
.section-title-center h4:after, 
.section-title-center h5:after,
.section-title-center h6:after, 
.section-title-center p:after {
    content: url('data:image/svg+xml,<svg width="224" height="12" viewBox="0 0 224 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.00007 11.7734L0.226563 5.99994L6.00007 0.22644L10.7736 4.99994L213.227 4.99994L218 0.22644L223.774 5.99994L218 11.7734L213.227 6.99994L10.7736 6.99994L6.00007 11.7734Z" fill="var(--svgcol)"/></svg>');
    position: absolute;
    display: block;
    top: 60%;
    left: 0;
    right: 0;
    margin: auto;
}

.section-title-center p {
    margin-bottom: 0;
    color: var(--primcol);
    text-align: center;
}

.section-title .big-title {
    font-size: 7em;
    font-weight: 700;
    text-align: center;
    color: var(--thirdcol40);
    position: absolute;
    left: 0;
    top: -90px;
    z-index: -1;
}

.section-title-left h2,
.section-title-left h3,
.section-title-left h4,
.section-title-left h5,
.section-title-left h6,
.section-title-left p {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
}


.section-title-left h2::after,
.section-title-left h3::after,
.section-title-left h4::after,
.section-title-left h5::after,
.section-title-left h6::after,
.section-title-left p::after {
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    background: var(--seccol);
    margin: 4px 10px;
}


article .entry-content .section-title h2,
article .entry-content .section-title h3,
article .entry-content .section-title h4,
article .entry-content .section-title h5,
article .entry-content .section-title h6 {
    font-size: 22px !important;
    font-weight: 700 !important;
    padding: 0;
    margin: 0 0 5px 0;
    letter-spacing: 0;
    color: var(--primcol);
}

section ul {
    margin: 0;
}

section ul li {
    list-style-image: url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.4' d='M5.82326 1.99631C6.04967 1.62021 6.72888 1.62021 7.03082 1.99631L9.21943 5.08012C10.6534 7.03572 10.6534 9.36742 9.14399 10.8717C8.46477 11.6238 7.48362 11.9999 6.42713 11.9999C5.37054 11.9999 4.38949 11.5487 3.71027 10.9469C2.65369 9.89389 1.82351 8.08875 3.63483 5.1553L5.82326 1.99631Z' fill='%23436797'/%3E%3Cpath d='M3.25197 0.282076C3.47838 -0.0940252 4.15759 -0.0940252 4.45953 0.282076L6.64814 3.36589C8.08209 5.32149 8.08209 7.65319 6.5727 9.1575C5.89348 9.90961 4.91234 10.2857 3.85584 10.2857C2.79925 10.2857 1.8182 9.83443 1.13898 9.23269C0.0823975 8.17966 -0.747784 6.37452 1.06354 3.44107L3.25197 0.282076ZM2.19539 8.02929C3.02557 8.93186 4.6104 8.93186 5.51602 8.02929C6.49708 7.05153 6.42164 5.54722 5.44058 4.19327L3.85575 1.93685L2.27092 4.11809C0.761432 6.60016 1.81802 7.65319 2.19539 8.02929Z' fill='%23436797'/%3E%3C/svg%3E%0A");
    margin: 0 0 20px 0;
}


@media (max-width:767px) {

    section {
        padding: 50px 0 !important;
    }

    .section-title-center h2,
    .section-title-center h3,
    .section-title-center h4,
    .section-title-center h5,
    .section-title-center h6,
    .section-title p {
        font-size: 24px;
    }


    .section-title-left h2,
    .section-title-left h3,
    .section-title-left h4,
    .section-title-left h5,
    .section-title-left h6,
    .section-title-left p {
        font-size: 16px;
    }

    .section-title h2,
    .section-title h3, 
    .section-title h4, 
    .section-title h5, 
    .section-title h6 {
        font-size: 30px !important;

    }

}

/* ============================= DEFAULT BUTTONS ================================== */

.btn-prm, a.btn-prm{
    background: var(--btn-prmbg) !important;
    color: var(--btn-prmcol) !important;
    border: 1px solid var(--btn-prmbg);
}

.btn-prm:hover, a.btn-prm:hover {
    background: var(--btn-prmcol) !important;
    color: var(--btn-prmbg) !important;
    border: 1px solid var(--btn-prmbg);
    transition: all 0.25s ease-in-out;
}

.btn-prm svg path, a.btn-prm svg path{
    fill: var(--btn-prmcol) !important;
}

.btn-prm:hover svg path, a.btn-prm:hover svg path {
    fill: var(--btn-prmbg) !important;
}

.btn-scnd, a.btn-scnd, button.btn-scnd{
    background: var(--scnd-prmbg);
    color: var(--scnd-prmcol) !important;
    border: 1px solid var(--scnd-prmbg);
}

.btn-scnd svg path, a.btn-scnd svg path{
    fill: var(--scnd-prmcol) !important;
}

.btn-scnd:hover svg path, a.btn-scnd:hover svg path {
    fill: var(--scnd-prmbg) !important;
}

.btn-scnd:hover, a.btn-scnd:hover, button.btn-scnd:hover {
    background: var(--scnd-prmcol) !important;
    color: var(--scnd-prmbg) !important;
    border: 1px solid var(--scnd-prmbg);
    transition: all 0.25s ease-in-out;
}

.btn-third, a.btn-third{
    background: var(--third-prmbg);
    color: var(--third-prmcol) !important;
    border: 1px solid var(--third-prmbg);
}

.btn-third svg path, a.btn-third svg path{
    fill: var(--third-prmcol) !important;
}

.btn-third:hover svg path, a.btn-third:hover svg path {
    fill: var(--third-prmbg) !important;
}

.btn-third:hover, a.btn-third:hover {
    background: var(--third-prmcol);
    color: var(--third-prmbg) !important;
    transition: all 0.25s ease-in-out;
}

.btn-prm,
a.btn-prm,
.btn-scnd,
a.btn-scnd,
button.btn-scnd,
.btn-third,
a.btn-third{
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px !important;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


.visually-hidden{
  position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;border:0;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;
}
.btn-prm,
.btn-scnd,
.btn-third{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    min-height:44px;
    padding:.5rem 1rem;
}

.btn-prm:focus-visible,
.btn-scnd:focus-visible,
.btn-third:focus-visible,
a:focus-visible,
a:focus-visible img,
img:focus-visible {
    outline:3px solid RED !important;
    outline-offset:3px !important;
}


/* ================================== */
/* HEADER 
/* ================================== */


/* ============================= HEADER ΟΝΕ SEARCH BAR ================================== */

.search_bar.header-search {
    position: relative;
}

.search_bar.header-search form input {
    width: 100%;
    border-radius: 100px;
    background: var(--bgcol);
    border: 1px solid var(--primcol20);
    padding: 10px 20px;
    box-shadow: 0 0 15px var(--primcol20);
}

.search_bar.header-search form input {
    width: 100%;
}

.search_bar.header-search button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border: 0 !important;
    margin: 0 15px;
    background: unset !important;
}


.search.headerSearch svg path {
    fill: var(--svgcol);
}


/* ============================= HEADER LOGO ================================== */

img.custom-logo, svg.custom-logo {
    max-height: 70px;
    width: auto;
    padding: 5px 0;
}


@media (max-width: 991px){

    img.custom-logo, svg.custom-logo {
        max-height: 65px;
        width: auto;
    }

    .headerTop .right .social {
        display: none;
    }

}


/* ============================= NAVIGATION ================================== */

/* Desktop Navigation */
.header-row .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
  
.header-row .nav-menu > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
  
.header-row .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 5px 13px 5px 13px;
}

.header-row .nav-menu > ul > li:first-child {
    padding-left: 0px;
}

.header-row .nav-menu a {
    display: block;
    color: var(--primcol) !important;
    transition: 0.3s;
    font-size: 1rem;
    padding: 5px 0px;
    letter-spacing: 0px;
    position: relative;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.header-row .nav-menu a:hover {
    color: var(--linkcol) !important;
    transition: all 0.5s ease-in-out;
}

.header-row .nav-menu > ul > li.current_page_item > .opener > a {
    font-weight: bold;
    color: var(--seccol);
}

.header-row .nav-menu > ul > li.current_page_item > a {
    font-weight: bold;
    color: var(--linkcol) !important;
}

.header-row .nav-menu > li.current-menu-item a {
    color: var(--seccol) !important;
}

.header-row .nav-menu > ul > li.popup {
    background: var(--linkcol);
    border-radius: 10px;
    padding: 0 10px;
    box-shadow: 0px 7px 10px #00000066;
    transition: all 0.25s ease-in-out;
}

.header-row .nav-menu > ul > li.popup a {
    color: var(--seccol) !important;
}

.header-row .nav-menu > ul > li.popup svg {
    margin-right: 7px;
    transition: all 0.25s ease-in-out;
}

.header-row .nav-menu > ul > li.popup:hover {
    box-shadow: unset;
    transition: all 0.25s ease-in-out;
    background: var(--primcol);
}

.header-row .nav-menu > ul > li.popup:hover svg {
    transform: rotate3d(1, 1, 1, 360deg);
    transition: transform 1s ease-in-out;
}

.header-row .nav-menu > ul > li.current-page-ancestor a:before {
    content: "";
    width: 10px;
    height: 2px;
    background: var(--seccol);
    display: inline-block;
    position: absolute;
    left: -12px;
    top: 50%;
    margin-top: -1px;
}

.header-row .nav-menu > ul > li.current-page-ancestor a:after {
    content: "";
    width: 10px;
    height: 2px;
    background: var(--seccol);
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 50%;
    margin-top: -1px;
    left: auto;
    bottom: auto;
}

.header-row .nav-menu > ul > li.current-page-ancestor > .opener a {
    color:var(--seccol);
}

.header-row .nav-menu > ul > li.current-page-ancestor .current_page_item a {
    color: var(--seccol);
}
  
.header-row .nav-menu a:hover:before, .header-row .nav-menu li:hover > a:before, .header-row .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}
  
.header-row .nav-menu a:hover, .header-row .nav-menu .active > a, .header-row .nav-menu li:hover > a {
    color: var(--thirdcol);
}
  
.header-row .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 5px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    border-radius: 5px;
}
  
.header-row .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
  
.header-row .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}
  
.header-row .nav-menu .drop-down ul a {
    padding: 5px 20px;
    font-size: 0.9rem;
    text-transform: none;
    color: #2c4964;
}
  
.header-row .nav-menu .drop-down ul a:hover, .header-row .nav-menu .drop-down ul .active > a, .header-row .nav-menu .drop-down ul li:hover > a {
    color: var(--seccol);
}
  
.header-row .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
  
.header-row .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
  
.header-row .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.header-row .nav-menu .drop-down:hover .opener > svg {
    transform: rotate(-90deg);
}

.header-row .nav-menu .drop-down .opener > svg {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: 0.3s ease all;
    transform: rotate(-0deg);
}

.header-row .nav-menu .drop-down .drop-down .opener > svg {
    position: absolute;
    right: 15px;
}
  
@media (max-width: 1366px) {
    .header-row .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .header-row .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .header-row .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }

}

.header-row .nav-menu > ul > li.drop-down .subArrow {
    width: 20px;
    height: 20px;
    display: block;
    z-index: 99;
    position: relative;
}

.header-row .nav-menu > ul > li.drop-down .subArrow:before {
    content: "";
    width: 2px;
    height: 9px;
    background: var(--linkcol);
    display: block;
    transform: rotate(136deg);
    position: relative;
    left: 8px;
    top: 2px;
    transition:0.3s ease all;
}

.header-row .nav-menu > ul > li.drop-down .subArrow:after {
    content: "";
    width: 2px;
    height: 9px;
    background: var(--linkcol);
    display: block;
    transform: rotate(-136deg);
    position: relative;
    left: 8px;
    top: -1px;
    transition:0.3s ease all;
}

.header-row .nav-menu > ul > li.drop-down:hover .subArrow:before {
    width: 2px;
    height: 10px;
    transform: rotate(220deg);
    left: 12px;
    top: 6px;
}

.header-row .nav-menu > ul > li.drop-down:hover .subArrow:after {
    width: 2px;
    height: 10px;
    transform: rotate(-44deg);
    left: 6px;
    top: -4px;
}

/* Άνοιγμα dropdown όταν υπάρχει focus μέσα στο <li> */
.header-row .nav-menu .drop-down:focus-within > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}


@media (min-width: 992px) and (max-width: 1370px) {

    .header-row .nav-menu a,
    .header-row .nav-menu .drop-down ul a {
        font-size: 12px;
    }

    .header-row .nav-menu > ul > li {
        padding: 5px 10px;
    }

}

/* ============================= Mobile Menu ================================== */

.mobile-nav .drop-down ul a {
    padding: 0px;
    font-size: 1.2rem;
    font-weight: 400 !important;
}

.mobile-nav .active .opener a{
    padding-bottom:0px;
}
  
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1rem;
    font-weight: bold !important;
}
  
.mobile-nav a {
    display: block;
    position: relative;
    color: var(--thirdcol) !important;
    padding: 8px 0px;
    margin: 5px 0;
    outline: none;
    text-decoration: unset;
    font-size: 20px;
    margin: 10px 0;
}
  
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--seccol);
    text-decoration: none;
}

.mobile-nav .drop-down .opener {justify-content: space-between !important;}

.mobile-nav .current-page-ancestor .opener a {
    color: var(--seccol);
}
  


.mobile-nav .drop-down .opener > svg {
    padding: 5px;
    width: 30px;
    transition: 0.3s ease all;
    height: 35px;
    position: absolute;
    right: 0px;
}


.mobile-nav .current-page-ancestor .current_page_item a {
    color: var(--seccol);
}

.mobile-nav .drop-down .opener > svg path {
    fill: var(--thirdcol);
}
  
.mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav li.drop-down.active > ul {
    display: block;
}
  
.mobile-nav .drop-down li {
    padding-left: 20px;
}
  
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9998;
    top: 0;
    left: 0;
    position: fixed;
    background:rgb(255 255 255 / 65%);
    background-position: 100% 50%;
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
    backdrop-filter: blur(3px);
}  

.mobile-nav-overly span {
    position: fixed;
    top: 15px;
    right: 15px;
    color: var(--thirdcol);
    font-size: 1.25rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-times-circle:before {
    content: "\f00d";
    color: white;
}

.mobile-nav-overly i:hover {
    color: var(--seccol);
}

.mobile-nav-active {
    overflow: hidden;
}
  
.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}
  
.mobile-nav-active .mobile-nav-toggle span {
    color: var(--primcol);
}

.mobile-nav-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.mobile-nav-logo img {
    max-height: 100px;
    width: auto !important;
}


.mobile-nav li {
    /* border-bottom: 1px solid #aea29966; */
    position: relative;
}

.mobile-nav li:last-child {
    border: none;
}

.mobile-nav .subArrow {
    width: 30px;
    height: 30px;
    display: block;
    z-index: 99;
    position: relative;
}

.mobile-nav .subArrow:before {
    content: "";
    width: 2px;
    height: 14px;
    background: var(--thirdcol);
    display: block;
    transform: rotate(136deg);
    position: relative;
    left: 20px;
    top: 4px;
    transition:0.3s ease all;
}



.mobile-nav .subArrow:after {
    content: "";
    width: 2px;
    height: 14px;
    background: var(--thirdcol);
    display: block;
    transform: rotate(-136deg);
    position: relative;
    left: 20px;
    top: 0px;
    transition:0.3s ease all;
}

.mobile-nav .drop-down ul li {
    border: none;
}


/* Ήδη έχεις display:none στα mobile submenus. Δείξ' τα όταν υπάρχει focus μέσα. */
.mobile-nav li.drop-down:focus-within > ul {
  display: block;
}




/* ============================= HEADER THREE ================================== */

.headerThree {
    backdrop-filter: blur(5px);
}

.headerThree .icons li {
    list-style: none;
    margin-right: 5px;
    margin-left: 5px;
}

.headerThree .icons li a {
    text-transform: uppercase;
    color: var(--primcol) !important;
    font-weight: 600;
}

/* .headerThree .icons li:first-child:after {
    content: "|";
    position: relative;
    left: 5px;
} */

.headerThree .icons li.current-lang a {
    color: var(--primcol) !important;
}


/* ============================= HEADER FOUR ================================== */

/* .headerFour {
    backdrop-filter: blur(5px);
    width: calc(100vw - 50px) !important;
} */

.headerFour li {
    list-style: none;
    margin-right: 5px;
    margin-left: 5px;
}

.headerFour .top-row-info a, .headerFour .top-row-menu a,  .headerFour .main-row a {
    color: var(--primcol) !important;
    font-weight: 600;
}

.headerFour .top-row-info a:hover, .headerFour .top-row-menu a:hover, .headerFour .main-row a:hover {
    color: var(--linkcol) !important;
    font-weight: 600;
}




/* ============================= HEADER HERO ================================== */


#header-hero {
    height: var( --headerheroheigh) !important;
    background-repeat: var( --headerherobgrepeat) !important;
    background-position: var( --headerherobgposition) !important;
    background-size: var( --headerherobgsize) !important;
    z-index: 0;
}

#header-hero .header-hero-overlay{
    z-index: 1;
}

#header-hero .header-hero-container{
    z-index: 2;
}

#header-hero h1 {
    font-size: 40px !important;
    text-wrap: balance !important;
    font-weight: 600 !important;
    color: var( --headerherotextcolor) !important;
}

#header-hero h2 {
    font-size: 24px !important;
    font-weight: 300 !important;
    color: var( --headerherotextcolor) !important;
}

#header-hero .breadcrumbs {
    font-size: 18px;
    font-weight: 600;
}

#header-hero a, #header-hero .breadcrumbs a, #header-hero a time{
    color: var( --headerherolinkcolor);
}

#header-hero .entry-meta{
    color: var( --headerherotextcolor);
}

#header-hero .breadcrumbs a svg path, #header-hero .breadcrumbs span svg path{
    fill: var( --headerherolinkcolor) !important;
}

#header-hero .breadcrumbs span {
    margin: 0 5px 0 5px;
    color: var( --headerherotextcolor);
}

.header-hero .breadcrumbs {
    margin-bottom: 25px;
}


#header-hero.type-post h1 {
    font-size: 30px !important;
    font-weight: bold !important;
}


@media (max-width: 991px) {


    #header-hero .breadcrumbs {
        font-size: 16px !important;
    }

    #header-hero h1 {
        font-size: 25px !important;
    }

    #header-hero h2 {
        font-size: 18px !important;
    }
    
}

@media (max-width: 576px) {


    #header-hero {
        height: 100% !important;
        padding: 100px 0 50px 0;
    }
    
    #header-hero .breadcrumbs {
        font-size: 12px !important;
    }

    #header-hero h1 {
        font-size: 20px !important;
        text-wrap: balance;
    }

    #header-hero .page-description p {
        font-size: 15px !important;
    }


    #header-hero.type-post h1 {
        font-size: 16px !important;
    }

}

/* ============================= RESPONSIVE FORM ================================== */

#responsive-form .contact-section-title {
    font-weight: 500;
    font-size: 1rem;
    color: var(--seccol);
    margin: 0;
}

#responsive-form .row label {
    color: var(--primcol);
    font-size: 14px;
    font-weight: 600;
}

#responsive-form span.wpcf7-radio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 10px;
    margin: 15px auto;
}

#responsive-form span.wpcf7-radio span.wpcf7-list-item {
    border: 1px solid var(--primcol);
    border-radius: 100px;
    padding: 15px 30px;
    min-width: 300px;
    margin: 0;
}

#responsive-form input[type="text"],
#responsive-form input[type="email"],
#responsive-form input[type="url"],
#responsive-form input[type="password"],
#responsive-form input[type="search"],
#responsive-form input[type="number"],
#responsive-form input[type="tel"],
#responsive-form input[type="range"],
#responsive-form input[type="date"],
#responsive-form input[type="month"],
#responsive-form input[type="week"],
#responsive-form input[type="time"],
#responsive-form input[type="datetime"],
#responsive-form input[type="datetime-local"],
#responsive-form input[type="color"],
#responsive-form textarea, 
#responsive-form select {
    color: var(--primcol);
    border: 0;
    border: 1px solid var(--primcol);
    border-radius: 10px;
    padding: 15px 20px;
    background: transparent;
    width: 100%;
}

#responsive-form .field{
    margin: 0 0 30px 0;
}


#responsive-form button,
#responsive-form input[type="button"],
#responsive-form input[type="reset"],
#responsive-form input[type="submit"] {
    background: var(--thirdcol) !important;
    color: #000000 !important;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px 10px 30px !important;
    border-radius: 5px;
    border: 1px solid var(--thirdcol);
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#responsive-form button:hover,
#responsive-form input[type="button"]:hover,
#responsive-form input[type="reset"]:hover,
#responsive-form input[type="submit"]:hover  {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: var(--bgcol) !important;
    color: var(--thirdcol) !important;
    border: 1px solid var(--thirdcol);
    transition: all 0.25s ease-in-out;
}

#responsive-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    row-gap: 10px;
    margin: 15px 0;
}

#responsive-form .app-info {
    margin: 15px 0;
    font-size: 16px;
    font-style: italic;
    background: var(--thirdcol20);
    padding: 15px;
    border-radius: 10px;
}

#responsive-form .info-tip {
    font-style: italic;
    font-size: 15px;
    margin-left: 15px;
}


/* ============================= FOOTER THREE ================================== */

#footerThree{
    background: var(--footerbgcolor);
}

#footerThree .h1,
#footerThree .h2,
#footerThree .h3,
#footerThree .h4,
#footerThree .h5,
#footerThree .h6,
#footerThree h1,
#footerThree h2,
#footerThree h3,
#footerThree h4,
#footerThree h5,
#footerThree h6,
#footerThree p {
    color: var(--footertitlecolors) !important;
}

#footerThree a:not(.btn-prm, a.btn-prm) {
    color: var(--footerlinkcolors) !important;
}

#footerThree svg path {
    fill: var(--footersvgcolor) !important;
}

#footerThree .social a svg path {
    fill: var(--footersvgcolor);
}

.foot-widg ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.foot-widg ul li > ul {
    padding: 0 0 0 15px !important;
}

.foot-widg ul li {
    margin: 10px 0px;
}

#footerThree .social a svg path {
    transition: 0.3s ease all;
}

#footerThree .social a:hover svg path {
    fill: var(--svgcol);
}

.foot-widg .foot-3 ul#menu-footer-menu {
    display: inline-flex;
    flex-direction: row;
}

.foot-widg .foot-3 ul#menu-footer-menu li {
    padding: 0 15px 0 0;
}


#footerThree .btn-prm,
#footerThree a.btn-prm{
    background: var(--footerlinkcolors) !important;
}

#footerThree .btn-prm:hover,
#footerThree a.btn-prm:hover {
    background: var(--primcol) !important;
    color: var(--footerlinkcolors) !important;
    transition: all 0.25s ease-in-out;
}

/* ============================= Post Card Carousel ================================== */

.post-carousel #splide-carousel-list h3 a,
.post-carousel #splide-carousel-list .categories a {
    color: var(--headcol) !important;
}

.post-carousel #splide-carousel-list h3 a {
    font-size: 30px;
}

.post-carousel .splide__arrow {

    background: transparent;
    height: 50px;
    width: 50px;
}

.post-carousel .splide__arrow svg {
    fill: #000;
    height: 50px;
    width: 50px;
}

.post-carousel .splide__arrow--prev {
    right: 5em;
    left: unset;
}

.my-carousel-progress {
    background: #212121;
}

.my-carousel-progress-bar {
    background: #03D2FF;
    height: 2px;
    transition: width 400ms ease;
    width: 0;
}

@media (max-width: 991px) {

    .post-carousel #splide-carousel-list h3 a {
        font-size: 20px;
    }

    .post-carousel .post-content {
        background: #ffffff;
        border-radius: 2rem;
        margin-top: -50px;
        min-height: 340px;
    }

}



/* ============================= Menu modal ================================== */

.menumodal-nav li button {
    font-size: 16px !important;
    color: var(--headcol);
    transition: all 0.5s ease-in-out;
}

.menumodal-nav li button.active {
    color: var(--headcol);
    font-weight: 500 !important;
    border-bottom: 2px solid;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}

.menu-section-title h3 {
    font-size: 25px !important;
    margin-bottom: 5px !important;
}

.menu-section-title p {
    font-size: 18px !important;
    font-weight: 300 !important;
}

.menu-section-element h3 {
    font-size: 20px !important;
    font-weight: 500 !important;
}

.menu-section-element p {
    font-size: 16px !important;
    font-weight: 300 !important;
    font-style: italic;
}

.menu-section-element .the-price {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.menu-section:nth-child(even)  {
    background : #F9F9FB;
}

.menu-section:nth-child(even) .menu-section-element  {
    background : #fff;
}

.menu-section:nth-child(odd) .menu-section-element  {
    background : #F9F9FB;
}

span.element-attr {
    background: var(--primcol);
    padding: 5px 10px;
    color: var(--linkcol);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    margin: 0 0 5px 0;
    float: left;
}

/* ============================= Vertical Post Feed ================================== */


.vertical_post_feed .the_post h3 {
    font-size: 30px !important;
}

.vertical_post_feed .the_post .categories a,
.vertical_post_feed .the_post h3 a {
    color: var(--headcol) !important;
}


@media (max-width: 991px) {

    .vertical_post_feed .the_post h3 a{
        font-size: 20px;
    }

    .vertical_post_feed .the_post .post-content {
        background: #ffffff;
        border-radius: 2rem;
        margin-top: -50px;
        min-height: 340px;
    }

}


/* ============================= Archive Post Feed ================================== */

.archive-description p {
    font-size: 15px;
    font-weight: 300;
}


.archive-description p a {
    font-size: 15px;
    font-weight: 400;
    color: var(--linkcol) !important;
}

.archive-description p a:hover {
    color: var(--seccol) !important;
}


article .feedpost .categories li a



article.the-content .thumbnail {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-position: center !important;
}


article .feedpost .feedpost-content{
    border: 1px solid var(--seccol50);
}

/* .feedhorizontal .feedpost .thumbnail .feedpost-date {
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 19px 0px 20px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 60px;
    text-align: center;
    font-weight: 700;
    padding: 5px;
    color: var(--primcol);
} */

article.the-content .feedpost-content .feedpost-date {
    font-weight: 600;
}

article .feedpost h3, article .feedpost h3 a {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--linkcol) !important;
}

article .feedpost .thumbnail {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-position: center !important;
}

article .feedpost h3:hover a {
    color: var(--seccol) !important;
}

article .feedpost .thumbnail a {
    color: white !important;
}

article .feedpost .categories {
    margin: 10px 0 15px 0;
}
article .feedpost .excerpt p {
    font-size: 15px;
    font-weight: 300;
}

article .feedpost .categories a.feed-cat {
    color: #0b29cf !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
}

article .feedpost .categories a:hover {
    color: var(--seccol) !important;
}

/* οι λίστες σου είναι ήδη inline */
article .feedpost .categories [role="list"] li { display:inline; }
/* κόμμα μετά από κάθε li εκτός του τελευταίου */
article .feedpost .categories [role="list"] li:not(:last-child)::after { content:", "; }



/* ============================= Comments ================================== */

#comments {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
}


#comments .comment {
    list-style: none;
    padding: 20px;
    border-radius: 15px;
    margin: 10px 0;
}

#comments ul{
    margin: 0;
    padding: 0;
}

#comments .comment.even {
    background: #f3f3f3;
}

#comments .comment.odd {
    background: #dedede;
}

.comments-title, #respond h3 {
    font-size: 1.25rem;
}

#respond {
    background: #f3f3f3;
    padding: 15px;
    border-radius: 15px;
}

.comment-form-comment {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

form#commentform .logged-in-as {
    font-size: 0.85rem;
    color: var(--primcol);
}

form#commentform .logged-in-as a{
    font-size: 0.85rem;
    color: var(--primcol);
    transition: all 0.5s ease-in-out;
}

form#commentform .logged-in-as a:hover{
    font-size: 0.85rem;
    color: var(--primcol);
    transition: all 0.5s ease-in-out;
}

.form-submit input#submit {
    background: var(--primcol);
    border: 0;
    padding: 10px 15px;
    color: var(--bgcol);
    transition: all 0.5s ease-in-out;
}

.form-submit input#submit:hover {
    background: var(--bgcol);
    color: var(--primcol);
    transition: all 0.5s ease-in-out;
}

.comment-form-comment label {
    font-size: 1rem;
    color: var(--primcol);
}

.comment-form-comment textarea {
    border: 0;
    border-radius: 10px;
    color: var(--primcol);
    padding: 5px 10px;
    background: #fff;
}

/*Comment Output*/
 
.commentlist .reply {}
.commentlist .reply a {
    color: var(--primcol);
}

.commentlist .reply a:hover {
    color: var(--primcol);
}

.commentlist .alt {}
.commentlist .odd {
    background: #66666621 !important;
}
.commentlist .even {
    background: #cfcfcf21 !important;
}
.commentlist .thread-alt {}
.commentlist .thread-odd {}
.commentlist .thread-even {}
.commentlist li ul.children .alt {}
.commentlist li ul.children .odd {}
.commentlist li ul.children .even {}
 
.commentlist .vcard {
    padding: 10px;
}
.commentlist .vcard cite.fn {}
.commentlist .vcard span.says {}
.commentlist .vcard img.photo {}
.commentlist .vcard img.avatar {
    border-radius: 50px;
    margin: 5px;
    width: 100%;
    height: auto;
    max-width: 65px;
}
.commentlist .vcard cite.fn a.url {
    color: var(--primcol) !important;
    font-size: 0.95rem;
}
.commentlist .vcard cite.fn a.url:hover {
    color: var(--primcol) !important;
}
 
.commentlist .comment-meta {

}
.commentlist .comment-meta a {
    color: var(--primcol) !important;
}
.commentlist .comment-meta a:hover {
    color: var(--primcol) !important;
}
.commentlist .commentmetadata {
    font-weight: light !important;
    font-size: 0.85rem;
    font-style: italic;
}
.commentlist .commentmetadata a {
    color: var(--primcol) !important;
}
.commentlist .commentmetadata a:hover {
    color: var(--primcol) !important;
}
 
.commentlist .parent {}
.commentlist .comment {
    border-radius: 10px;
    overflow: hidden;
}
.commentlist .children {}
.commentlist .pingback {}
.commentlist .bypostauthor {}
.commentlist .comment-author {}
.commentlist .comment-author-admin {}
 
.commentlist {}
.commentlist li {
    margin: 15px 0;
    border: 0.0125rem solid var(--primcol80);
}
.commentlist li p {
    margin: 35px auto;
    color: var(--primcol);
    font-size: 1rem;
}
.commentlist li ul {}
.commentlist li ul.children li {}
.commentlist li ul.children li.alt {}
.commentlist li ul.children li.byuser {}
.commentlist li ul.children li.comment {}
.commentlist li ul.children li.bypostauthor {}
.commentlist li ul.children li.comment-author-admin {}
 
.commentlist .reply {
    padding: 10px;
}
#cancel-comment-reply a {
    font-size: 1rem;
}

p.comment-form-author, p.comment-form-email, p.comment-form-url {
    max-width: 370px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

input#author, input#email, input#url {
    background: var(--primcol80);
    border: 0;
    border-radius: 10px;
    color: var(--primcol);
    padding: 5px 10px;
}



nav.navigation.pagination .nav-links {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
}

nav.pagination-wrapper ul.page-numbers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

nav.pagination-wrapper ul.page-numbers li {
    list-style: none;
}

.post .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

img.prev-next-arrow {
    margin: 5px;
}

span.page-numbers.current {
    color: var(--primcol) !important;
    font-size: 1rem;
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    box-shadow: 0 0 15px #0000002e;
}

a.page-numbers {
    color: var(--primcol) !important;
    font-size: 1rem;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    width: 30px;
    height: 30px;
}

a.page-numbers:hover {
    color: var(--darkblue) !important;
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 0 15px #0000002e;
}


.sr-only-focusable {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    z-index: 1000;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.visually-hidden-focusable a {
    background: white !important;
    color: black !important;
}


a.header-espa-logos img {
    /* max-height: 75px; */
    width: auto;
    padding: 5px;
}






/* #primary ul, #primary ol {
    margin: 0 0 1.5em 0em !important;
} */




/*--------------------------------------------------------------
# project
--------------------------------------------------------------*/
.project .project-item {
    margin-bottom: 30px;
}

.project #project-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    background: #ddd;
    border-radius: 50px;
    padding: 2px 15px;
}

.project #project-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--primcol);
    transition: all 0.3s ease-in-out;
}

.project #project-flters li.current-cat a {
    color: var(--seccol) !important;
}

.project #project-flters li:hover,
.project #project-flters li.filter-active {
    color: #0563bb;
}

.project #project-flters li:last-child {
    margin-right: 0;
}

.project #project-flters li.cat-item a, .project #project-flters li.cat-item-all a {
    color: var(--primcol);
    transition: all 0.5s ease;
}

.project .project-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--primcol80);
    aspect-ratio: 1 / 1;
}


.project .project-wrap img.img-fluid {
    object-fit: cover !important;
    height: 100%;
    width: auto;
}

.project .project-wrap::before {
    content: "";
    background: var(--primcol60);
    position: absolute;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 1;
}

.project .project-wrap .project-info {
    /* opacity: 0; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primcol80);
}

.project .project-wrap .project-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 15px;
    left: 15px;
    border-top: 3px solid var(--thirdcol);
    border-left: 3px solid var(--thirdcol);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.project .project-wrap .project-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-bottom: 3px solid var(--thirdcol);
    border-right: 3px solid var(--thirdcol);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.project .project-wrap .project-info h3, .project .project-wrap .project-info h3 a {
    font-size: 20px;
    color: var(--bgcol) !important;
    font-weight: 600;
    padding: 10px;
    line-height: 25px !important;
}

.project .project-wrap .project-info h3 a:hover {
    color: var(--thirdcol) !important;
}

.project .project-wrap .project-info p {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.project .project-wrap .project-info a {
    color: #fff !important;
}

.project .project-wrap .project-links {
    text-align: center;
    z-index: 4;
}

.project .project-wrap .project-links a {
    color: #45505b;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.project .project-wrap .project-links a:hover {
    color: #148af9;
}

.project .project-item .title h4 a {
    color: var(--primcol);
    font-size: 1rem;
    font-weight: 600;
}

.project .project-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background: var(--primcol70);
    backdrop-filter: blur(12px);
    transition: all ease-in-out 0.3s;
}

.project .project-wrap:hover .project-info {
    opacity: 1;
}

.project .project-wrap:hover .project-info::before {
    top: 0;
    left: 0;
}

.project .project-wrap:hover .project-info::after {
    bottom: 0;
    right: 0;
}

.project .project-wrap .project-info .categories {
    padding: 0 30px;
    hyphens: auto;
    color: var(--thirdcol);
}

.project .project-wrap .project-info .feedpost-date {
    padding: 0 30px;
    hyphens: auto;
    color: var(--thirdcol);
}

.project figure.post-thumbnail {
    height: 100% !important;
    width: auto !important;
}

.project figure.post-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.analuseis .post .date {
    background: var(--primcol);
    color: white !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 125px;
}

.analuseis .post .date date.month {
    font-weight: bold;
    font-size: 16px;
}

.analuseis .post .date date.year {
    font-weight: bold;
    font-size: 18px;
    color: #fff2d3 !important;
}