@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");


/*---------------------------------- din Font -----------------------------------------------------*/

@font-face {
    font-family: 'DinTextComp BoldItalic';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/DinTextComp-BoldItalic.woff');
}

@font-face {
    font-family: 'DinTextComp Italic';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/DinTextComp-Italic.woff');
}

@font-face {
    font-family: 'DinTextComp Medium';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/DinTextComp-Medium.woff');
}

@font-face {
    font-family: 'DinTextComp MediumItalic';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/DinTextComp-MediumItalic.woff');
}

@font-face {
    font-family: 'DinTextComp Regular';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/DinTextComp-Regular.woff');
}

@font-face {
    font-family: 'DinTextComp XBlackItalic';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/DinTextComp-XBlackItalic.woff');
}

/*---------------------------------- Euroset Font -----------------------------------------------------*/

@font-face {
    font-family: 'Euroset Bold';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/Euroset-Bold.woff');
}

@font-face {
    font-family: 'Euroset Medium';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/Euroset-Medium.woff');
}

@font-face {
    font-family: 'Euroset Regular';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/Euroset-Regular.woff');
}

@font-face {
    font-family: 'Euroset-Regular';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/Euroset--Regular.woff');
}

@font-face {
    font-family: 'Euroset-Thin';
    src: url('/wp-content/themes/lioncode/LioncodeStyles/Euroset-Thin.woff');
}

/*---------------------------------------------------------------------------------------*/

html, 
b, 
p, 
span, 
li, 
a, 
table, 
td, 
tr, 
input, 
div {
    font-family: 'DinTextComp Regular' !important;
    color: #fff !important;
}

/* Εξαίρεση για το a.fc-event */
/* a.fc-event, a.fc-event .fc-event-inner, a.fc-event .fc-event-inner .fc-event-time, a.fc-event .fc-event-inner .fc-event-title {
    color: initial !important;
} */





h1, h2, h3, h4, h5 {
    font-family: 'DinTextComp Regular' !important;
    font-weight: bold !important;
    color: #fff !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

body{
    background: #2B2A29 !important;
}

#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;
}

span.fab, span.fas, span.fa {
    font-family: 'Font Awesome 5 Pro' !important;
}

article {
    overflow: hidden;
}

:root {
    --primcol: #2B2A29;
    --primcolop: #2B2A29e5;
    --primcolop2: #2B2A298c;
    --seccol: #86D0CC;
    --seccol2: #85c981;
    --seccolop: #86D0CCe5;
    --seccolop2: #86D0CC8c;
    --seccolop3: #86D0CC33;
    --thirdcol: #55A630;
    --headcol: #051f34;
    --grey-light: #f7f7f7;
    --bgcol: #fff;
    
}

::-moz-selection { /* Code for Firefox */
    color: var(--seccol);
    background: white;
}

::selection {
    color: var(--seccol);
    background: white;
}

p.par, .entry-content p, p {
    font-size: 1rem;
    text-align: justify;
    letter-spacing: 1px;
}

b, strong {
    font-weight: 900 !important;
}

blockquote::before{
    background-image: url(/wp-content/themes/lioncode/LioncodeStyles/img/quote-before.svg);
    background-size: 40px 40px;
    display: inline-block;
    width: 40px;
    height: 40px;
    content: "";
    position: absolute;
    left: 0;
}

blockquote::after {
    background-image: url(/wp-content/themes/lioncode/LioncodeStyles/img/quote-after.svg);
    background-size: 40px 40px;
    display: inline-block;
    width: 40px;
    height: 40px;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
}

article {
    min-height: 50vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.post blockquote::after {
	float: right;
}

blockquote {
    position: relative;
    padding: 0 60px;
    text-align: justify;
}

blockquote p {
    font-style: italic;
    font-size: 1rem !important;
    margin: 0;
}

.container.post-cont .entry-content a {
    color: var(--seccol);
}

.container.post-cont .entry-content a:hover {
    color: #fff !important;
}

.container.post-cont .entry-content a:hover svg path{
    fill: #fff !important;
}

.entry-content h1 {
    letter-spacing: 1px;
    font-size: 3rem;
}

.entry-content a {
    color: var(--primcol);
    font-weight: 500;
}

a {
    text-decoration: none !important;
}

a:hover {
    color: var(--seccol) !important;
    text-decoration: none !important;
}

main#homepage, main#contact-page, main#aboutus, main#sponsors, main#activity-page {
    margin: 0 !important;
}

.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
  
@-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
}
  
@keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
}

path#menu-Light_1_ {
    fill: var(--primcol) !important;
}

/*-------------------------------------------------------------- Header -------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    position: fixed;
    margin: auto !important;
    width: 100% !important;
    overflow-x: hidden;
    top: 10px;
}
  
#header.header-scrolled {
    position: fixed;
    width: 100% !important;
    padding: 10px;
    top: 0 !important;
}

#header.header-scrolled .top-bar {
    display: none;
    transition: all 0.5s ease-in-out;
}
  
#header.header-scrolled .logo img {
    max-height: 50px;
    width: auto;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

#header .middle-header {
    background: #2b2a2999;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 20px 10px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

img.custom-logo {
    max-height: 100px;
    width: auto;
}


.header-social a {
    margin: 0 5px !important;
}

.header-social svg {
    height: 25px;
    width: auto;
    display: block;
    margin: 0;
}

.header-social svg path {
    fill: var(--bgcol);
}

.header-social a:hover svg path{
    fill: var(--seccol);
}

#header-img {
    height: 100%;
    width: 100%;
    background-size: cover, 50% !important;
    background-repeat: no-repeat !important;
    background-position: center, 100% 50% !important;
    padding-top: 260px;
    padding-bottom: 100px;
}

#header-img .section-title span {
    top: 9px;
    font-size: 2.5rem;
}

@media (max-width: 1366px) {

    #header-img {
        background-size: cover!important;
    }

}


@media (max-width: 991px) {

    #header.header-scrolled .site-logo img {
        max-height: 65px;
    }

    #header.header-scrolled .middle-header {
        background: #2b2a2999;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        padding: 5px 10px;
    }

}


.header-info a {
    color: var(--primcol);
    font-size: 1rem;
    font-weight: 600;
}

.header-info a.head-phn {
    color: var(--seccol) !important;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

header svg {
    width: 25px;
    height: 25px;
    display: inline-flex;
}

/* header svg path {
    fill: var(--primcol);
} */

header svg:hover path{
    fill: var(--seccol);
    transition: all 0.5s ease-in-out;
}

#header-img h1 {
    display: block;
    color: var(--bgcol) !important;
    font-size: 3rem;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.breadcrumbs a, .breadcrumbs, .breadcrumbs svg path, .breadcrumbs span.current {
    font-size: 1.25rem;
    fill: var(--bgcol);
    font-weight: 200;
    text-align: center;
}

.breadcrumbs span.current {
    color: var(--seccol) !important;
}

.breadcrumbs a:hover {
    color: var(--seccol) !important;
}

.breadcrumbs span {
    margin: 0 5px;
    font-size: 1.25rem;
}

@media (max-width: 1366px) {

    #header-img h1 {
        font-size: 1.5rem;
        text-align: center;
    }
}

.header-mob {
    border-radius: 0 0 15px 15px;
    box-shadow: 0 2px 25px #2121215e;
}

.header-mob a.my-acc {
    border: 0 !important;
}

a.my-acc.logged-out, .name span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primcol);
}

a.my-acc:hover, a.my-acc:hover .name span {
    color: var(--seccol);
}

a.my-acc:hover svg path {
    fill: var(--seccol);
}

hr.menu-line {
    color: var(--seccol);
    border-width: 0 !important;
}
  
/*-------------------------------------------------------------- Navigation Menu --------------------------------------------------------------*/

/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
  
.nav-menu > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
  
.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}
  
.nav-menu a {
    display: block;
    color: var(--primcol);
    transition: 0.3s;
    font-size: 1rem;
    font-weight: 900 !important;
    padding: 0 3px;
}

.nav-menu > ul > li.current_page_item a {
    font-weight: bold;
}

.nav-menu > li.current-menu-item a {
    color: var(--seccol) !important;
}
  
.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}
  
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: var(--seccol);
}
  
.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 22px;
    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;
}
  
.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
  
.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}
  
.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: none;
    color: #2c4964;
}
  
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: var(--seccol);
}
  
/* .nav-menu .drop-down > a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    padding-left: 5px;
} */
  
.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
  
.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
  
.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}
  
/* .nav-menu .drop-down .drop-down > a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 15px;
} */

.nav-menu .drop-down .opener > svg {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

.nav-menu .drop-down .drop-down .opener > svg {
    position: absolute;
    right: 15px;
}

  
@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }

    .main-menu {
        min-height: 50px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-end;
        justify-content: space-around;
    }
    
}
  

.main-menu {
    background: var(--bgcol);
    position: relative !important;
    background: #0000;
}

.main-menu.fixed-top.header-scrolled {
    position: fixed !important;
    box-shadow: 0px 10px 20px #00000042;
    transition: all 0.5s ease;
    height: 75px;
    background: var(--primcol);
}

.main-menu.fixed-top.header-scrolled .nav-menu a {
    color: var(--bgcol);
}
  
/* Mobile Navigation */
.mobile-nav-toggle {
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
  
.mobile-nav-toggle i {
    color: var(--primcol);
}
  

button h3 {
    font-size: 1.2rem;
    margin: 0 5px;
}
  
.mobile-nav {
    position: fixed;
    top: 65px;
    right: 20px;
    bottom: 50px;
    left: 20px;
    z-index: 9999;
    overflow-y: auto;
    /* background: #ffffffd9; */
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 20px 15px;
}
  
.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(--bgcol);
    padding: 8px 10px;
    margin: 5px 0;
    outline: none;
}
  
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--seccol);
    text-decoration: none;
}
  
/* .mobile-nav .drop-down > a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
  
.mobile-nav .active.drop-down > a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
} */

.mobile-nav .drop-down .opener > svg {
    padding-left: 10px;
}

.mobile-nav .drop-down .opener > svg path {
    fill: #fff;
}
  
.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: linear-gradient(230deg, var(--primcol) 48%, var(--seccol) 150%);
    background-size: cover;
    background-position: 100% 50%;
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}  

.mobile-nav-overly span {
    position: fixed;
    top: 40px;
    right: 30px;
    color: var(--primcol);
    font-size: 1.25rem;
}

.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;
}


/* Primary Navigation */
.primary-menu-toggle {
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
  
.primary-menu-toggle i {
    color: var(--primcol);
}
  

button h3 {
    font-size: 1.2rem;
    margin: 0 5px;
}
  
.primary-menu {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    width: 350px;
    height: calc(100% - 100px);
    background: var(--primcol);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0 10px 10px 0;
    padding: 26px 25px 50px 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-5000px, 0);
    transition: all 0.5s ease-in-out;
}
  
.primary-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.25rem;
}
  
.primary-menu a {
    display: block;
    position: relative;
    color: var(--bgcol);
    padding: 8px 10px;
    margin: 5px 0;
    outline: none;
}


.mob-menu-icons {
    position: absolute;
    bottom: 0;
    max-width: 300px;
    margin: auto;
}

.primary-menu .mob-menu-icons svg path{
    fill: #fff;
}
  
.primary-menu a:hover, .primary-menu .active > a, .primary-menu li:hover > a {
    color: var(--seccol);
    text-decoration: none;
}
  
/* .primary-menu .drop-down > a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
  
.primary-menu .active.drop-down > a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
} */

.primary-menu .drop-down .opener > svg {
    padding-left: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.primary-menu .drop-down .opener > svg path {
    fill: #fff;
}
  
.primary-menu .drop-down > a {
    padding-right: 35px;
  }
  
.primary-menu .drop-down ul {
    display: none;
    overflow: hidden;
}

.primary-menu li.drop-down.active > ul {
    display: block;
}
  
.primary-menu .drop-down li {
    padding-left: 20px;
}
  
.primary-menu-overly {
    width: 100%;
    height: 100%;
    z-index: 9998;
    top: 0;
    right: 0;
    position: fixed;
    background: var(--seccolop3);
    background-size: cover;
    background-position: 100% 50%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(3px);
    transform: translate(-5000px, 0);
    transition: all 0.5s ease-in-out;
}

.primary-menu-overly span {
    font-size: 1.25rem;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 350px;
    padding: 33px 25px 25px 25px;
    background: var(--primcol) !important;
    transition: all 0.5s ease-in-out;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
}

button.primary-menu-toggle {
    padding: 0;
}

.fa-times-circle:before {
    content: "\f00d";
    color: var(--seccol);
    right: 30px;
    position: absolute;
}

.primary-menu-overly i:hover {
    color: var(--seccol);
}

.primary-menu-active {
    overflow: hidden;
}
  
.primary-menu-active .primary-menu, .primary-menu-active .primary-menu-overly {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
    transform: translate(0, 0);
}

  
.primary-menu-active .primary-menu-toggle span {
    color: var(--primcol);
}

.primary-menu-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.primary-menu-logo img {
    max-height: 100px;
    width: auto !important;
}

button.primary-menu-toggle {
    max-width: unset !important;
}


/*------------------------------------- Main Content --------------------------------------------------*/


a.border_button, button.border_button {
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    padding: 8px 28px !important;
    transition: 0.5s !important;
    margin-top: 10px !important;
    border: 1px solid var(--seccol) !important;
    color: var(--primcol) !important;
    max-width: max-content !important;
    text-transform: uppercase !important;
}

a.border_button:hover, button.border_button:hover {
    background: var(--seccol) !important;
    color: #fff !important;
    transition: all 0.5s ease !important;
}

a.btn-prm {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin-top: 10px;
    background: var(--primcol);
    border: 2px solid var(--primcol);
    color: #fff;
    max-width: max-content;
}

a.btn-prm:hover {
    background: var(--seccol) !important;
    border: 2px solid var(--seccol);
    color: #fff !important;
    transition: all 0.5s ease;
}

a.btn-scnd {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin-top: 10px;
    background: var(--seccol);
    border: 2px solid var(--seccol);
    color: #fff;
    max-width: max-content;
}

a.btn-scnd:hover {
    background: var(--primcol) !important;
    border: 2px solid var(--primcol);
    color: #fff !important;
    transition: all 0.5s ease;
}

a.btn-white {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid white;
    color: #fff;
    max-width: max-content;
}

a.btn-white:hover {
    background: white !important;
    color: var(--primcol) !important;
    transition: all 0.5s ease;
}

a.eff-btn {
    background-color: transparent;
    border: none !important;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    max-width: max-content;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    color: var(--primcol);
}

a.eff-btn:hover {
    color: #fff !important;
    background: transparent !important;
    transition: color 0.3s ease-in-out;
}

a.eff-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primcol) !important;
    transition: opacity 0.3s, border 0.3s;
    z-index: 1;
}

a.eff-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 200px;
    background-color: var(--primcol);
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: 0;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

a.eff-btn:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(2) translate(-10px, -70px);
    z-index: -1;
}


.container.post-cont .entry-content a.btn-prm  {
    color: #fff;
}

.container.post-cont .entry-content a.btn-prm:hover {
    color: #fff !important;
}

.container.post-cont .entry-content a.btn-prm svg {
    margin: 0 0 0 10px;
}

.container.post-cont .entry-content a.btn-prm svg path{
    fill: #fff
}

article.page .entry-content {
    margin: 100px 0;
}


hr.line {
    color: var(--seccol) !important;
    border-width: 0.35rem !important;
    opacity: 1 !important;
    width: 20%;
    border-radius: 100px
}

hr.line2 {
    color: var(--seccol) !important;
    border: 0.125rem solid var(--seccol) !important;
    opacity: 1 !important;
    width: 20%;
    border-radius: 100px;
}

hr.line3 {
    color: var(--seccol) !important;
    margin: 0;
}


.obj-fit {
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.big-title {
    font-size: 20em;
    text-align: center;
    color: var(--thirdcol);
    position: absolute;
    left: 0;
    right: 0;
    top: -130px;
    z-index: -1;
}

article.page .entry-content .big-title {
    font-size: 13em;
    text-align: center;
    color: var(--thirdcol);
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    z-index: -1;
}

@media (max-width: 991px) {

    .big-title {
        display: none;
    }

}

@media (min-width: 992px) and (max-width: 1280px) {
    .big-title {
        font-size: 10em;
        top: -55px;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .big-title {
        font-size: 13em;
        top: -100px;
    }
}

@media (min-width: 1367px) and (max-width: 1440px) {
    .big-title {
        font-size: 14em;
        top: -100px;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .big-title {
        font-size: 16em;
        top: -100px;
    }
}


/*--------------------------------------------------------------  # Sections General --------------------------------------------------------------*/
section {
    padding: 100px 0 100px 0;
    position: relative;
    overflow: visible;
}

.section-bg {
    background: #121212;
}

.section-bg-img {
    background: linear-gradient(90deg, var(--primcol) -15%, var(--primcolop) 35%, var(--seccolop) 80%, var(--seccolop2) 125%), url(/wp-content/uploads/team-bg.jpg);
    background-size: cover;
    background-position: center;
}

.section-bg-lines{
    background: url(/wp-content/themes/lioncode/LioncodeStyles/img/section-bg-lines.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.section-bg-lines-inv{
    background: url(/wp-content/themes/lioncode/LioncodeStyles/img/section-bg-lines-inv.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.section-title span {
    position: absolute;
    color: #ffffff42 !important;
    left: 0;
    top: -20px;
    right: 0;
    z-index: 0;
    font-weight: 900;
    font-size: 4rem;
    font-family: 'Euroset Bold' !important;
    line-height: 0;
}

.section-title h3, .section-title h4, .section-title h5 {
    font-size: 2.8rem;
    padding: 0;
    line-height: 1px;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    font-family: 'Euroset Bold' !important;
}

@media (max-width: 991px) {

    .section-title span {
        font-size: 2rem;
        display: none;
    }

    .section-title h3, .section-title h4, .section-title h5 {
        font-size: 1.25rem;
        line-height: normal;
    }

}

.section-title h1::after,  .section-title h2::after, .section-title h3::after, .section-title h4::after, .section-title h5::after {
    content: "";
    position: absolute;
    display: block;
    width: 150px;
    height: 3px;
    background: var(--seccol);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    font-size: 1.25rem;
    text-align: center;
    margin: 20px 0 0 0;
}


.upper-title{
    color: var(--primcol);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.upper-title::after {
    content: "";
    width: 100px;
    height: 3px;
    background: var(--seccol);
    border-radius: 10px;
    display: inline-flex;
    margin-left: 19px;
}

p.title{
    font-family: 'Euroset Bold' !important;
    font-size: 2rem;
}


.overlay::before{
    content: "";
    background-color: #00000027;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: calc(100vh - 250px);
    /* background: url(/wp-content/uploads/stock-1.jpg); */
    background-size: cover;
    background-position: 50% 90%;
    position: relative;
    /* padding: 130px 0 0 0; */
    display: flex;
    align-items: center;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    padding: 0;
}

#hero:before {
    content: "";
    background: linear-gradient(0deg, #2b2a29 0%, #2b2a2936 20%, #2b2a2975 35%, #ffffff00 164%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


iframe#background-video .html5-video-player .video-stream {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

#hero h1 {
    font-family: 'Euroset Bold' !important;
    font-size: 5rem;
    color: var(--seccol);
    text-align: left;
    z-index: 1;
}

#hero h1 span {
    font-family: 'Euroset Bold' !important;
    font-size: 5rem;
    text-align: left;
}

.stroke, span.stroke, p.stroke {
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke-width: 2px !important;
    -webkit-text-stroke-color: var(--seccol);
}

#hero h2 {
    font-family: 'Euroset Bold' !important;
    font-size: 5rem;
    font-weight: normal !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 1;
}

#hero p {
    color: var(--seccol);
    font-size: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    #hero {
    background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
    padding-top: 80px;
    height: calc(100vh - 100px);
    }

    #hero .animated {
    -webkit-animation: none;
    animation: none;
    }

    #hero .hero-img {
    text-align: center;
    }

    #hero .hero-img img {
    max-width: 50%;
    }

    #hero h1 {
    font-size: 50px;
    line-height: 54px;
    margin-bottom: 10px;
    }

    #hero h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
    width: 80%;
    }
}

a.scrollto {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 65px;
    z-index: 8;
    position: relative;
}

a.scrollto svg {
    height: 50px !important;
    width: 20px !important;
    margin: 0 !important;
}



/*-------------------------------------------------------------- line section --------------------------------------------------------------*/

section.home-bnr-line {
    margin-top: -150px;
}

/*-------------------------------------------------------------- blockquote section --------------------------------------------------------------*/

section.quote blockquote {
    font-size: 2.5rem;
    text-align: center;
    font-family: 'DinTextComp MediumItalic';
}

@media (max-width: 991px) {

    section.quote blockquote {
        font-size: 1.75rem;
    }

}

/*-------------------------------------------------------------- Our App section --------------------------------------------------------------*/

#ourapp {
    background: black;
    padding: 0;
}

#ourapp .ourapp-text h3 {
    font-size: 1.8rem;
    padding: 0;
    margin: 0 0 15px 0;
    font-family: 'Euroset Bold' !important;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}


.ourapp-img img {
    max-height: 460px;
    
}

.ourapp-container {
    height: 40vh;
}

@media (max-width: 575px) {
    .ourapp-container {
        height: 100vh;
    }
}

@media (max-width: 376px) {

    .ourapp-img img {
        max-height: 250px;
    }
}



/*-------------------------------------------------------------- About section --------------------------------------------------------------*/
section#about {
    overflow-x: hidden !important;
}

.img-overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--seccolop2) 0%, #ffffff03 100%);
    mix-blend-mode: screen;
    z-index: 10;
    object-fit: cover;
    overflow: hidden;
}

.img-bfr::before{
    content: " ";
    width: 200px;
    height: 200px;
    position: absolute;
    top: -20px;
    left: -20px;
    background: #fff;
    z-index: -1;

}

.about.about-right .img-bfr::before {
    left: unset !important;
    right: -20px !important;
}

.img-aft::after{
    content: " ";
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--seccol);
    z-index: -1;
}

.about.about-right .img-aft::after {
    right: unset !important;
    left: -20px !important;
}

.about-txt {
    z-index: 1;
}

.big-txt h4 {
    font-size: 3.5rem;
    font-family: 'Euroset Bold' !important;
}

.big-txt h4 span {
    font-family: 'Euroset Bold' !important;
}

.big-txt-left {
    transform: translate(-80px, 0px);
}

.big-txt-right {
    transform: translate( 80px, 0px);
}

.big-txt-right h4 {
    text-align: right;
}

main#prgrm-archive .about .about-img img.img-fluid {
    aspect-ratio: 1/1;
    object-fit: cover;
}

#prgrm-archive {
    overflow-x: hidden;
}


@media (max-width: 991px) {

    .big-txt h4 {
        font-size: 2rem;
        text-align: initial !important;
    }

    .big-txt-left, .big-txt-right  {
        transform: unset;
    }

}


@media (max-width: 575px) {

    .big-txt-left, .big-txt-right  {
        transform: unset;
    }
}


iframe.tour-frame {
    width: 100%;
    height: 550px;
}

/*-------------------------------------------------------------- programms section --------------------------------------------------------------*/

.home-progr {
    background: #5B5B5B;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.home-progr:hover {
    background: var(--seccolop2);
    transition: all 0.5s ease-in-out;
}

.home-progr .home-progr-title {
    min-height: 65px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.gym-programms {
    overflow: hidden;
}

.gym-programms .grow {
    padding: 0 3px;
    height: 100vh;
   /* Origional height */
    box-sizing: border-box;
    display: flex;
}

.gym-programms .grow .item {
    box-sizing: border-box;
    flex-grow: 1;
    transition: width 0.4s ease;
    width: 0;
}

.gym-programms .grow .item:hover {
    width: 50%;
   /* This is the height on hover */
}

.gym-programms .grow .item {
    position: relative;
    overflow: hidden;
}

.gym-programms .grow .item .text {
   font-size: 40px;
   font-weight: 700;
   opacity: 0;
   bottom: 0%;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
   transition-property: opacity, bottom;
   transition-duration: 0.1s;
   transition-delay: 0;
   transition-timing-function: linear, ease;
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   align-content: center;
   align-items: center;
   justify-content: center;
   height: 100%;
   background: var(--seccolop2);
}

.gym-programms .grow .item:hover .text {
    opacity: 1;
    bottom: 10%;
    transition-duration: 0.3s, 0.7s;
    transition-delay: 0.4s, 0.2s;
}

.home-progr-title a:hover {
    color: var(--primcol) !important;
}


.gym-programms .grow #main-slider .splide__track--fade>.splide__list>.splide__slide {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.gym-programms .grow #thumbnail-slider {
    bottom: 0;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide .post-box-btm {
    gap: 20px;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide {
    border: 3px solid transparent;
    cursor: pointer;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide .post-box-txt {
    font-size: 18px;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide a.btn-white {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5 ease-in-out;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide.is-active
{
    background: white !important;
    color: #000 !important;
    border: 0 !important;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide .post-box-title {
    font-size: 28px;
}


.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide.is-active .post-box-title, .gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide.is-active .post-box-txt {
    color: var(--primcol) !important;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide.is-active a.btn-white {
    visibility: visible;
    opacity: 1;
    transition: all 0.5 ease-in-out;
    color: var(--primcol) !important;
    border-color: var(--primcol);
    text-decoration: none;
}

.gym-programms .grow #thumbnail-slider .splide__track--nav>.splide__list>.splide__slide.is-active a.btn-white:hover {
    transition: all 0.5 ease-in-out;
    color: var(--primcol) !important;
    background: var(--seccol) !important;
    border-color: var(--seccol);
    text-decoration: none;
}


@media (max-width: 575px) {

    .gym-programms .grow #main-slider .splide__track--fade>.splide__list>.splide__slide {
        height: 100vh !important;
    }
}



/*--------------------------------------------------------------
# Level Up Section
--------------------------------------------------------------*/

.levelup_img img, .levelup_img svg{
    max-height: 120px !important;
    width: auto;
    height: auto;
}


#levelup, .levelup-section {
    background-size: contain, contain, cover, 100% !important;
    background-position: 0% 50%, 100% 50%, 50% 50%, 100% 40% !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    height: 650px;
}


#levelup .btn-prm, #levelup a.btn-prm , .levelup-section .btn-prm, .levelup-section  a.btn-prm{
    background: var(--seccol);
    color: white !important;
}
@media (max-width: 576px) {
    #levelup, .levelup-section {
        background-size: contain, contain, cover, 100% !important;
        background-position: 0% 50%, 100% 50%, 50% 50%, 100% 40% !important;
        background-repeat: no-repeat !important;
        background-attachment: unset !important;
        height: 100%;
    }
}



/*-------------------------------------------------------------- Team section --------------------------------------------------------------*/
main#teachers .team-box {
    background: #141414;
}

.team .carousel {
    min-height: 360px;
}

.team .carousel .flickity-viewport{
    height: 360px !important;
}

.team .carousel .flickity-prev-next-button.previous {
    left: -40px;
}

.team .carousel .flickity-prev-next-button.next {
    right: -40px;
}

.team-box{
    background: var(--primcol);
}

.team-box .team-box-title a {
    font-size: 1.5rem;
}

.team-box .team-box-role {
    font-size: 1rem;
    color: var(--seccol) !important;
}

.team-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
}

/*-------------------------------------------------------------- Book Free section --------------------------------------------------------------*/

.book-box {
    background: #000;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--seccol);
}

.book-box h5 {
    font-family: 'DinTextComp Medium' !important;
    font-size: 50px !important;
}

/*-------------------------------------------------------------- our news section --------------------------------------------------------------*/


.ournews #news-flters {
    padding: 0;
    margin: 0 auto 50px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.ournews #news-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.25rem;
    margin: 0 5px 0 0;
    line-height: 1;
    border: 2px solid var(--bgcol);
    color: var(--primcol);
    transition: all 0.3s ease-in-out;
}

.ournews #news-flters li.current-cat a, .ournews #news-flters li:hover a {
    color: var(--bgcol) !important;
}

.ournews #news-flters li.current-cat, .ournews #news-flters li:hover {
    background: var(--seccol);
    border: 2px solid var(--seccol);
}

.ournews #news-flters li:hover,
.ournews #news-flters li.filter-active {
    color: #0563bb;
}

.ournews #news-flters li:last-child {
    margin-right: 0;
}

.ournews #news-flters li.cat-item a, .ournews #news-flters li.cat-item-all a {
    color: var(--primcol);
    transition: all 0.5s ease;
}

.ournews .post-box {
    position: relative;
    background: #000;
    padding: 10px 10px 15px 10px;
    border-radius: 5px;
}

.ournews .post-box .post-box-top .date{
    position: absolute;
    background: var(--seccol);
    padding: 5px;
    border-radius: 0 5px 5px 0;
    top: 10px;
    left: 0;
    width: 75px;
}

.ournews .post-box .post-box-top .post-box-img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
}

.ournews .post-box .post-box-top .post-box-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ournews .post-box .post-box-btm .post-box-title {
    font-weight: normal !important;
    font-size: 1.5rem;
    margin: 12px 0;
}

.ournews .post-box .post-box-btm .post-box-txt p {
    font-weight: normal !important;
    font-size: 1rem;
    margin: 12px 0;
    text-align: left;
}

/*-------------------------------------------------------------- Programms --------------------------------------------------------------*/

.class-box {
    padding: 20px;
    min-height: 250px;
    border-radius: 20px;
    border: 2px solid var(--seccol);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
}

.class-box .class-box-title a {
    font-size: 2rem;
    font-family: 'DinTextComp BoldItalic' !important;
}

/*-------------------------------------------------------------- # Contact --------------------------------------------------------------*/
section#contact {
    padding: 0;
}

#contact p.title {
    text-align: center;
}

#contact .section-title h1 {
    text-align: center;
}

#contact .section-title h1{
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

#contact .section-title h1::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

#contact .section-title h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primcol);
    bottom: 0;
    left: calc(50% - 20px);
}


.contact .info-wrap {
    border-radius: 4px;
    margin: 0 10px;
}

.contact .info span {
    font-size: 20px;
    color: var(--primcol);
    float: left;
    width: 44px;
    height: 44px;
    background: var(--logogold);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info span svg path {
    fill: var(--seccol);
}

.contact .info h4 {
    padding: 0 0 0 30px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #384046;
}

.contact .info p {
    padding: 0 0 0 15px;
    margin-bottom: 0;
    font-size: 1.25rem;
}

.contact .info p a{
    color: var(--primcol);
}

.contact .info p a:hover{
    color: var(--seccol);
}

.contact .info:hover span {
    background: var(--primcol);
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    padding: 30px;
    border-radius: 4px;
}

.contact .form-wrap {
    width: 100%;
    padding: 0 30px;
    margin: 0 10px;
}

.contact .map-wrap {
    width: 100%;
}

.workinghours table th, .workinghours table tr {
    font-size: 25px;
}

@media (max-width: 991px) {

    #contact .info-content {
        flex-direction: column;
        align-items: center;
    }

    .contact .form-wrap h3 {
        font-size: 1.5rem;
    }

    .contact .form-wrap {
        padding: 0;
    }

}


@-webkit-keyframes animate-loading {
    0% {
    transform: rotate(0deg);
    }

    100% {
    transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
    transform: rotate(0deg);
    }

    100% {
    transform: rotate(360deg);
    }
}

/* Responsive Form */


button.btn.mob-cnt-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    background: var(--bgcol);
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 0 15px #061a4047;
}

/* #Contact form 7 */


h5.modal-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primcol);
}

#responsive-form, #reg-form{   
    width:100%;
    
}

#responsive-form br, #reg-form br{
    display: none;
}

#reg-form {
    border: 1px solid var(--seccol);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#responsive-form p, #reg-form p {
    margin: 0 !important;
    padding: 0 !important;
}

.wpcf7 {
    display: block;
    overflow: hidden;
}

.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

div.wpcf7-mail-sent-ok {
    border: none !important;
    color: #c1e873 !important;
}

.form-row{
    width: 100%;
    display: block !important;
}
.column-half, .column-full{
    float: left;
    position: relative;
    padding: 0.65rem;
    width:100%;
    -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    padding-bottom: 0px !important;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/**---------------- Media query ----------------**/

@media only screen and (min-width: 48em) { 
    .column-half {
        width: 50%;
    }
}


#responsive-form input[type="text"], #responsive-form textarea, #responsive-form input[type="email"], #responsive-form input[type="tel"],
#reg-form input[type="text"], #reg-form textarea, #reg-form input[type="email"], #reg-form input[type="tel"] {
    border-left: none;
    border-right: none;
    border-top: none;
    background: #00000036;
    padding: 10px 30px;
    color: var(--bgcol) !important;
    width: 100%;
    border: 0;
    border-radius: 5px;
    z-index: 0;
    font-weight: 600;
}

textarea {
    overflow: auto;
    resize: vertical;
    width: 100%;
    margin: 15px auto;
}

#responsive-form input[type="text"]:focus, #responsive-form textarea:focus, #responsive-form input[type="email"]:focus,
#reg-form input[type="text"]:focus, #reg-form textarea:focus, #reg-form input[type="email"]:focus  {
    outline: 0 !important;
    color: var(--bgcol) !important;
}
#responsive-form .column-half, #responsive-form .column-full{
    padding-bottom:0px;
}

#responsive-form label{
    color: var(--bgcol);
    letter-spacing: 1px;
    transition: .5s;
    transform: translateY(38px);
    font-size: 16px;
    padding: 0 10px;
    display: block;
    z-index: 99;
    font-size: 1rem;
}

#reg-form label{
    color: var(--bgcol);
    letter-spacing: 2px;
    padding: 0 10px;
    display: block;
    font-size: 1.15rem !important;
}

#reg-form select {
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: none;
    background: #00000036;
    padding: 10px 30px;
    color: var(--bgcol) !important;
    width: 100%;
    border: 0;
    border-radius: 5px;
    font-weight: 600;
}

.contactSubmitButton {
    text-align: center;
    margin: auto;
}

span.contactSubmitAnim {
    padding-top: 13px;
    padding-bottom: 13px;
    position: relative;
    overflow: hidden !important;
    float: none !important;
}

span.contactSubmitAnim input:hover {
    background-color: var(--primcol);
    transition: all 0.25s ease-in-out;
}

span.contactSubmitAnim input {
    z-index: 99;
    position: relative;
    color: #fff;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
    border-radius: 5px;
    border: 0;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 35px;
}

span.wpcf7-not-valid-tip {
    color: #b30000 !important;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    border: 0 !important;
    color: #b30000 !important;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #b30000 !important;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    color: #b30000 !important;
}

.form-row.contactSubmitButton .column-full {
    display: inline-block;
    width: auto;
    margin: 0 auto;
    overflow: hidden;
    padding-left: 0px;
    padding-right: 0px;
    float: none;
}

span.contactSubmitAnim:hover:after {
    right: 0px;
}


span.contactSubmitAnim:hover input{
    color:#fff;
}

.contactMapRow .nm_column {
    padding-left: 0px;
    padding-right: 0px;
}


#responsive-form .nameCol.active label{
    transform: translateY(0px) !important;
}

#responsive-form .surnameCol.active label{
    transform: translateY(0px) !important;
}

#responsive-form .emailCol.active label{
    transform: translateY(0px) !important;
}

#responsive-form .phoneCol.active label{
    transform: translateY(0px) !important;
}

#responsive-form .messageCol.active label{
    transform: translateY(0px) !important;
}

#responsive-form .subjCol.active label{
    transform: translateY(0px) !important;
}



/*-------------------------------------------------------------- # Gallery --------------------------------------------------------------*/


.gallery-wrap .img {
    margin: 0 0 20px 0;
}

.gallery-wrap .img a.gallery-lightbox {
    display: block;
    overflow: hidden;
}

.gallery-wrap .img img {
    aspect-ratio: 1 /1;
    object-fit: cover;
    height: 100%;
    width: auto;
}

.gallery-wrap .img:hover img {
    transform: scale(1.1);
    rotate: 5deg;
    transition: all 0.5s ease-in-out;
}

.gallery-wrap .img .overlay {
    background: var(--primcolop);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 15px;
    opacity: 0;
}

.gallery-wrap .img:hover .overlay {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}


/* ==================================
# Gallery
 ==================================*/
 .gallery .gallery-item {
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery .gallery-item.video {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    background: var(--thirdcol80);
    border-radius: 10px;
}

.gallery .gallery-item.video iframe {
    aspect-ratio: 2 / 1;
    object-fit: cover !important;
    width: 100%;
    height: auto;
}


/*--------------------------------------------------------------  # Newsletter --------------------------------------------------------------*/


/* Newsletter Section */

section#newsletter {
    display: flex;
    align-items: center;
    background: #5B5B5B;
    margin-bottom: -165px;
    margin-top: 50px;
}

section#newsletter .container-xxl {
    max-width: 1600px;
}

#newsletter .section-header {
    padding: 0;
}

#newsletter .section-header h2 {
    font-family: 'GaramondClassic-Bold' !important;
    font-size: 3rem;
}

section#newsletter .sub-nletter hr.nletter-line {
    color: var(--headcol) !important;
    width: 150px;
    margin: 15px auto;
    height: 2px;
    border-radius: 10px;
    border: 0 !important;
    opacity: 0.75;
}

section#newsletter .sub-nletter p.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--headcol);
}

form.es_subscription_form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.es-field-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
}

.emaillist p {
    text-align: center !important;
    color: var(--headcol);
}

.emaillist a {
    font-weight: bold;
    color: var(--headcol);
}

.emaillist a:hover {
    color: var(--primcol);
    transition: all 0.25s ease-in-out;
}
.es_caption {
    font-size: 1.5rem;
}

.emaillist input.es_required_field.es_txt_email.ig_es_form_field_email {
    font-size: 0.9rem;
    background: var(--bgcol) !important;
    color: var(--primcol) !important;
    border: 0;
    border-radius: 5px 0 0 5px;
    width: 250px;
    text-align: left;
    padding: 10px 15px;
}

.emaillist input.es_subscription_form_submit {
    width: 150px;
    background: var(--seccol);
    color: #fff;
    border: 0;
    padding: 10px 5px;
    font-size: 0.9rem;
    border-radius: 0 5px 5px 0;
}

.emaillist input.es_subscription_form_submit:hover {
    background: var(--primcol);
    color: white;
    transition: all 0.5s ease;
}



@media (max-width: 991px) {

    #newsletter .section-header h2 {
        font-size: 1.85rem;
    }

    section#newsletter .sub-nletter p.subtitle {
        font-size: 1rem;
    }

    .emaillist input.es_required_field.es_txt_email.ig_es_form_field_email {
        font-size: 0.8rem;
        width: 200px;
    }

    .emaillist input.es_subscription_form_submit {
        width: 85px;
        font-size: 0.8rem;
    }

}


/*------------------------------------- Footer widgets--------------------------------------------------*/

#footer {
    background: linear-gradient(0deg, #000000d3 0%, #000000d3 100%), url(/wp-content/themes/lioncode/LioncodeStyles/img/footer-bg.jpg), linear-gradient(0deg, #000 0%,  #000 100%);
    background-size: cover;
    padding: 225px 0 0 0 !important;
}

#footer .section-header {
    padding-bottom: 0 !important;
}

.container.footer-cont {
    background: #0000 linear-gradient( 117deg, var(--primcol) 0%, var(--primcol) 100%) 0% 0% no-repeat padding-box;
    max-width: 85%;
    margin: 35px auto;
    border-radius: 67px;
    box-shadow: 6px 6px 40px var(--primcolop2);
    padding: 60px 30px;
}

#footer img.custom-logo {
    max-height: 150px;
}

.footer-main {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.foot-col h4 {
    color: white;
    text-transform: uppercase;
}

.foot-col h3 {
    color: white;
    font-size: 2rem;
}

.foot-col p.par {
    color: #fff;
}

.foot-col svg path {
    fill: #fff;
}

hr.foot-line {
    border-top: 2px solid #F8F8F859;
    width: 60px;
    margin: 25px auto;
    text-align: left;
    display: inline-flex;
}

section.footer-widg {
    padding: 50px 0;
    margin: auto;
}

h4.foot-widg-title {
    font-size: 1.4rem;
    letter-spacing: 0px;
    color: var(--seccol) !important;
    padding-bottom: 15px;
    margin: 15px auto;
    font-family: 'DinTextComp MediumItalic' !important;
    text-align: center;
}

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

.foot-widg p {
    font-size: 1rem;
}

.foot-widg p.text svg, .find-us p.text svg {
    margin: 0 5px 0 0;
}

/* .foot-widg p.text svg path {
    fill: #fff;
} */

.find-us p.text svg path {
    fill: var(--primcol);
}

.foot-widg p.text a span, .find-us p.text a span {
    font-size: 0.85rem !important;
    margin-left: 35px;
}

.foot-widg .foot-2 {
    text-align: center;
}

section.footer-widg ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 !important;
    list-style: none;
}

section.footer-widg li {
    margin: 5px;
    text-align: left;
}

.foot-widg .foot-1 ul li {
    text-align: center;
}

.foot-widg .foot-3 p {
    font-size: 1rem;
    color: var(--primcol);
    text-align: left;
    line-height: 2;
}

section.footer-widg a {
    font-size: 1.25rem;
    color: var(--bgcol) !important;
    letter-spacing: 1px;
}

section.footer-widg a:hover {
    color: var(--seccol) !important;
}

section.footer-widg a span {
    font-size: 1rem !important;
    color: var(--primcol);
    margin-right: 5px;
}

section.info-footer .social {
    border-bottom: 1px solid var(--primcolop2) !important;
}

section.info-footer .info a {
    color: #000;
}

section.info-footer .info a:hover {
    color: var(--seccol);
}

section.info-footer .info svg path {
    fill: #000;
}

section.info-footer nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 20px 0 0 0;
}

section.info-footer nav ul li{
    margin: 0 5px 0 0;
}

section.info-footer nav ul li:after {
    content: " / ";
    padding: 0 10px;
}

section.info-footer nav ul li:nth-last-child(1):after{
    content: " ";
}

section.info-footer nav ul li a {
    color: #000;
}


section.info-footer nav ul li a:hover {
    color: var(--seccol);
}

@media (max-width: 991px) {

    section.info-footer nav ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    section.info-footer nav ul li:after {
        content: " ";
        padding: 0;
    }

    section.info-footer nav ul li {
        margin: 7px 0;
    }

}



section.abs-footer {
    padding: 0;
    text-align-last: center;
    background: var(--primcol);
}

section.abs-footer a {
    font-weight: bold;
    color: var(--bgcol);
    align-self: center;
}

section.abs-footer a svg {
    height: 20px;
}

section.abs-footer a svg:hover path {
    fill: var(--seccol);
}

.abs-footer p {
    font-size: 0.85rem !important;
    color: var(--bgcol);
    text-align: center;
    margin: 1.25em auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    column-gap: 15px;
    color: #737373;
    row-gap: 10px;
}

.footer-info span {
    font-size: 15px;
    margin-right: 10px;
    color: var(--primcol);
}

.es_caption {
    font-size: 1rem;
}

img.social-icon {
    width: 25px;
}


span.label {
    display: none;
}

span.hidLabel {
    display: none;
}

/*------------------------------------- Blog Page--------------------------------------------------*/

.container.blog-cont {
    max-width: 1250px;
    margin: 50px auto;
}

.page-title h1{
    color: var(--primcol);
    font-size: 2rem !important;
    padding-right: 10px;
    text-transform: capitalize;
}

img.bread-arrow {
    height: 15px;
    padding-right: 10px;
}

img.bread-spot {
    padding-right: 10px;
}

.row.post {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.archive-post-thumbnail {
    height: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.blog-cont .post img {
    height: inherit;
    /* max-width: 250px; */
    box-shadow: unset;
    object-fit: cover;
}

.row .post .post-date {
    text-align: left;
    color: var(--primcol);
    font-weight: bold;
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.row .post .post-date svg{
    width: 20px;
    height: 20px;
    margin: 0 5px 0 0;
}

.post-categ {
    font-size: 1rem !important;
    font-weight: bold;
    padding-right: 10px;
    text-transform: capitalize;
}

.post-categ a {
    color: var(--primcol);
    font-weight: 100;
}

h2.entry-title {
    font-size: 1.4rem !important;
    color: var(--primcol);
    text-align: left;
    margin: 10px auto;
    font-weight: bold
}

.row.post .entry-content {
    margin: 0;
}

/*
.entry-content {
    text-align: left;
    margin: 20px auto;
}
*/

div#sidebar {
    background: var(--bgcol);
    box-shadow: 0 0 10px 10px #00000029;
    padding: 25px 15px;
    position: sticky;
    top: 105px;
    border-radius: 10px;
}

#sidebar h2 {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem !important;
}

#sidebar a {
    color: #fff;
    font-size: 1rem;
    font-weight: 100;
}

#sidebar .category {
    margin: 5px 0;
}

#sidebar ul {
    list-style: none;
    padding: 5px;
}

#sidebar ul.children {
    padding-left: 10px !important;
}

#sidebar .widget h2 {
    font-size: 1.25rem;
    color: var(--primcol);
    margin: 15px 0;
    border-bottom: 2px solid var(--seccol);
    padding-bottom: 14px;
}

#sidebar .widget li a {
    font-size: 1rem !important;
    color: var(--primcol);
    text-align: left;
    line-height: 1.8rem;
    text-transform: capitalize;
    font-weight: 500;
}

#sidebar .widget li.current-cat a {
    font-size: 1rem !important;
    color: var(--seccol);
    text-align: left;
    line-height: 1.8rem;
    text-transform: capitalize;
    font-weight: 900;
}

#sidebar .widget li.current-cat > ul li a {
    color: var(--primcol);
    font-weight: 400;
}

#sidebar .wp-block-search__input {
    background: #ffffff40;
    width: 100%;
    border: 0 !important;
    height: 35px;
    border-radius: 10px;
}


#sidebar .widget_search form.searchform {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
    background: var(--bgcol);
    border-radius: 10px;
}

#sidebar span.fas.fa-search {
    font-weight: lighter !important;
}

#sidebar section {

    padding: 0;
    margin: 30px 0;

}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: var(--grey-light);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: var(--seccol);
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: var(--bgcol);
}

span.post-date {
    background: var(--primcol) 0% 0% no-repeat padding-box;
    border-radius: 8px;
    min-height: 35px;
    display: block;
    /*max-width: 50%;*/
    padding: 10px;
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
}

h2.entry-title a {
    color: var(--primcol);
}

h2.screen-reader-text {
    display: none;
}

hr.post-line {
    border: 1px solid var(--seccol) !important;
}

nav.navigation.pagination {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
}

.post .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

img.prev-next-arrow {
    height: 11px !important;
    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;
    height: 30px;
}

a.page-numbers:hover {
    color: var(--primcol) !important;
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 0 15px #0000002e;
}

/*------------------------------------- Single Blog Post --------------------------------------------------*/

.container.post-cont {
    margin-top: 50px;
}

.single-post-categ {
    font-size: 1.4rem !important;
    font-weight: bold;
    padding-right: 10px;
    text-transform: capitalize;
}

.single-post-categ a{
    color: var(--primcol);
}

h1.entry-title {
    font-size: 2.5rem !important;
    color: var(--primcol);
    text-align: left;
    font-weight: bold;
}

.post-thumbnail {
    width: 100%;
    display: flex;
    justify-content: center;
}

figure.post-thumbnail {
    width: 50%;
    margin: 0 auto;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* 📱 Mobile (μέχρι 768px πλάτος) */
@media (max-width: 768px) {
    figure.post-thumbnail {
        width: 100%;
    }
}

.post-cont .post-thumbnail .single-post-date {
    background: #fff;
    position: absolute;
    width: 70px;
    height: 70px;
    color: var(--primcol);
    font-weight: bold;
    padding: 5px;
    margin: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.post-cont .entry-content ul, .entry-content ol {
    color: var(--primcol);
    letter-spacing: 0.05rem;
}

.post-cont .entry-content ul li {
    padding: 0 0 0 10px;
}

.post-cont .entry-content ul li::marker {
    content: url(/wp-content/themes/lioncode/LioncodeStyles/img/list.svg);
    margin-right: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--seccol);
}

.post-cont .entry-content ol {
    list-style: decimal-leading-zero;
}

.post-cont .entry-content ol li::marker {
    color: var(--purpleLighBorder) !important;
}

div#tab-description table tr {
    border-bottom: 1px solid #b9b9b9;
}

figcaption {
    font-size: 1rem !important;
    font-weight: bold;
    text-transform: capitalize;
    margin: 5px auto;
}

.gallery:after {content:"";display:table;clear:both;}

.gallery figure img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;

}

/* .entry-content img {
    width: 100%;
    height: auto;

} */

.gallery figure img:hover {
    transform: scale(1.02);
    transition: 0.5s ease;
    box-shadow: 0 0 15px #1d00824f;
}

.gallery figure {float:left; margin:0 2% 1em 0;}


.gallery.gallery-columns-1 figure {width:100%; margin:0 0 1em 0; float:none;}


.gallery.gallery-columns-3 figure {width:32%;}
.gallery.gallery-columns-3 figure:nth-of-type(3n+3) {margin-right:0;}
.gallery.gallery-columns-3 figure:nth-of-type(3n+4) {clear:left;}


.gallery.gallery-columns-2 figure {width:49%;}
.gallery.gallery-columns-2 figure:nth-of-type(even) {margin-right:0;}
.gallery.gallery-columns-2 figure:nth-of-type(odd) {clear:left;}


.gallery.gallery-columns-4 figure {width:23.25%;}
.gallery.gallery-columns-4 figure:nth-of-type(4n+4) {margin-right:0;}
.gallery.gallery-columns-4 figure:nth-of-type(4n+5) {clear:left;}


.gallery.gallery-columns-5 figure {width:18%;}
.gallery.gallery-columns-5 figure:nth-of-type(5n+5) {margin-right:0;}
.gallery.gallery-columns-5 figure:nth-of-type(5n+6) {clear:left;}


.gallery.gallery-columns-6 figure {width:14.2%;}
.gallery.gallery-columns-6 figure:nth-of-type(6n+6) {margin-right:0;}
.gallery.gallery-columns-6 figure:nth-of-type(6n+7) {clear:left;}


.gallery.gallery-columns-7 figure {width:12%;}
.gallery.gallery-columns-7 figure:nth-of-type(7n+7) {margin-right:0;}
.gallery.gallery-columns-7 figure:nth-of-type(7n+8) {clear:left;}


.gallery.gallery-columns-8 figure {width:10.2%;}
.gallery.gallery-columns-8 figure:nth-of-type(8n+8) {margin-right:0;}
.gallery.gallery-columns-8 figure:nth-of-type(8n+9) {clear:left;}


.gallery.gallery-columns-9 figure {width:8.85%;}
.gallery.gallery-columns-9 figure:nth-of-type(9n+9) {margin-right:0;}
.gallery.gallery-columns-9 figure:nth-of-type(9n+10) {clear:left;}


@media (max-width:767px) {
	img.alignright, div.alignright, figure.alignright, img.alignleft, div.alignleft, figure.alignleft, img.wp-post-image.attachment-thumb {display:block; margin:1em auto; float:none;}
	.gallery.gallery-columns-4 figure, .gallery.gallery-columns-5 figure, .gallery.gallery-columns-6 figure, .gallery.gallery-columns-7 figure, .gallery.gallery-columns-8 figure, .gallery.gallery-columns-9 figure {width:100%; margin:0 0 1em 0; float:none;}
}


article.page .entry-content .inside {
    padding-left: 30px;
}

article.page .entry-content ul li {
    list-style: inside;
}

article.page .entry-content ol li {
    list-style: auto;
}

article.page .entry-content .inside ol li {
    list-style: lower-greek;
}

.single-pst-pag {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: flex-start;
    margin-bottom: 25px;
    justify-content: space-between;
}

.prev-post {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

.next-post {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-end;
    align-items: flex-start;
}

/* .pag-icon {
    background: #fff;
    border: var(--primcol);
    border-radius: 30px;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px #00000030;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.pag-icon {
    padding: 0 !important;
}

.nextart {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.prevart {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.prev-next p {
    font-size: 1.24rem;
    letter-spacing: 0.05rem;
    margin-bottom: 0 !important;
}

.prev-next a {
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
}

img.all-posts-square {
    height: 15px;
}

.single-pst-pag .all-posts {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.row.tags-share {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 25px;
}

.col-6.post-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.post-tags ul {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

.post-tags li.tag-li {
    border: 2px solid var(--limegreen);
    border-radius: 32px 0px 0px 32px;
    padding: 2px 20px;
    margin-right: 5px;
}

.post-tags li.tag-li a {
    color: var(--primcol);
    font-size: 1rem;
    letter-spacing: 0.05rem;
}

.post-tags li.tag-li a::before {
    content: "";
}

share-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}


.share-btn svg {
    width: 35px;
    height: 35px;
    margin: 0 5px 0 0 ;
}

.share-btn h6 {
    font-size: 1.25rem !important;
    text-transform: capitalize;
    margin: 5px 5px 0 0 !important;
    color: var(--bgcol);
}

hr.singe-post-bottomline {
    border: 2px solid var(--primcolor);
    margin: 2px;
    border-radius: 100px;
}

.rel-articles {
    background: #0000 linear-gradient( 117deg, var(--primcol) 0%, var(--seccol) 100%) 0% 0% no-repeat padding-box;
    box-shadow: 6px 6px 40px #623bec66;
    border-radius: 35px;
    padding: 15px;
}

h4.rel-art {
    font-size: 1.5rem !important;
    text-transform: capitalize;
    margin: 25px 0;
    font-weight: bold;
    color: #fff;
}

.gallery-cell {
    width: 33%;
    margin-right: 10px;
    counter-increment: gallery-cell;
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-pst img {
    width: 100%;
    border-radius: 0px 0px 15px 15px;
    max-height: 284px;
    object-fit: cover;
}

.relatedcontent h3 {
    font-size: 1rem !important;
    font-weight: bold;
    line-height: 1.2rem !important;
    color: var(--primcol);
    margin-top: 10px;
    margin-bottom: 20px;
}

.post-link-btn {
    padding: 0 15px;
    margin-bottom: 25px;
}

.relatedcontent h3 a {
    color: var(--primcol);
    font-weight: bold;
}
  
.rel-articles .postSliderDate {
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 20px 0px;
    position: absolute;
    top: 0;
    width: 70px;
    height: 60px;
    text-align: center;
    color: var(--primcol);
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.relatedcontent {
    padding: 0 15px;
}

.rel-articles .postSliderDate span:first-child {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 26px;
}
.rel-articles .postSliderDate span:last-child {
    font-size: 0.7rem;
    line-height: 11px;
}

a.tag-cloud-link {
    color: var(--primcol);
    font-size: 1.2rem !important;
    border: 0.0125rem solid var(--primcol);
    padding: 5px 10px;
}

a.tag-cloud-link:hover {
    color: var(--seccol);
    background: var(--primcol);
}



/*---------------------------------------- search -----------------------------------------------*/

span.label {
    display: none;
}

label.label {
    display: none;
}

.totalNum {
    margin: 35px auto;
}

#header-img form.searchform {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
    background: var(--bgcol);
    border-radius: 50px;
    padding: 5px 15px;
}

#header-img input.search-field::placeholder {
    color: var(--primcol) ;
}
#header-img input.search-field {
    color: var(--primcol) !important;
}

#header-img .totalNum p {
    color: var(--bgcol);
    text-align: left;
}

div#searchpopup {
    background: radial-gradient(circle, var(--seccolop2) 15%, var(--primcolop2) 120%), url(/wp-content/themes/lioncode/LioncodeStyles/img/section-bg-lines.svg);
    backdrop-filter: blur(4px);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.searchResultsPage h2 {
    color: var(--primcol) !important;
    font-size: 2rem;
    padding: 15px 0;
}

.searchResultsPage h2.entry-title {
    border: 0 !important;
}


div.search_result {
  display: none;
}

.post.results {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}


/*---------------------------------------- search -----------------------------------------------*/

form.searchform {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
}

input.search-field {
    width: 100%;
    border: 0;
    border-right: none;
    padding: 10px;
    height: 35px;
    font-size: 1rem;
    letter-spacing: 1px;
    outline: none;
    color: var(--seccol) !important;
    background: #0000;
}

input.search-submit {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primcol);
    background: var(--primcol);
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
}

button.search-btn {
    background: #0000;
    color: var(--seccol);
    font-size: 1rem !important;
    border: 0;
}


.container.result {
    border-bottom: 0.0125rem solid var(--primcol);
    padding: 10px 5px;
    text-align: center;
    min-height: 396px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}



div.search_result::-webkit-scrollbar-track {
    background-color: transparent;
}

div.search_result::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

div.search_result::-webkit-scrollbar-thumb {
    border: 0;
    border-radius: 0;
    background-color: #000000;
}


.container.result h2.entry-title {
    text-align: center;
}

.nav-links {
    display: flex;
}

div.search_result {
    display: none;
    position: absolute;
    max-width: 400px;
    top: 100%;
    padding: 20px;
    background: #e7e7e7;
    max-height: 600px;
    overflow: hidden !important;
    overflow-y: scroll !important;
    box-shadow: 0px 15px 15px #0000001a;
    z-index: 9999;
    border-radius: 10px
}

.woocommerce.searchResults ul, .woocommerce.searchResults ul.products {
    margin-top: 35px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 30px;
}

.woocommerce.searchResults ul.products li.product {
    width: unset !important;
    margin: 0;
    padding: 10px;
    width: 25% !important;
}

@media (max-width: 480px) {

    .woocommerce.searchResults ul.products li.product {
        width: 100% !important;
    }

}

@media (min-width: 481px) and (max-width: 767px) {
    .woocommerce.searchResults ul.products li.product {
        width: 50% !important;
    }

}


#datafetch > p {
    font-size: 1.5rem;
    border-bottom: 0.0125rem solid var(--seccol);
    margin: 15px auto;
    padding-bottom: 5px;
    font-weight: 500;
}

#datafetch ul.prodresult {
    padding: 0;
}

#datafetch ul.prodresult li {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: center;
    margin-bottom: 35px;
    background: var(--bgcol);
    padding: 10px;
    border-radius: 10px;
    margin: 10px auto;
}

#datafetch ul.prodresult a.search-buy-btn {
    background: var(--bgcol);
    border: 2px solid var(--primcol);
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#datafetch ul.prodresult a.search-buy-btn:hover {
    background: var(--primcol);
    color: #fff !important;
    transition: all 0.5s ease-in-out;
}

#datafetch ul.prodresult a.search-buy-btn:hover svg path {
    fill: #fff;
    transition: all 0.5s ease-in-out;
}

#datafetch li img.searchResImage {
    max-width: 50%;
    height: auto;
}


#datafetch li a {
    font-size: 0.9rem;
    color: var(--primcol);
    font-weight: 900;
}

#datafetch li a.title {
    margin: 10px auto;
}

#datafetch li p {
    font-size: 0.9rem;
    color: var(--primcol);
}

button.searchResAll {
    border: 0.0125rem solid var(--primcol);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    background: var(--bgcol);
    color: var(--primcol);
    padding: 5px 10px;
    transition: all 0.5s ease;
}

button.searchResAll:hover {
    background: var(--primcol);
    color: white;
    transition: all 0.5s ease;
}


.search label.label {
    display: none !important;
}



/*--------------------------------------- Contact Page ------------------------------------------------*/

#hero-contact {
    padding: 0;
}

#hero-contact .container, #hero .container-fluid {
    padding-top: 84px;
}
  
#hero-contact h2, #hero-contact h3, #hero-contact h4, #hero-contact h5, #hero-contact h6 {
    color: var(--primcol);
    margin: 10px 0 0 0;
    line-height: 64px;
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 992px) {

  
    #hero-contact h2, #hero-contact h3, #hero-contact h4, #hero-contact h5, #hero-contact h6 {
        font-size: 1.25rem;
    }

}

#hero-contact p.text, #hero-contact p.text a, #hero-contact .text p {
    color:var(--primcol);
}

#hero-contact .details {
    margin-top: 75px;
}

#hero-contact path#send-Regular_1_, #hero-contact path#map-marker-Regular_1_, #hero-contact path#phone-Regular_1_, #hero-contact path#envelope-Regular_1_, #hero-contact path#link-Regular_1_ {
    fill: var(--primcol);
}


/**---------------- 404 page ----------------**/

#not-found {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin: 50px auto;
}

#not-found .image-not-found, #not-found .image-not-found svg {
    max-width: 1200px;
    width: 1000px;
    margin: 35px auto;
    height: 100%;
}

#not-found h1 {
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--primcol);
}

#not-found h2 {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--primcol);
    text-align: center;
    margin-bottom: 25px;
}

@media (max-width: 1200px) {

    #not-found .image-not-found {
        width: 100%;
        margin: 35px auto;
    }
    
    #not-found h1 {
        font-weight: 300;
        font-size: 1.5rem;
        color: var(--primcol);
    }
    
    #not-found h2 {
        font-weight: 300;
        font-size: 1rem;
        color: var(--primcol);
    }

}


a.notfoundbtn {
    background: var(--primcol);
    color: var(--bgcol);
    padding: 10px 15px;
    border-radius: 5px;
    max-width: 225px;
    text-align: center;
}

.notfound h2 {
    max-width: 75%;
    font-family: 'Manrope';
    font-size: 1.5rem;
    font-weight: 400 !important;
    margin-bottom: 18px;
}

a.notfoundbtn:hover {
    background: var(--seccol);
    color: var(--bgcol) !important;
    transition: all 0.5s ease-in-out;
}


@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

pre {
    color: #ffffff !important;
}






.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
}

/*
Styling
*/

.tabset > label {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-size: 1.25rem;
}

.tabset > label:hover,
.tabset > input:focus + label {
    color: var(--seccol);
}


.tabset > input:checked + label {
    border-color: var(--seccol);
    margin-bottom: -1px;
    background: var(--seccol);
    color: #fff !important;
}

.tab-panel {
    padding: 30px 0;
}

.tab-panel .gallery-img a{
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    display: flex;
}

.tab-panel .gallery-img img{
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: auto;
}


/*------------------------------------- Ημερολόγιο --------------------------------------------------*/

.fullCalendar .fc-header-title h2 {
    color: var(--bgcol);
    font-family:  "Roboto Slab", serif;
    font-size: 2rem !important;
    font-weight: bold;
}

.fc-state-down, .fc-state-active, a.fc-state-down, a.fc-state-active {
    background-color: var(--seccol) !important;
}

.fc-button.fc-state-default {
    background-color: var(--seccol) !important;
}

th.fc-day-header {
    color: var(--seccol);
    font-size: 1rem !important;
}

.fc-day-number {
    color: var(--seccol);
    font-size: 1rem !important;
}

.fbd-dialog-controls .fbd-button-secondary, .fbd-dialog-controls .fbd-button-primary {
    background-color: var(--seccol) !important;
}

.fc-widget-header {
    color: var(--seccol) !important;
    font-size: 0.8rem !important;
}

.fc-event-list-content h4 .fc-event-list-title {
    color: var(--seccol) !important;
    font-size: 2rem !important;
}

.span6.fe-maincol {
    font-size: 1.2rem !important;
}

.fe-extrainfo-holder.fe-extrainfo-col2.span9 {
    font-size: 1.2rem !important;
    line-height: 2.5rem !important;
}

.fe-extrainfo-holder.fe-extrainfo-col2.span6 {
    font-size: 1.2rem !important;
    line-height: 2.5rem !important;
}

.fct-tooltip {
    background-color: #2b2a29 !important;
    box-shadow: -7px 8px 0px #2b2a29b8 !important;
    -moz-box-shadow: -7px 8px 0px #2b2a29b8 !important;
    -webkit-box-shadow: -7px 8px 0px #2b2a29b8 !important;
}

.fe-extrainfo-container, .fe-extrainfo-container2, .fe-extrainfo-container .fe-image-holder img {
    background-color: transparent !important;
}


.fc-event-vert .fc-event-time {
    font-size: 15px !important;
}


.fc-event-time, .fc-event-title {
    font-size: 18px !important;
}

.fc-grid .fc-event-time {
    font-weight: bold;
    display: flex;
    margin-bottom: 10px;
}

.fc-event-inner {
    padding: 10px 10px;
}

.rhcalendar a.fc-event, .entry .rhcalendar a.fc-event, .entry .entry-content .rhcalendar a {
    margin: 5px 0;
    border-radius: 5px;
}

.fullCalendar .fc-state-highlight, .fullCalendar table tr:hover td.fc-state-highlight {
    background: transparent !important;
}


/* * {
    border: 1px solid red;
} */


/* newsletter popup*/

#newsletterpop {
    padding: 0;
}

#nletterbtn{
    display: none;
}

#newsletterpop .modal-header {
    border: 0;
}

#newsletterpop .modal-content {
    background: unset;
    border: 0 !important;
    padding: 0 !important;
    width: 100%;
}

#newsletterpop .modal-body {
    padding: 0;
}

#newsletterpop .newsletter .sub-nletter {
    background: transparent !important;
    background-size: cover;
    background-position: center;
    min-height: 360px;
}

#newsletterpop .newsletter #undefined {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
}

#newsletterpop .newsletter #undefined > div {
    margin: 0 10px 0 0;
}

#newsletterpop .newsletter #undefined > div input {
    margin: 0 5px;
}

#newsletterpop .newsletter #undefined label {
    color: white;
    font-size: 15px;
}


/*  CSS ΗΜΕΡΟΛΟΓΙΟ */

.fc-header-cell.fc-header-right , .fullCalendar .fc-header-left .fc-button-today , 
  .fullCalendar .fc-header-left .fc-button-rhc_search {
    display: none !important;
  }

@media (max-width: 767px) {
  .fc-day-number {
    font-size: 30px !important;
    text-align: center;
    margin: 5px auto 5px auto;
    display: block;
    color: white !important;
  }
}

