﻿@font-face {
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    src: url("/fonts/Montserrat-Regular.woff2") format("woff2"), url("/fonts/Montserrat-Regular.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Nasaliza";
    font-weight: 400;
    font-style: normal;
    src: url("/fonts/nasalization-webfont.woff2") format("woff2"), url("/fonts/nasalization-webfont.woff") format("woff");
    font-display: swap;
}

:root {
    --pp-blue: #2E4879;
    --pp-blue-dark: #1f3158;
    --pp-blue-soft: #edf2fa;
    --pp-orange: #EA8F13;
    --pp-gray: #787D7F;
    --pp-text: #172033;
    --pp-muted: #5d6673;
    --pp-border: #d8dee8;
    --pp-surface: #ffffff;
    --pp-bg: #f6f8fb;
    --pp-radius: 8px;
    --pp-shadow: 0 14px 30px rgba(31, 49, 88, .12);
    --pp-shadow-soft: 0 10px 24px rgba(31, 49, 88, .09);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 64px;
    font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
    color: var(--pp-text);
    background: var(--pp-bg);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--pp-blue);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--pp-orange);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: Montserrat, "Segoe UI", Arial, sans-serif;
    color: var(--pp-blue);
    letter-spacing: 0;
    line-height: 1.2;
}

h1 {
    margin: 1.5rem 0 1rem;
    font-size: clamp(2rem, 2.8rem, 2.8rem);
}

h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

h3 {
    font-size: 1.25rem;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.navbar {
    margin-bottom: 0;
    border-radius: 0;
    background: rgba(46, 72, 121, .98);
    box-shadow: 0 8px 22px rgba(31, 49, 88, .16);
    backdrop-filter: saturate(140%) blur(10px);
}

.pp-site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1040;
    min-height: 64px;
    padding-top: .25rem;
    padding-bottom: .25rem;
}

.navbar .container {
    gap: .55rem;
    align-items: center;
}

.navbar-brand img {
    width: 132px;
    height: auto;
    display: block;
}

.navbar-brand {
    padding-top: .2rem;
    padding-bottom: .2rem;
}

.navbar-toggler {
    min-height: 40px;
    border-color: rgba(255, 255, 255, .28);
}

.navbar-collapse {
    align-items: center;
}

.navbar-nav {
    align-items: center;
    gap: .15rem;
}

.navbar .navbar-nav > li > a,
.navbar .nav-link,
.navbar .navbar-nav .nav-link {
    min-height: 42px;
    color: rgba(255, 255, 255, .86);
    border-radius: 999px;
    padding: .45rem .78rem;
    text-decoration: none;
    line-height: 1.2;
}

.navbar .navbar-nav > .active > a,
.navbar .navbar-nav > .active > a:hover,
.navbar .navbar-nav > .active > a:focus {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 -3px 0 var(--pp-orange);
}

.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus,
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, .10);
    text-decoration: none;
    box-shadow: none;
}

.dropdown-menu {
    border: 0;
    border-radius: var(--pp-radius);
    background: #fff;
    box-shadow: var(--pp-shadow);
    padding: .45rem;
    margin-top: .45rem;
}

.dropdown-menu > li > a,
.dropdown-item > a,
.dropdown-item {
    display: block;
    color: var(--pp-text);
    border-radius: 6px;
    padding: .55rem .75rem;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--pp-blue);
    background: var(--pp-blue-soft);
    text-decoration: none;
}

.navbar-form {
    min-width: 210px;
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}

.navbar-form .form-control,
.navbar-form input[type=text] {
    min-height: 38px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    box-shadow: none;
    padding: .35rem .8rem;
}

.navbar-form .form-control::placeholder {
    color: rgba(255, 255, 255, .74);
}

.navbar .navbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .9) !important;
    text-decoration: none;
}

.navbar .navbar-icon:hover,
.navbar .navbar-icon:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, .10);
    text-decoration: none;
}

.navbar-icon.btn {
    min-width: 38px;
    min-height: 38px;
    border-radius: 999px;
}

.pp-page-shell {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.pp-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 1.5rem;
    align-items: start;
}

.pp-main-content,
.pp-side-content {
    min-width: 0;
    align-self: start;
}

.pp-side-content > *:first-child,
.pp-side-content > *:first-child > *:first-child {
    margin-top: 0 !important;
}

.pp-main-content > .row:first-child {
    margin-left: 0;
    margin-right: 0;
}

.pp-main-content > .row:first-child > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.pp-main-content > .row:not(:first-child) {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.card,
.panel,
.pp-box {
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    background: var(--pp-surface);
    box-shadow: 0 8px 22px rgba(31, 49, 88, .08);
    overflow: hidden;
}

.card {
    border: 1px solid var(--pp-border) !important;
}

.card.shadow,
.card.shadow-lg,
.shadow,
.shadow-lg {
    box-shadow: 0 8px 22px rgba(31, 49, 88, .10) !important;
}

.card-img-top {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.card-body,
.panel-body {
    padding: 1rem;
}

.btn,
input[type=button],
input[type=submit] {
    border-radius: 999px;
    min-height: 42px;
}

.btn-primary {
    background: var(--pp-blue);
    border-color: var(--pp-blue);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--pp-blue-dark);
    border-color: var(--pp-blue-dark);
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--pp-orange);
    --bs-btn-border-color: var(--pp-orange);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c9770f;
    --bs-btn-hover-border-color: #c9770f;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b96d0e;
    --bs-btn-active-border-color: #b96d0e;
}

.btn-outline-secondary {
    color: var(--pp-blue);
    border-color: var(--pp-border);
}

.btn-warning {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--pp-orange);
    --bs-btn-border-color: var(--pp-orange);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c9770f;
    --bs-btn-hover-border-color: #c9770f;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b96d0e;
    --bs-btn-active-border-color: #b96d0e;
}

.text-warning {
    color: var(--pp-orange) !important;
}

.text-bg-warning-subtle {
    color: #9c5f09 !important;
    background-color: rgba(234, 143, 19, .12) !important;
}

.border-warning-subtle {
    border-color: rgba(234, 143, 19, .32) !important;
}

.text-yellow {
    color: #f1c40f;
}

.pp-icon-badge {
    position: relative;
}

.pp-icon-badge .badge {
    position: absolute;
    top: -10px;
    padding: .2em;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1090;
    width: 100%;
    margin: 0;
    color: #fff;
    background: var(--pp-blue-dark);
    transform: translateY(100%);
    opacity: 0;
    transition: all .35s ease;
}

.cookiealert.show {
    transform: translateY(0);
    opacity: 1;
}

.pp-affiliate-bar {
    font-size: .9rem;
    background: var(--pp-blue-dark);
}

.pp-eyebrow {
    margin: 0 0 .65rem;
    color: var(--pp-orange);
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pp-section-heading h2 {
    margin-top: 0;
}

.pp-job-media {
    overflow: hidden;
    border-radius: var(--pp-radius);
    background: var(--pp-blue-soft);
}

.pp-job-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pp-job-card {
    color: inherit;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.pp-job-card:hover,
.pp-job-card:focus {
    transform: translateY(-2px);
    border-color: rgba(234, 143, 19, .45) !important;
    box-shadow: 0 14px 30px rgba(31, 49, 88, .14) !important;
    text-decoration: none;
}

.pp-job-detail {
    display: grid;
    gap: 2rem;
}

.pp-job-detail-hero {
    overflow: hidden;
    border-radius: var(--pp-radius);
    background: var(--pp-blue-dark);
    box-shadow: var(--pp-shadow-soft);
}

.pp-job-detail-hero-copy {
    min-height: 420px;
    padding: clamp(2rem, 4vw, 4rem);
    color: #fff;
}

.pp-job-detail-hero-copy h1 {
    margin-top: 0;
    color: #fff;
    font-size: clamp(2.25rem, 4.5vw, 4rem);
}

.pp-job-detail-hero-copy .lead,
.pp-job-detail-hero-copy p:not(.pp-eyebrow) {
    color: rgba(255, 255, 255, .88);
}

.pp-job-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.pp-job-facts {
    overflow: hidden;
    border-radius: var(--pp-radius);
    background: #edf3fb;
}

.pp-job-facts > .col {
    padding: clamp(1.5rem, 2.6vw, 2.5rem);
    border-right: 2px solid rgba(46, 72, 121, .12);
}

.pp-job-facts > .col:last-child {
    border-right: 0;
}

.pp-job-facts strong,
.pp-job-facts span {
    display: block;
}

.pp-job-facts strong {
    color: var(--pp-blue);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    line-height: 1.2;
}

.pp-job-facts span {
    margin-top: .55rem;
    color: var(--pp-text);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    line-height: 1.25;
}

.pp-job-detail-intro {
    max-width: 78ch;
}

.pp-job-detail-columns section {
    height: 100%;
    padding: 0 0 0 1.25rem;
    border-left: 4px solid var(--pp-orange);
}

.pp-job-detail-columns h2,
.pp-job-detail-cta h2,
.pp-job-detail-company h2 {
    margin-top: 0;
    font-size: 1.45rem;
}

.pp-job-detail-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--pp-radius);
    color: #fff;
    background: var(--pp-blue);
}

.pp-job-detail-cta h2 {
    color: #fff;
}

.pp-job-detail-cta p {
    max-width: 68ch;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .9);
}

.pp-job-detail-company {
    max-width: 84ch;
    padding-bottom: .5rem;
}

.pp-job-faq details {
    padding: .9rem 0;
    border-top: 1px solid var(--pp-border);
}

.pp-job-faq summary {
    color: var(--pp-blue);
    font-weight: 800;
    cursor: pointer;
}

.pp-job-social img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

:is(#agentic-course, #course-sheet) {
    margin: -1.5rem -1rem -2.5rem;
    padding: clamp(1.5rem, 3vw, 2.75rem) 1rem 3.5rem;
    background: linear-gradient(180deg, #fff 0%, #fff 72%, #f6f8fb 100%);
}

:is(#agentic-course, #course-sheet) .card {
    border-color: var(--pp-border);
    border-radius: var(--pp-radius);
    box-shadow: var(--pp-shadow-soft) !important;
}

:is(#agentic-course, #course-sheet) .bg-light-subtle {
    background: linear-gradient(135deg, #fff 0%, #edf2fa 100%) !important;
}

:is(#agentic-course, #course-sheet) > .row:first-of-type .card {
    box-shadow: var(--pp-shadow) !important;
}

:is(#agentic-course, #course-sheet) h1 {
    margin-top: 0;
    color: var(--pp-blue);
    font-size: clamp(2.45rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
}

:is(#agentic-course, #course-sheet) h2 {
    margin-top: 0;
    font-size: 1.45rem;
    font-weight: 400;
}

:is(#agentic-course, #course-sheet) .lead {
    max-width: 64ch;
    font-size: 1.08rem;
    line-height: 1.65;
}

:is(#agentic-course, #course-sheet) > .row:first-of-type > .col-xl-7 .card-body {
    padding-right: 2.45rem !important;
    padding-left: 2.45rem !important;
}

:is(#agentic-course, #course-sheet) > .row:first-of-type > .col-xl-5 .card-body {
    padding: 1rem 1rem 1.5rem !important;
}

:is(#agentic-course, #course-sheet) .card > img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: right center;
    background: var(--pp-blue-soft);
}

:is(#agentic-course, #course-sheet) .accordion-button {
    color: var(--pp-blue);
    font-weight: 800;
    padding-right: 2.75rem;
}

:is(#agentic-course, #course-sheet) ol.d-grid > li {
    padding-bottom: .55rem;
    border-bottom: 0;
}

:is(#agentic-course, #course-sheet) ol.d-grid > li:last-child {
    border-bottom: 0;
}

:is(#agentic-course, #course-sheet) > .row:first-of-type > .col-xl-5 .card-body > .d-grid:has(.btn-danger) {
    margin-bottom: 1rem;
}

:is(#agentic-course, #course-sheet) .row.align-items-center {
    align-items: flex-start !important;
    margin-top: 0;
}

:is(#agentic-course, #course-sheet) .card:has(> .card-body > .row.align-items-center) {
    height: auto !important;
    min-height: 0;
    margin-top: 1.5rem;
    overflow: visible;
}

:is(#agentic-course, #course-sheet) .row.align-items-center figure {
    flex: 0 0 160px;
    width: 160px;
    max-width: 160px;
    padding-right: 0;
    padding-left: 0;
}

:is(#agentic-course, #course-sheet) .row.align-items-center figure img {
    display: block;
    width: 140px;
    max-width: none;
    height: 140px;
    margin-left: .75rem;
    aspect-ratio: 1 / 1;
    border-radius: var(--pp-radius);
    object-fit: cover;
    object-position: center;
    box-shadow: 0 12px 24px rgba(31, 49, 88, .14);
}

:is(#agentic-course, #course-sheet) .row.align-items-center figure + div {
    flex: 1 1 0;
    width: auto;
    max-width: calc(100% - 160px);
}

:is(#agentic-course, #course-sheet) .card-body:has(> .row.align-items-center) {
    padding: 0 0 .25rem !important;
}

:is(#agentic-course, #course-sheet) .row.align-items-center {
    padding-top: .9rem;
}

:is(#agentic-course, #course-sheet) .row.align-items-center > div:last-child {
    padding-top: .6rem;
}

:is(#agentic-course, #course-sheet) .row.align-items-center .badge {
    min-height: 1.6rem;
    padding: .15rem .45rem !important;
    color: var(--pp-blue) !important;
    border-color: rgba(234, 143, 19, .35) !important;
    background: rgba(234, 143, 19, .08) !important;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.65;
}

:is(#agentic-course, #course-sheet) .row.align-items-center [aria-label="Trainer-Schwerpunkte"] {
    align-content: flex-start;
    gap: .35rem !important;
    margin-bottom: 0;
}

:is(#agentic-course, #course-sheet) :is(#agentic-feedback, #course-feedback) {
    border: 0 !important;
    background: transparent;
    box-shadow: none !important;
    margin-top: .25rem;
    border-top: 1px solid var(--pp-border) !important;
    border-radius: 0;
}

:is(#agentic-feedback, #course-feedback) > .card-body {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

:is(#agentic-feedback, #course-feedback) .row {
    margin-right: 0;
    margin-left: 0;
}

:is(#agentic-feedback, #course-feedback) .row > .col {
    padding-right: .5rem;
    padding-left: .5rem;
}

:is(#agentic-feedback, #course-feedback) .row > .col > .card {
    height: 100%;
    padding: 1rem;
    border: 0 !important;
    border-left: 4px solid var(--pp-orange) !important;
    border-radius: var(--pp-radius);
    background: #f8fafc;
    box-shadow: none !important;
}

:is(#agentic-feedback, #course-feedback) .row > .col > .card .card-body {
    padding: 0 !important;
}

:is(#agentic-feedback, #course-feedback) .alert {
    margin-top: 1rem;
    color: var(--pp-muted);
    text-align: center;
    background: transparent;
    border: 0 !important;
    padding: 0 !important;
    font-size: .94rem;
}

:is(#agentic-links, #course-links) .card {
    padding: 1.45rem 0;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    border-top: 1px solid var(--pp-border) !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none !important;
}

:is(#agentic-links, #course-links) .card-body {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

:is(#agentic-links, #course-links) .list-group-item,
:is(#agentic-course, #course-sheet) .pp-side-content .list-group-item {
    background: transparent;
    border-right: 0;
    border-left: 0;
    padding-right: 0;
    padding-left: 0;
}

:is(#agentic-links, #course-links) .list-group-item {
    border-color: var(--pp-border);
}

:is(#agentic-links, #course-links) .list-group-item a {
    display: inline;
}

@media (min-width: 1200px) {
    :is(#agentic-course, #course-sheet) > .row:first-of-type {
        display: grid;
        grid-template-columns: minmax(0, 472fr) minmax(300px, 300fr);
        gap: 1.25rem;
        margin-right: 0;
        margin-left: 0;
    }

    :is(#agentic-course, #course-sheet) > .row:first-of-type > [class*="col-"] {
        width: auto;
        padding-right: 0;
        padding-left: 0;
    }

    :is(#agentic-course, #course-sheet) > .row:first-of-type .card {
        height: 584px !important;
    }

    :is(#agentic-course, #course-sheet) > .row:first-of-type > .col-xl-7 .card-body {
        justify-content: flex-start !important;
        padding-top: 5.8rem !important;
    }

    :is(#agentic-course, #course-sheet) > .row:first-of-type > .col-xl-7 .text-uppercase.small {
        margin-bottom: .4rem !important;
    }

    :is(#agentic-course, #course-sheet) > div.row.align-items-start {
        display: grid;
        grid-template-columns: minmax(0, 432fr) minmax(340px, 340fr);
        gap: 1.5rem;
        margin-right: 0;
        margin-left: 0;
    }

    :is(#agentic-course, #course-sheet) > div.row.align-items-start > [class*="col-"] {
        width: auto;
        padding-right: 0;
        padding-left: 0;
    }

    :is(#agentic-course, #course-sheet) > div.row.align-items-start .card {
        height: auto !important;
        border: 0 !important;
        background: transparent;
        box-shadow: none !important;
        overflow: visible;
    }

    :is(#agentic-course, #course-sheet) > div.row.align-items-start > .col-xl-8 > .card:not(:has(.row.align-items-center)) .card-body,
    :is(#agentic-course, #course-sheet) > div.row.align-items-start > .col-xl-4 .card-body {
        padding: 0 !important;
    }
}

footer.navbar {
    padding: 1.5rem 0;
    color: #fff;
}

footer a {
    color: #fff;
}

.chat-window {
    z-index: 1050;
    max-height: 80vh;
    width: min(340px, calc(100vw - 1rem)) !important;
}

.pp-chat-toggle {
    position: fixed;
    right: .75rem;
    bottom: .75rem;
    z-index: 1040;
}

.pp-chat-list {
    overflow-y: auto;
    max-height: 60vh;
}

.pp-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--pp-radius);
    background: #000;
}

.pp-hero img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}

.pp-hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: clamp(1rem, 3vw, 2rem);
    text-align: right;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .35));
}

.pp-hero-copy h3,
.pp-hero-copy p {
    font-family: "Nasaliza", Arial, sans-serif;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.pp-hero-copy h3 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: #285c9f;
}

.pp-hero-copy p {
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .navbar .container {
        align-items: center;
    }

    .navbar-collapse {
        padding-top: .5rem;
    }

    .navbar-nav {
        align-items: stretch;
        gap: .25rem;
        width: 100%;
    }

    .navbar .navbar-nav > li > a,
    .navbar .nav-link,
    .navbar .navbar-nav .nav-link {
        width: 100%;
        border-radius: 8px;
    }

    .navbar-form {
        width: auto;
        min-width: 0;
        max-width: min(100%, 420px);
        padding: .5rem 0 !important;
        margin-left: auto;
    }

    .navbar-form .form-control,
    .navbar-form input[type=text] {
        min-height: 38px;
        font-size: 1rem;
    }

    .navbar-icon.btn {
        min-width: 38px;
        min-height: 38px;
    }

    .pp-content-grid {
        grid-template-columns: 1fr;
    }

    .pp-side-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }

    .pp-hero img {
        aspect-ratio: 4 / 3;
    }

    .pp-hero-copy {
        justify-content: flex-end;
        align-items: flex-start;
        text-align: left;
        background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .64));
    }

    .pp-job-detail-hero-copy {
        min-height: auto;
    }

    .pp-job-facts > .col {
        border-right: 0;
        border-bottom: 1px solid rgba(46, 72, 121, .16);
    }

    .pp-job-facts > .col:last-child {
        border-bottom: 0;
    }

    .pp-job-detail-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    footer .col-6 {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
}

