/* Einzigartige Header-Styling */
header{
    background-color: #C1E5F5;
}
.header-unique234789823432 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Edit: fixed padding,background color and removed border */
    padding: 1% 10px 1% 10px;
    background: #C1E5F5;
    max-width: 1400px;
    margin: auto;
}


/* Logo Unterstreichung */
.header-unique234789823432 a {
    text-decoration: none;
    border: none; 
    outline: none; 
}

.header-unique234789823432 a:focus, 
.header-unique234789823432 a:active {
    outline: none; 
}
/* Logo Unterstreichung */





/* Einzigartiges Logo Styling */
.logo-unique234789823432 {
    /* Edit: fixed color, line-height, font family padding */
    color: #2e2e2e;
    font-size: 49px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 0px;
  
    font-family: "Allison", Sans-serif;
}

/* Einzigartige Desktop Navigation Styling */
.nav-unique234789823432 {
    display: flex;
    /* Edit: removed gap and added padding */
    padding: 10px 0px;
}

.nav-unique234789823432 a {
    transition: color 0.3s ease;
    /* Edit: fixed family,size,weight,decoration,line-height,spacing,padding */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-decoration: underline;
    line-height: 0.6em;
    letter-spacing: 0px;
    padding: 13px 20px;
    color: #2e2e2e;
}

/* Edit: active page's link style */
.nav-unique234789823432 a.active{
    color: #000000;
}

/* Edit: fixed hover color */
.nav-unique234789823432 a:hover {
    color: #000000;
}

/* Einzigartiges Mobile Menu Icon */
.menu-icon-unique234789823432 {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    /* Edit: fixed padding */
    padding: 0.292em;
    height: 36px;
    width: 36px;
}

/* Edit: menu bars styling - start */
.menu-icon-unique234789823432 span.bar {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: #33373d;
    position: relative;
    margin-top: 10px;
}

.menu-icon-unique234789823432 span.bar:before,
.menu-icon-unique234789823432 span.bar:after {
  background: #33373d;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  border-radius: 2px;
}

.menu-icon-unique234789823432 span.bar:before {
  top: 6px;
}

.menu-icon-unique234789823432 span.bar:after {
  top: -6px;
}

/* Edit: menu bars styling - end */


/* Edit: menu bars on active - start */
.menu-icon-unique234789823432.active span.bar{
    background-color: transparent;
}

.menu-icon-unique234789823432.active span.bar::before{
    transform: rotate(-45deg);
    top: 0px;
} 

.menu-icon-unique234789823432.active span.bar::after{
    transform: rotate(45deg);
    top: 0px;
} 
/* Edit: menu bars on active - end */




/* Einzigartige Mobile Navigation */
.mobile-nav-unique234789823432 {
    /* Edit: removed display none and flex styles */
    position: absolute;
    top: 60px;
    background-color: #fff;
    /* Edit: removed border,box-shadow,padding and fixed width, right, align */
    width: 100%;
    right: 0px;
    text-align: center;
    /* Edit: animation styles */
    max-height: 0;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: max-height .3s, transform .3s;
    z-index: 1000;
}

.mobile-nav-unique234789823432 a {
    text-decoration: none;
    /* Edit: fixed family,size,weight,decoration,line-height,spacing,padding */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-decoration: underline;
    line-height: 0.6em;
    letter-spacing: 0px;
    padding: 10px 20px;
    color: #2e2e2e;
    /* Edit: set display block so the links take full width */
    display: block;
    z-index: 1000;

}

/* Edit: give blue background to even children of mobile menu */
/* Edit: also give blue background on hover */
.mobile-nav-unique234789823432 a:nth-child(even),
.mobile-nav-unique234789823432 a:hover {
    background: #C1E5F5;
    z-index: 1000;
}



/* Edit: active page's link style */
.mobile-nav-unique234789823432 a.active {
    color: #000000; 
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Edit: fixed padding */
    .header-unique234789823432{
        padding-top: 4px;
        padding-bottom: 4px;
        height: 64.3px;
    }

    /* Edit: smaller size on mobiles */
    .logo-unique234789823432{
        font-size: 35px;
    }

    .nav-unique234789823432 {
        display: none;
    }

    .menu-icon-unique234789823432 {
        display: block;
    }

    .mobile-nav-unique234789823432.active {
        /* Edit: removed flex and added menu show animation */
        max-height: 500px;
        transform: scaleY(1);
        z-index: 1000;
    }
}