h1, h2 {
    font-size: 3rem;
    font-weight: normal;
}

h2 {
    font-family: var(--headline-font);
}

.subheading, h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.subheading {
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}

.top-bar {
    width: 100%;
    background-color: var(--backgrounds);
    position: fixed;
    top: 0;
    left: 0;
    padding: 2px 0;
    font-weight: 600;
    z-index: 999;
}

.top-bar-flex {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.top-bar-block {
    display: flex;
    gap: 15px;
    flex-basis: 50%;
    white-space: nowrap;
}

.top-bar-block-r {
    justify-content: flex-end;
}

header {
    padding-top: 50px;
}

.logo {
    width: 300px;
    margin: 0 auto;
}

.navbar-2 {
	background-color: transparent;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
}

.navbar-2 .nav-element a:link, .navbar-2 .nav-element a:visited,
.navbar-2 .dropdown-parent {
	background-color: transparent;
	transition: color 0.4s ease-in-out;
	color: #000;
}

.navbar-2 .nav-element a:hover, .navbar-2 .dropdown-parent:hover {
	background-color:transparent;
    color: var(--primary);
	transition: color 0.2s ease-in-out;

}

.navbar-2 .nav-active {
	background-color: transparent!important;
    color: var(--primary)!important;
}

.navbar-2 .nav-element:after {
    content: '·';
}

.navbar-2 .nav-element:last-child:after {
    content: '';
}

.slider-box {
    max-width: 1200px;
    position: absolute;
    bottom: 50px;
    z-index: 3;
    left: calc(50% - 600px);
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
	color: #fff;
}

.slider-box-headline {
    font-size: 7rem;
    font-family: var(--headline-font);
    line-height: 1;
}

.slider-box-subline {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.circle-img {
    aspect-ratio: 1 / 1;
    max-width: 300px;
    margin: 0 auto;
}

.circle-img img {
    object-fit: cover;
    border-radius: 100%;
}

.boxes {
    display: flex;
    gap: 0;
    flex-basis: 50%;
}

.box {
    width: 50%;
    box-sizing: border-box;
    display: flex;
}

.box-1l, .box-2l {
    justify-content: flex-end;
}

.box-1l-innen {
    max-width: 600px;
    width: 600px;
    overflow: hidden;
}

.box-2l-innen {
    max-width: 600px;
    width: 600px;
    box-sizing: border-box;
    padding: 35px;
}

.box-1l-innen img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.box-1r-innen {
    max-width: 600px;
    width: 600px;
    box-sizing: border-box;
    padding: 35px;
}

.box-2r-innen {
    max-width: 600px;
    width: 600px;
    overflow: hidden;
}

.box-2r-innen img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.short-hr {
    border: 1px solid var(--primary);
    width: 100px;
}

footer {
    margin-top: 100px;
}

.footer-logo {
     margin-top: -80px;
}

.season {
      display: none;
      margin-bottom: 0;
    }

@media only screen and (max-width: 1200px) {

    .slider-box {
        max-width: 1200px;
        left: 5%;
    }

	.slider-box-headline {
        font-size: 4rem;
    }

    .slider-box-subline {
        font-size: 1.8rem;
    }

}

@media only screen and (max-width: 768px) {

    h1, h2 {
        font-size: 2.3rem;
    }

    .hero-slider, .hero-slide {height: 60vh; min-height: 300px;}

    #navbar-navbutton, .nav-element, .footer-col {
        text-align: center;
    }

    #navbar-navbutton {
        text-transform: uppercase;
        font-weight: 600;
    }

    .subheading, h3 {
        font-size: 1.1rem;
    }

    .navbar-2 .nav-element:after {
        content: '';
    }

    .boxes {
        display: flex;
        gap: 0;
        flex-basis: 100%;
        flex-wrap: wrap;
    }

    .box {
        width: 100%;
    }

    .box-1l-innen, .box-2l-innen, .box-1r-innen, .box-2r-innen {
        width: 100%;
        max-width: 100%;
    }

    .top-bar {
        position: relative;
        padding: 50px 0; 
    }

    .top-bar-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-block {
        justify-content: center;
        flex-shrink: 2;
        flex-wrap: wrap;
    }

    footer {
    margin-top: 0;
}

    .footer-logo {
     margin-top: 0;
}

}