/* VM-Trailer Aktiebolag */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

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

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

    /* 	Colors */
    --primary-color: 0, 35, 149;
    --primary-dark-color: 13, 24, 59;
    --secondary-color: 223, 21, 32;
    --secondary-dark-color: 168, 16, 23;
    --accent-yellow-color: 255, 223, 02;

    --black-color: 4, 7, 17;
    --gray-color: 125, 128, 140;
    --gray-dark-color: 48, 49, 54;
    --gray-light-color: 234, 234, 236;
    --white-color: 255, 255, 255;

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

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

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 3rem;
}

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

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

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

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

/* Margins */
.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}


/* Ovrigt */
.justify-center {
    justify-content: center;
}

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

@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: 'Figtree', sans-serif;
}

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

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

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

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

.no-underline {
    text-decoration: none;
}

/* List-check */
.list-check {
    list-style: none;
    padding-inline-start: 2rem;
}

.list-check li {
    position: relative;
    padding: 0 0 1rem;
}

.list-check li::before {
    position: absolute;
    content: '\f00c';
    left: -2rem;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: .8em;
    font-family: 'Font Awesome 5 Pro';
    line-height: 2.2em;
}

@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: 2.5rem;
    }

    .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.2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-full {
    min-width: 100%;
    margin-bottom: 1rem;
}

.ContactSubmit {
    font-size: 1.3rem;
    border-radius: 4px;
    font-weight: 300;
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
}

.btn-primary-filled {
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
}

.btn-primary-filled:hover {
    border: 0.1rem solid rgb(var(--white-color));
}

.btn-secondary-filled {
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
    border: 0.1rem solid rgb(var(--white-color));
}

.btn-secondary-filled:hover,
.ContactSubmit:hover {
    background-color: rgb(var(--white-color));
    color: rgb(var(--black-color));
}

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

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

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

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}

/* 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(--secondary-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

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

/* Crossfade */
.bg-crossfade {
    position: relative;
}

.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

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

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

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

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

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

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

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

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

/* Card 1-1 */
.card-1-1 .small-title,
.card-1-1 .text-label {
    padding: 0;
}

.card-1-1 .contact-options {
    font-style: normal;
    border-top: 1px solid rgb(var(--black-color), .2);
    margin: 1rem 0 0;
}

.card-1-1 a,
.card-1-1 p {
    display: block;
    font-size: 1.4rem;
    margin: 2rem 0 0 0;
}

.card-1-1 a i {
    width: 2rem;
    color: rgb(var(--secondary-color));
}

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

/* Card 2-1 */
.card-2-1 .card-item {
    border-radius: 3px;
}

.card-2-1 .small-title i {
    margin: 0 1rem 0 0;
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    padding: 20rem 2rem 2rem;
}

.card-3-6.card-item {
    text-decoration: none !important;
}

.card-3-6 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-6 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .3);
    transition: .3s ease-in-out;
}

.card-3-6 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .6);
}

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
}

/* Logos 1 */
.logos-1 .card-item {
    width: 10rem;
    margin: 0 3rem 5rem;
}

/* 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 {
    width: 50%;
}

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

/* Speciella paddings */
.split-wrapper .pl-0 {
    padding-left: 0;
}

/* Speciella bredder */
.split-wrapper .w-55 {
    width: 55%;
}

.split-wrapper .w-45 {
    width: 45%;
}

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

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

    .split-wrapper .w-55 {
        width: 100%;
    }

    .split-wrapper .w-45 {
        width: 100%;
    }
}

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

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


/* Modal som öppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color), .5);
}

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 135rem;
    max-height: 75vh;
    padding: 0rem;
    border-radius: 1rem;
    overflow: auto;
    background: rgb(var(--black-color));
    transform: translate(-50%, -50%);
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
    color: rgb(var(--white-color));
}



/* Header / Navigation
========================================================================== */
header {
    background: rgb(var(--black-color));
}

header .container {
    flex-direction: column;
    justify-content: center;
    max-width: none;
}

header.scrolled {
    transform: translateY(-8rem);
    transition: all .3s ease;
}

/* Logo */
.header-logo {
    margin: 0 auto;
}

.header-logo img,
header.scrolled .header-logo img {
    max-height: 8rem;
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--white-color));
}

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

/* Dropdown */
.TemplateMenu>li>ul {
    width: 25rem;
}

/*
.TemplateMenu>li>a:hover {
    background-color: rgb(var(--gray-light-color));
}*/

.TemplateMenu ul a {
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 2rem 0;
    color: rgb(var(--white-color));
    transition: all .3s ease;
}

.TemplateMenu ul {
    background-color: rgb(var(--black-color));
}

/* Forhindra klick */
.TemplateMenu a[href="/17/4/produkter/"] {
    pointer-events: none;
}

/* Mobilmeny */
.mobile-menu.scrolled {
    transform: none;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
    background: white;
}

.mobile-menu .TemplateMenu ul {
    background: rgb(var(--black-color));
}

.mobile-menu .TemplateMenu a {
    color: rgb(var(--white-color));
}

.mobile-menu .mainmenu {
    background-color: rgb(var(--black-color));
}

.mobile-menu .container {
    height: var(--mobile-menu-height);
    flex-direction: row;
    justify-content: space-between;
}

.mobile-menu .header-logo {
    margin: 0 auto 0 0;
}

.mobile-menu .hamburger {
    margin: 0 -1rem 0 1rem;
}

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

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



/* ==========================================================================
Startsida
========================================================================== */
/* Top-section
========================================================================== */
.top-section {
    background-color: rgb(var(--primary-dark-color), .3);
    margin-top: -14rem;
    padding-top: 14rem;
}

.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background-image: linear-gradient(to top, rgba(var(--black-color), 1), rgba(var(--black-color), 0));
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: center bottom;
    margin-bottom: -1px;
}

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

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

.top-section .section-title {
    font-size: 5rem;
    font-weight: 400;
    color: rgb(var(--white-color));
}

.top-section p {
    max-width: 55rem;
    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 .section-title {
        font-size: 3rem;
    }
}

/* Sektion Skogsjumbo
========================================================================== */
.skogsjumbo {
    background-image: url(/assets/images/skogsjumbo-2000px.jpg);
    background-size: cover;
    background-position: center;
}

.skogsjumbo .section-block {
    background-color: rgb(var(--black-color), .8);
}

/* Sektion Filmer
========================================================================== */
.video-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.video-wrapper .image-wrapper {
    width: 100%;
    height: 100%;
}

/* Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(var(--black-color), .3);
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(var(--black-color), .7);
}

.play-title {
    opacity: 0;
    transform: translateY(100%);
    transition: all .3s ease;
}

.video-wrapper:hover .play-title {
    opacity: 1;
    transform: translateY(0);
    transition: all .3s ease;
}

/* ==========================================================================
Undersidor
========================================================================== */
/* Hero
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50rem;
}

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

.hero .text-block {
    max-width: 100rem;
}

.hero .section-title {
    font-size: 5rem;
    font-weight: 700;
    color: rgb(var(--white-color));
    padding: 0;
}

.hero p {
    max-width: 70rem;
    padding: 2rem 0 0;
    color: rgb(var(--white-color));
}

/* Hero med bild */
.hero.bg-image {
    background-color: rgb(var(--black-color), .5);
}

.hero.bg-image .section-block {
    background-image: linear-gradient(to top, rgba(var(--black-color), 1), rgba(var(--black-color), 0));
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: center bottom;
    margin-bottom: -1px;
}

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

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

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

/* ==========================================================================
Undersida Produkter > Enskild sida
========================================================================== */
/* Produktsektion
========================================================================== */
.product-header {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.product-header .image-wrapper,
.product-header img {
    width: 100%;
}

.product-title {
    position: absolute;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 15rem;
    padding: 0 5rem;
    margin: 0 0 -1px;
    background-image: linear-gradient(to top, rgb(var(--black-color), .95), transparent);
}

.EditMode .product-title {
    position: relative;
}

/* Header Slider */
.product-header-slider .slick-list {
    width: 100%;
}

.product-header-slider .product-header.slick-slide {
    display: flex;
}

.product-header-slider .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
}

.product-header-slider .slick-arrow::after {
    font-weight: 300;
}

.product-header-slider .slick-prev {
    left: 5rem;
}

.product-header-slider .slick-next {
    right: 5rem;
}

/* Tab Split */
.tab-split {
    padding-top: 0;
}

.tab-split .tags-list {
    transform: translateY(-100%);
    margin: 0;
}

.tab-split .tag {
    text-decoration: none;
    border-radius: 5px 5px 0 0;
    margin: 0 5px 0 0;
    padding: 1rem 1.5rem;
    background-color: rgb(var(--gray-dark-color));
    color: rgb(var(--white-color));
}

.tab-split .tag.tag-picked {
    background-color: rgb(var(--white-color));
}

.tag i {
    margin: 0 5px 0 0;
}

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

    .product-header,
    .product-header-slider {
        margin: 0 -3rem;
    }

    .product-header-slider .product-header {
        margin: 0;
    }

    .product-title {
        padding: 0 3rem;
    }

    .product-split .split-content {
        padding: 2rem 0 3rem;
    }

    .product-split .tab-split {
        background-color: rgb(var(--gray-dark-color));
        margin-top: 3rem;
        padding: 0 2rem 2rem;
    }

    /* Header Slider */
    .product-header-slider .slick-prev {
        left: 3rem;
    }

    .product-header-slider .slick-next {
        right: 3rem;
    }

    /* Tabs */
    .tab-split .tags-list {
        position: relative;
        display: flex;
        background-color: transparent;
        box-shadow: none;
        margin: 0 -2rem;
        width: auto;
    }

    .tab-split .tag {
        font-size: 1.3rem;
        background-color: rgb(var(--gray-color));
    }

    .tag i {
        display: none;
    }
}

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

    .product-header,
    .product-header-slider {
        margin: 0 -2rem;
    }

    .product-title {
        padding: 0 2rem;
    }

    /* Header Slider */
    .product-header-slider .slick-prev {
        left: 2rem;
    }

    .product-header-slider .slick-next {
        right: 2rem;
    }
}



/* Section-product
========================================================================== */
.section-product .tags-wrapper {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}

/* Taggar */
.section-product .tags-heading {
    display: none;
}

.section-product .tags-list {
    margin-bottom: -0.6rem;
}

.section-product .tag {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 0.8rem 0.8rem 0 0;
    background: rgb(var(--black-color));
    cursor: pointer;
    transition: .5s ease;
}

.section-product .tag:hover,
.section-product .tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--secondary-color));
}

/* Content */
.section-product .content-wrapper {
    border-top: 2px solid rgb(var(--black-color));
}

.section-product .list-styled {
    max-width: 120rem;
    padding: 5rem 2rem;
    margin: 0 auto;
    list-style: none;
}

.section-product .list-styled li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    border-bottom: 1px dotted rgb(var(--gray-dark-color));
}

.section-product .list-styled p {
    padding: 0;
}

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

    /* Taggar */
    .section-product .tags-wrapper {
        position: relative;
        max-width: 25rem;
        background: rgb(var(--primary-light-color));
        cursor: pointer;
    }

    .section-product .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .section-product .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--black-color));
    }

    .section-product .tags-heading i {
        margin-left: 2rem;
    }

    .section-product .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .section-product .tags-wrapper.opened .tags-list {
        display: block;
    }

    .section-product .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}

/* ==========================================================================
Undersida Galleri
========================================================================== */
.gallery .card-item .image-wrapper {
    position: relative;
    padding-top: 75%;
}

.gallery img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Sok + filtrering
========================================================================== */
/* Sok */
.card-item.hidden-search-item {
    display: none;
}

/* Taggar */
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    background-color: rgb(var(--black-color));
    color: rgb(var(--white-color));
    border: 0.1rem solid rgb(var(--white-color));
    transition: .5s ease;
}

.tag:hover,
.tag.tag-picked {
    color: rgb(var(--black-color));
    background: rgb(var(--white-color));
}

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

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--white-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}


/* Farger
========================================================================== */
/* Bakgrundsfarger */
.bg-gray-light {
    background: rgb(var(--gray-light-color));
}

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

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

.section-certificates .logo-item {
    height: 5rem;
    border-radius: 0 0 6px 6px;
    border: 1px solid rgb(var(--gray-light-color));
    border-top: none;
    padding: 4px;
    margin: 0 1rem 1rem 0;
}

.section-certificates .logo-item img {
    height: 100%;
}


/* ==========================================================================
Undersida Kontakt
========================================================================== */

/* Jotform */
.section-contact {
    background-image: url(/assets/images/trailer-svart-2000px.jpg);
    background-size: cover;
    background-position: center;
}

.section-contact .section-block {
    background-image: linear-gradient(to top, rgba(var(--black-color), 1), rgba(var(--black-color), 0));
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: rgb(var(--black-color), .7);
}

.section-contact.formstyle-black .col-1 {
    background-color: rgb(var(--black-color));
    padding: 3rem;
    max-width: 55rem;
    margin: 0 0 0 auto;
}

/* Separata Formular */
.selected-form .col-0 {
    max-width: 80rem;
    margin: auto;
}

/* Bekraftelseruta */
.ContactSentMessage {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: .5rem;
    background-color: rgba(var(--primary-color), .6);
    background-size: 4rem;
    background-position: 1.5rem center;
    background-repeat: no-repeat;
}

.ContactSentMessage p {
    padding: 0;
    color: rgb(var(--white-color));
}

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

/* CMS formular */
.Contact {
    padding: 2rem;
}

.ContactForm p:not(.small-title) {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--white-color));
}

.section-contact .ContactForm label,
.section-contact .ContactForm .group-wrapper {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgb(var(--white-color));
    line-height: 1;
    margin-bottom: 0;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm select:not(.illegal),
.ContactForm textarea:not(.illegal) {
    font-size: 1.5rem;
    border-radius: 4px;
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--gray-color), .2);
    background-color: rgb(var(--gray-dark-color));
}

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

.footer-container {
    max-width: none;
    margin: 0 auto;
}

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

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

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

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

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

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--white-color));
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

/* Footer bottom */
.footer-bottom {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background-image: url(/assets/images/dashed-border.svg);
    background-position: center top;
    background-repeat: repeat-x;
    background-size: 20px;
}

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

/* 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: 1024px) {
    .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;
    }
}

.image-card-item {
    display: flex;
    justify-content: center;
    /* Horisontell centrering */
    align-items: center;
    /* Vertikal centrering */
    text-align: center;
    /* Centrerar flerradig text */
    height: 100%;
    min-height: 30rem;
}