@import url(foundation.min.css);

@import url(slick.css);

@font-face {
  font-family: "Aka-Geo";
  src: url("../fonts/ACGeosansLight.otf") format("opentype");
  font-weight: 300;
}

@font-face {
  font-family: "Aka-Lux";
  src: url("../fonts/ACElegantLuxMager.otf") format("opentype");
  font-weight: 400;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
h1,
h2,
h3,
h4,
h5,
h6,
html,
body,
audio,
canvas,
video,
a,
small,
label,
legend,
button,
input,
textarea,
time,
.top-bar-section ul li > a {
  font-family: "Aka-Lux", sans-serif;
  font-weight: normal;
}

.modulelist.active-article {
  background-color: var(--secondary-clr);
}

.slick-initialized .slick-slide.moduledata1 {
  margin-left: 3rem;
}

.services.slick-initialized.slick-slider.slick-dotted {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gallery-image-2 {
  opacity: 0;
  -webkit-animation: fadeInGal 2s ease forwards;
  animation: fadeInGal 2s ease forwards;
}

/* FAQ Cute Design */
.faq-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem;
}

.faq-item {
  background: #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-left: 0.5rem solid var(--primary-clr);
}

.career-message h5 {
  font-size: var(--font-32);
  margin-bottom: 2rem;
}

.career-message p {
  font-size: var(--font-24);
  line-height: 1;
  margin-top: 2rem;
}

.career-message {
  padding: 2rem;
  border-radius: 3rem;
  margin-bottom: 4rem;
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  position: relative;
  background: #f8f9fa;
}

.faq-question h4 {
  margin: 0;
  color: var(--forth-clr);
  font-size: var(--font-20);
  font-weight: 600;
  line-height: 1.4;
  padding-right: 4rem;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  font-size: 14px;
}

.faq-item.active .faq-question::after {
  content: "▼";
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 2rem 2rem;
  max-height: 20rem;
}

.faq-answer p {
  margin: 0;
  color: var(--third-clr);
  font-size: var(--font-18);
  line-height: 1.6;
}

.faq-number {
  position: absolute;
  left: -1rem;
  top: -1rem;
  background: var(--primary-clr);
  color: var(--forth-clr);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  -webkit-box-shadow: 0 0.2rem 0.8rem rgba(255, 213, 3, 0.3);
  box-shadow: 0 0.2rem 0.8rem rgba(255, 213, 3, 0.3);
}

@-webkit-keyframes fadeInGal {
  to {
    opacity: 1;
  }
}

@keyframes fadeInGal {
  to {
    opacity: 1;
  }
}

.slideshow,
.motto,
.motto,
.services,
.projects,
.news,
.about {
  overflow-x: clip !important;
  width: 100%;
}

/* Containers for text */

.top-bar-section ul li {
  position: relative;
}

.top-bar-section ul li::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 2.5rem;
  width: 3rem;
  height: 20px;
  background-image: url(../img/hover.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: -1;
  rotate: 2deg;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.contact-icons a p {
  margin-bottom: 0;
}

.contact-icons img {
  max-width: 2.5rem;
  margin-top: 2rem;
}

.home-active li:first-of-type::after,
.top-bar-section ul li.active::after,
.top-bar-section ul li:hover::after {
  opacity: 0.8;
  left: 0rem;
}
.news,
.services,
.motto {
  max-width: 192rem;
  margin-left: auto;
  margin-right: auto;
}

ul.pagination {
  margin: 2rem auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.alert-box.success {
  margin-top: 3rem;
  font-size: 1.7rem;
  border-radius: 3rem;
  padding: 1rem 1.5rem;
  background-color: #3a945b;
  border-color: #3a945b;
}

ul.pagination li a {
  font-size: 1.6rem;
}
ul.pagination li.current a:hover,
ul.pagination li.current a:focus {
  background: var(--forth-clr);
}

ul.pagination li.current a {
  background: var(--primary-clr);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

ul.pagination li:hover a,
ul.pagination li a:focus {
  background: var(--third-clr);
}

ul.pagination li a {
  color: var(--forth-clr);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

ul.pagination li:hover a {
  color: white;
}

.projects {
  max-width: 192rem;
  border-radius: 3rem 3rem 0 0;
  margin-left: auto;
  margin-right: auto;
}

.about {
  max-width: 192rem;
  border-radius: 0 0 3rem 3rem;
  margin-left: auto;
  margin-right: auto;
}

.error > label > small {
  text-transform: none;
}

.button,
button {
  background-color: #257696;
}

.button:hover,
button:hover {
  background-color: #113644;
}

.top-bar-section li:last-child:not(.has-form) a.events:not(.button) {
  text-decoration: none !important;
  color: #ffffff !important;
  background-color: #333333 !important;
}

.top-bar-section li:last-child:not(.has-form) a:hover.events:not(.button) {
  background-color: #999999 !important;
}

.st_fblike_hcount {
  margin-right: 25px;
}

.st_pinterest_hcount {
  margin-left: 20px;
}

.static-page__content ul {
  margin-left: 2rem;
}

.static-page__content li {
  margin-left: 3rem;
}

/* FAQ */

.faq li,
.faq p {
  font-size: 1.5rem;
}

.faq > div > h2 > button {
  font-size: 1.6rem;
}

.faq > div > h2 {
  border-top: 1px solid hsla(0, 0%, 44%, 0.8);
  margin-bottom: 0;
  padding: 1rem;
  margin-bottom: 1rem;
}

.article__container .faq {
  max-width: 98rem;
  margin: auto;
  padding: 3rem 1rem;
}

.faq > div > h2 > button {
  padding: 1rem;
  font-size: 2rem;
  color: var(--primary);
  background-color: transparent;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}

.faq > div > h2 > button::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 1rem;
  border: solid var(--primary);
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.6rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.faq > div.expanded > h2 > button::after {
  border-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.faq > div > div {
  padding: 0 2rem;
  font-size: 2rem;
  color: var(--primary);
  max-height: 0;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  -o-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq > div.expanded > div {
  max-height: 100rem;
  -webkit-transition: max-height 1s ease-in-out;
  -o-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
  margin-bottom: 3rem;
  margin-bottom: 3rem;
}

.faq > div.expanded > h2 {
  background-color: var(--primary);
}

.faq > div.expanded > h2 > button {
  color: #fff;
}

.faq li,
.faq p {
  font-size: 1.8rem;
}

.innerpage-faq #category .articlelistingrow > div:hover > div {
  background-color: transparent;
}

.innerpage-faq #category .articlelistingrow > div > div > a:nth-child(1) {
  margin-bottom: 0;
}

.innerpage-faq #category .articlelistingrow {
  padding-bottom: 0;
  margin-bottom: 1rem;
}

/* END FAQ */

.contain-to-grid,
.top-bar,
.top-bar-section ul {
  font-size: 1rem;
  color: #666666 !important;
  background-color: transparent !important;
}

.top-bar-section {
  margin-top: 10px;
}

.top-bar-section .has-dropdown > a:after {
  border-color: #666666 transparent transparent transparent;
}

ul.dropdown {
  background-color: #cccccc !important;
}

.slider,
.slider img {
  width: 100%;
}

.row {
  max-width: 1400px;
}

[data-magellan-expedition="fixed"] {
  width: 1200px;
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs {
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.breadcrumbs a:not(.current):hover,
.breadcrumbs a:hover i {
  color: var(--primary-clr);
}

div.breadcrumb {
  max-width: 1400px;
  margin: var(--half-space) auto var(--half-space);
}

.breadcrumbs * {
  color: #333333;
}

.breadcrumbs *,
.breadcrumbs > .current {
  line-height: 28px;
  text-transform: capitalize;
  font-size: var(--font-20);
}

.captcha input {
  margin-top: 8px;
}

body {
  opacity: 1;
  background-color: var(--secondary-clr);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 0;
  background-color: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.innerpage .site-header,
.site-header.scrolled {
  -webkit-box-shadow: 0 1px 1px 0 rgba(208, 206, 206, 0.7);
  box-shadow: 0 1px 1px 0 rgba(208, 206, 206, 0.7);
  background-color: var(--secondary-clr);
}

.top-bar {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-bar .toggle-topbar.menu-icon a::after {
  top: -3px;
  left: 5px;
}

.top-bar {
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-bar-section {
  margin-top: 0;
}

.top-bar .toggle-topbar.menu-icon {
  top: 17px; /* an to header exei upsos 65px diaforetika anaprosarmogi */
  left: 15px;
  right: auto;
  margin-top: 0;
  padding: 0;
}

.top-bar .toggle-topbar.menu-icon a {
  height: 25px;
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 40px;
}

p {
  margin-bottom: 20px;
}

.homepage main {
  padding-top: 0px;
}

.innerpage main {
  padding-top: 0rem;
}

.row--padding,
.columns,
.column {
  padding-left: 12px;
  padding-right: 12px;
}

.row--lg {
  max-width: 1744px;
}

.form-validation input {
  margin-top: 8px;
}

#submitform {
  margin-top: 4rem;
  font-family: "Aka-Lux", sans-serif;
  font-weight: 600 !important;
  background-color: var(--primary-clr);
  border-radius: 2rem;
  font-size: var(--font-24);
  color: var(--forth-clr);
  display: block;
}

[data-abide] .error small.error,
[data-abide] span.error,
[data-abide] small.error {
  font-size: 1.5rem;
}

.home-active li:first-of-type a {
  font-weight: 800;
  text-decoration: none;
}

ul.title-area #logo {
  display: inline-block;
}

.top-bar .name {
  height: initial;
}

/* Plain header links */
.top-bar-section li:not(.has-form) a:not(.button) {
  font-size: 16px;
  color: #fff;
  background-color: transparent;
  position: relative;
  display: inline-block;
}

/* Links with after element */
.top-bar-section li:not(.has-form) a:not(.button)::after,
li.has-dropdown.not-click:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: -3px;
  background-color: #fff;
}
.top-bar-section li:not(.has-form) ul.dropdown a:not(.button)::after {
  display: none;
}

/* No Dropdown Arrow */
.top-bar-section .has-dropdown > a {
  padding-right: 15px !important;
}
.top-bar-section .has-dropdown > a:after {
  display: none;
}

.top-bar-section ul li:hover:not(.has-form) > a,
.top-bar-section .dropdown li:not(.has-form) a:not(.button),
.top-bar-section li:not(.has-form) a:not(.button):hover,
.top-bar-section li.active:not(.has-form) a:not(.button),
.top-bar-section li.active:not(.has-form) a:not(.button):hover {
  background-color: transparent;
}
.top-bar-section .dropdown li:not(.has-form):hover > a:not(.button) {
  color: #f58220;
  background-color: #fff;
}

/* ------- HERO ------- */

.slick-slider {
  margin-bottom: 0;
}

/* ------- ABOUT ------- */

/* ------- STATIC PAGE ------- */

.static-page__title {
  text-align: center;
  font-size: 32px;
}

.static-page__content li,
.static-page__content p {
  line-height: 1.4;
  font-size: var(--font-26);
}

.static-page__content p a {
  border-bottom: 1px solid #21201f;
  color: #21201f;
}

.static-page__content {
  padding: 0 1rem;
}
/* ------- CATEGORY PAGE ------- */

/* ------- FOOTER ------- */

.innerpage .site-footer {
  margin-top: var(--space);
}

.footer-top,
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 172rem;
  padding: var(--space) 1rem;
  margin: auto;
  padding-bottom: var(--half-space);
}

.footer-contact,
.footer-usefull {
  width: 100%;
  max-width: 32rem;
}

.footer-top {
  border-bottom: 1px solid var(--third-clr);
  padding-bottom: var(--half-space);
}

.footer-bottom {
  background-image: url("../img/footer-symbol.png");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: calc(var(--space) + var(--space));
}

.footer-menu .center {
  list-style: none;
  margin-left: 0;
}

.footer-menu .center .center {
  display: none;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-socials span {
  font-size: var(--font-64);
  color: var(--third-clr);
  display: block;
  padding-top: 1rem;
}

.site-footer li,
.site-footer a,
.site-footer p {
  font-size: var(--font-24);
  color: white;
  margin: 2rem 0;
}

.site-footer_copyrights a,
.site-footer_copyrights p {
  font-size: var(--font-32);
}

.site-footer_copyrights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.site-footer h4 {
  font-size: var(--font-32);
  color: white;
  margin-bottom: 0;
}

.site-footer li:last-child {
  display: none;
}

.site-footer {
  background-color: var(--forth-clr);
}
.site-footer__copyrights {
  margin-top: 15px;
}
.site-footer__copyrights,
.site-footer__copyrights a {
  font-size: 16px;
  color: #fff;
}
.site-footer__logo {
  text-align: right;
}
html,
body {
  font-size: 62.5%;
}

:root {
  --primary-clr: #ffd503;
  --secondary-clr: #f6f6f6;
  --third-clr: rgb(102, 102, 102);
  --forth-clr: #21201f;
  --font-18: 1.8rem;
  --font-20: 2rem;
  --font-24: 2.4rem;
  --font-26: 2.6rem;
  --font-32: 3.2rem;
  --font-48: 4.8rem;
  --font-64: 6.4rem;
  --space: 10rem;
  --half-space: 5rem;
}

.main__image,
.slideshow {
  position: relative;
}

.main__image {
  margin-top: 11rem;
  margin-bottom: 5rem;
}

.main__image img {
  max-height: 50rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.main__image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.369);
}

.static-page__content h4 {
  font-size: var(--font-32);
  font-weight: bold;
  margin-top: var(--space);
  margin-bottom: 2rem;
}

.slideshow span {
  font-size: var(--font-24);
  color: white;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  font-family: "Aka-Geo", sans-serif;
  -webkit-animation: comeUp2 2s forwards;
  animation: comeUp2 2s forwards;
}

@-webkit-keyframes comeUp2 {
  0% {
    top: 70%;
  }
  100% {
    top: 40%;
  }
}

@keyframes comeUp2 {
  0% {
    top: 70%;
  }
  100% {
    top: 40%;
  }
}

.main__image h2,
.sliderCaption {
  font-size: var(--font-48);
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Aka-Geo", sans-serif;
  z-index: 1;
  -webkit-animation: comeUp 3s forwards;
  animation: comeUp 3s forwards;
}

@-webkit-keyframes comeUp {
  0% {
    top: 85%;
  }
  100% {
    top: 50%;
  }
}

@keyframes comeUp {
  0% {
    top: 85%;
  }
  100% {
    top: 50%;
  }
}

.gallery-image-2 img {
  -webkit-filter: grayscale(0.8);
  filter: grayscale(0.8);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.gallery-image-2:hover img {
  -webkit-filter: none;
  filter: none;
}

.only-title {
  font-size: var(--font-48);
  color: var(--forth-clr);
  width: 100%;
  text-align: center;
  margin: var(--space) auto;
  position: relative;
  padding: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  padding-top: var(--space);
}

.only-title::after {
  content: "";
  position: absolute;
  width: calc(100% + 2rem);
  height: 0.5rem;
  background-color: var(--primary-clr);
  left: 1rem;
  bottom: 0;
  -webkit-animation: maxWidth 1s forwards;
  animation: maxWidth 1s forwards;
}

@-webkit-keyframes maxWidth {
  0% {
    width: 0;
  }

  100% {
    width: calc(100% + 2rem);
  }
}

@keyframes maxWidth {
  0% {
    width: 0;
  }

  100% {
    width: calc(100% + 2rem);
  }
}

.innerpage .moduledata2 {
  max-width: 36rem;
}

.moduledata2 {
  position: relative;
}

.tags {
  position: absolute;
  top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  left: 2rem;
  z-index: 1;
  max-width: 90%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.moduledata2 img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.moduledata2 img {
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  display: block;
}

.moduledata2:hover img {
  -webkit-filter: contrast(0.8);
  filter: contrast(0.8);
}

.moduledata2:hover .tags span {
  color: var(--third-clr);
  background-color: var(--secondary-clr);
}

.site-footer_copyrights p:nth-child(2) a {
  border-bottom: 2px solid white;
}

.moduledata2 .tags span {
  border: 1px solid white;
  border-radius: 3rem;
  padding: 1rem;
  color: white;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.moduledata1 {
  background: white;
  border-radius: 3rem;
  width: 42rem;
  height: 36rem;
  padding: 4rem;
  padding-bottom: 4rem;
  display: block;
  position: relative;
}

.innerpage .moduledata1 {
  height: auto;
}

.moduledata1::after {
  content: "";
  left: -3rem;
  bottom: 6rem;
  height: 23rem;
  width: 4rem;
  background-color: var(--primary-clr);
  border-radius: 3rem 0 0 3rem;
  position: absolute;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

.moduledata1:hover::after {
  left: -4rem;
  z-index: 0;
  opacity: 1;
}

.moduledata1:hover.moduledata1:not(:hover) {
  z-index: -1;
}

.moduledata1 h5 {
  font-size: var(--font-48);
  color: black;
  line-height: 0.9;
  min-height: 9rem;
  margin-bottom: 5rem;
}

.moduledata1 hr {
  margin-bottom: 2rem;
}

.moduledata1 article {
  font-size: var(--font-24);
  color: black;
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 1rem;
  padding-bottom: var(--space);
}

.motto {
  max-width: 80rem;
  margin: auto;
  padding: var(--space) 1rem;
}
.motto p {
  font-size: var(--font-24);
}

.projects-right {
  max-width: 60%;
}

.projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: var(--space) 1rem;
}

.gallery-image-2 img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.projects-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 37%;
  padding: 0 1rem;
}

.projects-left span,
.projects-left time {
  font-size: 1.5rem;
  color: var(--third-clr);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.projects-left span:hover {
  color: var(--primary-clr);
}

.modulelist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  padding-left: 1rem;
  padding-right: 1rem;
}

.modulelist:hover {
  background-color: var(--secondary-clr);
}

.projects-left h5 {
  width: 100%;
  font-size: var(--font-24);
  font-weight: bold;
  color: black;
  margin-bottom: 0;
}

.small-choice h5 {
  font-size: 3rem;
  margin: auto;
  text-align: center;
  display: none;
  position: relative;
}

.small-choice h5::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/down.png);
  top: 14px;
  right: -24px;
}

.projects-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  row-gap: 0.5rem;
}

.projects-right .gallery-image-2 {
  width: calc(33.3% - 0.5rem);
}

.about {
  background-color: white;
  padding: var(--space) 1rem;
}

.about + .motto {
  max-width: 174rem;
}

.motto p:nth-child(1) {
  font-size: var(--font-48);
  color: var(--third-clr);
  line-height: 0.8;
  margin-bottom: var(--half-space);
}

.motto p:nth-child(1) strong {
  color: black;
}

.about_group {
  max-width: 172rem;

  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18rem;
}

.about_group > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--space);
}

.about-right {
  padding-top: var(--space);
}

.about p {
  font-size: var(--font-26);
  color: var(--third-clr);
  line-height: 1.3;
}

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 2rem;
}
.read_more {
  font-size: var(--font-24);
  color: black;
  text-decoration: none;
  font-weight: bold;
  margin-top: 4rem;
  display: block;
}

.innerpage .news {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.news .moduledata2:nth-child(odd) {
  margin-top: 5rem;
}

.moduledata2 span {
  display: block;
  font-size: var(--font-18);
  color: black;
  padding: 2rem;
  padding-bottom: 0rem;
}

.moduledata2 .article-title {
  font-size: var(--font-26);
}

.moduledata2 img {
  border-radius: 2rem;
}

.gallery-wrapper {
  width: 100%;
  position: relative;
  padding-top: var(--space);
  overflow-y: auto;
  overflow-x: clip;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 150vw;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-top: var(--space);
  margin-bottom: var(--space);
  left: -17vw;
  max-height: 75rem;
  overflow: clip;
}

.gallery-wrapper h5 {
  font-size: 45rem;
  color: var(--third-clr);
  position: absolute;
  font-weight: bold;
  opacity: 0.1;
  left: 50%;
  top: 0;
  font-family: "Aka-Geo", sans-serif;
  line-height: 0.8;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gallery-image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.gallery-image img {
  border-radius: 1rem;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.gallery-image:nth-child(1) img {
  max-width: 38rem;
  border-radius: 1rem;
}
.gallery-image:nth-child(1):hover img {
  max-width: 43rem;
}

.gallery-image:nth-child(2) img {
  max-width: 68rem;
}
.gallery-image:nth-child(2):hover img {
  max-width: 60rem;
}

.gallery-image:nth-child(3) img {
  max-width: 48rem;
}
.gallery-image:nth-child(3):hover img {
  max-width: 53rem;
}

.gallery-image:nth-child(4) img {
  max-width: 38rem;
}
.gallery-image:nth-child(4):hover img {
  max-width: 43rem;
}

.gallery-image:nth-child(5) img {
  max-width: 68rem;
}
.gallery-image:nth-child(5):hover img {
  max-width: 60rem;
}

.gallery-image:nth-child(6) img {
  max-width: 48rem;
}
.gallery-image:nth-child(6):hover img {
  max-width: 53rem;
}

.gallery-image:nth-child(7) img {
  max-width: 68rem;
}
.gallery-image:nth-child(7):hover img {
  max-width: 60rem;
}

.gallery-image:nth-child(8) img {
  max-width: 38rem;
  border-radius: 1rem;
}
.gallery-image:nth-child(8):hover img {
  max-width: 43rem;
}

.gallery-image:nth-child(9) img {
  max-width: 48rem;
}
.gallery-image:nth-child(9):hover img {
  max-width: 53rem;
}

.gallery-image:nth-child(10) img {
  max-width: 68rem;
}
.gallery-image:nth-child(10):hover img {
  max-width: 60rem;
}
.gallery-image:nth-child(6),
.gallery-image:nth-child(7),
.gallery-image:nth-child(8),
.gallery-image:nth-child(9),
.gallery-image:nth-child(10) {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-bar:before,
.top-bar:after,
.top-bar-section li:not(.has-form) a:not(.button)::after,
li.has-dropdown.not-click:not(:last-of-type)::after {
  display: none;
}
.top-bar {
  max-width: 174rem;
  padding: 1rem;
  margin: auto;
}

.innerpage .top-bar-section li:not(.has-form) a:not(.button),
.scrolled .top-bar-section li:not(.has-form) a:not(.button) {
  color: var(--forth-clr);
}

.top-bar-section li:not(.has-form) a:not(.button) {
  font-size: var(--font-24);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.top-bar-section li:not(.has-form) a:not(.button) {
  padding: 0 3rem;
  font-family: "Aka-Geo", sans-serif;
}

#navbar .top-bar-section .dropdown li a {
  color: var(--primary-clr);
  background-color: #404041;
}

.compensate-for-scrollbar {
  margin-right: 0 !important;
}

body.compensate-for-scrollbar {
  overflow: auto !important;
}

.contact-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

.contact-icons > div {
  position: relative;
  height: auto;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40rem;
  height: 12rem;
  border-radius: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 0.5rem;
  text-align: center;
  border: 1px solid var(--primary-clr);
  width: 20rem;
  height: 10rem;
  gap: 0.5rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  padding: 1rem;
  height: 13.3rem;
}

.contact-icons div:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.contact-icons > div:hover {
  background: var(--primary-clr);
}

.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 154rem;
  padding: 0 1rem;
  margin: auto;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  gap: 2rem;
}
.contact-icons p {
  font-size: var(--font-18);
  color: var(--forth-clr);
}

.contact-icons a p {
  margin-top: 1rem;
}

.contact-left {
  width: 60%;
  background: white;
  border-radius: 5rem;
  padding: var(--half-space) var(--space);
}

.contact-right {
  width: 30%;
}

.contact-right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3rem;
}

#contact form {
  max-width: 83rem;
  width: 100%;
  margin: auto;
  text-align: left;
  gap: 3.5rem;
}

#contact form > div {
  width: 100%;
}

label {
  font-size: var(--font-18);
  color: #4d4d4d;
  cursor: pointer;
  display: block;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: -13px;
  margin-left: 5px;
  background: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: var(--forth-clr);
}

#contact input[type="text"],
#contact input[type="password"],
#contact input[type="date"],
#contact input[type="datetime"],
#contact input[type="datetime-local"],
#contact input[type="month"],
#contact input[type="week"],
#contact input[type="email"],
#contact input[type="number"],
#contact input[type="search"],
#contact input[type="tel"],
#contact input[type="time"],
#contact input[type="url"],
#contact textarea {
  font-size: 1.6rem;
  color: black;
  border: 1px solid var(--primary-clr);
  -webkit-box-shadow: none;
  box-shadow: none;
  min-height: 3.5rem;
  border-radius: 0.5rem;
  padding: 2.5rem;
}

form .see-all {
  width: 11rem;
  height: 4.5rem;
  margin-top: 1rem;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  margin: auto;
  margin-top: 0rem;
  list-style: none;
}

.slick-dots button {
  border-radius: 100%;
  font-size: 0;
  padding: 1rem;
  background-color: var(--third-clr);
}

.slick-active button {
  background-color: var(--forth-clr);
}

.moduledata2.small-choice {
  display: none;
}

dialog {
  left: 0;
}

.fixed-btns {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 100;
}

.fixed-btns > a {
  min-width: 6.4rem;
  height: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;

  padding: 1rem;
}

.fixed-btns > a:hover {
  gap: 1rem;
}

.fixed-btns > a::after {
  width: 6.4rem;
  height: 6.4rem;
  top: 0;
  right: 0;
  background-color: #404041;
  border-radius: 50%;
  position: absolute;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.fixed-btns > a:hover::after {
  width: 100%;
  border-radius: 2rem;
}

.fixed-btns > a > span:nth-child(1) {
  color: #ffd503;
  font-size: 2.4rem;
  z-index: 2;
  opacity: 0;
  width: 0;
  visibility: hidden;
}

.fixed-btns > a > span:nth-child(2) {
  color: #ffd503;
  font-size: 2.6rem;
  font-weight: 700;
  z-index: 2;
}

.fixed-btns > a:hover > span:nth-child(1) {
  opacity: 1;
  visibility: visible;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.fixed-btns > a > span > svg {
  width: 3.6rem;
  height: 3.6rem;
  fill: #ffd503;
}

.subcategories {
  max-width: 174rem;
  margin: 3rem auto;
}

.subcategories--container {
  padding: 0 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4.4rem;
  -webkit-column-gap: 3.2rem;
  -moz-column-gap: 3.2rem;
  column-gap: 3.2rem;
}

.product__category {
  padding-bottom: 2.2rem;
  border-bottom: 1px solid #d6d6d6;
}

.product__category > a {
  display: block;
  position: relative;
}

.product__category > a > img {
  width: 100%;
  border-radius: 2rem;
}

.product__category > h3 {
  padding: 1.5rem 0;
  margin-bottom: 0;
}

.product__category > h3 > a {
  color: #404040;
  font-size: 3.2rem;
}

.product__category > p {
  font-size: 2.2rem;
  color: #404040;
}

.product {
  max-width: 142rem;
  margin: auto;
  padding: 15rem 0.5rem 0 0.5rem;
}

.product .breadcrumb {
  margin: 3rem auto;
}

.product__image > img {
  border-radius: 4rem;
  padding: 0 0.5rem;
}

.product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product__body > div {
  width: 70%;
  padding: 0 0.5rem;
}

.product__body > div:nth-child(1) {
  padding-right: 10rem;
}

.product__body > div > h1 {
  font-size: var(--font-64);
  margin-bottom: 2rem;
}

.product__body > .product__interest {
  width: 30%;
}

.product__body > div > p,
.product__body > div li {
  font-size: var(--font-24);
}

.product__interest h2 {
  color: #333;
  font-size: var(--font-32);
  text-align: center;
}

#interest {
  position: sticky;
  top: 13rem;
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    to(#f8f7f4)
  );
  background: -o-linear-gradient(top, #ffffff, #f8f7f4);
  background: linear-gradient(180deg, #ffffff, #f8f7f4);
  border: 0.1rem solid #ececec;
  border-radius: 2.4rem;
  padding: 3rem;
  -webkit-box-shadow:
    0 2.4rem 4.8rem rgba(11, 27, 43, 0.1),
    0 0.6rem 1.8rem rgba(11, 27, 43, 0.08);
  box-shadow:
    0 2.4rem 4.8rem rgba(11, 27, 43, 0.1),
    0 0.6rem 1.8rem rgba(11, 27, 43, 0.08);
}

#interest label {
  background: transparent;
  color: #6b7280;
  font-size: 1.6rem;
  margin: 0;
  margin-bottom: 0.5rem;
  pointer-events: none;
}

.input__field {
  position: relative;
}

#interest form {
  margin-bottom: 0;
}

#interest input,
#interest textarea {
  padding: 1rem;
  height: auto;
  font-size: 2.1rem;
}

#interest #submitform {
  width: 100%;
  border: none;
  background: #dfb148;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04rem;
  padding: 1.3rem 2rem;
  border-radius: 1rem;
  cursor: pointer;
  font-size: 2.1rem;
  -webkit-box-shadow: 0 1rem 2rem rgba(223, 177, 72, 0.28);
  box-shadow: 0 1rem 2rem rgba(223, 177, 72, 0.28);
  -webkit-transition:
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease,
    -webkit-filter 0.2s;
  transition:
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease,
    -webkit-filter 0.2s;
  -o-transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.2s;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.2s;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.2s,
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease,
    -webkit-filter 0.2s;
  margin: 0;
  margin-top: 2rem;
}

#interest #submitform:hover {
  -webkit-transform: translateY(-0.2rem);
  -ms-transform: translateY(-0.2rem);
  transform: translateY(-0.2rem);
  -webkit-filter: brightness(0.98);
  filter: brightness(0.98);
}

#interest #submitform:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 0.8rem 1.6rem rgba(223, 177, 72, 0.25);
  box-shadow: 0 0.8rem 1.6rem rgba(223, 177, 72, 0.25);
}

.product__body > div > p > a {
  color: #21201f;
  border-bottom: 2px solid #21201f;
}

.alert-box .close {
  position: absolute;
  top: 50%;
  margin-top: -1.3rem;
  right: 0.25rem;
  color: #fff;
  opacity: 1;
  font-size: 3.375rem;
}

.slick-list {
  max-width: 100% !important;
}

@media screen and (max-width: 1540px) {
  :root {
    --font-18: 1.7rem;
    --font-24: 2.3rem;
    --font-26: 2.5rem;
    --font-32: 3rem;
    --font-48: 3.8rem;
    --font-64: 6rem;
    --space: 8rem;
    --half-space: 4rem;
  }

  .footer-contact,
  .footer-usefull {
    width: 100%;
    max-width: 20rem;
  }

  .modulelist {
    gap: 4rem;
  }

  .about_group {
    gap: 4rem;
  }

  .news {
    gap: 2rem;
    padding: 0 1rem;
  }

  .moduledata1 h5 {
    min-height: 5rem;
  }

  .projects {
    padding: var(--space) 0rem;
  }

  .gallery {
    max-height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .services {
    gap: 3rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    margin: auto;
  }

  .homepage .moduledata1 {
    width: calc(50% - 4rem);
  }
}

@media screen and (max-width: 1340px) {
  :root {
    --font-18: 1.7rem;
    --font-24: 2rem;
    --font-26: 2.4rem;
    --font-32: 2.8rem;
    --font-48: 3rem;
    --font-64: 5.6rem;
    --space: 8rem;
    --half-space: 4rem;
  }

  .moduledata1 h5 {
    margin-bottom: 2rem;
    min-height: 4rem;
  }

  .contact-icons > div {
    width: calc(50% - 1rem);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }

  .contact-icons p {
    margin-bottom: 0;
  }
  .contact-icons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .moduledata1 {
    padding: 2rem;
    width: 30rem;
    height: 28rem;
  }

  .moduledata1::after {
    bottom: 2rem;
    width: 2rem;
    left: 0;
  }

  .slick-prev::after,
  .slick-next::after {
    content: "";
    position: absolute;
    width: 33px;
    height: 56px;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
  }
  .slick-next {
    left: auto;
    right: 6%;
  }

  button:hover,
  button:focus,
  .button:hover,
  .button:focus {
    background-color: inherit !important;
  }

  #interest #submitform:focus,
  #interest #submitform:hover {
    background-color: var(--primary-clr) !important;
  }

  .slick-next,
  .slick-prev {
    position: absolute;
    display: none;
    bottom: 30%;
    top: auto;
    z-index: 2;
    font-size: 0;
    background: transparent;
    width: 33px;
    height: 56px;
    left: 5px;
  }

  .slick-next {
    left: auto;
    right: 5px;
  }

  .slick-next::after {
    background-image: url(../img/arrow-right.png);
  }

  .slick-prev::after {
    background-image: url(../img/arrow-left.png);
  }

  .slick-prev::after,
  .slick-next::after {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    top: 0;
    width: 4rem;
    height: 4rem;
    background-size: contain;
  }

  .moduledata1:hover::after {
    left: -2rem;
  }

  .top-bar .title-area {
    max-width: 25rem;
  }

  .top-bar-section li:not(.has-form) a:not(.button) {
    padding: 0 1.5rem;
  }

  .gallery-wrapper h5 {
    font-size: 38rem;
  }

  .gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    left: 0;
    padding: 1rem;
  }

  .gallery > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .gallery > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .gallery > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .gallery > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .gallery > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .gallery > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  .gallery > *:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }

  .gallery > *:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }

  .gallery > *:nth-child(9) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }

  .gallery > *:nth-child(10) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }

  .gallery-image:nth-child(1) img,
  .gallery-image:nth-child(2) img,
  .gallery-image:nth-child(3) img,
  .gallery-image:nth-child(4) img,
  .gallery-image:nth-child(5) img,
  .gallery-image:nth-child(6) img,
  .gallery-image:nth-child(7) img,
  .gallery-image:nth-child(8) img,
  .gallery-image:nth-child(9) img,
  .gallery-image:nth-child(10) img,
  .gallery-image:nth-child(1):hover img,
  .gallery-image:nth-child(2):hover img,
  .gallery-image:nth-child(3):hover img,
  .gallery-image:nth-child(4):hover img,
  .gallery-image:nth-child(5):hover img,
  .gallery-image:nth-child(6):hover img,
  .gallery-image:nth-child(7):hover img,
  .gallery-image:nth-child(8):hover img,
  .gallery-image:nth-child(9):hover img,
  .gallery-image:nth-child(10):hover img {
    max-width: 100%;
  }

  .gallery-image:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
  }
  .gallery-image:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1 / 2 / 2 / 3;
  }
  .gallery-image:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
  }
  .gallery-image:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2 / 2 / 3 / 3;
  }
  .gallery-image:nth-child(5).div5 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
  }
  .gallery-image:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3 / 2 / 4 / 3;
  }
  .gallery-image:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4 / 1 / 5 / 2;
  }
  .gallery-image:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4 / 2 / 5 / 3;
  }
  .gallery-image:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 5 / 1 / 6 / 2;
  }
  .gallery-image:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 5 / 2 / 6 / 3;
  }
}

@media screen and (max-width: 1050px) {
  :root {
    --font-18: 1.6rem;
    --font-24: 2rem;
    --font-26: 2rem;
    --font-32: 2.4rem;
    --font-48: 3rem;
    --font-64: 5rem;
    --space: 7rem;
    --half-space: 3rem;
  }

  .product__category > h3 > a {
    font-size: 2.1rem;
  }

  .subcategories--container {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }

  .product__category > p {
    font-size: 1.8rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
  }

  .product__category {
    padding-bottom: 0;
  }

  .product__category > h3 > a {
    min-height: 6rem;
    display: block;
  }

  .product__body > div {
    width: 100%;
  }

  .product__body > .product__interest {
    width: 100%;
  }

  .product__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product__interest {
    width: 100%;
    max-width: 100%;
  }

  .top-bar-section ul li::after {
    content: "";
    position: absolute;
    bottom: 17px;
    left: 2.5rem;
    width: 1rem;
    height: 25px;
  }

  .top-bar-section ul li::after {
    bottom: 16px;
  }

  .footer-bottom {
    background-image: none;
  }

  .site-footer {
    background-image: url(../img/footer-symbol.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
  }

  .contact-icons img {
    max-width: 3.5rem;
  }

  .contact-icons > div {
    height: 12rem;
  }

  .contact-right {
    display: none;
  }

  .contact-left {
    width: 100%;
  }

  .gallery-wrapper h5 {
    font-size: 18rem;
  }

  .gallery {
    width: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .gallery-wrapper {
    overflow-y: auto;
    overflow-x: auto;
  }

  .gallery-image img {
    max-width: 100% !important;
  }

  .footer-top,
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .top-bar-section li:not(.has-form) a:not(.button) {
    padding: 0.9rem;
  }

  .footer-menu .center,
  .footer-contact,
  .footer-usefull {
    width: 100%;
    text-align: center;
  }

  .main__image img,
  .slideshow img {
    min-height: 60rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .projects-right,
  .projects-left {
    width: 100%;
    max-width: 100%;
  }

  .projects-left {
    padding: 0 2rem;
  }

  .top-bar .title-area {
    max-width: 20rem;
  }

  .modulelist {
    padding-bottom: 2rem;
    padding-top: 2rem;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
  }

  .homepage .news,
  .homepage .projects {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .site-footer li,
  .site-footer a,
  .site-footer p {
    margin: 1rem 0;
  }

  .socials img {
    max-width: 4rem;
  }
  .top-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 12rem;
    padding: 1rem 0rem;
  }

  .projects-right .gallery-image-2,
  .gallery-image,
  .homepage .moduledata2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .about_group {
    gap: 2rem;
  }

  .projects-right {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .services {
    padding: var(--space) 0;
    padding-top: 0;
  }
  .site-footer h4 {
    color: var(--primary-clr);
  }

  .footer-bottom,
  .about {
    padding-top: 0;
  }
  @-webkit-keyframes comeUp2 {
    0% {
      top: 70%;
    }
    100% {
      top: 50%;
    }
  }
  @keyframes comeUp2 {
    0% {
      top: 70%;
    }
    100% {
      top: 50%;
    }
  }

  @-webkit-keyframes comeUp {
    0% {
      top: 85%;
    }
    100% {
      top: 65%;
    }
  }

  @keyframes comeUp {
    0% {
      top: 85%;
    }
    100% {
      top: 65%;
    }
  }
}

@media screen and (max-width: 640px) {
  :root {
    --font-18: 1.6rem;
    --font-24: 1.7rem;
    --font-26: 1.8rem;
    --font-32: 2rem;
    --font-48: 2.2rem;
    --font-64: 4rem;
    --space: 4rem;
    --half-space: 2rem;
  }

  .contact-left {
    padding: 2rem 1rem;
  }

  #contact input[type="text"],
  #contact input[type="password"],
  #contact input[type="date"],
  #contact input[type="datetime"],
  #contact input[type="datetime-local"],
  #contact input[type="month"],
  #contact input[type="week"],
  #contact input[type="email"],
  #contact input[type="number"],
  #contact input[type="search"],
  #contact input[type="tel"],
  #contact input[type="time"],
  #contact input[type="url"],
  #contact textarea {
    padding: 1.8rem;
  }

  #contact .see-all {
    margin: auto;
  }
  .static-page__content li {
    margin-left: 2rem;
  }

  .product__body > .product__interest {
    padding: 3rem 1.5rem !important;
  }

  .product__body > .product__interest h2 {
    margin-bottom: 1rem;
  }

  #interest input,
  #interest textarea,
  #interest #submitform {
    font-size: 17px;
  }

  #interest input,
  #interest textarea {
    padding: 0.7rem;
  }
  #navbar .top-bar-section .dropdown li a {
    color: var(--forth-clr);
    background-color: transparent;
  }

  .home-active li:first-of-type::after,
  .top-bar-section ul li.active::after,
  .top-bar-section ul li:hover::after {
    display: none;
  }

  section.top-bar-section {
    width: 100%;
  }

  .top-bar {
    height: 65px;
    gap: 0rem;
  }

  .slick-initialized .slick-slide.moduledata1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .subcategories--container {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }

  .product__body > div:nth-child(1) {
    padding-right: 3rem;
  }

  .product__category > h3 > a {
    min-height: unset;
  }

  .subcategories--container {
    row-gap: 2.2rem;
  }

  .fixed-btns > a > span:nth-child(1) {
    font-size: 1.6rem;
  }

  .gallery {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .top-bar-section ul li::after {
    bottom: 0.7rem;
  }

  .read_more {
    margin-top: 2rem;
  }

  .news h5 {
    margin-bottom: 1rem;
  }

  .news {
    max-width: 45rem;
    margin: auto;
  }

  .moduledata1 h5 {
    min-height: unset;
  }

  .moduledata1 hr {
    margin-bottom: unset;
    margin: 1.25rem 0;
  }

  .top-bar-section ul li:hover::after {
    opacity: 0;
  }

  .top-bar-section ul li:hover:not(.has-form) > a {
    color: inherit;
  }

  .gallery-image-2 img {
    border-radius: 2rem;
    width: 100%;
    height: auto;
  }

  .small-choice h5 {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: 0;
  }

  .top-bar.expanded {
    height: auto !important;
  }

  .projects-right .gallery-image-2 {
    width: 100%;
    max-width: 100%;
  }

  .projects-left {
    height: 6rem;
    overflow-y: clip;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    max-height: 6rem;
  }

  .small-choice {
    display: block;
  }

  .projects-left:has(.open) {
    height: auto;
    -webkit-animation: openChoice 2s;
    animation: openChoice 2s;
  }

  @-webkit-keyframes openChoice {
    0% {
      max-height: 6rem;
    }
    100% {
      max-height: 100rem;
    }
  }

  @keyframes openChoice {
    0% {
      max-height: 6rem;
    }
    100% {
      max-height: 100rem;
    }
  }

  @-webkit-keyframes comeUp2 {
    0% {
      top: 70%;
    }
    100% {
      top: 50%;
    }
  }

  @keyframes comeUp2 {
    0% {
      top: 70%;
    }
    100% {
      top: 50%;
    }
  }

  @-webkit-keyframes comeUp {
    0% {
      top: 85%;
    }
    100% {
      top: 70%;
    }
  }

  @keyframes comeUp {
    0% {
      top: 85%;
    }
    100% {
      top: 70%;
    }
  }

  .services {
    padding: var(--space) 0;
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .top-bar-section li:not(.has-form) a:not(.button) {
    color: var(--forth-clr);
  }

  .services {
    gap: 1rem;
  }

  .site-footer h4 {
    text-align: center;
  }

  .projects-right .gallery-image-2,
  .gallery-image,
  .homepage .moduledata2,
  .homepage .moduledata1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .gallery-wrapper {
    overflow-y: clip;
    overflow-x: clip;
  }

  .homepage .moduledata1 h5 {
    margin-bottom: 1rem;
  }

  .moduledata1::after {
    height: 16rem;
  }
  .motto img {
    max-width: 11rem;
  }

  .main__image h2,
  .sliderCaption {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .moduledata1 {
    height: 20rem;
  }

  .top-bar .title-area {
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .top-bar .title-area img {
    max-width: 20rem;
  }

  .top-bar .toggle-topbar.menu-icon {
    position: unset;
  }

  .news .moduledata2:nth-child(odd) {
    margin-top: 0;
  }

  .main__image img,
  .slideshow img {
    min-height: 36rem;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .gallery {
    margin: 0 auto;
  }

  .st_linkedin_hcount {
    display: none;
  }

  .about-right {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
    padding-top: 0 !important;
  }

  [class*="block-grid-"] {
    max-width: 330px; /* αλλαγή ανάλογα με το μέγεθος του thumb */
    margin: auto;
  }

  .about {
    padding-top: 0;
  }

  .about_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .breadcrumbs *,
  .breadcrumbs > .current {
    font-size: 15px;
  }

  .top-bar-section {
    float: none !important;
  }

  .top-bar .toggle-topbar.menu-icon a {
    color: #000000;
    margin-top: 0px;
  }

  .top-bar .toggle-topbar.menu-icon a {
    position: relative;
    width: 2.4rem;
    padding-right: 0;
    height: auto;
  }

  .site-header {
    background-color: white;
  }

  /* .top-bar .toggle-topbar.menu-icon a::after {
    box-shadow: 0 10px 0 1px #000000, 0 16px 0 1px #000000, 0 22px 0 1px #000000;
  } */

  .top-bar .toggle-topbar.menu-icon a::after {
    display: none !important;
  }

  .top-bar .toggle-topbar.menu-icon a span {
    display: block;
    width: 100%;
    border-radius: 3px;
    height: 0.3rem;
    background: var(--forth-clr);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }

  .top-bar .toggle-topbar.menu-icon a span + span {
    margin-top: 0.3rem;
  }

  .top-bar.expanded .toggle-topbar.menu-icon a span:nth-child(1) {
    -webkit-animation: ease 0.7s top forwards;
    animation: ease 0.7s top forwards;
  }

  .top-bar .toggle-topbar.menu-icon a span:nth-child(1) {
    -webkit-animation: ease 0.7s top-2 forwards;
    animation: ease 0.7s top-2 forwards;
  }

  .top-bar.expanded .toggle-topbar.menu-icon a span:nth-child(2) {
    -webkit-animation: ease 0.7s scaled forwards;
    animation: ease 0.7s scaled forwards;
  }

  .top-bar .toggle-topbar.menu-icon a span:nth-child(2) {
    -webkit-animation: ease 0.7s scaled-2 forwards;
    animation: ease 0.7s scaled-2 forwards;
  }

  .top-bar.expanded .toggle-topbar.menu-icon a span:nth-child(3) {
    -webkit-animation: ease 0.7s bottom forwards;
    animation: ease 0.7s bottom forwards;
  }

  .top-bar .toggle-topbar.menu-icon a span:nth-child(3) {
    -webkit-animation: ease 0.7s bottom-2 forwards;
    animation: ease 0.7s bottom-2 forwards;
  }

  @-webkit-keyframes top {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 0.5rem;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 0.5rem;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @keyframes top {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 0.5rem;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 0.5rem;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }

  @-webkit-keyframes top-2 {
    0% {
      top: 0.5rem;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    50% {
      top: 0.5rem;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      top: 0;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }

  @keyframes top-2 {
    0% {
      top: 0.5rem;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    50% {
      top: 0.5rem;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      top: 0;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }

  @-webkit-keyframes bottom {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      bottom: 0.7rem;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 0.7rem;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
  }

  @keyframes bottom {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      bottom: 0.7rem;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 0.7rem;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
  }

  @-webkit-keyframes bottom-2 {
    0% {
      bottom: 0.7rem;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
    50% {
      bottom: 0.7rem;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }

  @keyframes bottom-2 {
    0% {
      bottom: 0.7rem;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
    50% {
      bottom: 0.7rem;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }

  @-webkit-keyframes scaled {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  }

  @keyframes scaled {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  }

  @-webkit-keyframes scaled-2 {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @keyframes scaled-2 {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .top-bar.expanded .title-area {
    background: transparent;
  }

  .top-bar-section li:not(.has-form) a:not(.button) {
    text-align: center;
  }

  .top-bar {
    height: 65px;
    gap: 5rem;
  }

  ul.dropdown {
    background: transparent !important;
  }

  .homepage .moduledata1 {
    width: 90%;
    padding-top: 2rem;
    padding-bottom: 4rem;
    height: auto;
  }

  .main__image {
    margin-top: 4rem;
    margin-bottom: 1rem;
  }

  .homepage .moduledata1::after {
    display: none;
  }
}
