/* fisheye  */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;900&display=swap');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;

    /* 	Colors */
    --black-color: 10, 10, 10;
    --gray-dark-color: 75, 75, 75;
    --gray-light-color: 242, 242, 242;
    --gray-light-middle-color: 150, 150, 150;
    --white-color: 255, 255, 255;

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

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

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.section-block-wrapper {
    max-width: 130rem;
}

/* Paddings */
.pb-0 .section-block {
	padding-bottom: 0;
}

.pt-0 .section-block{
    padding-top: 0;
}

.mt-3 {
    margin-top: 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: 'Montserrat', sans-serif;
}

/* Rubriker */
.section-title {
	font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 500;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.small-title {
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

.text-label {
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

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

a {
    font-size: inherit;
    font-weight: 500;
    text-decoration: underline;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

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

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

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

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

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

.font-serif {
	font-family: 'Gambetta', serif;
	font-weight: 400;
}

/* Listor */
.bullet-list {
    list-style: none;
}

.bullet-list li {
    position: relative;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.bullet-list li::before {
    content: '\f111';
    position: absolute;
    top: 50%;
    left: -2.5rem;
    color: rgb(var(--black-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

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

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

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

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

    .text-label {
        font-size: 1.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-family: 'Switzer', sans-serif;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 1rem;
    transition: all .4s ease;
}

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

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

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

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

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

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

.circle-icon i:before,
.circle-icon em:before {
    font-size: 1.4rem;
} 

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

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

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

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height) - 1px);
}

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

/* Bakgrundsvideo */
.bg-video {
    position: relative;
    margin-top: calc(-1 * var(--menu-height) - 1px);
}

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

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

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

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

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

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

    }

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

@media only screen and (max-width: 750px) {
    .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.w-20 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

/* Cards 15 */
.cards-15 .card-item {
    position: relative;
    display: flex;
    align-items: center;
	justify-content: center;
    min-height: 35rem;
}

.cards-15 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.cards-15 .text-wrapper {
    z-index: 1;
    position: relative;
    padding: 3rem 2rem 3rem 2rem;
}

.cards-15 .small-title,
.cards-15 p {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .cards-15 .card-item {
 
        min-height: 20rem;
    }
    
}


/* Logos 1 */
.logos-1 .card-item {
    text-align: center;
    margin: 1rem;
    height: auto;
}

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

.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-content .text-block {
    max-width: 65rem;
    margin: 0 auto;
}

.split-image {
    width: 50%;
}

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

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

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

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

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

/* Header / Navigation
========================================================================== */
header,
header.mobile-menu,
.SubPage header.mobile-menu {
    background-color: transparent;
} 

header.scrolled,
.SubPage header.scrolled, 
.SubPage.header-black header {
    background-color: rgb(var(--primary-color));
} 

header .container {
    padding: 0 5rem;
}

/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/34/vara-tjanster/"] {
    pointer-events: none;
}

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

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

/* Nav */
.TemplateMenu a {
	font-family: 'Switzer', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--white-color));
}

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

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

/* CTA  */
.header-cta-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: .8rem 1.6rem;
    line-height: 1;
    border-radius: 0;
}

/* Mobilmeny */
.mobile-menu .container {
    height: var(--mobile-menu-height);
}

/* mobilmenyn */
.mobile-menu {
    order: 0;
}

.mobile-menu {
    background-color: rgb(var(--primary-color));
    transition: 0.3s ease;
}

.mobile-menu.scrolled,
.SubPage .mobile-menu {
    background-color: rgb(var(--primary-color));
}

.mobile-menu .container {
    padding: 0 1rem;
}

.mobile-menu .mainmenu {
    padding-top: calc(var(--mobile-menu-height) + 8rem);
    background: linear-gradient(
        to right,
        rgb(var(--primary-color)) 0%,
        rgb(var(--primary-color), 0.8) 50%,
        rgb(var(--primary-color), .1) 100%
    );
}

.mobile-menu .TemplateMenu > li > a,
.mobile-menu.scrolled .TemplateMenu > li > a {
    line-height: 6rem;
}

.mobile-menu .TemplateMenu ul {
    background-color: transparent;
}

.mobile-menu .TemplateMenu a {
    font-size: 3.2rem;
}

.mobile-menu .TemplateMenu ul li a {
    font-size: 1.6rem;
    line-height: 2;
}

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

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

@media only screen and (max-width: 580px) {
    header .circle-icon {
        display: none;
    }

    .header-cta-wrapper .btn {
      font-size: 1.3rem !important;
      padding: .8rem 1.4rem;
    }
}

@media only screen and (max-width: 360px) {
    .header-logo img {
       display:none;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
	position: relative;
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh + 1px);
    background-color: rgb(var(--black-color), .4);
}

.top-section .section-block {
	padding-bottom: 5rem;
}

.top-section .section-title {
    max-width: 40rem;
    font-weight: 700;
    color: rgb(var(--white-color));
}

.hero-links {
	position: absolute;
    display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	list-style: none;
	padding: 0;
	margin: 0;
}

.hero-links li {
	margin: 1rem 0;
}

.hero-links a {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
	font-weight: 900;
	font-size: 5rem;
    line-height: 1.2;
	color: rgb(var(--white-color));
	text-decoration: none;
}

.hero-links a:hover {
	color: rgb(var(--white-color), .7);
}

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

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

    .hero-links a {
        font-size: 3rem;
    }  
}

/* Samarbetspartners
========================================================================== */

/* Slick wrapper */
.slick-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Slick list (innehållet i slidern, i detta fall image-wrapper) */
.slick-list {
    display: inline-block;
    width: calc(100% - 8.5rem);
}

.logos-1 .slick-track {
    display:flex;
    align-items: center;
}

/* Pilar */
.slick-arrow {
    opacity: .8;
    position: relative;
    width: 4rem;
    height: 2rem;
    font-size: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: .2s ease;
}

.slick-arrow:hover {
    opacity: 1;
}

/* Sektion Tjanster
========================================================================== */
.services {
	justify-content: space-between;
}

.services .card-item {
	width: calc(100% / 3 - 1rem);
	margin: 0 0 2rem;
}

.services .card-item.wide {
	width: calc((100% / 3) * 2 - 1rem);
}

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

    .services .card-item, 
    .services .card-item.wide {
        width: 100%;
        margin: 1rem 0;
    }
}

/* ==========================================================================
Undersidor, generellt
========================================================================== */

/* Hero
========================================================================== */
.hero .section-block  {
    display: flex;
    align-items: flex-end;
    min-height: 55vh;
    background-color: rgb(var(--black-color), .4);
	padding-bottom: 5rem;
}

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

.hero .section-title {
    font-size: 8rem;
    font-weight: 900;
    color: rgb(var(--white-color));
}

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

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

/* Hero (video + fullskarm)
========================================================================== */
.hero-video .section-block {
    padding-top: 10rem;
    align-items: center;
    min-height: 80vh;
    background-color: rgb(var(--black-color), .6)
}

.hero-video .text-block-center {
    max-width: 85rem;
}

.hero-video p {
    font-size: 2rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero-video .section-block {
        background-color: rgb(var(--black-color), .8)
    }

    .hero-video {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .col-0 {
    margin-bottom: 5rem;
}

.ContactForm p {
    display: none;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    background: rgb(var(--gray-light-color));
    border-color: rgb(var(--gray-light-color));
}

@media only screen and (max-width: 980px) {
    .section-contact .col-1 {
        margin-bottom: 5rem;
    }
}

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

.footer-container {
    max-width: 140rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

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

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

.footer .text-label {
    font-size:1.7rem;
    text-transform: uppercase;
    color: rgb(var(--white-color));
}

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

.footer a:hover {
    color: rgb(var(--gray-light-middle-color)) !important;
}
 
.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--white-color));
    text-decoration: none;
}

.footer a:not(.circle-icon):hover {
    color: rgb(var(--primary-color));
    transition: .3s ease;
}

.footer .circle-icon {
    margin: 2rem 1rem 0 0;
}

/* 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(--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-container {
        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-container {
        padding: 0 3rem;
    }
}