// Flatly 5.3.3
// Bootswatch


// Variables

$web-font-path: "https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap" !default;
@if $web-font-path {
}

// Navs

.pagination {
  a:hover {
    text-decoration: none;
  }
}

// Indicators

.badge {
  &.bg-light {
    color: $dark;
  }
}

.alert {
  color: $white;
  border: none;

  a,
  .alert-link {
    color: $white;
    text-decoration: underline;
  }

  @each $color, $value in $theme-colors {
    &-#{$color} {
      @if $enable-gradients {
        background: $value linear-gradient(180deg, mix($body-bg, $value, 15%), $value) repeat-x;
      } @else {
        background-color: $value;
      }
    }
  }

  &-light {
    &,
    a,
    .alert-link {
      color: $body-color;
    }
  }
}

// Containers

.modal,
.toast,
.offcanvas {
  .btn-close {
    background-image: escape-svg(url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$black}'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>"));
  }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* =========================================
   IS-TAK HEADER
   ========================================= */

.site-header {
    background: #ffffff;
}


/* =========================================
   TOP BAR
   ========================================= */

.header-top {
    background: #252525;
    color: #b7c1c6;
    font-size: 0.78rem;
}

.header-top-inner {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left {
    display: flex;
    gap: 25px;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-top-left i {
    color: #aebbc2;
}

.header-top-right {
    color: #858d91;
}


/* =========================================
   MAIN NAVBAR
   ========================================= */

.is-navbar {
    background: #ffffff;
    min-height: 76px;

    border-bottom: 1px solid #e5e8ea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


/* Navbar container */

.is-navbar > .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 76px;
}


/* =========================================
   STP LOGO
   ========================================= */

.stp-navbar-brand {
    justify-self: start;

    display: flex;
    align-items: center;

    padding: 0;
}

.stp-navbar-logo {
    width: 135px;
    height: auto;

    display: block;
}


/* =========================================
   NAVIGATION
   ========================================= */

.is-navbar .navbar-collapse {
    grid-column: 2;

    display: flex !important;
    justify-content: center;

    width: auto;
}

.is-navbar .navbar-nav {
    margin: 0 !important;

    display: flex;
    align-items: center;
}


/* Links */

.is-navbar .nav-link {
    position: relative;

    color: #343434;

    font-size: 0.95rem;
    font-weight: 500;

    padding: 1.55rem 0.85rem;

    transition: color 0.2s ease;
}

.is-navbar .nav-link:hover {
    color: #566873;
}


/* =========================================
   DROPDOWN
   ========================================= */

.is-navbar .dropdown-toggle::after {
    margin-left: 0.45rem;
    vertical-align: 0.15em;
}

.is-navbar .dropdown-menu {
    min-width: 230px;

    margin-top: 0;

    padding: 0.6rem 0;

    border: 1px solid #e1e5e7;
    border-radius: 0;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.is-navbar .dropdown-item {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0.75rem 1.25rem;

    color: #444444;

    font-size: 0.9rem;
    font-weight: 500;
}

.is-navbar .dropdown-item i {
    width: 18px;
    color: #7f919b;
}

.is-navbar .dropdown-item:hover {
    background: #f2f5f6;
    color: #252525;
}


/* =========================================
   CONTACT BUTTON
   ========================================= */

.nav-contact {
    display: inline-flex;
    align-items: center;

    background: #343434;
    border: 1px solid #343434;

    color: #ffffff;

    font-size: 0.9rem;
    font-weight: 600;

    padding: 0.7rem 1.15rem;

    border-radius: 4px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-contact:hover {
    background: #4a4a4a;
    border-color: #4a4a4a;

    color: #ffffff;

    transform: translateY(-1px);
}


@media (min-width: 992px) {

    .stp-navbar-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .is-navbar .navbar-collapse {
        grid-column: 2;
        grid-row: 1;
    }

}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 991.98px) {

    .header-top {
        display: none;
    }


    .is-navbar {
        min-height: 68px;
    }


    .is-navbar > .container {
        display: flex;

        min-height: 68px;

        flex-wrap: wrap;
    }


    /* Logo */

    .stp-navbar-brand {
        position: static;

        transform: none;

        padding: 0;
    }

    .stp-navbar-logo {
        width: 105px;
    }


    /* Hamburger */

    .navbar-toggler {
        margin-left: auto;

        border: 1px solid #d8dddf;
        border-radius: 4px;

        padding: 0.5rem 0.65rem;
    }

    .navbar-toggler:focus {
        box-shadow:
            0 0 0 0.15rem
            rgba(127, 145, 155, 0.15);
    }


    /* Menu */

    .is-navbar .navbar-collapse {
        grid-column: unset;

        display: none !important;

        width: 100%;

        padding: 1rem 0 1.25rem;
    }


    .is-navbar .navbar-collapse.show {
        display: block !important;
    }


    .is-navbar .navbar-nav {
        display: block;

        width: 100%;
    }


    .is-navbar .nav-link {
        padding: 0.75rem 0;

        font-size: 1rem;
    }


    /* Dropdown */

    .is-navbar .dropdown-menu {
        border: 0;
        box-shadow: none;

        background: #f5f7f8;

        margin: 0;
        padding: 0.35rem 0;
    }

    .is-navbar .dropdown-item {
        padding: 0.7rem 1rem;
    }


    /* Contact */

    .nav-contact {
        display: flex;

        width: 100%;

        justify-content: center;

        margin-top: 0.75rem;
    }

}

.px-hero .hero-dark {
    background: linear-gradient(
        to bottom,
        #303d48 0%,
        #3a4a55 100%
    );
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.px-hero .shot {
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary-color);
}

:root {
    --is-accent: #aebbc2;
}


/* Footer */

.is-footer {
    background: #191919;
    color: #ffffff;
}


/* Headings */

.is-footer .footer-heading {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0 30px 0;
    padding-bottom: 12px;
    position: relative;
    text-transform: uppercase;
}

.is-footer .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2px;
    background: var(--is-accent);
}


/* About text */

.is-footer .footer-text {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
    max-width: 450px;
}


/* Links */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a span {
    color: #555555;
    margin-right: 10px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover span {
    color: var(--is-accent);
}


/* Contact */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.contact-icon {
    color: var(--is-accent);
    width: 16px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #888888;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}


/* Support */

.footer-support-heading {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.footer-support-logo {
    width: 55px;
    height: auto;
    display: block;
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid #242424;
    color: #777777;
    font-size: 0.95rem;
    padding: 15px 0;
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-page {
    background: #ffffff;
}


/* Intro */

.contact-intro {
    max-width: 760px;
    margin: 0 auto 55px;
}

.contact-title {
    color: #303030;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-lead {
    color: #6f777c;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}


/* Main content */

.contact-content {
    align-items: stretch;
}


/* Section headings */

.contact-section-title {
    color: #303030;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 12px;
    position: relative;
}

.contact-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--is-accent);
}


/* Contact information */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f4f5;
    border-radius: 6px;

    color: #647681;
    font-size: 1rem;
}

.contact-item h3 {
    color: #303030;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.contact-item p {
    color: #70777b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: #70777b;
    text-decoration: none;
}

.contact-item a:hover {
    color: #303030;
}


/* Map */

.contact-map {
    margin-top: 35px;
    height: 280px;
    border: 1px solid #dfe3e5;
    border-radius: 6px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Form */

.contact-form-box {
    border: 1px solid #dfe3e5;
    border-radius: 6px;
    padding: 35px;
    background: #ffffff;
}

.contact-form-intro {
    color: #70777b;
    font-size: 0.95rem;
    margin-top: -15px;
    margin-bottom: 30px;
}


/* Form labels */

.contact-form-box .form-label {
    color: #303030;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 7px;
}


/* Inputs */

.contact-form-box .form-control,
.contact-form-box .form-select {
    border-color: #d7dcdf;
    border-radius: 5px;
    color: #303030;
    padding: 0.75rem 0.9rem;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #8798a2;
    box-shadow: 0 0 0 0.2rem rgba(135, 152, 162, 0.15);
}


/* Checkbox */

.contact-form-box .form-check-label {
    color: #70777b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-form-box .form-check-input:checked {
    background-color: #4b5d68;
    border-color: #4b5d68;
}


/* Submit */

.contact-submit {
    background: #343434;
    border: 1px solid #343434;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.contact-submit:hover {
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #ffffff;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767.98px) {

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-lead {
        font-size: 1rem;
    }

    .contact-intro {
        margin-bottom: 40px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-map {
        height: 240px;
    }

}

/* =========================================
   IS-TAK HERO
   ========================================= */

.istak-hero {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(35, 52, 62, 0.68),
            rgba(35, 52, 62, 0.68)
        ),
        url("/assets/img/hero-roof.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    color: #ffffff;
}


/* =========================================
   TWO BRANDS
   ========================================= */

.hero-brands {
    display: grid;

    grid-template-columns: 1fr 1fr;

    max-width: 1050px;

    margin: 0 auto;
}


/* =========================================
   BRAND
   ========================================= */

.hero-brand {
    text-align: center;

    padding: 30px 55px 20px;
}


/* Divider */

.hero-brand + .hero-brand {
    border-left: 1px solid rgba(255, 255, 255, 0.40);
}


/* =========================================
   LOGO BOX
   ========================================= */

.hero-logo-box {
    width: 100%;

    max-width: 430px;

    height: 120px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* Logo itself */

.hero-logo-box img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.hero-brand p {
    max-width: 430px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1.05rem;

    line-height: 1.6;
}


/* =========================================
   TAGLINE
   ========================================= */

.hero-bottom {
    text-align: center;

    margin-top: 15px;
}

.hero-tagline {
    color: #ffffff;

    font-size: 1rem;

    font-weight: 500;

    letter-spacing: 0.16em;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 991.98px) {

    .istak-hero {
        min-height: auto;

        padding: 45px 0;
    }


    .hero-brands {
        display: block;

        max-width: 600px;
    }


    .hero-brand {
        padding: 25px 20px 35px;
    }


    .hero-brand + .hero-brand {
        border-left: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.35);

        padding-top: 35px;
    }


    .hero-logo-box {
        height: 90px;

        max-width: 430px;

        margin-bottom: 18px;
    }


    .hero-brand p {
        font-size: 1rem;
    }


    .hero-bottom {
        margin-top: 5px;
    }


    .hero-tagline {
        font-size: 0.85rem;

        line-height: 1.6;

        letter-spacing: 0.10em;
    }

}

/* =========================================
   SERVICES
   ========================================= */

.services-section {
    background: #ffffff;

    padding: 100px 0 110px;
}


/* =========================================
   HEADING
   ========================================= */

.services-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}


.services-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #71818a;

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.22em;
}


.services-heading h2 {
    margin: 0 0 18px;

    color: #292929;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 700;
}


.services-heading h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin: 18px auto 0;

    background: #71818a;
}


.services-heading p {
    margin: 25px auto 0;

    max-width: 620px;

    color: #71808a;

    font-size: 1.05rem;

    line-height: 1.7;
}


/* =========================================
   SERVICE CARD
   ========================================= */

.service-card {
    display: block;

    color: inherit;

    text-decoration: none;

    height: 100%;
}


.service-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #303b42;
}


.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


/* =========================================
   DARK OVERLAY
   ========================================= */

.service-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20, 28, 33, 0.90),
            rgba(20, 28, 33, 0.05) 65%
        );

    transition:
        background 0.4s ease;
}


.service-card:hover .service-overlay {
    background:
        linear-gradient(
            to top,
            rgba(20, 28, 33, 0.94),
            rgba(20, 28, 33, 0.20)
        );
}


.service-card:hover .service-image img {
    transform: scale(1.06);
}



/* =========================================
   ARROW
   ========================================= */

.service-arrow {
    position: absolute;

    top: 17px;
    right: 18px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 50%;

    color: #ffffff;

    font-size: 0.95rem;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.service-card:hover .service-arrow {
    background: rgba(255, 255, 255, 0.15);

    border-color: rgba(255, 255, 255, 0.8);

    transform: rotate(45deg);
}


/* =========================================
   TITLE
   ========================================= */

.service-title {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;
}


.service-title h3 {
    margin: 0;

    color: #ffffff;

    font-size: 1.45rem;

    font-weight: 600;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.service-description {
    padding: 20px 5px 0;

    color: #68777f;

    font-size: 0.95rem;

    line-height: 1.65;
}


/* =========================================
   CARD HOVER
   ========================================= */

.service-card:hover .service-description {
    color: #46545b;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767.98px) {

    .services-section {
        padding: 70px 0 80px;
    }


    .services-heading {
        margin-bottom: 40px;
    }


    .service-image {
        height: 240px;
    }


    .service-title h3 {
        font-size: 1.3rem;
    }

}

/* =========================================================
   PARTNERS
   ========================================================= */

.partners-section {
    position: relative;
    padding: 70px 0 75px;
    background: #f4f6f7;
    border-top: 1px solid #e1e5e7;
}


/* Header */

.partners-header {
    max-width: 720px;
    margin-bottom: 42px;
}

.partners-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #71808a;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.partners-header h2 {
    margin: 0;
    color: #252b2f;
    font-size: 2rem;
    font-weight: 600;
}

.partners-header h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 15px;
    background: #71808a;
}

.partners-header p {
    margin: 18px 0 0;
    max-width: 650px;
    color: #68757c;
    font-size: .92rem;
    line-height: 1.7;
}


/* Main layout */

.partners-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid #dfe4e6;
}


/* Individual blocks */

.suppliers,
.membership {
    padding: 32px 38px;
}

.membership {
    border-left: 1px solid #dfe4e6;
}


/* Small heading */

.partner-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #30383d;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.partner-label span {
    display: block;
    width: 20px;
    height: 2px;
    background: #7d8c95;
}


/* Supplier logos */

.supplier-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.supplier-logo {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border: 1px solid #e2e6e8;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.supplier-logo:hover {
    transform: translateY(-3px);
    border-color: #c5cdd1;
    box-shadow: 0 8px 22px rgba(30, 40, 45, .08);
}

.supplier-logo img {
    display: block;
    max-width: 75%;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* Membership */

.member-content {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.member-logo {
    flex: 0 0 110px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-logo img {
    display: block;
    max-width: 100px;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.member-copy {
    max-width: 230px;
}

.member-copy strong {
    display: block;
    margin-bottom: 7px;
    color: #30383d;
    font-size: .9rem;
}

.member-copy p {
    margin: 0;
    color: #718087;
    font-size: .82rem;
    line-height: 1.6;
}


/* Mobile */

@media (max-width: 991.98px) {

    .partners-section {
        padding: 55px 0 60px;
    }

    .partners-header {
        margin-bottom: 30px;
    }

    .partners-layout {
        grid-template-columns: 1fr;
    }

    .membership {
        border-left: 0;
        border-top: 1px solid #dfe4e6;
    }

}


@media (max-width: 575.98px) {

    .partners-section {
        padding: 45px 0 50px;
    }

    .partners-header h2 {
        font-size: 1.7rem;
    }

    .suppliers,
    .membership {
        padding: 27px 22px;
    }

    .supplier-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .supplier-logo {
        height: 90px;
    }

    .member-content {
        gap: 15px;
    }

}

.cta-section {
    margin-top: 45px;
    padding: 52px 0 85px;

    background: linear-gradient(
        to bottom,
        #2d3d48 0%,
        #394b56 100%
    );

    color: #fff;
    text-align: center;
}

.cta-section h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.cta-section p {
    margin: 10px 0 22px;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}

.cta-section .btn {
    padding: .65rem 1.4rem;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: #28343b;
    font-weight: 500;
}

.cta-section .btn:hover {
    background: #eef1f2;
    color: #202a30;
}

/* =========================================================
   MILJÖPOLICY
   ========================================================= */

.policy-page {
    background: #fff;
    color: #30383d;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.policy-hero {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #27343c 0%,
            #34454f 55%,
            #29373f 100%
        );
    color: #fff;
    overflow: hidden;
}

.policy-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.policy-hero-inner {
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 0;
}

.policy-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #b8c3c8;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
}

.policy-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 600;
}

.policy-hero h1::after {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    margin-top: 16px;
    background: #aebbc2;
}

.policy-hero p {
    margin: 18px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 1rem;
}

.policy-date {
    position: relative;
    z-index: 1;
    min-width: 175px;
    padding-left: 25px;
    border-left: 1px solid rgba(255,255,255,.25);
}

.policy-date span {
    display: block;
    margin-bottom: 7px;
    color: #aebbc2;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.policy-date strong {
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
}


/* ---------------------------------------------------------
   SECTION HEADINGS
   --------------------------------------------------------- */

.policy-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 32px;
}

.policy-number {
    flex: 0 0 auto;
    color: #a0adb3;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    padding-top: 6px;
}

.policy-label {
    display: block;
    margin-bottom: 7px;
    color: #7b8990;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.policy-section-heading h2 {
    margin: 0;
    color: #293136;
    font-size: 1.8rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   SYFTE
   --------------------------------------------------------- */

.policy-intro {
    padding: 75px 0 70px;
    max-width: 950px;
}

.policy-intro-content {
    margin-left: 55px;
    max-width: 850px;
}

.policy-intro-content p {
    margin: 0;
    color: #59666d;
    font-size: 1.05rem;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   ÅTAGANDEN
   --------------------------------------------------------- */

.policy-commitments {
    padding: 70px 0 80px;
    border-top: 1px solid #e5e9eb;
}

.policy-lead {
    margin: -10px 0 28px 55px;
    color: #59666d;
    font-size: .95rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-left: 55px;
}

.commitment-card {
    position: relative;
    min-height: 145px;
    padding: 28px 30px 25px 65px;
    background: #f4f6f7;
    border: 1px solid #e1e6e8;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.commitment-card:hover {
    transform: translateY(-3px);
    border-color: #cbd3d7;
    box-shadow: 0 10px 25px rgba(30,40,45,.07);
}

.commitment-number {
    position: absolute;
    top: 27px;
    left: 25px;
    color: #87959c;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.commitment-card p {
    margin: 0;
    color: #536067;
    font-size: .9rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   STÄNDIGA FÖRBÄTTRINGAR
   --------------------------------------------------------- */

.policy-feature {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    margin: 0 0 80px;
    padding: 45px 50px;
    background: linear-gradient(
        135deg,
        #27343c 0%,
        #354650 100%
    );
    color: #fff;
    overflow: hidden;
}

.policy-feature::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -100px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.policy-feature-number {
    position: relative;
    z-index: 1;
    color: #aebbc2;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
}

.policy-feature-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.policy-feature .policy-label {
    color: #aebbc2;
}

.policy-feature h2 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
}

.policy-feature p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: .95rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   ANSVAR
   --------------------------------------------------------- */

.policy-responsibility {
    padding: 0 0 85px;
}

.responsibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    margin-left: 55px;
}

.responsibility-text {
    max-width: 650px;
}

.responsibility-text p {
    margin: 0;
    color: #59666d;
    font-size: .95rem;
    line-height: 1.8;
}

.policy-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 30px;
    padding-left: 35px;
    border-left: 1px solid #dfe4e6;
}

.policy-meta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.policy-meta span {
    color: #7b8990;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.policy-meta strong {
    color: #39444a;
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .policy-hero-inner {
        min-height: 200px;
        align-items: flex-start;
        flex-direction: column;
        padding: 45px 0;
    }

    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-date {
        min-width: 0;
        padding-left: 0;
        padding-top: 15px;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.2);
    }

    .policy-intro {
        padding: 50px 0;
    }

    .policy-section-heading {
        gap: 15px;
    }

    .policy-intro-content,
    .policy-lead,
    .commitment-grid,
    .responsibility-content {
        margin-left: 0;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .commitment-card {
        min-height: 0;
        padding: 25px 25px 25px 58px;
    }

    .policy-feature {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 55px;
        padding: 35px 28px;
    }

    .responsibility-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .policy-meta {
        padding-left: 0;
        padding-top: 25px;
        border-left: 0;
        border-top: 1px solid #dfe4e6;
    }

}

/* =========================================================
   SERVICE PAGES
   ========================================================= */

.service-page {
    background: #fff;
    color: #30383d;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.service-hero {
    background:
        linear-gradient(
            135deg,
            #27343c 0%,
            #34454f 55%,
            #29373f 100%
        );
    color: #fff;
    overflow: hidden;
}

.service-hero-inner {
    min-height: 330px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 55px 60px 0;
}

.service-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #aebbc2;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
}

.service-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 3.1rem;
    font-weight: 600;
}

.service-hero h1::after {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    margin-top: 17px;
    background: #aebbc2;
}

.service-hero p {
    max-width: 480px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    line-height: 1.7;
}

.service-hero-image {
    min-height: 330px;
    position: relative;
}

.service-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(39,52,60,.15),
        rgba(39,52,60,0)
    );
}

.service-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------------------------------------------------------
   SECTION HEADINGS
   --------------------------------------------------------- */

.service-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 28px;
}

.service-number {
    flex: 0 0 auto;
    padding-top: 6px;
    color: #a0adb3;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
}

.service-label {
    display: block;
    margin-bottom: 8px;
    color: #7b8990;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.service-section-heading h2 {
    margin: 0;
    color: #293136;
    font-size: 1.85rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.service-intro {
    max-width: 1000px;
    padding: 75px 0 65px;
}

.service-intro-text {
    max-width: 850px;
    margin: 0 0 0 55px;
    color: #59666d;
    font-size: 1rem;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   MAIN CONTENT
   --------------------------------------------------------- */

.service-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 55px;
    padding: 65px 0 80px;
    border-top: 1px solid #e5e9eb;
}

.service-image-large {
    height: 430px;
    overflow: hidden;
}

.service-image-large img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-copy {
    padding-top: 8px;
}

.service-content-copy h2 {
    margin: 0 0 20px;
    color: #293136;
    font-size: 1.8rem;
    font-weight: 600;
}

.service-content-copy p {
    margin: 0;
    color: #59666d;
    font-size: .94rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   BENEFITS
   --------------------------------------------------------- */

.service-benefits {
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    color: #56636a;
    font-size: .88rem;
}

.service-benefits i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1px solid #aebbc2;
    border-radius: 50%;
    color: #64757e;
    font-size: .72rem;
}


/* =========================================================
   SERVICE HERO
   ========================================================= */

.service-hero {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #27343c 0%,
            #34454f 55%,
            #29373f 100%
        );
    color: #fff;
    overflow: hidden;
}

.service-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.service-hero-inner {
    position: relative;
    z-index: 1;

    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
    padding: 45px 0;
}

.service-eyebrow {
    display: block;
    margin-bottom: 10px;

    color: #aebbc2;

    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .20em;
}

.service-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 2.8rem;
    font-weight: 600;
}

.service-hero h1::after {
    content: "";
    display: block;

    width: 45px;
    height: 2px;

    margin-top: 16px;

    background: #aebbc2;
}

.service-hero p {
    max-width: 600px;

    margin: 17px 0 0;

    color: rgba(255,255,255,.74);

    font-size: 1rem;
    line-height: 1.7;
}


/* Right side */

.service-date {
    position: relative;
    z-index: 1;

    min-width: 210px;

    padding-left: 28px;

    border-left: 1px solid rgba(255,255,255,.22);
}

.service-date span {
    display: block;

    margin-bottom: 7px;

    color: #aebbc2;

    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
}

.service-date strong {
    color: #fff;

    font-size: .9rem;
    font-weight: 500;
}


/* Mobile */

@media (max-width: 767.98px) {

    .service-hero-inner {
        min-height: 0;

        align-items: flex-start;
        flex-direction: column;

        padding: 42px 0;
    }

    .service-hero h1 {
        font-size: 2.25rem;
    }

    .service-date {
        min-width: 0;

        padding-left: 0;
        padding-top: 16px;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.20);
    }

}

/* Service page CTA button */

.service-bottom .service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: .7rem 1.4rem;

    background: #303b42;
    border: 1px solid #303b42;
    border-radius: 4px;

    color: #fff;

    font-size: .88rem;
    font-weight: 500;
    line-height: 1.5;

    text-decoration: none;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.service-bottom .service-button:hover {
    background: #43535d;
    border-color: #43535d;
    color: #fff;

    transform: translateY(-1px);
}


/* =========================================================
   PRIVACY POLICY
   ========================================================= */

.privacy-sections {
    padding: 70px 0;
    border-top: 1px solid #e5e9eb;
}

.privacy-text {
    max-width: 900px;
    margin-left: 55px;
}

.privacy-text p {
    margin: 0 0 18px;
    color: #59666d;
    font-size: .95rem;
    line-height: 1.85;
}

.privacy-text p:last-child {
    margin-bottom: 0;
}


/* Company information */

.company-details {
    display: flex;
    flex-direction: column;
    gap: 6px;

    max-width: 500px;

    padding: 28px 32px;

    background: #f4f6f7;
    border: 1px solid #e1e6e8;

    color: #59666d;
    font-size: .9rem;
    line-height: 1.6;
}

.company-details strong {
    margin-bottom: 8px;
    color: #30383d;
    font-size: 1rem;
}

.company-details a {
    color: #4f626d;
    text-decoration: none;
}

.company-details a:hover {
    text-decoration: underline;
}


/* Divider */

.privacy-divider {
    height: 1px;
    margin: 42px 0 38px 55px;
    background: #e5e9eb;
}


/* Subsections */

.privacy-subsection {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;

    max-width: 950px;

    margin: 38px 0 0 55px;
}

.privacy-subnumber {
    padding-top: 5px;

    color: #9aa7ad;

    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.privacy-subsection h3 {
    margin: 0 0 12px;

    color: #354047;

    font-size: 1.15rem;
    font-weight: 600;
}

.privacy-subsection p {
    margin: 0 0 15px;

    color: #59666d;

    font-size: .9rem;
    line-height: 1.8;
}


/* Numbered privacy points */

.privacy-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    margin: 28px 0 30px 55px;
}

.privacy-point {
    display: flex;
    gap: 18px;

    padding: 24px 26px;

    background: #f4f6f7;
    border: 1px solid #e1e6e8;
}

.privacy-point > span {
    flex: 0 0 auto;

    color: #89979e;

    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.privacy-point p {
    margin: 0;

    color: #59666d;

    font-size: .88rem;
    line-height: 1.7;
}


/* Slight variation for storage */

.privacy-storage {
    padding-bottom: 75px;
}


/* Mobile */

@media (max-width: 767.98px) {

    .privacy-sections {
        padding: 50px 0;
    }

    .privacy-text,
    .privacy-divider,
    .privacy-subsection,
    .privacy-points {
        margin-left: 0;
    }

    .privacy-subsection {
        grid-template-columns: 45px 1fr;
        gap: 12px;
    }

    .privacy-points {
        grid-template-columns: 1fr;
    }

    .company-details {
        padding: 24px;
    }

}

/* =========================================================
   OM OSS
   ========================================================= */

.about-page {
    background: #fff;
    color: #30383d;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.about-hero {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #27343c 0%,
            #34454f 55%,
            #29373f 100%
        );

    color: #fff;
    overflow: hidden;
}

.about-hero::after {
    content: "";

    position: absolute;

    right: -120px;
    bottom: -180px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.about-hero-inner {
    position: relative;
    z-index: 1;

    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 45px 0;
}

.about-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #aebbc2;

    font-size: .72rem;
    font-weight: 600;

    letter-spacing: .20em;
}

.about-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 2.8rem;
    font-weight: 600;
}

.about-hero h1::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-top: 16px;

    background: #aebbc2;
}

.about-hero p {
    margin: 17px 0 0;

    color: rgba(255,255,255,.74);

    font-size: 1rem;
    line-height: 1.7;
}

.about-hero-meta {
    position: relative;
    z-index: 1;

    min-width: 150px;

    padding-left: 28px;

    border-left: 1px solid rgba(255,255,255,.22);
}

.about-hero-meta span {
    display: block;

    margin-bottom: 5px;

    color: #aebbc2;

    font-size: .68rem;
    font-weight: 600;

    letter-spacing: .12em;
}

.about-hero-meta strong {
    color: #fff;

    font-size: 1.15rem;
    font-weight: 500;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.about-intro {
    padding: 75px 0 0;
}

.about-intro-heading {
    max-width: 850px;
}

.about-label {
    display: block;

    margin-bottom: 9px;

    color: #7b8990;

    font-size: .7rem;
    font-weight: 600;

    letter-spacing: .17em;
}

.about-intro h2 {
    margin: 0;

    color: #293136;

    font-size: 2rem;
    font-weight: 600;
}

.about-intro-heading p {
    max-width: 760px;

    margin: 20px 0 0;

    color: #59666d;

    font-size: 1rem;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   STATISTICS
   --------------------------------------------------------- */

.about-stats {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 55px;

    background: #f4f6f7;

    border-top: 1px solid #e1e6e8;
    border-bottom: 1px solid #e1e6e8;
}

.about-stat {
    min-height: 135px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px 35px;

    border-right: 1px solid #dfe4e6;
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat strong {
    color: #293136;

    font-size: 2.1rem;
    font-weight: 600;
}

.about-stat span {
    margin-top: 4px;

    color: #7b8990;

    font-size: .68rem;
    font-weight: 600;

    letter-spacing: .12em;
}


/* ---------------------------------------------------------
   DIVISIONS
   --------------------------------------------------------- */

.about-divisions {
    padding: 80px 0;
}

.about-section-heading {
    display: flex;
    align-items: flex-start;

    gap: 22px;

    margin-bottom: 35px;
}

.about-number {
    flex: 0 0 auto;

    padding-top: 6px;

    color: #a0adb3;

    font-size: .75rem;
    font-weight: 600;

    letter-spacing: .1em;
}

.about-section-heading h2 {
    margin: 0;

    color: #293136;

    font-size: 1.85rem;
    font-weight: 600;
}

.division-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.division-card {
    min-height: 330px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    border: 1px solid #e1e6e8;
}

.division-card-dark {
    background:
        linear-gradient(
            135deg,
            #27343c,
            #354650
        );

    color: #fff;
}

.division-card-light {
    background: #f4f6f7;
    color: #293136;
}

.division-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.division-number {
    color: #9eabb1;

    font-size: .72rem;
    font-weight: 600;

    letter-spacing: .1em;
}

.division-type {
    color: #87969d;

    font-size: .68rem;
    font-weight: 600;

    letter-spacing: .14em;
}

.division-card-content {
    margin-top: auto;
    max-width: 540px;
}

.division-card h3 {
    margin: 0 0 15px;

    font-size: 1.55rem;
    font-weight: 600;
}

.division-card p {
    margin: 0;

    font-size: .9rem;
    line-height: 1.8;
}

.division-card-dark p {
    color: rgba(255,255,255,.72);
}

.division-card-light p {
    color: #59666d;
}

.division-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    color: inherit;

    font-size: .82rem;
    font-weight: 600;

    text-decoration: none;
}

.division-link:hover {
    color: #72838c;
}

.division-link i {
    transition: transform .2s ease;
}

.division-link:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   FEATURE
   --------------------------------------------------------- */

.about-feature {
    position: relative;

    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            #27343c 0%,
            #354650 100%
        );

    color: #fff;

    overflow: hidden;
}

.about-feature::after {
    content: "";

    position: absolute;

    right: -100px;
    top: -130px;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.about-feature-inner {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 25px;
}

.about-feature-number {
    color: #aebbc2;

    font-size: .75rem;
    font-weight: 600;
}

.about-feature-content {
    max-width: 850px;
}

.about-feature-label {
    display: block;

    margin-bottom: 9px;

    color: #aebbc2;

    font-size: .7rem;
    font-weight: 600;

    letter-spacing: .17em;
}

.about-feature h2 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 2rem;
    font-weight: 600;
}

.about-feature p {
    margin: 0;

    color: rgba(255,255,255,.74);

    font-size: .95rem;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   WORKING
   --------------------------------------------------------- */

.about-working {
    padding: 80px 0;
}

.working-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid #dfe4e6;
    border-bottom: 1px solid #dfe4e6;
}

.working-item {
    min-height: 220px;

    padding: 30px;

    border-right: 1px solid #dfe4e6;
}

.working-item:last-child {
    border-right: 0;
}

.working-item > span {
    color: #a0adb3;

    font-size: .72rem;
    font-weight: 600;

    letter-spacing: .1em;
}

.working-item h3 {
    margin: 35px 0 12px;

    color: #303a40;

    font-size: 1.1rem;
    font-weight: 600;
}

.working-item p {
    margin: 0;

    color: #69767d;

    font-size: .85rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   EXPERIENCE
   --------------------------------------------------------- */

.about-experience {
    padding: 65px 0 85px;
}

.about-experience-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    padding-top: 50px;

    border-top: 1px solid #dfe4e6;
}

.about-experience h2 {
    margin: 0;

    color: #293136;

    font-size: 1.9rem;
    font-weight: 600;
}

.about-experience-inner > p {
    margin: 0;

    color: #59666d;

    font-size: .95rem;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .about-hero-inner {
        min-height: 0;

        align-items: flex-start;
        flex-direction: column;

        padding: 42px 0;
    }

    .about-hero h1 {
        font-size: 2.3rem;
    }

    .about-hero-meta {
        min-width: 0;

        padding-left: 0;
        padding-top: 15px;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.2);
    }

    .about-intro {
        padding-top: 55px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat {
        min-height: 105px;

        border-right: 0;
        border-bottom: 1px solid #dfe4e6;
    }

    .about-stat:last-child {
        border-bottom: 0;
    }

    .about-divisions,
    .about-working {
        padding: 55px 0;
    }

    .division-grid {
        grid-template-columns: 1fr;
    }

    .division-card {
        min-height: 300px;
    }

    .about-feature {
        padding: 50px 0;
    }

    .about-feature-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .working-grid {
        grid-template-columns: 1fr;
    }

    .working-item {
        min-height: 0;

        border-right: 0;
        border-bottom: 1px solid #dfe4e6;
    }

    .working-item:last-child {
        border-bottom: 0;
    }

    .about-experience {
        padding-bottom: 60px;
    }

    .about-experience-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* =========================================================
   REFERENSER
   ========================================================= */

.references-page {
    background: #fff;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.references-hero {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #27343c 0%,
            #34454f 55%,
            #29373f 100%
        );

    color: #fff;

    overflow: hidden;
}

.references-hero::after {
    content: "";

    position: absolute;

    right: -120px;
    bottom: -180px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 50%;
}

.references-hero-inner {
    position: relative;
    z-index: 1;

    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 45px 0;
}

.references-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #aebbc2;

    font-size: .72rem;
    font-weight: 600;

    letter-spacing: .20em;
}

.references-hero h1 {
    margin: 0;

    color: #fff;

    font-size: 2.8rem;
    font-weight: 600;
}

.references-hero h1::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-top: 16px;

    background: #aebbc2;
}

.references-hero p {
    margin: 17px 0 0;

    color: rgba(255,255,255,.74);

    font-size: 1rem;
    line-height: 1.7;
}

.references-hero-meta {
    min-width: 150px;

    padding-left: 28px;

    border-left: 1px solid rgba(255,255,255,.22);
}

.references-hero-meta span {
    display: block;

    margin-bottom: 5px;

    color: #aebbc2;

    font-size: .68rem;
    font-weight: 600;

    letter-spacing: .12em;
}

.references-hero-meta strong {
    color: #fff;

    font-size: 1rem;
    font-weight: 500;
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.references-content {
    padding: 75px 0 90px;
}

.references-heading {
    display: flex;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 45px;
}

.references-section-heading {
    display: flex;
    align-items: flex-start;

    gap: 22px;
}

.references-number {
    flex: 0 0 auto;

    padding-top: 6px;

    color: #a0adb3;

    font-size: .75rem;
    font-weight: 600;

    letter-spacing: .1em;
}

.references-label {
    display: block;

    margin-bottom: 9px;

    color: #7b8990;

    font-size: .7rem;
    font-weight: 600;

    letter-spacing: .17em;
}

.references-section-heading h2 {
    margin: 0;

    color: #293136;

    font-size: 1.9rem;
    font-weight: 600;
}

.references-heading > p {
    max-width: 470px;

    margin: 5px 0 0;

    color: #59666d;

    font-size: .92rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   PROJECT GRID
   --------------------------------------------------------- */

.references-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 55px 35px;
}

.reference-card {
    display: block;

    color: inherit;

    text-decoration: none;
}

.reference-image {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #edf0f1;
}

.reference-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.reference-card:hover .reference-image img {
    transform: scale(1.035);
}


/* Arrow */

.reference-arrow {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(39,52,60,.9);

    color: #fff;

    font-size: .9rem;

    opacity: 0;

    transform: translateY(6px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.reference-card:hover .reference-arrow {
    opacity: 1;

    transform: translateY(0);
}


/* Project title */

.reference-info {
    padding-top: 17px;
}

.reference-info > span {
    display: block;

    margin-bottom: 5px;

    color: #89979e;

    font-size: .65rem;
    font-weight: 600;

    letter-spacing: .14em;
}

.reference-info h3 {
    margin: 0;

    color: #293136;

    font-size: 1.15rem;
    font-weight: 600;
}

.reference-card:hover .reference-info h3 {
    color: #53656f;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .references-hero-inner {
        min-height: 0;

        align-items: flex-start;
        flex-direction: column;

        padding: 42px 0;
    }

    .references-hero h1 {
        font-size: 2.3rem;
    }

    .references-hero-meta {
        min-width: 0;

        padding-left: 0;
        padding-top: 15px;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.2);
    }

    .references-content {
        padding: 55px 0 65px;
    }

    .references-heading {
        display: block;

        margin-bottom: 35px;
    }

    .references-heading > p {
        margin: 20px 0 0;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reference-arrow {
        opacity: 1;
        transform: none;
    }

}

/* =========================================================
   REFERENCE LIGHTBOX
   ========================================================= */

.reference-modal .modal-dialog {
    max-width: 1100px;
}

.reference-modal .modal-content {
    position: relative;

    overflow: hidden;

    background: #27343c;

    border: 0;
    border-radius: 0;

    box-shadow: 0 25px 80px rgba(0,0,0,.35);
}

.reference-modal-image {
    width: 100%;

    background: #1e292f;
}

.reference-modal-image img {
    display: block;

    width: 100%;
    max-height: 70vh;

    object-fit: contain;
}


/* Information underneath */

.reference-modal-info {
    padding: 25px 32px 30px;
}

.reference-modal-info > span {
    display: block;

    margin-bottom: 7px;

    color: #aebbc2;

    font-size: .68rem;
    font-weight: 600;

    letter-spacing: .15em;
}

.reference-modal-info h2 {
    margin: 0;

    color: #fff;

    font-size: 1.45rem;
    font-weight: 600;
}

.reference-modal-info p {
    margin: 6px 0 0;

    color: rgba(255,255,255,.65);

    font-size: .9rem;
}


/* Close button */

.reference-modal-close {
    position: absolute;

    z-index: 10;

    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    background: rgba(39,52,60,.85);

    color: #fff;

    font-size: .85rem;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.reference-modal-close:hover {
    background: #43535d;

    transform: rotate(90deg);
}


/* Darken Bootstrap backdrop */

.modal-backdrop.show {
    opacity: .82;
}


/* Mobile */

@media (max-width: 767.98px) {

    .reference-modal .modal-dialog {
        margin: 12px;
    }

    .reference-modal-image img {
        max-height: 65vh;
    }

    .reference-modal-info {
        padding: 20px 22px 24px;
    }

    .reference-modal-info h2 {
        font-size: 1.2rem;
    }

}

/* =========================================================
   POLICY DOCUMENT / PDF
   ========================================================= */

.policy-document {
    display: flex;
    align-items: center;
    gap: 22px;

    margin: 0 0 75px;

    padding: 22px 25px;

    background: #f4f6f7;

    border: 1px solid #e1e6e8;

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.policy-document:hover {
    border-color: #c8d0d4;
    transform: translateY(-2px);
}


/* PDF icon */

.policy-document-icon {
    flex: 0 0 auto;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #303c43;

    color: #fff;

    font-size: 1.35rem;
}


/* Text */

.policy-document-content {
    flex: 1;
}

.policy-document-content > span {
    display: block;

    margin-bottom: 3px;

    color: #89979e;

    font-size: .65rem;
    font-weight: 600;

    letter-spacing: .14em;
}

.policy-document-content h3 {
    margin: 0;

    color: #303a40;

    font-size: 1rem;
    font-weight: 600;
}

.policy-document-content p {
    margin: 4px 0 0;

    color: #69767d;

    font-size: .82rem;
}


/* Download */

.policy-document-link {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: .7rem 1rem;

    color: #35454e;

    border: 1px solid #cbd3d7;

    background: #fff;

    font-size: .8rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.policy-document-link:hover {
    background: #35454e;
    border-color: #35454e;

    color: #fff;
}

.policy-document-link i {
    font-size: .9rem;
}


/* Mobile */

@media (max-width: 575.98px) {

    .policy-document {
        align-items: flex-start;
        flex-wrap: wrap;

        gap: 16px;

        padding: 20px;
        margin-bottom: 55px;
    }

    .policy-document-content {
        min-width: calc(100% - 72px);
    }

    .policy-document-link {
        width: 100%;
        justify-content: center;
    }

}
/* =========================================================
   404 PAGE
   ========================================================= */

.error-page {
    min-height: 520px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #27343c 0%,
            #34454f 55%,
            #29373f 100%
        );

    color: #fff;

    text-align: center;
}

.error-page-inner {
    max-width: 650px;

    margin: 0 auto;

    padding: 80px 0;
}

.error-number {
    display: block;

    margin-bottom: 15px;

    color: rgba(255,255,255,.18);

    font-size: 7rem;
    font-weight: 700;

    line-height: .9;

    letter-spacing: -.04em;
}

.error-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #aebbc2;

    font-size: .72rem;
    font-weight: 600;

    letter-spacing: .20em;
    text-transform: uppercase;
}

.error-page h1 {
    margin: 0;

    color: #fff;

    font-size: 2.2rem;
    font-weight: 600;
}

.error-page p {
    max-width: 500px;

    margin: 18px auto 30px;

    color: rgba(255,255,255,.72);

    font-size: .95rem;
    line-height: 1.7;
}

.error-home-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: .8rem 1.3rem;

    background: #fff;
    border: 1px solid #fff;

    color: #29373f;

    font-size: .85rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.error-home-button:hover {
    background: transparent;

    color: #fff;

    transform: translateY(-2px);
}

@media (max-width: 575.98px) {

    .error-page {
        min-height: 450px;
    }

    .error-page-inner {
        padding: 60px 15px;
    }

    .error-number {
        font-size: 5rem;
    }

    .error-page h1 {
        font-size: 1.8rem;
    }

}

.contact-response {
    display: none;

    margin-top: 20px;
    padding: 16px 20px;

    font-size: .9rem;
    line-height: 1.6;

    border: 1px solid transparent;
}

.contact-response.success {
    display: block;

    background: #f1f5f6;
    border-color: #cbd6da;

    color: #34454f;
}

.contact-response.error {
    display: block;

    background: #f8f3f3;
    border-color: #dfcaca;

    color: #743d3d;
}

.hero-brand-title {
    max-width: 430px;
    margin: 0 auto 10px;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 600;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 450px;

    background-image:
        linear-gradient(
            rgba(30, 40, 48, 0.58),
            rgba(30, 40, 48, 0.58)
        ),
        url("/assets/img/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}


.hero-content {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 70px 40px 40px;
}


/* =========================================================
   TWO COMPANY BLOCKS
   ========================================================= */

.hero-services {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 950px;
    margin: 0 auto;
}


.hero-service {
    width: 44%;

    text-align: center;
    color: #fff;
}


.hero-logo-box {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 105px;

    margin-bottom: 22px;
}


.hero-logo-box img {
    display: block;

    max-width: 390px;
    width: 100%;
    height: auto;
}


.hero-service h3 {
    margin: 0 0 7px;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}


.hero-service p {
    max-width: 420px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   CENTER DIVIDER
   ========================================================= */

.hero-divider {
    width: 1px;
    height: 190px;

    margin: 0 35px;

    background: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   ONGOING PROJECTS
   ========================================================= */

.ongoing-projects {

    position: relative;

    display: flex;
    align-items: stretch;

    width: 100%;

    margin-top: 35px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 12px;

    background: rgba(20, 27, 32, 0.62);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    overflow: hidden;
}


/* =========================================================
   TITLE
   ========================================================= */

.ongoing-projects-label {

    flex: 0 0 235px;

    display: flex;
    align-items: center;

    padding: 18px 22px;

    border-right: 1px solid rgba(255, 255, 255, 0.20);

    color: #fff;
}


.project-icon {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-right: 12px;

    font-size: 18px;
}


.project-title {

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;
}


.project-arrow {

    margin-left: 12px;

    font-size: 20px;

    opacity: 0.8;
}


/* =========================================================
   PROJECT LIST
   ========================================================= */

.ongoing-projects-list {

    flex: 1;

    display: flex;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
}

.ongoing-projects-list::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   PROJECT ITEM
   ========================================================= */

.ongoing-project {

    flex: 0 0 300px;

    display: flex;
    align-items: center;

    min-height: 78px;

    padding: 10px 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);

    color: #fff;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.ongoing-project {
    flex: 0 0 300px;

    display: flex;
    align-items: center;

    min-height: 78px;

    padding: 10px 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);

    color: #fff;
}


.project-image {

    flex: 0 0 68px;

    width: 68px;
    height: 54px;

    margin-right: 13px;

    border-radius: 4px;

    overflow: hidden;
}


.project-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.project-info {

    display: flex;
    flex-direction: column;

    min-width: 0;
}


.project-info strong {

    margin-bottom: 4px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.project-info span {

    font-size: 12px;

    color: rgba(255, 255, 255, 0.72);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* =========================================================
   SCROLL BUTTONS
   ========================================================= */

.ongoing-projects-controls {

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0 14px;
}


.project-scroll {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.project-scroll:hover {

    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.8);
}