/*
Theme Name: Muehle oHG
Author:Locke
Author URI: https://marcdasing.de
Description: Mühletheme
Version: 1.0
*/

/* Global */
html, body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
    font-family: Rubik;
} 
* {
    box-sizing: border-box;
}
/* Header Desktop */
.ssc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #f8ca42;
    display: flex;
    align-items: center;
    transition: transform .3s ease;
    border-bottom: 5px solid #024a3e;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 7px 4%;
}
.ssc-header ul {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding-left: 0px;
    margin: 0.8rem;
}
.ssc-header ul li {
    font-weight: 871;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 20px;
    list-style-type: none;
}
.ssc-header.hidden {
    transform: translateY(-100%);
}
.ssc-logo {
    font-weight: 600;
    white-space: nowrap;
}
.ssc-logo img {
    width: 385px;
    position: relative;
    top: -1px;
}
/*
    .ssc-logo object{
        filter: drop-shadow(0px 0px 9px #f00);
    }
*/
.ssc-header a {
    color: #024a3e;
    text-decoration: none;
}

/* Header Mobile */
@media (max-width: 1024px) {
.ssc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
}

/* Footer Desktop */
#footer {
  display: flex;
  justify-content: space-between;
  align-items: center;          
  padding: 1.5rem 2rem;
  border-top: 5px solid #024a3e
}
.footer-left,
.footer-right {
    font-weight: 871;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 20px;
  white-space: nowrap;
} 

/* Sticky Images Desktop Startseite */
@media (min-width: 1025px) {
.ssc .sticky-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
}
.ssc .carousel {
    position: sticky;
    top: 0;
    height: 100vh;
}
.ssc .carousel-inner {
    position: relative;
    height: 100%;
}
.ssc .carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 95px 25px 25px 25px;
}
.ssc .carousel img.active {
    opacity: 1;
}
.ssc .content {
        background-color: #f8ca42;
}
.ssc .content-section {
    min-height: 120vh;
    padding: 50px 50px;
    border-bottom: 5px solid #024a3e;
    font-weight: 500;
    color: #024a3e;
}
.ssc .content-section h2 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 420;
    color: #024a3e;
}
.ssc .content-section a {
    color: #024a3e;
    text-decoration: underline;
    text-decoration-thickness: 1.9px;
}
.ssc .content-section:first-child {
    padding: 99px 50px 50px 50px;
}
.ssc .content-section:last-child {
    border-bottom: none;
}
.div1 {
    height: 200px;
    width: 100%;
    display: block;
    background-color: #467566;
    border-top: 5px solid #467566
}
}

/* Sticky Images Mobile Startseite */
@media (max-width: 1024px) {
.ssc {
    padding-top: 120px;
}
.ssc .carousel {
    display: none;
}
.ssc .content {
    padding: 0;
}
.ssc .content-section {
    padding-bottom: 4rem;
}
.mobile-image {
    width: 100vw;
    height: 60vh;
    margin-left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}
.ssc h2, .ssc p {
    padding: 0 1.5rem;
}
}