/*  KL Swedish Trading AB (RoyalFoods) */

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css');

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

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

    /* 	Colors */
    --primary-color: 25, 86, 125;
    --secondary-color: 5, 30, 60;

    --black-color: 0, 0, 0;
    --gray-dark-color: 50, 50, 50;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

    --accent-orange-color: 229, 141, 69;

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

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

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

/* Sprak, tex header-cta-wrapper
- Anvand lang-en for allt som endast ska synas på engelska sidan
- Anvand lang-se for lölt som endast ska synas på svenska sidan
========================================================================== */
body.en .lang-se,
body:not(.en) .lang-en {
    display: none;
}

/* Layout
========================================================================== */
.section-block {
    padding: 12rem 4rem;
}

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

.py-0 .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

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

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

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

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

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

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

.pl-3 {
    padding-left: 3rem;
}

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

.mt-5 {
    margin-top: 5rem;
}

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

.mb-0 {
    margin-bottom: 0;
}


.ml-auto {
    margin-left: auto;
}

.mr-1 {
    margin-right: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

.w-10 {
    width: 10rem;
}

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

.inline-block {
    display: inline-block;
}

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

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

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

/* Rubriker */
.text-label {
    padding-bottom: 1rem;
    font-size: 3rem;
    font-weight: 400;
    font-family: 'Dancing Script', cursive;
    color: rgb(var(--accent-orange-color));
}

.section-title {
    padding-bottom: 1.5rem;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--secondary-color));
    font-family: 'Raleway', sans-serif;
}

.small-title {
    padding-bottom: 1rem;
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    color: rgb(var(--accent-orange-color));
}

/* Brodtext och lankar */

a {
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

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

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

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

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

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

.text-italic {
    font-family: 'Dancing Script', cursive;
    font-size: 7rem;
}

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

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

    .text-italic {
        font-size: 5rem;
    }
}

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

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

    .text-italic {
        font-size: 4rem;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 20rem;
    padding: 1.5rem 3rem;
    margin: .5rem;
    font-weight: 500;
    font-size: 1.4rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

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

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

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

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 500;
}

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

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

/* Pil effekt */
.btn-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.btn-arrow::before,
.btn-arrow::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-size: 1.6rem;
    font-family: 'Font Awesome 5 Pro';
    line-height: 1em;
    transition: all .4s ease;
}

.btn-arrow::before {
    position: absolute;
    right: 3rem;
    opacity: 0;
}

.btn-arrow:hover:before,
a.card-item:hover .btn-arrow::before {
    right: 0;
    opacity: 1;
    transition: all .4s ease;
}

.btn-arrow:hover::after,
a.card-item:hover .btn-arrow::after {
    transform: translateX(1rem);
    transition: all .4s ease;
    opacity: 0;
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}

/* Lank med ikon */
.icon-links {
    padding: 12px 22px;
    font-size: 1.6rem;
    color: rgb(var(--white-color));
    line-height: 1;
    border-radius: 2rem;
    text-decoration: none;
    transition: all .3s ease;
    background-color: rgb(var(--primary-color));
}

.icon-links:hover {
    background-color: transparent;
}

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

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

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

.bg-gradient-primarylight-white {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 50%, rgb(var(--primary-color), 0.2) 50%);
}

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

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

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

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

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

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

.gradient-white-secondary {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 30%, rgb(var(--secondary-color)) 30%);
}

.bg-gradient-white-gray-light {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 30%, rgb(var(--gray-light-color)) 30%);
}

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

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));

}

.bg-video-wrapper video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.bg-video-wrapper-50 video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 60%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.bg-video-wrapper-80 video {
    top: 80%;
}

.bg-video-wrapper-90 video {
    top: 90%;
}

@media screen and (max-width: 1000px) {
    .bg-video-wrapper-50 video {
        width: 100%;
    }
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

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


/* Crossfade */
.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

/* Grafiska delar
========================================================================== */
.border-left-primary {
    border-left: .5rem solid rgb(var(--accent-orange-color));
}

@media screen and (max-width: 580px) {
    .border-left-primary {
        border-left: .5rem solid rgb(var(--primary-color));
    }
}

.border-white {
    border: .5rem solid rgb(var(--white-color));
}

/* Box shadow */
.box-shadow {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 5%);
}

/* Border radius */
.br-1 {
    border-radius: 1rem;
}

/* Badge */
.badge-wrapper {
    position: relative;
}

.badge {
    position: absolute;
    top: 1rem;
    left: -1rem;
    min-width: 10rem;
    padding: .5rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0 .5rem .5rem 0;
    color: rgb(var(--white-color));
    background: rgb(var(--accent-orange-color));
}


.offset-white {
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

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


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

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

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

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

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

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

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

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

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

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

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

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

/* Cards 2 */
.cards-2 .card-item {
    padding: 4rem;
    border-radius: 5rem;
    transition: 0.2s ease-in-out;
}

.cards-2 a.card-item {
    cursor: pointer;
}

.cards-2 .icon-wrapper {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cards-2 .icon-wrapper i {
    font-size: 6.5rem;
}

.cards-2 .fad::after {
    color: rgb(var(--accent-orange-color));
}

/* Cards 7 */
.cards-7 .card-item {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    background-color: rgb(var(--white-color));
    border-bottom: 3px solid rgb(var(--primary-color));
}

.cards-7 .image-wrapper {
    position: relative;
    padding-top: 50%;
    overflow: hidden;
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

.cards-7 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

.cards-7 .text-wrapper {
    padding: 2rem 2rem 1rem;
}

.cards-7 .small-title {
    padding: 0 0 5px;
}

.cards-7 .btn-wrapper {
    margin: auto 0 0;
    padding: 0 2rem 2rem;
}

.cards-7 .title-wrapper {
    display: flex;
    align-items: flex-end;
    flex: 1 1 0px;
    padding: 2rem;
}

.cards-7 .title-wrapper .section-title {
    padding: 0;
    line-height: 1.2;
}

/* Cards 8 */
.cards-8 .card-item {
    z-index: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1rem;
    border-radius: 3px;
    overflow: hidden;
    background-color: rgb(var(--white-color));
    border-bottom: 3px solid rgb(var(--primary-color));
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    transition: all .3s ease;
}

.cards-8 .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35rem;
}

.cards-8 .image-wrapper img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}

.cards-8 .text-wrapper {
    flex-grow: 1;
    padding: 2rem 2rem 0;
}

.cards-8 .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    justify-content: space-between;
}

.cards-8.products .small-title {
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    padding: 0;
}

.cards-8 .btn-wrapper {
    padding: 0 2rem;
}

@media only screen and (max-width: 1024px) {
    .cards-8 .image-wrapper {
        height: 20rem;
    }
}

@media only screen and (max-width: 550px) {
    .cards-8 .small-title {
        font-size: 2rem;
    }
}

/* Cards 14 */
.cards-14 .card-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease;
    padding: 1rem 0;
}

.cards-14 a.card-item:hover {
    text-decoration: none;
    background-color: rgba(var(--black-color), 0.1);
    transition: all .3s ease;
}

.cards-14 i {
    width: 5rem;
    margin-right: 1rem;
    font-size: 3rem;
}

.cards-14 p {
    padding-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.cards-14 .contact-info,
.cards-14 .contact-info a {
    font-size: 1.4rem;
    font-weight: 400;
}

.cards-14 .text-label {
    font-size: 1.8rem;
}

@media only screen and (max-width: 550px) {
    .cards-14 i {
        width: 4rem;
    }
}

/* Cards 15 */
.cards-15 .card-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 35rem;
    border-radius: 3px;
    overflow: hidden;
}

.cards-15 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cards-15:not(.w-25) .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .2);
    transition: .3s ease;
}

.cards-15 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .4);
}

.cards-15 .text-wrapper {
    z-index: 1;
    position: relative;
    min-width: 50%;
    padding: 1.5rem 2rem 0.5rem;
    border-radius: 0 3px 0 0;
    background-color: rgb(var(--white-color));
}

.cards-15 .small-title {
    font-size: 2rem;
}

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

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

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

.split-image {
    width: 50%;
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

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

.split-image.mt--5 {
    margin-top: -5rem;
}

.split-wrapper .align-end {
    align-self: flex-end;
}

/* Ruta bakom text */
.split-content.box-gray-light {
    position: relative;
    margin-top: 5rem;
}

.box-gray-light .split-text {
    z-index: 1;
    position: relative;
}

.split-content.box-gray-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 80%);
    height: calc(100% + 5rem);
    background: rgb(var(--gray-light-color));
}

.split-wrapper.reverse .split-content.box-gray-light::after {
    left: -80%;
}


@media screen and (max-width: 1100px) {
    .split-image.mt--5 {
        margin-top: 0rem;
    }

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

    .split-content.full {
        padding: 5rem 0 5rem;
    }

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

    /* Ruta bakom text */
    .split-content.box-gray-light {
        margin: 0;
    }

    .split-content.box-gray-light::after,
    .split-wrapper.reverse .split-content.box-gray-light::after {
        left: -2.5rem;
        width: calc(100% + 5rem);
        height: calc(100% + 5rem);
    }
}


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

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

    /* Ruta bakom text */
    .split-content.box-gray-light {
        padding: 2rem 0;
    }

    .split-content.box-gray-light::after,
    .split-wrapper.reverse .split-content.box-gray-light::after {
        left: -2rem;
        width: calc(100% + 4rem);
    }
}

/* Modal
========================================================================== */
.modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: none;
    overflow: auto;
}

.blocker {
    z-index: 100;
}

.modal a.close-modal {
    display: none;
}

.modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
}

@media only screen and (max-width: 450px) {
    .modal {
        padding: 3rem 2rem;
    }

    .blocker {
        padding: 1rem;
    }
}

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

header.scrolled {
    box-shadow: 0 1rem 3rem rgb(var(--black-color), 0.1);
}

header .container {
    max-width: none;
}

/* Top header */
.top-header {
    width: 100%;
    padding: .5rem 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
    text-align: right;
}

.top-header p,
.top-header a {
    display: inline;
    padding: 0;
    font-size: 1.4rem;
    color: rgb(var(--white-color));
}

.top-header a:hover {
    color: rgb(var(--accent-orange-color));
}

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

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

.expandable-li ul a {
    color: rgb(var(--gray-dark-color));
}

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

.TemplateMenu li.active>a {
    color: rgb(var(--accent-orange-color));
}

/* Dropdown */
.TemplateMenu {
    margin-top: 3rem;
}

.TemplateMenu ul {
    background-color: rgb(var(--white-color));
    border-bottom: 3px solid rgb(var(--primary-color));
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
    border-radius: 0 0 3px 3px;
}

.mobile-menu .TemplateMenu ul {
    box-shadow: none;
    border-radius: none;
    border: none;
    background-color: rgb(var(--primary-color));
}

.mobile-menu .TemplateMenu ul a {
    color: rgb(var(--white-color));
}

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

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

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

/* EditMode */
.EditMode .TemplateMenu ul a {
    line-height: 1.3;
    padding: 5px 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Mobilmeny */
.mobile-menu {
    height: auto;
}

.mobile-menu .container {
    height: var(--mobile-menu-height);
}

@media only screen and (max-width: 750px) {
    /* Top header */
    .top-header {
        text-align: left;
    }
}

@media only screen and (max-width: 580px) {
    .header-logo {
        flex: none;
    }

    .header-cta-wrapper .btn {
        min-width: unset;
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 5rem;
    min-height: 95vh;
    background-color: rgb(var(--secondary-color), .3);
}

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

.top-section .section-title {
    color: rgb(var(--white-color));
    font-size: 6rem;
    font-weight: 300;
    max-width: 95rem;
}

.top-section .buttons {
    margin-bottom: -10rem;
}

.section-cta-top {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .top-section {
        min-height: 65vh;
    }
}

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

@media only screen and (max-width: 780px) {
    .top-section {
        min-height: 25vh;
        width: 100%;
        margin-top: 0rem;
    }

    .top-text {
        display: none;
    }

    .section-cta-top {
        display: block;
    }
}

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

/* Sveriges finaste vildlax
========================================================================== */
@media only screen and (max-width: 750px) {

    .section-salmon .cards-wrapper.w-33 .card-item {
        display: flex;
        justify-content: center;
        margin: 1rem 2rem;
    }
}

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

/* Hero
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50rem;
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -2rem;
}

.hero.bg-image {
    background-color: rgba(var(--secondary-color), .4);
}

.hero .section-title {
    color: rgb(var(--white-color));
    font-family: 'Dancing Script', cursive;
    font-size: 6rem;
    font-weight: 400;
    max-width: 95rem;
}

.of-wrapper img {
    position: static;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

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

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

/* ==========================================================================
Undersida: om oss
========================================================================== */
/* .image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.section-3-images .image-gallery { 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.gallery-figure {
    margin: 0;
    padding: 0;
    grid-row: span 3;
}

@media only screen and (max-width: 580px) {
    .image-gallery {
        gap: 1rem;
    }
} */

/* ==========================================================================
Undersida: Inspiration
========================================================================== */
@media only screen and (max-width: 1100px) {
    .section-inspiration .split-content {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}

.section-contact .col-0 {
    margin-bottom: 5rem;
}

.section-contact .col-2 {
    max-width: 60rem;
    padding: 3rem;
    border-radius: 3px;
    overflow: hidden;
    background-color: rgb(var(--white-color));
    border: 1px solid rgb(var(--gray-light-color));
    border-bottom: 3px solid rgb(var(--primary-color));
    box-shadow: 0 1rem 3rem rgb(var(--black-color), .1);
}

.Contact input,
.Contact textarea {
    border-radius: 5px;
    margin: 0;
}

/* Bekraftelseruta */
.ContactSentMessage {
    padding: 1rem 1rem 1rem 7rem;
    margin-bottom: 2rem;
    border-radius: .5rem;
    background-color: rgba(var(--primary-color), .2);
    background-image: url(/assets/images/icons/message-sent.svg);
    background-size: 4rem;
    background-position: 1.5rem center;
    background-repeat: no-repeat;
}

.ContactSentMessage p {
    padding: 0;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-2 {
        margin: 5rem auto 0;
    }
}

/* ==========================================================================
Undersida: Enskilda Produkter
========================================================================== */
/*Sektion products*/
.section-product .section-block-wrapper {
    align-items: center;
}

.section-product .col-1 {
    padding-top: 5rem;
}

/* ==========================================================================
Undersida: Enskilt Recept
========================================================================== */
/* Sektion Recept Hero
========================================================================== */
.section-recipe-hero {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 10rem, rgb(var(--primary-color), 0.2) 10rem);
}

.section-recipe-hero .image-wrapper {
    position: relative;
    padding: 50% 0 0;
    margin: 0;
}

.section-recipe-hero .image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

/* Sektion Recept
========================================================================== */
.section-recipe {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    max-width: 100rem;
    margin: auto;
    margin-bottom: 10rem;
    padding-top: 6rem;

}

.section-recipe .col-0 {
    padding: 0 2rem;
    border-right: 2px dotted rgb(var(--gray-light-color));
}

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

.ingredient-list li {
    font-size: 1.6rem;
    color: rgb(var(--gray-dark-color));
    padding-bottom: 1rem;
}

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

.how-to-list {
    margin: 0;
    padding: 0 0 0 2rem;
}

.how-to-list li {
    font-size: 1.6rem;
    color: rgb(var(--gray-dark-color));
    padding-bottom: 3rem;
}

@media only screen and (max-width: 980px) {
    .section-recipe .col-0 {
        margin-bottom: 3rem;
        padding: 2rem 0;
        border-bottom: 2px dotted rgb(var(--gray-light-color));
        border-right: none;
    }
}

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

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

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

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

.footer-menu:first-child {
    width: 40%;
}

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

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

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

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

.footer-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo div {
    padding: 1rem;
    background-color: rgb(var(--white-color));
    border-radius: 0 0 0.3rem 0.3rem;
}

.footer-logo img {
    height: 7rem;
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgb(var(--white-color), .2);
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
    color: rgb(var(--white-color), .5);
}

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

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


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

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

    .footer-menu:first-child {
        width: 100%;
    }

    .footer-logo img {
        height: 4rem;
    }
}

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

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

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

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