@charset "UTF-8";
/**
 * Breakpoints
 * =================================
 * There are no common breakpoints so these are just a suggestions
 * You'll need to define your own breakpoints to suit your design
 * Add your breakpoints to this Sass map
 * Used in the Kickoff grid
 */
/**
 * Grid
 * =================================
 * These variables will control the grid module.
 *
 * if your project doesnt use Kickoff’s default grid, you can delete these
 */
/**
 * Path variables
 * =================================
 */
/**
 * Z-index variables
 * =================================
 */
/**
 * App-specific variables
 * =================================
 */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.2;
  color: #000000;
  font-feature-settings: "liga", "dlig", "hist";
  font-variant-ligatures: common-ligatures discretionary-ligatures historical-ligatures;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smooth: always;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.1;
  text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
}

h1 {
  font-size: 5em;
}

h2 {
  font-size: 3em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.4em;
}

h6 {
  font-size: 1.2rem;
}

small {
  font-size: 80%;
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

blockquote {
  padding-left: 10px;
  border-left: 4px solid #cccccc;
}
blockquote p {
  margin-bottom: 0;
  font-size: ko-font-size(base);
  font-weight: 300;
}
blockquote small {
  display: block;
  color: #b3b3b3;
}
blockquote small::before {
  content: "— ";
}

q::before, q::after,
blockquote::before,
blockquote::after {
  content: "";
}

cite {
  font-style: normal;
}

dfn {
  font-style: italic;
}

mark {
  background: rgba(255, 236, 94, 0.7);
  padding: 2px 4px;
  border-radius: 3px;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

samp {
  font-family: Menlo, Monaco, "Courier New", monospace;
}

hr {
  margin: 19px 0;
  border: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}

.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.text-centre,
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 10%;
  z-index: 999;
  transition: 0.2s ease;
}
.navbar.scrolled {
  padding: 1em 10%;
  background-color: #151515;
}
.navbar.scrolled .navbar--home-btn {
  height: 7vh;
}
.navbar.always-scrolled {
  padding: 1em 10%;
  background-color: #151515;
}
.navbar.always-scrolled .navbar--home-btn {
  height: 7vh;
}
.navbar--home-btn {
  height: 8vh;
  aspect-ratio: 1;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}
.navbar--menu-btn {
  background-color: transparent;
  border-radius: 100%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  aspect-ratio: 1;
  height: 5vh;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  z-index: 1000;
}
.navbar--menu-btn:hover {
  border: solid 2px white;
}
.navbar--menu-btn:hover .burger {
  opacity: 1;
}
.navbar--menu-btn svg {
  height: 2vh;
  opacity: 0.8;
}
.navbar--menu {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  visibility: hidden;
  background-color: #151515;
  transform: translateX(-100%);
  transition: 0.3s ease-out;
  padding: 0 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar--menu[data-expanded=true] {
  visibility: visible;
  transform: translateX(0);
}

.burger--cross-01 {
  opacity: 0;
}
.burger--cross-02 {
  opacity: 0;
}

.burger--top,
.burger--middle,
.burger--cross-01,
.burger--cross-02,
.burger--bottom {
  transition: 0.2s;
  transform-origin: center;
}

.navbar--menu-btn[data-expanded=true] .burger--top {
  transform: translateY(5.75px);
  opacity: 0;
}
.navbar--menu-btn[data-expanded=true] .burger--bottom {
  transform: translateY(-5.75px);
  opacity: 0;
}
.navbar--menu-btn[data-expanded=true] .burger--middle {
  opacity: 0;
}
.navbar--menu-btn[data-expanded=true] .burger--cross-01 {
  opacity: 1;
  transform: rotate(45deg);
}
.navbar--menu-btn[data-expanded=true] .burger--cross-02 {
  opacity: 1;
  transform: rotate(-45deg);
}

.menu--list {
  font-size: 10vw;
  text-align: center;
  font-weight: 900;
}
.menu--list a {
  text-decoration: none;
  color: #ffffff;
}

.menu--list-item {
  margin-top: 0.3em;
  opacity: 0;
  transform: translateX(-200%);
  transition: 0.5s ease;
}

.menu--list-item:first-child {
  margin: 0;
}

.menu--list-item[data-expanded=true] {
  opacity: 1;
  transform: translateX(0%);
}

.menu--list-item:nth-child(2) {
  transition-delay: 0.1s;
}

.menu--list-item:nth-child(3) {
  transition-delay: 0.2s;
}

.menu--list-item:nth-child(4) {
  transition-delay: 0.3s;
}

body.scroll-lock {
  overflow-y: hidden;
}

@media (orientation: landscape) {
  .navbar.scrolled .navbar--home-btn {
    height: 9vh;
  }
  .navbar--menu {
    justify-content: flex-start;
  }
  .menu--list {
    font-size: 10vh;
    text-align: start;
  }
  .menu--list-item {
    margin-top: 0;
  }
  .navbar--home-btn {
    height: 12vh;
  }
}
.footer {
  color: #ffffff;
  width: 100vw;
}
.footer--logo {
  width: 60vw;
  margin-bottom: 1.5em;
}
.footer--logo img {
  width: 100%;
  height: auto;
}
.footer--top {
  background-color: #1e1e1e;
  padding: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.footer--top a {
  color: inherit;
  text-decoration: none;
}
.footer--bottom {
  background-color: #121212;
  padding: 1em;
  text-align: center;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  font-size: 14px;
  color: #9b9b9b;
}

.footer--navlist {
  position: relative;
  padding-bottom: 1em;
  width: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1em;
}
.footer--navlist span {
  font-size: 18px;
  font-weight: bold;
}
.footer--navlist a {
  font-size: 16px;
  color: #dedede;
}

.footer--ads-container {
  width: 100%;
  display: grid;
  grid-template-columns: calc(50% - 0.5em) calc(50% - 0.5em);
  gap: 1em;
}
.footer--ads-container img {
  width: 100%;
  height: auto;
}

@media (orientation: landscape) {
  .footer--policies {
    margin: 0 0 0 1em;
  }
  .footer--top {
    flex-direction: row;
    padding: 2em 20%;
  }
  .footer--logo {
    height: 10vh;
    width: auto;
    margin: 0 2em 0 0;
  }
  .footer--logo img {
    height: 100%;
    width: auto;
  }
  .footer--navlist {
    padding: 0;
    padding-right: 1em;
  }
  .footer--bottom {
    padding: 2em 0;
  }
  .footer--ads-container {
    width: 60%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background-color: rgba(75, 75, 75, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
}
.loading-screen .spinner--container {
  --uib-size: 40px;
  --uib-color: #ffffff;
  --uib-speed: 0.8s;
  --uib-bg-opacity: 0.1;
  height: var(--uib-size);
  width: var(--uib-size);
  transform-origin: center;
  animation: rotate var(--uib-speed) linear infinite;
  will-change: transform;
  overflow: visible;
}
.loading-screen .spinner--car {
  fill: none;
  stroke: var(--uib-color);
  stroke-dasharray: 25, 75;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transition: stroke 0.5s ease;
}
.loading-screen .spinner--track {
  fill: none;
  stroke: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  transition: stroke 0.5s ease;
}
.loading-screen.hidden {
  visibility: hidden;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.hero {
  min-height: 55vh;
  background: url("../img/images/ekdiloseis/bg.webp") center no-repeat;
  background-size: cover;
  box-shadow: inset 0px -1em 0px -0.5em rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 12vw;
  font-weight: 800;
  color: #ffffff;
}

.events--filter {
  background-color: #ffffff;
  width: 100%;
  padding: 0 1.5em;
}
.events--filter--list-item {
  display: inline-block;
  margin-left: 1em;
  padding: 1em 0;
  cursor: pointer;
}
.events--filter--list-item:hover {
  color: #367ca6;
}
.events--filter--list-item:first-child {
  margin: 0;
}

.events--filter--list-item.active {
  color: #367ca6;
  box-shadow: inset 0px -1em 0px -0.8em #367ca6;
}

.events-container {
  width: 100%;
  padding: 1.5em;
  background-color: #f3f3f3;
  max-height: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 2em;
  position: relative;
}

.event {
  background-color: #ffffff;
  max-height: fit-content;
  display: flex;
  flex-direction: column;
}
.event--body {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 0.5em 1em;
  padding-bottom: 1em;
}
.event--body-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.event--banner {
  width: 100%;
}
.event--title {
  font-weight: 600;
  font-size: 26px;
}
.event--subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 1em;
}
.event--description {
  margin-bottom: 1em;
}
.event--btn {
  justify-self: flex-end;
  margin-top: 1em;
}
.event.hidden {
  display: none;
}

.event-02-mobile,
.event-03-mobile,
.event-06-mobile,
.event-10-mobile {
  text-decoration: none;
  color: inherit;
}

.event-02-full,
.event-03-full,
.event-06-full,
.event-10-full {
  display: none;
}

@media (orientation: portrait) and (min-width: 700px) {
  .events-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (orientation: landscape) {
  .event-02-full,
  .event-03-full,
  .event-06-full,
  .event-10-full {
    display: block;
  }
  .event-02-mobile,
  .event-03-mobile,
  .event-06-mobile,
  .event-10-mobile {
    display: none;
  }
  .hero h1 {
    font-size: 6vw;
  }
  .events-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (orientation: landscape) and (min-width: 1024px) {
  .events-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (orientation: landscape) and (min-width: 1280px) {
  .events-container {
    padding: 2.5em 15%;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .events--filter {
    padding: 0 15%;
  }
}
@media (orientation: landscape) and (min-width: 1500px) {
  .hero img {
    height: 6em;
    width: auto;
  }
}
body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.home--hero {
  min-height: 100vh;
  background: url(../img/images/archiki/hero-bg.webp) no-repeat bottom;
  background-size: cover;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.home--hero h1 {
  font-size: 15vw;
  font-weight: 800;
}

.spikes {
  position: relative;
  background: #387da7;
}

.spikes::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0%;
  top: 100%;
  z-index: 10;
  display: block;
  height: 50px;
  background-size: 50px 100%;
  background-image: linear-gradient(135deg, #387da7 24%, transparent 25%), linear-gradient(225deg, #387da7 24%, transparent 25%);
  background-position: 0 0;
}

.home--melina-kana {
  background-color: #e7e6e1;
  padding: 1.5em;
  padding-top: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5em;
}
.home--melina-kana img {
  width: 100%;
}

.melina-kana-desktop {
  display: none;
}

.custom-shape-divider-top-1720110037 {
  background-color: #f3f3f3;
}

.custom-shape-divider-top-1720110037 .shape-fill {
  fill: #e7e6e1;
}

.home--events {
  padding: 2em 1.5em;
  padding-top: calc(2.5em + 7.5px);
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5em;
}
.home--events h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.home--events h3::after {
  content: "";
  position: absolute;
  top: -0.5em;
  left: 50%;
  height: 5px;
  transform: translate(-50%, -50%);
  width: 1em;
  background-color: #367ca6;
}

.cards--container {
  width: 100%;
  background-color: #f3f3f3;
  max-height: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 2em;
  position: relative;
}

.home--tickets {
  padding: 2em 1.5em;
  padding-top: 1em;
  padding-top: calc(2.5em + 7.5px);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}
.home--tickets h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.home--tickets h3::after {
  content: "";
  position: absolute;
  top: -0.5em;
  left: 50%;
  height: 5px;
  transform: translate(-50%, -50%);
  width: 1em;
  background-color: #367ca6;
}

.home--social-media {
  background-color: #ffffff;
  padding: 1.5em;
  padding-top: 0;
}

.home--social-media--container {
  background: #367ca6;
  background: linear-gradient(155deg, #367ca6 0%, #367ca6 calc(30% - 1px), #255573 30%, #255573 70%, #367ca6 calc(70% + 2px), #367ca6 100%);
  padding: 1em;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
.home--social-media--container img {
  height: 1.5em;
}

@media (orientation: landscape) {
  .home--hero h1 {
    font-size: 8em;
  }
  .home--hero h2 {
    font-size: 2.5em;
  }
  .home--events,
  .home--social-media,
  .home--melina-kana {
    padding-left: 15%;
    padding-right: 15%;
  }
  .home--melina-kana {
    align-items: flex-end;
  }
  .cards--container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .melina-kana-desktop {
    display: block;
  }
  .melina-kana-mobile {
    display: none;
  }
  .custom-shape-divider-top-1720110037 {
    height: 10vh;
  }
  .custom-shape-divider-top-1720110037 svg {
    width: 100%;
    height: 100%;
  }
}
.epikoinonia--container {
  background: url("../img/images/epikoinonia/bg.webp") no-repeat center;
  background-size: cover;
  padding: 150px 0;
  padding-bottom: 0;
}

.epikoinonia--title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  color: #ffffff;
  text-align: center;
}
.epikoinonia--title h1 {
  font-size: 1em;
  font-weight: 600;
  padding: 0.5em;
  border-radius: 10px;
  border: 2px solid #ffffff;
}
.epikoinonia--title h2 {
  font-size: 2.6em;
}

.epikoinonia--cards-container {
  padding: 1.5em;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 1.5em;
}

.epikoinonia--card {
  color: #000000;
  padding: 1em;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  color: #0c1d27;
}
.epikoinonia--card img {
  border-radius: calc(1em - 10px);
}
.epikoinonia--card h3 {
  font-weight: 700;
  margin-top: 0.5em;
}
.epikoinonia--card a {
  color: inherit;
  text-decoration: none;
}

.epikoinonia--card-divider {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  margin: 1em 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.epikoinonia--card-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.5em;
}

.epikoinonia--card-btn {
  width: 100%;
  text-align: center;
  margin-top: 1em;
  padding: 0.7em 0;
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: 600;
  border-radius: 3px;
}

iframe {
  background-color: #ffffff;
  padding-top: 1em;
  width: 100%;
}

@media (orientation: landscape) {
  .epikoinonia--cards-container {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5em 10%;
  }
}
.metafores--title {
  min-height: 55vh;
  background: url("../img/images/metafores/bg.webp") center no-repeat;
  background-size: cover;
  box-shadow: inset 0px -1em 0px -0.5em rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.5em;
}
.metafores--title h1 {
  font-size: 12vw;
  font-weight: 800;
  color: #ffffff;
}

.metafores--main {
  background-color: #fbfbfb;
  padding: 1.5em;
}
.metafores--main h3 {
  margin-bottom: 0.5em;
  color: #173446;
}

.metafores--description {
  padding-bottom: 0.5em;
}

@media (orientation: landscape) {
  .metafores--title {
    padding: 1.5em 10%;
    padding-top: 5em;
  }
  .metafores--title h1 {
    font-size: 6vw;
  }
  .metafores--main {
    padding: 1.5em 10%;
  }
}
.card {
  background-color: #ffffff;
  max-height: fit-content;
  display: flex;
  flex-direction: column;
}
.card--body {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 0.5em 1em;
  padding-bottom: 1em;
}
.card--body--container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.card--banner {
  width: 100%;
}
.card--title {
  font-weight: 600;
  font-size: 26px;
}
.card--subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 1em;
}
.card--description {
  margin-bottom: 1em;
}
.card--btn {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  text-decoration: underline;
  color: inherit;
  font-size: 16px;
}
.card.hidden {
  display: none;
}

.btn-blue {
  color: #ffffff;
  font-size: 18px;
  font-weight: 550;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #367ca6;
  border-radius: 3px;
  transition: all 150ms ease;
}
.btn-blue:hover {
  background-color: #255573;
}

.fancy-text {
  position: relative;
  white-space: nowrap;
}
.fancy-text:after {
  --deco-height: 0.3125em;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--deco-height) * -1);
  height: var(--deco-height);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%23ffffff' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: auto 100%;
  background-repeat: round;
  background-position: 0em;
}