/*
 * ==========================================
 *   [Table of contents]
 * ==========================================
 
Theme Default CSS
Common Style
Preloader




03. Above Header
    04. Navigation
    05. Slider
Info Section / UniPPS Highlights
Design Section / UniPPS Funktionen

    08. Service Section / UniPPS Blog Posts
    12. Gallery Section / UniPPS Masken 
    14. Fun Fact Section / UniPPS Zahlen 
    16. CTA Section
    18. Footer Section
    19. Scrolling Up
    22. About Text Section
    23. Steps Section
    24. Our Journey Section / Unsere Meilensteine
    26. Pagination Section
    27. Tab Filter Section
    28. FAQ Page
    29. Author-Area Section
    30. Comments-Area Section
    31. Form Part for Comment Section
    32. Careers Page
    33. Locations Page
    34. Support Page
    35. Contact Page
    36. Contact V2 Page
    37. 404 Page
    38. Coming-Soon Page
    39. Boxed Layout CSS
	40. Page Settings 

Shapes
CTA Shapes
N/A Sections
    N/A Header Seven
    N/A Breadcrumb Section
    N/A - Projects Section 
    11. Team Section / N/A
    13. Price Section / N/A
    15. Testimonials Section / N/A
    17. Blog Post Section / N/A
N/A Steps
    25. Our Skills Section

N/A - Animation Effects 
=============================================================================================================================================================================================================== */


/*
 * ==========================================
 *   [Theme Default CSS]
 * ==========================================
 */

@charset "UTF-8"; 

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Common Style]
 * ==========================================
 */

  /* Colors (Custom + Default) + Transition Variables */

:root {
	--unipps-blue: #003da5; 
	--unipps-dark-blue: #002f6d; /*#01012F;*/ 
	--unipps-light-blue: #98caec; 
	
    --bs-black:#000000;
    --bs-blue:#0d6efd;
    --bs-indigo:#6610f2;
    --bs-purple:#6f42c1;
    --bs-pink:#d63384;
    --bs-red:#dc221c;
    --bs-orange:#fd7e14;
    --bs-orange-dark:#ee4a34;
    --bs-orange-dark-light:#fae4df;
    --bs-yellow:#ffc107;
    --bs-green:#28a745;
    --bs-teal:#20c997;
    --bs-cyan:#17a2b8;
    --bs-white:#ffffff;
    --bs-gray:#dedede;
    --bs-gray-light: #f7f7f7;
    --bs-gray-dark:#343a40;
    --bs-primary: #003da5; /*#007bff;*/
    --bs-primary-dark: #ffff00; /*#025ce2;*/
    --bs-primary-light: #ffff00; /*#f3f8fe;*/
    --bs-primary-shadow:rgb(0 123 255 / 0.5);
    --bs-secondary: #002f6d; /*1012f;*/
    --bs-secondary-dark: #002f6d;
    --bs-gray-500: #f2f2f2;
    --bs-gray-500-thumb: #ffff00; /*#c2c2c2;*/
    --bs-success:#28a745;
    --bs-info:#17a2b8;
    --bs-warning:#ffc107;
    --bs-danger:#dc3545;
    --bs-light:#f8f9fa;
    --bs-dark:#343a40;
    --bs-font-sans-serif:"Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-font-awesome: "FontAwesome";
    --bs-gradient:linear-gradient(180deg,rgba(255,255,255,0.15),rgba(255,255,255,0));
    --bs-gradient-image:linear-gradient(180deg,rgba(255,255,255,0.15),rgba(255,255,255,0));
    --bs-shadow: 2px 5px 20px rgba(0, 0, 0, .2);
    --bs-radius: 0.1875rem;
    --bs-transition: all 1.35s cubic-bezier(.645,.045,.355,1);
    --bs-transition-slow: all .55s cubic-bezier(.645,.045,.355,1);
    --bs-transition-very-slow: all .75s cubic-bezier(.645,.045,.355,1);
}

.bg-primary-light { background-color: var(--bs-primary-light); }

  /* --- Selection Colors --- */

::-webkit-selection {
    background-color: var(--unipps-blue);
    color: var(--bs-white);
}

::selection {
    background-color: var(--unipps-blue);
    color: var(--bs-white);
}

  /* --- Scrollbar Colors --- */

::-webkit-scrollbar {
    width: 0.625rem;
    background-color: var(--bs-gray-500);
}

::-webkit-scrollbar-thumb {
    background-color: var(--bs-gray-500-thumb);
    border-radius: 0.625rem;
}

::-webkit-scrollbar-corner { background-color: var(--bs-gray-500); }

  /* --- Basic Typography Structure --- */

*:not(table *) {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
}

body { overflow-x: hidden; }

body:not(.admin-bar) { position: relative; }

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

.post-items ul:not(.post-categories) li a,
.post-items ol:not(.post-categories) li a,
.post-items table a, .post-items strong a,
.post-items blockquote a,
.post-items code a, .post-items p a,
.post-items span:not(.author-name) a,
.sidebar strong a, .sidebar blockquote a,
.sidebar code a, .sidebar p:not(.text) a,
.sidebar span:not(.author-name) a,
.footer-section strong a, .footer-section blockquote a,
.footer-section code a, .footer-section p:not(.text) a,
.footer-section span:not(.author-name) a,
.comments-area strong a, .comments-area blockquote a,
.comments-area code a, .comments-area p:not(.text):not(.logged-in-as) a,
.comments-area span:not(.author-name):not(.edit-link) a,
.copyright-text a {
    color: var(--bs-primary);
    text-decoration: underline;
}

a:hover,
a:active,
a:focus
{
    color: var(--bs-white);
}

a:hover,
a:active,
button:focus {
    box-shadow: none;
}

button[type=submit]:focus, button:focus, input[type="button"]:focus,
input[type="reset"]:focus, input[type="submit"]:focus,
a:focus {
    outline: 1px dotted;
    text-decoration: none;
    outline-offset: -3px;
}

a, area, button, input, label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

button, input, optgroup, select, textarea { margin: 0; }

button, input { overflow: visible; }

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
    display: block;
}

em, cite, q {
    color: var(--bs-primary);
    font-style: italic;
    font-weight: bold;
}

code, kbd, tt, var, samp, pre {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    background: var(--bs-secondary);
    color: var(--bs-white);
    padding: 1px 0.3125rem;
    border-radius: 0px;
    font-size: 88%;
}

pre {
    display: block;
    margin: 0 0 0.625rem;
    font-size: 0.8125rem;
    word-break: break-all;
    word-wrap: break-word;
    border: 1px solid var(--bs-gray-light);
    border-radius: 0px;
    overflow: auto;
}

.table>thead { vertical-align: bottom; }

.table th, .table td {
    padding: 1.5rem;
    vertical-align: top;
}

table.table th, table.table td {
    padding-top: .95rem;
    padding-bottom: .95rem;
}

table.table.btn-table td { vertical-align: middle; }

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-white);
    color: var(--bs-secondary);
}

figure { margin: 0;}

address,
table,
pre {
    width: 100%;
}

small { font-size: 80%; }

fieldset {
    border: 1px solid var(--bs-gray-light);
    margin: 1.5rem 0.125rem;
    padding: 0.625rem 1.5625rem 1.25rem;
    border-radius: 0;
}

iframe {
    max-width: 100%;
    height: auto;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border-radius: 0;
}

button[type="submit"],
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    background-color: var(--bs-primary);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--bs-white);
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0.688rem 1.375rem;
    letter-spacing: 0.05rem;
    font-size: 1rem;
    border-radius: 6.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.comment-metadata .edit-link a, .comment-body .reply a,
.scrolling-btn,
.st-tab-filter a, form button,
.more-link, .sp-post-pagination div.nav a,
.btn:not(.btn-link):not(.btn-play):not(.btn-video) {
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.5s all ease;
}

.comment-metadata .edit-link a:before, .comment-body .reply a:before,
.scrolling-btn:before,
.st-tab-filter:not(.tab-swipe-filter) a:before, form button:before,
.more-link:before, .sp-post-pagination div.nav a:before,
.btn:not(.btn-link):not(.btn-play):not(.btn-video):before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    border-radius: inherit;
    z-index: -1;
}

.comment-metadata .edit-link a:after, .comment-body .reply a:after,
.scrolling-btn:after,
.st-tab-filter:not(.tab-swipe-filter) a:after, form button:after,
.more-link:after, .sp-post-pagination div.nav a:after,
.btn:not(.btn-link):not(.btn-play):not(.btn-video):after {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    right: 0;
    top: 0;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    border-radius: inherit;
    z-index: -1;
    opacity: .40;
}

.btn-white:before,.btn-white:after,
.btn-outline-white:not(.btn-link):not(.btn-play):not(.btn-video):before,
.btn-outline-white:not(.btn-link):not(.btn-play):not(.btn-video):after {
    background-color: var(--bs-white);
}

.scrolling-btn:before, .scrolling-btn:after,
form button:before, form button:after,
.sp-post-pagination div.nav a:before,
.sp-post-pagination div.nav a:after,
.btn-primary:not(.btn-link):not(.btn-play):not(.btn-video):before,
.btn-primary:not(.btn-link):not(.btn-play):not(.btn-video):after {
    background-color: var(--bs-secondary);
}

.comment-metadata .edit-link a:before, .comment-metadata .edit-link a:after,
.comment-body .reply a:before, .comment-body .reply a:after,
.st-tab-filter a:before, .st-tab-filter a:after,
.more-link:before,.more-link:after,
.btn-secondary:not(.btn-link):not(.btn-play):not(.btn-video):before,
.btn-secondary:not(.btn-link):not(.btn-play):not(.btn-video):after {
    background-color: var(--bs-primary);
}

.comment-metadata .edit-link a:hover:before, .comment-metadata .edit-link a:hover:after,
.comment-body .reply a:hover:before, .comment-body .reply a:hover:after,
.comment-metadata .edit-link a:focus:before, .comment-metadata .edit-link a:focus:after,
.comment-body .reply a:focus:before, .comment-body .reply a:focus:after,
.scrolling-btn:hover:before, .scrolling-btn:hover:after,
.scrolling-btn:focus:before, .scrolling-btn:focus:after,
form button:hover:before, form button:hover:after,
form button:focus:before, form button:focus:after,
.st-tab-filter a:hover:before, .st-tab-filter a:hover:after,
.st-tab-filter a:focus:before, .st-tab-filter a:focus:after,
.sp-post-pagination div.nav a:hover:after,
.sp-post-pagination div.nav a:hover:before,
.sp-post-pagination div.nav a:focus:after,
.sp-post-pagination div.nav a:focus:before,
.more-link:hover:before,.more-link:hover:after,
.more-link:focus:before,.more-link:focus:after,
.btn:not(.btn-link):not(.btn-play):not(.btn-video):hover:before,
.btn:not(.btn-link):not(.btn-play):not(.btn-video):focus:before,
.btn:not(.btn-link):not(.btn-play):not(.btn-video):hover:after,
.btn:not(.btn-link):not(.btn-play):not(.btn-video):focus:after {
    width: 100%;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: 1px dotted;
    outline-offset: -2px;
}

input[type="text"]:not(.adminbar-input),
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control {
    border-radius: 0;
    display: block;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1.063rem 1.875rem;
    vertical-align: middle;
    width: 100%;
    min-height: 60px;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-gray-light);
    outline: none;
    letter-spacing: 0.5px;
    box-shadow: none;
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

input[type="text"]:focus, input[type="email"]:focus,
input[type="url"]:focus, input[type="password"]:focus,
input[type="search"]:focus, input[type="number"]:focus,
input[type="tel"]:focus, input[type="range"]:focus,
input[type="date"]:focus, input[type="month"]:focus,
input[type="week"]:focus, input[type="time"]:focus,
input[type="datetime"]:focus, input[type="datetime-local"]:focus,
input[type="color"]:focus, textarea:focus, select:focus,
input[type="text"]:hover, input[type="email"]:hover,
input[type="url"]:hover, input[type="password"]:hover,
input[type="search"]:hover, input[type="number"]:hover,
input[type="tel"]:hover, input[type="range"]:hover,
input[type="date"]:hover, input[type="month"]:hover,
input[type="week"]:hover, input[type="time"]:hover,
input[type="datetime"]:hover, input[type="datetime-local"]:hover,
input[type="color"]:hover, textarea:hover, select:hover {
    background-color: var(--bs-white);
    border-color: var(--bs-primary);
    outline: none;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

select {
    border: 1px solid var(--bs-gray);
    border-radius: 0;
    display: block;
    font-size: 92%;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    min-height: 50px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    box-shadow: none;
    overflow: auto !important;
    outline: 0;
    background-color: var(--bs-white);
}

textarea {
    height: 11.25rem;
    overflow: auto;
    resize: vertical;
}

input[type=checkbox], input[type=radio],
form[id*=give-form] #give-gateway-radio-list>li input[type=radio],
form[id*=give-form] #give-gateway-radio-list>li input[type=checkbox],
div.wpforms-container-full .wpforms-form input[type=radio],
div.wpforms-container-full .wpforms-form input[type=checkbox] {
    position: relative;
    border: 2px solid var(--bs-secondary-dark);
    background-color: var(--bs-white);
    color: var(--bs-primary);
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    height: 16px;
    margin: 0;
    outline: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    width: 16px !important;
    max-width: 16px;
    border-radius: 3px;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    transition: .05s border-color ease-in-out;
}

input[type=radio] {
    border-radius: 50%;
    margin-right: 0.25rem;
    line-height: 0.75rem;
}

input[type=checkbox]:hover:before,
input[type=radio]:hover:before,
input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
    display: inline-block;
    vertical-align: middle;
    speak: none;
    line-height: 1.1;
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

input[type=radio]:checked:before {
    content: "⬤";
    text-indent: -9999px;
    border-radius: 6.25rem;
    font-size: 1.5rem;
    width: 0.46rem;
    height: 0.46rem;
    margin: 0.152rem 0.152rem 0.25rem 0.175rem;
    line-height: 1.25rem;
    background: var(--bs-primary);
}

input[type=checkbox]:checked,
input[type=checkbox]:hover,
input[type=radio]:checked,
input[type=radio]:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

input[type=checkbox]:checked:before {
    content: '';
    position: absolute;
    left: 1px;
    top: 0.32rem;
    background-color: var(--bs-white);
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

  /* --- Primary Colors --- */

input[type="reset"]:hover, input[type="submit"]:hover,
button[type=submit]:focus, input[type="button"]:focus,
input[type="reset"]:focus, input[type="submit"]:focus {
    color: var(--bs-white);
    background-color: var(--bs-secondary);
}

.read-link {
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    -webkit-transition: all .3s linear 0ms;
    transition: all .3s linear 0ms;
}

.read-link:after {
    font-family: var(--bs-font-awesome);
    margin-left: -0.9375rem;
    line-height: 0.9375rem;
    text-align: center;
    font-size: 0.625rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(-100% + 12px));
    transition: all .55s ease-out 0ms;
}

.read-link:hover:after,
.read-link:focus:after {
    margin-left: 0.375rem;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.bg-primary-light { background-color: var(--bs-primary-light); }

.h-full { height: 100%; }

.minus-mt-6 { margin-top: -6rem; }

.st-my-default { margin: 6.25rem 0; }

.st-mt-default { margin-top: 6.25rem; }

.st-mb-default { margin-bottom: 6.25rem; }

.st-mt-minus { margin-top: -85px; }

.st-py-default { padding: 6.25rem 0; }

.st-pt-default { padding-top: 6.25rem; }

.st-pb-default { padding-bottom: 1.5rem; }

.st-pt-plus { padding-top: 10.5rem; }

.btn-rounded { border-radius: 10em; }

.btn-white, .btn-primary {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    background-color: var(--bs-primary);
}

.btn-outline-white {
    color: var(--bs-white);
    border-color: var(--bs-white);
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
    color: var(--bs-primary);
    background-color: var(--bs-white);
    border-color: var(--bs-white);
}

.btn.st-load-btn { font-size: 0.9375rem; }

.st-load-item { display: none; }

.st-load-spinner {
    position: relative;
    cursor: pointer;
    width: 1.125rem;
    height: 1.125rem;
    display: inline-block;
    vertical-align: middle;
}

.st-load-spinner:before, .st-load-spinner:after {
    position: absolute;
    display: block;
    content: "";
    width: 0.5625rem;
    height: 0.5625rem;
    left: 0;
    top: -0.3125rem;
    right: 0;
    bottom: 0;
    margin: auto;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: var(--bs-white);
    border-right-color: var(--bs-white);
    border-radius: 0 0 1px 0;
    transform: translate(0%, 0%) rotate(45deg);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.loadspinner .st-load-spinner:before {
    border-radius: 50%;
    animation: 0.8s spin 0.4s linear forwards infinite;
}

.loadspinner .st-load-spinner:after {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    animation: 0.8s spinReverse 0.4s linear forwards infinite;
}

   /* --- Headings --- */


.heading-default .badge {
    padding: 0 1.2rem;
    border-radius: 6.25rem;
    line-height: 1.9375rem;
    margin-bottom: 0.5rem;
    animation-name: bounce_two;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
}

.heading-default .badge:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0.6875rem;
    height: 0.6875rem;
    background-color: var(--bs-primary);
    -ms-transform: translateY(50%) rotate(45deg);
    transform: translateY(50%) rotate(45deg);
    z-index: -1;
}

.heading-default h2 {
    color: var(--bs-secondary);
}

.heading-default p {
    margin-bottom: 0;
    font-weight: 500;
}

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Preload Start]
 * ==========================================
 */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: var(--bs-primary);
    overflow: hidden;
}


/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Above Header]
 * ==========================================
 */

.header-widget { height: 100%; }

.above-header-bg .above-header { background-color: var(--unipps-blue); }

.text-heading {
    color: var(--bs-white);
    text-align: initial;
    overflow: hidden;
    position: relative;
}

.text-sliding {
    display: inline;
    margin-left: 2px;
}

.text-sliding span { white-space: nowrap; }

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Navigation Start]
 * ==========================================
 */

.logo { color: var(--bs-white); }

.logo img { max-width: 12.5rem; }

.main-menu-right > ul li:last-child {
    border-left: 1px solid rgb(108 117 125 / 0.6);
    padding-left: 0.9375rem;
}

.main-navigation {
    background-color: var(--bs-secondary);
    border-bottom: 1px solid rgb(108 117 125 / 0.6);
}

.main-navigation .contact-area { color: var(--bs-white); }

.breadcrumb-menu .main-menu > li.menu-item > a {
    margin: 0 0.65rem;
    padding: 0;
}

.main-navbar:not(.breadcrumb-menu) .main-menu > li.menu-item:not(.focus):not(.active):not(:hover) > a:not(:focus):not(:hover) {
    color: var(--bs-white);
}

.main-navbar .main-menu > li:hover > a,
.main-navbar .main-menu > li.focus > a,
.main-navbar .main-menu .menu-item.active > a {
    color: var(--bs-primary);
}

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Slider]
 * ==========================================
 */

.slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    z-index: 0;
}

.home-slider,
.home-slider .owl-item img {
    width: 100%;
    height: 100%; /*home slider height */
}

.main-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-table {
    overflow: hidden;
    display: table;
    width: 100%;
    height: 100%;
}

.main-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.main-slider div.main-content {
    position: relative;
    max-width: 45rem;
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 10rem;
}

.main-slider .text-left { margin-right: auto; }

.main-slider .text-center { margin: auto; }

.main-slider .text-right { margin-left: auto; }

.main-content h6 {
    margin-bottom: 2.375rem;
    display: inline-block;
    background-color: var(--bs-primary);
    padding: 0.625rem 1.0625rem;
}

.main-content:not(.text-right) h6 { border-radius: 0 6.25rem 6.25rem 0; }

.main-content.text-right h6 { border-radius: 6.25rem 0 0 6.25rem; }

.main-content h1 {
	font-weight: normal;
	font-size: 2.125rem;
    margin-bottom: 2rem;
}

.main-content p {
    font-weight: bold;
    font-size: 2.125rem;
    margin-bottom: 2rem;
}

.main-content .btn:not(.btn-play) { margin-right: 1.12rem; }

.btn.btn-play {
    text-decoration: none;
    color: var(--bs-white);
    vertical-align: middle;
    box-shadow: none;
}

.btn.btn-play span.btn {
    vertical-align: baseline;
    text-align: center;
    width: 2.375rem;
    height: 2.375rem;
    padding: 0;
    position: relative;
    z-index: 0;
    line-height: 2.375rem;
}

.btn.btn-play span.btn:after,
.btn.btn-play span.btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid var(--bs-white);
}

.btn.btn-play span.btn:before {
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.btn.btn-play span.btn:after {
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}

.btn.btn-play i { margin-left: 0.25rem; }

.owl-carousel {
    position: relative;
    z-index: 0;
}

.home-slider .owl-nav { margin: 0; }

.home-slider div.owl-nav button[class*=owl-] {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    background-position: center center;
    background-size: cover;
    background-blend-mode: multiply;
    opacity: 0;
}

.home-slider .owl-nav .owl-prev { left: 0; }

.home-slider .owl-nav .owl-next { right: 0; }

.home-slider:hover div.owl-nav button.owl-prev {
    right: auto;
    left: 2.0625rem;
    opacity: 1;
}

.home-slider:hover div.owl-nav button.owl-next {
    left: auto;
    right: 2.0625rem;
    opacity: 1;
}

.owl-theme:not(.home-slider) .owl-nav {
    width: 100%;
    margin: 1.5625rem auto 0 auto;
}

.owl-theme div.owl-nav [class*=owl-] {
    width: 3.75rem;
    height: 3.75rem;
    line-height: 3.75rem;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    color: var(--bs-white);
    background-color: rgb(1 1 47 / 0.6);
    border: 1px solid var(--bs-gray);
    border-radius: 100%;
    outline: none;
    box-shadow: var(--bs-shadow);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.owl-theme .owl-nav button[class*=owl-]:hover {
    color: var(--bs-white);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.owl-theme .owl-nav .owl-prev i { margin-left: 0 }

.owl-theme .owl-nav .owl-next i { margin-right: -0.125rem; }

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Info Section / UniPPS Highlights]
 * ==========================================
 */

/* Hover Verhalten Text (--bs-secondary --> --bs-white) */
.widget-contact:hover a {
    color: var(--bs-white);
}

.info-section .container .row {
	/*margin-top: -200px;*/ 
}

.info-section:not(.support-section) {
    position: relative;
    margin-top: 2.5rem;
	margin-bottom: 5rem; 
}

.info-section .contact-area {
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
}

.info-section:not(.support-section) .widget-contact {
    padding: 3.125rem;
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    color: var(--bs-secondary);
    z-index: 0;
    -webkit-transition: all .3s linear 0ms;
    transition: all .3s linear 0ms;
}

.info-section:not(.support-section) .layout-2 .widget-contact { padding: 2.125rem; }

.info-section:not(.support-section) .layout-2 .contact-info { text-align: center; }

.info-section:not(.support-section) .layout-2 .widget-contact.bg-primary-lights-not,
.info-section:not(.support-section) .layout-2 .widget-contact.bg-primary-lights:not(:hover):not(:focus-within) {
	background: var(--bs-white);  
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.info-section .item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: all .3s linear 0ms;
    transition: all .3s linear 0ms;
}

.info-section .item-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.info-section .bg-primary-lights:hover .item-overlay,
.info-section .bg-primary-lights:focus-within .item-overlay {
    opacity: 1;
    visibility: visible;
}

.info-section .bg-primary-lights:hover .title,
.info-section .bg-primary-lights:focus-within .title,
.info-section .bg-primary-lights:hover .text,
.info-section .bg-primary-lights:focus-within .text {
    color: 	var(--bs-white);
}

.info-section .bg-primary-lights:hover .contact-icon,
.info-section .bg-primary-lights:focus-within .contact-icon {
	color: 	var(--bs-white);
}

.info-section .bg-primary-lights:hover .contact-icon,
.info-section .bg-primary-lights:focus-within .contact-icon {
    border-color: var(--bs-white);
}

.info-section .bg-primary-lights:hover .contact-corn,
.info-section .bg-primary-lights:focus-within .contact-corn {
    background-color: var(--bs-white);
}

.info-section .layout-2 .contact-area {
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.info-section .contact-info .title {
    margin-bottom: 0.625rem;
}


.info-section .contact-icon {
    margin-right: 0;
    margin-bottom: 1.25rem;
    width: 4.375rem;
    height: 4.375rem;
    text-align: center;
    border-radius: 100%;
    position: relative;
    color: var(--bs-white);
    border: 2px solid green; /*var(--bs-secondary);*/
    -webkit-transition: var(--bs-transition-slow);
    transition: var(--bs-transition-slow);
	
}

.info-section .contact-corn {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.875rem;
    background-color: var(--bs-secondary);
    border-radius: inherit;
    -webkit-transition: var(--bs-transition-slow);
    transition: var(--bs-transition-slow);
}

.info-section .contact-info .text { color: var(--bs-secondary-dark); }

.info-section .contact-area:hover .contact-icon,
.info-section .contact-area:focus-within .contact-icon {
    border-color: green; /* var(--bs-primary);*/
}

.info-section .contact-area:hover .contact-corn, 
.info-section .contact-area:focus-within .contact-corn {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}

.info-section .contact-area:hover .contact-icon,
.info-section .contact-area:focus-within .contact-icon {
    -webkit-animation: rubberBand 0.6s ease-in-out alternate;
    -moz-animation: rubberBand 0.6s ease-in-out alternate;
    -ms-animation: rubberBand 0.6s ease-in-out alternate;
    animation: rubberBand 0.6s ease-in-out alternate;
}

.info-section .contact-area:hover .contact-corn{
   background-color: green; /*var(--bs-white);*/ 
}


/* Creates Icon Bounce Effect on Hover */
@-webkit-keyframes rubberBand {
  from {    -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }

30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
}

40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
}

50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
}

65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
}

75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
}

to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
}

40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
}

50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
}

65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
}

75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
}

to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

/* ============================================================================================================================================================================================================ */

/*
 * ==========================================
 *   [Info Section Layout Two/ UniPPS Highlights]
 * ==========================================
 */


.header-nine .info-section .layout-2 .col-lg-3:first-child .widget-contact {
    border-radius: 40px 0px 0px 40px;
}
.header-nine .info-section .layout-2 .col-lg-3:last-child .widget-contact {
    border-radius: 0px 40px 40px 0px;
}
.header-nine .info-section .layout-2 .contact-area:hover .contact-icon, .info-section .layout-2 .contact-area:focus-within .contact-icon {
    border-color: var(--bs-primary);
}
.header-nine .info-section .layout-2 .contact-icon {
    margin-right: 0;
    margin-bottom: 1.25rem;
    width: 4.875rem;
    height: 4.875rem;
    text-align: center;
    border-radius: 10px;
    position: relative;
    z-index: 0;
    border: none;
    color: var(--bs-white);
    -webkit-transition: var(--bs-transition-slow);
    transition: var(--bs-transition-slow);
}

.header-nine .info-section .layout-2 .contact-icon:after{
    content: '';
    position: absolute;
    margin: 0 auto;
    text-align: center;
    left: -5px;
    right: -5px;
    bottom: -5px;
    top: -5px;
    opacity: 1;
    width: 100%;
    height: 100%;
    margin: auto;
	/* Dashed Line!*/
    /*background: linear-gradient(90deg, var(--bs-secondary) 50%, transparent 50%), linear-gradient(90deg, var(--bs-secondary) 50%, transparent 50%), linear-gradient(0deg, var(--bs-secondary) 50%, transparent 50%), linear-gradient(0deg, var(--bs-secondary) 50%, transparent 50%);*/
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 8px 2px, 8px 2px, 2px 8px, 2px 8px;
    background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0px;
    border-radius: 10px;
    padding: 10px;
    -webkit-animation: dash 5s linear infinite;
    animation: dash 5s linear infinite;
    transition: all 0.3s;
}


.header-nine .info-section:not(.support-section) .layout-1 .widget-contact {
    background: var(--bs-white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.header-nine .info-section .layout-2 .contact-area:hover .contact-corn, .info-section .layout-2 .contact-area:focus-within .contact-corn {
    color: var(--bs-white);
    border-color: var(--bs-white);
    background-color: var(--bs-white);
}

.header-nine .info-section .layout-2 .widget-contact::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bs-secondary);
    z-index: -1;
    border-radius: 0px;
    transition: all 0.5s ease 0s;
    overflow: hidden;
}
.header-nine .info-section .layout-2 .widget-contact:hover .title,
.header-nine .info-section .layout-2 .widget-contact:focus-within .title{
 color: var(--bs-primary);
}
.header-nine .info-section .layout-2 .widget-contact:hover .text,
.header-nine .info-section .layout-2 .widget-contact:focus-within .text {
    color: var(--bs-white);
}
.header-nine .info-section .layout-2 .widget-contact:hover::before,
.header-nine .info-section .layout-2 .widget-contact:focus-within::before{
    width: 100%;
    left: 0;
    right: auto;
}

.header-nine .layout-2 .widget-contact:hover .contact-area .contact-icon i,
.header-nine .layout-2 .widget-contact:hover .contact-area .contact-icon img,
.header-nine .layout-2 .widget-contact:focus-within .contact-area .contact-icon i,
.header-nine .layout-2 .widget-contact:focus-within .contact-area .contact-icon img {
    -webkit-animation: buzz-out 1.25s linear infinite;;
    animation: buzz-out 1.25s linear infinite;;
}

.header-nine .info-section .layout-2 .widget-contact:hover .contact-corn,
.header-nine .info-section .layout-2 .widget-contact:focus-within .contact-corn {
    color: var(--bs-white);
    border-color: var(--bs-white);
    background-color: var(--bs-secondary);
} 

.header-nine .info-section .layout-2 .widget-contact:hover .contact-icon:after,
.header-nine .info-section .layout-2 .widget-contact:focus-within .contact-icon:after{
 -webkit-animation: dash 5s linear infinite;
 animation: dash 5s linear infinite;
 /*background: linear-gradient(90deg, var(--bs-primary) 50%, transparent 50%), linear-gradient(90deg, var(--bs-primary) 50%, transparent 50%), linear-gradient(0deg, var(--bs-primary) 50%, transparent 50%), linear-gradient(0deg, var(--bs-primary) 50%, transparent 50%);*/
 background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
 background-size: 8px 2px, 8px 2px, 2px 8px, 2px 8px;
 background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0px;
}

@-webkit-keyframes dash {
    to {
        background-position: 100% 0%,0% 100%,0% 0%,100% 100%
    }
}

@keyframes dash {
    to {
        background-position: 100% 0%,0% 100%,0% 0%,100% 100%
    }
}

/* Header Kotakt - Telefonnummer Verhalten on hover */
.header-nine .widget .contact-area:hover .contact-icon {
	background-color: var(--bs-secondary);
} 

/*
 * ==========================================
 *   [Design Section / UniPPS Funktionen]
 * ==========================================
 */

.design-section .row {
	margin-bottom: 50px; /* space between description and functiones */
}

.design-section {
    position: relative;
    z-index: 0;
	background-color: var(--bs-white); 
}

.design-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 0;
    background-color: var(--bs-white);
    box-shadow: 0 0 12px -1px rgb(0 0 0 / 0.2);
}

.design-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 0;
    background-color: var(--bs-primary);
    z-index: -1;
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.design-item:hover:before,
.design-item:focus-within:before {
    width: 100%;
}

.design-item:hover a,
.design-item:focus-within a {
    color: var(--bs-white);
}

.design-icon {
    width: 3.125rem;
    padding: 0.719rem 0.75rem;
    margin-right: 1rem;
    text-align: center;
    font-size: 1.125rem;
    color: var(--bs-white);
    background-color: var(--bs-primary);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.design-item:hover .design-icon,
.design-item:focus-within .design-icon {
    color: var(--bs-primary);
    background-color: var(--bs-white);
}

.design-img {
    width: 100%;
    height: 90%; /* vertical placement of image */
    display: flex;
    align-items: center;
    animation: bounce_one 5s linear infinite;
}

.design-img img { max-height: 1900.6875rem; }

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Fun Fact Section / UniPPS Zahlen]
 * ==========================================
 */

.funfact-single {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--bs-white);
    padding: 2px;
}

.funfact-single p {
    margin-bottom: 0;
}

.funfact-icon {
    font-size: 100px;
    width: 100px;
    line-height: 100px;
    margin: auto;
    margin-bottom: 16px;
    border-radius: 6.25rem;
    overflow: hidden;
}

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Gallery Section / UniPPS Masken]
 * ==========================================
 */


.col figure.gallery-item { margin: 0; }

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--unipps-blue);
}

.gallery-item img {
    opacity: .9;
    -webkit-transition: all .35s;
    -webkit-transform: translate3d(0,0,0) scale(1.05);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
    opacity: .2;
}

.gallery-item figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    font-weight: 600;
    color: var(--bs-white);
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--bs-transition-slow);
    transition: var(--bs-transition-slow);
}

.gallery-item figcaption:before,
.gallery-item figcaption:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-item figcaption:after {
    background-color: rgba(255,255,255,.4);
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-101%,0);
    -webkit-transition: all .6s;
}

.gallery-item:hover figcaption:after,
.gallery-item:focus-within figcaption:after {
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,101%,0);
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,101%,0);
}

.gallery-item figcaption:before {
    content: "\f067";
    font-family: var(--bs-font-awesome);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 19%;
    height: 22%;
    line-height: 1;
    background-color: var(--bs-white);
    border-radius: 50%;
    bottom: 10px;
    top: auto;
    right: 10px;
    left: auto;
    transform: translateX(500%);
    opacity: 0;
    visibility: hidden;
    transition: var(--bs-transition-very-slow);
}

.gallery-item:hover figcaption:before,
.gallery-item:focus-within figcaption:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
    opacity: 1;
    visibility: visible;
}

.gallery-icon {
    position: relative;
    z-index: 1;
}

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Service Section / UniPPS Blog Posts]
 * ==========================================
 */

.theme-circle { opacity: 0; /* "deletes" SpinTech Logo */ }

.service-section {
	margin-top: 100px; 
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.theme-item {
    height: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 0.625rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
	color: var(--unipps-dark-blue);
    
	-webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);

	/* Blog Post Gradient */
	background: var(--unipps-light-blue);  /* fallback colour */	
	background: -webkit-linear-gradient(rgba(0, 61, 165, 0.8), rgba(249, 249, 249, 0.8));
    background: linear-gradient(rgba(0, 61, 165, 0.8), rgba(249, 249, 249, 0.8));
}

.service-section .theme-item:hover,
.service-section .theme-item:focus-within {
    border-radius: 0.625rem;
    background-color: var(--bs-secondary);
	color: var(--bs-white);
    -webkit-box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
	
    -webkit-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
}

.theme-card-circle .row-cols-lg-3 .theme-item {
    width: 338px;
    height: 338px;
    margin: auto;
}

.theme-card-circle .theme-item {
    border-radius: 100%;
    position: relative;
    background-color: var(--bs-white);
}

.theme-card-circle .theme-item:hover,
.theme-card-circle .theme-item:focus-within {
    border-radius: 100%;
}

.theme-icon {
    position: relative;
    display: block;
    width: 8.125rem;
    height: 8.125rem;
    padding: 1.875rem;
    margin: 0 auto 1.25rem;
    overflow: hidden;
}

.theme-icon .theme-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/clipArt/circle-icon.png) center center no-repeat;
}

.theme-icon .theme-circle {
    -webkit-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

.theme-icon .theme-corn {
    position: relative;
    width: 4.375rem;
    height: 4.375rem;
    font-size: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(--bs-orange-dark);
    background-color: var(--bs-orange-dark-light);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.theme-corn i,
.theme-corn img {
    height: 2.1875rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.theme-item .circles-spin {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    -webkit-animation: spinReverse 30s linear infinite;
    animation: spinReverse 30s linear infinite;
}

.col:nth-child(4) .theme-item .theme-corn,
.col:nth-child(10) .theme-item .theme-corn,
.col:nth-child(16) .theme-item .theme-corn {
    background-color: #f3e3f6;
    color: #9916b1;
}

.col:nth-child(4) .theme-item .circles-spin .circle-one,
.col:nth-child(10) .theme-item .circles-spin .circle-one,
.col:nth-child(16) .theme-item .circles-spin .circle-one {
    background-color: #9916b1;
}

.col:nth-child(3) .theme-item .theme-corn,
.col:nth-child(9) .theme-item .theme-corn,
.col:nth-child(15) .theme-item .theme-corn,
.col:nth-child(21) .theme-item .theme-corn {
    background-color: #d6ebea;
    color: #116961;
}

.col:nth-child(3) .theme-item .circles-spin .circle-one,
.col:nth-child(9) .theme-item .circles-spin .circle-one,
.col:nth-child(15) .theme-item .circles-spin .circle-one,
.col:nth-child(21) .theme-item .circles-spin .circle-one {
    background-color: #116961;
}

.col:nth-child(3) .theme-item .circles-spin .circle-two,
.col:nth-child(6) .theme-item .circles-spin .circle-two,
.col:nth-child(9) .theme-item .circles-spin .circle-two,
.col:nth-child(12) .theme-item .circles-spin .circle-two,
.col:nth-child(15) .theme-item .circles-spin .circle-two,
.col:nth-child(18) .theme-item .circles-spin .circle-two,
.col:nth-child(21) .theme-item .circles-spin .circle-two {
    background-color: var(--bs-orange-dark);
}

.col:nth-child(6) .theme-item .theme-corn,
.col:nth-child(12) .theme-item .theme-corn,
.col:nth-child(18) .theme-item .theme-corn {
    background-color: #e7ffe2;
    color: #2eb01c;
}

.col:nth-child(6) .theme-item .circles-spin .circle-one,
.col:nth-child(12) .theme-item .circles-spin .circle-one,
.col:nth-child(18) .theme-item .circles-spin .circle-one {
    background-color: #2eb01c;
}

.col:nth-child(2) .theme-item .theme-circle,
.col:nth-child(5) .theme-item .theme-circle,
.col:nth-child(8) .theme-item .theme-circle,
.col:nth-child(11) .theme-item .theme-circle,
.col:nth-child(14) .theme-item .theme-circle,
.col:nth-child(17) .theme-item .theme-circle,
.col:nth-child(20) .theme-item .theme-circle {
    -webkit-animation: spinReverse 20s linear infinite;
    animation: spinReverse 20s linear infinite;
}

.col:nth-child(2) .theme-item .theme-corn,
.col:nth-child(8) .theme-item .theme-corn,
.col:nth-child(14) .theme-item .theme-corn,
.col:nth-child(20) .theme-item .theme-corn {
    background-color: #c9e1ff;
    color: var(--bs-primary);
}

.col:nth-child(2) .theme-item .circles-spin,
.col:nth-child(5) .theme-item .circles-spin,
.col:nth-child(8) .theme-item .circles-spin,
.col:nth-child(11) .theme-item .circles-spin,
.col:nth-child(14) .theme-item .circles-spin,
.col:nth-child(17) .theme-item .circles-spin,
.col:nth-child(20) .theme-item .circles-spin {
    -webkit-animation-name: spin;
    animation-name: spin;
}

.col:nth-child(2) .theme-item .circles-spin .circle-one,
.col:nth-child(8) .theme-item .circles-spin .circle-one,
.col:nth-child(14) .theme-item .circles-spin .circle-one,
.col:nth-child(20) .theme-item .circles-spin .circle-one {
    background-color: var(--bs-primary);
}

.col:nth-child(2) .theme-item .circles-spin .circle-two,
.col:nth-child(5) .theme-item .circles-spin .circle-two,
.col:nth-child(8) .theme-item .circles-spin .circle-two,
.col:nth-child(11) .theme-item .circles-spin .circle-two,
.col:nth-child(14) .theme-item .circles-spin .circle-two,
.col:nth-child(17) .theme-item .circles-spin .circle-two,
.col:nth-child(20) .theme-item .circles-spin .circle-two {
    background-color: var(--bs-orange-dark);
}

.col:nth-child(5) .theme-item .theme-corn,
.col:nth-child(11) .theme-item .theme-corn,
.col:nth-child(17) .theme-item .theme-corn {
    background-color: #f9e1f0;
    color: #cb0680;
}

.col:nth-child(5) .theme-item .circles-spin .circle-one,
.col:nth-child(11) .theme-item .circles-spin .circle-one,
.col:nth-child(17) .theme-item .circles-spin .circle-one {
    background-color: #cb0680;
}

.theme-item .circles-spin .circle-one {
    position: absolute;
    left: 0.3125rem;
    bottom: 0.3125rem;
    width: 0.75rem;
    height: 0.75rem;
    z-index: 1;
    border-radius: 50%;
    background-color: var(--bs-orange-dark);
}

.theme-item > .circles-spin .circle-one {
    left: 2.8125rem;
    bottom: 2.8125rem;
}

.theme-item .circles-spin .circle-two {
    position: absolute;
    top: 0.3125rem;
    right: 0.3125rem;
    width: 0.75rem;
    height: 0.75rem;
    z-index: 1;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    background-color: #1c17a0;
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.theme-item > .circles-spin .circle-two {
    right: 2.8125rem;
    top: 2.8125rem;
}

.theme-item:hover .circles-spin .circle-two,
.theme-item:focus-within .circles-spin .circle-two {
    opacity: 1;
    visibility: visible;
}

.theme-item:hover div.theme-icon div.theme-corn,
.theme-item:focus-within div.theme-icon div.theme-corn {
    background-color: var(--bs-white);
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 0.17);
}

.theme-link {
    display: inline-block;
    overflow: hidden;
}

.theme-link .read-link:after {
    content: "\f054";
    height: 0.9375rem;
    width: 0.9375rem;
    border-radius: 1.25rem;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    font-size: 0.625rem;
}

.theme-link .read-link:hover,
.theme-link .read-link:focus {
    color: var(--bs-primary);
}

.theme-link .read-link:hover:after,
.theme-link .read-link:focus:after {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Footer]
 * ==========================================
 */

.footer-section .footer-main .container .row a { color: var(--bs-white); }

.footer-section .footer-above .container .row .owl-stage .owl-item-active .contact-icon .text a { color: var(--bs-white); }

.main-footer {
    background-color: var(--unipps-blue);
    color: var(--bs-white);
}

.main-footer .gallery-item { border: 1px solid #202052; }
.main-footer .gallery-item figcaption:before { font-size: 0.5rem; }

.footer-above > .container > .row { padding: 25px 0; }

.footer-above-carousel.owl-carousel {
    max-width: 480px;
    margin: 0 0 0 auto;
}

.footer-above-carousel .widget {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: inline-flex;
    padding-right: 15px;
    border-right: 1px solid transparent;
    margin-right: -15px;
}

.footer-above-carousel .owl-item.active:not(.cloned) .widget { border-right-color: var(--bs-primary); }

.footer-above-carousel .contact-area { justify-content: flex-end; }

.footer-main > .container > .row {
    padding: 60px 0;
    border-width: 0;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-style: solid;
    border-color: var(--bs-primary);
}

.footer-main .contact-area { align-items: baseline; }

.footer-main .contact-area:not(:last-child) { margin-bottom: 1.5rem; }

.footer-main .contact-icon {
    width: 16px;
    height: auto;
    font-size: 100%;
    margin-right: 10px;
}

.footer-main .contact-info .text {
    line-height: 0;
	font-size: 20px;
}

/* Delete Image Border */
.footer-main .wp-block-image .wp-image-1472 {
	border: none;
}

.footer-copyright > .container > .row { padding: 5px 0; }

.copyright-text a { color: 	var(--unipps-blue); }

.footer-copyright .widget_text .textwidget .logo { margin-bottom: 40px; }


/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Scrolling Up]
 * ==========================================
 */

.scrollingUp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: .9s;
    border-radius: 2px;
    font-size: 20px;
    border: none;
	z-index: 5;
    visibility: hidden;
    opacity: 0;
}

.scrollingUp.is-active { 
    visibility: visible;
    opacity: 1;
}

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [CTA Section]
 * ==========================================
 */

.fa-cloud-download { 
	opacity: 0; /* "Deletes" Download Button */
}

.cta-section {
    display: block;
    color: var(--bs-white);
    overflow: hidden;
    position: relative;
}

/* Home CTA */
.home-cta { background-color: var(--unipps-blue); }
.home-cta .cta-wrapper{ padding: 94px 0; }

/* Small CTA */
.about-cta { padding: 50px; }
.about-cta, .about-cta .cta-wrapper { background-color: var(--bs-secondary); }

.cta-wrapper {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex/*-align*/: flex-start;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cta-section:not(.home-cta) .home-cta.cta-wrapper {
    background-color: var(--unipps-blue);
    padding: 30px 35px;
}

.cta-content h3 { margin-bottom: 25px; }

.cta-content h5 { margin-bottom: 25px; }

.cta-content h5 small {
    font-weight: normal;
	margin-bottom: 25px;
}

.cta-content p { margin-bottom: 25px; }

.cta-wrapper .btn-white {
background-color: #5fffff;
}


.cta-wrapper .btn-white:hover, btn-primary:hover, 
.cta-wrapper .btn-white:focus, btn-primary:focus, 
.cta-wrapper .btn-white:active, btn-primary:active {
    color: var(--unipps-blue);
}

.cta-btn-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cta-wrapper .read-link {
    font-size: 1.25rem;
    margin-left: 30px;
}

.cta-wrapper .read-link:hover,
.cta-wrapper .read-link:focus {
    color: var(--bs-white);
}

.cta-label { margin-left: 10px; }

.call-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.wave {
    animation: waveIn 1.2s infinite ease-out;
    transform-origin: 50% 50%;
}

.wave-sm { animation-delay: .3s; }
.wave-md { animation-delay: .45s; }
.wave-lg { animation-delay: .3s; }

/* ============================================================================================================================================================================================================ */


/*
 * ==========================================
 *   [About CTA]
 * ==========================================
 */

.heading-title h3 {
    color: var(--bs-secondary);
}

.skills-img,
.about-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    animation: bounce_one 5s linear infinite;
}

.check-list li {
    flex: 50%;
    margin-top: 20px;
    font-weight: 700;
    color: var(--bs-secondary);
}

.check-list li i {
    color: var(--bs-primary);
    margin-right: 3px;
}

.about-widget {
    border-top: 4px solid #eeeeee;
    padding-top: 20px;
    color: var(--bs-secondary);
}

.about-widget .contact-info .title {
    font-size: 1.125rem;
    color: var(--bs-primary);
    margin-bottom: 5px;
}

.about-widget .contact-info .text {
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===================================================================================================================================================================================================== */
/* ==================================================================================================================================================================================================== */
/* ============================================================================================================================================================================================= */
/* =================================================================================================================================================================== */


/*
 * ==========================================
 *   [Our Journey / Unsere Meilensteine]
 * ==========================================
 */

.journey-section {
	margin-top: 150px; 
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: var(--bs-white);
    z-index: 0;
}

.journey-section:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-white);
    opacity: 1;
    z-index: -1;
}

.timeline {
    margin-top: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
}

.timeline-item {
    padding-bottom: 6.25rem;
    position: relative;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline strong {
    display: block;
    font-size: 1.125rem;
    color: var(--bs-secondary);
}

.timeline-item p {
    margin-top: 0.45rem;
    margin-bottom: 0;
    font-weight: 500;
}

.timeline-item .timeline-date {
    color: var(--unipps-dark-blue);
    font-size: 1.5625rem;
    font-weight: 700;
}

.timeline::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    border-left: 2px solid var(--unipps-blue); /* vertical line */
    height: 100%;
    transform: translateX(-50%);
}

.timeline::after {
    content: "Start";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90px;
    height: 90px;
    line-height: 80px;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--bs-white);
    background-color: var(--bs-primary);
    border-radius: 100px;
    border: 5px solid transparent;
    -webkit-transition: var(--unipps-dark-blue);
    transition: var(--unipps-dark-blue);
}

.timeline-content strong a {
	color: var(--bs-white); 
}

.timeline-content {
    position: relative;
    border-radius: 10px;
    background-color: var(--unipps-blue);
	color: var(--bs-white);
    margin-top: -5.3%;
    padding: 2.12rem;
    overflow: hidden;
    z-index: 0;
}

.timeline-content:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--bs-secondary);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.timeline-item:nth-child(odd) .timeline-content:after { transform: translateX(100%); }

.timeline-item:nth-child(even) .timeline-content:after { transform: translateX(-100%); }

.timeline-item:hover:nth-child(odd) .timeline-content:after {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

.timeline-item:hover:nth-child(even) .timeline-content:after {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

.timeline-item:hover .timeline-content,
.timeline-item:hover .timeline-content strong a {
    color: var(--bs-white);
}

.timeline-item:nth-child(odd) strong,
.timeline-item:nth-child(odd) p {
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-date { text-align: left; }

.timeline-item:nth-child(even) .timeline-date { text-align: right; }

.timeline-circle { position: relative; }

.timeline-circle::before {
    content: "";
    width: 30px;
    height: 30px;
    border: 2px solid var(--bs-white);
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-5%);
    background-color: var(--bs-primary);
    -webkit-transition: var(--unipps-dark-blue);
    transition: var(--unipps-dark-blue);
}

.timeline-item:hover .timeline-circle::before { background-color: var(--unipps-dark-blue); }

.timeline-circle img {
    position: relative;
    z-index: 100;
}

/* ============================================================================================================================================================================================================ */




/*===== 26. Pagination =====*/

.navigation.pagination {
    display: inline-flex;
}

nav.woocommerce-pagination ul, .pagination .nav-links {
    display: inline-flex;
}

.pagination .page-numbers:not(.dots) {
    font-weight: 600;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    display: flow-root;
    font-size: 16px;
    line-height: 1.1;
    min-width: 44px;
    text-align: center;
    padding: 0.72rem 0.35rem;
    transition: all 0.3s ease 0s;
    vertical-align: baseline;
    white-space: nowrap;
    border-radius: 6.25rem;
    cursor: pointer;
}

.pagination .page-numbers.dots {
    display: inline-block;
    line-height: 16px;
    font-size: 50px;
    margin-right: 10px;
}

.pagination .nav-links a:hover,
.pagination .nav-links a:focus,
.pagination .nav-links .page-numbers.current {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.pagination .page-numbers:not(.dots):not(:last-child) {
    margin-right: 10px;
}

.sp-post-pagination div.nav {
    display: inline-flex;
    align-items: center;
}

.sp-post-pagination div.nav>span {
    display: inline-block;
    margin: 0 10px;
    line-height: 40px;
    padding: 0 10px;
    font-weight: 700;
}

.sp-post-pagination div.nav a {
    display: inline-block;
    color: var(--bs-white);
    padding: 5px 25px;
    font-weight: 600;
    letter-spacing: 0.185px;
    position: relative;
    z-index: 0;
    border-radius: 6.25rem;
    background-color: var(--bs-primary);
    vertical-align: middle;
    display: inline-block;
    padding: 0 20px;
    line-height: 40px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*===== // =====*/

/*===== 27. Tab Filter =====*/

.st-tab-filter {
    width: 100%;
    margin: -20px 0 25px;
    padding: 0;
    display: block;
}

.st-tab-filter ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.st-tab-filter a {
    display: inline-block;
    position: relative;
    letter-spacing: .15px;
    padding: 10px 20px;
    font-weight: 500;
    border: none;
    margin-top: 20px;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    border-radius: 6.25rem;
    text-transform: capitalize;
    z-index: 0;
}

.st-tab-filter a:not(:last-child) {
    margin-right: 20px;
}

.st-tab-filter:not(.tab-swipe-filter) a.active,
.st-tab-filter:not(.tab-swipe-filter) a:hover,
.st-tab-filter:not(.tab-swipe-filter) a:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.st-tab-filter.tab-swipe-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    max-width: max-content;
    margin: auto;
    border-radius: 6.25rem;
    background-color: var(--bs-secondary);
    z-index: 1;
}

.st-tab-filter.tab-swipe-filter a {
    margin: 0;
    background: none;
    padding: 15px 22px;
}

/*===== // =====*/

/*===== 28. FAQ =====*/
.faq-section {
	background-color: var(--bs-white); 
}

.faq-section .container {
	margin-top: 150px; 
}
.accordion .card {
    border-radius: 3px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /*box-shadow: 0px 0px 6px 0px rgba(33, 33, 33, 0.17);*/
}

.accordion .card:not(:first-child) {
    margin-top: 2.24rem;
}

.accordion .card>.card-header {
    border-bottom: 0;
    padding: 0;
    background-color: var(--bs-white);
}

.acc-btn {
    padding: 27px 55px 27px 27px;
    font-weight: 700;
    color: var(--bs-secondary);
    position: relative;
    text-decoration: none;
    border-radius: 0;
    letter-spacing: 0.2px;
}

.acc-btn:after {
    content: "\f054";
    font-family: var(--bs-font-awesome);
    font-weight: 900;
    position: absolute;
    top: 34%;
    right: 30px;
    font-size: 16px;
    transform: rotate(90deg);
    transition: var(--bs-transition);
}

.acc-btn.collapsed:after {
    transform: rotate(0deg);
}

button.acc-btn,
button.acc-btn:hover,
button.acc-btn:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

.card .card-body {
    padding: 28px;
    padding-top: 0;
    font-weight: 500;
}

/*===== // =====*/

/*===== 29. Author-Area =====*/

.author-details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 45px 48px;
    border-radius: 0;
    overflow: hidden;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
}

.author-details .section-header {
    width: 100%;
    display: block;
    margin-bottom: 1.5rem;
}

.single-comments-title h5,
.comment-reply-title,
.author-details .section-header h5 {
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding-left: 15px;
}

.single-comments-title h5:before,
.comment-reply-title:before,
.author-details .section-header h5:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--bs-primary);
    position: absolute;
    bottom: 3px;
    left: 0;
    border-radius: 6px;
}

.author-details .media {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.author-details .media .auth-mata {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-right: 1.5rem;
    margin-top: 1.35rem;
}

.author-details .media .auth-mata img {
    width: 65px;
    border-radius: 100%;
    border: 1px solid rgb(222 222 222 / 0.10);
}

.author-details .media .media-body {
    flex: 1;
}

.author-details h4, .author-details .author-widget {
    display: inline-block;
}

.author-details .author-widget {
    margin-bottom: 0.625rem;
}

.author-details .widget_social_widget li a {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

.author-details .widget_social_widget li a:hover,
.author-details .widget_social_widget li a:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.author-details .media .media-body h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    vertical-align: baseline;
}

.author-details .media .media-body h4 span,
.author-details .media .media-body p {
    font-weight: 500;
}

.author-details p {
    display: block;
    clear: both;
}

.author-details .btn {
    color: var(--bs-secondary);
    font-weight: 700;
    padding: 0.75rem 1.135rem;
    font-size: 0.95rem;
    letter-spacing: 0;
}

.author-details .btn:hover,
.author-details .btn:focus {
    border-color: var(--bs-white);
}

/*===== // =====*/

/*===== 30. Comments-Area =====*/

.comments-area {}

.single-comments-title,
.comments-title {
    margin-bottom: 1.25rem;
    text-align: left;
}

.comment-list {
    padding: 0;
    list-style: none;
    margin-bottom: 1.75rem;
}

.comments-area li {
    list-style: none;
}

.comments-area .comment-body {
    position: relative;
    padding: 30px 30px 30px 113px;
    min-height: 120px;
    overflow-wrap: break-word;
    border-radius: 250px;
    z-index: 0;
    box-shadow: 0px 0px 5.52px 0.48px rgba(33, 33, 33, 0.23);
}

.comments-area li:not(:last-child) .comment-body {
    margin-bottom: 1.25rem;
}

.comments-area .comment-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-weight: 600;
}

.comments-area .comment-meta .comment-author img {
    position: absolute;
    z-index: 0;
    left: 30px;
    top: 55px;
    bottom: 0;
    width: 65px;
    border-radius: 100px;
}

.comment-author b {
    font-weight: 700;
}

.comment-meta .comment-metadata {
    margin-left: 5px;
}

.comment-content {
    position: relative;
    z-index: 0;
    padding: 0.5rem 0 0.85rem;
}

.comment-content p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.comment-metadata .edit-link {
    margin-left: 10px;
}

.comment-metadata .edit-link,
.comment-body .reply {
    font-weight: 600;
    display: inline-block;
}

.comment-metadata .edit-link a,
.comment-body .reply a {
    display: inline-flex;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    border-radius: 100px;
    font-size: 12px;
}

.comment-metadata .edit-link a {
    padding: 0.594rem 0.973rem;
}

.comment-body .reply a {
    padding: 0.594rem 0.973rem;
}

.comment-metadata .edit-link a:hover,
.comment-body .reply a:hover,
.comment-metadata .edit-link a:focus,
.comment-body .reply a:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.comment-body .reply {
    text-align: left;
}

.comment-list .children {
    position: relative;
    padding: 0;
    margin: 0;
    margin-left: 4.5rem;
    z-index: 0;
}

#cancel-comment-reply-link {
    color: var(--bs-primary);
    text-decoration: underline;
}

#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus {
    text-decoration: none;
}

/*===== // =====*/

/*===== 31. Form Part for Comment =====*/

.comment-respond {
    margin-bottom: 1.75rem;
}

.single-comments-title h5,
.comment-reply-title {
    text-align: left;
    color: var(--bs-secondary);
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.comment-form > p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    flex: 1 1 40%;
}

.comment-form > p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 1.25rem;
}

.comment-form p.comment-form-url:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 0;
}

.comment-form label {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 5px;
}

.comment-form .comment-form-cookies-consent label {
    margin-bottom: 0;
    vertical-align: middle;
    margin-left: 6px;
}

.comment-form .required {
    color: var(--bs-red);
}

.comment-form-comment {
    max-width: 100%;
    flex-basis: 100%;
}

.comment-form > p:not(:last-child) {
    margin-bottom: 1.25rem;
}

.comment-form-cookies-consent, .form-submit {
    width: 100%;
}

/*===== // =====*/

/*===== 32. Careers Page =====*/

.careers-section {
	margin-top: 100px; 
}

/* Beschreibungs Text */
.career-text {
	text-align: left; 
}

.benefits-section {
	background-color: var(--bs-white); 
}
.benefits-section .row {
	padding-top: 50px; 
}

.careers-section .careers-bg {
	padding-bottom: 50px; 
}

.careers-table table caption {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    text-align: center;
    color: var(--bs-secondary);
}

.support-cares .widget-contact,
.contact-section .widget-contact,
.locations-section .widget-contact,
.benefits-section .widget-contact {
    padding: 2.25rem 1.2rem;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    background-color: var(--bs-white);
    box-shadow: 0px 0px 7.52px 0.48px rgba(33, 33, 33, 0.23);
}

.contact-address .contact-area,
.support-cares .contact-area,
.contact-section .contact-area,
.locations-section .contact-area,
.benefits-section .contact-area {
    flex-wrap: wrap;
    justify-content: center;
}

.contact-address .contact-icon,
.support-cares .contact-icon,
.contact-section .contact-icon,
.locations-section .contact-icon,
.benefits-section .contact-icon {
    margin-right: 0;
    width: auto;
    height: auto;
    font-size: 70px;
    margin-bottom: 1.5rem;
    color: var(--bs-secondary);
}

/* jh: Disables Benefit Links */
.benefits-section a {
       pointer-events: none;
       cursor: default;
}

/*.contact-address .widget-contact:hover .contact-icon,
.contact-address .widget-contact:focus-within .contact-icon,
.support-cares .widget-contact:hover .contact-icon,
.support-cares .widget-contact:focus-within .contact-icon,
.contact-section .widget-contact:hover .contact-icon,
.contact-section .widget-contact:focus-within .contact-icon,
.locations-section .widget-contact:hover .contact-icon,
.locations-section .widget-contact:focus-within .contact-icon,
.benefits-section .widget-contact:hover .contact-icon,
.benefits-section .widget-contact:focus-within .contact-icon,*/
.benefits-section .widget-contact:hover,
.benefits-section .widget-contact:hover .contact-corn {
    color: white;
	background-color: var(--bs-secondary);
}


.contact-address .contact-corn,
.support-cares .contact-corn,
.contact-section .contact-corn,
.locations-section .contact-corn,
.benefits-section .contact-corn {
    display: inline-block;
    line-height: 68px;
}

.contact-address .contact-area .contact-icon i,
.contact-address .contact-area .contact-icon img,
.support-cares .contact-area .contact-icon i,
.support-cares .contact-area .contact-icon img,
.contact-section .contact-area .contact-icon i,
.contact-section .contact-area .contact-icon img,
.locations-section .contact-area .contact-icon i,
.locations-section .contact-area .contact-icon img,
.benefits-section .contact-area .contact-icon i,
.benefits-section .contact-area .contact-icon img {
    vertical-align: inherit;
}

.contact-address .contact-info,
.support-cares .contact-info,
.contact-section .contact-info,
.locations-section .contact-info,
.benefits-section .contact-info {
    width: 100%;
    text-align: center;
}

.contact-address .contact-info .title,
.support-cares .contact-info .title,
.contact-section .contact-info .title,
.locations-section .contact-info .title,
.benefits-section .contact-info .title {
    margin-bottom: 0.725rem;
}

/*===== // =====*/

/*===== 33. Locations Page  =====*/

.map-bg img {
    margin: auto;
}

.support-cares .widget-contact,
.contact-section .widget-contact,
.locations-section .widget-contact {
    border-radius: 0.625rem;
}

.locations-section .widget-contact {
    padding: 48px 44px;
}

.locations-section .contact-info .btn-link {
    text-decoration: none;
    box-shadow: none;
    padding: 0;
    font-weight: 700;
    margin-top: 2.5rem;
}

/*===== // =====*/

/*===== 34. Support Page =====*/

.support-section {
		margin: 0;
}

.support-section .container {
    margin-top: 150px; 

}

.support-section .container .row .col {
    margin-left: 160px; 

}

.support-section .contact-area {
    align-items: center;
}

.support-section .contact-icon {
    width: 5.625rem;
    height: 5.625rem;
}

.support-section .contact-corn {
    width: 4.5rem;
    height: 4.5rem;
    line-height: 4.2rem;
}

.support-cares .contact-corn {
    height: 105px;
    font-size: 6.5625rem;
    line-height: 105px;
}

/*===== // =====*/

/*===== 35. Contact Page =====*/

.contact-section .widget-contact { padding: 2.75rem; }

.contact-section .contact-icon { margin-bottom: 2rem; }

.contact-section .contact-corn {
    font-size: 5rem;
    height: 80px;
}

.map-area {
    border: 5px solid var(--bs-primary);
    height: 536px;
}

#map {
    width: 100%;
    height: 550px;
    display: block;
}

.map-area #map { height: 100%; }

.opening-panel { overflow: hidden; }

.opening-panel .opening-heading {
    text-align: center;
    padding: 16px 15px;
}

.opening-panel .opening-heading h4 { margin-bottom: 0; }

.opening-panel .opening-hours { padding: 2rem 1.75rem 3.5rem; }

.map-section .opening-panel .opening-hours { padding-bottom: 1.5rem; }

.opening-hours .st-grid-dl {
    padding: 0 10px;
    margin: 0;
}

.opening-hours .st-grid-dl dd {
    text-align: right;
    margin-bottom: 0;
}

.opening-hours .st-grid-dl dt,
.opening-hours .st-grid-dl dd {
    padding: 0.5em;
    font-weight: 500;
}

.opening-hours .st-grid-dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.opening-hours .st-grid-dl dt { grid-column-start: 1; }

.opening-hours .st-grid-dl dd { grid-column-start: 2; }

.opening-hours .widget_social_widget {
    text-align: center;
    margin-top: 2.5rem;
}

.opening-standard {
    color: var(--bs-white);
    border-radius: 5px;
}

.opening-standard .opening-heading { background-color: var(--bs-primary); }

.opening-standard .opening-hours { background-color: var(--bs-secondary); }

.opening-standard .opening-hours dt#today { border-radius: 5px 0 0 5px; }

.opening-standard .opening-hours dt#today+dd { border-radius: 0 5px 5px 0; }

.opening-standard .opening-hours dt#today,
.opening-standard .opening-hours dt#today+dd {
    background-color: var(--bs-primary);
}

.opening-standard .widget_social_widget li a {
    color: var(--bs-secondary);
    background-color: var(--bs-white);
}

.opening-classic { background-color: var(--bs-primary-light); }

.opening-classic .opening-heading {
    padding-top: 2.5rem;
    padding-bottom: 0;
}

.opening-classic .st-grid-dl dd#closed { color: #ec0223; }

.opening-classic .widget_social_widget li a {
    color: var(--bs-white);
    background-color: var(--bs-secondary);
}

.opening-panel .widget_social_widget li a:hover,
.opening-panel .widget_social_widget li a:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.bg-form input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not(:hover):not(:focus),
.bg-form input.form-control:not(:hover):not(:focus),
.bg-form textarea:not(:hover):not(:focus) {
    background-color: var(--bs-primary-light);
}

.send-your-enquiry form {
    display: flex;
    flex-wrap: wrap;
}

.send-your-enquiry form p:not(:nth-child(1)), .send-your-enquiry form p:not(:nth-child(2)) { width: 100%; }

.send-your-enquiry form p:nth-child(1), .send-your-enquiry form p:nth-child(2) { flex: 1; }

.send-your-enquiry form p:nth-child(1) { margin-right: 15px; }

.send-your-enquiry form p:last-child {
    text-align: center;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.form-section .widget-contact .widget-title {
    font-weight: 500;
    font-size: 98.25%;
    margin-bottom: 1rem;
}

.form-section .widget-contact-group {
    padding: 35px 30px;
    border-radius: 0.625rem;
    background-color: var(--bs-white);
    box-shadow: 0px 0px 7.52px 0.48px rgba(33, 33, 33, 0.23);
}

.form-section .widget-contact-group .contact-icon { margin-right: 15px; }

/*===== // =====*/

/*===== 36. Contact V2 =====*/

.contact-form-widget {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 1.875rem 3.125rem;
	border-bottom-left-radius: 12.5px; 
	border-bottom-right-radius: 12.5px; 
    background-color: var(--bs-primary);
}

.contact-form-widget .contact-area {
    justify-content: center;
}

.contact-form-widget .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.875rem;
    background-color: var(--bs-white);
    border-radius: 6.25rem;
}

.contact-form-widget .call-icon {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto 0;
    font-size: 50px;
    height: 72px;
    width: auto;
    color: var(--bs-white);
    opacity: 0.22;
    -webkit-animation: bounce_one 5s linear infinite;
    animation: bounce_one 5s linear infinite;
}

.contact-form-widget .call-icon i {
    display: inline-block;
    transform: rotate(-14deg);
}

.contact-form-widget .contact-info .title {
    font-size: 1.5625rem;
    margin-bottom: .15rem;
}

.contact-form-widget .contact-info .text {
    font-size: 2rem;
    font-weight: 700;
}

.contact-form-widget .contact-info {
    color: var(--bs-white);
}

.contact-form-widget .contact-info a:hover,
.contact-form-widget .contact-info a:focus {
    color: var(--bs-white);
}

.contact-form .contact-form-widget {
    padding: 2.4375rem 3.25rem;
}

.contact-form {
    position: relative;
    border-radius: 12.5px;
    max-width: 520px;
    margin: 0 auto;
    margin-top: -20%;
    color: var(--bs-secondary);
    box-shadow: 0px 0px 7.52px 0.48px rgba(33, 33, 33, 0.23);
    z-index: 1;
}

.contact-form .form-card {
	margin-top: 380px; /* adjusting the height of the form card */
    padding: 3.25rem;
	border-radius: 12.5px;  
    background-color: var(--bs-white);
}

.contact-form .heading-default {
    margin-bottom: 1.875rem;
}

.contact-form .heading-default h2 {
    font-size: 1.5625rem;
}

.contact-form .send-your-enquiry form p:nth-child(1),
.contact-form .send-your-enquiry form p:nth-child(2) {
    margin-right: 0;
    flex: auto;
}

.contact-form .send-your-enquiry .btn,
.contact-form .send-your-enquiry input[type='submit'] {
    width: 100%;
}

.contact-form .send-your-enquiry form p:last-child {
    margin-top: 2rem;
}

.contact-address .widget-contact {
    padding: 2rem 3rem;
}

.contact-address .col:not(:last-child) .widget-contact {
    border-right: 1px solid var(--bs-gray);
}

.contact-address .contact-info .text {
    line-height: 1.5;
}

.contact-section a.text-primary:hover u {
    text-decoration: none;
}

/*===== // =====*/

/*===== 37. 404 Page =====*/

.card-404 {
	margin-top: 50px; 
    color: var(--bs-secondary);
    max-width: 800px;
    display: inline-block;
}

.card-404-img img {
    -webkit-animation: bounce_one 5s linear infinite;
    animation: bounce_one 5s linear infinite;
}

.card-404 h1 i {
    color: var(--bs-primary);
    font-size: 16rem;
}

.card-404 h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21.875rem;
    font-weight: 900;
    letter-spacing: 1.25rem;
    line-height: 16rem;
    margin-bottom: 2.75rem;
}

.card-404-btn {
    display: inline-block;
}

.card-404-btn a:not(:first-child) {
    margin-left: 1rem;
}

/*===== // =====*/

/*===== 38. Coming-Soon Page =====*/

.comingsoon-page {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 41px 0 42px;
    color: var(--bs-white);
    background: url(../images/bg/comingSoon-bg.jpg) center center scroll rgba(0,0,0,.5);
    background-blend-mode: multiply;
    text-align: center;
    overflow: hidden;
    z-index: 0;
}

.comingsoon-text {
    width: 100%;
    max-width: 600px;
    display: inline-block;
}

.comingsoon-logo {
    margin-bottom: 1.2rem;
}

.comingsoon-wrapper .logo img {
    display: inline-block;
}

.comingsoon-form {
    width: 100%;
    max-width: 600px;
    display: inline-block;
}

.comingsoon-form input.form-control {
    min-height: 50px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 8rem;
    background: none;
    border-width: 2px;
    color: var(--bs-white);
    border-radius: 100px;
}

.comingsoon-form .form-control::-webkit-input-placeholder {
    color: var(--bs-white);
}

.comingsoon-form .form-control::-moz-placeholder {
    color: var(--bs-white);
}

.comingsoon-form .form-control::-ms-placeholder {
    color: var(--bs-white);
}

.comingsoon-form .form-control::placeholder {
    color: var(--bs-white);
}

.comingsoon-form.widget .btn.search-submit {
    border-radius: 0;
}

.comingsoon-fact .theme-item {
    width: 188px;
    height: 188px;
    margin: auto;
    padding: 0.35rem;
}

.comingsoon-fact .theme-icon {
    padding: 10px;
    width: 100%;
    height: 100%;
    margin-bottom: auto;
}

.comingsoon-fact .col .theme-icon .theme-corn {
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    background: none;
}

.comingsoon-fact .theme-icon h1 {
    font-size: 3.75rem;
    margin-bottom: 0;
}

.comingsoon-fact .theme-icon h5 {
    margin-bottom: 0;
}

.comingsoon-fact .theme-item > .circles-spin .circle-one {
    left: 1.37rem;
    bottom: 1.37rem;
}
.comingsoon-fact .theme-item > .circles-spin .circle-two {
    right: 1.37rem;
    top: 1.37rem;
}

.comingsoon-widget {
    margin-top: 1.5rem;
}

.comingsoon-widget .widget_social_widget li a {
    color: var(--bs-secondary);
    background-color: var(--bs-white);
}

.comingsoon-widget .widget_social_widget li a:hover,
.comingsoon-widget .widget_social_widget li a:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.comingsoon-v2 {
    color: var(--bs-secondary);
    background: #d4e9ff;
}

.comingsoon-v2 .comingsoon-form input.form-control {
    border-color: var(--bs-secondary);
    color: var(--bs-secondary);
}

.comingsoon-v2 .comingsoon-form .form-control::-webkit-input-placeholder {
    color: var(--bs-secondary);
}

.comingsoon-v2 .comingsoon-form .form-control::-moz-placeholder {
    color: var(--bs-secondary);
}

.comingsoon-v2 .comingsoon-form .form-control::-ms-placeholder {
    color: var(--bs-secondary);
}

.comingsoon-v2 .comingsoon-form .form-control::placeholder {
    color: var(--bs-secondary);
}

/*===== // =====*/

/*===== 39. Boxed Layout CSS =====*/
@media(min-width: 1200px) {
    body.boxed {
        width: 1170px;
        -webkit-box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
        box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
        margin: 0 auto;
        position: relative;
        background-color: #ffffff;
    }
}
@media (min-width: 768px) and (max-width: 979px)  {
    body.boxed {
        width: 100%;
    }
}
@media (max-width: 767px) {
    body.boxed {
        width: 100%;
    }
    body {
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media (min-width: 980px) and (max-width: 1199px) {
    body.boxed {
        width: 100%;
    }
}
/*===== // =====*/

/*===== 30. Header-Nav-White =====*/

.above-header .contact-area a:not(:hover):not(:focus) {
    color: var(--bs-white);
}

.header-nav-white .main-navigation {
    background-color: var(--bs-white);
    border-bottom-color: var(--bs-gray-light);
}

.header-nav-white .main-navbar:not(.breadcrumb-menu) .main-menu > li.menu-item:not(.focus):not(.active):not(:hover) > a:not(:focus):not(:hover) {
    color: var(--bs-secondary);
}

.header-nav-white .logo {
    color: var(--bs-secondary);
}

.header-nav-white .main-menu-right .menu-right-list > li:last-child {
    border-left-color: var(--bs-gray);
}

.header-nav-white .main-navigation-area .contact-info .title {
    color: var(--bs-secondary);
}

.header-nav-white .main-navigation-area .contact-info .text {
    color: var(--bs-primary);
}

.header-nav-white .main-header .header-search-toggle, .header-nav-white .cart-icon-wrap {
    color: var(--bs-secondary);
}

.header-nav-white .main-mobile-nav {
    background-color: var(--bs-white);
    border-bottom-color: var(--bs-gray-light);
}

.header-nav-white .menu-collapsed {
    border-color: var(--bs-secondary);
}

/*===== // =====*/

/* ============================================================================================================================================================================================================ */




/*===== header-nine =====*/

.header-nine .text-heading {
    color: var(--bs-white);
}
.header-nine .text-heading strong {
    text-decoration: none;
}
.header-nine .main-navigation {
    border-bottom: none;
    background-color:initial;
}
.header-nine .main-header{
    background-color: var(--bs-white);
}
.header-nine .main-mobile-nav{
    background-color: var(--bs-white);
}

/* jh: "deletes" dots shown in mobile version that open an empty menu */
.header-nine .main-mobile-menu .header-above-btn, .header-nine .main-mobile-menu .header-above-bar {
	opacity: 0; 
}

.header-nine .above-header .contact-icon {
    font-size: 16px;
    width: 33px;
    height: 33px;
    border-radius: 8px;
    margin-right: 10px;
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.header-nine .above-header {
    border-bottom: none;
    background-color: var(--bs-secondary);
}
.header-nine .header-navigation-menu {
    position: relative;
    background-color: var(--bs-white);
    border-radius: 0px 0px 30px 30px;
    padding-left: 35px;
    padding-right: 35px;
}
.header-nine .header-navigation-menu:before {
    content: " ";
    display: block;
    background: #ffffff;
    width: 52px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -17px;
    transform: skew(28deg);
    transition: 0.5s all ease;
    border-radius: 0px 0px 0px 20px;
    z-index: -1;
}
.header-nine .header-navigation-menu:after {
    content: " ";
    display: block;
    background: #ffffff;
    width: 52px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -25px;
    transform: skew(332deg);
    transition: 0.5s all ease;
    border-radius: 0px 0px 20px 0px;
    z-index: -1;
}
.header-nine .main-navbar:not(.breadcrumb-menu) .main-menu > li.menu-item:not(.focus):not(.active):not(:hover) > a:not(:focus):not(:hover) {
    color: var(--bs-secondary);
}
.header-nine .main-menu-right > ul li:last-child {
    border-left: none;
}

.header-nine .main-menu-right > ul li:last-child {
    padding-left: 2.9375rem !important;
}
.header-nine .main-navigation .contact-area {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    padding: 8px 25px 8px 10px;
    border-radius: 50px;
}
.header-nine .logo {
    color: var(--bs-secondary);
}
.header-nine .main-navigation .contact-area .contact-icon {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    line-height: 1;
    margin-right: 10px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}
.header-nine .main-navbar:not(.breadcrumb-menu) .main-menu > li.menu-item:not(.focus):not(.active):not(:hover) > a:not(:focus):not(:hover) {
    color: var(--bs-secondary);
}
.header-nine .main-menu-right > ul li:last-child {
    border-left: none;
}

.header-nine .main-menu-right > ul li:last-child {
    padding-left: 2.9375rem !important;
}
.header-nine .main-navigation .contact-area {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    padding: 8px 25px 8px 10px;
    border-radius: 50px;
}
.header-nine .main-navigation .contact-area .contact-icon {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    line-height: 1;
    margin-right: 10px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}
.header-nine .main-content h1 span {
    color: var(--bs-primary);
}
.header-nine .main-content h6 {
  display: inline-block;
  padding: 14px 1.0625rem;
  border-radius: 8px 0px 0px 8px;
  position: relative;
  font-size: 1rem;
  margin-bottom: 2.375rem;
  padding-left: 1em;
  padding-right: 2em;
  background-color: var(--bs-primary);
}
.header-nine .main-content h6:after {
  border-left: 20px solid var(--bs-primary);
}

.header-nine .main-content h6:after {
  content: "";
  position: absolute;
  border-bottom: 24px solid transparent;
  border-top: 24px solid transparent;
  height: 0px;
  width: 0px;
  bottom: 0;
  margin-right: -20px;
  right: 0;
}

.header-nine .navigation-wrapper {
    background-color: var(--bs-white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.breadcrumb-area {    /* "deletes" the image behind the header */ 
	max-height: 10px;
    opacity: 1; 
}




/* ==== 40. UniPPS Page Settings ==== */



.post-section .container .row .col-lg-8 {
	margin: auto; /* centers all custom pages */ 
}
.unipps-pg .wp-block-contact-form-7-contact-form-selector {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

	.unipps-pg h1, 
	.unipps-ueber-uns-pg h1, .unipps-datenschutz-pg h1, .unipps-impressum-pg h1, 
    .unipps-referenz-hsb h1, .unipps-referenz-remstal h1, .unipps-referenz-marposs h1, .unipps-referenz-pfingstweid h1,
	.unipps-blog h1
{

	font-family: var(--bs-font-sans-serif); 
	font-size: 40px;
    font-style: bold; 
	color: var(--unipps-blue);
	text-align: center; 
}

.unipps-ueber-uns-pg h2,
.unipps-pg h2
{
	font-family: var(--bs-font-sans-serif); 
	font-size: 25px;
    font-style: bold; 
	color: var(--bs-secondary);
}

.unipps-datenschutz-pg h3 {
	font-family: var(--bs-font-sans-serif); 
	font-size: 20px;
    font-style: bold; 
}

.unipps-referenzen-text {
	text-align: left; 
}
.unipps-referenzen-gallerie-box {
	justify-content: center; align-items: center; display: flex; /* center align references */ flex-wrap: wrap; /* erlaubt Zeilenumbruch */
}

.unipps-referenzen-gallerie-bild {
    margin-right: 50px; 
	background-size:contain;
    width: 150px;
    height:100px;
    background-repeat: no-repeat;
    display: inline-block;
}

.unipps-referenzen-gallerie-bild:hover {
	transition: .25s; 
	transform: scale(1.2); 
}


/* Kontaktformular */
/*.wpcf7-form {
	margin: auto; 
	width: 500px; 
	
	border-radius: 50px;
	background: var(--unipps-light-blue);  	
	background: -webkit-linear-gradient(rgba(0, 61, 165, 0.8), rgba(249, 249, 249, 0.8));
    background: linear-gradient(rgba(0, 61, 165, 0.8), rgba(249, 249, 249, 0.8));
	
	color: white;  
	text-align: center; 
	font-weight: bold; 
	

}


.kontaktformular .submit-btn {
	background-color: red; 
} 

.wpcf7-form .wpcf7-form-control-wrap {
   margin: auto; 
}*/

/* ============================================================================================================================================================================================ */


/*
 * ==========================================
 *   [Shapes]
 * ==========================================
 */

.shape1 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape2 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape3 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape4 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape5 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape6 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape7 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape8 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape9 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape10 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape11 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape12 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape13 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape14 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape15 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape16 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape17 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape18 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape19 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape20 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape21 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape22 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape23 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape24 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape25 { opacity: 0; /* "Deletes" Shape */ position: absolute; } 
.shape26 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape28 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape29 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape30 { opacity: 0; /* "Deletes" Shape */ position: absolute; }
.shape31 { opacity: 0; /* "Deletes" Shape */ position: absolute; }

/* ============================================================================================================================================================================================ */


/*
 * ==========================================
 *   [CTA Shapes]
 * ==========================================
 */

.shape-star01,.shape-star02,
.shape-star03,.shape-star04 {
    position: absolute;
    width: 160px;
    height: 2px;
    opacity: 0.3;
    transform: rotate(-50deg);
    background-color: var(--bs-white);
    animation: shoot 15s linear infinite;
}
.shape-star01 {
    top: 100px;
    right: 180px;
}
.shape-star02 {
    top: 135px;
    right: 250px;
    -webkit-transition-delay: 3s;
    transition-delay: 3s;
}
.shape-star03 {
    top: 120px;
    left: 220px;
    -webkit-transition-delay: 5s;
    transition-delay: 5s;
}
.shape-star04 {
    top: 130px;
    left: 250px;
    -webkit-transition-delay: 7s;
    transition-delay: 7s;
}
@keyframes shoot {
    10% { transform: rotate(-50deg) translate(-550px , 0); }
    100% { transform: rotate(-50deg) translate(-550px , 0); }
}

.shape-cta01 {
    position: absolute;
    bottom: -40%;
    left: -6%;
}

.shape-cta01 img {
    -webkit-animation: spin 30s linear infinite;
    animation: spin 30s linear infinite;
}

.shape-cta02 {
    position: absolute;
    top: 12%;
    left: 45%;
}

.shape-cta02 img {
    -webkit-animation: spinReverse 20s linear infinite;
    animation: spinReverse 20s linear infinite;
}

.shape-<03 {
    position: absolute;
    bottom: 25%;
    left: 42%;
}

.shape-cta07 img,
.shape-cta03 img {
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
}

.shape-cta04 {
    position: absolute;
    top: 0;
    right: 30%;
}

.shape-cta05 {
    position: absolute;
    bottom: 25%;
    right: 35%;
}

.shape-cta05 img {
    -webkit-animation: spinReverse 10s linear infinite;
    animation: spinReverse 10s linear infinite;
}

.shape-cta06 {
    position: absolute;
    bottom: 10%;
    right: 32%;
}

.shape-cta08 img,
.shape-cta06 img {
    -webkit-animation: moveleftbounce 5s linear infinite;
    animation: moveleftbounce 5s linear infinite;
}

.shape-cta07 {
    position: absolute;
    right: 15%;
    top: 10%;
}

.shape-cta08 {
    position: absolute;
    top: 26%;
    right: 17%;
}

.shape-cta09 {
    position: absolute;
    bottom: -12%;
    right: -3%;
}


.shape-cta09 img {
    -webkit-animation: bounce_one 5s linear infinite;
    animation: bounce_one 5s linear infinite;
}



