/* Van der Nootska Palatset i Stockholm AB */

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

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

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

    /* 	Colors */
    --primary-color: 206, 189, 137;
    --secondary-color: 247, 244, 237;

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

    --gray-light-color: 250, 245, 239;
    --gray-dark-color: 94, 92, 95;

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

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

/* Layout
========================================================================== */
.section-wrapper {
    background-color: rgb(var(--white-color));
}

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

.section-block-wrapper {
    max-width: var(--section-width);
}

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

.mw-900 {
    max-width: 90rem !important;
}

.mw-1100 {
    max-width: 110rem !important;
}

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

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

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

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

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

.pt-0 .section-block {
    padding-top: 0rem;
}

.pt-2 {
    padding-top: 2rem;
}

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

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

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

.pb-3 {
    padding-bottom: 3rem;
}

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

.pr-0 .section-block {
    padding-right: 0;
}

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

.mt-2 {
    margin-top: 2rem;
}
.my-2{
margin-top: 2rem;
margin-bottom: 2rem;
}
.mb-0{
    margin-bottom: 0;
}

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

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

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

    /* Specifika paddings */
    .pl-0 .section-block {
        padding-left: 2rem;
    }

    .pr-0 .section-block {
        padding-right: 2rem;
    }

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

    .p-3 .section-block {
        padding: 2rem;
    }
}

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

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

.text-label2 {
    padding-bottom: 1.5rem;
    color: rgb(var(--white-color));
    letter-spacing: .2rem;
    text-transform: uppercase;
    font-size: 2.0rem;
    font-weight: 500;
    padding-top: 2rem;
}

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

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


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

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

a:hover {
    text-decoration: underline !important;
}

a.a-bigger {
    font-size: 2.4rem;
}

li {
    line-height: 1.6;
}


/* Listor */
.list-properties {
    padding: 0;
    margin-top: 0;
    list-style: none;
}

.list-properties li {
    display: flex;
    justify-content: space-between;
    padding-bottom: .3rem;
    margin-bottom: .3rem;
    font-size: 1.7rem;
    border-bottom: 1px solid rgb(var(--gray-dark-color));
}

.list-properties li span {
    padding: 0 .5rem;
}


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

.text-block.mw-50 {
    max-width: 50rem;
}

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

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

.text-italic {
    text-decoration: italic;
}

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

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

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


/* Farger och bakgrundsfarger
========================================================================== */
.bg-secondary {
    background-color: rgb(var(--secondary-color)) !important;
}

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

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

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

.bg-red {
    background-color: rgb(149, 0, 0);
}

/* Brodtext */
.text-primary {
    color: rgb(var(--primary-color));
}
.text-black {
    color: rgb(var(--black-color)) !important;
}
.text-white {
    color: rgb(var(--white-color));
}

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

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

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

.btn-wrapper.multiple .btn {
    margin: 0 1rem 1rem 0;
}

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

.btn:hover {
    text-decoration: none !important;
}

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

.ContactSubmit:hover,
.ContactSubmit:focus,
.btn-primary-filled:hover {
    border: 1px solid rgb(var(--black-color));
    background-color: rgba(var(--black-color));
    color: rgb(var(--white-color));
}

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

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

/* Arrow link */
.arrow-link {
    font-size: 15px;
    padding-right: 1rem;
    color: rgb(var(--gray-dark-color));
    font-weight: 500;
    text-transform: uppercase;
}

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

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

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

.cards-1 a.card-item:hover {
    text-decoration: none !important;
}

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

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

.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-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

/* Generellt */
a.card-item {
    transition: .3s ease;
}

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

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

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

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

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

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

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

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

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

    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 35rem;
    padding: 0;
}

.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%;
    transition: .3s ease-in-out;
}

.card-3-6 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .2);
}

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
    display: inline-block;
    min-width: 50%;
    pointer-events: none;
}

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

.card-3-4 .image-wrapper {
    width: 20rem;
    height: 20rem;
    margin: 1rem;
    border-radius: 50%;
}

.card-3-4 .card-body {
    width: calc(100% - 20rem);
}

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

@media only screen and (max-width: 1200px) {
    .card-3-4 .card-item {
        padding: 1rem;
    }

    .card-3-4 .image-wrapper {
        width: 14rem;
        height: 14rem;
    }

    .card-3-4 .card-body {
        width: calc(100% - 14rem);
    }
}

@media only screen and (max-width: 1024px) {
    .cards-wrapper.card-3-4 .card-item {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .card-3-4 .card-item {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        text-align: center;
    }
}

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

.card-2-4 a.card-item:hover {
    background: rgb(var(--gray-light-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;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

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

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


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

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

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

/* 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%;
        padding: 0 0 5rem 0;
    }

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

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

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

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

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

.SubPage .bg-image {
    position: relative;
    overflow: hidden;
}

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

/* bakrundsposition */
.op-50-75 img {
    object-position: 50% 75%;
}

/* Bildspel i top-section */
.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;
}

/* 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: 55rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%, -50%);
}

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

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

/* Header / Navigation
========================================================================== */
.LayoutPage .SubPage header,
.EditMode header {
    display: block;
}

header {
    background-color: rgb(var(--black-color));
    padding: 0 5rem;
}

header .container {
    max-width: var(--section-width);
    padding: 0;
    margin: 0 auto;
}

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

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

.TemplateMenu ul {
    background-color: rgb(var(--black-color));
    min-width: 25rem;
}

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

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

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

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

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

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

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

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

.top-section .text-label {
    color: rgb(var(--white-color));
    padding-bottom: 2rem;
}

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

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

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

/* Startsida: Galleri
========================================================================== */
.cards-wrapper.w-25 img {
    width: calc((100% / 4) - 0rem);
    border: 1px solid rgb(var(--black-color));
}

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

.section-gallery img {
    transition: 0.2s ease-in-out;
}

.section-gallery img:hover {
    opacity: 1;
    filter: none;
    -moz-transform: scale(0.98);
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

/* Startsida: intro
========================================================================== */
@media only screen and (max-width: 750px) {
    .section-intro .text-center {
        text-align: start;
    }
}

/* Startsida: Instagram
========================================================================== */
.section-instagram .split-image {
    display: flex;
    justify-content: end;
}

.section-instagram .text-block {
    max-width: 48rem;
}

.section-instagram a {
    font-size: 1.7rem;
}

@media only screen and (max-width: 1100px) {
    .section-instagram .split-image {
        justify-content: center;
    }

    .section-instagram .split-content {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .section-instagram .split-content .btn-wrapper {
        justify-content: center;
    }
}

/* ==========================================================================
Undersidor
========================================================================== */
/* Hero
========================================================================== */
.hero {
    background-color: rgba(var(--black-color), .4);
}

.hero-no-gradient {
    background-color: transparent;
}

.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 45rem;
    background-color: rgba(var(--black-color), .3);
}
.hero-big .section-block {
    min-height: 85vh;
}

.hero-2 .section-block  {
    background-color: transparent !important;
}

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

.hero .section-title {
    text-align: center;
    color: rgb(var(--white-color));
    font-size: 5.5rem;
    font-weight: 700;
    padding-bottom: 0;
}
.hero .section-title .black{
    color: rgb(var(--blacke-color));
}

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


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

/* Hero bara bild utan text/overlay
========================================================================== */
.hero-img {
    background-color: transparent;
}

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

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

.hero-img img {
    width: 100%;
}



/* ==========================================================================
Undersida: Lunchmeny
========================================================================== */
.section-menu .section-block {
    padding-top: 0;
}

.section-menu .section-block-wrapper {
    max-width: 100rem;
}

.section-menu .col-wrapper {
    position: relative;
    z-index: 1;
    background-color: rgb(var(--white-color));
    /* background-image: url(/assets/images/chalkboard.jpg); */
    background-size: cover;
    border: 1px solid rgb(var(--black-color));
    position: relative;
    padding: 3rem 0 3rem;
    top: -5rem;
    margin-bottom: -5rem;
}

.menu-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5rem 5rem 0 5rem;
}

.menu-title-img {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    display: block;
}

.food-items-img {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: block;
}

.menu-wrapper .menu-item,
.menu-wrapper img {
    width: calc(50% - 3rem);
}

.menu-wrapper .menu-item.w-100 {
    width: 100%;
}

.menu-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 4rem;
}

.menu-item-small-title {
    padding-bottom: 1rem;
}

.item-title {
    font-weight: 400;
    font-size: 2rem;
    border-bottom: 1px dotted rgba(var(--primary-color), 0.4);
    margin-bottom: 5px;
    padding-bottom: 0.5rem;
    line-height: 1.1;
    text-align: left;
}

.item-small-title {
    font-weight: 400;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.1;
    color: rgb(var(--white-color));
    font-size: 2.3rem;
    padding-bottom: 0;
}

.menu-item .description {
    font-size: 1.6rem;
}

.menu-wrapper .easter {
    max-width: 15rem !important;
}

@media only screen and (max-width: 768px) {
    .menu-section .section-block {
        padding: 0 1.5rem 5rem;
    }

    .menu-section .col-wrapper {
        padding: 2rem;
    }

    .menu-wrapper {
        flex-wrap: wrap;
    }
}

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

    .menu-wrapper .menu-item,
    .menu-wrapper img {
        width: 100%;
    }
}

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

    .menu-wrapper {
        padding: 2rem 1rem 0;
    }
}

/* ==========================================================================
Undersida: Konferans
========================================================================== */

.section-conference .split-image {
    width: 30%;
}

.section-conference .split-wrapper {
    justify-content: space-evenly;
}
.section-conference-form .col-0{
    max-width: 70rem;
    margin: auto;
    background-color: rgb(var(--white-color));
    padding: 4rem;
}
.section-conference-form .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-conference-form .ContactForm div {
    width: 49%;
}
.section-conference-form .ContactFormField.textarea-field {
    width: 100%;
}
.section-conference-form .submit-button-container{
    margin: auto;
}

.section-conference-form .ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="date"]:not(.illegal){
    background-color: rgb(var(--gray-light-color));
    border: none;
}
.ContactForm input[type="text"].illegal,
.ContactForm input[type="email"]{
    background-color: #FFECEC;
    border: none;
}
@media only screen and (max-width:1100px) {
    .section-conference .split-image {
        width: 80%;
    }
    .section-conference-form .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Julmiddag
========================================================================== */
.video-wrapper {
    position: relative;
    width: 50%
}

/* Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    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 */
.LayoutPage .fancybox-video {
    display: none;
}

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

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

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

.section-contact .col-2{
    border: 2px solid rgb(var(--primary-color));
    padding: 4rem;
}
.section-contact .ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal){
    background-color: rgb(var(--gray-light-color));
}

.card-info {
    justify-content: center;
    margin-bottom: 40px;
}

.card-info-content {
    border: 2px solid rgb(var(--primary-color));
    border-radius: 10px;
}

.card-info-text {
    color: rgb(var(--primary-color));
    font-size: 2rem;

}

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

/* Formular
========================================================================== */
.ContactForm p {
    color: rgb(var(--black-color));
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.6rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
    border: none;
    background-color: #f5f5f5;
}

/* ==========================================================================
Undersida: galleri
========================================================================== */
.gallery-wrapper .card-item {
    max-height: 30rem;
}

@media only screen and (max-width: 1120px) {
    .gallery-wrapper .card-item {
        max-height: 30rem;
    }
}

@media only screen and (max-width: 1050px) {
    .gallery-wrapper .card-item {
        max-height: 25rem;
    }
}

@media only screen and (max-width: 850px) {
    .gallery-wrapper .card-item {
        max-height: 20rem;
    }
}

@media only screen and (max-width: 500px) {
    .gallery-wrapper .card-item {
        max-height: 18rem;
    }
}


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

.footer p,
.footer a,
.footer li {
    color: rgb(var(--white-color));
    font-weight: 300;
    font-size: 1.6rem;
    padding-bottom: .2em;
}

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

.footer-container {
    max-width: 160rem;
    padding: 0 2rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem 2rem;
}

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

.footer img {
    max-width: 100%;
    width: 16rem;
    margin-bottom: 2rem;
}

.footer .small-title {
    font-size: 1.8rem;
    letter-spacing: normal;
    color: rgb(var(--primary-color));
}

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

.footer .circle-icon {
    width: 3rem;
    height: 3rem;
    text-decoration: none;
    color: rgb(var(--black-color));
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
}

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

.footer a:hover .circle-icon {
    background-color: transparent;
    border-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
    text-decoration: none;
}

.social-list {
    display: flex;
    justify-content: center;
}

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

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

.footer-info {
    border: 5px solid rgb(var(--primary-color));
    padding: 10px;
}

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

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

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

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

    .footer-menu {
        width: 70%;
    }
}

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

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

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

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

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

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

    .footer-menu {
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}