/* SiteSing Interactive AB */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 50, 151, 222;
    --primary-dark-color: 42, 109, 138;

    --accent-green-color: 35, 83, 71;
    --accent-green-light-color: 142, 182, 155;
    --accent-green-dark-color: 22, 56, 50;
    --accent-blue-color: 77, 101, 134;
    --accent-blue-light-color: 113, 127, 153;
    --accent-blue-dark-color: 52, 67, 85;
    --accent-moss-color: 134, 137, 120;
    --accent-brown-color: 212, 155, 126;
    --accent-brown-dark-color: 176, 137, 106;

    --black-color: 0, 0, 0;
    --gray-dark-color: 41, 41, 41;
    --gray-color: 130, 130, 130;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 980;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--black-color);
    --menu-color: var(--white-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

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

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

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

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

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

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

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

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

/* Bredder */
.mw-1100 .section-block-wrapper {
    max-width: 110rem;
}

/* Hojder */
.mh-100 {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
}

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

/* Ovriga klasser */
.block {
    display: block;
}

.of-hidden {
    overflow: hidden;
}

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

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

    /* Margins */
    .mb-10 {
        margin-bottom: 5rem;
    }
}

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

/* Rubriker */
.section-title {
    padding-bottom: .5em;
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}

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

.list-check li::before {
    content: '\f00c';
    position: relative;
    top: -2px;
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Font Awesome 5 Pro';
}

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

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

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

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.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 {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

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

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    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: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--black-color));
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
    transition: .3s ease;
}

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

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

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

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

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

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

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

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

.bg-green-dark {
    background-color: rgb(var(--accent-green-dark-color));
}

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

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

.bg-blue-dark {
    background-color: rgb(var(--accent-blue-dark-color));
}

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

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

.bg-brown-dark {
    background-color: rgb(var(--accent-brown-dark-color));
}

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

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

/* Grafiska element
========================================================================== */
/* Video ratio */
.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video,
.video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
}

/* Object position */
.of-wrapper img.op-50-34 {
    object-position: 50% 34%;
}

.of-wrapper img.op-50-0 {
    object-position: 50% 0;
}

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

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

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

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

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

.parallax .section-block {
    background-color: rgb(var(--black-color), .8)
}

.parallax-factory {
    background-image: url('/assets/images/old-factory-2000px.jpg');
}

.parallax-touchscreen {
    background-image: url('/assets/images/showroom-and-signage/touchscreen-2000px.jpg');
}

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

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

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

a.card-item {
    text-decoration: none;
}

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

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

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

/* Card 1-1 */
.card-1-1.border-right .card-item {
    padding: 2rem 2rem 1rem 0;
}

.card-1-1.border-right .card-item:not(:last-of-type) {
    border-right: 1px solid rgb(var(--white-color));
}

@media only screen and (max-width: 1100px) {
    .card-1-1.w-25.border-right .card-item:nth-child(2) {
        border-right: none;
    }
}

@media only screen and (max-width: 750px) {
    .card-1-1.border-right .card-item {
        padding: 0 0 2rem 0;
    }

    .card-1-1.border-right .card-item:not(:last-of-type) {
        border-right: none;
        border-bottom: 1px solid rgb(var(--white-color));
    }
}

/* Card 2-1 */
.card-2-1 a.card-item:hover {
    background: rgb(var(--primary-light-color));
}

.card-2-1 .card-header {
    margin-bottom: 1rem;
    font-size: 5rem;
}

.card-2-1 .image-wrapper {
    width: 6.5rem;
    height: 6.5rem;
    margin-bottom: 1.5rem;
}

.card-2-1 a.card-item p {
    transition: .3s ease;
}

.card-2-1 a.card-item:hover p {
    color: rgb(var(--primary-color));
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    padding-top: 1rem;
}

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

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

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

/* Card 3-1 */
.card-3-1 .video-wrapper iframe {
    width: 100%;
    height: 100%;
}

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

.card-3-4 .image-wrapper {
    width: 16rem;
    height: 100%;
    margin-right: 1rem;
}

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

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

/* Logos 1 */
.logos-1 .card-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-1 img {
    height: 3rem;
    transition: 0.2s ease-in-out;
}

.logos-1 img.filter {
    filter: brightness(0) invert(1);
}

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

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

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

.split-image,
.split-video,
.split-iframe {
    width: 50%;
}

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

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

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

/* Video */
.split-video.video-ratio {
    padding-bottom: 33.7%;
}

/* Iframe */
.split-iframe {
    width: 100%;
    border: none;
}

/* Slider */
.split-image.slick-slider .slick-slide {
    margin: 0;
}

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

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

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

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

    .split-image,
    .split-video,
    .split-iframe {
        width: 100%;
    }

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

    /* Bredder */
    .split-wrapper .w-40,
    .split-wrapper .w-60 {
        width: 100%;
    }

    /* Video */
    .split-video.video-ratio {
        padding-bottom: 56.25%;
    }

    /* Paddings */
    .split-wrapper .pr-0 {
        padding-left: 0;
    }

    .split-wrapper .pl-0 {
        padding-right: 0;
    }
}

@media screen and (max-width: 680px) {
    .split-content {
        padding: 2rem;
    }
}

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--black-color));
}

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

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

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

header:not(.mobile-menu) .TemplateMenu ul {
    width: 25rem;
}

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

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

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

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: calc(100vh - var(--menu-height));
}

.top-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15rem;
    background: linear-gradient(180deg, rgba(var(--black-color), 0) 0%, rgba(var(--black-color), .5) 40%, rgba(var(--black-color), 1) 100%);
}

.top-section .section-block {
    width: 100%;
    padding-bottom: 20rem;
}

.top-section .section-title {
    font-size: 9rem;
    font-weight: 800;
}

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

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

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

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

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

/* Om
========================================================================== */
.about-list {
    width: 50rem;
    margin: 0 auto;
}

.about-list i {
    position: relative;
    top: -1px;
    margin-right: 5px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 750px) {
    .section-about .text-center {
        text-align: left;
    }

    .about-list {
        width: 100%;
    }
}

/* Rubrik till vanster, text till hoger
========================================================================== */
.section-heading-text .col-0 {
    border-right: 1px solid rgb(var(--white-color));
}

.section-heading-text.bg-white .col-0 {
    border-right: 1px solid rgb(var(--black-color));
}

.section-heading-text .section-title {
    font-size: 3.8rem;
}

@media only screen and (max-width: 980px) {
    .section-heading-text .col-0,
    .section-heading-text.bg-white .col-0 {
        margin-bottom: 2rem;
        border-right: none;
    }
}

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

/* Loggor
========================================================================== */
.section-logos .section-block {
    padding-left: 0;
    padding-right: 0;
}

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

.section-logos .cards-wrapper:not(.w-100) {
    margin-left: 0;
    margin-right: 0;
}

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

.section-logos .slick-slide {
    margin: 0 2rem;
}

/* CTA
========================================================================== */
.section-cta {
    background-image: url('/assets/images/blocks-2000px.jpg');
}

.section-cta .section-block {
    padding-top: 15rem;
    padding-bottom: 15rem;
    background-color: rgb(var(--black-color), .2)
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
    text-align: center;
    background-color: rgb(var(--black-color), .2);
}

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

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

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

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

/* Hero - Video
========================================================================== */
.hero-video {
    display: flex;
    align-items: center;
    min-height: 70vh;
    font-size: 0;
    background-color: rgb(var(--black-color), .2);
}

.hero-video .section-block {
    padding: 0;
}

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

.overlay {
    background-color: rgb(var(--black-color), .5);
}

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

    .hero-video .bg-video-wrapper {
        position: relative;
    }
}

/* CTA-sektion med bildspel
========================================================================== */
.cta-wrapper {
    padding: 10rem 4rem;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
}

.cta-wrapper.studio {
    background-image: linear-gradient(to right, rgb(var(--black-color), .4), rgb(var(--black-color), .6)), url('/assets/images/studio-live-events/studio-1500px.jpg');
}

.cta-wrapper.directing {
    background-image: linear-gradient(to right, rgb(var(--black-color), .4), rgb(var(--black-color), .6)), url('/assets/images/studio-live-events/directing-1500px.jpg');
}

.cta-wrapper.technical {
    background-image: linear-gradient(to right, rgb(var(--black-color), .4), rgb(var(--black-color), .6)), url('/assets/images/studio-live-events/technical-1500px.jpg');
}

.cta-wrapper .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

/* Slick Settings */
.slick-slider .slick-list {
    width: 100%;
}

.slick-slider .slick-track {
    display: flex;
}

.slick-slider .slick-slide {
    height: auto;
    margin: 0 1rem;
}

/* Slick Dots */
.slick-slider .slick-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    width: auto;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
}

.slick-slider .slick-dots li::before {
    color: rgb(var(--white-color));
}

.slick-slider .slick-dots li.slick-active::before {
    opacity: 1;
    color: rgb(var(--primary-color));
    transition: all .2s ease;
}

/* Slick Arrow */
.slick-slider .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
}

.slick-slider .slick-arrow::after {
    font-size: 5rem;
    font-weight: 300;
    color: rgb(var(--white-color));
}

.slick-slider .slick-next {
    right: 1rem;
}

.slick-slider .slick-prev {
    left: 1rem;
}

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

/* ==========================================================================
Undersida: Services > Photography and Illustration
========================================================================== */
.split-image.pdf {
    position: relative;
}

.split-image.pdf img {
    position: absolute;
    top: -5rem;
    left: 50%;
    height: calc(100% + 6rem);
    transform: rotate(-7deg) translateX(-50%);
    transition: .3s ease;
}

.split-image.pdf:hover img {
    top: -3rem;
    transform: rotate(0) translateX(-50%);
}

@media only screen and (max-width: 1024px) {
    .split-image.pdf {
        min-height: 20rem;
    }

    .split-image.pdf img {
        top: -2rem;
        height: calc(100% + -1rem);
    }
}

/* ==========================================================================
Undersida: About
========================================================================== */
.section-about-splits .split-image {
    min-height: 35rem;
}

@media only screen and (max-width: 1024px) {
    .section-about-splits .split-image {
        min-height: unset;
    }
}

/* ==========================================================================
Undersida: Contact us
========================================================================== */
.team-wrapper .card-item .image-wrapper .spex {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s ease;
}

.team-wrapper .card-item:hover .spex {
    opacity: 1;
}

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

.contact-item a:hover {
    color: rgb(var(--primary-color));
}

.contact-item a i {
    margin-right: 5px;
}

/* ==========================================================================
Undersida: Book a meeting
========================================================================== */
.section-meeting .section-block-wrapper {
    max-width: 100rem;
}

.section-meeting .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-meeting .ContactForm>div {
    width: 49%;
}

.section-meeting .ContactForm div.checkbox-field,
.section-meeting .ContactForm div.textarea-field,
.section-meeting .ContactForm div.submit-button-container {
    width: 100%;
}

.ContactForm p {
    font-weight: 600;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="number"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="date"]:not(.illegal),
.ContactForm input[type="datetime-local"]:not(.illegal),
.ContactForm select:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm .file-dropzone:not(.illegal) {
    color: rgb(var(--white-color));
    background-color: rgb(var(--gray-dark-color));
}

.section-meeting .ContactSubmit {
    display: block;
    max-width: 20rem;
    margin: 0 auto;
}

@media only screen and (max-width: 680px) {
    .section-meeting .ContactForm>div {
        width: 100%;
    }
}

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

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
}

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

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

.footer .text-bold {
    padding: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1;
}

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

.footer-top p,
.footer-top a {
    font-size: 1.4rem;
    text-decoration: none;
    transition: .3s ease;
}

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

/* Sociala medier */
.footer-socials {
    display: flex;
    align-items: center;
}

.footer-socials::before,
.footer-socials::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0%;
    border-top: 1px solid rgb(var(--white-color));
}

.footer-socials::before {
    margin-right: 2rem;
}

.footer-socials::after {
    margin-left: 2rem;
}

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

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

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: none;
}

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

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

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

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

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

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

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

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

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