/* Swedish Taco AB */

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');

/* Typsnitt */
@import url("https://use.typekit.net/ner2fpi.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 236, 185, 65;
    --secondary-color: 0, 46, 94;

    --black-color: 0, 0, 0;
    --gray-dark-color: 51, 51, 51;
    --gray-color: 130, 130, 130;
    --gray-light-color: 239, 238, 236;
    --white-color: 255, 255, 255;

    --accent-red-color: 246, 53, 41;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 140rem;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1380;
    --mobile-menu-height: 8rem;
    --mobile-menu-bg: var(--gray-light-color);
    --menu-color: var(--primary-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
.section-block {
    padding: 8rem 5rem;
}

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

.pt-5 .section-block,
.pt-5:not(.section-wrapper) {
    padding-top: 5rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}
.pl-0{
    padding-left: 0 !important;
}

/* Margins */
.m-auto {
    margin: auto;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}

/* Bredder */
.mw-500 {
    max-width: 50rem;
}

.mw-900 .section-block-wrapper {
    max-width: 90rem;
}

.mw-800 .section-block-wrapper {
    max-width: 80rem;
}

.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

/* Ovriga */
.display-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

@media only screen and (max-width: 480px) {
    .display-flex {
        flex-direction: column;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Sofia-Pro', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(var(--secondary-color));
}

.section-title {
    padding-bottom: .5em;
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

a {
    color: rgb(var(--primary-color));
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Listor */

/* List-check */
.list-check {
    padding: 0;
    list-style: none;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}
/* 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;
    border-bottom: 1px dotted rgb(var(--white-color));
}

.list-properties li span {
    padding: 0 .5rem;
}
/* Ovriga klasser */
.ingress {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.text-bold {
    font-weight: 700;
}

.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: 3rem;
    }

    .text-label {
        font-size: 1.4rem;
    }

    .ingress {
        line-height: 1.5;
    }

    p,
    li {
        line-height: 1.5;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    margin-top: 2rem;
}

.btn-wrapper.center {
    text-align: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.7rem 4rem 1.7rem 3.5rem;
    margin: 7px;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.4;
    border-radius: 4rem;
    text-align: center;
    text-decoration: none;
    transition: all .5s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn span,
.ContactSubmit span {
    display: inline-block;
    transform: translateX(-8px);
    transition: all .3s ease;
}

.btn:hover span,
.ContactSubmit:hover span {
    transform: translateX(8px);
    transition: all .3s ease;
}

.btn::before,
.ContactSubmit::before,
.btn::after,
.ContactSubmit::after {
    position: relative;
    display: inline-block;
}

.btn::before,
.ContactSubmit::before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    content: '\f0da';
    transform: translateX(-30px);
    opacity: 0;
    transition: all .5s ease;
}

.btn::after,
.ContactSubmit::after {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    content: '\f0da';
    margin-left: .5rem;
    transform: translateX(8px);
    opacity: 1;
    transition: all .5s ease;
}

.btn:hover::before,
.ContactSubmit:hover::before {
    transform: translateX(-8px);
    opacity: 1;
}

.btn:hover::after,
.ContactSubmit:hover::after {
    transform: translateX(30px);
    opacity: 0;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--gray-dark-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-dark-gray-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--gray-dark-color));
    background-color: rgb(var(--gray-dark-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: calc(var(--base-size) - .2rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.arrow-link:hover {
    text-decoration: none;
}

.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(--gray-dark-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(--gray-dark-color));
    text-decoration: none;
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: 1.7rem;
}

@media only screen and (max-width: 580px) {
    .btn {
        display: block;
        width: 100%;
        margin: .8rem 0;
    }
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-gray-dark {
    background-color: rgb(var(--gray-dark-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

.bg-white {
    background-color: rgb(var(--white-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

.text-secondary {
    color: rgb(var(--secondary-color));
}

.text-red {
    color: rgb(var(--accent-red-color));
}

.text-outline {
    font-weight: 900;
    color: rgb(var(--primary-color));
    -webkit-text-stroke: 3px rgb(var(--secondary-color));
}

@media only screen and (max-width: 580px) {
    .text-outline {
        -webkit-text-stroke: 2px rgb(var(--secondary-color));
    }
}

/* Grafiska element
========================================================================== */
/* Box shadow */
.box-shadow {
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, .3);
}

/* Borders */
.border-bottom-primary {
    border-bottom: 1px solid rgb(var(--primary-color));
    margin-bottom: 1rem;
}

.border-bottom-black {
    border-bottom: 1px solid rgb(var(--black-color), .1);
}

.br-1 {
    border-radius: 1rem;
}

/* Ram inuti */
.outline-primary {
    outline: 1px solid rgb(var(--primary-color));
    outline-offset: -1rem;
}

/* Object positions */
.of-wrapper .op-15-50 {
    object-position: 15% 50%;
}

.of-wrapper .op-top {
    object-position: top center;
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    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;
}

/* Bakgrundsbilder */
.bg-stroke-1,
.bg-stroke-2,
.bg-stroke-black-1,
.bg-stroke-black-2 {
    position: relative;
}

.bg-stroke-1::before,
.bg-stroke-2::before,
.bg-stroke-black-1::before,
.bg-stroke-black-2::before {
    content: '';
    display: block;
    position: absolute;
    height: 10vw;
    width: 100%;
    background-size: cover;
    background-position: center top;
}

.bg-stroke-1::before {
    bottom: 0;
    background-image: url(/assets/images/graphics/stroke-1.svg);
}

.bg-stroke-2::before {
    top: 0;
    background-image: url(/assets/images/graphics/stroke-2.svg);
}

.bg-stroke-black-1::before {
    bottom: 0;
    background-image: url(/assets/images/graphics/stroke-black-1.svg);
}

.bg-stroke-black-2::before {
    top: 0;
    background-image: url(/assets/images/graphics/stroke-black-2.svg);
}

/* Parallax
========================================================================== */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 65rem;
}

/* Bilder */
.parallax-tacobricka {
    background-image: url('/assets/images/tacobricka-parallax-2000px.jpg');
}

.parallax-foodtruck {
    background-image: url('/assets/images/swedish-taco-truck-2000px.jpg');
}

.parallax-team {
    background-image: url('/assets/images/swedish-taco-staff-2000px.jpg');
    background-position: top;
}

.parallax-team .section-block {
    background-color: rgb(var(--black-color), .7);
    min-height: 45rem;
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

@media only screen and (max-width: 750px) {
    .parallax .section-block {
        min-height: 45rem;
    }
}

/* 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;
}

.cards-wrapper.w-100 .card-item {
    width: 100% !important;
    margin: 1rem 0;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

/* Generellt */
a.card-item {
    text-decoration: none;
    transition: .3s ease;
}

@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) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

    .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;
    }
}
/* Card 1-1 */
.card-1-1 a:hover {
    background-color: rgb(var(--secondary-color));
}

.card-1-1 .card-body i {
    font-size: 2rem;
    padding-bottom: 1.5rem;
}

/* Card 1-2 */
.card-1-2 {
    margin: 3rem 0;
}

.card-1-2 .card-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 4rem 3rem;
    border-radius: 2rem;
}

.card-1-2 .card-item::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 3rem;
    top: -5rem;
    width: 20rem;
    height: 20rem;
    background-image: url(/assets/images/graphics/quote-sign.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: .3;
}

@media only screen and (max-width: 480px) {
    .card-1-2 {
        margin: 1rem 0;
    }
}

/* Card 3-1 */
.card-3-1 .card-item {
    border-radius: 1rem;
}

.card-3-1 .image-wrapper {
    border-radius: 1rem 1rem 0 0;
}

.card-3-1 .image-wrapper img {
    object-position: top center;
}
/* Card 3-2 */
.cards-wrapper.card-3-2 .card-item {
    margin-top: 5rem;
    border-radius: 0.5rem;
}

.card-3-2 .image-wrapper {
    display: inline-block;
    max-width: 20rem;
    height: 20rem;
}
/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 7rem;
}

.full-width .split-content {
    padding: 8rem;
}

.split-image {
    width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

/* Rund bild */
.split-image.round img {
    border-radius: 50%;
    padding: 5rem;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }

    .full-width .split-content {
        padding: 5rem;
    }
}

@media screen and (max-width: 1000px) {

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column-reverse;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 3rem 0 5rem;
    }

    .full-width .split-content {
        padding: 5rem 2rem;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }

    /* Centrera content */
    .split-wrapper .align-center {
        align-self: flex-start;
    }
}

@media screen and (max-width: 580px) {
    .split-image.round img {
        padding: 0;
    }
    .split-content {
        padding:  2rem;
    }
}

/* Modal
========================================================================== */
.modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
}

.blocker {
    z-index: 100;
}

.modal a.close-modal {
    top: 2rem;
    right: 2rem;
}

@media only screen and (max-width: 450px) {
    .modal {
        padding: 3rem 2rem;
    }

    .blocker {
        padding: 1rem;
    }
}

/* Modal formular */
body:not(.EditMode) .section-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-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 70rem;
    max-height: 95vh;
    padding: 4rem;
    border-radius: 0;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%, -50%);
}

.section-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
}

/* Formular */
.section-modal .ContactForm {
    max-width: 70rem;
    margin: 0 auto;
}

@media only screen and (max-width: 520px) {
    .section-modal .ContactForm {
        flex-wrap: wrap;
    }

    .section-modal .ContactForm div.ContactFormEmail {
        width: 100%;
    }

    .section-modal .ContactForm div.ContactFormEmail input {
        height: 100%;
        padding: 1.5rem 1.5rem;
        border-radius: 1.5rem 1.5rem 0 0;
    }

    /* Knapp */
    .section-modal .submit-button-container {
        width: 100%;
    }

    .section-modal .ContactForm .ContactSubmit {
        width: 100%;
        padding: 1.5rem 0;
        border-radius: 0 0 1.5rem 1.5rem;
    }
}

@media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-modal .section-block {
        padding: 3rem 2rem;
    }
}


/* Header / Navigation
========================================================================== */
/* Dolj hem */
body:not(.EditMode) header .TemplateMenu>li:nth-child(1) {
    display: none;
}

/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/35/meny/"] {
    pointer-events: none;
}

header {
    background-color: rgb(var(--gray-dark-color));
    padding: 0 2rem 0 5rem;
}

header .container {
    max-width: none;
}

/* Logo */
.header-logo {
    min-width: 16rem;
}

header:not(.active-menu) .header-logo img,
.IndexPage header:not(.active-menu) .header-logo img,
.SubPage header:not(.active-menu) .header-logo img,
header:not(.active-menu) .mobile-menu .header-logo img,
header:not(.active-menu) .mobile-menu.scrolled .header-logo img {
    position: absolute;
    top: 0rem;
    max-height: 16rem;
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

header:not(.mobile-menu) .TemplateMenu a {
    color: rgb(var(--primary-color));
}

header:not(.mobile-menu) .TemplateMenu a:hover {
    color: rgb(var(--white-color));
}

.TemplateMenu ul {
    background: rgb(var(--gray-dark-color));
    padding: 1rem 1rem 1rem 0;
    width: unset;
    white-space: nowrap;
}

.TemplateMenu>li>ul>li>ul {
    top: 0;
    right: unset;
    left: 100%;
}

.mainmenu {
    margin: auto;
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: 15rem;
    padding: 1.2rem 3rem;
    margin: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.4;
    border-radius: 4rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

/* Mobile */
.mobile-menu .container {
    justify-content: normal;
}

.mobile-menu .header-cta-wrapper {
    margin: 0 0 0 auto;
}

.mobile-menu .TemplateMenu ul {
    background: rgb(var(--gray-light-color));
    padding: 0;
}

.mobile-menu .TemplateMenu .expandable-li ul a {
    font-size: 1.3rem;
}

header.active-menu {
    padding: 0 2rem;
}

@media only screen and (max-width: 980px) {
    header {
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 580px) {
    header .header-logo {
        min-width: 9rem;
    }

    header:not(.active-menu) .header-logo img,
    .IndexPage header:not(.active-menu) .header-logo img,
    .SubPage header:not(.active-menu) .header-logo img,
    header:not(.active-menu) .mobile-menu .header-logo img,
    header:not(.active-menu) .mobile-menu.scrolled .header-logo img {
        position: relative;
        top: 0rem;
        max-height: 8rem;
    }

    /* CTA  */
    .header-cta-wrapper .btn {
        font-size: 1.2rem;
        letter-spacing: .1em;
        padding: 1rem 2rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section .section-block {
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: 92vh;
    background-color: rgb(var(--white-color), .2);
    padding-bottom: 20rem;
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section .text-block-center {
    max-width: 90rem;
}

.top-section .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 7.5rem;
    font-weight: 600;
    padding-bottom: 0;
}

.top-section .small-title {
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    font-weight: 600;
}

.top-section .btn-wrapper {
    margin-top: 3rem;
}

@media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-block {
        min-height: 82vh;
        padding-bottom: 5rem;
    }

    .top-section .section-title {
        font-size: 4.5rem;
    }

    .top-section .small-title {
        font-size: 3rem;
    }
}

/* Var meny
========================================================================== */
.section-offer .section-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-offer .logo-wrapper {
    display: flex;
    justify-content: end;
    height: 10rem;
}

.section-offer .logo-wrapper img {
    position: absolute;
    right: 3rem;
    max-width: 10vw;
    transform: rotate(20deg);
}

@media only screen and (max-width: 1000px) {
    .section-offer .logo-wrapper img {
        max-width: 18vw;
    }
}

@media only screen and (max-width: 580px) {
    .section-offer .logo-wrapper {
        height: 7rem;
    }

    .section-offer .section-block {
        padding-top: 2rem
    }
}

/* Om oss
========================================================================== */
body:not(.EditMode) .section-about .split-wrapper {
    position: relative;
    margin-top: -20rem;
}

@media screen and (max-width: 1100px) {
    .section-about .split-wrapper {
        flex-direction: column;
        background: rgb(var(--white-color));
    }

    .section-about .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 3rem;
    }

    .section-about .split-image {
        width: 100%;
    }

    /* Centrera content */
    .section-about .split-wrapper .align-center {
        align-self: flex-start;
    }
}

/* Quotes
========================================================================== */
.slick-quotes i {
    font-size: 2.3rem;
    margin: 0 .5rem;
}

.slick-quotes .slick-dots {
    padding: 0;
}

@media only screen and (max-width: 580px) {
    .section-quotes .section-block {
        padding: 0 0 5rem;
    }
}

/* Instagram
========================================================================== */
.section-instagram div {
    overflow: hidden;
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 92vh;
    text-align: center;
    background-color: rgb(var(--black-color), .6);
}

.hero.small .section-block {
    min-height: 35vh;
    padding-bottom: 15rem;
}

.hero .section-block-wrapper {
    width: 100%;
}

.hero .section-title {
    font-size: 5.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 1.5rem;
}

.hero .small-title {
    font-size: 3rem;
    font-weight: 700;
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 85vh;
    }

    .hero .section-title {
        font-size: 4rem;
    }

    .hero.small .section-block {
        min-height: 35vh;
        padding-bottom: 5rem;
    }
}

/* ==========================================================================
Undersida: Meny - utkast
========================================================================== */
.section-menu .col-0 {
    width: 20%;
    height: 100%;
    position: sticky;
    top: calc(var(--menu-height-scrolled) * 2.5);
    z-index: 2;
}

.section-menu .col-1 {
    width: 80%;
}

.section-menu.full .col-0{
    width: 100% !important;
}

.section-menu .section-title {
    text-transform: uppercase;
}

/* Sok */
.search-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.search-wrapper em {
    position: absolute;
    left: 2rem;
    top: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
}

.search-wrapper input {
    width: 100%;
    height: 4rem;
    padding: 0 2rem 0 5rem;
    border: none;
    border-radius: 5rem;
    box-shadow: 1px 1px 5px rgb(var(--black-color), .2);
    transition: .5s ease;
}

.search-wrapper input:focus {
    outline: unset;
}

.card-item.hidden-search-item,
.category-wrapper.hidden-search-item {
    display: none;
}

/* Meny-navigering */
.category-menu {
    border-radius: 1rem;
    padding: 3rem;
}

.category-menu:after {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 5rem);
    background-image: url(/assets/images/swedish-taco-logo.png);
    background-size: 60%;
    background-position: 80% 30%;
    background-repeat: no-repeat;
    opacity: .15;
}

.list-category {
    position: relative;
    z-index: 2;
    padding-left: 1rem;
    margin: 0;
}

.list-category a:hover {
    text-decoration: none;
    color: rgb(var(--white-color));
}

/* Meny-kort */
.section-menu .category-wrapper:not(:last-child) {
    padding-bottom: 3rem;
}

.section-menu .card-3-1 .card-item {
    flex-direction: row-reverse;
}

.section-menu .card-3-1 .image-wrapper {
    width: 40%;
    border-radius: 0 1rem 1rem 0;
}

.section-menu .card-3-1 .card-body {
    width: 60%;
}

@media only screen and (max-width: 1200px) {
    .section-menu .section-block {
        padding-left: 0;
    }

    .section-menu .category-menu {
        padding: 3rem 2rem 3rem 1rem;
        border-radius: 0 1rem 1rem 0;
    }

    .section-menu .cards-wrapper.w-50 .card-item {
        width: 100%;
    }
}

@media (min-width: 1000px) {
    .section-menu .card-3-1 .card-item.taco {
      flex-direction: column !important;
    }
  
    .section-menu .card-3-1 .card-item.taco .image-wrapper {
      width: 100% !important;
      border-radius: 0 !important;
      order: 2;
    }
  
    .section-menu .card-3-1 .card-item.taco .card-body {
      width: 100% !important;
      order: 1;
    }
  }

@media only screen and (max-width: 980px) {
    .section-menu .section-block {
        padding-left: 2rem;
    }

    .section-menu .col-0 {
        width: 100%;
        position: relative;
        top: 0;
        padding-bottom: 5rem;
    }

    .section-menu .category-menu {
        padding: 3rem 2rem;
        border-radius: 1rem;
    }

    .category-menu:after {
        display: block;
    }

    .section-menu .col-1 {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .search-wrapper {
        display: none;
    }

    .section-menu .card-3-1 .card-body {
        padding: 1.5rem;
    }

    .section-menu .card-3-1 .card-body p {
        font-size: calc(var(--base-size)* .8);
    }
}

/* ==========================================================================
Undersida: Boka bord
========================================================================== */
.section-scroll {
    overflow: hidden;
}

.section-scroll .section-block-wrapper {
    max-width: 100rem;
}

.section-scroll .text-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 2rem;
}

.section-scroll .section-title {
    padding-bottom: 1rem;
}

.section-scroll .btn-wrapper {
    margin: 0 0 0 2rem;
}

/* Slick Settings */
.gallery-slider .image-wrapper {
    height: 50rem;
}

.gallery-slider .slick-slide {
    margin: 0 1rem;
    border-radius: 3px;
}

.gallery-slider .slick-list {
    overflow: visible;
    width: 100%;
}

.gallery-slider .slick-list,
.gallery-slider .slick-track {
    height: 100%;
}

.gallery-slider .slick-dots {
    position: absolute;
    bottom: 1rem;
    left: 3rem;
    width: auto;
    padding: 0;
    margin: 0;
    background-color: rgb(var(--white-color));
    border-radius: 2rem;
}

.slick-dots li.slick-active button:before,
.gallery-slider .slick-dots li.slick-active::before {
    opacity: 1;
    color: rgb(var(--primary-color));
    transition: all .2s ease;
}

@media only screen and (max-width: 980px) {
    .gallery-slider .slick-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 580px) {
    .gallery-slider .image-wrapper {
        height: 25rem;
    }
}

@media only screen and (max-width: 480px) {
    .section-scroll .btn-wrapper {
        width: 100%;
        margin: 0;
    }
}

/* ==========================================================================
Undersida: Bordsbokning
========================================================================== */
.section-booking .section-title {
    font-size: 5.5rem;
    padding-bottom: 0;
}

@media only screen and (max-width: 580px) {
    .section-booking .section-title {
        font-size: 4rem;
    }
}

/* ==========================================================================
Undersida: Food truck
========================================================================== */
.section-foodtruck .section-block {
    padding: 5rem 2rem 0;
}

.steps-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.steps-outer {
    display: flex;
    width: calc(40% - 1rem);
    margin-bottom: 2rem;
}

.steps-outer:nth-child(1) {
    width: calc(60% - 1rem);
}

.steps-outer:nth-child(3) {
    width: calc(40% - 1rem);
}

.steps-outer:nth-child(4) {
    width: calc(60% - 1rem);
}

.steps-card {
    width: 100%;
    padding: 0 4rem 4rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background-color: rgb(var(--white-color));
    border-radius: 5px;
    transition: all .25s ease;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 5%);
}

.steps-card:hover {
    text-decoration: none;
}

.steps-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 3rem;
    padding: 3rem 2rem 2rem;
    z-index: 1;
    position: relative;
    border-radius: 0 0 1rem 1rem;
    background-color: rgb(var(--primary-color));
}

.steps-icon {
    font-size: 3rem;
    color: rgb(var(--white-color));
}

.steps-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 1.2em;
    color: #111;
}

@media only screen and (max-width: 900px) {

    .steps-outer,
    .steps-outer:nth-child(1),
    .steps-outer:nth-child(3),
    .steps-outer:nth-child(4) {
        width: 100%;
    }

    .section-steps .section-block {
        padding-bottom: 3rem;
    }
}

@media only screen and (max-width: 590px) {
    .steps-card {
        padding: 0 2rem 2rem;
    }
}

/* ==========================================================================
Undersida: Catering Goteborg
========================================================================== */
.section-catering .section-block {
    padding-top: 5rem;
}

@media only screen and (max-width: 1000px) {
    .section-catering .split-wrapper {
        flex-direction: column;
    }
}

@media only screen and (max-width: 590px) {
    .section-catering .section-block {
        padding-top: 0;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-title {
    font-size: 5.5rem;
}

@media only screen and (max-width: 580px) {
    .section-contact .section-title {
        font-size: 4rem;
    }
}

/* ==========================================================================
Undersida: Nyheter
========================================================================== */
.section-news .section-block-wrapper {
    max-width: 160rem;
}

/* ==========================================================================
Undersida: Jobbansökan 
========================================================================== */
.section-application .col-0 {
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, .1);
}

.section-application .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(var(--white-color));
    padding: 3rem;
}

.section-application .ContactForm .text-field {
    width: 49%;
}

.section-application .ContactForm div {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .section-application .ContactForm .text-area {
        width: 100%;
    }

    .section-application .ContactForm {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Boka bord 
========================================================================== */
.section-booking .col-0 {
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, .1);
}

.section-booking .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(var(--white-color));
    padding: 3rem;
}

.section-booking .ContactForm .w-100 {
    width: 100%;
}

.section-booking .ContactForm>div {
    width: 49%;
}

.section-booking .ContactForm .ContactFormField.datetime-field,
.section-booking .ContactForm .ContactFormField.textarea-field,
.section-booking .ContactForm .submit-button-container {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .section-booking .ContactForm>div {
        width: 100%;
    }

    .section-booking .ContactForm {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
@media only screen and (max-width: 580px) {
    .section-concept .text-center {
        text-align: left;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--gray-dark-color));
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 4rem;
}

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

.footer-menu-large {
    width: 30%;
}

.footer .text-label {
    font-size: 1.8rem;
    padding: 0 0 2rem;
    font-weight: 500;
    line-height: 1;
    color: rgb(var(--primary-color));
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 300;
    color: rgb(var(--white-color));
}

.footer a:not(.circle-icon):hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

.footer-menu.socials .footer-submenu {
    display: flex;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgb(var(--white-color));
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
    filter: invert();
}

@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 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}