@layer bootstrap, reset, elements, layout, components, utilities, overrides, states, accessibility;

/*
  BOOTSTRAP LAYER
  */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css") layer(bootstrap);

/* 
  TOKENS / DESIGN VARIABLES

  This is the place where we create the values that we will be reusing in the system.
  Text colors, fonts and the rest.
  This way, if we want to change just the style, it will be possible with minor changes.
 */
:root {
  --font-sans: system-ui, sans-serif;
  --radius: 12px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;

  --color-bg: #fff;
  --color-text: #656565;
  --color-primary: #2563eb;

  --content-width: 1200px;
  --min-contect-width: 100vw;
  --text-width: 70ch;

  --blue-color: #1b263c;
  --blue-color-icon: invert(13%) sepia(54%) saturate(498%) hue-rotate(181deg) brightness(91%) contrast(97%);
  --white-color-icon: invert(98%) sepia(100%) saturate(4%) hue-rotate(97deg) brightness(107%) contrast(100%);
  --yellow-color-icon: invert(84%) sepia(32%) saturate(3090%) hue-rotate(344deg) brightness(98%) contrast(93%);
  --gray-color: #dbdbdb;
  --gray-color-2: #f1f1f1;
  --gray-color-3: #e4e4e4;
  --gray-color-4: #eaebef;
  --gray-color-5: #fafafa;
  --yellow-color: #f2b21d;
  --yellow-color-shadow: rgba(242, 183, 5, 0.25);
  --yellow-border-color: rgba(228, 171, 30, .8);
  --white-color: #fff;
  --blue-gray-color: #495563;
  --slideshow-max-height: 750px;
  --overlay-dark: rgba(33, 48, 66, 0.85);
  --overlay-yellow: rgba(242, 183, 5, .85);
  --input-border-color: #d1d1d1;
  --results-bg-color-odd: #eaeff2;
  --results-bg-color-even: #fdfdfd;
  --footer-overlay: linear-gradient(rgba(18, 30, 45, 0.92), rgba(18, 30, 45, 0.92));
  --page-header-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 400' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cstyle%3E.t1%7Bfill:%23000000;opacity:0.05;%7D.t2%7Bfill:%23000000;opacity:0.15;%7D.t3%7Bfill:%23ffffff;opacity:0.1;%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='t1' points='1200,400 600,400 1200,0'/%3E%3Cpolygon class='t2' points='1200,0 800,0 1200,300'/%3E%3Cpolygon class='t3' points='900,400 1200,100 1200,400'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
  :root {
    /*--color-bg: #0b1220;
    --color-text: #e5e7eb;*/
  }
}

/*
  BASE / RESET

  Do not touch this section, it just provides sensible defaults accross browsers.
 */
@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
  }

  body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }

  input, button, textarea, select {
    font: inherit;
  }

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
}

/*
  ELEMENT DEFAULTS

  First set the basis for the theme, how the elements should show unstyled.
 */
@layer elements {
  body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
  }

  a { color: inherit; text-decoration: none; }
  label {
    font-size: 1em;
    font-weight: 800;
    color: var(--blue-color);
    text-transform: uppercase;
    margin-bottom: .35em;
  }
  input, textarea, select {
    padding: .7em;
    border: 1px solid var(--input-border-color);
    font-size: 1em;
    outline: none;
    background: var(--white-color);
    resize: none;
  }
}

/*
  LAYOUT PRIMITIVES

  Generic classes, like columns, containers (both for text and styling).
  Typical primitives:

    * container
    * grid helpers
    * stack/cluster layouts
    * spacing helpers
    * “screen” wrappers
 */
@layer layout {
  .page {
    display: grid;
    grid-template-columns: 1fr min(var(--content-width), var(--min-contect-width)) 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      ". header ."
      "main main main"
      "footer footer footer";
    min-height: 100dvh;
    overflow-x: hidden;
  }
  .page>header { 
    grid-area: header;
    padding: 1rem 1rem 0 1rem;
  }
  .page>main { 
    grid-area: main;
  }
  .page>footer { 
    grid-area: footer;
    /*padding: 1rem 1rem .5rem 1rem;*/
    padding: 1rem 0 0 0;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
  }
  .header-top>.address, .header-top>.logo, .header-top>.social {
    flex: 2;
  }
  .header-top>.logo { flex: 1; }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    font-size: .9em;
    align-content: center;
    align-items: center;
  }
  .social-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .social-item {
    flex: 1;
  }
  .header-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--gray-color);
    margin: 1.5em -50rem 0 -50rem;
    padding: 0 50rem 0 50rem;
    align-items: last baseline;
  }
  .main-menu {
    flex-grow: 2;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: stretch;
  }
  .footer-top>.footer-menu, .footer-top>.address-details {
    flex: 1;
    padding: 3.5em 3em 1.5em 0;
    border-right: 2px solid var(--blue-gray-color);
  }
  .footer-top>.address-details { border-right: unset; padding-right: 0; }
  .footer-top>.company-brand { 
    flex: 2;
    padding: 3.5em 3em 1.5em 0;
    border-right: 2px solid var(--blue-gray-color);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .welcome-text>.container {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
  }
  .welcome-text-left { flex: 1; }
  .welcome-image { flex: 1; }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .contact-section {
    display: flex;
    min-height: 600px;
  }
  .features-grid {
    display: flex;
    gap: 2.5em;
    text-align: center;
    align-content: center;
    flex-wrap: wrap;
  }
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 20%;
    margin: 1em 0;
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
  }
  .dual-promo-section {
    display: flex;
    width: 100%;
    min-height: 500px;
    max-height: 700px;
    height: 700px;
  }
  .carousel-wrapper { display: flex; gap: 3em; align-items: flex-start; }
  .carousel-static-info { flex: 0 0 25%; color: var(--blue-color); padding-right: 1em; }
  .carousel-nav { display: flex; gap: 1em; margin-top: 1em; }
  .slider-viewport { flex: 1; overflow: hidden; position: relative; }
  .slider-track { display: flex; transition: transform 0.5s ease-in-out; width: 100%; gap: 1em; }

  @media screen and (max-width: 75em) {
    .header-top { flex-direction: column; }
    .address { text-align: center; }
    .header-bottom {
      align-items: flex-start;
      margin-left: 0;
      margin-right: 0;
      padding-left: 1em;
      padding-right: 1em;
    }
    .container { padding: 0 1rem; }
    .contact-section { flex-direction: column; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .dual-promo-section { flex-direction: column; }
  }
  @media screen and (max-width: 65em) {
    .welcome-text>.container { flex-direction: column; }
    .feature-item { flex: 1 0 40%; }
  }
  @media screen and (max-width: 45em) {
    .contact-info { flex-direction: column; }
    .carousel-wrapper { flex-direction: column; }
  }
  @media screen and (max-width: 37.5em) {
    .features-grid { grid-template-columns: repeat(1, 1fr); }
    .promo-section { flex-direction: column; }
    .projects-grid { grid-template-columns: repeat(1, 1fr); }
    .feature-item { flex: 1 0 50%; }
  }
}

/*
  COMPONENTS

  We keep media queries in the components, not at the end of the document.
  This is true for the other sections as well, although not generally needed as they are more basic
 */
@layer components {

  .phone { color: var(--blue-color); font-weight: 700; font-style: normal; }
  .contact-detail { 
    color: var(--blue-color); 
    font-size: .9em;
    vertical-align: text-top; 
    margin-left: 5px;
    font-weight: 500;
    font-style: normal; 
  }
  .social-item { text-align: center; border: 1px solid var(--gray-color); padding: .5em .35em; }
  .contact { margin-bottom: .25em; }
  .contact-icon { 
    display: inline-block;
    text-align: center;
    border: 1px solid var(--gray-color);
    padding: .5em .75em;
    margin-right: .5em;
  }
  .mobile-menu { display: none; }
  .mobile-menu-label { display: none; cursor: pointer; }
  .menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: .8rem 0;
  }
  .menu-item { position: relative; }
  .menu-arrow-up { display: none; }
  .menu-link {
    color: var(--blue-color);
    text-transform: uppercase;
    font-weight: 700;
    padding: 1em .5em;
  }
  .menu-item.has-submenu .menu-link {
    padding-right: 0;
  }
  .sub-menu {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 2.2em;
    left: 0;
    width: 17em;
    background: var(--gray-color-2);
    z-index: 5;
  }
  .sub-menu .menu-item {
    display: block;
    width: 100%;
    padding: 1em 1em;
    border-bottom: 2px solid var(--gray-color-3);
    border-left: 3px solid transparent;
    color: var(--blue-color);
    font-weight: 500;
  }
  .sub-menu .menu-link { padding: 0; }
  .sub-menu .menu-item:last-child>.menu-link {
    border-bottom: unset;
  }
  .sub-menu-lvl2 {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 0;
    left: 16.9em;
    width: 17em;
    background: var(--yellow-color);
    z-index: 2;
  }
  .sub-menu-lvl2 .menu-item {
    border-bottom: 2px solid var(--yellow-color);
    border-left: 3px solid var(--yellow-color);
  }
  .lang-switcher { position: relative; padding: 1rem 0; }
  .lang-btn {
    width: 100%;
    background: inherit;
    border: none;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
  }
  #language-list {
    list-style: none;
    padding-left: 0;
    display: none;
    position: absolute;
    top: 3.5em;
    left: 0;
    background: var(--gray-color-2);
    z-index: 2;
  }
  #language-list a {
    display: block;
    padding: .75em .5em;
    border-bottom: 2px solid var(--gray-color-3);
  }
  #language-list>li:last-child>a {
    border-bottom: unset;
  }
  .lang-code {
    width: 2ch;
    text-transform: uppercase;
    color: var(--blue-color);
    font-weight: 700;
  }
  .submenu-toggle { display: none; }
  .submenu-toggle:checked ~ .submenu-toggle-label>.menu-arrow-down { display: none; }
  .submenu-toggle:checked ~ .submenu-toggle-label>.menu-arrow-up { display: inline-block; }
  .submenu-toggle:checked ~ .sub-menu { display: block; }
  .submenu-toggle:checked ~ .sub-menu-lvl2 { display: block; }

  .slideshow {
    position: relative;
    width: 100%;
    /*height: var(--slideshow-max-height);*/
    overflow: hidden;
    background: var(--blue-color);
  }
  .slideshow-container { position: relative; /*height: var(--slideshow-max-height);*/ }
  .slide {
    display: none;
    height: 100%;
    align-items: stretch;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }
  .slide.active {
    display: flex;
    opacity: 1;
  }
  .slide-content {
    flex: 1;
    z-index: 2;
    position: relative;
  }
  .content-inner {
    width: 35em;
    position: absolute;
    right: 1em;
    top: 15em;
  }
  .slide-description {
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .slide-image {
    flex: 1;
    position: relative;
    /*max-height: 750px;*/
  }
  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slide-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 92%;
    width: 180px;
    height: 100%;
    /*max-height: 750px;*/
    background: var(--blue-color);
    transform: skewX(7deg);
    transform-origin: top;
    z-index: 1;
    pointer-events: none;
  }
  .slideshow .slide-content::after { left: 90%; }
  .slide-title {
    font-size: 2.25em;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
    padding-left: .5em;
    margin-bottom: .5em;
    line-height: 1.4;
  }
  .slide-description {
    font-size: 1em;
    line-height: 1.4;
    color: var(--white-color);
  }
  .slide-read-more {
    color: var(--white-color);
    z-index: 10;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .slider-controls {
    display: flex;
    gap: 0.5em;
    z-index: 5;
  }
  .slider-control {
    position: absolute;
    top: 22.5em;
    background: transparent;
    border: 1px solid var(--white-color);
    padding: 0.75rem 1rem;
    cursor: pointer;
    z-index: 10;
  }
  .slider-prev-btn { left: 35em; }
  .slider-next-btn { right: 32.5em; }

  .footer {
    /*background-image: linear-gradient(rgba(18, 30, 45, 0.92), rgba(18, 30, 45, 0.92)), 
      url('images/footer-bg-image.jpg');
    background-size: cover;
    background-position: center;*/
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    background: var(--blue-color);
  }
  .footer-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--footer-overlay);
    z-index: 1;
    pointer-events: none;
  }
  .footer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  .footer-slide.active {
      opacity: 1;
  }
  .footer-container { max-width: 1200px; margin: 0 auto; padding: 3rem 1rem 2rem 1rem; position: relative; z-index: 2; }
  .footer-top .logo { max-width: 300px; margin-bottom: 1em; }
  .footer-top .social { margin-bottom: 1em; }
  .footer-top .social-item { background: var(--white-color); border: 1px solid var(--white-color); }
  .company-brand-title {
    font-size: 1.25em;
    text-transform: uppercase;
    font-weight: normal;
  }
  .company-brand-description { margin-bottom: 1em; }
  .footer-menu .menu { display: block; }
  .footer-menu .menu-item { margin: 0 0 1.2em 0; }
  .footer-menu .menu-link { color: var(--white-color); padding: 0 .5em; }
  .footer .contact-info { display: block; margin: .75em 0; text-align: left; }
  .footer .contact-info-item { margin: .75em 0; }
  .footer .contact-detail {
    font-size: 1em;
    color: var(--white-color);
  }
  .search-form { margin-top: 2em; position: relative; }
  .search-label { display: block; }
  .search-label span { display: none; }
  .search-field {
    position: relative;
    padding: .5em 2em .5em 1.25em;
    border: 1px solid var(--white-color);
    color: var(--color-text);
    font-size: 1em;
    font-weight: normal;
  }
  .search-field::placeholder { opacity: 1; color: var(--blue-color); font-weight: 400; letter-spacing: -1px; }
  .search-field:focus { outline: none; }
  .search-btn { 
    position: absolute;
    top: .5em;
    right: .25em;
    background: inherit;
    border: unset;
    cursor: pointer;
  }
  .footer-bottom { background: var(--blue-color); padding: 1em 0; position: relative; z-index: 2; }
  .footer-bottom .menu-arrow-down { display: none; }
  .footer-bottom .menu-arrow-up { display: inline; }
  .ty-logo { max-width: 75px; }

  .welcome-header { background: var(--yellow-color); color: var(--white-color); padding: 1rem 0; }
  .welcome-title {
    font-size: 1.5em; 
    line-height: 1.3; 
    padding-left: 1rem; 
    border-left: 4px solid var(--white-color); 
  }
  .welcome-text { margin: 2rem 0; }
  .welcome-text-left>p { margin-bottom: 1rem; width: 70ch; line-height: 1.3; }

  .gallery-section {
    background: linear-gradient(to bottom, var(--yellow-color) 65%, var(--white-color) 65%);
    padding: 3em 0;
  }
  .gallery-title {
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 1em;
    color: var(--blue-color);
    border-left: 5px solid var(--blue-color);
    margin-bottom: 1.25em;
    letter-spacing: 1px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    list-style: none;
    padding: 0;
  }
  .gallery-item {
    height: 280px;
    overflow: hidden;
  }
  .gallery-item .glightbox {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 62, 85, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  .gallery-item .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--white-color);
    border-style: solid;
  }
  .gallery-item .top-left {
    top: 20px;
    left: 20px;
    border-width: 2px 0 0 2px;
  }
  .gallery-item .top-right {
    top: 20px;
    right: 20px;
    border-width: 2px 2px 0 0;
  }
  .gallery-item .bottom-left {
    bottom: 20px;
    left: 20px;
    border-width: 0 0 2px 2px;
  }
  .gallery-item .bottom-right {
    bottom: 20px;
    right: 20px;
    border-width: 0 2px 2px 0;
  }
  .gallery-item .cross {
    position: relative;
    width: 40px;
    height: 40px;
    transform: scale(0.3);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.3s ease-out;
  }
  .gallery-item:hover .cross {
    transform: scale(1);
    opacity: 1;
  }
  .gallery-item .cross::before,
  .gallery-item .cross::after {
    content: '';
    position: absolute;
    background-color: var(--white-color);
  }
  .gallery-item .cross::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
  }
  .gallery-item .cross::after {
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery-grid .view-all-item {
    position: relative;
    height: 280px;
    overflow: hidden;
  }
  .view-all-images-icon svg {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto;
    filter: var(--white-color-icon);
  }
  .view-all-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
  }
  .view-all-content {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 3.5em;
  }
  .view-all-text {
    font-size: 1em;
    font-weight: bold;
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
    margin-top: 4rem;
  }

  .articles-section {
    width: 100%;
    background: linear-gradient(to bottom, var(--white-color) 30%, var(--blue-color) 30%);
    padding-top: 3em;
  }
  .articles-title {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--yellow-color);
    text-transform: uppercase;
    border-left: 5px solid var(--yellow-color);
    padding-left: 1em;
    margin-bottom: 1.25em;
  }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3em;
  }
  .article-card {
    display: flex;
    flex-direction: column;
  }
  .article-image {
    width: 100%;
    max-height: 250px;
    height: 250px;
    margin-bottom: 2em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  .article-image img { width: 100%; height: 100%; object-fit: cover; }
  .article-content { 
    color: var(--white-color); 
    display: flex;
    align-items: flex-start;
    gap: 1.2em;
    margin-bottom: 1em;
  }
  .article-number {
    font-size: 2em;
    font-weight: 800;
    color: var(--yellow-color);
  }
  .article-heading {
    font-size: 1.3em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--yellow-color);
    line-height: 1.3;
    max-height: 55px;
    overflow: hidden;
    margin-bottom: .5em;
  }
  .article-excerpt {
    font-size: .9em;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 1.25em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .articles-footer { 
    padding: 1.5em 0;
    border-top: 1px solid var(--blue-gray-color);
  }
  .view-all-articles {
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: bold;

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .view-all-articles .arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }

  .contact-section-left {
    flex: 1;
    position: relative;
    background-image: url('images/home-contact-left-bg-image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.75em;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark);
    z-index: 1;
  }
  .visual-content {
    position: absolute;
    z-index: 2;
    max-width: 31em;
    color: var(--white-color);
    right: 3em;
  }
  .visual-title {
    font-size: 2em;
    font-weight: 800;
    color: var(--yellow-color);
    text-transform: uppercase;
    border-left: 4px solid var(--yellow-color);
    padding-left: 1em;
    margin-bottom: 1em;
    line-height: 1.2;
  }
  .visual-description {
    font-size: .9em;
    line-height: 1.6;
    margin-bottom: 2em;
    opacity: 0.9;
  }
  .contact-section .read-more { font-weight: bold; }
  .contact-section-right {
    flex: 1;
    background: var(--gray-color-4);
    display: flex;
    padding: 3.75em;
  }
  .contact-form {
    width: 100%;
    max-width: 550px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2em;
  }
  .form-footer { display: flex; justify-content: center; text-align: right; }
  .submit-btn {
    background: transparent;
    color: var(--blue-color);
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .submit-btn .arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }

  .features-section {
    background: var(--gray-color-5);
    padding: 4em 0;
  }
  .feature-icon {
    width: 120px;
    height: 120px;  
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--blue-color);
    font-size: 2em;
    border: 4px solid var(--yellow-color);
    box-shadow: 0 0 0 6px var(--yellow-color-shadow);
    margin-bottom: .5em;
    transition: all 0.3s ease;
  }
  .feature-icon>i {
    color: var(--blue-color);
  }
  .feature-icon>img {
    max-width: 75px;
    height: auto;
  }
  .feature-title, .features-section h1, .features-section h2, .features-section h3,
  .features-section h4, .features-section h5, .features-section h6 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue-color);
    text-transform: uppercase;
    margin-bottom: 1em;
    line-height: 1.4;
  }
  .feature-desc, .features-section p {
    font-size: .8em;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1em;
  }

  .promo-section {
    position: relative;
    background: var(--blue-color);
    display: flex;
    gap: 1em;
    overflow: hidden;
    align-items: stretch;
  }
  .promo-section::after {
    content: "";
    position: absolute;
    top: -5%;
    bottom: -5%;
    left: 45%;
    width: 180px;
    background: var(--blue-color);
    transform: skewX(12deg);
    transform-origin: top;
    z-index: 1;
    pointer-events: none;
  }
  .promo-section h2, .promo-section h3, .promo-section h4, .promo-section h5, .promo-section h6 {
    font-size: 2.25em;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
    padding-left: .5em;
    margin-bottom: .5em;
    line-height: 1.4;
  }
  .promo-section p {
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1em;
    line-height: 1.4;
    color: var(--white-color);
  }
  .promo-section .slide-read-more { font-weight: 700; }
  .promo-inner { 
    flex: 1; 
    z-index: 2; 
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 2em;
  }
  .promo-image { flex: 1; }
  .promo-image img { width: 100%; height: 100%; object-fit: cover; }
  .promo-section.promo-yellow-right {
    background: var(--yellow-color);
    flex-direction: row-reverse;
  }
  .promo-yellow-right .content-inner {
    text-align: right;
  }
  .promo-yellow-right h2, 
  .promo-yellow-right h3, 
  .promo-yellow-right h4, 
  .promo-yellow-right h5, 
  .promo-yellow-right h6 {
    color: var(--blue-color);
    border-right: 5px solid var(--blue-color);
    border-left: none;
    padding-right: .5em;
    padding-left: 0;
  }
  .promo-yellow-right::after {
    content: "";
    position: absolute;
    top: -5%;
    bottom: -5%;
    right: 44%;
    left: 48%;
    width: 180px;
    background: var(--yellow-color);
    transform: skewX(-4deg);
    transform-origin: top;
    z-index: 1;
    pointer-events: none;
  }
  .promo-yellow-right .content-inner { right: unset; }

  .projects-section { padding: 1em 0; }
  .projects-header { text-align: center; margin-bottom: 2em; }
  .projects-section-title {
    font-size: 2em;
    color: var(--yellow-color);
    font-weight: bold;
    line-height: 1.3;
    text-transform: uppercase;
  }
  .projects-section-description {
    font-size: .9em;
    line-height: 1.4;
    margin-bottom: 1em;
  }
  .project-image { width: 100%; max-height: 250px; height: 250px; position: relative; z-index: 1; }
  .project-content {
    background: #f9f9f9;
    padding: 4em 1em 2em 0;
    position: relative;
    z-index: 2;
    margin-top: -5em;
    clip-path: polygon(0 0, 100% 50px, 100% 100%, 0% 100%);
    width: 90%;
  }
  .project-title {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--yellow-color);
    padding-left: 1em;
    border-left: 4px solid var(--yellow-color);
    max-height: 3em;
    height: 3em;
    overflow: hidden;
    margin-bottom: 1em;
    text-transform: uppercase;
  }
  .project-description {
    padding-left: 1em;
    border-left: 4px solid transparent;
    font-size: .9em;
    line-height: 1.2;
    max-height: 6em;
    height: 6em;
    overflow: hidden;
    margin-bottom: 1em;
  }
  .promo-col {
    flex: 1;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 4em 3em;
  }
  .promo-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }
  .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
  }
  .overlay-dark {
    /*background-color: rgba(16, 28, 48, .85);*/
    background-color: var(--overlay-dark);
  }
  .overlay-yellow {
    /*background-color: rgba(242, 183, 5, .85);*/
    background-color: var(--overlay-yellow);
  }
  .promo-content {
    z-index: 2;
    max-width: 500px;
    width: 100%;
  }
  .dual-promo-section .col-dark .promo-content {
    position: absolute;
    right: 6.1em;
  }
  .dual-promo-section .col-yellow .promo-content {
    position: absolute;
    left: 3em;
  }
  .promo-title {
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
    padding-left: 1em;
    margin-bottom: .5em;
    line-height: 1.2;
  }
  .promo-desc {
    line-height: 1.6;
    color: var(--white-color);
    margin-bottom: 35px;
  }
  .home-carousel {
    background: var(--yellow-color);
    padding: 4em 0;
    width: 100%;
    overflow: hidden;
  }
  .carousel-title {
    font-size: 1.6em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: .5em;
    line-height: 1.2;
  }
  .carousel-description {
    font-size: .9em;
    line-height: 1.2;
    color: var(--blue-color);
    margin-bottom: 3em;
  }
  .nav-arrow {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .slider-card {
    flex: 0 0 32%; 
    max-width: 32%;
    border: 10px solid var(--yellow-border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blue-color); 
  }

  .page-hero-header {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--yellow-color);
    background-image: var(--page-header-bg);
    background-size: cover;
    background-position: center;
  }
  .page-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: var(--blue-color);
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 55% 100%, 0% 100%);
  }
  .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-content {
    width: 45%; 
    padding-right: 20px;
  }
  .hero-title {
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
    padding-left: .5em;
    margin-left: .5em;
    margin-bottom: .25em;
    line-height: 1;
  }
  .breadcrumb-nav {
    padding-left: 1.2em;
  }
  .breadcrumb-list {
    display: flex;
    gap: .5em;
    font-size: .9em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    list-style: none;
    padding-left: 0;
  }
  .breadcrumb-item a { color: var(--white-color); }
  .breadcrumb-item a:hover { color: var(--yellow-color); }
  .breadcrumb-item.active { color: var(--white-color); cursor: default; }
  .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin-right: 0;
    color: var(--white-color);
  }
  .info-grid { 
    list-style: none;
    padding: 2em 1em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
  }
  .info-item { flex: 1; }
  .info-icon-box {
    display: inline-block;
    width: fit-content;
    padding: .8em 1em;
    border: 2px solid var(--blue-color);
  }
  .info-text {
    margin-top: .25em;
  }
  .info-text>div {
    text-transform: uppercase;
    color: var(--blue-color);
    font-size: 1em;
    font-weight: bold;
  }
  .info-text>span { color: var(--blue-color); }
  .social-web-bar { padding: 2em 0; background: var(--blue-color); }
  .social-bar-flex {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    justify-content: center;
    align-items: center;
  }
  .social-bar-flex>div { flex: 1; display: flex; align-items: center; }
  .web-link-container { padding-left: 1em; }
  .web-icon-container { display: inline-block; }
  .web-icon-container>span {
    padding: .5em;
    border: 1px solid var(--white-color);
    color: var(--white-color);
  }
  .web-text { margin-left: .5em; color: var(--white-color); line-height: 1.1; }
  .web-text>div { font-weight: bold; }
  .contact-main-section { display: flex; justify-content: space-between; overflow: hidden; }
  .contact-main-section>div { flex: 1; }
  .map-container { width: 100%; max-height: 300px; height: 300px; }
  .business-contact-details { 
    background: var(--yellow-color);
    color: var(--white-color);
    padding: 3rem;
    height: 100%;
    position: relative;
  }
  .contact-details-wrapper { position: relative; }
  .contact-details-container { 
    display: flex; 
    gap: 1em; 
    justify-content: space-around; 
    position: absolute;
    right: 3%;
  }
  .contact-details-container>div { flex: 1; }
  .business-contact-detail { margin-bottom: 1em; }
  .business-contact-detail h3 { text-transform: uppercase; margin-bottom: 0; }
  .form-container { background: var(--gray-color-4); }
  .form-container>div { padding: 2em 0 2em 2em; }
  .map-holder { width: 100%; height: 100%; }

  .popup-dialog {
    border: none;
    padding: 0;
    border-radius: 0;
    background: #eaeff2;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: absolute;
    left: 45%;
    top: 45%;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .popup-dialog[open] {
    opacity: 1;
    transform: translateY(0);
  }
  .popup-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .dialog-content {
    padding: 3em 2em;
    text-align: center;
    color: var(--blue-color);
  }
  .dialog-logo {
    max-width: 200px;
    margin: 2em auto;
  }
  .dialog-message {
    font-size: 1em;
    font-weight: 600;
  }
  .dialog-close-btn {
    position: absolute;
    top: 1em;
    right: 1em;
    width: 1em;
    height: 1em;
    padding: .75em;
    background: #aeb4b7;
    border: none;
    color: var(--white-color);
    font-size: .8em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    outline: none;
  }

  .text-wrapper>p { margin: 2em 0; }
  .gallery {
    margin: 3em 0;
  }
  .img-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .5em 2em .5em 1em;
    font-size: ,9em;
    font-weight: bold;
    z-index: 2;
    background: var(--white-color);
    color: var(--blue-color);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    transition: opacity 0.3s;
  }
  .img-badge::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);    
    background: var(--yellow-color);
  }
  .gallery-item:nth-child(odd) .img-badge { color: var(--yellow-color); }
  .gallery-item:nth-child(odd) .img-badge::before {
    background: var(--blue-color);
  }
  body.gallery-page .overlay-content,
  body.text-page .overlay-content,
  body.article-page .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1em;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 3;
  }
  body.gallery-page .overlay-title,
  body.text-page .overlay-title,
  body.article-page .overlay-title {
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    padding-left: 1em;
    border-left: 5px solid var(--blue-color);
  }
  body.gallery-page .overlay-desc,
  body.text-page .overlay-desc,
  body.article-page .overlay-desc {
    font-size: .9em;
    line-height: 1.5;
    margin-bottom: 1em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    padding-left: 1.7em;
  }
  body.gallery-page .overlay-icon,
  body.text-page .overlay-icon,
  body.article-page .overlay-icon {
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s; /* Καθυστέρηση 0.2s */
    padding-left: 1.7em;
  }
  .video-section { margin: 3em 0 0 0; }
  .video-band { width: 100%; margin-top: 180px; padding-bottom: 80px; }
  .band-yellow { background: var(--yellow-color); }
  .band-dark { background: var(--blue-color); }
  .band-grey { background: var(--gray-color-4); }
  .video-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
  }
  .video-card {
    display: flex;
    flex-direction: column;
  }
  .video-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: -80px; 
    margin-bottom: 25px;
    overflow: hidden;
  }
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
  }
  .video-media { max-height: 500px; }
  .video-media img { width: 100%; height: 100%; object-fit: cover; }
  .video-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border: none;
  }
  .video-info {
    display: flex;
    align-items: flex-start;
    gap: 1em;
  }
  .video-num {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
  }
  .video-title {
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: .5em;
    line-height: 1.4;
  }
  .video-desc {
      font-size: .875em;
      line-height: 1.2;
  }
  .band-yellow .video-num, 
  .band-yellow .video-title { color: var(--blue-color); }
  .band-yellow .video-desc { color: var(--white-color); }
  .band-dark .video-num, 
  .band-dark .video-title { color: var(--yellow-color); }
  .band-dark .video-desc { color: var(--white-color); }
  .band-grey .video-num, 
  .band-grey .video-title { color: var(--yellow-color); }
  .card-landscape {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3em;
  }
  .card-landscape .video-media {
    flex: 1;
    margin-bottom: 0;
    margin-top: -60px;
  }
  .card-landscape .video-info {
    flex: 1;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .results-list {
    list-style: none;
    width: 100%;
    padding-left: 0;
  }
  .result-item:nth-child(odd) { background: var(--results-bg-color-odd); }
  .result-item:nth-child(even) { background: var(--results-bg-color-even); }
  .result-card {
    display: flex;
    align-items: center;
    padding: 2em 0;
    gap: 2.2em;
  }
  .result-icon-box {
    width: 55px;
    height: 55px;
    background: var(--yellow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
    flex-shrink: 0;
  }
  .result-content { flex: 1; }
  .result-title {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
    line-height: 1.3;
  }
  .result-desc {
    font-size: .9em;
    line-height: 1.2;
    color: var(--text-grey);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .result-action { flex-shrink: 0; }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }

  .pagination { margin: 2em 0; }
  /*.pagination-nav { display: flex; justify-content: flex-start; } */
  .pagination-list, .paging {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding-left: 0;
  }
  .page-link, .paging a, .paging span.active {
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 35px;
    height: 35px;*/
    border: 1px solid var(--blue-color);
    color: var(--blue-color);
    font-size: .9em;
    font-weight: 700;
    background: transparent;
    padding: .5rem .75rem;
  }
  .article-wrapper { margin: 3em 0 2em 0; min-height: 50vh; }
  .article-wrapper>p { margin-bottom: 1em; }
  .article-inline-image.align-right {
    float: right;
    width: 30%;
    margin: 1em 0 1em 1em;
  }
  .article-inline-image.align-left {
    float: left;
    width: 40%;
    margin: 1em 1em 1em 0;
  }
  .article-footer { padding: 1.5em 0; background: var(--gray-color-4); }
  .back-btn { 
    background: transparent;
    border: unset;
    color: var(--blue-color);
    margin-left: 1em;
    text-transform: uppercase;
    font-weight: bold;
  }

  .offer-countdown {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
  }
  .countdown-label {
    background: var(--yellow-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: bold;
    padding: 6px 30px 6px 15px; 
    text-transform: uppercase;    
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0% 100%);
  }
  .countdown-timer {
    background: var(--blue-color);
    color: var(--white-color);
    display: flex;
    gap: 25px;    
    padding: 10px 40px 10px 15px; 
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%);
  }
  .band-dark .countdown-label,
  .band-grey .countdown-label { background: var(--blue-color); }
  .band-dark .countdown-timer,
  .band-grey .countdown-timer { background: var(--yellow-color); }
  .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
  }
  .time-val {
    font-size: 1em;
    font-weight: 800;
    margin-bottom: .25em;
  }
  .time-text {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 0.5px;
  }
  .offer-buttons { margin-top: 1.5em; display: flex; gap: 1em; }
  .submit-request-btn {
    background: transparent;
    color: var(--white-color);
    font-size: .9em;
    font-weight: bold;
    text-transform: uppercase;
    border: unset;

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .submit-request-btn .arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  .band-grey .submit-request-btn { color: var(--blue-color); }
  .coupon-code { font-size: .8em; line-height: 1.1; font-weight: 500; }
  .band-yellow .coupon-code { color: var(--blue-color); }
  .band-dark .coupon-code, .band-grey .coupon-code { color: var(--yellow-color); }

  #g-recaptcha { flex: 1; }

  .floating-messenger-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #0084FF;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
  }
  .floating-messenger-btn:hover {
    transform: translateY(-3px);
    background-color: #006bce;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #fff;
  }
  .messenger-icon {
    width: 24px;
    height: 24px;
    fill: white;
  }

  #fixed-banner {
    display: block;
    position: fixed;
    bottom: auto;
    right: auto;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 100%;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    z-index: 999;
  }
  #fixed-banner.top { top: 0; }
  #fixed-banner.bottom { bottom: 0; }
  #fixed-banner.left { left: 0; }
  #fixed-banner.right { right: 0; }
  #fixed-banner > .inner-image {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
  }
  #fixed-banner > .full-image {
      display: block;
      position: relative;
      width: auto;
      height: auto;
  }
  #fixed-banner > .close {
      position: absolute;
      top: 10px;
      bottom: auto;
      left: auto;
      right: 10px;
  }
  #fixed-banner > p, #fixed-banner > h3, #fixed-banner > div {
      display: block;
      width: 100%; 
      padding: 20px 15px 0;
      margin: 0;
  }
  #fixed-banner > *:last-child:not(img) {
      padding-bottom: 20px;
  }
  #fixed-banner.goTo {
      cursor: pointer;
  }

  /* Style accessibility bar */
  #accessibility-bar {
    background-color: #ffffff;
    color: #2d2d2d;
    display: block;
    position: fixed;
    width: 70px;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.31);
    z-index: 999;
    top: 30%;
    left: 0;
  }
  #accessibility-bar a.access-icon {
      color: inherit;
      font-size: 30px;
      display: block;
      text-align: center;
      margin: 10px 0;
  }
  #accessibility-bar .buttons {
      display: none;
      position: relative;
      width: 100%;
      margin: auto;
      padding: 0 10px;
      background-color: #ffffff;
  }
  #accessibility-bar .access-arrow {
      display: block;
      position: relative;
      text-align: center;
      background-color: #fff;
      padding: 5px;
      margin-top: -10px;
      width: 30px;
      height: 30px;
      margin: auto;
      transition: all 0.3s ease;
  }
  #accessibility-bar .access-arrow.open {
      transform: rotateZ(180deg)
  }
  #accessibility-bar #text-small-btn { font-size: 10px; }
  #accessibility-bar #text-medium-btn { font-size: 14px; }
  #accessibility-bar #text-large-btn { font-size: 18px; }
  #accessibility-bar #text-blue-bg { color: #0f2dd6; }
  #accessibility-bar #text-blue-bg, #accessibility-bar #text-black-bg {
      font-size: 14px;
  }
  #accessibility-bar #text-blue-bg:hover {
      background-color: #0f2dd6;
      color: #d6c90f;
  }

  .header-img-notitle img { width: 100%; height: 100%; }
  .footer-bottom .lang-switcher { padding: .5rem 0; }
  .footer-bottom .langs { padding-right: 1rem; border-right: 2px solid var(--blue-gray-color); }
  .footer-bottom-left { display: flex; gap: 10px; justify-content: space-between; align-items: center; }
  .terms-link { padding-left: 1rem; }
  .terms-link a { text-transform: uppercase; font-weight: 700; }
  #back-to-top-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--yellow-color);
    color: var(--white-color);
    border: 2px solid var(--white-color);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  }
  #back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
  }

  .contact-addresses-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .multiple-address {
    display: flex;
    min-height: 400px;
  }
  .multiple-address-map {
    flex: 1;
    position: relative;
  }
  .contact-addresses-section .map-container {
    width: 100%;
    max-height: 400px;
    height: 400px;
  }
  .contact-addresses-section .map-holder {
    width: 100%;
    height: 100%;
  }
  .multiple-address-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3em;
    gap: 2.5em;
  }
  .address-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5em;
  }
  .contact-addresses-section .info-icon-box {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
  }
  .contact-addresses-section .info-icon-box .icon {
    width: 24px;
    height: 24px;
    /*fill: currentColor;*/
  }
  .address-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
  }
  .address-detail h2 {
    font-size: 1.1em;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
  }
  .address-detail p {
    font-size: 0.95em;
    line-height: 1.4;
    margin: 0;
  }
  .multiple-address.one-address {
    width: 100%;
    flex-direction: row;
  }
  .multiple-address.one-address .multiple-address-details {
    background: var(--yellow-color);
    color: var(--blue-color);
  }
  .multiple-address.more-addresses {
    width: 50%;
  }
  .multiple-address.more-addresses:nth-child(odd) {
    flex-direction: row; 
  }
  .multiple-address.more-addresses:nth-child(odd) .multiple-address-details {
    background: var(--blue-color);
    color: var(--white-color);
  }
  .multiple-address.more-addresses:nth-child(even) {
    flex-direction: row-reverse;
  }
  .multiple-address.more-addresses:nth-child(even) .multiple-address-details {
    background: var(--yellow-color);
    color: var(--blue-color);
  }

  @media screen and (max-width: 150em) {
    .slider-prev-btn {
      left: 20em;
    }
  }

  @media screen and (max-width: 140em) {
    .promo-section::after {
      left: 40%;
      width: 225px;
    }
    .slide-content::after {
      left: 90%;
      width: 225px;
    }
  }

  @media screen and (max-width: 120em) {
    .slider-next-btn {
      right: 10em;
    }
    .slider-prev-btn {
      left: 10em;
    }
  }

  @media screen and (max-width: 100em) {
    .slide-content::after, .promo-section::after {
      transform: unset;
    }
    .slider-next-btn {
      right: 5em;
    }
    .slider-prev-btn {
      left: 5em;
    }
  }

  @media screen and (max-width: 90.625em) {
    .slider-control {
      top: unset;
      left: 9.5em;
      right: unset;
      bottom: 2.5em;
    }
    .slider-next-btn { margin-left: 5em; }
  }

  @media screen and (max-width: 75em) {
    .logo { width: 300px; }
    .mobile-menu-label {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
    }
    .mobile-menu-label span,
    .mobile-menu-label span::before,
    .mobile-menu-label span::after {
        background-color: var(--blue-color);
        height: 3px;
        width: 100%;
        position: absolute;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .mobile-menu-label span { top: 11px; }
    .mobile-menu-label span::before { content: ''; top: -8px; }
    .mobile-menu-label span::after { content: ''; top: 8px; }
    .menu {
      display: none;
      width: 100%;
      flex-direction: column;
    }
    .menu-link {
      display: block;
      padding: .5em;
    }
    .mobile-menu:checked ~ .menu {
        display: flex;
        animation: slideDown 0.3s ease-in-out;
    }
    .mobile-menu:checked ~ .mobile-menu-label span { background: transparent; }
    .mobile-menu:checked ~ .mobile-menu-label span::before { top: 0; transform: rotate(45deg); }
    .mobile-menu:checked ~ .mobile-menu-label span::after { top: 0; transform: rotate(-45deg); }
    .slide-image { flex-grow: 2; }
    .slide-content::after, .promo-section::after { display: none; }
    .content-inner {
      width: 100%;
      position: relative;
      right: unset;
      top: unset;
      padding: 1.5em;
    }
    .slide-title { font-size: 1.5em; margin-bottom: 2em; }
    .slider-control {
      left: unset;
    }
    .slider-prev-btn { margin-left: 1.5em; }
    .slider-next-btn { margin-left: 6.5em; }

    .articles-section { background: var(--blue-color); }
    .gallery-grid , .articles-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 στήλες σε tablets */
    }
    .contact-section-left { display: block; }
    .visual-content {
      position: relative;
      max-width: 100%;
      right: unset;
      padding: 2em 1em;
    }
    .contact-section-right {
      padding-left: 1em;
      padding-right: 1em;
    }
    .contact-form { width: 100%; max-width: 100%; }
    .dual-promo-section .col-dark .promo-content,
    .dual-promo-section .col-yellow .promo-content { position: relative; left: unset; right: unset; max-width: 100%; }
    .slider-card {
      flex: 0 0 48%;
      max-width: 48%;
    }
    .contact-main-section { flex-direction: column; }
    .business-contact-details { padding: 3em 1em; }
    .form-container>div { padding: 2em 1em; }
    .video-grid-2 { grid-template-columns: repeat(1, 1fr); }
    .video-card { margin-bottom: 5em; }
    .contact-section .promo-col.col-dark { padding: 15em 3em; }
    .contact-section .promo-col.col-dark .promo-content {
      right: 0;
      left: 0;
      padding-left: 1em;
      max-width: 100%;
    }
    .projects-grid .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .contact-details-container {
      position: relative;
      right: unset;
      padding-left: 1rem;
    }
    .multiple-address.more-addresses {
      width: 100%;
    }
    .multiple-address,
    .multiple-address.more-addresses:nth-child(odd),
    .multiple-address.more-addresses:nth-child(even) {
      flex-direction: column !important; 
    }    
    .multiple-address-map {
      flex: none;
    }
  }

  @media screen and (max-width: 65em) {
    .welcome-text-left { width: 100%; }
    .welcome-text-left>p { width: 100%; }
  }

  @media screen and (max-width: 62.5em) {
    .footer-container { padding: 1rem 1rem 2rem 1rem; }
    .footer-top { display: block; }
    .footer-top>.company-brand, .footer-top>.footer-menu, .footer-top>.address-details { 
      padding: 1em 1em 2em 0;
      border-right: unset;
      border-bottom: 2px solid var(--blue-gray-color);
      text-align: center;
    }
    .footer-menu .menu-item { margin: 0; }
    .footer-top>.address-details { border-bottom: unset; }
    .footer-top .logo { margin-left: auto; margin-right: auto; }
    .footer .contact-info {
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }
    .search-btn { right: 0; left: 14rem; }
    .footer .contact-detail { display: inline-block; width: 350px; }
    .address {
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
      padding-left: 10rem;
    }
    .card-landscape { flex-direction: column; }
    .article-inline-image.align-right,
    .article-inline-image.align-left { float: unset; width: 100%; margin: 1em 0; }
    .article-inline-image img { width: 100%; height: auto; }
  }

  @media screen and (max-width: 50em) {
    .page-hero-header::before { clip-path: unset; }
    .hero-content { width: 100%; }
    .info-grid { flex-direction: column; text-align: center; }
    .social-bar-flex { flex-direction: column; }
    .contact-details-container { flex-direction: column; text-align: center; }
    .slideshow .slide { flex-direction: column; }
  }

  @media screen and (max-width: 45em) {
    .footer-menu .menu-item { margin: .5em 0; }
    .footer-menu .menu-item .menu-link { padding: .25em; }
    .address { padding-left: 0; }
    .footer .contact-detail { width: fit-content; }
    .popup-dialog { left: 1em; }
  }

  @media screen and (max-width: 37.5em) {
    .gallery-grid, .articles-grid, .contact-form { grid-template-columns: 1fr; }
    .project-content { margin-top: 0; }
    .promo-col { padding: 1em; }
    .result-card { flex-direction: column; }
    .hero-content .search-btn { left: unset; right: .5em; }
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/*
  UTILITIES

  Small single-purpose classes (like Tailwind-ish ideas).
  These are intentionally “quick wins” and should be consistent.
 */
@layer utilities {
  .icon { 
    width: 1em; 
    height: 1em; 
    display: inline; 
    vertical-align: -0.125em; 
    filter: var(--blue-color-icon); 
  }
  .menu-icon {
    width: .75em; 
    height: 1em; 
    display: inline; 
    vertical-align: -0.125em; 
    filter: var(--blue-color-icon); 
  }
  .flag {
    width: 1em;
    height: 1em;
    display: inline;
    vertical-align: -0.125em;
  }
  .arrow-icon {
    width: 1.5em; 
    height: 1em; 
    display: inline; 
    vertical-align: -0.125em; 
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(340deg) brightness(99%) contrast(102%);
  }
  .read-more { text-transform: uppercase; }
  .article-read-more { color: var(--blue-color); text-transform: uppercase; font-weight: bold; }
  .full-width { grid-column: span 2; }
  .title-dark { color: var(--blue-color); border-left-color: var(--blue-color); }
  .card-icon {
    font-size: 3em;
    margin-bottom: .2em;
    color: var(--blue-color);
  }
  .card-title {
    font-size: 1.15em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: .5em;
    line-height: 1.4;
    padding: 0 1em;
  }
  .card-text {
    font-size: .8em;
    line-height: 1.2;
    margin-bottom: 1em;
    font-weight: 500;
    padding: 0 1em;
  }
  .read-more-wrapper { padding-left: 1em; }
  .footer-menu-icon { 
    display: none; 
    padding-right: 5px; 
    filter: var(--yellow-color-icon); 
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
  }
  .arrow-top-icon { width: 1.5rem; height: 1.5rem; }
  .button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue-color);
    font-family: inherit;
    transition: all 0.3s ease;
  }
  .button::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 2px;
    background-color: currentColor;
    margin-left: 12px;
    order: 1;
    transition: width 0.3s ease;
  }
  .button::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: -6px;
    order: 2;
  }
  .button.inverst {
    color: var(--yellow-color);
  }

  @media screen and (max-width: 37.5em) {
    .full-width { grid-column: span 1; }
  }
}

/*
  PAGE-SPECIFIC / OVERRIDES

  This is OPTIONAL, try to keep it minimal.

  Instead of IDs, it’s often:

  * route-level wrappers (.page-home, .page-pricing)
  * one-off overrides
 */
@layer overrides {
  .page-home .hero {
    padding-block: 4rem;
  }
  .footer .address .icon {
    filter: var(--white-color-icon);
    width: 1em;
    height: 1em;
  }
  .search-btn .icon { width: 1.25em; height: 1.25em; }
  .footer-bottom .footer-container { 
    display: flex; 
    gap: 2em;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  .footer-bottom .lang-code { color: var(--white-color); }
  .footer-bottom .menu-icon { filter: var(--white-color-icon); }
  .footer-bottom #language-list {
    top: -7.5rem;
  }
  .footer-bottom #language-list .lang-code { color: var(--blue-color); }
  .article-read-more>.arrow-icon { filter: var(--blue-color-icon); }
  .view-all-content .icon {
    display: block;
    margin: 0 auto 1em auto;
    filter: var(--white-color-icon) !important;
    width: 8em;
    height: 8em;
  }
  .slide-read-more .arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  .articles-section .article-read-more {
    color: var(--white-color);

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .articles-section .article-read-more .arrow-icon {
    filter: var(--white-color-icon);

    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  .submit-btn .arrow-icon { filter: var(--blue-color-icon); }
  .features-section .read-more { 
    color: var(--blue-color); 
    font-weight: bold; 
    /* Add hover style */
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em;
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .features-section .read-more .arrow-icon { 
    filter: var(--blue-color-icon); 
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;

  }
  .projects-section .read-more {
    color: var(--blue-color);
    font-weight: bold;
    padding-left: 1em;
    border-left: 4px solid transparent;

    /* Add hover style */
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em;
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .projects-section .read-more .arrow-icon {
    filter: var(--blue-color-icon);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  .dual-promo-section .read-more { 
    font-weight: bold;
    color: var(--white-color);
    
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .dual-promo-section .read-more .arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  .home-carousel .read-more {
    font-weight: bold;

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    padding-top: 1em;
    padding-bottom: 1em;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .home-carousel .read-more .arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  .info-icon-box .icon {
    width: 1.5em;
    height: 1.5em;
  }
  .social-bar-flex .social { justify-content: end; padding-right: .5em; }
  .social-bar-flex .social-item { background: var(--white-color); padding: .5em; }
  body.gallery-page .gallery-item,
  body.text-page .gallery-item,
  body.article-page .gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    width: 100%;
  }
  body.gallery-page .gallery-item figure,
  body.text-page .gallery-item figure,
  body.article-page .gallery-item figure {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
  }
  body.gallery-page .gallery-item figure img,
  body.text-page .gallery-item figure img,
  body.article-page .gallery-item figure img {
    transition: transform 0.5s ease;
  }
  body.gallery-page .arrow-icon,
  body.text-page .arrow-icon,
  body.article-page .arrow-icon { 
    filter: var(--white-color-icon); 
  }
  .hero-content .search-form { padding-left: 1.2em; margin-top: .5em; }
  .hero-content .search-form input { width: 100%; }
  body.search-page .read-more { color: var(--blue-color); font-weight: bold; }
  body.search-page .read-more .arrow-icon { filter: var(--blue-color-icon); }
  body.articles-page .video-band { padding-bottom: 40px; }
  body.articles-page .video-desc { margin-bottom: 1em; }
  body.articles-page .read-more {
    color: var(--white-color);
    font-weight: bold;

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  body.articles-page .read-more .arrow-icon {
    filter: var(--white-color-icon);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  body.articles-page .band-grey .read-more { color: var(--blue-color); }
  body.articles-page .band-grey .read-more .arrow-icon { filter: var(--blue-color-icon); }
  body.article-page .back-btn .arrow-icon { filter: var(--blue-color-icon); }
  body.offers-page .video-media { margin-top: -120px; }
  .offer-buttons .read-more { 
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: .75em 1em;
    font-weight: bold;
    text-transform: uppercase;
    font-size: .9em;
  }
  .band-grey .offer-buttons .read-more { border: 1px solid var(--blue-color); color: var(--blue-color); }
  .band-grey .submit-request-btn .arrow-icon { filter: var(--blue-color-icon); }
  body.offers-page .video-title { margin-bottom: 0; }
  body.offers-page .video-desc { margin-top: 1em; }

  #declare-interest-dialog { max-width: 700px; width: 700px; left: 30%; top: 30%; }
  #declare-interest-dialog .offer-dialog-header,
  #error-on-declare-interest-dialog .offer-dialog-header {
    background: var(--yellow-color);
    padding: 2em;
    display: flex;
    gap: 1em;
    justify-content: space-between;
    align-items: center;
  }
  #declare-interest-dialog .dialog-header-content,
  #error-on-declare-interest-dialog .dialog-header-content { 
    line-height: 1.2;
    padding-left: .5em;
    border-left: 3px solid var(--blue-color);
    flex: 2;
  }
  #declare-interest-dialog .offer-title,
  #error-on-declare-interest-dialog .offer-title {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--blue-color);
    text-transform: uppercase;
  }
  #declare-interest-dialog .offer-coupon,
  #error-on-declare-interest-dialog .offer-coupon {
    color: var(--white-color);
    font-size: .875em;
    font-weight: 500;
  }
  #close-offer-dialog-btn,
  #close-offer-error-dialog-btn {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--white-color);
    width: 20px;
    height: 20px;
    font-size: 12px;
    padding: 0;
    outline: none;
  }
  #declare-interest-dialog .offer-dialog-body,
  #error-on-declare-interest-dialog .offer-dialog-body { padding: 2em; }
  #declare-interest-dialog .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-bottom: 2em;
  }
  #declare-interest-dialog .form-group.full-width { grid-column: 1 / -1; }
  #declare-interest-dialog .form-actions { display: flex; justify-content: center; text-align: right; }
  #declare-interest-dialog .submit-offer-btn {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: .875em;
    font-weight: bold;
    color: var(--blue-color);

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  #declare-interest-dialog .submit-offer-btn .arrow-icon {
    filter: var(--blue-color-icon);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }
  #error-on-declare-interest-dialog .error-message-container {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    align-items: center;
  }
  #error-on-declare-interest-dialog .error-icon { font-size: 48px; color: var(--blue-color); }
  #error-on-declare-interest-dialog .error-text p {
    color: var(--blue-color);
    font-size: .875em;
    line-height: 1.4;
    font-weight: 500;
  }
  #error-on-declare-interest-dialog .error-dialog-footer { 
    padding: 1em 2em;
    text-align: center;
    border-top: 2px solid var(--gray-color-3);
  }
  #error-on-declare-interest-dialog #retry-offer-btn {
    background: transparent;
    border: none;
    color: var(--yellow-color);
    font-size: 1.25em;
    font-weight: 500;
  }
  .slider-card .arrow-icon { filter: var(--blue-color-icon); }
  .contact-section .promo-content { position: absolute; right: 5em; }
  .contact-section .promo-col .read-more {
    color: var(--white-color);

    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 2em; 
    padding-left: 0;
    transition: padding 0.4s ease-in-out, color 0.3s;
  }
  .contact-section .promo-col .read-more .arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -0.5em;
  }

  header.promo-section::after { left: 41%; }
  header.promo-section .hero-container { flex: 1; }
  header.promo-section .hero-content {
    position: absolute;
    right: -1.5em;
    top: 20em;
  }
  .multiple-address.more-addresses:nth-child(odd) .multiple-address-details .icon {
    filter: var(--white-color-icon);
  }

  body.mutedGreen {
    --blue-color: #203c48;
    --yellow-color: #48906b;
    --blue-color-icon: invert(17%) sepia(34%) saturate(745%) hue-rotate(153deg) brightness(99%) contrast(88%);
    --yellow-color-icon: invert(52%) sepia(31%) saturate(621%) hue-rotate(97deg) brightness(89%) contrast(81%);
    --yellow-color-shadow: rgba(72, 144, 107, .25);
    --overlay-dark: rgba(32, 60, 72, 0.85);
    --overlay-yellow: rgba(72, 144, 107, .85);
    --yellow-border-color: rgba(65, 128, 101, .85);
    --footer-overlay: linear-gradient(rgba(32, 60, 72, 0.92), rgba(32, 60, 72, 0.92));
  }
  body.darkRed {
    --blue-color: #260903;
    --yellow-color: #ae2831;
    --blue-color-icon: invert(7%) sepia(10%) saturate(7246%) hue-rotate(340deg) brightness(99%) contrast(103%);
    --yellow-color-icon: invert(20%) sepia(27%) saturate(5840%) hue-rotate(337deg) brightness(97%) contrast(93%);
    --yellow-color-shadow: rgba(174, 40, 49, .25);
    --overlay-dark: rgba(38, 9, 3, 0.85);
    --overlay-yellow: rgba(174, 40, 49, .85);
    --yellow-border-color: rgba(152, 35, 43, .85);
    --footer-overlay: linear-gradient(rgba(38, 9, 3, 0.92), rgba(38, 9, 3, 0.92));
    --blue-gray-color: #523F39;
  }
  body.brightOrange {
    --blue-color: #222222;
    --yellow-color: #ff8905;
    --blue-color-icon: invert(9%) sepia(6%) saturate(13%) hue-rotate(314deg) brightness(96%) contrast(88%);
    --yellow-color-icon: invert(52%) sepia(69%) saturate(1435%) hue-rotate(356deg) brightness(102%) contrast(103%);
    --yellow-color-shadow: rgba(255, 137, 5, .25);
    --overlay-dark: rgba(34, 34, 34, 0.85);
    --overlay-yellow: rgba(255, 137, 5, .85);
    --yellow-border-color: rgba(244, 132, 6, .85);
    --footer-overlay: linear-gradient(rgba(34, 34, 34, 0.92), rgba(34, 34, 34, 0.92));
    --blue-gray-color: #58595B;
  }
  body.charcoalBlack {
    --blue-color: #000000;
    --yellow-color: #95a4b9;
    --blue-color-icon: invert(0%) sepia(7%) saturate(7500%) hue-rotate(17deg) brightness(107%) contrast(107%);
    --yellow-color-icon: invert(85%) sepia(2%) saturate(5346%) hue-rotate(186deg) brightness(82%) contrast(72%);
    --yellow-color-shadow: rgba(149, 164, 185, .25);
    --overlay-dark: rgba(0, 0, 0, 0.85);
    --overlay-yellow: rgba(149, 164, 185, .85);
    --yellow-border-color: rgba(141, 156, 175, .85);
    --footer-overlay: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92));
    --blue-gray-color: #434446;
  }
  body.darkBrown {
    --blue-color: #2c2014;
    --yellow-color: #a19184;
    --blue-color-icon: invert(9%) sepia(26%) saturate(1020%) hue-rotate(349deg) brightness(99%) contrast(91%);
    --yellow-color-icon: invert(68%) sepia(4%) saturate(1248%) hue-rotate(345deg) brightness(87%) contrast(81%);
    --yellow-color-shadow: rgba(161, 145, 132, .25);
    --overlay-dark: rgba(44, 32, 20, 0.85);
    --overlay-yellow: rgba(161, 145, 132, .85);
    --yellow-border-color: rgba(155, 139, 126, .85);
    --footer-overlay: linear-gradient(rgba(44, 32, 20, 0.92), rgba(44, 32, 20, 0.92));
    --blue-gray-color: #5B524D;
  }
  body.deepNavy {
    --blue-color: #020e4a;
    --yellow-color: #0e67e9;
    --blue-color-icon: invert(7%) sepia(89%) saturate(4299%) hue-rotate(215deg) brightness(81%) contrast(115%);
    --yellow-color-icon: invert(24%) sepia(51%) saturate(4819%) hue-rotate(211deg) brightness(98%) contrast(89%);
    --yellow-color-shadow: rgba(14, 103, 233, .25);
    --overlay-dark: rgba(2, 14, 74, 0.85);
    --overlay-yellow: rgba(14, 103, 233, .85);
    --yellow-border-color: rgba(13, 98, 223, .85);
    --footer-overlay: linear-gradient(rgba(2, 14, 74, 0.92), rgba(2, 14, 74, 0.92));
    --blue-gray-color: #424E78;
  }

  @media screen and (max-width: 75em) {
    body.offers-page .video-media {
      margin-top: -80px;
    }
    header.promo-section { flex-direction: column; }
    header.promo-section .hero-content { position: relative; right: unset; top: unset; margin-top: 10rem; }
  }

  @media screen and (max-width: 37.5em) {
    #declare-interest-dialog {
      max-width: 100%;
      width: 100%;
      left: 0;
    }
    #declare-interest-dialog .form-grid { display: block; }
    #declare-interest-dialog .form-grid .form-group { margin: 1em 0; }
    #error-on-declare-interest-dialog, #contact-form-message-sent { left: 0; }
  }
}

/*
  STATES & HELPERS

  We MAY need some of these.
 */
@layer states {
  .is-active>.menu-link {
    color: var(--yellow-color);
  }
  .is-active::before {
    content: "";
    position: absolute;
    top: -1.1em;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--gray-color);
  }
  .menu-link:hover { background: var(--gray-color-2); }
  .menu-item.has-submenu:hover>.sub-menu,
  .menu-item.has-submenu:hover>.sub-menu-lvl2 { display: block; }
  .menu-item.has-submenu:hover>.submenu-toggle-label .menu-arrow-down { display: none; }
  .menu-item.has-submenu:hover>.submenu-toggle-label .menu-arrow-up { display: inline; }
  .sub-menu .menu-link:hover { background: inherit; }
  .sub-menu>.menu-item:hover {
    background: var(--yellow-color);
    border-left: 3px solid var(--blue-color);
    border-bottom: 2px solid var(--yellow-color);
  }
  .sub-menu-lvl2>.menu-item:hover {
    background: var(--blue-color);
    color: var(--yellow-color);
    border-left: 3px solid var(--yellow-color);
  }
  .sub-menu-lvl2>.menu-item:hover .menu-link {
    color: var(--yellow-color);
  }
  .lang-switcher:focus-within #language-list { display: block; }
  .lang-switcher:focus-within .menu-arrow-down { display: none; }
  .lang-switcher:focus-within .menu-arrow-up { display: block; }
  #language-list a:hover { background: var(--yellow-color); }
  .slide-read-more:hover { 
    color: var(--yellow-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .slide-read-more:hover .arrow-icon { 
    filter: var(--yellow-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .slider-control:hover {
    border: 1px solid var(--yellow-color);
    background: var(--yellow-color);
  }

  .read-more:hover { color: var(--yellow-color); }
  .read-more:hover .arrow-icon { 
    filter: var(--yellow-color-icon);
  }
  .footer-menu .is-active::before { display: none; }
  .footer-menu .menu-link:hover { background: inherit; color: var(--yellow-color); }
  .footer-menu .menu-link:hover .footer-menu-icon { display: inline-block; }
  .footer-menu .is-active .arrow-icon {
    margin-right: .5em;
    filter: var(--yellow-color-icon);
  }
  .footer-bottom .lang-switcher:focus-within .menu-arrow-down { display: block; }
  .footer-bottom .lang-switcher:focus-within .menu-arrow-up { display: none; }
  .article-read-more:hover { color: var(--yellow-color); }
  .article-read-more:hover>.arrow-icon { filter: var(--yellow-color-icon); }
  .view-all-articles:hover {
    color: var(--yellow-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .view-all-articles:hover .arrow-icon {
    filter: var(--yellow-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .submit-btn:hover {
    color: var(--yellow-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .submit-btn:hover .arrow-icon {
    filter: var(--yellow-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .dual-promo-section .col-yellow .read-more:hover { color: var(--blue-color); }
  .dual-promo-section .col-yellow .read-more:hover .arrow-icon { filter: var(--blue-color-icon); }
  .nav-arrow:hover { background: var(--blue-color); }
  .home-carousel .read-more:hover {
    color: var(--white-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .home-carousel .read-more:hover .arrow-icon {
    filter: var(--white-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .dialog-close-btn:hover { background: var(--yellow-color); }
  body.gallery-page .gallery-item:hover figure img,
  body.text-page .gallery-item:hover figure img,
  body.article-page .gallery-item:hover figure img {
    transform: scale(1.1);
  }
  body.gallery-page .gallery-item:hover .img-badge,
  body.text-page .gallery-item:hover .img-badge,
  body.article-page .gallery-item:hover .img-badge { 
    opacity: 0; 
  }
  body.gallery-page .gallery-item:hover .overlay-content,
  body.text-page .gallery-item:hover .overlay-content,
  body.article-page .gallery-item:hover .overlay-content { 
    opacity: 1; 
  }
  body.gallery-page .gallery-item:hover .overlay-title,
  body.text-page .gallery-item:hover .overlay-title,
  body.article-page .gallery-item:hover .overlay-title,
  body.gallery-page .gallery-item:hover .overlay-desc,
  body.text-page .gallery-item:hover .overlay-desc,
  body.article-page .gallery-item:hover .overlay-desc,
  body.gallery-page .gallery-item:hover .overlay-icon,
  body.text-page .gallery-item:hover .overlay-icon,
  body.article-page .gallery-item:hover .overlay-icon {
      transform: translateY(0);
      opacity: 1;
  }
  .gallery-item:nth-child(odd):hover .overlay-content {
    background: var(--blue-color);
    opacity: .95;
    color: var(--white-color);
  }
  .gallery-item:nth-child(odd):hover .overlay-title {
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
  }
  .gallery-item:nth-child(even):hover .overlay-content {
    background: var(--yellow-color);
    opacity: .95;
    color: var(--white-color);
  }
  .gallery-item:nth-child(even):hover .overlay-title {
    color: var(--blue-color);
  }
  .play-btn:hover {
    background-color: var(--yellow-color);
    border-color: var(--yellow-color);
    color: var(--blue-color);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .result-title:hover { color: var(--blue-color); }

  body.articles-page .band-yellow .read-more:hover { color: var(--blue-color); }
  body.articles-page .band-yellow .read-more:hover .arrow-icon { filter: var(--blue-color-icon); }
  body.articles-page .band-dark .read-more:hover { color: var(--yellow-color); }
  body.articles-page .band-dark .read-more:hover .arrow-icon { filter: var(--yellow-color-icon); }
  .page-link.active, .paging span.active {
    color: var(--white-color); 
    background: var(--yellow-color); 
    border: 1px solid var(--yellow-color);
  }
  .page-link:hover, .paging a:hover { 
    color: var(--white-color); 
    background: var(--yellow-color); 
    border: 1px solid var(--yellow-color); 
  }
  .back-btn:hover { color: var(--yellow-color); }
  .back-btn:hover .arrow-icon { filter: var(--yellow-color-icon); }
  .band-yellow .offer-buttons .read-more:hover,
  .band-grey .offer-buttons .read-more:hover { 
    background: var(--blue-color); 
    color: var(--yellow-color);
    border: 1px solid var(--blue-color);
  }
  .band-dark .offer-buttons .read-more:hover {
    background: var(--yellow-color); 
    color: var(--blue-color);
    border: 1px solid var(--yellow-color);
  }
  .submit-request-btn:hover {
    color: var(--blue-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .band-dark .submit-request-btn:hover {
    color: var(--yellow-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .band-yellow .submit-request-btn:hover .arrow-icon {
    filter: var(--blue-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .band-dark .submit-request-btn:hover .arrow-icon {
    filter: var(--yellow-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .band-grey .submit-request-btn:hover {
    color: var(--yellow-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .band-grey .submit-request-btn:hover .arrow-icon {
    filter: var(--yellow-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  #declare-interest-dialog .submit-offer-btn:hover {
    color: var(--yellow-color);
    padding-right: 0;
    padding-left: 2em;
  }
  #declare-interest-dialog .submit-offer-btn:hover .arrow-icon {
    filter: var(--yellow-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }

  .slider-card .read-more:hover .arrow-icon { filter: var(--white-color-icon); }
  .features-section .read-more:hover {
    color: var(--yellow-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .features-section .read-more:hover .arrow-icon {
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .projects-section .read-more:hover {
    padding-right: 0;
    padding-left: 2em;
  }
  .projects-section .read-more:hover .arrow-icon {
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .dual-promo-section .read-more:hover {
    padding-right: 0;
    padding-left: 2em;
  }
  .dual-promo-section .read-more:hover .arrow-icon {
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .contact-section .promo-col .read-more:hover {
    padding-right: 0;
    padding-left: 2em;
  }
  .contact-section .promo-col .read-more:hover .arrow-icon {
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .articles-section .article-read-more:hover {
    padding-right: 0;
    padding-left: 2em;
  }
  .articles-section .article-read-more:hover .arrow-icon {
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  body.articles-page .read-more:hover {
    padding-right: 0;
    padding-left: 2em;
  }
  body.articles-page .read-more:hover .arrow-icon {
    animation: arrow-fly 0.4s ease-in-out forwards;
  }
  .hidden { display: none; }
  .highlight { background: #ffeeba; }
  #back-to-top-btn:hover { background: var(--blue-color); }
  .button:hover { color: var(--yellow-color); }
  .button.inverst:hover { color: var(--blue-color); }
  .button:hover::before {
    order: -2;
    margin-left: 0;
    width: 18px;
  }
  .button:hover::after {
    order: -1;
    margin-left: -6px;
    margin-right: 12px;
  }
  .promo-yellow-right .slide-read-more:hover { 
    color: var(--blue-color);
    padding-right: 0;
    padding-left: 2em;
  }
  .promo-yellow-right .slide-read-more:hover .arrow-icon { 
    filter: var(--blue-color-icon);
    animation: arrow-fly 0.4s ease-in-out forwards;
  }

  @media screen and (max-width: 75em) {
    .is-active::before {
      display: none;
    }
    .menu-item.has-submenu>.menu-link { display: inline-block; }
    .sub-menu, .sub-menu-lvl2 {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
    }
  }

  @keyframes arrow-fly {
    0% {
        right: 0;
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        right: 0;
        transform: translateX(10px);
        opacity: 0;
    }
    41% {
        right: calc(100% - 1.5em); 
        transform: translateX(-10px);
        opacity: 0;
    }
    100% {
        right: calc(100% - 1.5em);
        transform: translateX(0);
        opacity: 1;
    }
  }
}

/*
* Accessibility layer
* THIS IS FAKE. NEED REVIEW
*/
@layer accessibility {
  body.medium-text { font-size: 20px; }
  body.large-text { font-size: 24px; }
  body.bw-text .main-menu, body.bw-text .highlight { background: #2d2d2d; }
  body.bw-text .main-menu .menu-link { color: #fff; }
  body.bw-text .menu-link:hover { background: inherit; color: #fff; }
  body.bw-text .main-menu .menu-icon { filter: var(--white-color-icon); }
  body.bw-text .sub-menu { background: #2d2d2d; }
  body.bw-text .sub-menu .icon { filter: var(--white-color-icon); }
  body.bw-text .sub-menu>.menu-item:hover {
    background: inherit;
    border-left: 3px solid transparent;
    border-bottom: 3px solid #fff;
  }
  body.bw-text .sub-menu-lvl2 { background: #2d2d2d; }
  body.bw-text .sub-menu-lvl2 .menu-item {
    border-bottom: 2px solid #fff;
    border-left: 3px solid #fff;
  }
  body.bw-text .sub-menu-lvl2>.menu-item:hover {
    background: inherit;
    border-left: 3px solid transparent;
    color: #fff;
  }
  body.bw-text .lang-switcher { background: #2d2d2d; }
  body.bw-text .lang-switcher .lang-code { color: #fff; }
  body.bw-text .lang-switcher .menu-icon { filter: var(--white-color-icon); }
  body.bw-text #language-list { background: #2d2d2d; }
  body.bw-text #language-list a:hover { background: inherit; }
  body.bw-text .welcome .welcome-text {
    background: #2d2d2d;
    color: #fff;
  }
  body.bw-text .welcome .welcome-text a { color: #fff; }
  body.bw-text .footer-overlay { background: #2d2d2d; }
  body.bw-text .footer-bottom { background: #2d2d2d; }

  body.by-text .main-menu, body.by-text .highlight { background: #0f2dd6; }
  body.by-text .main-menu .menu-link { color: #d6c90f; }
  body.by-text .menu-link:hover { background: inherit; color: #d6c90f; }
  body.by-text .main-menu .menu-icon { filter: invert(74%) sepia(53%) saturate(1116%) hue-rotate(10deg) brightness(102%) contrast(88%); }
  body.by-text .sub-menu { background: #0f2dd6; }
  body.by-text .sub-menu .icon { filter: invert(74%) sepia(53%) saturate(1116%) hue-rotate(10deg) brightness(102%) contrast(88%); }
  body.by-text .sub-menu>.menu-item:hover {
    background: inherit;
    border-left: 3px solid transparent;
    border-bottom: 3px solid #d6c90f;
  }
  body.by-text .sub-menu-lvl2 { background: #0f2dd6; }
  body.by-text .sub-menu-lvl2 .menu-item {
    border-bottom: 2px solid #d6c90f;
    border-left: 3px solid #d6c90f;
  }
  body.by-text .sub-menu-lvl2>.menu-item:hover {
    background: inherit;
    border-left: 3px solid transparent;
    color: #d6c90f;
  }
  body.by-text .lang-switcher { background: #0f2dd6; }
  body.by-text .lang-switcher .lang-code { color: #d6c90f; }
  body.by-text .lang-switcher .menu-icon { filter: invert(74%) sepia(53%) saturate(1116%) hue-rotate(10deg) brightness(102%) contrast(88%); }
  body.by-text #language-list { background: #0f2dd6; }
  body.by-text #language-list a:hover { background: inherit; }
  body.by-text .welcome .welcome-text {
    background: #0f2dd6;
    color: #d6c90f;
  }
  body.by-text .welcome .welcome-text a { color: #d6c90f; }
  body.by-text .footer-overlay { background: #0f2dd6; }
  body.by-text .footer-bottom { background: #0f2dd6; }
}