<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Flexify */

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 7rem;
    --menu-height-scrolled: 7rem;
    --section-width: 150rem;

    /* 	Colors */
    --primary-color: 57, 51, 102;
    --secondary-color: 57, 113, 187;

    --accent-beige-color: 233, 231, 224;
    --accent-beige-dark-color: 195, 190, 168;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1200;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    } 
} 
 
/* Layout
========================================================================== */
body {
    background-color: rgb(var(--accent-beige-color));
}

.section-block {
    padding: 10rem 5rem;
}

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.p-4 .section-block,
.p-4:not(.section-wrapper) {
    padding: 4rem;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Poppins', sans-serif;
}

/* Rubriker */
.section-title {
    padding-bottom: .5em;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.small-title {
    padding-bottom: .4em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

/* Ovriga klasser */
.text-block {
    max-width: 75rem;
}

.text-block-center {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .section-title {
        font-size: 3.8rem;
    }

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

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 3rem;
    }

    .small-title {
        font-size: 2rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-wrapper.center {
    justify-content: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    color: rgb(var(--primary-color));
}

/* Knapp med cirkel */
.btn-circle {
    position: relative;
    padding: 1.9rem 3rem;
    transition: all .3s ease;
}

.btn-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 3rem;
    background: rgb(var(--accent-beige-dark-color));
    transition: all .3s ease;
}
 
.btn-circle:hover::before {
    width: 100%;
}

.btn-circle span {
    position: relative;
}

.btn-circle:hover span.text-white {
    color: rgb(var(--black-color));
}

.btn-circle::after {
    opacity: 0;
    content: ' \f061';
    display: inline-block;
    margin-left: .5rem;
    color: rgb(var(--primary-color));
    font-family: 'Font Awesome 5 Pro';
    transition: .3s ease;
}

.btn-circle:hover::after {
    opacity: 1;
    transform: translateX(1rem);
    transition: .3s ease;
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

.arrow-link::after {
    content: ' \f061';
    display: inline-block;
    margin-left: 1rem;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--primary-color));
    transition: transform .4s ease; 
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease; 
}

.circle-icon:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-beige-dark {
    background-color: rgb(var(--accent-beige-dark-color));
}

.bg-beige {
    background-color: rgb(var(--accent-beige-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */
/* Borders */
.br-2 {
    border-radius: 2rem;
}

/* Object position */
.of-wrapper .op-50-30 {
    object-position: 50% 30%;
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper,
.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
    transition: all .3s ease;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

/* Specifika bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

@media only screen and (max-width: 1350px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .cards-wrapper.w-25 .card-item,
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .cards-wrapper .p-4 {
        padding: 2rem;
    }
}

/* Card 2-2 */
.card-2-2 .card-header i {
    font-size: 6.5rem;
} 

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
}

.card-2-5 .card-header i {
    font-size: 2.7rem;
}

.card-2-5 .card-body {
    padding: 0 2rem;
}

.card-2-5 .card-item .small-title {
    transition: .3s ease;
}
  
.card-2-5 .card-item:hover .small-title {
    color: rgb(var(--primary-color));
}

/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-3-4 .image-wrapper {
    width: 20rem;
    height: 20rem;
    margin: 1rem;
    border-radius: 50%;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
    padding-right: 0;
}

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

@media only screen and (max-width: 1100px) {
    .card-3-4 .image-wrapper {
        width: 15rem;
        height: 15rem;
    }
}

@media only screen and (max-width: 450px) {
    .card-3-4 .image-wrapper {
        width: 12rem;
        height: 12rem;
    }

    .card-3-4 .card-body {
        padding-left: 1rem;
    }
}

/* Logos 1 */
.logos-1 .card-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logos-1 img {
    max-height: 8rem;
    filter: grayscale() opacity(.5);
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

.logos-1 img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-image {
    width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }
}

@media screen and (max-width: 1000px) {
    .split-content {
        width: 100%;
        padding: 5rem 2rem;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper.p-2,
    .split-wrapper .p-2 {
        padding: 1rem;
    }

    .split-content {
        padding: 3rem 1rem;
    }

}

/* Header / Navigation
========================================================================== */
header {
    top: 1rem;
    background-color: transparent;
}

header .container {
    padding: 0 2rem;
    border-radius: 5rem;
    background: rgb(var(--white-color));
    box-shadow: 0 0 25px rgb(var(--black-color), .1);
    border: 1px solid rgb(var(--accent-beige-dark-color));
}

/* Logo */
.header-logo {
    flex: 1 1 0;
}

.header-logo img {
    padding: 2rem 0;
}

/* Nav */
.TemplateMenu a {
    font-weight: 500;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

.TemplateMenu&gt;li&gt;a:hover {
    color: rgb(var(--primary-color));
}

/* Dolj sidor */
body:not(.EditMode) .TemplateMenu &gt; li:nth-child(1),
body:not(.EditMode) .TemplateMenu a[href="/17/6/kontakta-oss/"] {
    display: none;
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper li {
    margin: 0 .5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

/* Mobilmeny */
body:not(.EditMode) header.mobile-menu .TemplateMenu &gt; li:nth-child(1),
body:not(.EditMode) header.mobile-menu .TemplateMenu a[href="/17/6/kontakta-oss/"] {
    display: block;
}

@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background-color: rgb(var(--black-color), .5);
}

.top-section .section-block {
    width: 100%;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.top-section .text-block {
    max-width: 80rem;
}

.top-section .section-title {
    font-size: 6rem;
}

@media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-title {
        font-size: 3rem;
    }
}

/* Text + formular / Jamfor avtal
========================================================================== */
.section-text-form .section-block-wrapper {
    justify-content: space-between;
    align-items: flex-start;
}

.section-text-form .col-1 {
    width: calc(100% - 70rem);
}

.section-text-form .col-2 {
    z-index: 1;
    position: relative;
    width: 55rem;
    padding: 3rem;
    margin-top: -20rem;
    background: rgb(var(--accent-beige-dark-color));
    border-radius: 4rem;
}

.section-text-form .ContactForm {
    margin-top: 1.5rem;
}

.ContactForm &gt; div {
    margin-bottom: 1rem;
}

.ContactForm p {
    font-size: 1.5rem;
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm select,
.ContactForm textarea {
    font-size: 1.5rem;
    border: none;
}

.ContactForm select {
    height: 4.5rem;
}

.section-text-form .submit-button-container {
    margin: 2rem 0 0;
} 

@media only screen and (max-width: 1400px) {
    .section-text-form .col-1 {
        width: calc(100% - 45rem);
    }
    
    .section-text-form .col-2 {
        width: 45rem;
    }
}

@media only screen and (max-width: 980px) {
    .section-text-form .col-1 {
        width: 100%;
    }
    
    .section-text-form .col-2 {
        width: 100%;
        margin-top: 8rem;
    }
}

@media only screen and (max-width: 680px) {
    .section-text-form .ContactForm &gt; div {
        width: 100%; 
    }
}

@media only screen and (max-width: 580px) {
    .section-text-form .col-2 {
        margin-top: 5rem;
    }
}

/* Partners
========================================================================== */
.logos-wrapper .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

@media only screen and (max-width: 580px) {
    .logos-wrapper .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

/* Sa har fungerar det
========================================================================== */
.section-scroll {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 5rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
}

/* Cards */
.scroll-wrapper .card-item {
    margin: 0 2rem 0 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step .section-title {
    margin-right: 2rem;
    font-size: 8rem;
}

.step .small-title { 
    position: relative;
    flex-grow: 1;
    margin-top: -4px;
}

.step .small-title::after {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(var(--primary-color));
    transform: translateY(-50%);
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -4rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--white-color));
}

.scroll-wrapper .slick-next {
    right: 2rem;
}

.scroll-wrapper .slick-prev {
    left: auto;
    right: 6rem;
}

@media only screen and (max-width: 980px) {
    .step .section-title {
        font-size: 6rem;
    }

    .step .small-title {
        font-size: 2rem;
    }
} 

/* CTA
========================================================================== */
.cta-wrapper {
    background-image: linear-gradient(to right, rgb(var(--black-color), .5), rgb(var(--black-color), .3)), url('/assets/images/mobil-1500px.jpg');
    background-size: cover;
    background-position: center 60%;
    padding: 10rem 4rem 4rem;
    border-radius: 2rem;
}

@media screen and (max-width: 580px) {
    .cta-wrapper {
        padding: 10rem 2rem 2rem;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 65vh;
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background: rgb(var(--black-color), .5)
}

.hero .section-block {
    width: 100%;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.hero .section-title {
    font-size: 5.5rem;
}

@media only screen and (max-width: 1600px) {
    .hero {
        min-height: 75vh;
    }
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 3.2rem;
    }
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */

/* Medarbetare
========================================================================== */
@media only screen and (max-width: 950px) {
    .cards-wrapper.team-wrapper .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--accent-beige-dark-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 4rem;
}

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

.footer-menu-large {
    width: 30%;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--secondary-color));
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgb(var(--accent-beige-color));
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

.social-menu a {
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    padding: 5px 10px;
    border-radius: 2rem;
    line-height: 1;
    text-decoration: none;
    transition: all .3s ease;
}

.social-menu a:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
    transition: all .3s ease;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--black-color), .6);
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 48%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@media only screen and (max-width: 750px) {

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    .footer-top {
        padding: 5rem 0;
    }

    .footer-bottom {
        flex-direction: column-reverse;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}</pre></body></html>