/* Market Partner Scandinavia AB */

/* Typsnitt */
@import url("https://use.typekit.net/ifu1hph.css");

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');
/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 53, 94, 128;

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

    --accent-purple-color: 1, 107, 125;
    --accent-orange-color: 255, 119, 49;

    /* 	Layout  */
    --col-padding: 5rem;
    --menu-height: 7.5rem;
    --menu-height-scrolled: 7.5rem;
    --section-width: 140rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1180;
    --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
========================================================================== */
.section-block {
    padding: 9rem 5rem;
}

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

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

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

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

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

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

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

/* Margins */
.m-auto {
    margin: auto;
}

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

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}
.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

.mw-800 .section-block-wrapper,
.mw-800:not(.section-wrapper) {
    max-width: 80rem;
}

.mw-600 {
    max-width: 60rem;
}


/* Ovriga klasser */
.justify-center {
    justify-content: center !important;
}

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

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'futura-pt', sans-serif;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: .6em;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1.2;
    font-family: 'futura-pt', sans-serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'futura-pt', sans-serif;
}

.ingress {
    padding-bottom: .6em;
    font-size: calc(var(--base-size) * 1.3);
    font-weight: 400;
    line-height: 1.7;
}

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

a {
    text-decoration: none;
}

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

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

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

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

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

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

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

    .ingress {
        font-size: calc(var(--base-size) * 1.1);
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 3rem;
    margin: 7px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all .4s ease;
}

.btn::after {
    content: ' \2023';
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 1rem;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn:hover::after {
    transform: translateX(1rem);
    transition: transform .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-white-filled {
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(var(--primary-color));
}

.arrow-link::after {
    content: ' \2023';
    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;
}

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

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

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    right: 50%;
    bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    transform: translatex(50%);
}

.bouncing-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 50%;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 3rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

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

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

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

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

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

/* Gradients */
.bg-gradient-primarylight-white {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 50%, rgb(var(--primary-color)) 50%);
    margin-top: calc(-1 * var(--menu-height));
}

.bg-gradient-primarylight-white-reverse {
    background-image: linear-gradient(to top, rgb(var(--primary-color)) 50%, rgb(var(--white-color)) 50%);
}

.bg-gradient-white-orange {
    background-image: linear-gradient(to top, rgb(var(--accent-orange-color)) 50%, rgb(var(--white-color)) 50%);
}

.bg-gradient-white-orange-reverse {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 50%, rgb(var(--accent-orange-color)) 50%);
}

/* Overlays */
.bg-overlay-black {
    background: rgba(var(--black-color), .9);
}

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

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

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

/* Grafiska element
========================================================================== */
.border-bottom-white {
    border-bottom: 2px solid rgb(var(--white-color));
}

.border-bottom-accent-orange {
    border-bottom: 2px solid rgb(var(--accent-orange-color));
}

/* Border radius */
.br {
    border-radius: .5rem;
}

.br-1 {
    border-radius: 1rem;
}

/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

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

/* Badge */
.badge-wrapper {
    position: relative;
}

.badge {
    position: absolute;
    top: -6rem;
    right: -6rem;
    max-width: 23rem;
    padding: .5rem 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-radius: 0 .5rem .5rem 0;
    transform: rotate(15deg);
}

@media only screen and (max-width: 1025px) {
    .badge {
        right: -3rem;
        max-width: 20rem;
    }
}

@media only screen and (max-width: 580px) {
    .badge {
        top: -4rem;
        max-width: 15rem;
    }
}

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

/* Parallax
========================================================================== */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 50rem;
    background-color: rgb(var(--black-color), .2)
}

.mi-h-50{
    min-height: 50rem;
      background-color: rgb(var(--black-color), .2);
        background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Bilder */
.parallax-network {
    background-image: url('/assets/images/network-2000px.jpg');
}

.parallax-cooworkers {
    background-image: url('/assets/images/sara-talent-2000px.jpg');
}
.parallax-academy{
    background-image: url('/assets/images/axel-2000px.jpg');
}
@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

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

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

/* 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.w70 .card-item {
    width: 70%;
    margin: 1rem;
}

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

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

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

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

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

    .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-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Logos 1 */
.logos-1 .card-item {
    height: 10rem;
    padding: 1rem;
    text-align: center;
    background: rgb(var(--white-color));
}

.logos-1 img {
    width: 100%;
    max-height: 12rem;
}

/* Card 2-1 */
.card-2-1 .card-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    transition: .3s ease;
    text-decoration: none;
}

.card-2-1 a.card-item:hover {
    transform: scale(105%);
}

.card-2-1 .card-header i {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 3rem;
    background-color: rgb(var(--primary-color));
}

/* Card 3-2 */
.card-3-2 .card-body {
    padding-bottom: 2rem;
}

.card-3-2 .image-wrapper {
    display: inline-block;
    height: 40rem;
    width: 100%;
    border-radius: 4rem 0 4rem 4rem;
}

.card-3-2 .image-wrapper .info-text {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    overflow: auto;
    background: rgb(var(--black-color), .85);
    transition: .3s ease;
}

.card-3-2 .image-wrapper:hover .info-text {
    opacity: 1;
}

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

.card-3-2 .card-head {
    padding: 2rem 2rem 0;
}

.card-3-2 .text-label {
    font-size: 1.3rem;
    font-weight: 600;
}

.card-3-2 .contact-item {
    margin: .5rem 0;
    padding: .5rem 1.5rem;
    border-radius: 2rem;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
    cursor: pointer;
}

.card-3-2 .contact-item i {
    margin-right: .5rem;
}

.card-3-2 .contact-item a {
    text-decoration: none;
}

.card-3-2 .contact-item:hover a {
    text-decoration: underline;
}

/* Cards 3-3 */
.cards-3-3 .card-item {
    position: relative;
    margin: 0 1rem;
    margin-bottom: 7rem;
    padding: 20rem 2rem 2rem;
    text-decoration: none;
}

.cards-3-3 .card-body {
    z-index: 1;
    position: relative;
    height: 100%;
    padding: 2rem 3rem;
    background-color: rgb(var(--primary-color));
}

.cards-3-3 .image-wrapper img {
    height: 100%;
    width: 100%;
}

.cards-3-3 .small-title {
    font-size: 2.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid white;
    margin-bottom: 1rem;
}

.cards-3-3 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s ease;
}

.cards-3-3 .card-item:hover .image-wrapper {
    transform: scale(1.03);
}

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

@media only screen and (max-width: 500px) {
    .cards-3-3 .card-item {
        padding: 20rem 1rem 1rem 1rem;
    }
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 35rem;
    padding: 0;
    z-index: 0;
}

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

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
    width: 100%;
    pointer-events: none;
    transition: .3s ease;
}

.card-3-6 .card-item:hover .card-body {
    margin-bottom: 3rem;
}

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

.split-wrapper .align-center {
    align-self: center;
}

.split-wrapper .align-end {
    align-self: end;
    padding-bottom: 0;
}

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

@media screen and (max-width: 1000px) {
    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
    }

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

    .split-wrapper.bg-white .split-content,
    .split-content.bg-gray-light {
        padding: 2rem;
    }

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

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

/* Header / Navigation
========================================================================== */
/* Dolj hem */
body:not(.EditMode) header .TemplateMenu>li:nth-child(1) {
    display: none;
}

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

header {
    padding: 0 1rem 0 0;
}

header:not(.scrolled) {
    background-color: transparent;
}

header:not(.active-menu) .container {
    height: var(--menu-height);
    max-width: unset;
}

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

header .header-logo img {
    padding: 0;
    transition: .3s ease;
}

header:not(.scrolled, .active-menu) .header-logo img {
    max-height: 13rem;
    filter: invert(100%) brightness(1000%);
}

/* Nav */
.TemplateMenu a {
    padding: 0 2.5rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

header:not(.scrolled, .mobile-menu) .TemplateMenu>li>a {
    color: rgb(var(--white-color));
}

.TemplateMenu>ul>li>a {
    color: rgb(var(--black-color));
}

/* Hover effect */
header:not(.mobile-menu) .TemplateMenu>li>a:hover:before,
header:not(.mobile-menu) .TemplateMenu>li.active a:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

header:not(.mobile-menu) .TemplateMenu>li>a:before {
    visibility: hidden;
    position: absolute;
    content: "";
    height: 2px;
    top: 50px;
    width: 50%;
    left: 25%;
    background-color: rgb(var(--white-color));
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

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

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

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

.mobile-menu .header-cta-wrapper {
    margin: 0;
}

.mobile-menu:not(.scrolled, .active-menu) .hamburger-inner,
.mobile-menu:not(.scrolled, .active-menu) .hamburger-inner::after,
.mobile-menu:not(.scrolled, .active-menu) .hamburger-inner::before {
    background-color: rgb(var(--white-color));
}

.mobile-menu .header-logo img,
.mobile-menu.scrolled .header-logo img {
    max-height: var(--menu-height-scrolled);
}

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

@media only screen and (max-width: 680px) {
    .header-cta-wrapper li:nth-child(3) {
        display: none;
    }
}

/* Modal
========================================================================== */
.modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
}

.blocker {
    z-index: 100;
}

.modal a.close-modal {
    display: none;
}

.modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
}

@media only screen and (max-width: 450px) {
    .modal {
        padding: 3rem 2rem;
    }

    .blocker {
        padding: 1rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
    
}

.top-section .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: rgb(var(--black-color), .5);
}

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

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

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

@media only screen and (max-width: 480px) {
    .top-section .section-block {
        align-items: end;
        min-height: 85vh;
    }

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

    .top-section .bouncing-arrow-wrapper {
        display: none;
    }
}

/* Loggor
========================================================================== */
.section-slider {
    overflow: hidden;
}

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

.section-slider .slick-list {
    width: 100%;
}

.section-slider .card-item {
    margin-right: 2rem;
}

@media only screen and (max-width: 480px) {
    .section-slider .section-block {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* Vara tjanster
========================================================================== */
.section-services .col-0,
.section-services .col-1 {
    align-content: end;
}

.section-services .col-1 .cards-wrapper {
    margin-bottom: -1rem;
}

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

/* Instagram
========================================================================== */
.instagram {
    overflow: hidden;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-item:nth-child(odd) {
    transform: rotate(-1deg);
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-media {
    border: 2rem solid rgb(var(--white-color));
    border-bottom: 5rem solid rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    #eapps-instagram-feed-1 .eapps-instagram-feed-posts-item-media {
        border: 1rem solid rgb(var(--white-color));
        border-bottom: 2.5rem solid rgb(var(--white-color));
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    margin-top: calc(-1 * var(--menu-height));
    z-index: -1;
}
.hero.bg-image .section-block{
     background-color: rgb(var(--black-color), .5);
}
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 45rem;
    text-align: center;
    z-index: 1;
}

.hero.bg-primary .section-block {
    background-color: unset;
}

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

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

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 35rem;
        padding: 10rem 2rem 0;
    }

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

/* Info
========================================================================== */
.section-info {
    position: relative;
    z-index: 2;
}

.section-info:not(.EditMode) .section-block {
    padding-top: 0;
    margin-top: -5rem;
    overflow-x: clip;
}

/* Blå ruta */
.section-info .text-block-center {
    max-width: 110rem;
    padding: 6rem 8rem 8rem;
}

.section-info i {
    font-size: 6rem;
}

@media only screen and (max-width: 1300px) {
    /* Split */
    .section-info .split-wrapper {
        flex-direction: column-reverse;
        max-width: 110rem;
        margin: auto;
    }

    .section-info .split-image,
    .section-info .split-content {
        width: 100%;
    }

    .section-info .split-content {
        max-width: 70rem;
        margin: auto;
    }
}

@media only screen and (max-width: 1000px) {
    .section-info .split-content {
        padding: 3rem 0 0;
    }
}

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

/* Slick - quotes
========================================================================== */
.section-quotes .col-1 {
    background-color: rgb(var(--gray-light-color));
    padding: 6rem 4rem 2rem;
    align-content: end;
}

.slick-quote {
    padding: 0;
}

.slick-quote .slick-dots {
    padding: 4rem 0 0;
}

.slick-quote .slick-list {
    width: 100%;
}

@media only screen and (max-width: 580px) {
    .section-quotes .col-1 {
        padding: 3rem 2rem 1rem;
    }

    .slick-quote .slick-dots {
        padding: 2rem 0 0;
    }
}

/* Widget - Teamtailor
========================================================================== */
.teamtailor-jobs-widget .teamtailor-jobs__job {
    max-width: 50rem;
    border-left: 2px solid rgb(var(--black-color));
    padding: 2rem;
    margin: 2rem auto;
}

.teamtailor-jobs-widget .teamtailor-jobs__job a,
.teamtailor-jobs-widget .teamtailor-jobs__job span {
    color: rgb(var(--white-color));
}

.teamtailor-jobs-widget .teamtailor-jobs__job a {
    font-size: 2.2rem;
}

.teamtailor-jobs-widget .teamtailor-jobs__job span {
    font-size: var(--base-size);
}

/* ==========================================================================
Undersida: Vilka ar vi?
========================================================================== */
.section-team .card-3-2 .small-title,
.section-team .card-3-2 .text-label {
    color: rgb(var(--white-color));
}

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

.section-team .contact-item {
    padding: 0;
}

/* ==========================================================================
Undersida: Aktuellt hos oss
========================================================================== */
.news-wrapper {
    margin-top: -7rem;
}

.news-wrapper p {
    font-size: calc(var(--base-size) * 1.3);
    font-weight: 400;
    line-height: 1.7;
}

/* Sektion video
========================================================================== */
.video-wrapper {
    position: relative;
}

/* Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: .4s ease;
}

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

.play-overlay em {
    color: rgb(var(--white-color));
    font-size: 5rem;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay em {
    font-size: 3.5rem;
}

.play-overlay p {
    display: inline-block;
    color: rgb(var(--white-color));
    margin-left: 1.5rem;
    font-size: 0;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay p {
    font-size: 2rem;
}

/* Video */
.LayoutPage .fancybox-video {
    display: none;
}


/* ==========================================================================
Undersida: Succescenter
========================================================================== */
/* Filtrering */
.tags-heading {
    display: none;
}

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

.tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: .5s ease;
}

.tag-b-r {
    border-right: 1px solid rgb(var(--primary-color));
}

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



@media only screen and (max-width: 580px) {
    /* Sok */
    .search-wrapper input {
        width: 100%;
    }

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

/* ==========================================================================
Undersida: Also Succescenter
========================================================================== */
.logo-wrapper {
    max-width: 30rem;
    margin: auto;
}

.section-also-team .card-3-2 .contact-item {
    background: rgb(var(--accent-orange-color));
}

.also-logo-wrapper {
    text-align: center;
}

.also-logo-wrapper img {
    max-width: 30rem;
}

.subpage-also-successcenter footer {
    display: none;
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-form:not(.EditMode) .section-block {
    margin-top: -13rem;
    position: relative;
}

@media only screen and (max-width: 580px) {
    .section-form:not(.EditMode) .section-block {
        margin-top: -5rem;
    }
}

@media only screen and (max-width: 520px) {
    .section-form:not(.EditMode) .section-block {
        margin-top: -13rem;
    }
}

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

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

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

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

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

.footer .text-label {
    padding: 0 0 2.5rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
    text-transform: none;
}

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

.footer-socials .footer-submenu {
    display: flex;
}

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

.footer .circle-icon {
    background-color: rgb(var(--white-color));
    border: 2px solid rgb(var(--white-color));
    color: rgb(var(--black-color));
}

.footer .circle-icon:hover {
    background-color: transparent;
    color: rgb(var(--white-color));
    text-decoration: none;
}

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

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

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

.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: 1200px) {
    .footer {
        padding: 0 3rem;
    }

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

    .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 */
    .footer-top {
        padding: 5rem 0 0;
    }

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

    .webbess-stamp {
        margin: 0 0 1rem;
    }
}