/*  Alba Maxima AB */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz@0,6..96;1,6..96&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600&display=swap');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 108, 143, 123;
    --primary-light-color: 241, 252, 245;
    --secondary-color: 172, 156, 201;
    --secondary-light-color: 233, 229, 241;

    --black-color: 17, 17, 17;
    --gray-dark-color: 50, 50, 50;
    --gray-light-color: 245, 245, 245;
    --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: 1300;
    --mobile-menu-height: 7rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

/* Modal som öppnas automatiskt
========================================================================== */
  body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color),.7);
  }

  body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 80vh;
    padding: 5rem;
    border-radius:0;
    overflow: auto;
    background: rgb(var(--primary-light-color));
    transform: translate(-50%,-50%);
    border-bottom: 5px solid rgb(var(--primary-color));
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
  }

    .section-auto-modal .small-title {
    font-size: 2.8rem;
  }

  @media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
      padding: 3rem 2rem;
    }
        .section-auto-modal .small-title {
    font-size: 2.3rem;
  }
  }

/* 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-image: linear-gradient(to right, rgb(var(--secondary-color)) 50%, rgb(var(--primary-color)) 50%);
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

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

.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;
    max-width: 45rem;
    max-height: calc(100vh - 12rem);
    padding: 4rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-bottom: 5px solid rgb(var(--primary-color));
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-window .small-title {
    font-size: 2.5rem;
}

.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: 980px) {
    .popup-window .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .popup-window .small-title {
        font-size: 2rem;
    }
}

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

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

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

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

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

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

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

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

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

.py-0 .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

/* Margins */

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

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

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

.align-start {
    align-items: flex-start;
}

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

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Rubriker */
.section-title {
    padding-bottom: .3em;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(var(--black-color));
    font-family: 'Open Sans', sans-serif;
}

.small-title {
    padding-bottom: .8em;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    color: rgb(var(--black-color));
}

.text-label {
    padding-bottom: 1.2em;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;

}

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

.list-circle li {
    padding: 0;
}

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

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

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

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

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

.text-italic {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
}

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

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

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

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

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

    .list-circle {
        padding-left: 1rem;
    }
}

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

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

/* Knappar */
.btn {
    min-width: 20rem;
    padding: 1.5rem 3rem;
    margin: .5rem;
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
    border-radius: 4rem;
}

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

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

.btn-primary-filled:hover,
.btn-secondary-filled:hover,
.btn-white-border:hover {
    border: 2px solid rgb(var(--gray-dark-color));
    background-color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

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

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

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    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: 4.5rem;
    height: 4.5rem;
    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(--primary-color));
    background-color: rgb(var(--white-color));
}

.circle-icon i:before,
.circle-icon em:before {
    font-size: 1.9rem;
}

@media only screen and (max-width: 580px) {
    .circle-icon {
        width: 4rem;
        height: 4rem;
    }
}

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

    .btn {
        display: block;
        width: 100%;
        margin: .5rem 0;
    }
}

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

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

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

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

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

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

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

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

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

.bg-gradient-primary-light-white {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 40%, rgb(var(--primary-light-color)) 40%);
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0) 100%);
}

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

/* bildspel */
.crossfade {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.crossfade div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-attachment: scroll/fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Grafiska element
========================================================================== */

/* Object position */
.of-wrapper .op-50-75 {
    object-position: 50% 75%
}

.cards-8 .image-wrapper .op-50-100 {
    object-position: 50% 100%
}

.op-50-30 img {
    object-position: 50% 30%
}

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

.card-item {
    width: 100%;
    transition: .3s ease;
    text-decoration: none;
}

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

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

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

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

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

/* 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:hover {
    opacity: 1;
    transform: scale(1);
}

@media only screen and (max-width: 890px) {
    .logos-1 img {
        max-height: 5rem;
        margin-bottom: 2rem;
    }
}

/* Card 2-4 */
.card-2-4 .card-item {
    background-color: rgb(var(--gray-light-color));
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
}

.card-2-4 .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    padding: 0 2rem 0 0;
    margin: 0 2rem 0 0;
    border-right: 1px solid rgb(var(--gray-dark-color), .5);
}

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

.card-2-4 .card-body {
    flex: 1 1 0%;
}

.card-2-4 p {
    font-size: 1.4rem;
    padding: 0;
}

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

    .card-2-4 .card-header {
        width: 3rem;
        padding: 0 3rem 0 1.5rem;
        margin: 0 2rem 0 0;
    }

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

/* Card 3-5 */
.card-3-5 .card-item {
    cursor: pointer;
}

.card-3-5 .visible-content {
    display: flex;
    background-color: rgb(var(--gray-light-color));
    box-shadow: 0px 0px 30px 0px rgba(var(--black-color), 5%);
}

.card-3-5 .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12rem;
    height: 12rem;
    min-width: 12rem;
    min-height: 12rem;
    margin: 1rem;
    border-radius: 50%;
    color: rgb(var(--white-color));
    background-image: linear-gradient(to right, rgb(var(--secondary-color), .7) 50%, rgb(var(--primary-color), .7) 50%);
}

.card-3-5 .icon-wrapper i {
    font-size: 4.5rem;
}

.card-3-5 .icon-wrapper img {
    width: 6rem;
    align-self: center;
    align-content: center;
}

.card-3-5 .card-body {
    width: 100%;
    align-content: center;
}

.card-3-5 .hidden-content {
    background-color: rgb(var(--white-color));
    border-bottom: 3px solid rgb(var(--primary-color));
    box-shadow: 0px 0px 30px 0px rgba(var(--black-color), 5%);
}

.card-3-5 .hidden-content p {
    font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
    .card-3-5 .icon-wrapper {
        width: 8rem;
        height: 8rem;
        min-width: 8rem;
        min-height: 8rem;
    }

    .card-3-5 .icon-wrapper i {
        font-size: 3rem;
    }

    .card-3-5 .icon-wrapper img {
        width: 4rem;
    }
}

/* Card 3-6 */
.card-3-6 .card-item {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 5%);
}

.card-3-6 .visible-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    min-height: 55rem;
    cursor: pointer;
}

.card-3-6 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-6 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .3);
    transition: .3s ease-in-out;
}

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
    pointer-events: none;
}

.card-3-6 .visible-content p {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(var(--white-color));
}

.card-3-6 .hidden-content {
    border-bottom: 5px solid rgb(var(--primary-color));
}

.card-3-6 .hidden-content p {
    font-size: 1.5rem;
}

/* Cards 8 */
.cards-8 .card-item {
    text-decoration: none;
    overflow: hidden;
    padding: 0rem;
    transition: all .3s ease;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 5%);
    border-bottom: 5px solid rgb(var(--primary-color));
}

.cards-8 .image-wrapper {
    height: 35rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-8 .image-wrapper img {
    max-height: 30rem;
}

.cards-8 .text-wrapper {
    padding: 2rem 2rem;

}

.cards-8 .small-title {
    padding-bottom: 1rem;
    font-size: 2.5rem;
    justify-content: space-between;
}


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

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

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

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

.split-image {
    width: 50%;
}

.split-image.w-35 {
    width: 35%;
}

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

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

    .split-content,
    .split-content.w-65 {
        width: 100%;
    }

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

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

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

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

header {
    background-color: rgb(var(--white-color));
    transition: all 0.2s ease;
}

header .container {
    max-width: none;
}

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

.text-logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.header-logo a:hover {
    text-decoration: none;
}

/* Nav */
.TemplateMenu a {
    font-size: 1.5rem;
    color: rgb(var(--gray-dark-color));
    font-weight: 600;
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--primary-color));
}

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

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

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 0.8rem 3rem;
}

.header-cta-wrapper img {
    max-width: 3rem;
}

@media only screen and (max-width: 700px) {
    .text-logo {
        display: none;
    }
}

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

    .header-cta-wrapper {
        flex: none;
    }
}

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

/* Top-section
========================================================================== */
.top-section .text-block {
    z-index: 2;
    position: absolute;
    bottom: 5vh;
    padding: 5rem;
    max-width: 80rem;
}

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

.top-section p {
    font-weight: 600;
}

.bg-slide-1 {
    background-image: url('/assets/images/team-2-2000px.jpg');
    background-size: cover;
    background-position: 50% 30%;
}

.bg-slide-2 {
    background-image: url('/assets/images/house-2000px.jpg');
    background-size: cover;
    background-position: 50% 50%;
}

.bg-slide-3 {
    background-image: url('/assets/images/snow-2000px.jpg');
    background-size: cover;
    background-position: 50% 50%;
}

.top-section .slick-list {
    width: 100%;
}

.top-section .slick-slide {
    position: relative;
    display: flex !important;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 4rem 13rem;
    min-height: 95vh;
    background-size: cover;
}

.top-section .slick-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .3);
}

.top-section .slick-dots li,
.top-section .slick-arrow,
.top-section .slick-dots {
    display: none !important;
}

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

    .bg-slide-1 {
        background-position: 20% 10%;
    }
}

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

/* Google recensioner
========================================================================== */
.section-reviews {
    overflow: hidden;
}

.section-reviews .fZBTme {
    max-width: 100% !important;
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    background-color: transparent;
}

.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 40vh;
}

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

.hero .section-title {
    font-size: 6rem;
    font-weight: 700;
    max-width: 90rem;
    color: rgb(var(--white-color));
}


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

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

    .hero .section-block {
        min-height: 30rem;
    }
}

/* CTA-sektion
========================================================================== */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 5rem;
}

.cta-wrapper .text-block {
    max-width: 65rem;
}

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

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

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

/* ==========================================================================
Undersida: Team
========================================================================== */
.section-team .logo-wrapper {
    max-width: 10rem;
    margin: 1rem 0;
}

@media only screen and (max-width: 580px) {
    .section-team .logo-wrapper {
        max-width: 7rem;
    }
}

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.section-contact {
    --col-padding: 5rem;
    background-image: linear-gradient(to right, rgb(var(--white-color)) 70%, rgb(var(--primary-light-color)) 70%);
    overflow: hidden;
}

.section-contact .col-block {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.section-contact .col-0 {
    width: 60%;
}

.section-contact .col-1 {
    width: 40%;
    background-color: rgb(var(--primary-light-color));
}

.line-list {
    list-style: none;
    padding: 0;
}

.line-list li {
    position: relative;
    padding: 0 0 1rem;
}

.line-list li:not(:last-child) {
    margin-bottom: 3rem;
}

.line-list li:not(:last-child)::after {
    position: absolute;
    display: block;
    content: '';
    width: 100vw;
    height: 1px;
    background-color: rgb(var(--primary-color), .5);
    left: 0;
    bottom: 0;
}

@media only screen and (max-width: 980px) {
    .section-contact {
        background-image: none;
    }

    .section-contact .section-block {
        padding: 0;
    }

    .section-contact .col-block {
        width: 100%;
        padding: 5rem 3rem;
    }
}

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

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

.section-map iframe {
    height: 50rem;
}

@media screen and (max-width: 980px) {
    .section-map iframe {
        height: 30rem;
    }
}

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

.footer-container {
    max-width: 150rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5rem 0 10rem;
    border-bottom: 1px solid rgb(var(--white-color), .2);
}

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

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

.footer-top p,
.footer-top a,
.footer-top li {
    color: rgb(var(--white-color), .7);
    font-weight: 400;
    font-size: 1.4rem;
}

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

.footer .small-title {
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(var(--white-color));
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
    color: rgb(var(--white-color), .5);
}

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

}

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


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

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

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

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

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

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

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