@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap&subset=greek");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap&subset=greek");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap&subset=greek");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap&subset=greek");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap&subset=greek");
* {
  box-sizing: border-box;
}

nav {
  min-height: 80px;
  background-color: white;
  color: #0D0D0D;
  z-index: 10;
  grid-area: nav;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #F28B0C;
  display: grid;
  grid-template-areas: "logo checkbox";
  grid-template-columns: 1fr auto;
  overflow: visible;
}
nav .logo-icon {
  grid-area: logo;
  width: 70px;
}
nav .menu {
  width: 100%;
  position: absolute;
  top: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  list-style-type: none;
  padding: 0;
  background-color: white;
  overflow: visible;
}
nav .menu .menu-item {
  margin: 0;
  padding: 5px;
  width: 100%;
  color: #0D0D0D;
  border: 1px solid #F2F2F2;
}
nav .menu .menu-item a {
  text-decoration: none;
  display: block;
  color: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .menu .menu-item:hover {
  background-color: #F2B366;
  color: white;
  text-decoration: underline;
}
nav .menu .menu-item:active {
  background-color: #F28B0C;
  color: white;
  text-decoration: underline;
}
nav .social-wrapper {
  width: 100%;
  list-style-type: none;
}
nav .social-wrapper .social {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 5px;
  border-bottom: 1px solid #F28B0C;
  list-style-type: none;
  margin: 0;
  gap: 25px;
}
nav .social-wrapper .social img {
  width: 20px;
  height: 20px;
  list-style-type: none;
}

nav .menu {
  display: none;
}
nav .social {
  display: none;
}
nav .visuallyHidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
nav .hamburger {
  float: right;
  cursor: pointer;
  margin: 25px 20px 0;
  width: 30px;
  height: 30px;
  position: relative;
}
nav .hamburger .bar {
  padding: 0;
  width: 30px;
  height: 4px;
  background-color: #F2B366;
  display: block;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  position: absolute;
}
nav .bar1 {
  top: 0;
}
nav .bar2,
nav .bar3 {
  top: 13.5px;
}
nav .bar3 {
  right: 0;
}
nav .bar4 {
  bottom: 0;
}
nav #checkbox1 {
  float: right;
}
nav #checkbox1:checked ~ .menu {
  display: flex;
}
nav #checkbox1:checked ~ .social {
  display: flex;
}
nav #checkbox1:checked + label > .hamburger1 > .bar1 {
  transform: translateX(40px);
  background-color: transparent;
}
nav #checkbox1:checked + label > .hamburger1 > .bar2 {
  transform: rotate(45deg);
}
nav #checkbox1:checked + label > .hamburger1 > .bar3 {
  transform: rotate(-45deg);
}
nav #checkbox1:checked + label > .hamburger1 > .bar4 {
  transform: translateX(-40px);
  background-color: transparent;
}

@media screen and (min-width: 768px) { /*laptop*/
  nav {
    min-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
  }
  nav .hamburger {
    display: none;
  }
  nav .logo {
    width: 8%;
  }
  nav .logo-icon {
    width: 90px;
  }
  nav .menu {
    position: static;
    display: flex;
    flex-direction: row;
    height: 100%;
  }
  nav .menu .menu-item {
    width: 100%;
    height: 100%;
    border: none;
  }
  nav .menu .menu-item a {
    text-align: center;
  }
  nav .social-wrapper {
    position: static;
    width: auto;
  }
  nav .social-wrapper .social {
    position: static;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: unset;
    gap: clamp(10px, 2vw, 30px);
  }
  nav .social-wrapper .social .social-icon a img {
    width: 25px;
    height: 25px;
  }
  nav .social-wrapper .social {
    width: auto;
  }
}
body.home header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../images/office.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-area: header;
  color: white;
  display: grid;
  align-items: center;
}
body.home header .header-content {
  float: left;
  min-width: 275px;
  width: 50%;
  margin: 50px;
  display: grid;
  grid-template-areas: "logo slogan1" "logo slogan2";
  grid-template-columns: 1fr 5fr;
}
body.home header .header-content img {
  width: 150px;
  height: 150px;
  grid-area: logo;
}
body.home header .header-content .quote {
  max-width: 200px;
  height: auto;
  font-size: 20px;
  font-weight: bold;
  color: black;
}
body.home header .header-content .quote span {
  color: white;
}
body.home header .header-content .quote:first-of-type {
  grid-area: slogan1;
  align-self: center;
  background-color: #F28B0C;
  margin: 5px;
}
body.home header .header-content .quote:nth-child(2) {
  grid-area: slogan2;
  align-self: center;
  background-color: #F28B0C;
  margin: 5px;
}

body.about header {
  grid-area: header;
  width: 100%;
}
body.about header .about-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body.about header .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}

body.services header {
  grid-area: header;
  width: 100%;
}
body.services header img {
  width: 100%;
  height: 100%;
  -o-object-position: cover;
     object-position: cover;
}

body.counseling header {
  grid-area: header;
  width: 100%;
}
body.counseling header .counseling-header-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
body.counseling header .counseling-header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}

body.odigos header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../images/office-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-area: header;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.odigos header .odigos-header-image {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  padding: 20px;
}
body.odigos header .odigos-header-image img {
  background-color: white;
  width: 100%;
}

@media screen and (min-width: 768px) {
  body.home header .header-content {
    margin: 150px;
  }
  body.home header .header-content img {
    width: 250px;
    height: 250px;
  }
  body.home header .header-content .quote {
    font-size: 30px;
    max-width: 300px;
    min-height: 100px;
    height: 50%;
    align-content: center;
    text-align: center;
  }
  body.about header .about-image {
    height: 600px;
  }
  body.about header .about-image img {
    height: 100%;
    -o-object-position: 50% 25%;
       object-position: 50% 25%;
  }
  body.services header .header-image {
    height: 600px;
  }
  body.services header .header-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 10% 20%;
       object-position: 10% 20%;
  }
  body.counseling header .counseling-header-image {
    width: 100%;
    height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 20%;
       object-position: 50% 20%;
  }
  body.odigos header {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    margin: auto;
  }
  body.odigos header .odigos-header-image {
    max-width: 400px;
    height: 500px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
body.home main {
  grid-area: main;
  display: grid;
  grid-template-areas: "intro" "carrer-advice" "other-services" "latest-news";
  grid-template-rows: auto auto auto auto;
}
body.home main .intro {
  background-color: black;
  grid-area: intro;
}
body.home main .intro .intro-content {
  clip-path: polygon(0% 100%, 85% 100%, 100% 90%, 100% 0%, 0% 0%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(13, 13, 13, 0), rgba(13, 13, 13, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
}
body.home main .intro .intro-content .intro-title {
  margin: 30px 0;
  font-size: 20px;
  font-weight: 700;
}
body.home main .intro .intro-content .intro-text {
  margin: 20px 20px;
  max-width: 600px;
}
body.home main .intro .intro-content .intro-quote {
  margin: 10px 20px;
  font-style: italic;
  font-weight: 600;
}
body.home main .intro .intro-content .intro-button {
  margin-top: 20px;
  padding-bottom: 50px;
}
body.home main .intro .intro-content .intro-button a {
  display: block;
  text-decoration: none;
  color: #0D0D0D;
  font-weight: bold;
  min-width: 300px;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  background-color: darkcyan;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
body.home main .intro .intro-content .intro-button a:hover {
  background-color: rgb(0, 113.5, 113.5);
  color: #F2F2F2;
  transform: scale(1.05);
}
body.home main .carrer-advice {
  margin: 0;
  padding: 50px 0;
  grid-area: carrer-advice;
  display: grid;
  grid-template-areas: "title" "pupils" "students" "adults" "parents";
  justify-items: center;
}
body.home main .carrer-advice .title {
  grid-area: title;
}
body.home main .carrer-advice .pupils {
  grid-area: pupils;
}
body.home main .carrer-advice .students {
  grid-area: students;
}
body.home main .carrer-advice .adults {
  grid-area: adults;
}
body.home main .carrer-advice .parents {
  grid-area: parents;
}
body.home main .carrer-advice {
  background-color: #0D0D0D;
}
body.home main .carrer-advice a {
  text-decoration: none;
  color: #0D0D0D;
  transition: color 0.3s;
}
body.home main .carrer-advice a:hover {
  color: #0D0D0D;
}
body.home main .carrer-advice a:hover .category {
  color: #F28B0C;
  text-decoration: underline;
}
body.home main .carrer-advice .for {
  margin: 20px;
  background-color: white;
}
body.home main .carrer-advice .for img {
  width: 100%;
}
body.home main .carrer-advice .for {
  max-width: 500px;
}
body.home main .carrer-advice .for .category {
  text-align: center;
  justify-self: center;
  font-weight: 600;
}
body.home main .carrer-advice .for {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
}
body.home main .carrer-advice .for div {
  margin: 5px;
}
body.home main .carrer-advice .for {
  transition: transform 0.3s;
}
body.home main .carrer-advice .for:hover {
  transform: scale(1.05);
}
body.home main .carrer-advice .title {
  color: #F28B0C;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}
body.home main .other-services {
  grid-area: other-services;
  position: relative;
  overflow: hidden;
}
body.home main .other-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/portrait-cute-young-brunette-student-holding-exercise-books-isolated-white-wall.png") no-repeat 90% 10%;
  background-size: 320px auto;
  opacity: 1;
  z-index: 0;
}
body.home main .other-services > * {
  position: relative;
  z-index: 1;
}
body.home main .other-services {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
body.home main .other-services .other-services-background {
  width: 100%;
  height: 100%;
  margin: 50px 0;
  padding: 250px 0 50px 0;
  clip-path: polygon(35% 0%, -5% 100%, 125% 100%);
  background-image: linear-gradient(to top left, #F28B0C, #F2B366);
}
body.home main .other-services .other-services-content {
  display: grid;
  grid-template-areas: "time-image time" "list-image mhxanografiko" "hat-image metaptuxiako" "advice-image sumbouleutikh";
  grid-template-rows: 1fr 1fr 1fr 1fr;
  justify-content: center;
  gap: 10px;
}
body.home main .other-services .other-services-content .time-image {
  grid-area: time-image;
}
body.home main .other-services .other-services-content .list-image {
  grid-area: list-image;
}
body.home main .other-services .other-services-content .hat-image {
  grid-area: hat-image;
}
body.home main .other-services .other-services-content .advice-image {
  grid-area: advice-image;
}
body.home main .other-services .other-services-content .time {
  grid-area: time;
}
body.home main .other-services .other-services-content .mhxanografiko {
  grid-area: mhxanografiko;
}
body.home main .other-services .other-services-content .metaptyxiako {
  grid-area: metaptuxiako;
}
body.home main .other-services .other-services-content .sumbouleutikh {
  grid-area: sumbouleutikh;
}
body.home main .other-services .other-services-content img {
  width: 20px;
  height: 20px;
}
body.home main .other-services .see-more a {
  display: block;
  text-decoration: none;
  color: #0D0D0D;
  font-weight: bold;
  min-width: 300px;
  max-width: 350px;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  margin: 0 auto 20px auto;
  background-color: darkcyan;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
body.home main .other-services .see-more a:hover {
  background-color: rgb(0, 113.5, 113.5);
  color: #F2F2F2;
  transform: scale(1.05);
}
body.home main .other-services .see-more {
  place-items: center;
  margin-top: 20px;
}

body.about main {
  display: grid;
  grid-template-areas: "title" "content";
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
}
body.about main .title {
  grid-area: title;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  font-weight: 700;
  margin: 50px auto;
  position: relative;
  display: inline-block;
}
body.about main .title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F28B0C;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
body.about main .title:hover::after {
  width: 100%;
}
body.about main .about-us {
  grid-area: content;
  margin: 0 auto 50px auto;
  padding: 0 20px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.about main .about-us .about-us-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F28B0C;
}
body.about main .about-us .about-us-text {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
}
body.about main .about-us .about-us-quote {
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}
body.about main .why-us .why-us-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  background-color: black;
}
body.about main .why-us .why-us-content .why-us-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #F28B0C;
}
body.about main .why-us .why-us-content .why-us-text {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}
body.about main .why-us .why-us-content .why-us-text .why-us-list {
  list-style: none;
  counter-reset: step;
}
body.about main .why-us .why-us-content .why-us-text .why-us-list .list-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
}
body.about main .why-us .why-us-content .why-us-text .why-us-list .list-item::before {
  counter-increment: step;
  content: counter(step) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #F28B0C;
  color: black;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
}
body.about main .our-mission {
  background-color: #F28B0C;
}
body.about main .our-mission .our-mission-content {
  font-size: 20px;
  padding: 40px;
  background-color: white;
  clip-path: polygon(50px 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%, 0 50px);
}
body.about main .our-mission .our-mission-content .our-mission-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F28B0C;
}
body.about main .our-mission .our-mission-content .our-mission-text {
  margin-bottom: 15px;
}

body.services main {
  display: grid;
  grid-template-areas: "title" "content";
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
}
body.services main .title {
  grid-area: title;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  margin: 50px auto;
  position: relative;
  display: inline-block;
}
body.services main .title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F28B0C;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
body.services main .title:hover::after {
  width: 100%;
}
body.services main .service {
  display: grid;
  grid-template-areas: "image image" "number list";
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 1fr;
  row-gap: 20px;
  padding: 50px 0 10px;
}
body.services main .service .service-image {
  grid-area: image;
  width: 100%;
}
body.services main .service .service-image img {
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  justify-self: center;
  margin: 0 auto;
}
body.services main .service .service-number {
  grid-area: number;
  justify-self: end;
  margin-right: 10px;
  width: 60px;
  height: 60px;
  background: #F28B0C;
  font-weight: 800;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
body.services main .service .service-content {
  grid-area: list;
}
body.services main .service .service-content .service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F28B0C;
}
body.services main .service .service-content .service-text {
  list-style: disc;
  margin-right: 40px;
}
body.services main .service .service-content .service-text li {
  margin-bottom: 8px;
}
body.services main .service.reverse {
  background-color: black;
}
body.services main .service.reverse .service-text {
  color: white;
}

body.contact main {
  display: grid;
  grid-template-areas: "title" "text" "content";
  gap: 20px;
  padding: 20px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
}
body.contact main .title {
  grid-area: title;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  margin: 50px auto;
  position: relative;
  display: inline-block;
}
body.contact main .title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F28B0C;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
body.contact main .title:hover::after {
  width: 100%;
}
body.contact main .contact-text {
  grid-area: text;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.4;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 5px solid #F28B0C;
}
body.contact main .contact-info {
  grid-area: content;
  margin: 0 auto;
  line-height: 1.4;
  gap: 10px;
}
body.contact main .contact-info .contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
body.contact main .contact-info .contact-item .contact-label {
  font-weight: 600;
  color: #F28B0C;
}
body.contact main .contact-info .contact-item a {
  color: #0D0D0D;
}
body.contact main .contact-info .contact-item a:hover {
  color: #F2B366;
}
body.contact main .contact-info .icons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: space-around;
}
body.contact main .contact-info .icons img {
  width: 30px;
  height: 30px;
}

body.counseling main {
  grid-area: main;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
  display: grid;
  grid-template-areas: "title" "content";
}
body.counseling main .title {
  grid-area: title;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  margin: 50px 0;
}
body.counseling main .title span {
  position: relative;
  display: inline-block;
}
body.counseling main .title span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F28B0C;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
body.counseling main .title span:hover::after {
  width: 100%;
}
body.counseling main .title:hover span::after {
  width: 100%;
}
body.counseling main .counseling-content {
  grid-area: content;
  line-height: 1.4;
}
body.counseling main .counseling-content .intro-text {
  margin: 20px 20px 40px;
  max-width: 800px;
  padding-bottom: 20px;
  border-bottom: 5px solid #F28B0C;
}
body.counseling main .counseling-content .categories {
  display: grid;
  grid-template-areas: "pupils" "students" "adults" "parents";
  gap: 20px;
}
body.counseling main .counseling-content .categories .pupils {
  grid-area: pupils;
  background-color: black;
  color: white;
}
body.counseling main .counseling-content .categories .pupils .sub-category {
  margin-top: 10px;
}
body.counseling main .counseling-content .categories .pupils .sub-category .sub-category-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #F28B0C;
  display: flex;
  align-items: center;
  gap: 6px;
}
body.counseling main .counseling-content .categories .pupils .sub-category .sub-category-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 4px solid #F28B0C;
  border-bottom: 4px solid #F28B0C;
  transform: rotate(45deg);
  margin-bottom: 5px;
}
body.counseling main .counseling-content .categories .pupils .sub-category .sub-category-text {
  margin-top: 5px;
  max-width: 600px;
}
body.counseling main .counseling-content .categories .students {
  grid-area: students;
}
body.counseling main .counseling-content .categories .adults {
  grid-area: adults;
  background-color: black;
  color: white;
}
body.counseling main .counseling-content .categories .parents {
  grid-area: parents;
}
body.counseling main .counseling-content .categories .category {
  scroll-margin-top: 100px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.counseling main .counseling-content .categories .category .category-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F28B0C;
  text-align: center;
}
body.counseling main .counseling-content .categories .category .category-text {
  margin-top: 10px;
  max-width: 600px;
}
body.counseling main .counseling-content .how-we-work {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  padding: 40px;
  color: white;
  font-weight: 600;
}
body.counseling main .counseling-content .how-we-work > * {
  position: relative;
  z-index: 3;
}
body.counseling main .counseling-content .how-we-work::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../images/how-we-work_background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.55;
  pointer-events: none;
}
body.counseling main .counseling-content .how-we-work::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(242, 139, 12, 0.45);
  pointer-events: none;
}
body.counseling main .counseling-content .how-we-work .how-we-work-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #F2F2F2;
  background-color: #F28B0C;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  margin: 50px auto 60px auto;
}
body.counseling main .counseling-content .how-we-work .how-we-work-text {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body.counseling main .counseling-content .how-we-work .how-we-work-text .step {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
body.counseling main .counseling-content .how-we-work .how-we-work-text .step .step-number {
  width: 40px;
  height: 40px;
  background: #F28B0C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}
body.counseling main .counseling-content .how-we-work .how-we-work-text .step .step-description {
  font-size: 18px;
  margin-top: 5px;
}

body.news main {
  grid-area: main;
  display: grid;
  grid-template-areas: "title" "content";
  gap: 20px;
  padding: 20px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
}
body.news main .news-title {
  grid-area: title;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  margin: 50px auto;
  position: relative;
  display: inline-block;
}
body.news main .news-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F28B0C;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
body.news main .news-title:hover::after {
  width: 100%;
}
body.news main #posts-container {
  grid-area: content;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
body.news main .post-card {
  background: #F28B0C;
  border-radius: 10px;
  box-shadow: #F2B366;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s;
}
body.news main .post-card:hover {
  transform: translateY(-5px);
}
body.news main .post-card:hover h2 {
  text-decoration: underline;
  text-decoration-color: white;
  color: white;
}
body.news main .post-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.news main .post-card h2 {
  padding: 15px;
  margin: auto;
  font-size: 1.3rem;
  color: #0D0D0D;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #0D0D0D;
}

body.article main {
  grid-area: main;
}
body.article main #single-post-container {
  display: grid;
  grid-template-areas: "image" "title" "date" "content";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
body.article main #single-post-container .post-title {
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
  grid-area: title;
  font-size: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  margin: 0;
  padding: 20px 10%;
}
body.article main #single-post-container .post-date {
  grid-area: date;
  display: block;
  text-align: center;
  font-size: 0.9rem;
  width: 50%;
  margin: 10px auto 60px auto;
  padding-bottom: 60px;
  border-bottom: 5px solid #F28B0C;
}
body.article main #single-post-container .post-hero-image {
  grid-area: image;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.article main #single-post-container .post-content {
  grid-area: content;
  font-size: 1.15rem;
  line-height: 1.8;
  padding: 20px;
  margin-bottom: 50px;
  white-space: pre-wrap;
}

body.odigos main {
  grid-area: main;
  margin-bottom: 50px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../images/maze.png"), #ffffff;
  background-repeat: no-repeat;
  background-size: calc(25% + 80px) auto;
  background-position: calc(-80px - 2vw) calc(-80px - 1vw);
  display: grid;
  grid-template-areas: "title" "content";
}
body.odigos main .title {
  grid-area: title;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  font-weight: 700;
  margin: 50px auto;
  position: relative;
  display: inline-block;
}
body.odigos main .title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F28B0C;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
body.odigos main .title:hover::after {
  width: 100%;
}
body.odigos main .content {
  grid-area: content;
  display: grid;
  grid-template-areas: "odigos1" "odigos2" "odigos3" "odigos4" "odigos5";
  gap: 20px;
}
body.odigos main .content .first {
  grid-area: odigos1;
}
body.odigos main .content .second {
  grid-area: odigos2;
}
body.odigos main .content .third {
  grid-area: odigos3;
}
body.odigos main .content .fourth {
  grid-area: odigos4;
}
body.odigos main .content .fifth {
  grid-area: odigos5;
}
body.odigos main .content .box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  background-color: #F28B0C;
}
body.odigos main .content .box-image {
  display: flex;
  justify-content: center;
}
body.odigos main .content .box-image img {
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.odigos main .content .odigos-link {
  width: 90%;
  margin: 0 auto;
}
body.odigos main .content .odigos-link a {
  display: block;
  text-decoration: none;
  color: #0D0D0D;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, color 0.3s;
}
body.odigos main .content .odigos-link a:hover {
  transform: scale(1.05);
  color: #0D0D0D;
}
body.odigos main .content .odigos-link a:hover .box-title {
  color: white;
  text-decoration: underline;
}
body.odigos main .content .odigos-link a .box-image img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.odigos main .content .odigos-link a .box-title {
  margin: 0;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  body.home main .intro .intro-content {
    clip-path: polygon(0% 100%, 85% 100%, 100% 80%, 100% 0%, 0% 0%);
    background-size: calc(25% + 80px) auto;
    background-position: calc(-120px - 2vw) calc(-130px - 1.5vw);
  }
  body.home main .carrer-advice {
    display: grid;
    grid-template-areas: "title title title title" "pupils students adults parents";
    grid-template-rows: auto auto;
  }
  body.home main .other-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/portrait-cute-young-brunette-student-holding-exercise-books-isolated-white-wall.png") no-repeat right top;
    background-size: 600px auto;
    opacity: 1;
    z-index: 0;
  }
  body.home main .other-services .other-services-background {
    padding: 350px 0 50px 0;
    clip-path: polygon(40% 0%, -10% 100%, 140% 100%);
  }
  body.home main .other-services .other-services-content {
    margin-top: 50px;
    display: grid;
    grid-template-areas: "time-image time list-image mhxanografiko" "hat-image metaptyxiako advice-image sumbouleutikh";
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 20px;
  }
  body.home main .other-services .other-services-content .image {
    justify-self: flex-end;
  }
  body.home main .other-services .other-services-content .image img {
    width: 40px;
    height: 40px;
  }
  body.home main .other-services .other-services-content div {
    max-width: 150px;
    font-weight: 500;
    font-size: 18px;
  }
  body.home main .other-services .see-more {
    width: 100%;
    place-items: center;
  }
  body.home main .other-services .see-more a {
    margin-top: 20px;
    width: 450px;
    height: 50px;
    align-content: center;
    font-size: 20px;
  }
  body.about main {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-120px - 2vw) calc(-130px - 1.5vw);
  }
  body.about main .why-us .why-us-content .why-us-title {
    margin: 10px auto 40px;
  }
  body.about main .why-us .why-us-content .why-us-list {
    display: grid;
    grid-template-areas: "first second" "third fourth";
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  body.about main .why-us .why-us-content .why-us-list .first {
    grid-area: first;
    max-width: 500px;
  }
  body.about main .why-us .why-us-content .why-us-list .second {
    grid-area: second;
    max-width: 500px;
  }
  body.about main .why-us .why-us-content .why-us-list .third {
    grid-area: third;
    max-width: 500px;
  }
  body.about main .why-us .why-us-content .why-us-list .fourth {
    grid-area: fourth;
    max-width: 500px;
  }
  body.about main .our-mission .our-mission-content {
    clip-path: polygon(90px 0, 100% 0, 100% calc(100% - 90px), calc(100% - 90px) 100%, 0 100%, 0 90px);
  }
  body.about main .our-mission .our-mission-content .our-mission-title {
    text-align: center;
    margin-bottom: 30px;
  }
  body.about main .our-mission .our-mission-content .our-mission-text {
    margin: 10px auto;
    max-width: 800px;
  }
  body.contact main {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-120px - 2vw) calc(-130px - 1.5vw);
  }
  body.services main {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-120px - 2vw) calc(-130px - 1.5vw);
  }
  body.services main .title {
    margin-bottom: 80px;
    margin-top: 50px;
  }
  body.services main .service {
    grid-template-areas: "number list image";
    grid-template-columns: auto auto auto;
  }
  body.services main .service .service-image img {
    max-width: 450px;
  }
  body.services main .service .service-number {
    margin-top: 30px;
  }
  body.services main .service .service-content {
    margin-top: 30px;
  }
  body.services main .service.reverse {
    grid-template-areas: "image number list";
    grid-template-columns: auto auto auto;
  }
  body.counseling main {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-120px - 2vw) calc(-130px - 1.5vw);
  }
  body.counseling main .counseling-content .intro-text {
    margin: 20px auto 80px;
    max-width: 900px;
  }
  body.counseling main .counseling-content .categories {
    grid-template-areas: "pupils pupils" "students parents" "adults adults";
    grid-template-columns: 1fr 1fr;
  }
  body.counseling main .counseling-content .categories .category {
    padding: 60px 0;
  }
  body.counseling main .counseling-content .categories .pupils {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body.counseling main .counseling-content .categories .pupils .sub-category .sub-category-title {
    margin-top: 20px;
  }
  body.counseling main .counseling-content .categories .pupils .sub-category .sub-category-text {
    margin-top: 10px;
  }
  body.counseling main .counseling-content .categories .students {
    border-right: 1px solid #F2B366;
  }
  body.counseling main .counseling-content .how-we-work {
    margin: 60px auto 40px;
    padding: 100px;
  }
  body.counseling main .counseling-content .how-we-work .how-we-work-text {
    flex-direction: row;
  }
  body.counseling main .counseling-content .how-we-work .how-we-work-text .step .step-description {
    font-size: 20px;
  }
  body.news main {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-120px - 2vw) calc(-130px - 1.5vw);
  }
  body.news main #posts-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 90%;
  }
  body.news main .post-card {
    width: 100%;
    gap: 25px;
  }
  body.news main .post-card img {
    height: 300px;
  }
  body.article main #single-post-container {
    margin: 0 auto;
  }
  body.article main #single-post-container .post-title {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-110px - 2vw) calc(-110px - 1.5vw);
    padding: 65px 20%;
  }
  body.article main #single-post-container .post-hero-image {
    height: 500px;
  }
  body.odigos main {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-120px - 2vw) calc(-130px - 1.5vw);
  }
  body.odigos main .title {
    margin-bottom: 100px;
    margin-top: 50px;
  }
  body.odigos main .content {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "odigos1 odigos1 odigos2 odigos2 odigos3 odigos3" "odigos4 odigos4 odigos4 odigos5 odigos5 odigos5";
    gap: 40px;
  }
  body.odigos main .content .first {
    max-width: 350px;
  }
  body.odigos main .content .second {
    max-width: 350px;
  }
  body.odigos main .content .third {
    max-width: 350px;
  }
  body.odigos main .content .fourth {
    max-width: 350px;
  }
  body.odigos main .content .fifth {
    max-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  body.article main #single-post-container .post-title {
    background-size: calc(25% + 80px) auto;
    background-position: calc(-150px - 2vw) calc(-150px - 1.5vw);
    padding: 65px 30%;
  }
}
footer {
  grid-area: footer;
  background-color: #2A8C8C;
}
footer .upper {
  margin: 10px;
}
footer .upper .contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 0;
}
footer .upper .contact-info .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: black;
}
footer .upper .contact-info .contact-item a {
  text-decoration: underline;
  color: black;
}
footer .upper .contact-info .contact-item a:hover {
  color: #F2F2F2;
}
footer .upper .contact-info .icons {
  margin-bottom: 5px;
  gap: 20px;
}
footer .upper .contact-info .icons a img {
  width: 25px;
  height: 25px;
}
footer .lower {
  background-color: rgb(8, 77, 77);
}
footer .lower .lower-footer-text {
  color: #F2F2F2;
  padding: 10px;
  font-size: 14px;
}

.contact-footer {
  grid-area: footer;
  background-color: #2A8C8C;
}
.contact-footer .contact-footer-text {
  color: #F2F2F2;
  padding: 10px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  footer .upper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  footer .upper .contact-info {
    align-items: flex-start;
  }
  footer .upper .contact-info .icons {
    width: 100%;
    margin-bottom: 0;
    justify-content: space-around;
  }
}
body.home {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "header" "main" "footer";
  grid-template-rows: auto 2fr 8fr auto;
}

body.about {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "header" "main" "footer";
  grid-template-rows: auto 10fr auto;
}

body.services {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "header" "main" "footer";
  grid-template-rows: auto 10fr auto;
}

body.contact {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "main" "footer";
  grid-template-rows: auto 10fr auto;
}

body.counseling {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "header" "main" "footer";
  grid-template-rows: auto 10fr auto;
}

body.news {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "main" "footer";
  grid-template-rows: auto 10fr auto;
}

body.article {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "main" "footer";
  grid-template-rows: auto 10fr auto;
}

body.odigos {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-areas: "nav" "header" "main" "footer";
  grid-template-rows: auto 10fr auto;
}

@media screen and (min-width: 768px) {
  body.home {
    grid-template-rows: auto 5fr 8fr auto;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", sans-serif;
}
body::-webkit-scrollbar {
  display: none;
}/*# sourceMappingURL=styles.css.map */