/* FlexFolk Group AB */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,700&display=swap');

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

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

    /* 	Colors */
    --primary-color: 20, 152, 213;
    --secondary-color: 6, 43, 61;

    --black-color: 2, 17, 23;
    --gray-dark-color: 30, 30, 30;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1280;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;

    /* Other */
    --box-shadow-sharp: 0 1rem 1rem rgb(var(--black-color), .1);
    --box-shadow-soft: 0 1rem 4rem rgb(var(--black-color), .1);
}

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

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

/* Specifika paddings */
.p-2 {
    padding: 4rem;
}

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

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

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

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

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

.pb-3 {
    padding-bottom: 3rem;
}

/* Specifika margins */
.mt-3 {
    margin-top: 3rem;
}
.mt-5 {
    margin-top: 5rem;
}

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

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

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

.mw-1500 .section-block-wrapper {
    max-width: 150rem;
}

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

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

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Raleway', sans-serif;
    color: rgb(var(--black-color));
}

/* Rubriker */
.text-label {
    position: relative;
    padding-bottom: .9em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.section-title {
    padding-bottom: .3em;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.sub-title {
    padding-bottom: .3em;
    font-size: 2.7rem;
    font-weight: 300;
    line-height: 1.2;
}

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


/* Brodtext och lankar */
p {
    font-weight: 400;
}

a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
}

/* ovriga klasser */
.text-bold {
    font-weight: 700;
}

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

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

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



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

.list-check li {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: .5em;
}

.list-check li::before {
    content: '\f058';
    position: absolute;
    top: 50%;
    left: -2rem;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

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

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

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

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.5rem 3rem;
    margin: .3rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 3rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-small {
    min-width: unset;
    padding: .8rem 1.8rem;
    font-size: 1.2rem;
}

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

.btn-primary-filled:hover,
.guide-step-next:hover,
.guide-step-prev:hover {
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

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

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

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

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

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

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    font-size: .7em;
    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));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

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

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    z-index: 1;
    right: 5rem;
    bottom: -1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background-color: rgb(var(--white-color));
}

.bouncing-arrow::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 5rem;
    height: 5rem;
    top: 0.5rem;
    left: 0.5rem;
    background-color: rgb(var(--primary-color));
    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(-1rem);
    }

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

@media only screen and (max-width: 580px) {
    .bouncing-arrow {
        right: 2rem;
    }
}

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


/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: var(--box-shadow-soft);
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    color: rgb(var(--white-color));
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(0);
}

/* Innehall */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    max-width: 45rem;
    max-height: calc(100vh - 12rem);
    padding: 4rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: var(--box-shadow-soft);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-wrapper p {
    font-size: 1.4rem;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

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

    .icon-close-popup {
        top: 1rem;
    }

    .popup-wrapper {
        right: 1rem;
    }
}

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

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

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

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

.gradient-background {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--black-color)) 50%);
}

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

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

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

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

/* Borders */

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

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

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

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

/* Specifika bredder */
.cards-wrapper.w-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;
}

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

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

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

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

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

/* Cards 5 */
.cards-5 .card-item {
    text-decoration: none;
}

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

/* Cards 7 */
.cards-7 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.cards-7 .card-item {
    padding: 0;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    background-color: rgb(var(--white-color));
    box-shadow: var(--box-shadow-soft);
    overflow: hidden;
}

.cards-7 .card-item:hover {
    text-decoration: none;
}

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

.cards-7 .image-wrapper {
    position: relative;
    width: 100%;
    height: 25rem;
}

.cards-7 .image-wrapper::after {
    position: absolute;
    content: '';
    pointer-events: none;
    width: 100%;
    height: 101%;
    background: no-repeat center 100% url(/assets/images/wave-white.svg);
    top: 0;
    left: 0;
}

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

.cards-7 .text-wrapper p,
.cards-7 .text-wrapper a {
    font-size: 1.4rem;
    color: rgb(var(--black-color), .8);
}

.cards-7 .card-item:hover {
    transform: translateY(-1rem);
    transition: 0.2s ease-in-out;
}

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

.logos-1 img {
    width: auto;
    max-height: 12rem;
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

.logos-1 img.bigger {
    max-height: 18rem;
}

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

@media only screen and (max-width: 868px) {
    .logos-1 img {
        max-height: 8rem;
    }
}


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

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

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

.split-image {
    width: 50%;
    border-radius: 2px;
}

/* Position */
.split-image.op-rc img {
    object-position: right center;
}

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

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

.split-content.pl-0 {
    padding-left: 0;
}

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

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

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

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

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
}

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

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

.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    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%);
}

/* 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: 580px) {
    .accordion-header {
        padding: 1rem 0;
    }

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

    .accordion-body .list-check {
        padding-inline-start: 2rem;
    }
}

/* Header / Navigation
========================================================================== */
header.scrolled {
    background-color: rgb(var(--white-color));
    box-shadow: var(--box-shadow-soft);
    transition: all .2s ease;
}

/* header logo */
.header-logo {
    margin: 0 3rem 0 0;
}

/* nav */
nav.mainmenu {
    flex-grow: 1;
}

.mobile-menu .TemplateMenu>li>a {
    --menu-height-scrolled: 5rem;
}

.TemplateMenu ul {
    width: auto;
}

.TemplateMenu ul a {
    white-space: nowrap;
}

/* Hides Hem / Home in menu */
nav.mainmenu ul.TemplateMenu>li:first-child {
    display: none;
}

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

nav.mainmenu a {
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--gray-dark-color));
}

header.scrolled nav.mainmenu a {
    color: rgb(var(--gray-dark-color));
}

nav.mainmenu a:hover,
header.scrolled nav.mainmenu a:hover {
    color: rgb(var(--primary-color));
}

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

.header-cta-wrapper .btn {
    min-width: unset;
}

.mobile-menu .header-cta-wrapper .circle-icon {
    width: 3rem;
    height: 3rem;
}

.mobile-menu .header-cta-wrapper .circle-icon i:before,
.mobile-menu .header-cta-wrapper .circle-icon em:before {
    font-size: 1.4rem;
}

header.mobile-menu .header-logo {
    flex-grow: 1;
}

/* CTA Side Wrapper */
.cta-side-wrapper {
    display: none;
  }
.cta-side-wrapper {
    position: fixed;
    top: 90%;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    transition: all 0.4s ease-in-out;
  }
  
  .cta-side-inner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  
  /* CTA Links */
  .cta-side-wrapper a {
    display: block;
    position: relative;
    left: 0;
    padding: 1.5rem;
    margin: 0.5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: left;
    background-color: rgb(var(--primary-color));
    border-radius: 0;
    pointer-events: auto;
    transition: all 0.4s ease-in-out;
  }
  
  .cta-side-wrapper a:hover {
    color: #fff;
    background-color: rgb(var(--secondary-color));
  }
  header.scrolled .cta-side-wrapper a {
    left: calc(100% - 4.5rem); /* 3rem icon + 1.5rem padding */
  }
  
  header.scrolled .cta-side-wrapper a:hover {
    left: 0;
  }
  
  .cta-side-wrapper i {
    width: 3rem;
  }
  
  @media (hover: none), (max-width: 768px) {
    .cta-side-wrapper {
        display: block;
      left: 0;
      top: auto;
      bottom: 0;
      height: auto;
    }
  
    .cta-side-inner {
      position: relative;
      display: flex;
      width: 100%;
      top: unset;
      bottom: 0;
      transform: none;
    }
  
    .cta-side-wrapper a {
      flex: 1;
      width: auto;
      padding: 1rem;
      margin: 0;
      font-size: 1.3rem;
      text-align: center;
    }
  
    .cta-side-wrapper i {
      width: auto;
      margin-right: 0.5rem;
    }
  
    header.scrolled .cta-side-wrapper a,
    header.scrolled .cta-side-wrapper a:hover {
      left: 0;
    }
  }
  
/* Mobilmeny */
@media only screen and (max-width: 580px) {
    .mobile-menu .container {
        padding: 0 1rem;
    }

    .header-cta-wrapper .btn {
        font-size: 1.1rem;
        padding: 1rem;
        line-height: 1.5;
    }

    header.mobile-menu .header-logo {
        min-width: 4rem;
    }
}

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

@media only screen and (max-width: 350px) {
    .header-cta-wrapper .btn {
        padding: .5rem 1rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 100% !important;
    min-height: 85vh;
    background-color: rgb(var(--black-color), .2);
}

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

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

.top-section h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.3em;
    color: rgb(var(--white-color));
    padding-bottom: .3em;
}

.top-section p {
    color: rgb(var(--white-color));
    max-width: 50ch;
    font-weight: 400;
}

/* BTN Cta */
.top-section .btn-primary-filled {
    margin-right: 1rem;
}

/* Vi samarbetar med... */
.top-section .image-wrapper {
    background-color: transparent;
    margin-top: 4rem;
}

.logo-image {
    width: 20rem;
}

.image-wrapper .small-title {
    padding-bottom: 0;
}

.reco-wrapper img {
    max-height: 8rem;
    width: auto;
    margin-left: -2rem;
}

.reco-wrapper img:first-child {
    margin-left: 0;
}

.top-section .badge-wrapper {
    position: absolute;
    right: 2rem;
    top: 5rem;
    background-color: rgb(var(--primary-color));
    padding: 2rem;
    width: 25rem;
    min-width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(5deg);
    box-shadow: var(--box-shadow-sharp);
    animation: pulse-color 3s ease-in-out infinite;
  }
  @keyframes pulse-color {
    0% {
      background-color: rgb(var(--primary-color));
    }
    50% {
      background-color: rgb(var(--secondary-color));
    }
    100% {
      background-color: rgb(var(--primary-color));
    }
  }

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

@media only screen and (max-width: 800px) {
    .top-section .section-block {
        width: 100%;
        max-width: none;
    }

    .top-section .badge-wrapper {
        position: static;
        transform: none;
        margin-top: 2rem;
        margin-left: auto;
        width: 20rem;
        min-width: 20rem;
        height: 20rem;
    }

    .top-section .badge-wrapper .small-title {
        font-size: var(--base-size);
    }
}

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

    .top-section h1,
    .top-section p {
        text-align: center;
        margin: 0 auto;
    }

    .top-section .btn-wrapper {
        flex-direction: column;
    }

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

    .image-wrapper .small-title {
        font-size: 1.5rem;
    }

    .cta-form-wrapper .btn {
        width: 80%;
        min-width: 13rem;
        justify-content: flex-start;
    }

    .top-section .image-wrapper {
        margin: 0 auto;
        text-align: center;
    }
}

@media only screen and (max-width: 330px) {
    .cta-form-wrapper {
        display: block;
    }

    .cta-form-input {
        margin-bottom: 1rem;
    }
}

/* Sektion Tjanster (.section-services)
========================================================================== */
.section-services {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--gray-light-color)) 50%);
}

/* Badge wrapper 
==========================================================================*/
.section-badge {
    background-image: linear-gradient(to top, rgb(var(--black-color)) 70%, rgb(var(--white-color)) 70%);
}

.section-badge .badge-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-right: 5rem;
    margin-top: -10rem;
    transform: rotate(3deg);
}

.section-badge .badge-item {
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    max-width: 60rem;
    text-align: center;
    background-color: rgb(var(--white-color));
    box-shadow: var(--box-shadow-sharp);
}

.section-badge .badge-item img {
    width: 20rem;
}

.section-badge .small-title {
    padding-bottom: 1rem;
}

@media only screen and (max-width: 1100px) {
    .section-badge .badge-wrapper {
        right: 2rem;
    }

    .section-badge .badge-item img {
        width: 15rem;
    }
}

@media only screen and (max-width: 900px) {
    .section-badge .badge-wrapper {
        justify-content: center;
    }

    .section-badge .badge-wrapper {
        padding-right: 0rem;
        margin-top: -2rem;
        transform: rotate(-1deg);
    }

    .section-badge .badge-item {
        max-width: 50rem;
        margin: 0 2rem;
    }
}

/* Sektion Varfor oss (.section-why-us) 
========================================================================== */
/* Why us element  */
.why-us-wrapper {
    display: flex;
    justify-content: space-around;
    margin-top: 5rem;
}

.why-us {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    margin-bottom: 2rem;
}

.why-us:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    font-size: 3rem;
    line-height: 1;
    right: 0;
    top: 6.5rem;
    transform: translateX(50%);
    color: rgb(var(--secondary-color));
}

.why-us-icon-wrap {
    width: 15rem;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 3rem;
    padding: 1rem 0 2rem;
    border-radius: 50%;
    background-color: rgb(var(--secondary-color));
    overflow: hidden;
}

.why-us i {
    font-size: 8rem;
    font-weight: 300;
    color: rgb(var(--white-color));
    margin-top: 1rem;
}

.why-us img {
    width: 10rem;
}

.why-us-textwrapper {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 2rem;
}

@media only screen and (max-width: 1300px) {
    .why-us-wrapper {
        flex-wrap: wrap;
    }

    .why-us {
        width: 50%;
        margin: 0 auto 5rem;
    }

    .why-us:nth-child(2)::after {
        display: none;
    }
}

@media only screen and (max-width: 700px) {
    .why-us {
        width: 100%;
        max-width: 50rem;
    }

    .why-us i {
        font-size: 4rem;
    }

    .why-us:not(:last-child) {
        margin-bottom: 8rem;
    }

    .why-us:nth-child(2)::after {
        display: block;
    }

    .why-us:not(:last-child)::after {
        content: '\2193';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -2.5rem;
        transform: translateX(-50%) translateY(50%);
    }
}

@media only screen and (max-width: 700px) {
    .why-us-icon-wrap {
        width: 10rem;
        height: 10rem;
    }
}

/* Sektion Insta (.section-insta)
========================================================================== */
.section-insta {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--black-color)) 50%);
    overflow: hidden;
}

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

/* Generell Hero
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 75vh;
    overflow: hidden;
    max-width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border: 4rem solid rgb(var(--white-color));
    border-radius: 6rem;
    background-image: linear-gradient(to right, rgb(var(--black-color), .3), rgb(var(--black-color), 0));
}

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

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

.hero h1,
.hero p {
    color: rgb(var(--white-color));
    max-width: 60rem;
}

.hero h1,
.hero-2 h1 {
    font-size: 6.5rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.hero .small-title {
    font-weight: 400;
}

.hero-2.bg-video {
    min-height: 45rem;
    background-color: rgb(var(--gray-dark-color), .2);
}

@media only screen and (max-width: 980px) {
    .hero {
        min-height: 70vh;
    }
}

@media only screen and (max-width: 690px) {
    .hero {
        border: 1rem solid rgb(var(--white-color));
        border-radius: 2rem;
        margin-top: 0;
    }

    .hero h1,
    .hero-2 h1 {
        font-size: 3.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 55vh;
        background: rgb(var(--black-color), .4);
    }
}

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

    .hero h1,
    .hero-2 h1 {
        font-size: 2.5rem;
    }
}

/* Hero 2 
========================================================================== */
.hero-2 {
    min-height: 40vh;
}

.hero-2 {
    background-color: rgb(var(--primary-color), .4);
    background-image: url(/assets/images/wave-white.svg);
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.section-split .split-image {
    position: relative;
}

.section-split .split-image::after {
    position: absolute;
    content: '';
    pointer-events: none;
    width: 101%;
    height: 101%;
    background: no-repeat center 100% url(/assets/images/wave-white.svg);
    top: 0;
    left: 0;
}

@media only screen and (max-width: 800px) {
    .hero-2 {
        min-height: 30vh;
    }

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

/* Heading wrapper med ikon och rubrik */
.heading-image-wrapper {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid rgb(var(--primary-color));
    margin-bottom: 2rem;
}

.heading-image-wrapper img {
    margin-right: 2rem;
}

@media only screen and (max-width: 800px) {
    .heading-image-wrapper img {
        width: 5rem;
    }
}

@media only screen and (max-width: 350px) {
    .heading-image-wrapper img {
        width: 3rem;
    }
}

/* ==========================================================================
Undersida: Frisor > Aldreboende
========================================================================== */
.why-us-wrapper .number {
    font-size: 6.5rem;
}

/* ==========================================================================
Undersidor: Tjanster, stad
========================================================================== */
.SubPage .review-widget {
    background-color: rgb(var(--white-color));
    padding: 2rem;
    box-shadow: var(--box-shadow-soft);
}

.form-calc-wrapper {
    background-color: rgb(var(--white-color));
    box-shadow: var(--box-shadow-soft);
    border-radius: 5px;
    padding: 4rem;
}

.form-calc-wrapper iframe {
    min-height: 40rem;
}

.form-calc-wrapper .small-title {
    padding-top: 3rem;
}

.form-calc-wrapper li {
    font-size: 1.5rem;
}

select#areaSelect{
    width: 30rem;
    height: 4rem;
    font-size: 1.7rem;
    padding: 0.5rem;
}

@media only screen and (max-width: 580px) {
    .form-calc-wrapper {
        padding: 1rem;
    }

    .SubPage .review-widget {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersidor: Tjänster > Fönsterputs
========================================================================== */
/* Räknare */
.calc-wrapper .input-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.calc-wrapper input {
    text-align: center;
    border: none;
    border-bottom: 1px solid rgb(var(--secondary-color));
}

/* Tabell */
.table {
    width: 100%;
    max-width: 110rem;
    margin: 0 auto;
    box-shadow: var(--box-shadow-soft);
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.row p {
    padding: 0;
    font-size: 1.5rem;
}

.cell:nth-child(1) {
    width: 20rem;
}

.cell {
    width: calc((100% - 20rem) / 3);
    padding: 1rem;
}

.table-sum {
    justify-content: flex-end;
}

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

    .table-heading {
        display: none;
    }

    .cell {
        width: 100%;
    }

    .cell:before {
        content: attr(data-title);
        display: block;
        font-size: 1.3rem;
        color: #666;
        text-transform: uppercase;
        margin-bottom: 13px;
    }

    .table-sum {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
Undersida: Foretag flyttstad
========================================================================== */
.section-flyttstad .col-0{
    max-width: 70rem;
    margin: auto;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.142);
        padding: 4rem;
        border-radius: 2rem;
}

.section-flyttstad h3{
    border-bottom: 0.1rem solid rgb(var(--primary-color));
    margin-bottom: 2rem;
    color: rgb(var(--primary-color));
}
.section-flyttstad .ContactSubmit{
    background: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .section-flyttstad .col-0{
        box-shadow: none;
        padding: 2rem;
}
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .col-0 {
    z-index: 1;
    position: relative;
    max-width: 110rem;
    width: 80%;
    padding: 7rem;
    border-radius: 2rem;
    background: rgb(var(--secondary-color));
}

body:not(.EditMode) .section-contact .col-0 {
    margin: -10rem auto 0;
}

.intro-text h1 {
    font-size: 5rem;
    text-transform: uppercase;
}

.section-contact .ContactForm {
    margin-top: 3rem;
}

.section-contact .ContactForm p {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 980px) {
    .section-contact .col-0 {
        width: 95%;
        padding: 4rem;
    }
}

@media only screen and (max-width: 580px) {
    body:not(.EditMode) .section-contact .col-0 {
        width: 100%;
        padding: 3rem 2rem;
        margin: 0;
        top: -3rem;
    }

    .intro-text h1 {
        font-size: 3rem;
    }
}

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

.footer-container {
    max-width: 160rem;
    padding: 0 2rem;
    margin: 0 auto;
}

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

.footer a:hover {
    color: rgb(var(--white-color));
}

.footer .small-title {
    color: rgb(var(--primary-color));
}

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

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

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

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

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

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2rem;
}

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

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
    color: rgb(var(--white-color));
}

.footer-bottom em::before {
    font-size: 1.4rem;
}

.footer .socials {
    display: flex;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
    margin-right: 1rem;
}

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

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

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

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

    .footer-menu-large p {
        max-width: 55rem;
    }
}

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

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

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

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
        flex-direction: row-reverse;
    }

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

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

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

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}