:root {
  --colorBg: #000;
  --colorFt: #f8f5f0;
  --wrapperWidth: 1840px;
  --wrapperWidthSm: 1218px;
  --wrapperWidthMd: 1614px;
  --mobilePadding: 24px;
  --padding: 2rem;
}

@media screen and (max-width: 1480px) {
  :root {
    --padding: 3rem;
  }
}
@media screen and (max-width: 1180px) {
  :root {
    --padding: 2rem;
  }
}
@media screen and (max-width: 620px) {
  :root {
    --padding: var(--mobilePadding);
  }
}

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
blockquote,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  position: relative;
  font-weight: 400;
  max-width: 2500px;
  margin: 0 auto;
  font-family: "Source Serif 4", serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

ul.flex > li:last-of-type {
  margin-right: 0 !important;
}
ul.flex.col > li:last-of-type {
  margin-bottom: 0 !important;
}
ul.flex.border > li:last-of-type {
  border-right: 0 !important;
}
ul.flex.col.border > li:last-of-type {
  border-bottom: 0 !important;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}

address {
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}
[style*="--aspect-ratio"] > img {
  height: auto;
}
@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

/*  containers */

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.flex.centered {
  justify-content: center;
  align-items: center;
}

/*  general */

/*  κλείδωμα του scroll στο background
    σε περίπτωση που έχουμε ένα στοιχείο
    που καλύπτει όλη την οθόνη */
.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

/*  κεντράρισμα εικόνας*/
.img-center {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/*  κρύψιμο οριζόντιας μπάρας κύλισης*/
.scrollbar-hide {
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.pntr {
  cursor: pointer;
}

/* wrappers */

.wrapper {
  max-width: var(--wrapperWidth);
  padding-inline: var(--padding);
  margin-inline: auto;
}
.wrapper.md {
  max-width: var(--wrapperWidthMd);
}
.wrapper.sm {
  max-width: var(--wrapperWidthSm);
}

.wrapper.pr-0 {
  padding-right: 0;
}

@media screen and (max-width: 900px) {
  .tab-pr-0 {
    padding-right: 0;
  }
}
@media screen and (max-width: 620px) {
  .mob-pr-0 {
    padding-right: 0;
  }
}

/* grid */

.grid {
  /* --gridGap: 1.5rem; */
  /* --columnWidth: calc(
    ((100% - (var(--columns) - 1) * (var(--gridGap))) / var(--columns))
  ); */
  display: grid;
  grid-template-columns: repeat(var(--columns, 4), 1fr);
  grid-gap: var(--gridGap, 36px);
}

.grid.template-grid {
  --columns: 12 !important;
}
@media screen and (max-width: 1120px) {
  .grid {
    --columns: 2;
  }
  .grid.tab-4 {
    --columns: 4 !important;
  }
  .grid.tab-2 {
    --columns: 2 !important;
  }
}

@media screen and (max-width: 620px) {
  .grid {
    --gridGap: 1rem;
  }
  .grid,
  .grid.mob-1 {
    --columns: 1 !important;
  }
  .grid.mob-2 {
    --columns: 2 !important;
  }
}

.grid > div {
  position: relative;
}
.grid > div:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 0;
  border-right: 1px solid #000;
  height: 100%;
}

/* cards */

/* card general */

.card.row {
  display: flex;
}
.card.row.reverse {
  flex-direction: row-reverse;
}
.card.row > div {
  width: 50%;
}
.card.row.img-sm > div {
  flex-grow: 1;
}

.card.cover {
  display: grid;
}
.card.cover > div {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

/* card-image */

.card-image {
  margin-bottom: 18px;
  aspect-ratio: 1.64;
}
.card.row .card-image {
  margin-bottom: 0;
  height: fit-content;
}
.card.row.img-r .card-image {
  order: 2;
}
.card.row.img-sm .card-image {
  width: 120px;
  flex-grow: 0;
}
.card.cover .card-image {
  z-index: -1;
  margin-bottom: 0;
}

/* card info general */
.card-info {
  display: flex;
  flex-direction: column;
}

.card-info > *:last-child {
  margin-bottom: 0 !important;
}
.card.row .card-info {
  padding-inline: 57px 0;
}
.card.row.reverse .card-info {
  padding-inline: 0 57px;
}
.card.row.img-r .card-info {
  padding-inline: 0 1rem;
}

.card.cover .card-info {
  display: flex;
}
.card.cover.center .card-info {
  align-items: center;
  justify-content: center;
}
.card.cover.bottom .card-info {
  justify-content: flex-end;
}

/* card info category */

.card .category {
  order: -1;
  margin-bottom: 3px;
  color: #dd504c;
  font-size: 16px;
}

/* card info title */

.card .title {
  margin-bottom: 0.5rem;
  font-size: 22px;
  line-height: 23px;
  font-weight: 700;
}

/* card info lead */

.card .lead {
  font-size: 18px;
  line-height: 22px;
}

.card .lead > p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

/* author card */

.author-image {
  width: 101px;
  aspect-ratio: 1;
  border: 2px solid #000;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.card:has(.author) .title {
  margin-bottom: 1rem;
  max-width: 400px;
  margin-inline: auto;
}

.card .author {
  color: #ef4244;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.56px;
  margin-top: 1rem;
  font-weight: 700;
}

/* section headers */

.section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 57px;
}
.section-header h2 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
}

.section-header.multi-line {
  flex-wrap: wrap;
  border-bottom: none;
  justify-content: space-between;
  align-items: center;
}

.section-header.multi-line > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header.multi-line > .top-row {
  margin-bottom: 0.5rem;
}
.section-header.multi-line > .top-row.border {
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 620px) {
  .section-header {
    margin-bottom: 33px;
  }
}

/*  socials */

.social ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social li {
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 40px;
  background-size: 50%;
}

.social.border li {
  border: 1px solid #000;
}
.social.border.rnd li {
  border-radius: 50%;
}
.social.white li {
  filter: invert(1);
}

.social.round li {
  background-color: #fff;
  border-radius: 50%;
}

.social ul li:last-of-type {
  margin-right: 0;
}
.social ul li.pin {
  background-image: url(../assets/images/icons/pin.svg);
}
.social ul li.fb {
  background-image: url(../assets/images/icons/fb.svg);
  background-size: 25%;
}
.social ul li.tw {
  background-image: url(../assets/images/icons/tw.svg);
  /* background-size:5px 10px; */
}
.social ul li.yt {
  background-image: url(../assets/images/icons/yt.svg);
}
.social ul li.ig {
  background-image: url(../assets/images/icons/ig.svg);
}
.social ul li.ln {
  background-image: url(../assets/images/icons/ln.svg);
}
.social ul li.tt {
  background-image: url(../assets/images/icons/tt.svg);
}
.social ul li.sf {
  background-image: url(../assets/images/icons/sf.svg);
}
.social ul li.ap {
  background-image: url(../assets/images/icons/ap.svg);
}
.social ul li.rss {
  background-image: url(../assets/images/icons/rss.svg);
  /* background-size:20px 20px; */
}
.social ul li.wup {
  background-image: url(../assets/images/icons/wup.svg);
  background-size: contain;
  background-color: transparent;
  border-radius: 0;
}

.social ul li.lg {
  width: 2.25rem;
  height: 1.85rem;
  margin-right: 3rem;
}

.social ul li > a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.social.md ul li {
  width: 36px;
  height: 36px;
  margin-right: 32px;
}

.social.md ul li.fb {
  background-image: url(../images/icons/fb.svg);
  background-size: 10px 20px;
}
.social.md ul li.tw {
  background-image: url(../images/icons/tw.svg);
  background-size: 19px 15px;
}

.darkmode .social ul li {
  filter: invert(1);
}

@media screen and (max-width: 680px) {
  .social ul li {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 620px) {
  .social ul li {
    width: 40px;
    height: 40px;
  }
  .social ul li.fb {
    background-size: 8px 18px;
  }
  .social ul li.tw {
    background-size: 18px 14px;
  }
  .social ul li.rss {
    background-size: 14px 14px;
  }
}
@media screen and (max-width: 480px) {
  .social ul li {
    margin-right: 26px;
  }
}

/* search */
.search-header-wrapper {
  position: relative;
}
.search-icon {
  width: 1rem;
  height: 1rem;
  background-image: url(../assets/images/icons/search.svg);
  background-size: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.search-icon.white {
  filter: invert(1);
}
.search-inner-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: 0;
  position: absolute;
  background-color: #000;
  transition: width 0.3s;
}
.search-form {
  width: 200px;
  display: flex;
  align-items: center;
}
.search-inner-wrapper.on {
  width: 200px;
}

.search-form input {
  background: transparent;
  color: #fff;
  /* border-bottom: 1px solid #fff; */
}

.search-close.btn-container {
  width: 25px;
  height: 25px;
}
.search-close .line {
  transform-origin: center;
  top: 50% !important;
}
.search-close .line:first-of-type {
  transform: rotate(-45deg);
}
.search-close .line:last-of-type {
  transform: rotate(45deg);
}

/* main header and menus */

.fixed-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-block: 1rem;
  background-color: var(--colorBg);
  z-index: 100;
}

/* buttons */

.btn-container {
  width: 3rem;
  height: 2rem;
  padding: 0.5rem;
}

.btn-container > div {
  height: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.btn-container .line {
  width: 100%;
  border-top: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 50%;
}

.btn-container .line:first-of-type {
  top: 0;
}
.btn-container .line:last-of-type {
  top: 100%;
}

/* swiper */

.homeSwiper .swiper-pagination {
  bottom: 0;
}
.homeSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e6e6e6;
  opacity: 1;
}

.homeSwiper .swiper-pagination-bullet-active {
  background-color: #000;
}

@media screen and (max-width: 900px) {
  .homeSwiper .grid.swiper-wrapper {
    display: flex;
    gap: 0;
  }
  .homeSwiper .swiper-slide {
    width: 60vw;
  }
  .homeSwiper .grid > div:not(:last-of-type)::after {
    right: -13px;
  }
  .homeSwiper {
    padding-bottom: 50px;
    /* border-bottom: 1px solid #000; */
  }
}
@media screen and (max-width: 580px) {
  .homeSwiper .swiper-slide {
    width: 67vw;
  }
}


.events-container .event {
  display: none;
}

.events-container .event.active {
  display: block;
}


.date-box {
  position: relative;
}

/* ημερομηνία */
.date-box > .day-number {
  position: relative;
  z-index: 2;
}

/* event block */
.date-box.has-event::after {
  content: attr(data-title);
  position: absolute;
  left: 6px;
  right: 6px;
  top: 28px;              /* ΚΑΤΩ από τον αριθμό */
  bottom: 6px;            /* ΜΕΧΡΙ ΤΕΛΟΣ ΚΕΛΙΟΥ */

  background: #e53935;
  color: #fff;
  border-radius: 5px;

  font-size: 12px;
  line-height: 14px;
  padding: 6px;

  overflow: hidden;
  cursor: pointer;
}

.calendar .event-indicator {
  background-color: #ef4244;
  border-radius: 5px;
  font-size: 12px;
  line-height: 14px;
  padding: 4px 6px;
  margin-top: 6px;
  color: #fff;
}
.page-template-page-landing footer,
.page-template-page-landing .main-footer {
    display: none;
}


@media (max-width: 900px){
  .homeOpinionSwiper .card-wrapper{
    width: 100%!important;
  }
}