/* Wernamo Dataservice */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --accent-pink-color: 255, 60, 102;
    --accent-purple-color: 191, 43, 231;
    --accent-blue-color: 59, 79, 255;
    --accent-blue-light-color: 0, 167, 252;
    --accent-green-color: 0, 219, 143;
    --accent-yellow-color: 255, 254, 1;
    --accent-orange-color: 255, 123, 38;

    --black-color: 21, 20, 21;
    --gray-dark-color: 29, 29, 29;
    --gray-color: 59, 59, 59;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --section-width: 150rem;
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;

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

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

@media only screen and (max-width: 680px) {
    :root {
        /* 	Typography */
        --base-size: 1.6rem;
    }
}

/* Layout
========================================================================== */
.section-wrapper {
    background-color: rgb(var(--gray-dark-color));
}

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

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

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

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

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 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 {
    color: rgb(var(--white-color));
    font-family: 'Lexend Deca', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1.5em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    padding-bottom: .3em;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Josefin Sans', sans-serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Josefin Sans', sans-serif;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 300;
}

/* List-check */
.list-check {
    padding: 0;
    list-style: none;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--accent-blue-light-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}

/* List properties */
.list-properties {
    padding: 0;
    margin-top: 0;
    list-style: none;
}

.list-properties li {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: .3rem;
    font-size: 1.5rem;
}

.list-properties li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--accent-pink-color), 1) 0%, rgba(var(--accent-purple-color), 1) 20%, rgba(var(--accent-blue-color), 1) 40%, rgba(var(--accent-blue-light-color), 1) 60%, rgba(var(--accent-green-color), 1) 80%, rgba(var(--accent-yellow-color), 1) 100%);
}

.list-properties li span {
    padding: 0 .5rem;
}

@media only screen and (max-width: 580px) {
    .list-properties li {
        flex-direction: column;
    }
}

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

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

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

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

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

    /* Rubriker */
    .section-title {
        font-size: 3.8rem;
    }

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

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

    /* Rubriker */
    .text-label {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

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

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

.btn span {
    z-index: 1;
    position: relative;
}

.btn-primary-filled,
.submit-button-container {
    position: relative;
    color: rgb(var(--white-color));
    background: linear-gradient(90deg, rgba(var(--accent-pink-color), 1) 0%, rgba(var(--accent-purple-color), 1) 20%, rgba(var(--accent-blue-color), 1) 40%, rgba(var(--accent-blue-light-color), 1) 60%, rgba(var(--accent-green-color), 1) 80%, rgba(var(--accent-yellow-color), 1) 100%);
}

.btn-primary-filled::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 4rem;
    background-color: rgb(var(--gray-dark-color));
    transition: .3s ease;
}

.btn-primary-filled:hover::before {
    left: 101%;
}

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

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    color: rgba(var(--accent-blue-light-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%;
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: rgb(var(--primary-dark-color));
    transition: .3s ease;
}

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Gradient */
.gradient-primary {
    background: linear-gradient(110deg, rgba(var(--accent-pink-color), 1) 0%, rgba(var(--accent-purple-color), 1) 20%, rgba(var(--accent-blue-color), 1) 40%, rgba(var(--accent-blue-light-color), 1) 60%, rgba(var(--accent-green-color), 1) 80%, rgba(var(--accent-yellow-color), 1) 100%);
}

/* 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;
}

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
}

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

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

/* Bredder */
.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 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) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

@media only screen and (max-width: 1050px) {
    /* Bredder */
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

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

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

/* Card 2-2 */
.card-2-2 .card-item {
    border-radius: 2rem;
}

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

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

.card-2-2 .card-footer {
    padding-top: 2rem;
}

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

.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(--accent-green-color));
}

@media only screen and (max-width: 350px) {
    .card-2-5 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-2-5 .card-header {
        width: 4.5rem;
        height: 4.5rem;
        margin-bottom: 1rem;
    }

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

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

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

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

.split-image {
    z-index: 1;
    position: relative;
    width: 50%;
    max-width: 50rem;
    aspect-ratio: 1 / 1;
    margin: 1rem 0;
    overflow: visible;
}

.split-image img {
    border-radius: 50%;
}

/* Decor */
.split-wrapper .blob::after,
.split-wrapper .blob::before {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.split-wrapper .blob::before {
    top: -.5rem;
    left: -1rem;
    background: linear-gradient(90deg, rgba(var(--accent-pink-color), 1) 0%, rgba(var(--accent-purple-color), 1) 20%, rgba(var(--accent-blue-color), 1) 40%, rgba(var(--accent-blue-light-color), 1) 60%, rgba(var(--accent-green-color), 1) 80%, rgba(var(--accent-yellow-color), 1) 100%);
}

.split-wrapper .blob::after {
    bottom: -.5rem;
    right: -1rem;
    background: linear-gradient(90deg, rgba(var(--accent-pink-color), 1) 0%, rgba(var(--accent-purple-color), 1) 20%, rgba(var(--accent-blue-color), 1) 40%, rgba(var(--accent-blue-light-color), 1) 60%, rgba(var(--accent-green-color), 1) 80%, rgba(var(--accent-yellow-color), 1) 100%);
}

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

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

@media screen and (max-width: 1000px) {
    .split-wrapper {
        background: transparent;
    }

    .split-content {
        width: 100%;
        padding: 0 0 3rem;
        background: transparent;
    }

    .split-image {
        width: 65%;
        max-width: none;
        margin: 0 auto;
    }
}

@media screen and (max-width: 580px) {
    .split-image {
        width: 90%;
        max-width: none;
        margin: 0 auto;
    }

    /* Decor */
    .split-wrapper .blob::before {
        top: -.5rem;
        left: -1rem;
    }

    .split-wrapper .blob::after {
        bottom: -.5rem;
        right: -1rem;
    }
}

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-color));
    background-color: rgb(var(--black-color));
}

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

.header-logo img {
    padding: 5px 0;
}

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

.TemplateMenu li.active>a,
.TemplateMenu a:hover {
    color: rgb(var(--accent-pink-color));
}

/* CTA */
.header-cta-wrapper {
    z-index: 1;
    position: relative;
    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 */
.mobile-menu .TemplateMenu li {
    padding: 0 2rem;
    text-align: center;
}

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

    /* CTA */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
        letter-spacing: 0;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    background-color: rgb(var(--black-color), .5);
    background-image: url(/assets/images/graphics/wave.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.top-section .section-block {
    width: 100%;
}

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

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

.top-section .btn:hover {
    color: rgb(var(--white-color));
}

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

@media only screen and (max-width: 580px) {
    .top-section {
        padding-bottom: 10rem;
        background-size: 100% 5rem;
    }

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

    .top-section p {
        font-size: 1.7rem;
    }
}

/* CTA
========================================================================== */
.section-cta .section-block {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cta-wrapper .text-block {
    max-width: 65rem;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-wrapper .btn-wrapper {
        margin-top: 2rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 50rem;
    background-color: rgb(var(--black-color), .3);
    background-image: url(/assets/images/graphics/wave.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.hero .section-block {
    width: 100%;
}

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

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 30rem;
        background-size: 100% 3rem;
    }

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .col-1 {
    padding: 4rem;
    border-radius: 2rem;
    background-color: rgb(var(--black-color));
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm textarea {
    border-radius: 2rem;
}

.ContactForm > div.submit-button-container {
    min-height: 4.5rem;
    margin: 0;
}

.ContactSubmit {
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    width: calc(100% - 2px);
    border-radius: 4rem;
    color: rgb(var(--white-color));
    background-color: rgb(var(--gray-dark-color));
    transition: .3s ease;
}

.ContactSubmit:hover {
    color: rgb(var(--accent-pink-color));
}

@media only screen and (max-width: 980px) {
    .section-contact .col-1 {
        margin-top: 3rem;
        padding: 2rem;
    }
}

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

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

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

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

.footer .small-title {
    padding: 0 0 1rem;
    font-size: 1.9rem;
    line-height: 1;
}

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

.footer li,
.footer p,
.footer a {
    text-decoration: none;
    color: rgb(var(--white-color));
}

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


/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgb(var(--white-color), .5);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
}

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

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
}

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

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

    .footer-menu-large {
        width: 100%;
        margin-bottom: 5rem;
    }

    .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: 5rem 2rem 0;
    }

    /* Footer header */
    .footer-header p {
        font-size: 1.7rem;
    }

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

    .footer .socials {
        margin-bottom: 0;
        text-align: center;
    }

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

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}