/* Nordic United */

@import url("https://use.typekit.net/ast5fiy.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

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

    /* 	Colors */
    --primary-color: 183, 97, 85;
    --primary-light-color: 206, 148, 141;
    --secondary-color: 27, 22, 20;

    --black-color: 17, 17, 17;
    --gray-color: 128, 128, 128;
    --gray-dark-color: 64, 64, 64;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

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

/* Layout
========================================================================== */
.section-wrapper {
    z-index: 1;
    position: relative;
    background-color: rgb(var(--white-color));
}

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

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

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

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

/* Speciella margins */
.mt-3 {
    margin-top: 3rem !important;
}


@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: 'Open Sans', sans-serif;
    font-weight: 400;
}

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

.section-title {
    font-family: good-times, sans-serif;
    font-weight: 500;
    font-size: 4rem;
    line-height: 1.2;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.small-title {
    font-family: good-times, sans-serif;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.4;
    color: rgb(var(--black-color));
}

.ingress {
    font-size: 1.8rem;
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: rgb(var(--primary-color));
}

a:hover {
    text-decoration: none;
}

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

/* Ovriga klasser */
.text-block {
    width: 100%;
    padding: 0 5rem 5rem;
    max-width: 70rem;
    text-align: left;
}

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

.text-block-line {
    border-left: 1px solid rgb(var(--primary-color));
    padding: 3rem 0rem 3rem 5rem;
    max-width: 100rem;
    margin: 0 auto;
}

.display-none {
    display: none;
}

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

@media only screen and (max-width: 500px) {
    .text-block-line {
        border-left: 0;
        padding: 0rem 0rem 0rem 0rem;
    }
}

/* Listor */

/* List-check */
.list-check,
.list-arrow {
    list-style: none;
}

.list-check,
.list-arrow {
    padding: 0;
}

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

.list-arrow li::before {
    content: '\f0da';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
}

.list-inline li {
    display: inline-flex;
    margin-bottom: 1rem;
}

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

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

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

    .text-wrapper {
        padding: 0 3rem 5rem;
    }
}

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

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

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

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

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

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

.btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 2rem;
}

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

.btn {
    display: inline-block;
    min-width: 18rem;
    padding: 1.4rem 2.5rem;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    border-radius: .8rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

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

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    left: 50%;
    bottom: 4rem;
    transform: translatex(-50%);
}

.bouncing-arrow i {
    color: rgb(var(--primary-color));
    font-size: 4rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}


@keyframes bounce {

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

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

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


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

.arrow-link::after {
    content: ' \f063';
    display: inline-block;
    margin-left: .8rem;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

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


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

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

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

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

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

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

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

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

/* Bakgrundsbilder och video
========================================================================== */
/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
}

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

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

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

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

.video-wrapper {
    position: relative;
}

/* Video för mobila enheter */
.video-phone {
    display: none;
}

/* Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    padding-bottom: 10%;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(var(--black-color), .7);
}

.play-overlay em {
    color: rgb(var(--white-color));
    font-size: 5rem;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay em {
    font-size: 3.5rem;
}

.play-overlay p {
    display: inline-block;
    color: rgb(var(--white-color));
    margin-left: 1.5rem;
    font-size: 0;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay p {
    font-size: 2rem;
}

/* Video */
.fancybox-video {
    display: none;
}

.phone-play {
    display: none;
}

/* Parallax */
.parallax {
    min-height: 40rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(var(--secondary-color), 0.6);
}

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

@media only screen and (max-width: 1500px) {
    .play-overlay {
        display: none;
    }

    .phone-play {
        display: contents;
    }
}

@media only screen and (max-width: 700px) {
    .fancybox-slide--video .fancybox-content {
        background: transparent !important;
    }

}

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

    /* Video för normal size döljs */
    .video-normal {
        display: none;
    }

    /* Video för mobila enheter visas */
    .video-phone {
        display: block;
    }


}

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

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

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

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

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


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

/* 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: 0 1rem 2rem;
}

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

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

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

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

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

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

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

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

/* Cards 1 */
.cards-wrapper.cards-1 .card-item {
    background-color: rgb(var(--white-color));
    margin-bottom: 10rem;
}

.cards-1 .small-title {
    color: rgb(var(--primary-color));
    border-bottom: 1px solid;
    padding: 0 0 1rem;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 580px) {
    .cards-wrapper.cards-1 .card-item {
        margin-bottom: 5rem;
    }

    .cards-1 .text-wrapper {
        padding: 0;
    }
}

/* Card 2-1 */
.card-2-1 .card-header {
    margin-bottom: 2rem;
    font-size: 9rem;
}

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

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

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
}

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

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

.card-2-4 .text-small {
    font-size: 1.4rem;
    transition: .2s ease;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-body {
        padding: 1rem;
    }
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 25rem;
}

.card-3-1 .card-item .small-title {
    padding: 1rem;
    margin: 0;
    text-align: center;
}

/* Cards 12 */
.cards-12 .card-item {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: rgb(var(--gray-light-color));
}

.cards-12 .image-wrapper {
    width: 100%;
    overflow: hidden;
}

.cards-12 .text-wrapper {
    padding: 2rem;
    font-style: normal;
}

.cards-12 .small-title {
    font-size: 1.6rem;
    color: rgb(var(--primary-color));
    padding: 0 0 1rem;
}

.cards-12 .title {
    font-size: 1.3rem;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 0 0 8px;
}

.cards-12 a {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: rgb(var(--primary-color));
}

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

.cards-12 .imdb-wrapper img {
    filter: invert();
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
    background-color: rgb(var(--white-color));
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.IndexPage header:not(.scrolled) {
    background-color: transparent;
    border: none;
}

header .container {
    max-width: none;
}

/* logo */
.header-logo img {
    padding: 1rem 0;
}

/* nav */
.mainmenu {
    margin: 0 0 0 auto;
}

.TemplateMenu a {
    font-weight: 800;
    font-size: 1.3rem;
    color: rgb(var(--white-color));
    text-transform: uppercase;
    letter-spacing: .1em;
}

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

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

.mobile-menu a {
    color: rgb(var(--black-color));
}

.mobile-menu .mainmenu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    padding-top: calc(var(--mobile-menu-height) + 3rem);
    background-color: rgba(228, 228, 228, 0.71);
    overflow: auto;
}

@media only screen and (max-width: 580px) {
    .mobile-menu .mainmenu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        background-color: rgb(255, 255, 255);

    }
}

.mobile-menu .hamburger {
    display: block;
    align-self: center;
    margin-top: -4rem;
    margin-right: 2rem;
}

.hamburger.hamburger--slide.is-clicked {
    margin-top: 0rem !important;
}

.hamburger-inner::after {
    content: 'Menu';
    color: rgb(var(--secondary-color));
    letter-spacing: 1px;
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: transparent;
}

.IndexPage .hamburger-inner::after {
    color: rgb(var(--white-color));
}

header.scrolled .hamburger-inner::after {
    color: rgb(var(--secondary-color));
}

.hamburger-inner:before {
    display: none;
}

.hamburger-inner {
    background: transparent;
}

.hamburger--slide.is-clicked .hamburger-inner {
    transform: translateY(10px) rotate(45deg);
    background: black;
}

.hamburger--slide.is-clicked .hamburger-inner:after {
    content: '';
    display: block;
    background: black;

}

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

.mobile-menu .hamburger {
    margin-right: 4rem;
}
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--menu-height));
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    background-color: rgba(var(--black-color), .3);
}

.top-section::after {
    z-index: -1;
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 4rem;
    background-color: rgb(var(--white-color));
    left: 0;
    bottom: 0;
    -webkit-clip-path: polygon(0 0, 47% 0, 50% 70%, 53% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 47% 0, 50% 70%, 53% 0, 100% 0, 100% 100%, 0 100%);
}

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

.top-section .bg-video-wrapper {
    position: fixed;
}

.top-section h1 {
    font-family: good-times, sans-serif;
    font-weight: 500;
    font-size: 5.8rem;
    color: rgb(var(--white-color));
    padding: 0;
    max-width: 110rem;
    line-height: 1.3em;
}

.top-section p {
    width: 100%;
    max-width: 80rem;
    margin: 0.4em 0;
    overflow: hidden;
    text-align: left;
    color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
}

.start-wrapper p,
li {
    font-size: 1.8rem;
}

.not-start-wrapper p,
li {
    font-size: 1.6rem;
}

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

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

    .top-section::after {
        height: 2rem;
    }
}

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

    .top-section p {
        font-size: 1.4rem;
    }

    .top-section .section-block::after {
        -webkit-clip-path: polygon(0 0, 40% 0, 50% 70%, 60% 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 40% 0, 50% 70%, 60% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Sektion Intro
========================================================================== */
.start-wrapper li {
    padding-bottom: 1rem;
}

@media only screen and (max-width: 580px) {
    .start-wrapper .slick-list {
        width: 100%;
    }
}

/* Sektion Arbeten (.section-works)
========================================================================== */
.section-works.section-wrapper {
    padding-bottom: 5rem;
}

.works .card-item {
    position: relative;
    display: block;
    width: calc(100% / 3);
    margin: 0;
    padding-bottom: 15rem;
    background-color: rgb(var(--gray-light-color));
    transition: all .3s ease;
    overflow: hidden;
}

.works .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.works .card-item .text-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 15rem;
    left: 0;
    padding: 3rem;
    text-align: left;
    background-color: rgb(var(--gray-light-color));
    transform: translateY(100%);
    transition: all .5s ease;
}

.works .card-item:hover .text-wrapper {
    transform: translateY(0);
    transition: all .5s ease;
    bottom: 0;
    max-height: 100%;
    background-color: rgba(var(--gray-light-color), 0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.works .card-item .text-wrapper p {
    opacity: 0;
}

.works .card-item:hover .text-wrapper p {
    opacity: 1;
}

.works .text-title {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

.works .card-item p {
    color: rgb(var(--secondary-color));
    font-size: 1.2rem;
}

.works .text-wrapper-bottom {
    margin: 2rem 0 0;
    opacity: 0;
}

.works .card-item:hover .text-wrapper-bottom {
    opacity: 1;
}

@media only screen and (hover:none) {
    .works .card-item .text-wrapper {
        position: static;
        transform: translateY(0);
        transition: all .5s ease;
        bottom: 0;
        background-color: rgba(var(--gray-light-color), 0.8);
        backdrop-filter: blur(5px);
    }

    .works .card-item .text-wrapper p,
    .works .card-item .text-wrapper-bottom {
        opacity: 1;
    }
}

@media only screen and (max-width: 1500px) {
    .works .card-item {
        width: calc(100% / 2);
    }
}

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

    .works .card-item {
        width: 100%;
        min-height: 35rem;
        padding-bottom: 5rem;
    }

    .works .image-wrapper {
        height: unset;
    }

    .works .of-wrapper img {
        object-position: top center;
    }

    .works .text-wrapper {
        position: relative;
        bottom: auto;
        height: auto;
        padding: 3rem 2rem;
        transform: none;
        opacity: 1;
    }

    .works .card-item:hover .text-wrapper {
        transform: none;
    }

    .works .card-item p,
    .works .card-item .text-wrapper-bottom {
        opacity: 1;
    }

    .works2 .card-item .text-wrapper {
        bottom: 7rem !important;

    }

    .works2 .card-item:hover .text-wrapper {
        transform: translateY(100%) !important;
        transition: all .5s ease;
        bottom: 0;
        background-color: rgba(var(--secondary-color), 0.8);
        backdrop-filter: blur(5px);
    }
}


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

/* Hero
========================================================================== */
.hero .section-block {
    padding-top: 20rem;
}

.hero h1 {
    font-family: good-times, sans-serif;
    font-weight: 500;
    font-size: 5.8rem;
    color: rgb(var(--white-color));
    padding: 0;
    max-width: 110rem;
    line-height: 1.3em;
}

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

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

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

/* ==========================================================================
Undersida: Prices
========================================================================== */
/* Tables*/

.table {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 2rem 0 5rem;
    font-size: 1.6rem;
}

.table * {
    color: rgb(var(--secondary-color), .9);
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.table-row:nth-child(odd) {
    background-color: rgb(var(--secondary-color), .05);
}

.table-cell {
    display: table-cell;
    padding: 1rem 1rem;
}

.table-cell:nth-child(2) {
    text-align: right;
}

.table-body {
    display: table-row-group;
}

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

@media only screen and (max-width: 550px) {
    .table-row {
        padding: 0;
    }

    .table-cell {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
Undersida: Team/Kontakt
========================================================================== */

.imdb-wrapper {
    max-width: 5rem;
}

.imdb-wrapper:hover {
    scale: 1.1;
}

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

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

/* ==========================================================================
Undersida: Studios
========================================================================== */
.section-gallery .small-title {
    padding-left: 4rem;
    margin-top: 3rem;
}

.section-gallery .card-3-1 .small-title {
    font-size: 1.5rem;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    position: relative;
    z-index: 1;
    background-color: rgb(var(--gray-light-color));
}

.footer-container {
    padding: 0 5rem;
}

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

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

.footer-menu {
    width: 20%;
}

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

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

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

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

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

.footer-logos {
    display: flex;
    align-items: flex-end;
    margin-top: 3rem;
}

.footer img {
    width: auto;
    max-width: calc(100% / 2 - 2rem);
    max-height: 6.5rem;
    margin: 1rem;
}

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

.footer-bottom p {
    font-size: 1.2rem;
    color: rgb(var(--secondary-color), .5);
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(var(--secondary-color), .5);
}

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

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

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

    .footer-menu-large {
        width: 100%;
        margin-bottom: 2rem;
    }

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

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

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

    .footer-menu:not(.footer-menu-large) {
        padding-bottom: 3rem;
    }

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

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