@supports (display:grid) {
  @media (width < 992px) {
    .site-grid {
        grid-template-areas:
        ".banner banner banner banner."
        ".top-a top-a top-a top-a."
        ".top-b top-b top-b top-b."
        ".side-l side-l side-l side-l."
        ".comp comp comp comp."
        ".side-r side-r side-r side-r."
        ".bot-a bot-a bot-a bot-a."
        ".bot-b bot-b bot-b bot-b.";
    }}}
.wrapper-fluid header>.grid-child, wrapper-fluid footer>.grid-child {
    padding-left: 2em;
    padding-right: 2em;
}

.wrapper-fluid .grid-child {
    max-width: none;
}
.item-page p, .item-page li {
font-size: 1.5rem;
}

/* General styling for the list */
.mod-articlesnews-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    list-style: none;
    margin: 0;
}

.mod-articlesnews-horizontal li,.blog-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 100%; /* Default: 1 column for small screens */
}

.mod-articlesnews-horizontal li:hover,.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Title styling */
.newsflash-title {
    font-size: 1.25em;
    margin: 0 0 15px;
    color: #007bff;
}

.newsflash-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.newsflash-title a:hover {
    color: #0056b3;
}

/* Paragraph styling */
.mod-articlesnews-horizontal p {
    color: #343a40;
    font-size: 1em;
    margin-bottom: 15px;
}

/* "Read more" button styling */
.readmore a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.readmore a:hover {
    background-color: #0056b3;
}

.readmore .icon-chevron-right {
    margin-right: 5px;
}
.geoback {
    position: relative;
    z-index: 0; /* Ensure it's behind other content if necessary */
    overflow: hidden; /* Ensure the background image doesn't overflow */
}

.geoback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/headers/geometri-logo.png'); /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1; /* Adjust the opacity of the background image */
    z-index: -1; /* Ensure the image is behind the content */
    pointer-events: none; /* Prevents the background from interfering with content interaction */
}
.mauticform-checkboxgrp-row {
    background: #e9eaeb;
}

.img-none img {
    display: none;
} 

.footer .grid-child {
    align-items: normal;
}

.cookiesck-main-close {
    margin: auto;
    top: 10px !important;
    background: #66cb87 !important;
    border-radius: 10px;
}

.review-container {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      scroll-behavior: smooth;
    }
    .review-card {
      flex: 0 0 auto;
      width: 600px;
      border: 1px solid #ddd;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
    }
    .review-rating {
      font-size: 1.2rem;
      color: #f39c12;
    }

    @media (max-width: 768px) {
      .review-container {
        flex-direction: column;
        gap: 20px;
        height: 600px;
      }
      .review-card {
    width: auto;
      }
      .cookiesck-main-close {
       width: 70% !important;
      }
    }

    body {
      background-color: #f8f9fa;
    }
    .faq-section {
      max-width: 800px;
      margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .faq-section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }
    .accordion-button::after {
      transform: scale(1.5);
    }



/* Responsive Layout */
@media (min-width: 576px) {
    /* Small devices (1 column) */
    .mod-articlesnews-horizontal li,.blog-item {
        flex: 1 1 100%;
    }
}

@media (min-width: 768px) {
    /* Medium devices (2 columns) */
    .mod-articlesnews-horizontal li,.blog-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    /* Large devices (3 columns) */
    .mod-articlesnews-horizontal li,.blog-item {
        flex: 1 1 calc(33.333% - 20px);
    }
}

@media (min-width: 1200px) {
    /* Extra large devices (3 columns) */
    .mod-articlesnews-horizontal li,.blog-item {
        flex: 1 1 calc(33.333% - 20px);
    }
}

