/* Set Up AB */

/* Typsnitt – Proxima Nova */
@import url("https://use.typekit.net/csu3vpq.css");
@import url('https://fonts.googleapis.com/css2?family=Exo&display=swap');

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

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');
    
/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --section-width: 155rem;
    --col-padding: 5rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;

    /* 	Colors */
    --primary-color: 236, 102, 8;

    --black-color: 29, 29, 31;
    --gray-color: 226, 226, 225;
    --gray-medium-color: 112, 111, 111;
    --gray-dark-color: 76, 76, 76;
    --gray-light-color: 237, 237, 231;
    --white-color: 255, 255, 255;

    /* --accent-beige-color: 248, 225, 209; */
    --accent-petrol-color: 46, 80, 82;
    --accent-petrol-light-color: 64, 93, 94;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 7rem;
    --mobile-menu-bg: 46, 80, 82;
    --menu-color: var(--white-color);
}

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

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

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

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

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

.pt-3 {
    padding-top: 3rem;
}

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

.pt-8 .section-block {
    padding-top: 8rem;
}

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

.pb-20 .section-block {
    padding-bottom: 20rem;
}

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

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

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

.pr-0 .section-block,
.pr-0 {
    padding-right: 0 !important;
}

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

/* Margins */
.my-1 {
    margin: 0 1rem;
}

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

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

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Specifika bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-700 {
    max-width: 70rem;
}

.mw-800 {
    max-width: 80rem;
}

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

.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

.mw-1400 .section-block-wrapper {
    max-width: 140rem;
}

.mw-78.text-block-center {
    max-width: 78rem;
}

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

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

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

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

/* rubriker */
.section-title {
    font-size: 5.7rem;
    line-height: 1.2;
    font-weight: 500;
    padding-bottom: 3.6rem;
    font-family: proxima-nova, sans-serif;
}

/* Test av typsnitt */
.section-title-test {
    font-size: 5.7rem;
    line-height: 1.2;
    font-weight: 500;
    padding-bottom: 3.6rem;
    font-family: 'Exo', sans-serif;
    text-shadow: 0 0 1rem rgba(var(--black-color), .75);
}


.small-title {
    font-size: 2.7rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(var(--black-color));
    font-family: proxima-nova, sans-serif;
}

.text-label {
    font-size: 1.4rem;
    line-height: 1.3;
    padding-bottom: .4em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--black-color));
}

.ingress {
    font-size: 2.3rem;
}

/* Text */
p,
q {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    color: rgb(var(--gray-dark-color));
    font-size: 1.6rem;
    font-weight: 300;
    text-decoration: none;
    font-size: var(--base-size);
}

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

.text-block-center {
    max-width: 80rem;
    margin: 0 auto;
}

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

.text-semibold {
    font-weight: 600;
}

.text-semibold-test {
    font-weight: 600;
    font-family: 'Exo', sans-serif;
}
.text-test{
    
    font-family: 'Exo', sans-serif;
}

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

.text-capitalize {
    text-transform: capitalize;
}

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

}

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

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

@media only screen and (max-width: 580px) {
    .text-label {
        font-size: 1.2rem;
    }

    .text-block-center.text-center {
        text-align: left;
    }
}
    
/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.btn-wrapper .btn {
    margin: 0 1rem 0 0;
}

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 17rem;
    padding: 1.7rem 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

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

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

.btn-accent-petrol-border {
    color: rgb(var(--accent-petrol-color));
    border: 1px solid rgb(var(--accent-petrol-color));
    background-color: transparent;
}

.btn-accent-petrol-border:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--accent-petrol-color));
    background-color: rgb(var(--accent-petrol-color));
}

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 600;
}

.arrow-link::after {
    content: ' \f054';
    display: inline-block;
    margin-left: 1.3rem;
    font-family: 'Font Awesome 5 Pro';
    font-size: .9em;
    transition: transform .4s ease;
}

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

/* Sociala ikoner */
.social-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: 1px solid rgb(var(--white-color));
    border-radius: 50%;
    transition: .3s ease;
}

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

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

/* 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(--white-color));
    transition: .3s ease;
}

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

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


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

    .btn-wrapper .btn {
        margin: .5rem 0;
    }
}

/* Farger
========================================================================== */
/* Bakgrundsfarger */
.bg-accent-petrol {
    background-color: rgba(var(--accent-petrol-color));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 850px) {
    .cards-wrapper.w-12 .card-item {
        width: calc((100% / 4) - 1rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }

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

@media only screen and (max-width: 580px) {
    .cards-wrapper.w-12 .card-item {
        width: calc((100% / 4) - 1rem);
        margin: .5rem;
    }

    .cards-wrapper.w-50-0 .card-item {
        width: 100%;
    }
}

/* Cards 1 */
.cards-1 .card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    font-weight: 500;
    border-bottom: 2px solid rgb(var(--accent-petrol-color));
    background: rgb(var(--white-color));
}

/* Cards 1-2 - Recensionskort */
.cards-1-2 .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
    background-color: rgb(var(--gray-color));
    border-radius: 3px;
}

.cards-1-2 .card-body {
    padding: 3rem;
}

.cards-1-2 p {
    font-size: 1.7rem;
}  

.cards-1-2 .card-footer {
    display: flex;
    align-items: flex-end;
    background-color: rgb(var(--accent-petrol-color));
    padding: 0 2rem 1rem;
    margin: auto 0 0;
}  

.cards-1-2 .quote-sign {
    width: 7rem;
    height: 7rem;
    padding: 1.5rem;
    margin: -1.5rem 2rem 0 0;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
    border: 3px solid rgb(var(--white-color));
}

.cards-1-2 .text-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    padding: 1rem 0;
    color: rgb(var(--white-color));
}

.cards-1-2 .text-title span {
    display: block;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .cards-1-2 .card-item {
        margin: 0 1rem  0 0;
    }

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

    .cards-1-2 .quote-sign {
        align-self: flex-start;
        width: 4rem;
        height: 4rem;
        padding: 1rem;
        border-width: 2px;
        margin-top: -6px;
    }

    .cards-1-2 .text-title {
        font-size: 1.2rem;
    }
}

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

/* Cards 2 */
.cards-2 .card-item {
    padding: 1rem;
    text-align: center;
}

.cards-2.alt-2 .card-item .icon-wrapper {
    width: 10rem;
    height: 10rem;
}

.cards-2.alt-2 .icon-wrapper i {
    font-size: 3.5rem;
    color: rgb(var(--white-color));
}

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

.cards-2 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 50%;
}

.cards-2 .card-item:nth-child(1) .icon-wrapper {
    background-color: rgb(var(--primary-color));
}

.cards-2 .card-item:nth-child(2) .icon-wrapper {
    background-color: rgb(var(--accent-petrol-color));
}

.cards-2 .icon-wrapper i {
    font-size: 2.5rem;
    color: rgb(var(--white-color));
}


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

    .cards-2.alt-2 .card-item {

        padding: 2rem;
    }

    .cards-2.alt-2 .card-item .icon-wrapper {
        width: 7rem;
        height: 7rem;
    }

    .cards-2.alt-2 .icon-wrapper i {
        font-size: 2.5rem;

    }
}

/* Cards 5 */
.cards-wrapper.cards-5 .card-item {
    padding: 3rem 2rem;
    transition: .3s ease;
}

.cards-5 .card-item:hover {
    background: rgb(var(--gray-light-color));
}

.cards-5 .icon-wrapper {
    margin-bottom: 1.5rem;
    font-size: 4rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .cards-5 .card-item.border-right {
        border-right: none;
        border-bottom: 1px solid rgb(var(--accent-petrol-color));
    }
}

/* Cards 6*/
.cards-6 .card-item {
    position: relative;
    padding: 2rem;
    text-decoration: none;
    background-color: rgb(var(--gray-light-color));
}

.cards-6 .image-wrapper {
    z-index: 1;
}

.cards-6 .text-wrapper .small-title {
    font-size: 2rem;
    margin: 0;
}

.cards-6 .card-item .btn-show-more {
    font-weight: 600;
    cursor: pointer;
}

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    background-color: rgb(var(--gray-color));
    overflow: hidden;
    transition: .2s ease;
    position: relative;
}

.cards-7 .card-item:hover {
    background-color: rgb(var(--gray-color), .4);
}

.cards-7 .image-wrapper {
    padding-top: 62.5%;
}

.cards-7 .image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.cards-7 .badge {
    z-index: 1;
    position: absolute;
    left: 0;
    width: auto;
    top: 2rem;
    padding: 1.2rem 2rem;
    background-color: rgb(var(--primary-color));
}

.cards-7 .badge .text-label {
    padding-bottom: 0;
    font-size: 1.4rem;
}


.cards-7 .text-wrapper {
    padding: 2rem 3rem;
}

.cards-7 .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 1px solid rgb(var(--gray-dark-color));
}

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

/* Cards 10 */
.cards-10 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 30rem;
    text-decoration: none;
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    box-shadow: 0 1rem 3rem rgb(var(--gray-dark-color), .3);
}

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

.cards-10 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), 0.2);
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

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

.cards-10 .text-wrapper {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 5rem;
    color: rgb(var(--white-color));
}

.cards-10 .arrow-link {
    color: rgb(var(--white-color));
    font-size: 1.4rem;
}

@media only screen and (max-width:550px) {
    .cards-10 .text-wrapper {
        padding: 2rem;
    }

    .cards-10 .text-wrapper.border {
        margin: 2rem;
    }
}

/* Cards 11 */
.cards-11 .card-item {
    overflow: hidden;
    position: relative;
    justify-content: center;
}

.cards-11 .text-label {
    font-weight: 700;
    color: rgb(var(--primary-color));
}

.cards-11 .image-wrapper {
    padding-top: 80.5%;
    position: relative;
}

.cards-11 .image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.cards-11 .image-wrapper .photo-hide-show {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.cards-11 .image-wrapper .photo-hide-show.photo-spex {
    opacity: 0;
}

.cards-11 .image-wrapper:hover .photo-hide-show.photo-spex {
    opacity: 1;
}

.cards-11 .text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.5rem;
    margin: 0;
}

.cards-11 .small-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.cards-11 .text-label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.6rem;
    font-weight: 400;
}

.cards-11 p,
.cards-11 a,
.cards-11 q {
    display: block;
    padding-bottom: .3rem;
    font-size: 1.6rem;
    text-decoration: none;
}

.cards-11 em {
    margin-right: 1rem;
    color: rgba(var(--primary-color));
}

.cards-11 .socials {
    margin-top: 1rem;
}

.cards-11 .socials a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    .cards-11 .text-wrapper {
        padding: 1.5rem 0;
    }
}
   
/* Logos 1 */
.logos-1 .card-item {
    padding: 2rem;
    text-align: center;
}
 
.logos-1 img {
    transform: scale(.9);
    transition: .3s ease;
}

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

@media only screen and (max-width: 1200px) {
    .logos-1 .card-item {
        padding: 2rem;
    }
}

@media only screen and (max-width: 850px) {
    .logos-1 .card-item {
        background-color: transparent;
    }
}

@media only screen and (max-width: 350px) {
    .logos-1 .card-item {
        padding: 0;
    }
}

img  .via-logo{
    margin: auto 0 auto auto;
     width: 1rem !important; 
}
/* Accordion
========================================================================== */
.accordion-item {
    padding-bottom: 2rem;
}

.accordion-header {
    position: relative;
    padding: 0 2rem 1rem;
    border-bottom: 1px solid rgb(var(--primary-color));
    cursor: pointer;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-header p {
    padding-right: 2.5rem;
}

.accordion-body {
    padding: 2rem;
}

@media only screen and (max-width: 480px) {
    .accordion-header {
        padding-left: 0;
    }

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

    .accordion-body {
        padding: 2rem 0;
    }

    .accordion-body p {
        font-size: 1.7rem;
    }
}

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

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

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

a.split-content {
    cursor: pointer;
}

.split-image.h-60 img {
    max-height: 60rem;
}

.split-image {
    width: 50%;
    border-radius: 3px;
    min-height: 65rem;
}

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

.split-wrapper .align-flex-end {
    align-self: flex-end;
}

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

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

/* Speciella hojder */
.split-wrapper .mh-650 {
    max-height: 65rem;  
}

/* Speciella margins */
.split-wrapper .ml--18rem {
    z-index: 1;
    position: relative;
    margin-left: -18rem;
}

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

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

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

    /* Speciella margins */
    .split-wrapper .mt--20 {
        margin-top: 0;
    }

    /* Speciella margins */
    .split-wrapper .ml--18rem {
        margin-left: 0;
    }
}

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

    .full-width .split-content {
        padding: 4rem 2rem 2rem;
    }
}

/* Grafiska element
========================================================================== */
.border-right {
    border-right: 1px solid rgb(var(--accent-petrol-light-color));
}

/* Bilder */
img.grayscale {
    filter: grayscale(100%);
}

img.white {
    filter: brightness(0) invert(1);
}

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

.of-wrapper img.op-c-20 {
    object-position: center 20%;
}

.of-wrapper img.op-c-b {
    object-position: center bottom;
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height) + 2px);  
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), 0.0) 100%);
}

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

.bg-image-wrapper.op-ct img {
    object-position: center top;
}

/* Bakgrundsvideo */
.bg-video {
    position: relative;
}

.bg-video-wrapper {
    z-index: -2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

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

.parallax .section-block {
    background-color: rgb(var(--black-color), .6)
}

.parallax-about {
    background-image: url('/assets/images/projekt-2000px.jpg');
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Modal
========================================================================== */
.modal {
    max-width: 100rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
    background: rgb(var(--accent-petrol-color));
}

.modal-small {
    max-width: 50rem;
    max-height: 75vh;
}

.blocker {
    z-index: 100;
}

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

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

.modal .small-title,
.modal p,
.modal a {
    color: rgb(var(--white-color))
}

.modal .section-title {
    padding: 0 2rem;
}

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

    .blocker {
        padding: 1rem;
    }
}

/* Header / Navigation
========================================================================== */
header {
    margin-top: -3px;
    background-color: transparent;
    border-bottom: 1px solid rgb(var(--white-color), .5);
    transition: .5s ease;
}

header.scrolled {
    background-color: rgb(var(--accent-petrol-color));
    border-bottom: 1px solid rgb(var(--white-color), 0);
}

header .container {
    max-width: none;
}

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

.header-logo img {
    padding: 1rem 0;
    width: 20rem;
}

.logo-black .header-logo img {
    filter: invert(1);
}

.logo-black header.scrolled .header-logo img {
    filter: none;
}

/* nav */
nav.mainmenu a {
    font-size: 1.45rem;
    color: rgb(var(--white-color));
    font-weight: 500;
}

/* hover effect */
.TemplateMenu a:hover:before,
.TemplateMenu li.active a:before {
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.TemplateMenu a:before {
    background-color: rgb(var(--white-color), .2);
    visibility: hidden;
    position: absolute;
    content: "";
    height: 100%;
    bottom: 0;
    width: 100%;
    left: 0%;
    z-index: -1;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.TemplateMenu li.active>a {
    color: rgb(var(--white-color));
}

/* .TemplateMenu a.expandable:before, */
.TemplateMenu ul a:before {
    display: none;
}

.expandable:after {
    position: absolute;
    top: .4rem;
}

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

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

.TemplateMenu ul a:hover {
    background-color: rgb(var(--gray-medium-color), .1);
    color: rgb(var(--gray-dark-color));
}

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

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

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

/* dolj Hem */
nav.mainmenu ul.TemplateMenu>li:first-child {
    display: none;
}

.EditMode nav.mainmenu ul.TemplateMenu>li:first-child {
    display: inline-block;
}

/* Mobilmeny */
.mobile-menu .header-logo {
    flex: unset;
}

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

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

@media only screen and (max-width: 1000px) {
    .logo-black .mobile-menu .header-logo img {
        filter: none;
    }
}  

@media only screen and (max-width: 580px) {
    .header-cta-wrapper .btn {
        width: auto;
        min-width: unset;
        padding: 1rem 2rem;
    }
}    

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 101vh;
    padding-top: 11rem;
    margin-top: calc(-1 * var(--menu-height));
    background: linear-gradient(90deg, rgba(var(--black-color), .3) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0.2) 100%);
    text-align: center;
}

.top-section .section-title {
    max-width: 115rem;
    padding-bottom: 0;
    font-size: 6rem;
    font-weight: 300;
}

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

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

/* .section-video
========================================================================== */
.section-video {
    background-color: rgba(var(--black-color), 0.3) !important;
    min-height: 60vh;
}

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

/* Hero - Grundkod (uppdatera aven koden for hero-logos om denna justeras)
========================================================================== */
.hero .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    padding: 14rem 4rem 4rem;
}

.hero .section-title {
    font-size: 6.8rem;
    padding: 0;
    text-shadow: 0 0 1rem rgba(var(--black-color), .75);
}

.hero.bg-overlay {
    background-color: rgba(var(--accent-petrol-color), .7);
}

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

    .hero .section-block {
        padding: 4rem 2rem;
    }

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

/* Hero: Hero 100vh hög
========================================================================== */
.hero-100vh .section-block {
    min-height: 100vh;
    align-items: center;
}

/* Hero: Hero-split
========================================================================== */
.hero-split .section-block {
    background: linear-gradient(to left, rgba(var(--black-color), .7) 70%, rgb(var(--accent-petrol-color)) 0);
    padding-top: 12rem;
}

.hero-split .section-title {
    padding-bottom: 2rem;
    font-size: 4.8rem;
}

@media only screen and (max-width: 1000px) {
    .hero-split .section-block {
        background: rgba(var(--black-color), .7);
        padding-top: 15rem;
    }
}

@media only screen and (max-width: 700px) {
    .hero-split .split-content {
        padding: 0 0 1rem 0;
    }

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

/* Hero: hero-petrol
========================================================================== */
.hero-petrol {
    display: flex;
    align-items: flex-end;
    margin-top: calc(-1 * var(--menu-height));
    background: rgb(var(--accent-petrol-color));
}

.hero-petrol .section-block {
    width: 100%;
    padding-top: 20rem;
}

.hero-petrol .section-block-wrapper {
    max-width: 100rem;
}

.hero-petrol .section-title {
    font-weight: 600;
}

/* Sektion Text Intro
========================================================================== */
.section-text-intro .section-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-text-intro p {
    padding: 0;
}

/* ==========================================================================
Undersida: Vad vi gor > Tillhorande undersidor
========================================================================== */

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

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

/* ==========================================================================
Undersida: Om oss
========================================================================== */
.section-info .section-block-wrapper {
    align-items: center;
}

.section-info .col-1 .text-block {
    background-color: rgb(var(--gray-color));
    padding: 4rem;
}

@media only screen and (max-width: 1200px) {
    .section-info .col-block {
        width: 100%;
        padding: 0 0 3rem;
    }
}

/* ==========================================================================
Undersida: Om oss > Var organisation
========================================================================== */
.section-team .cards-wrapper {
    padding-left: 7.5rem;
}

@media screen and (max-width: 1200px) {
    .section-team .cards-wrapper {
        padding-left: 0;
    }

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

@media screen and (max-width: 800px) {
    .section-team .section-block {
        padding-bottom: 7.5rem;
    }

    .section-team .card-item {
        transform: none !important;
    }

    .section-team .cards-wrapper {
        padding-left: 0;
    }
}

@media screen and (max-width: 650px) {
    .section-team .cards-wrapper .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

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

/* Teamet
========================================================================== */
/* Cards */
.team-wrapper.cards-wrapper {
    justify-content: flex-start;
}

.team-wrapper.cards-wrapper .card-item {
    width: calc(100% / 4 - 1rem);
    margin: 0 .5rem 1rem;
    border-radius: 2px;
}

.image-view.cards-11 .text-wrapper.list-style {
    position: static;
    visibility: visible;
    justify-content: flex-start;
    opacity: 1;
    background-color: rgb(var(--gray-color));
}

.image-view.cards-11 .text-wrapper .text-label {
    color: rgb(var(--accent-petrol-color));
}

.image-view.cards-11 .card-item:hover .text-wrapper {
    visibility: visible;
    opacity: 1;
    transition: all .2s ease;
}

.section-employees .hidden-item-tag {
    display: none;
}

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

@media only screen and (max-width: 900px) {
    /* Cards */
    .team-wrapper.cards-wrapper .card-item {
        width: calc((100% / 2) - 1rem);
    }
}

@media only screen and (max-width: 600px) {
    .team-wrapper.cards-wrapper .card-item {
        width: 100%;
        margin: 0 0 2rem;
    }
}

/* ==========================================================================
Undersida: Vilka vi ar > Var Historia
========================================================================== */

/* Zoom Image Wrapper */
.zoom-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 40rem;
    overflow: hidden;
}

.zoom-image-wrapper img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all .6s ease;
}

.zoom-image-wrapper img:hover {
    transform: translateY(-50%) scale(1.1);
    transition: all 4s ease;
}

@media only screen and (max-width: 1024px) {
    /* Zoom Image Wrapper */
    .zoom-image-wrapper {
        width: calc(100% + 6rem);
        margin: 0 -3rem 2rem;
        padding-top: 40rem;
    }
}

@media only screen and (max-width: 580px) {
    /* Zoom Image Wrapper */
    .zoom-image-wrapper {
        width: calc(100% + 4rem);
        margin: 0 -2rem 2rem;
        padding-top: 30rem;
    }
}

/* ==========================================================================
Undersida: Om oss > Var vardegrund
========================================================================== */
.timeline-wrapper {
    position: relative;
    max-width: 140rem;
    margin: 5rem auto 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgb(var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    border-radius: 40px;
}

.timeline-text:before {
    content: '';
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgb(var(--primary-color));
    position: absolute;
    left: -12.7%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0 0 0 4px rgb(var(--primary-color));
    box-shadow: 0 0 0 4px rgb(var(--primary-color));
    z-index: 1;
}

.item-right .timeline-text::before {
    left: auto;
    right: -13%;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.timeline-item.item-left {
    justify-content: flex-end;
}

.timeline-text,
.timeline-image {
    width: 45%;
}

.timeline-text {
    padding-left: 5rem;
}

.item-right .timeline-text {
    padding-right: 5rem;
    padding-left: 0;
}


.timeline-item:last-child {
    margin-bottom: 0;
}

.timelime-result {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(var(--accent-petrol-color));
    padding-bottom: 1.5rem;
    line-height: 1.3;
}

.timeline-text p {
    max-width: 45ch;
}

@media only screen and (max-width:1200px) {
    .timeline-text h3 {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 1000px) {
    .timeline-text {
        padding-left: 2rem;
    }

    .item-right .timeline-text {
        padding-right: 0;
        padding-left: 2rem;
    }

}

@media only screen and (max-width: 600px) {
    .timeline-wrapper::before {
        left: 0;
    }

    .timeline-item {
        justify-content: flex-end;
    }

    .timeline-item.item-left {
        flex-wrap: wrap-reverse;
    }

    .timeline-text,
    .timeline-image {
        width: calc(100% - 2rem);
    }

    .timeline-text {
        margin-bottom: 2rem;
    }

    .timeline-text:before {
        left: -.7rem;
    }

    .item-right .timeline-text::before {
        left: -.7rem;
        right: auto;
    }
}    

/* ==========================================================================
Undersida: Om oss > Radgivning
========================================================================== */
.modal .cards-11 .contact-link {
    display: block;
}

@media only screen and (max-width: 980px) {
    .section-advice .layout-2 .col-0 {
        padding-bottom: 5rem;
    }
}

.contact-wrapper-box{
    display: flex;
}
.radgivning-btn{
    background: rgb(var(--primary-color));
    padding: 1rem;
    margin-right: 1rem;
    padding-bottom: 1rem !important;
    border-radius: 2rem;
   
}

@media only screen and (max-width: 443px) {
    .contact-wrapper-box{
        flex-direction: column;
    }
    .radgivning-btn{
        margin-top: 1rem;
       
    }
}



/* ==========================================================================
Undersida: Uppdrag
========================================================================== */
.hero-logos {
    background: linear-gradient(90deg, rgba(var(--black-color), .4) 0%, rgba(var(--black-color), .7) 0%, rgba(var(--black-color), 0.4) 100%);
}

.hero-logos .section-block {
    padding: 0;
}

.hero-logos .col-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    min-height: 65vh;
    padding: 14rem 4rem 4rem;
}

.hero-logos .section-title {
    padding: 0;
    font-size: 6.8rem;
}

.hero-logos .cards-wrapper {
    max-width: 120rem;
}

.hero-logos .logos-1 .card-item {
    padding: 0;
}

@media only screen and (max-width:1600px) {
    .hero-logos .section-block-wrapper {
        max-width: unset;
    }

    .hero-logos .col-wrapper {
        min-height: 75vh;
    }
}           

@media only screen and (max-width: 1024px) {
    .hero-logos .col-wrapper {
        padding: 2rem;
    }
}
   
@media only screen and (max-width: 580px) {
    .hero-logos .section-title {
        font-size: 3.5rem;
    }

    .hero-logos .logos-1 .card-item {
        padding: 0;
    }
}

/* Citat
========================================================================== */
.section-projects .logo {
    margin: auto 0 auto auto;
    width: 8rem;
}

.section-projects  .via-logo {
    margin: auto 0 auto auto;
    width: 4rem !important;
}

@media only screen and (max-width: 450px) {
    .section-projects .logo {
        width: 6rem;
    }
}

/* ==========================================================================
Undersida: Karriar
========================================================================== */
.section-positions .card-item .btn {
    min-width: unset;
    width: 100%;
}

.section-positions .card-item:hover .btn {
    color: rgb(var(--white-color));
    background-color: rgb(var(--accent-petrol-color));
    border-color: rgb(var(--accent-petrol-color));
}

.section-apply .section-title {
    padding: 0;
}

/* ==========================================================================
Undersida: Karriar > Spontansokan
========================================================================== */
.apply-wrapper {
    background-color: rgb(var(--white-color));
    padding: 4rem;
    margin-top: -5rem;
    border: 1px solid rgb(var(--gray-color));
    border-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .apply-wrapper {
        padding: 3rem;
    }
}
   
@media only screen and (max-width: 580px) {
    .apply-wrapper {
        padding: 2rem;
    }
}

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

/* Kontakt
========================================================================== */
.section-contact .Contact {
    background-color: rgb(var(--white-color));
    padding: 4rem;
    margin-bottom: 15rem;
    border: 1px solid rgb(var(--gray-color));
}


.section-contact .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-contact .ContactFormName,
.section-contact .ContactFormEmail,
.section-contact .ContactFormField {
    width: 48%;
}

.section-contact .ContactFormMessage {
    width: 100%;
}

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

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

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

    .section-contact .ContactFormName,
    .section-contact .ContactFormEmail,
    .section-contact .ContactFormField {
        width: 100%;
    }
}

/* Karta
========================================================================== */
.section-map {
    font-size: 0;
}

.section-map iframe {
    width: 100%;
    height: 60rem;
    border: none;
}

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

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

.footer-menu {
    width: 25%;
    margin: 1.5rem 0;
}

.footer-menu .footer-menu-heading {
    color: rgb(var(--primary-color));
    text-transform: uppercase;
}

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

.footer-menu li,
.footer-menu p,
.footer-menu a {
    color: rgb(var(--gray-light-color));
    transition: .2s ease;
}

.footer-menu a:hover {
    color: rgb(var(--white-color))
}
  
/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

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

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
    color: rgb(var(--white-color), .8);
}

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

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

    .footer-menu {
        width: 48%;
    }
}

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

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

    .footer-menu {
        width: 100%;
        margin: 1rem 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }
}  