:root {
  --colorBg: #f9f7ef;
  --colorTxt: #000;
  --colorSec: #3f4046;
  --wrapperWidth: 1710px;
  --wrapperWidthMd: 1426px;
  --wrapperWidthLg: 1804px;
  --wrapperWidthSm: 1300px;
  --mobilePadding: 20px;
  --padding: 3rem;
}

@media screen and (max-width: 1480px) {
  :root {
    --padding: 2rem;
  }
}
@media screen and (max-width: 1180px) {
  :root {
    --padding: 1.5rem;
  }
}
@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: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--colorBg);
}

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;
}

.full-h {
  height: 100dvh;
}

.auto {
  margin-inline: auto;
}

.bg-img {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

div:has(> .bg-img) {
  position: relative;
}

/* wrappers */

.wrapper {
  max-width: var(--wrapperWidth);
  padding-inline: var(--padding);
  margin-inline: auto;
}

.wrapper.lg {
  max-width: var(--wrapperWidthLg);
}
.wrapper.md {
  max-width: var(--wrapperWidthMd);
}
.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;
  }
}

/* grid */

.grid {
  --gridGap: 30px;
  --columnWidth: calc(
    ((100% - (var(--columns) - 1) * (var(--gridGap))) / var(--columns))
  );
  display: grid;
  /* grid-template-columns: repeat(var(--columns), var(--columnWidth)); */
  grid-template-columns: repeat(var(--columns), 1fr);
  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;
  }
}

/* two column grid */

.two-col {
  align-items: center;
  gap: 82px;
}

.col-info {
  font-size: 30px;
  line-height: 34px;
  text-align: center;
  flex: 0 0 535px;
}

.col-info .more {
  margin-top: 37px;
}

.col-image {
  display: flex;
  gap: 50px;
}
.col-image > div {
  flex: 1;
  height: inherit;
}

@media screen and (max-width: 1280px) {
  .two-col {
    gap: 2rem;
  }
  .col-info,
  .col-image > div {
    flex: unset;
  }
}
@media screen and (max-width: 1180px) {
  .col-info .lead {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1080px) {
  .two-col {
    flex-direction: column;
  }
  .col-info .section-header h2 {
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 8px;
  }
}
@media screen and (max-width: 920px) {
  .col-info {
    font-size: 25px;
    line-height: 35px;
  }
  .col-info .more {
    margin-block: 24px 0;
  }
}

/* cards */

/* card general */

.card.row {
  display: flex;
}
.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: 31px;
  aspect-ratio: 1;
}
.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-left: 1rem;
}
.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: 0.5rem;
}

/* card info title */

.card .title {
  margin-bottom: 0.22px;
  font-size: 37px;
  line-height: 1;
  font-weight: 600;
}
.card .title.md {
  font-size: 30px;
}

.card .title span {
  display: block;
}

@media screen and (max-width: 920px) {
  .card .title {
    font-size: 30px;
  }
}

/* card info lead */

.card .lead > p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.card .date-info {
  font-size: 22px;
  line-height: 1;
  margin-top: 39px;
}
.card .date-info.md {
  font-size: 19px;
}

@media screen and (max-width: 920px) {
  .card .date-info {
    margin-top: 16px;
    font-size: 18px;
  }
}

/* card instrument */
.card .instrument {
  font-size: 22px;
  font-weight: 400;
  margin-top: 5px;
}

/* section headers */

.section-header {
  margin-bottom: 50px;
}
.section-header h2 {
  font-weight: 600;
  font-size: 55px;
  line-height: 1;
  text-align: center;
}
.section-header.lg h2 {
  font-size: 70px;
}
.section-header.xl h2 {
  font-size: 90px;
}
.section-header.lf h2 {
  text-align: left;
}
.section-header h2 span {
  display: block;
}
.section-header h3 {
  font-weight: 600;
  font-size: 45px;
  line-height: 1;
}

@media screen and (max-width: 1220px) {
  .section-header.lg h2 {
    font-size: 55px;
    line-height: 60px;
  }
}
@media screen and (max-width: 1420px) {
  .section-header.xl h2 {
    font-size: 70px;
    line-height: 80px;
  }
  .section-header h3 {
    font-size: 38px;
  }
}
@media screen and (max-width: 920px) {
  .section-header.xl h2 {
    font-size: 55px;
    line-height: 65px;
  }
  .section-header h3 {
    font-size: 30px;
    font-weight: 400;
  }
}
@media screen and (max-width: 620px) {
  .section-header.lg h2 {
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 8px;
  }
}
@media screen and (max-width: 620px) {
  .section-header.xl h2 {
    font-size: 42px;
    line-height: 50px;
  }
  .section-header h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 360px) {
  .section-header.xl h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .section-header h3 {
    font-size: 18px;
  }
}

/*  socials */

.social ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social li {
  width: 36px;
  height: 36px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 35px;
  filter: brightness(0) invert(1);
  /* 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: 46%;
}
.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);
  width: 50px;
}
.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.tx {
  background-image: url(../assets/images/icons/tx.svg);
}
.social ul li.ml {
  background-image: url(../assets/images/icons/send.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.wap {
  background-image: url(../assets/images/icons/wap.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: 28px;
  }
}
@media screen and (max-width: 620px) {
  .social ul li {
    width: 24px;
    height: 24px;
  }
  .social ul li.yt {
    width: 40px;
  }
}
@media screen and (max-width: 480px) {
  .social ul li {
    margin-right: 21px;
  }
}

/* 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%;
}

/* logo */

.logo {
  width: 140px;
  /* filter: brightness(0) invert(1); */
}

/* image divider */

.img-divider {
  height: 558px;
  position: relative;
}
.img-divider.lg {
  height: 674px;
}
.img-divider.sm {
  height: 516px;
}

.divider-title {
  position: absolute;
  left: 0;
  max-width: var(--wrapperWidth);
  padding: var(--padding);
  top: 50%;
  transform: translateY(-50%);
  font-size: 55px;
  letter-spacing: 11px;
  color: #fff;
}

.divider-title.tab {
  display: none;
}

@media screen and (max-width: 920px) {
  .img-divider.lg,
  .img-divider.sm,
  .img-divider {
    height: 350px;
  }
  .divider-title {
    font-size: 50px;
    letter-spacing: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .divider-title.tab {
    display: block;
  }
}
@media screen and (max-width: 620px) {
  .img-divider.lg,
  .img-divider.sm,
  .img-divider {
    height: 204px;
  }
  .divider-title {
    font-size: 40px;
    letter-spacing: 8px;
  }
}

/* more button */

.more {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 17px;
  background-color: #000;
  color: #fff;
  width: fit-content;
  margin-bottom: 27px;
}

/* hero */

.hero-title.lg {
  text-align: center;
  max-width: 1230px;
  font-size: 96px;
  font-weight: 200;
  letter-spacing: 19.2px;
  line-height: 1;
  bottom: 192px;
}

.hero-title {
  position: absolute;
  width: 100%;
  max-width: var(--wrapperWidth);
  bottom: 74px;
  padding-inline: var(--padding);
  font-size: 70px;
  line-height: 1;
  letter-spacing: 14px;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.hero-btn {
  padding: 10px 17px;
  border: 1px solid #fff;
  color: #fff;
  width: fit-content;
  margin-inline: auto;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
@media screen and (max-width: 1420px) {
  .hero-title {
    font-size: 60px;
    letter-spacing: 12px;
    bottom: 50px;
  }
  .hero-title.lg {
    font-size: 80px;
    letter-spacing: 15px;
  }
}
@media screen and (max-width: 1220px) {
  .hero-title.lg {
    font-size: 68px;
    line-height: 70px;
  }
}
@media screen and (max-width: 1020px) {
  .hero {
    height: auto;
    aspect-ratio: 16/9;
  }

  .hero-title {
    font-size: 50px;
    letter-spacing: 10px;
    bottom: 2rem;
  }
}
@media screen and (max-width: 980px) {
  .hero-title.lg {
    font-size: 55px;
    letter-spacing: 12px;
    line-height: 60px;
  }
}
@media screen and (max-width: 720px) {
  .hero {
    margin-bottom: 100px;
  }
  .hero-title {
    bottom: -70px;
    color: #000;
    text-align: center;
  }
  body:has(.page-about) .hero {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 620px) {
  .hero-title {
    font-size: 40px;
    letter-spacing: 8px;
  }
  .hero-title.lg {
    font-size: 43px;
    letter-spacing: 8.6px;
    line-height: 50px;
  }
  body:has(.single-grid) .hero {
    margin-bottom: 0;
  }
  body:has(.single-grid) .hero-title {
    display: none;
  }
  .hero-title.lg {
    bottom: 172px;
  }
  .hero-btn {
    bottom: 107px;
  }
}

@media screen and (max-width: 400px) {
  .hero-title.lg {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: 6px;
  }
}

/* swiper */

.swiper-button-prev:after,
.swiper-button-next:after {
  color: #000;
  font-weight: 700;
  background-color: var(--colorBg);
  z-index: 2;
}
