/* Calupo AB */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 4, 66, 0;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 222, 224, 224;
    --gray-light-color: 247, 246, 246;
    --white-color: 255, 255, 255;

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

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

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

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
.section-block {
    padding: 8rem 5rem;
}

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

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

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

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

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

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

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

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

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

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

@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 {
    padding-bottom: 0.2em;
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
}

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

.text-smaller {
    font-size: 1.5rem;
}

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

.list-check li {
    font-size: 1.5rem;
}

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

.list-check.text-white li,
.list-check.text-white li::before {
    color: rgb(var(--white-color));
}

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

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

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

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

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

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 15rem;
    padding: 1.2rem 2.5rem;
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid;
    cursor: pointer;
    transition: all .4s ease;
}

.btn::after,
.arrow-link::after {
    content: ' \f061';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--primary-color));
    transition: transform .4s ease;
}

.btn:hover::after,
.arrow-link:hover::after {
    transform: translateX(5px);
    transition: transform .4s ease;
}

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

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

/* Arrow link */
.arrow-link {
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Object position */
.of-wrapper .op-50-30 {
    object-position: 50% 30%;
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    position: relative;
    overflow: hidden;
}

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

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

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -4rem;
}

.cards-wrapper .card-item {
    margin-bottom: 4rem;
    text-decoration: none;
}

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

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

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

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

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

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper {
        margin-bottom: -1rem;
    }

    /* Bredder */
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item,
    .cards-wrapper.w-1100 .card-item {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Paddings */
    .cards-wrapper .p-4 {
        padding: 2rem;
    }
}

/* Card 1-1 */
.card-1-1 .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-1-1 .card-footer p {
    font-size: 1.4rem;
}

.card-1-1 .icon-wrapper {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
}

.card-1-1 .icon-wrapper i {
    opacity: .3;
    font-size: 13rem;
    transform: rotate(6deg)
}

@media only screen and (max-width: 1600px) {
    .card-1-1 .icon-wrapper i {
        font-size: 9rem;
    }
}

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

    .card-1-1 .small-title {
        font-size: 1.6rem;
    }
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 30rem;
}

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

.IndexPage .split-image {
    height: 70vh;
}

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

/* Bredder & hojder */
.split-wrapper .w-35 {
    width: 35%;
}

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

/* Overlay */
.split-image.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .2);
}

/* Text i split-image */
.split-image .text-block {
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 4rem;
}

.split-image .text-block .small-title {
    font-size: 3.2rem;
}

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

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

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

    .split-image {
        width: 100%;
        height: 50vh;
    }

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

    /* Bredder */
    .split-wrapper .w-35,
    .split-wrapper .w-65 {
        width: 100%;
    }

    /* Split i full-width sektion */
    .mw-none.pl-0 .split-content {
        padding: 0 3rem 3rem;
    }
}

@media screen and (max-width: 580px) {
    /* Split i full-width sektion */ 
    .mw-none.pl-0 .split-content {
        padding: 0 2rem 3rem;
    }

    /* Text i split-image */
    .split-image .text-block {
        padding: 2rem;
    }
}

/* Header / Navigation
========================================================================== */
header:not(.scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

/* Top header */
.top-header {
    width: 100%;
    max-width: var(--section-width);
    height: 4rem;
    margin: 0 auto;
    border-bottom: 1px solid rgb(var(--gray-light-color));
    overflow: hidden;
}

.top-header ul {
    display: flex;
    justify-content: flex-end;
    padding: .5rem 0;
    margin: 0;
    list-style: none;
}

.top-header a {
    padding: 0 1rem;
    font-size: 1.3rem;
    text-decoration: none;
    transition: .2s ease;
}

header:not(.scrolled) .top-header a,
header:not(.scrolled) .top-header i,
header.mobile-menu .top-header a,
header.mobile-menu .top-header i {
    color: rgb(var(--white-color));
}

.top-header i {
    margin-right: 5px;
}

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

.header-logo a {
    padding: 0;
    font-size: 3rem;
    font-weight: 500;
    color: rgb(var(--black-color));
    text-decoration: none;
}

header:not(.scrolled, .active-menu) .header-logo a,
header.mobile-menu .header-logo a {
    color: rgb(var(--white-color));
}

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

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

/* Mobilmeny */
.mobile-menu {
    background: rgb(var(--black-color));
}

.mobile-menu .TemplateMenu {
    text-align: center;
}

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

    /* Header logo */
    .header-logo a {
        font-size: 1.8rem;
    }
}

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

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

.top-section .section-block {
    width: 100%;
    padding: 13rem 4rem;
}

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

.top-section .section-title {
    font-size: 5rem;
    font-weight: 600;
}

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

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

    .top-section .small-title {
        font-size: 2.1rem;
    }
}
 
/* @media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 5rem;
    }

    .top-section .small-title {
        font-size: 2rem;
        max-width: 65rem;
    }
}*/

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

    .top-section .small-title {
        max-width: 65rem;
        font-size: 1.8rem;
    }
}

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

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

/* Tjanster
========================================================================== */
.split-slider .slick-list {
    width: 100%;
}

.split-slider .slick-list,
.split-slider .slick-track,
.split-slider .split-image {
    height: 100%;
}

.split-slider .slick-slide {
    margin: 0 0 0 5px;
}

.split-slider .overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(var(--black-color), .3);
}

/* Knappar */
.split-slider .slick-arrow {
    z-index: 1;
    position: absolute;
    bottom: 3rem;
}

.split-slider .slick-prev {
    right: 4rem;
}

.split-slider .slick-next {
    right: 1rem;
}

.split-slider .slick-arrow::after {
    font-weight: 400;
    transition: .3s ease;
}

.split-slider .slick-arrow::after {
    color: rgb(var(--gray-light-color));
}

.split-slider .slick-arrow:hover::after {
    color: rgb(var(--primary-color));
}

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

    /* Knappar */
    .split-slider .slick-arrow {
        top: 3rem;
        bottom: unset;
    }
}

/* Text-divider
========================================================================== */
.section-text-divider .section-block {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.section-text-divider .col-0 {
    width: calc(35% - 1.5rem);
    padding-right: 5rem;
}

.section-text-divider .col-1 {
    width: 65%;
    padding-left: 0;
}

@media only screen and (max-width: 1024px) {
    .section-text-divider .section-block {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .section-text-divider .col-0 {
        width: 100%;
        padding-right: 0;
    }

    .section-text-divider .col-1 {
        width: 100%;
    }
}

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

/* CTA
========================================================================== */
.section-cta {
    background: rgb(var(--primary-color));
}

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

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

.cta-wrapper .btn-wrapper a {
    display: block;
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: calc(70vh - var(--menu-height));
    padding-top: var(--menu-height);
    margin-top: calc(-1 * var(--menu-height) - 4rem);
    text-align: center;
    background-color: rgb(var(--black-color), .5);
}

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

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

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 40rem;
    }

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

/* ==========================================================================
Undersida: Tjänster
========================================================================== */
.more-text {
    padding: 1rem 2rem;
    background-color: rgb(var(--white-color));
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 2rem;
}

.services-wrapper .btn-wrapper {
    border-top: 1px solid rgb(var(--white-color));
}

/* ==========================================================================
Undersida: Vanliga fragor & svar
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

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

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: .3s ease;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--primary-color));
    transition: .5s ease;
}

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

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

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

@media only screen and (max-width: 980px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: .8rem;
    }

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

/* ==========================================================================
Undersida: Boka besiktningsman & bestall utlatande
========================================================================== */
.section-form {
    max-width: 85rem;
    margin: 5rem auto 0;
}

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

.ContactForm div {
    width: 49%;
}

.ContactForm .ContactFormField.textarea-field,
.ContactForm .submit-button-container,
.ContactForm .select-wrapper,
.ContactForm .ContactFormField.file-field,
.ContactForm .file-upload-container,
.ContactForm .file-dropzone:not(.illegal),
.ContactForm .checkbox-field,
.ContactForm .group-wrapper,
.ContactForm .checkbox-option {
    width: 100%;
}

.ContactForm .radio-option, .ContactForm .checkbox-option {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.ContactForm .checkbox-field p {
    display: none;
}

.ContactForm .checkbox-option label {
    font-size: 1.4rem;
    margin-left: 1rem;
}

.ContactForm p {
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem;
}

.ContactSubmit {
    margin: 0;
}

@media only screen and (max-width: 600px) {
    .ContactForm div {
        width: 100%;
    }
}
/* ==========================================================================
Undersida: Bestall utlatande
========================================================================== */
.cart-article,
.cart-taxrate,
.cart-url {
    display: none;
}

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

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

.footer-menu {
    width: 20%;
}

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

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

.footer-menu-large .section-title {
    max-width: 50rem;
}

.footer-top .btn-wrapper {
    margin-top: 1rem;
}

.footer-top a {
    text-decoration: none;
    transition: .2s ease;
}

.footer a:not(.circle-icon, .arrow-link):hover {
    color: rgb(var(--primary-color));
}

.footer .socials {
    text-align: right;
}

/* 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(--black-color), .5);
}

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

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

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
}

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

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

    .footer-menu {
        width: 48%;
        margin: 0 0 5rem;
    }

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

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

    /* Footer top */
    .footer-menu {
        width: 100%;
        margin: 0 0 3rem;
    }
}