/* Er Projektpartner AB */

/* Typsnitt */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,500;1,700&display=swap");

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 37, 62, 91;
    --primary-light-color: 211, 216, 222;
    --secondary-color: 206, 169, 58;

    --black-color: 0, 0, 0;
    --gray-dark-color: 75, 75, 75;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 7rem;
    --mobile-menu-bg: var(--gray-light-color);
    --menu-color: var(--secondary-color);
}

/* Layout
========================================================================== */
body {
    background-color: rgb(var(--gray-light-color));
}

.section-block {
    padding: 10rem 5rem;
}

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

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

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

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

.pl-3 {
    padding-left: 3rem;
}

.py-5 .section-block {
    padding: 5rem 0;
}

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

.mt--5 {
    margin-top: -5rem;
}

.mr-1 {
    margin-right: 1rem;
}

.EditMode .mt--5 {
    margin: 0 !important;
}

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

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

.mw-300 {
    max-width: 30rem;
}

.mw-400 {
    max-width: 40rem;
}

.mw-1000 .section-block-wrapper,
.mw-1000:not(.section-wrapper) {
    max-width: 100rem;
}

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

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 1em;
}

.section-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    padding-bottom: 0.5em;
    color: rgb(var(--primary-color));
}

.small-title {
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.4;
    padding-bottom: 0.7em;
    color: rgb(var(--primary-color));
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

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

a {
    font-size: inherit;
    font-weight: 300;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

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

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

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

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

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

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

.no-wrap {
    white-space: nowrap;
}

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

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

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

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

    :root {
        /* 	Typography */
        --base-size: 1.5rem;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 4rem;
    border: 2px solid;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

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

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

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

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

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

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

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-color));
}

.arrow-link::after {
    content: " \f105";
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: "Font Awesome 5 Pro";
    transition: transform 0.4s ease;
}

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

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    margin: 0.5rem;
    font-size: 0;
    color: rgb(var(--primary-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
    transition: 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
.br-1 {
    border-radius: 1rem;
}

.br-05 {
    border-radius: 5px;
}

.br-top {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

/* Border */
.border-white {
    border: .5rem solid rgb(var(--white-color));
}

.border-left-primary {
    border-left: .5rem solid rgb(var(--primary-color));
}

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

/* Ruta med box-shadow hogst upp */
.cutout-shadow-wrapper {
    position: relative;
}

.cutout-shadow-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 1rem 2rem rgba(var(--black-color), .1);
}

.cutout-shadow {
    z-index: 1;
    position: relative;
    padding: 0rem;
    background-color: rgb(var(--white-color));
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

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



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

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

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

/* Crossfade */
.bg-crossfade {
    position: relative;
    background: linear-gradient(180deg,
            rgba(var(--black-color), 0.3) 0%,
            rgba(var(--black-color), 0.2) 100%);
}

.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

@media only screen and (max-width: 580px) {
    .fade-slider {
        position: relative;
    }
}

/* 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-bostadsratt {
    background-image: url(/assets/images/brf/balkonger-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-item {
    text-decoration: none;
}

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

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

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

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

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

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

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

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

@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,
    .cards-wrapper.w-16 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 1-1 -kontakt */
.card-1-1 .card-item {
    border-radius: 1rem;
}

.card-1-1 i {
    margin-right: 1rem;
}

@media only screen and (max-width: 450px) {
    .card-1-1 p {
        font-size: 1.5rem;
    }

    .card-1-1 .card-item {
        padding: 1rem;
    }
}

.card-3 .card-item {
    max-height: 20rem;
    max-width: 20rem;
}

/* Card 3-1 - tjanster */
.card-3-1 .card-item {
    position: relative;
    padding: 2rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-3-1 .image-wrapper:not(.circle) {
    height: 35rem;
}

.card-3-1 .image-wrapper.circle {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 100%;
}

.card-3-1 .image-wrapper.circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card-3-1 .card-body {
    padding: 2rem 0 0;
    flex: none;
}

.card-3-1 .card-footer {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    opacity: 0;
    transform: translateY(5rem);
    transition: all 0.3s ease;
}

.card-3-1 .btn,
.card-3-1 .btn-wrapper {
    margin-top: auto;
    align-self: center;
}

.card-3-1 .card-item:hover {
    background-color: rgb(var(--white-color));
    transition: all 0.3s ease;
}

.card-3-1 .card-item:hover .card-footer {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

@media only screen and (max-width: 1050px) {
    .card-3-1 .card-item .card-footer {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .card-3-1 .image-wrapper:not(.circle) {
        height: 25rem;
    }

    .card-3-1 .card-item {
        padding: 0 0 2rem;
    }
}

/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    border-radius: 1rem;
}

.card-3-4 .image-wrapper {
    width: 16rem;
    height: 16rem;
    margin: 0 1rem 0 0;
    border-radius: 5px;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
}

@media only screen and (max-width: 450px) {
    .card-3-4 .image-wrapper {
        width: 10rem;
        height: 10rem;
    }

    .card-3-4 .card-body {
        padding: 2rem 1rem 2rem 0;
    }
}

/* Card 3-6 - projekt */
.card-3-6 .card-item {
    position: relative;
    overflow: hidden;
}

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

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30rem;
    left: -100%;
    text-align: center;
    background-color: rgb(var(--primary-color), 0.8);
    transition: 0.6s ease;
}

.card-3-6 .card-item:hover .card-body {
    left: 0;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.split-content {
    width: calc(50% - 1rem);
    padding: 5rem;
    border-radius: 1rem;
}

.split-image {
    width: calc(50% - 1rem);
    border-radius: 1rem;
}

.split-image.flex {
    display: flex;
    align-items: center;
}

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

/* split-video
========================================================================== */
.split-video {
    position: relative;
    width: 50%;
    border-radius: 1rem;
    padding: 1rem 0;
}

.split-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

@media only screen and (max-width: 1100px) {
    .split-video {
        width: 100%;
        padding-bottom: 0;
    }

    .split-video video {
        position: relative;
        padding-bottom: 0;
    }
}

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

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

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

    .split-image.mt {
        margin-top: 2rem;
    }
}

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

    .split-wrapper,
    .split-content {
        background: transparent;
    }

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

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

/* Header / Navigation
========================================================================== */
header {
    background-color: transparent;
    background-position: center top;
    background-size: 100% 200%;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgb(var(--gray-light-color));
    background-position: center bottom;
    transition: all 0.3s ease;
}

.EditMode header {
    position: relative;
}

header .container {
    max-width: none;
}

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

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

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

.TemplateMenu a:hover,
.TemplateMenu li.active a,
.TemplateMenu li.active>a,
.TemplateMenu ul a:hover {
    color: rgb(var(--secondary-color));
}

body:not(.EditMode) .TemplateMenu>li:first-child {
    display: none;
}

/* Dropdown */
.TemplateMenu ul {
    background-color: rgb(var(--gray-light-color));
}

header:not(.mobile-menu) .TemplateMenu ul {
    width: 25rem;
    border-radius: 0 0 0rem 1rem;
    border-left: 1px solid rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--white-color));
}

.TemplateMenu ul a:not(:hover) {
    color: rgb(var(--gray-dark-color));
}

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

.header-cta-wrapper .circle-icon {
    background-color: transparent;
    border: 2px solid rgb(var(--white-color));
    color: rgb(var(--white-color));
}

.scrolled .header-cta-wrapper .circle-icon {
    border: 2px solid rgb(var(--primary-color));
    color: rgb(var(--primary-color));
}

.header-cta-wrapper .circle-icon:hover {
    border-color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

/* EditMode */
.EditMode #editBtns {
    z-index: 1;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    header {
        background-color: rgb(var(--gray-light-color));
    }

    .TemplateMenu a {
        color: rgb(var(--gray-dark-color));
    }

    .header-cta-wrapper .circle-icon {
        background-color: transparent;
        border: 2px solid rgb(var(--primary-color));
        color: rgb(var(--primary-color));
    }
}

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

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

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

.top-section .top-logo {
    max-width: 45rem;
    margin: 0 auto 3rem;
}

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

@media only screen and (max-width: 1024px) {
    .top-section .top-logo {
        max-width: 40rem;
    }

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

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

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

/* Sektion Tjanster
========================================================================== */
.section-services .section-block-wrapper {
    max-width: 170rem;
}

/* Sektion Kontakt
========================================================================== */
.section-contact .text-block {
    max-width: 55rem;
}

.section-contact .col-1 {
    background-color: rgb(var(--white-color));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Formular */
.ContactForm p {
    position: relative;
    left: 10px;
    bottom: -13px;
    display: inline-block;
    padding: 5px 3px;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: rgb(var(--primary-color));
    background-color: rgb(var(--white-color));
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 3px;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    border-radius: 3px;
    background-color: rgb(var(--white-color));
}

.ContactForm .ContactSubmit {
    font-size: 1.2rem;
}

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

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
    background-image: linear-gradient(0deg,
            rgba(var(--black-color), 0.8) 0%,
            rgba(var(--black-color), 0.8) 6%,
            rgba(var(--black-color), 0.3) 100%);
}

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

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


@media only screen and (max-width: 1000px) {
    .hero {
        margin-top: 0;
    }
}

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

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

/* Jobba hos oss - cta
========================================================================== */
.section-work-cta .split-wrapper {
    background-color: rgb(var(--white-color));
}

.split-contents .split-content:nth-child(1) {
    width: calc(100% - 30rem);
    padding: 5rem 5rem 5rem 2rem;
}

.split-contents .split-content:nth-child(2) {
    max-width: 30rem;
    padding: 0;
}

.section-work-cta .cards-wrapper.w-100 .card-item {
    margin: 0;
}

.section-work-cta .card-item .image-wrapper {
    height: 20rem;
}

@media only screen and (max-width: 900px) {
    .split-contents .split-content:nth-child(1) {
        width: 100%;
        padding: 0 0 3rem;
    }

    .split-contents .split-content:nth-child(2) {
        max-width: 30rem;
        padding: 0;
    }
}

/* ==========================================================================
Undersida: Projekt > Projektundersida
========================================================================== */
.section-project {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 100vh;
    padding: 3rem;
    margin-top: calc(-1 * var(--menu-height));
}

.section-project .text-block {
    max-width: 60rem;
    padding: 3rem;
}

.section-project i {
    width: 2.1rem;
    text-align: center;
}

/* Placerad till vanster*/
.section-project.left {
    justify-content: flex-start;
}

@media only screen and (max-width: 1300px) {
    .section-project {
        display: block;
        padding: 0;
        min-height: auto;
        margin-top: 0;
        background: rgb(var(--primary-color));
    }

    .section-project .fade-slider.slick-slider {
        position: relative;
        z-index: 1;
        height: 66.67vw;
    }

    .section-project .text-block {
        border-radius: 0;
    }
}

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

/* ==========================================================================
Undersida: digitalierar verkligheten
========================================================================== */

.logo-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
}

.split-logo {
    width: 17rem;
    padding: 0.7rem;
    border-radius: 0.5rem;
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color), 0.5);
    transition: transform 0.2s;
    margin: 0rem 0.5rem 0;
}

.split-logo.small {
    width: 6rem;
    height: 5.3rem;
}

a:hover .split-logo {
    transform: scale(1.1);
}

.section-gallery .slick-list {
    width: 100%;
    border-radius: 1rem;
}

.section-gallery .slick-slide {
    margin: 0 0.5rem;
}

.section-gallery .slick-slide img {
    border-radius: 1rem;
}

.section-gallery .slick-dots {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    width: auto;
    padding: 0;
    margin: 0;
    background-color: rgb(var(--white-color));
    border-radius: 1rem 1rem 0 0;
    transform: translateX(-50%);
}

@media only screen and (max-width: 980px) {
    .section-gallery .col-1 {
        margin-top: 5rem;
    }
}

/* ==========================================================================
Anmälan med formulär
========================================================================== */
.contact-form .col-block {
    background-color: rgb(var(--white-color));
    border-radius: 1rem;
    padding: 2rem;
}

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

.contact-form .ContactForm div {
    width: 49%;
}

.contact-form .ContactForm .ContactFormMessage {
    width: 100%;
}

.contact-form .ContactForm textarea {
    height: 15rem;
}


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

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0 0;
}

.footer-top .footer-menu {
    width: 33.33%;
}

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

.footer li {
    margin: 0 0 1rem;
}

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

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

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

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

.footer .text-block-center {
    max-width: 55rem;
}

.footer-logo {
    display: block;
    max-width: 20rem;
    margin: 0 auto;
}

.contact-options {
    text-align: right;
}

.contact-options ul {
    display: inline-block;
    text-align: left;
}

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

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

/* Footer logos */
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-logos .logo-item {
    height: 10rem;
    padding: 4px;
    margin: 0 1rem 1rem 0;
    border-radius: 6px;
    /* background-color: rgb(var(--white-color)); */
}

.footer-logos .logo-item img {
    height: 100%;
}

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

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

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

@media only screen and (max-width: 1000px) {
    .footer-top .footer-menu {
        width: 100%;
        order: 1;
        margin: 1rem 0;
    }

    .footer-top .footer-menu-large {
        order: 0;
    }

    .contact-options ul {
        display: block;
        text-align: center;
    }

    .contact-options ul li {
        display: inline-block;
        margin: 0 1rem 1rem;
    }

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

    .footer-logos {
        margin: 1rem 0;
    }

    .footer-logos .logo-item {
        margin: 5px;
    }
}

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

    /* Footer top */
    .footer li {
        display: block;
    }
}

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

    .webbess-stamp {
        margin-top: 2rem;
    }
}