/* Migo Consulting */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 255, 0, 153;

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

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;
    --section-width: 140rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1150;
    --mobile-menu-height: 7rem;
    --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: 10rem 5rem;
}

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

.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 */
.mb-3 {
    margin-bottom: 3rem;
}

/* Bredder */

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

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: 0.5em;
    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));
}

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

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

/* List-circle */
.list-circle {
    padding: 0;
    list-style: none;
}

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

@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 {
    min-width: 15rem;
    padding: 1.2rem 2.5rem;
    margin: 5px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid;
    transition: all .4s ease;
}

.btn-primary-glass,
.ContactSubmit {
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), .1);
    backdrop-filter: blur(9px);
}

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    text-decoration: none;
}

.arrow-link::after {
    display: inline-block;
    margin-left: .8rem;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
    color: rgb(var(--primary-color));
}

/* Arrow link right */
.arrow-link.arrow-right::after {
    content: ' \f061';
}

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

/* Arrow link down */
.arrow-link.arrow-down::after {
    content: ' \f063';
}

a.arrow-link.arrow-down:hover::after {
    transform: translateY(.3rem);
    transition: transform .4s ease;
}

a.arrow-link.arrow-down.is-clicked::after {
    transform: rotate(180deg);
}

a.arrow-link.arrow-down.is-clicked:hover::after {
    transform: rotate(180deg) translateY(.3rem);
}

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

/* Blur filter */
.bg-white-blur {
    backdrop-filter: blur(9px);
    border: 1px solid rgb(var(--white-color));
    background: rgb(var(--white-color), .4);
    border-radius: 1rem;
}

.bg-primary-blur {
    backdrop-filter: blur(9px);
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), .1);
    border-radius: 1rem;
}

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

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

/* Grafiska element
========================================================================== */
/* Svartvita bilder */
img:not(.header-logo img, .img-color) {
    filter: grayscale(100%);
}

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

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

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

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

@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;
}

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

/* Generellt */
.card-item {
    border-radius: 1rem;
    overflow: hidden;
}

a.card-item {
    transition: .3s ease;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

    /* Paddings */
    .card-item.p-3,
    .cards-wrapper .p-3 {
        padding: 2rem;
    }
}

/* Card 2-2 */
.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 9rem;
    height: 9rem;
    margin-bottom: 2rem;
    border-radius: 50%;
}

.card-2-2 .card-header i {
    font-size: 4rem;
}

@media only screen and (max-width: 580px) {
    .card-2-2 .card-header {
        width: 6rem;
        height: 6rem;
    }

    .card-2-2 .card-header i {
        font-size: 2.5rem;
    }
}

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
}

.card-2-5 .card-header i {
    font-size: 4rem;
}

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

.card-2-5 .card-item .small-title {
    transition: .3s ease;
}

.card-2-5 .card-item:hover .small-title {
    color: rgb(var(--primary-color));
}

.card-2-5 a.card-item:hover .card-header {
    background-color: rgb(var(--primary-color));
}

.card-2-5 a.card-item:hover i {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .card-2-5 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-2-5 .card-header {
        width: 6rem;
        height: 6rem;
        margin-bottom: 2rem;
    }

    .card-2-5 .card-header i {
        font-size: 2.5rem;
    }

    .card-2-5 .card-body {
        padding: 0;
    }
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    border-radius: 1rem;
}

.card-3-1 .image-wrapper .text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 50%;
}

/* 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%;
    border-radius: 1rem;
}

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

/* Speciella margins */
.split-content.mr--18rem+.split-image,
.split-content.ml--18rem+.split-image {
    width: 60%;
}

.split-wrapper .mr--18rem {
    z-index: 1;
    position: relative;
    margin-right: -18rem;
}

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

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

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

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

    .split-content.align-center {
        align-self: flex-start;
    }

    .split-image {
        width: 100%;
    }

    /* Speciella margins */
    .split-content.mr--18rem+.split-image,
    .split-content.ml--18rem+.split-image {
        width: 100%;
    }

    .split-wrapper .mr--18rem,
    .split-wrapper .ml--18rem {
        margin: 0;
        padding: 0 0 2rem 0;
    }
}

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

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

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

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

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

.header-logo a {
    font-size: 2.5rem;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    color: rgb(var(--primary-color));
}

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

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

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

/* Drop down */
.TemplateMenu ul {
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
    width: 100%;
}

.TemplateMenu ul li:not(:last-child) {
    padding-bottom: 2.5rem;
}

.TemplateMenu ul a {
    line-height: 2rem;
    padding: 0;
}

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

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    color: rgb(var(--white-color));
}

header.scrolled .header-cta-wrapper .btn:not(:hover, :active),
header.active-menu .header-cta-wrapper .btn:not(:hover, :active) {
    color: rgb(var(--primary-color));
}

/* Mobilmeny */
.mobile-menu:not(.scrolled, .active-menu) {
    --menu-color: var(--white-color);
}

.mobile-menu .TemplateMenu {
    padding: 0 2rem;
}

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

    /* Logo */
    .header-logo a {
        font-size: 2rem;
    }
}

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

    /* CTA  */
    .header-cta-wrapper {
        margin: 0 0 0 2rem;
    }

    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1.2rem;
    }

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

@media only screen and (max-width: 480px) {
    .header-logo a {
        font-size: 1.4rem;
        max-width: 8rem;
    }
}

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

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

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

.top-section .text-block {
    max-width: 70rem;
    margin-right: 3rem;
}

.top-section .section-title {
    font-size: 6rem;
    font-weight: 400;
}

.top-section .btn:hover {
    color: rgb(var(--white-color));
}

.top-section .block-object {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    flex-wrap: wrap;
}

.top-section .intro-wrapper {
    max-width: 42rem;
    display: flex;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 5rem;
}

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    align-self: flex-end;
    margin-left: 1rem;
}

.bouncing-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9rem;
    height: 9rem;
    border-radius: 5rem;
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), .1);
    backdrop-filter: blur(9px);
    text-decoration: none;
    transition: all .4s ease;
}

.bouncing-arrow i {
    color: rgb(var(--primary-color));
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.bouncing-arrow:hover i {
    color: rgb(var(--white-color));
}

.bouncing-arrow:hover {
    background-color: rgb(var(--primary-color));
}

@keyframes bounce {

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

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

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

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

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

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

@media only screen and (max-width: 580px) {
    .top-section .section-block {
        align-items: flex-start;
        padding: 4rem 2rem;
    }

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

    .top-section .bouncing-arrow {
        height: 6rem;
        width: 6rem;
    }

    .top-section .bouncing-arrow i {
        font-size: 2rem;
    }
}

/* Bakgrundsbild med text
========================================================================== */
.image-block-wrapper {
    position: relative;
    padding: 20rem 5rem 5rem;
    border-radius: 1rem;
    overflow: hidden
}

.image-block-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/kram-2000px.jpg');
    background-size: cover;
    background-position: center 60%;
    background-blend-mode: overlay;
    filter: grayscale(1);
    z-index: 0;
    background-color: rgba(var(--black-color), 0.5);
}

.image-block-wrapper .text-block {
    max-width: 75rem;
    padding: 4rem 3rem;
}

@media screen and (max-width: 580px) {
    .image-block-wrapper {
        padding: 10rem 2rem 2rem;
    }

    .image-block-wrapper .text-block {
        padding: 3rem 2rem;
    }
}

/* CTA-sektion
========================================================================== */
.section-cta {
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/kram-2000px.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: -1;
}

.section-cta .text-block {
    max-width: 75rem;
    padding: 4rem 3rem;
    border-radius: 1rem;
}

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

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 45rem;
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background-color: rgb(var(--black-color), .5);
    overflow: hidden;
}

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

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

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

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

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.section-contact .col-0 {
    align-self: center;
}

/* Formular
========================================================================== */
.ContactForm {
    padding: 4rem 3rem;
    backdrop-filter: blur(9px);
    border: 1px solid rgb(var(--white-color));
    background: rgb(var(--white-color), .4);
    border-radius: 1rem;
}

.ContactForm p {
    color: rgb(var(--primary-color));
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem;
}

.asterisk p:after {
    line-height: 1;
    color: rgb(var(--primary-color));
}

.ContactForm input[type="text"],
.ContactForm input[type="tel"],
.ContactForm input[type="email"],
.ContactForm textarea {
    border: none;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    background-color: transparent;
}

.ContactForm .submit-button-container {
    margin-bottom: 0;
}

@media only screen and (max-width: 980px) {
    .ContactForm {
        margin-top: 3rem;
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
}

.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;
    border-bottom: 1px solid rgb(var(--primary-color));
}

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

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

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
    color: rgb(var(--gray-dark-color));
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

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

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

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}