/*  Rvt Automation  */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 150rem;

    /* 	Colors */
    --primary-color: 16, 72, 110;
    --secondary-color: 89, 89, 93;
    --accent-color: 231, 192, 0;

    --white-color: 255, 255, 255;
    --black-color: 42, 42, 42;

    --gray-light-color: 246, 246, 246;
    --gray-dark-color: 94, 92, 95;

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

    /*  Mobile nav */
    --activate-mobile-menu: 1100;
    --mobile-menu-height: 6rem;
}

/* Layout
========================================================================== */
.section-block {
    padding: 12rem 4rem;
}

/* Speciella paddings */
.p-2{
    padding: 2rem;
}
.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0rem;
}

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

.pb-2 .section-block,
.pb-2:not(.section-wrapper) {
    padding-bottom: 2rem;
}
/* Margins */
.mt-3{
    margin-top: 3rem !important;
}
/* Speciella bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1200 .section-block {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

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

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

    /* Specifika paddings */
    .pl-0 .section-block,
    .pl-0:not(.section-wrapper) {
        padding-left: 2rem;
    }

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

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

/* Rubriker */
.text-label {
    padding-bottom: 1.5rem;
    color: rgb(var(--primary-color));
    letter-spacing: .2rem;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 500;
    padding-top: 2rem;
}

.section-title {
    padding-bottom: 2.5rem;
    font-size: 3.8rem;
    font-weight: 400;
    letter-spacing: normal;
}

.small-title {
    padding-top: 1rem;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.small-title-bold {
    padding-bottom: 1rem;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.sub-title {
    font-size: 1.6rem;
    font-weight: 400;
}

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

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

/* Brodtext och lankar */
p {
    color: rgb(var(--black-color));
    font-weight: 300;
}

a {
    color: rgb(var(--black-color));
    text-decoration: none;
    font-size: 1.8rem;
}


li {
    line-height: 1.6;
}

/* Ovriga klasser */
.text-center {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.center {
    text-align: center;
}
.justify-center{
    justify-content: center;
    margin: auto;
}
.text-block-center{
    max-width: 80rem;
    margin: auto;
}
/* Listor */
.list-circle {
    list-style: none;
    margin: 0rem;
}

.list-circle li {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 0.5rem;
    color: rgb(var(--black-color));
    font-weight: 300;
}

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



/* Farger
========================================================================== */
.bg-white{
    background-color:  rgb(var(--white-color));
}
.bg-light-gray {
    background-color: rgba(var(--gray-light-color), 0.8);
}

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

/* Grafiska element
========================================================================== */
/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1) !important;
}
/* Border radius */
.br-1{
    border-radius: 1rem ;
}

/* Knappar och speciella lankar
========================================================================== */
.btn {
    padding: 1.5rem 3.5rem;
    margin: 1rem 0rem;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border: none;
    border-radius: 4px;
}

.btn::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

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

.btn-primary-filled:hover {
    background: rgba(var(--primary-color), 0.5);
}

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    color: rgb(var(--primary-color));
    padding-top: 1rem;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.arrow-link::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

.arrow-link:hover {
    color: rgba(var(--primary-color), 0.5);
}

/* 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: rgba(var(--primary-color), 0.5);
}

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    left: 50%;
    bottom: 6rem;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

.bouncing-arrow i {
    color: rgb(var(--white-color));
    font-size: 4rem;
    font-weight: 500;
}

@keyframes bounce {

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

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

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

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

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

.split-image {
    width: 50%;
}

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


@media screen and (max-width: 1100px) {
    .split-content {
        width: 100%;
    }

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

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

}

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

    .full-width .split-content,
    .bg-light-gray .split-content {
        padding: 4rem 2rem;
    }
}
/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

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

/* Knappar */
.popup-button {
    position: relative;
    appearance: none;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    border: none;
    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);
}

/* InnehÃ¥ll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    width: 350px;
    max-width: calc(100% - 2rem);
    max-height: calc(100vh - 12rem);
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 3px;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    transition: opacity .3s ease, bottom .3s ease;
}

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

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.popup-header .text-title {
    padding: 0;
    line-height: 1;
}

.icon-close-popup {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}

.icon-close-popup:hover {
    background-color: rgb(var(--gray-light-color));
}

.popup-content {
    padding: 1rem 2rem 3rem;
    max-height: 30rem;
    overflow: auto;
}

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

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

/* Bakgrunder */
.wave-primary-bottom  {
    background-image: url(/assets/images/waves/wave-bottom.png);
    background-size: 100% 5rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}
/* 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)
}

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

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


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

.cards-grow .card-body {
    flex-grow: 1;
}
/* Specifika bredder */
.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: 1300px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
    }
}

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

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

@media only screen and (max-width: 850px) {
    .cards-12 .card-item {
        width: 100% !important;
        margin: 1rem 0;
    }
}

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

/* Cards 3 */
.cards-3 .card-item {
    padding: 4rem;
}

.cards-3 .icon-wrapper .fad,
.cards-3 .icon-wrapper .fal {
    font-size: 4rem;
    color: rgb(var(--accent-color));
}

.cards-3 .small-title::before {
    content: '';
    position: relative;
    right: 1.3rem;
    display: inline-block;
    height: .1rem;
    width: 4rem;
    margin-bottom: .15em;
    margin-left: 1.3rem;
    border-bottom: 4px solid rgb(var(--primary-color));
}
.cards-3 .card-item:hover{
    background-color: rgb(var(--primary-color), .2);
      transition: all .4s ease;
}
/* Card-3-1 */
.card-3-1 .small-title{
font-size: 2rem;
}
.card-3-1 p{
font-size: 1.5rem;
}

@media only screen and (max-width: 440px) {
    .cards-3 .card-item {
        padding: 2.5rem !important;
    }
}

/* Card 3-2 */
.cards-wrapper.card-3-2 .card-item {
    margin-top: 5rem;
    border-radius: 1rem;
}

.card-3-2 .image-wrapper {
    display: inline-block;
    max-width: 20rem;
    height: 20rem;
    border-radius: 50%;
    margin-top: -5rem;
    background: rgb(var(--white-color));
}
/* Cards 4 */
.cards-4 {
    display: flex;
    flex-wrap: wrap;
}

.cards-4 .card-item {
    padding: 5rem;
    background-color: rgb(var(--white-color));
    text-decoration: none;
    transition: 0.3s ease-in-out;
    border-radius: 4px;
}

/* Första kortet */
.cards-4 .card-item:nth-child(1) {
    background-image: linear-gradient(rgba(var(--primary-color), .85), rgba(var(--primary-color), .85)), url('/assets/images/galleri/rvt-robotverktyg-thumb-900px.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cards-4 .card-item:nth-child(1) * {
    color: rgb(var(--white-color));
}
/* End första kortet */

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

.cards-4 .card-item:hover * {
    color: rgb(var(--white-color));
}

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

.cards-4 .text-wrapper {
    width: 100%;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgb(var(--gray-light-color));
}

@media only screen and (max-width: 440px) {
    .cards-4 .card-item {
        padding: 2.5rem !important;
    }

    .cards-4 .icon-wrapper i {
        margin-bottom: 0rem;
    }

    .cards-4 .text-wrapper {
        padding-top: 0rem;
    }
}

/* Cards 5 */
.cards-5 .card-item {
    width: calc((100% / 3) - 4rem);
    margin: 2rem;
    text-decoration: none;
}

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

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

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

/* Cards 7 */
.cards-7 .card-item {
    text-decoration: none;
    border-radius: .8rem;
    box-shadow: var(--box-shadow);
    background: rgb(var(--white-color));
    overflow: hidden;
}

.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(--primary-color));
}

/* Cards 12 */
.cards-12 {
    max-width: 120rem;
    margin: 0 auto;
}

.cards-12 .card-item {
    position: relative;
    padding: 3rem;
    background-color: rgba(var(--primary-color), 0.2);
    border-radius: 4px;
}

.cards-wrapper.cards-12 .card-item {
    margin-top: 4rem;
}

.cards-12 .card-item::before {
    position: absolute;
    content: '';
    display: block;
    top: 5.5rem;
    left: 0;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent rgb(var(--gray-light-color));
}

.cards-12 .image-wrapper {
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    width: 14rem;
    overflow: hidden;
}

.cards-12 .text-wrapper {
    padding-right: 10rem;
}

.cards-12 .small-title {
    padding-bottom: 0;
    font-size: 1.8rem;
}

.cards-12 .title {
    padding-bottom: 2rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.cards-12 a {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

@media only screen and (max-width: 440px) {
    .cards-12 .image-wrapper {
        position: unset;
    }

    .cards-12 .text-wrapper {
        padding-right: 0rem;
    }
}

/* Header / Navigation
========================================================================== */
/* Logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
}

/* Nav */
nav.mainmenu a {
    font-size: 1.5rem;
}

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

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 3rem;
    margin: 0 .5rem;
}

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

/* Top-section
========================================================================== */
.top-section {
  background-image: linear-gradient(to right, rgba(var(--black-color), 0.5), rgb(var(--black-color), 0.3));
}

.top-section .section-block {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: calc(-1 * var(--menu-height) - 4rem);
  background-image: url(/assets/images/waves/wave-2.svg);
  background-size: 100% 10rem;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.top-section .section-block-wrapper {
    max-width: 120rem;
    text-align: center;
}

.top-section h1 {
    color: rgb(var(--white-color));
    font-size: 2rem;
}

.top-section h2 {
    color: rgb(var(--white-color));
    font-weight: 700;
    font-size: 5rem;
}

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

@media only screen and (max-width: 580px) {
    .top-section {
        min-height: 90vh;
    }

    .top-section h2 {
        font-size: 3.5rem;
    }
}

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

/* Startsida: om oss 
========================================================================== */
.logo-wrapper {
    max-width: 25rem;
    padding-bottom: 1rem;
}

@media only screen and (max-width: 580px) {
    .logo-wrapper {
        width: 60%;
    }
}

/* Startsida: kontaktruta 
========================================================================== */
.drop-in-top .topp-box {
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    z-index: 6;
}

.drop-in-top .topp-wrap {
    background-color: rgb(var(--primary-color));
    padding: 4rem 10rem 4rem 4rem;
    max-width: 55rem;
    border-radius: 5px 0px 0px 5px;
}

.topp-wrap p,
.topp-wrap .section-title {
    color: rgb(var(--white-color));
}

.topp-wrap .arrow-link {
    color: rgb(var(--accent-color));
}

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

.drop-in-top p {
    text-align: left;
    font-size: 1.6rem;
    max-width: 50rem;
}

@media only screen and (max-width: 1250px) {
    .drop-in-top .topp-wrap {
        padding: 2rem;
        border-radius: 0px;
    }
}

@media only screen and (max-width: 780px) {
    .drop-in-top .topp-box {
        position: relative;
        margin-top: 0;
        transform: unset;
    }

    .drop-in-top .topp-wrap {
        padding: 4rem 2rem;
        max-width: 100%;
    }
}

/* CTA-kontakt - finns pa flera sidor och ligger i en inc-fil
========================================================================== */
.section-cta .section-block {

    z-index: 1;
    /*background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgba(var(--black-color), 0.9) 50%);*/
}

.section-cta .cta-wrapper {
    background-color: rgb(var(--white-color), .8);
    width: 60%;
    padding: 5rem 4rem;
    border-radius: 1rem;
    text-align: center;
    margin: 0 auto;
}

.section-cta .section-title {
    padding-bottom: 1rem;
    font-size: 3rem;
}


.section-cta .arrow-link {
    color: rgb(var(--primary-color));
    margin-top: 2rem;
}

@media only screen and (max-width: 680px) {
    .section-cta .cta-wrapper {
        padding: 3rem 2rem;
        width: 95%;
    }

    .section-cta .section-title {
        font-size: 2.4rem;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */
/* Hero
========================================================================== */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    background-color: rgba(var(--black-color), 0.2);
  background-image: url(/assets/images/waves/wave-2.svg);
  background-size: 100% 5rem;
  background-repeat: no-repeat;
  background-position: center bottom;
}

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

.hero h1 {
    color: rgb(var(--white-color));
    font-weight: 600;
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
/* Citat
========================================================================== */
blockquote {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-left: 5rem;
    text-align: center;
    color: rgb(var(--primary-color));
    margin-bottom: 4rem;
}

blockquote::before {
    content: '\f10d';
    position: absolute;
    font-weight: 900;
    width: 8rem;
    font-size: 7rem;
    color: rgba(var(--primary-color), 0.2);
    font-family: 'Font Awesome 5 Pro';
    margin: -5rem 0 0 -3rem;
}

blockquote::after {
    content: '\f10e';
    position: absolute;
    font-weight: 900;
    width: 8rem;
    font-size: 7rem;
    margin: -2rem 0 0 -3rem;
    color: rgba(var(--primary-color), 0.2);
    font-family: 'Font Awesome 5 Pro';
}

@media only screen and (max-width: 1430px) {
    blockquote {
        font-size: 3rem;
        margin-left: 2rem;
    }

    blockquote::after,
    blockquote::before {
        font-size: 6rem;
    }

    blockquote::before {
        margin: -3rem 0 0 -3rem;
    }

    blockquote::after {
        margin: -3rem 0 0 -3rem;
    }
}

@media only screen and (max-width: 680px) {
    blockquote {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
Undersida: Galleri
========================================================================== */
.section-gallery .cards-7 .card-item {
    margin-bottom: 3rem;
    border-radius: 1rem;
}

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

.section-gallery .cards-7 .small-title {
    margin-bottom: 0;
    border-bottom: none;
}

.section-gallery .cards-7 p {
    font-size: 1.5rem
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
/* Kontaktinformation
========================================================================== */
.section-contact .cards-5 {
    max-width: 120rem;
    margin: 5rem auto 0;
}

.section-contact .cards-5 .card-item {
    text-align: center;
}

.section-contact .cards-5 .icon-wrapper {
    font-size: 7rem;
}

@media only screen and (max-width: 680px) {
    .section-contact .cards-5 {
        margin: 0 auto;
    }

    .section-contact .cards-5 .icon-wrapper {
        font-size: 4rem;
        margin-bottom: 0;
    }
}

/* Karta
========================================================================== */
.section-map {
    margin-bottom: -5px;
}

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

.footer-container {
    max-width: 150rem;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 4rem 4rem 4rem;
   border-bottom: 0.1rem solid rgb(var(--white-color));
   
}

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

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

.footer .small-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: normal;
    color: rgb(var(--white-color));
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer a,
.footer li,
.footer p {
    color: rgb(var(--white-color));
    font-size: 1.6rem;
}

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

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background-color: rgb(var(--primary-color));

}

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

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
}

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

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

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

@media only screen and (max-width: 1024px) {
    .footer-menu {
        width: 48%;
    }

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

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

@media only screen and (max-width: 750px) {
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

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

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

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

    .footer-bottom {
        padding: 2rem;
    }
}