@charset "UTF-8";
.slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}
.slider .slide {
  position: relative;
}
.slider .slide:before {
  content: "";
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slider .slide img {
  width: 100%;
  height: 100dvh;
  min-height: 80vh;
  max-height: calc(100dvh - 78px);
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .content {
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  padding-right: 4rem;
  z-index: 1;
}
.slider .content h1 {
  font-size: 30px;
  margin-bottom: 20px;
  white-space: break-spaces;
  max-width: 90%;
}
.slider .content p {
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 40px;
  max-width: 900px;
  white-space: break-spaces;
}
.slider .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
}
.slider .content .buttons a:last-child {
  background: #0A1D37;
  border-color: #0A1D37;
}
.slider .social-media {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  flex-direction: column;
  z-index: 1;
}
.slider .social-media img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(0%) hue-rotate(265deg) brightness(103%) contrast(104%);
}

.trusted_by img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100px;
}
.trusted_by .logos-slider .slick-slide {
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transform: scale(0.6);
}
.trusted_by .logos-slider img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.trusted_by .logos-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.about_us_section {
  position: relative;
  overflow: hidden;
}
.about_us_section:before {
  content: "";
  background-image: url("../../img/akereon_logo_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: calc(100% - 4rem);
  height: auto;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.05;
  padding: 0 2rem;
  aspect-ratio: 1/0.3;
}

.services_section .clock {
  display: flex;
  gap: 2px;
}
.services_section .separator {
  font-size: 18px;
  align-self: flex-end;
}
.services_section .number {
  position: relative;
  display: grid;
  text-align: center;
  color: #fff;
  font-size: 22px;
  padding: 3px 8px;
  background: linear-gradient(#0A1D37 50%, #0A1D37 50%);
}
.services_section .number .base, .services_section .number .flap {
  grid-row: 1/1;
  grid-column: 1/1;
}
.services_section .base {
  display: grid;
}
.services_section .base .top, .services_section .base .bottom {
  position: relative;
  grid-row: 1/1;
  grid-column: 1/1;
  font-size: 22px;
}
.services_section .base .top::after, .services_section .base .bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}
.services_section .base .top {
  clip-path: inset(0 0 50% 0);
}
.services_section .base .top::after {
  top: calc(50% - 1px);
  background-color: #0A1D37;
}
.services_section .base .bottom {
  clip-path: inset(50% 0 0 0);
}
.services_section .base .bottom::after {
  bottom: calc(50% - 0.1px);
  background-color: #0A1D37;
}
.services_section .flap {
  display: none;
  backface-visibility: hidden;
  font-size: 22px;
}
.services_section .flap.show {
  display: block;
  animation: flip 0.6s ease-in-out 0s 1 normal forwards;
}
.services_section .flap.front::before, .services_section .flap.back::before {
  content: attr(data-content);
}
.services_section .flap.front::after, .services_section .flap.back::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}
.services_section .front {
  clip-path: inset(0 0 50% 0);
  transform: rotateX(0deg);
  background-color: #0A1D37;
}
.services_section .front::after {
  top: calc(50% - 0.1px);
  background-color: #0A1D37;
}
.services_section .front.show {
  animation-name: flip-top;
}
.services_section .back {
  clip-path: inset(50% 0 0 0);
  transform: rotateX(-180deg);
  background-color: #0A1D37;
}
.services_section .back::after {
  bottom: calc(50% - 0.1px);
  background-color: #0A1D37;
}
.services_section .back.show {
  animation-name: flip-bottom;
}
@keyframes flip-top {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(180deg);
  }
}
@keyframes flip-bottom {
  from {
    transform: rotateX(-180deg);
  }
  to {
    transform: rotateX(0deg);
  }
}
.services_section .inner-content {
  max-width: 550px;
  margin-left: auto;
  margin-bottom: 40px;
}
.services_section .services-categories-grid {
  border-top: 1px solid rgba(10, 29, 55, 0.4);
}
.services_section .services-categories-grid .service-category-item {
  border-bottom: 1px solid rgba(10, 29, 55, 0.4);
  padding: 2rem 0;
}
.services_section .services-categories-grid .service-category-item a {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.services_section .services-categories-grid .service-category-item a:after {
  content: "";
  background-image: url("../../img/right-chevron.svg");
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 20px;
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.4;
}
.services_section .services-categories-grid .service-category-item p {
  margin-bottom: 0;
}

.whyus_section .row {
  display: flex;
  align-items: flex-start;
}
.whyus_section .advantages-list {
  padding-right: 5rem;
}
.whyus_section .advantages-list .advantage-item {
  border-bottom: 1px solid #99A2AD;
  padding: 2rem 0;
}
.whyus_section .advantages-list .advantage-item:last-child {
  border: none;
}
.whyus_section .advantages-list .advantage-item p {
  margin-bottom: 0;
}
.whyus_section .sticky-side { /* Για Safari */
  position: sticky;
  top: 100px;
  height: auto;
}

.success_stories_section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.success_stories_section .success_stories-list {
  margin-bottom: 20px !important;
}
.success_stories_section .success_stories-list .success_story-item {
  text-align: center;
  margin-bottom: 20px;
}
.success_stories_section .success_stories-list .success_story-item .success_story-logo img {
  margin: 0 auto;
  margin-bottom: 20px;
  transform: scale(0.6);
  height: 100px;
}
.success_stories_section .success_stories-list .success_story-item .success_story-content {
  max-width: 360px;
  margin: 0 auto;
  padding: 0 15px;
}
.success_stories_section .success_stories-list .success_story-item .link {
  color: #2A5298;
}
.success_stories_section .btn-secondary {
  margin: 0 auto;
}

.cta_section {
  text-align: center;
}
.cta_section .inner {
  max-width: 1095px;
  margin: 0 auto;
}
.cta_section .inner .content {
  margin-bottom: 40px;
}
.cta_section .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  row-gap: 10px;
}
.cta_section .buttons a:last-child {
  border: none;
}

.posts_section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.posts_section .posts_section-list {
  margin-bottom: 60px !important;
}
.posts_section .posts_section-list .post-item {
  margin-bottom: 20px;
  padding: 0 15px;
}
.posts_section .posts_section-list .post-item .post-excerpt {
  margin-bottom: 10px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: break-spaces;
}
.posts_section .posts_section-list .post-item .link {
  color: #2A5298;
}
.posts_section .btn-secondary {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .whyus_section .sticky-side {
    position: relative;
    top: 0;
  }
  .whyus_section .advantages-list {
    padding-right: 0;
  }
  .whyus_section .row {
    flex-direction: column-reverse;
  }
  .whyus_section .btn-primary {
    margin-top: 20px;
  }
  .success_stories_section .success_stories-list {
    margin-bottom: 60px !important;
  }
}
