/* Brunos korvbar */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 16, 17, 118;
    --primary-light-color: 27, 29, 176;
    --secondary-color: 51, 135, 176;
    --secondary-light-color: 61, 175, 204;

    --black-color: 34, 34, 34;
    --gray-dark-color: 130, 130, 130;
    --gray-color: 230, 230, 230;
    --gray-light-color: 248, 248, 248;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

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

/* Speciella paddings */
.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

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

/* Bredder */

/* Ovriga klasser */

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

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

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

/* Rubriker */
.text-label {
    padding-bottom: 2rem;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.section-title {
    padding-bottom: 2rem;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: "Zilla Slab", serif;
}

.small-title {
    padding-bottom: 2rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: "Zilla Slab", serif;
}

/* Brodtext och lankar */
p,
li,
a {
    color: rgb(var(--black-color));
    font-weight: 300;
    text-decoration: none;
}

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

/* Listor */
.ordered-list-primary li::marker {
    color: rgb(var(--primary-color));
    font-weight: 700;
    width: 2rem;
}

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

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

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

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

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

    /* Rubriker */
    .section-title {
        font-size: 4rem;
    }
}

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

    /* Rubriker */
    .section-title {
        font-size: 3.5rem;
    }
}

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 3rem;
    margin: 5px;
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: .6rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn a:hover {
    text-decoration: none;
}

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

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

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

.ContactSubmit,
.btn-primary-border {
    color: rgb(var(--primary-light-color));
    border: 2px solid rgb(var(--primary-color));
    background-color: transparent;
}

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

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

@media only screen and (max-width: 580px) {
    .btn-wrapper {
        margin-bottom: 2rem;
    }

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

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

.arrow-link::after {
    content: ' \f061';
    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;
}

/* Dropdown */
.dropdown-wrapper {
    position: relative;
}

.dropdown-wrapper.opened {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    top: 4rem;
    left: -1px;
    width: calc(100% + 2px);
    max-height: 50vh;
    background: rgb(var(--white-color));
    border-bottom-right-radius: .6rem;
    border-bottom-left-radius: .6rem;
    overflow: auto;
    box-shadow: rgb(var(--black-color), 0.1) 0px 10px 15px -3px, rgb(var(--black-color), 0.05) 0px 4px 6px -2px;
}

.dropdown-wrapper.opened .dropdown {
    display: block;
}

.dropdown a {
    padding: 17px 5px;
    transition: .3s ease;
}

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

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
.box-shadow {
    box-shadow: 0 .1rem 2rem rgba(0, 0, 0, 0.1);
}

.br-06 {
    border-radius: .6rem;
}

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

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

/* 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-sodermalm {
    background-image: url('/assets/images/kassa-sodermalm-2000px.jpg');
}

.parallax-ostermalm {
    background-image: url('/assets/images/brunoskorvbar-ostermalm-1000px.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;
}

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 1050px) {
    .card-2-1 .card-item {
        text-align: left;
    }
}

/* Card 3-5 */
.card-3-5 .card-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50rem;
}

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

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

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

.card-3-5 .card-body {
    z-index: 1;
    position: relative;
    text-align: center;
}

.card-3-5 .small-title {
    font-size: 4rem;
}

@media only screen and (max-width: 1000px) {
    .card-3-5 .card-item {
        min-height: 35rem;
    }

    .card-3-5 .small-title {
    font-size: 2.5rem;
}
}

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

/* Speciella hojder */

/* Speciella bredder */
.split-wrapper .w-40 {
    width: 40%
}

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

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

@media screen and (max-width: 1100px) {
    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column-reverse;
    }

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

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

    .split-wrapper .w-40 {
        width: 100%;
    }

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

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

header .container {
    max-width: 100%;
}

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

.header-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.text-logo {
    display: inline-block;
    width: 21rem;
    font-family: "Zilla Slab", serif;
    color: rgb(var(--primary-color));
    font-size: 3rem;
    font-weight: 600;
}

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

/* Nav */
.TemplateMenu a {
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: .02em;
    padding: 0 1.2rem;
}

/* Nav - drop-down */
.TemplateMenu>li>ul {
    left: 0;
    width: 12rem;
    border-bottom-right-radius: .6rem;
    border-bottom-left-radius: .6rem;
    box-shadow: rgb(var(--black-color), 0.1) 0px 10px 15px -3px, rgb(var(--black-color), 0.05) 0px 4px 6px -2px;
}

.TemplateMenu>li>ul a {
    text-align: center;
}

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

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

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

/* Mobilmeny */
header.mobile-menu .mainmenu {
    text-align: center;
}

header.mobile-menu .TemplateMenu li {
    padding-left: 0;
}

header.mobile-menu .TemplateMenu li a {
    font-size: 3rem;
    font-weight: 500;
    line-height: 2.5;
    font-family: 'Zilla Slab', sans-serif;
}

header.mobile-menu .TemplateMenu>li>ul {
    box-shadow: none;
}

header.mobile-menu .TemplateMenu ul li a {
    font-size: 2rem;
}

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

    .header-logo {
        flex: 0 0 auto;
    }
}

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

    /* CTA */
    .header-cta-wrapper .btn {
        padding: 1rem;
        font-size: 1.3rem;
        margin: 0;
    }
}

@media only screen and (max-width: 420px) {
    .header-cta-wrapper li:nth-child(2) {
        display: none;
    }
}

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

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

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

.top-section .text-block-center {
    max-width: 90rem;
}

/* Omraden
========================================================================== */
.section-areas .cards-wrapper {
    position: relative;
    margin-top: -7rem;
    border-radius: 1rem;
}

@media only screen and (max-width: 1000px) {
    .section-areas .cards-wrapper {
        transform: translateY(-5rem);
        margin-top: -5rem;
    }
}

@media only screen and (max-width: 750px) {
    .section-areas .cards-wrapper {
        padding-top: 0;
    }
}

/* Om oss
========================================================================== */
.section-about {
    position: relative;
    overflow: visible;
}

/* Sticky certificate */
.certification-wrapper {
    position: absolute;
    top: 0;
    right: 2rem;
    transform: translateY(-55%);
    z-index: 2;
    padding: 1.5rem;
    transition: 0.4s ease-in-out;
}
#rest_white {
    cursor: default !important;
}

/* Section Iinstagram
========================================================================== */
.section-instagram{
overflow: hidden;
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 40rem;
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
}

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

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

/* ==========================================================================
Undersida: Vara enheter
========================================================================== */
@media only screen and (max-width: 1100px) {
    .section-units .split-wrapper.reverse {
        flex-direction: column;
    }

    .section-units .split-content {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Vara enheter --> omrade
========================================================================== */
@media only screen and (max-width: 1100px) {
    .section-intro-unit .split-wrapper.reverse {
        flex-direction: column;
    }
}

/* Meny
========================================================================== */
/* Tab */
.section-menu .tab-container {
    position: relative;
    margin-top: -15rem;
    border-radius: 1rem;
    padding: 5rem 7rem;
    background-color: rgb(var(--white-color));
    box-shadow: 0 .1rem 2rem rgba(0, 0, 0, 0.1);
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}

/* Tabbarna */
.tabs-wrapper {
    margin-bottom: 5rem;
}

.tab {
    display: inline-block;
    padding: 1rem 2rem;
    color: rgb(var(--gray-dark-color));
    font-size: 2.1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Zilla Slab', sans-serif;
}

.tab-active {
    color: rgb(var(--primary-color));
}

.tabs-wrapper p {
    font-family: 'Zilla Slab', sans-serif;
}

/* Innehåll */
.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab-col {
    width: calc((100% / 2) - 2rem);
}

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

.tab-item .small-title {
    display: flex;
    padding-bottom: .5rem;
    margin-bottom: 1rem;
    font-size: 1.9rem;
    font-family: 'Zilla Slab', sans-serif;
    color: rgb(var(--primary-color));
    font-size: 2rem;
    line-height: 1.1;
    border-bottom: 2px solid rgb(var(--gray-color));
}

.tab-item .description {
    font-size: 1.4rem;
}


@media only screen and (max-width:750px) {
    .section-menu .tab-container {
        padding: 3rem;
    }

    .tab-container .text-center {
        text-align: left;
    }

    .tabs-list .tab {
        font-size: 1.7rem;
        padding: 1rem;
    }

    .tab-col {
        width: 100%;
    }
}

@media only screen and (max-width:580px) {
    .section-menu .tab-container {
        padding: 3rem 2rem;
        margin-top: -5rem;
    }
}

/* ==========================================================================
Undersida: Catering
========================================================================== */
@media only screen and (max-width: 980px) {
    .section-catering .py-10 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
/* Formular */
.section-contact .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.section-contact .ContactForm p {
    color: rgb(var(--primary-color));
}

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

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    border-radius: .6rem;
}

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

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

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

.footer-menu.socials {
    align-self: flex-end;
}

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

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

.footer .text-label {
    color: rgb(var(--primary-color));
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.9rem;
    font-weight: 600;
}

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

.footer li,
.footer p,
.footer a:not(.circle-icon) {
    text-decoration: none;
    transition: .2s ease;
    font-size: 1.4rem;
}

.footer a:not(.circle-icon):hover {
    color: rgb(var(--primary-color));
    text-decoration: underline;
}

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

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

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

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

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

    .footer-menu {
        width: 33.333%;
    }

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

@media only screen and (max-width: 750px) {
    .footer-menu,
    .footer-mnu-large,
    .socials {
        width: 100%;
    }

    .socials ul {
        display: flex;
    }

}

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

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

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