:root {
  --colorBg: #f6f6f4;
  --colorFt: #0050e8;
  --colorTxt: rgb(18, 28, 35);
  --wrapperWidth: 1720px;
  --wrapperWidthSm: 1460px;
  --mobilePadding: 20px;
  --padding: 3rem;
  --radius: 15px;
}

@media screen and (max-width: 1320px) {
  :root {
    --padding: 2rem;
  }
}
@media screen and (max-width: 980px) {
  :root {
    --padding: 1.5rem;
  }
}
@media screen and (max-width: 620px) {
  :root {
    --padding: var(--mobilePadding);
  }
}
@media screen and (max-width: 620px) {
  :root {
    --mobilePadding: 12px;
  }
}

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;
  background-color: var(--colorBg);
  color: var(--colorTxt);
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}

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.sm {
  max-width: var(--wrapperWidthSm);
}

.wrapper.pr-0 {
  padding-right: 0;
}

@media screen and (max-width: 1200px) {
  .tab-pr-0 {
    padding-right: 0;
  }
}
@media screen and (max-width: 620px) {
  .mob-pr-0 {
    padding-right: 0;
  }
}

/* cards */

/* card general */

.card-wrapper > a {
  display: block;
  height: 100%;
}

.card {
  color: var(--colorBg);
  height: inherit;
  display: flex;
  flex-direction: column;
}

.card.row {
  flex-direction: row;
  background-color: transparent;
  color: var(--colorTxt);
}

.card.row.img-sm > div {
  flex-grow: 1;
}

.card.cover {
  position: relative;
}

@media screen and (max-width: 1060px) {
  .card.tab-bl {
    display: block;
  }
}
@media screen and (max-width: 1020px) {
  .card.tab-row {
    display: flex;
    flex-direction: row;
  }
}

/* card--image */

.card.row .card--image {
  width: 212px;
  height: 145px;
  flex-shrink: 0;
}
.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;
}

@media screen and (max-width: 1060px) {
  .card.tab-bl.row .card--image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1020px) {
  .card.tab-row .card--image {
    width: 180px;
  }
}
@media screen and (max-width: 620px) {
  .card.tab-row .card--image,
  .card.row .card--image {
    width: 150px;
    height: 150px;
  }
  .main-card .card--image {
    width: calc(100% + 2 * var(--padding));
    margin-left: calc(-1 * var(--padding));
  }
  .card.tab-bl.row .card--image {
    aspect-ratio: 1;
  }
}

/* card info general */
.card--info {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 31px 33px;
  width: calc(100% - 2rem);
  margin: -78px auto 0;
  background-color: var(--colorTxt);
  position: relative;
}

.main-card .card--info {
  margin-top: -2rem;
}

.card:has(.card--lead) .card--info {
  min-height: 330px;
}

.card--info > *:last-child {
  margin-bottom: 0 !important;
}
.card.row .card--info {
  padding: 0 0 0 19px;
  background-color: transparent;
  margin: 0;
}
.card.row.img-r .card--info {
  padding-inline: 0 1rem;
}

.card.cover .card--info {
  display: flex;
  position: absolute;
  left: 0;
  bottom: -50px;
  max-width: 872px;
}
.card.cover.center .card--info {
  align-items: center;
  justify-content: center;
}
.card.cover.bottom .card--info {
  justify-content: flex-end;
}

.simple .card--info {
  background-color: transparent;
  color: var(--colorTxt);
  margin: 26px 0 27px;
  width: 100%;
  padding: 0;
}

@media screen and (max-width: 1060px) {
  .card.tab-bl .card--info {
    padding-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1020px) {
  .card.tab-row .card--info {
    width: 50%;
    flex-grow: 1;
    margin-top: 0;
    background-color: transparent;
    color: var(--colorTxt);
  }
}
@media screen and (max-width: 620px) {
  .card.cover .card--info {
    position: relative;
    bottom: 0;
  }
  .main-card .card--info {
    margin: 0;
    background-color: transparent;
    color: var(--colorTxt);
    width: 100%;
    padding: 16px 0;
  }
}

/* card info category */

.card .category {
  order: -1;
  margin-bottom: 14px;
}

/* card info title */

.card .title {
  margin-bottom: 22px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
.card .title.lg {
  font-size: 30px;
  line-height: 35px;
}
.card .title.md {
  font-size: 22px;
  line-height: 22px;
}

.card:has(.card--info .card--lead) .title {
  margin-bottom: 14px;
}

@media screen and (max-width: 720px) {
  .card .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 380px) {
  .card .title {
    font-size: 18px;
  }
}

/* card info lead */

.card .card--lead {
  font-size: 17px;
  line-height: 20px;
}
.card .card--lead > p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

/* card details */

.card--details {
  font-size: 17px;
  align-items: center;
  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: 400;
}

.card--details .date {
  border: 1px solid;
  padding: 12px 13px 11px;
  margin-right: 22px;
}

.card:has(.card--lead) .card--details {
  margin-top: auto;
}

@media screen and (max-width: 405px) {
  .card--details {
    font-size: 15px;
  }
  .card--details .date {
    padding: 10px 8px;
    margin-right: 12px;
  }
}

/* grid */

.grid {
  --gridGap: 1.5rem;
  --columnWidth: calc(
    ((100% - (var(--columns) - 1) * (var(--gridGap))) / var(--columns))
  );
  display: grid;
  grid-template-columns: repeat(var(--columns), var(--columnWidth));
  grid-gap: var(--gridGap);
}

.grid.template-grid {
  --columns: 12 !important;
}
@media screen and (max-width: 1020px) {
  .grid {
    --columns: 3 !important;
  }
  .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;
  }
}

/* section grids */

.grid-wrapper {
  grid-auto-flow: column;
}

.grid-wrapper.fixed-left {
  display: grid;
  grid-template-columns: 404px 1fr;
}

.grid-wrapper.fixed-right {
  display: grid;
  grid-template-columns: 1fr 404px;
}

.fixed-left .section-grid {
  grid-column: 2/3;
}
.fixed-right .section-grid {
  grid-column: 1/2;
}

.section-grid.std {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  --gap: 36px;
}

.section-grid.std .main-card {
  padding-right: calc(var(--gap) / 2);
}
.main-card .comment-icon {
  filter: brightness(0) invert(1);
}

.section-grid.std .main-card .title {
  font-size: 30px;
}
.section-grid.std .column {
  padding-left: calc(var(--gap) / 2);
}
.section-grid.border .column {
  border-left: 1px solid var(--colorTxt);
}
.section-grid.border .column > div:not(:last-of-type) {
  border-bottom: 1px solid var(--colorTxt);
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.grid-wrapper .section-header {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}
.grid-wrapper.fixed-left .section-header h2 {
  grid-column: 2 / 3;
}
.grid-wrapper.fixed-right .section-header h2 {
  grid-column: 1 / 2;
}
.grid-wrapper.fixed-right aside {
  grid-column: 2 / 3;
}

.section-grid.cols .main-card {
  margin-bottom: 118px;
}
.section-grid.cols .main-card .card {
  height: 670px;
}
.section-grid.cols .main-card .card--image {
  height: inherit;
}
.section-grid.cols .main-card .title {
  font-size: 45px;
  line-height: 50px;
}
.section-grid.cols .column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 120px;
  position: relative;
}
.section-grid.cols .column-grid::after,
.section-grid.cols .column-grid::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  border-left: 1px solid var(--colorTxt);
  --borderPosition: 32%;
}

.section-grid.cols .column-grid::after {
  left: var(--borderPosition);
}
.section-grid.cols .column-grid::before {
  right: var(--borderPosition);
}
.section-grid.cols .column-grid > div {
  margin-bottom: 22px;
}
.section-grid.cols .column-grid > div {
  border-bottom: 1px solid var(--colorTxt);
}
.section-grid.cols .column-grid > div:nth-last-of-type(1),
.section-grid.cols .column-grid > div:nth-last-of-type(2),
.section-grid.cols .column-grid > div:nth-last-of-type(3) {
  border-bottom: none;
}

.section-grid aside.mob {
  display: none;
}

.inner-grid {
  flex-wrap: wrap;
}

.inner-grid .section-header {
  width: 100%;
}

.inner-grid .main-card {
  width: 43%;
}
.inner-grid .column {
  width: 57%;
  padding-left: 35px;
}

@media screen and (max-width: 1680px) {
  .section-grid.cols .column-grid {
    gap: 0 70px;
  }
}
@media screen and (max-width: 1520px) {
  .section-grid.cols .main-card .title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (max-width: 1420px) {
  .section-grid.cols .column-grid {
    gap: 0 50px;
  }
  .fixed-right .section-grid,
  .fixed-left .section-grid {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .fixed-right .section-grid.border .column,
  .fixed-left .section-grid.border .column {
    border: none;
    padding-right: calc(var(--gap) / 2);
  }
  .section-grid.std .main-card {
    padding-right: 0;
  }
}
@media screen and (max-width: 1220px) {
  .section-grid.cols .column-grid {
    gap: 0 2rem;
  }
}

@media screen and (max-width: 1060px) {
  .fixed-right > aside,
  .fixed-left > aside {
    display: none;
  }
  .fixed-right.grid-wrapper,
  .fixed-left.grid-wrapper {
    display: block;
  }
  .fixed-right.grid-wrapper .section-header,
  .fixed-left.grid-wrapper .section-header {
    display: block;
  }
  .section-grid .column {
    --gridGap: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 var(--gridGap);
  }
  .section-grid .column > div {
    flex: 0 0 calc((100% - var(--gridGap)) / 2);
    align-self: flex-start;
  }
  .section-grid.border .column > div:last-of-type {
    border-bottom: 1px solid var(--colorTxt);
    padding-bottom: 12px;
  }
  .section-grid.cols .main-card .title {
    font-size: 35px;
    line-height: 38px;
  }
}
@media screen and (max-width: 920px) {
  .section-grid.cols .column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 4rem;
  }
  .section-grid.cols .column-grid::after {
    display: none;
  }
  .section-grid.cols .column-grid::before {
    --borderPosition: 50%;
  }
  .section-grid.cols .column-grid > div:nth-last-of-type(3) {
    border-bottom: 1px solid var(--colorTxt);
  }
}
@media screen and (max-width: 780px) {
  .section-grid .column {
    --gridGap: 1.5rem;
  }
}
@media screen and (max-width: 720px) {
  .grid-wrapper.fixed-right {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 620px) {
  .section-grid.cols .column-grid::before {
    display: none;
  }
  .section-grid.cols .column-grid {
    gap: 0 2rem;
  }
  .section-grid aside.mob {
    display: block;
    grid-column: 1 / -1;
    grid-row: 3/4;
    margin-block: 30px 26px;
  }
  .section-grid .column {
    display: flex;
    --gridGap: 18px;
  }
  .fixed-right .section-grid.border .column,
  .fixed-right .section-grid .column,
  .fixed-left .section-grid .column {
    padding-inline: 0;
  }
  .section-grid .column > div:nth-child(1) {
    order: -3;
  }
  .section-grid .column > div:nth-child(2) {
    order: -2;
    margin-bottom: 0 !important;
  }
  .section-grid .column > aside {
    order: -1;
    margin: 34px auto;
  }
  .section-grid.cols .main-card .card {
    height: auto;
  }
  .section-grid.cols .main-card {
    margin-bottom: 38px;
  }
  .section-grid.cols .main-card .title {
    font-size: 30px;
    line-height: 1;
  }
}
@media screen and (max-width: 520px) {
  .section-grid.cols .column-grid {
    gap: 0 20px;
  }
}

/* section headers */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: 400;
}
.section-header h2 {
  font-size: 60px;
}
.section-header.sm h2 {
  font-size: 30px;
}
.section-header h2::after {
  content: "";
  background-color: #cc0000;
  width: 15px;
  height: 17px;
  margin-left: 10px;
  display: inline-block;
}

.section-header.empty h2::after {
  display: none;
}

.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: 1280px) {
  .section-header h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 920px) {
  .section-header h2 {
    font-size: 40px;
  }
}
/*  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;
}

.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: 40%;
}
.social ul li.tw {
  background-image: url(../assets/images/icons/tx.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.ml {
  background-image: url(../assets/images/icons/msg.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: 26px;
  height: 26px;
  background-image: url(../assets/images/icons/search.svg);
  background-size: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.article-share-above-footer {
  margin: 40px 0 20px;
}


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

/* ads */

aside:has(.box) {
  margin-bottom: 40px;
}

.box {
  background-color: #e6e6e6;
  padding: 8px 8px;
  max-width: 316px;
  position: sticky;
  top: 0;
  margin-inline: auto;
}

.box::before {
  content: "Advertisement";
  font-size: 14px;
  line-height: 28px;
}

.box.wide {
  max-width: 990px;
  margin-inline: auto;
}

.box-inner {
  /*background-color: #becc6d;
  height: 250px;*/
}
.wide .box-inner {
  min-height: 90px;
}
.long .box-inner {
  min-height: 600px;
}

.box:has(+ .box) {
  margin-bottom: 2rem;
  position: relative;
}

.box.mob {
  display: none;
}

@media screen and (max-width: 820px) {
  .box.wide {
    display: none;
  }
  .box.mob {
    display: block;
  }
}

/* comments */

.comments {
  align-items: center;
  gap: 5px;
  font-size: 17px;
}
.comment-icon {
  width: 22px;
  transform: translateY(3px);
}

@media screen and (max-width: 405px) {
  .comment-icon {
    width: 18px;
  }
}
