/****************** WIDGET Allgemein ******************/
.elementor-element {
	padding: 0 !important;
}

.hblw-wrapper {
    display: flex;
    flex-direction: column;
}

.hblw-widget-image {
    width: 100%;
}

.hblw-widget-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hblw-fancybox-image {
	width: 100%;
    height: auto;
	object-fit: cover;
}

.hblw-widget-button {
	display: block;
    text-align: center;
	max-width: fit-content;
    text-decoration: none !important;
}

.hblw-widget-button.left {
    margin-left: 0;
    margin-right: auto;
}

.hblw-widget-button.center {
    margin-left: auto;
    margin-right: auto;
}

.hblw-widget-button.right {
    margin-left: auto;
    margin-right: 0;
}

.hblw-widget-text-wrapper-inner {
    flex-direction: column;
    height: 100%;
}

.hblw-widget-heading,
.hblw-widget-text {
	max-width: max-content;
    background: transparent !important;
}
.hblw-widget-button.fit-content {
    width: fit-content !important;
}

.hblw-widget-button.full-width {
    max-width: 100%;
}

@media (max-width: 991px) {
    .hblw-widget-text-wrapper-inner {
        align-items: center !important;
    }
    .hblw-widget-image,
    .hblw-widget-image img {
        height: 500px !important;
    }
}

@media (max-width: 767px) {
    .hblw-widget-image,
    .hblw-widget-image img {
        height: 400px !important;
    }
}

/****************** WIDGET 1 ******************/
.hblw-widget-1 img {
    display: block;
}

/****************** WIDGET 4 ******************/
.hblw-widget .text-left {
    text-align: left;
}

.hblw-widget .text-center {
    text-align: center;
}

.hblw-widget .text-right {
    text-align: right;
}

/****************** WIDGET 8 - 11 ******************/
@media (max-width: 991px) {
    .hblw-widget-8,
    .hblw-widget-9, 
    .hblw-widget-10,
    .hblw-widget-11 {
        display: block !important;
    }
    .hblw-widget-8 .hblw-widget-image,
    .hblw-widget-9 .hblw-widget-image, 
    .hblw-widget-10 .hblw-widget-image,
    .hblw-widget-11 .hblw-widget-image {
        max-width: 100% !important;
    }
}

/****************** WIDGET 16 - 19 ******************/
@media (max-width: 991px) {
    .hblw-widget-16,
    .hblw-widget-17,
    .hblw-widget-18,
    .hblw-widget-19 {
        display: block !important;
    }
    .hblw-widget-16 .hblw-widget-image,
    .hblw-widget-17 .hblw-widget-image,
    .hblw-widget-18 .hblw-widget-image,
    .hblw-widget-19 .hblw-widget-image {
        max-width: 100% !important;
    }
}

/****************** WIDGET 20 - 33 ******************/
.header-widget .hblw-widget-heading,
.header-widget .hblw-widget-text {
	max-width: max-content;
}

.hblw-widget .header-content {
    position: relative;
	width: 95%;
	margin: 0 auto;
	flex-direction: column;
	padding-top: 5%;
}

.hblw-widget .header-widget {
    position: relative;
    /* height: 100vh; */
    background-size: cover;
    background-position: center;
}

.hblw-widget .header-content {
    z-index: 2;
}

.hblw-widget .scroll-down {
	position: absolute;
	left: calc(50% - 20px);
	bottom: 30px;
    animation: bounce 1.2s infinite;
    cursor: pointer;
}

.hblw-widget .scroll-down img {
    width: 40px;
    height: auto;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 1199px) {
    .hblw-widget .header-widget {
        height: 80vh !important;
    }
    .hblw-widget .scroll-down {
        left: calc(50% - 15px) !important;
    }    
    .hblw-widget .scroll-down img {
        width: 30px !important;
    }
}

@media (max-width: 767px) {
    .hblw-widget .header-widget {
        height: 60vh !important;
    }
    .hblw-widget .scroll-down {
        left: calc(50% - 10px) !important;
        bottom: 15px !important;
    }    
    .hblw-widget .scroll-down img {
        width: 20px !important;
    }
}

/****************** WIDGET 35 ******************/
.hblw-gallery-widget {
	display: flex;
	flex-wrap: wrap;
    gap: 15px;
	justify-content: center;
}

.hblw-gallery-item {
    flex: 0 1 calc(96% / var(--columns, 4));
}

.hblw-gallery-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.hblw-gallery-widget.hblw-gallery-columns-1 .hblw-gallery-item {
    --columns: 1;
    height: 550px;
}

.hblw-gallery-widget.hblw-gallery-columns-2 .hblw-gallery-item {
    --columns: 2;
    height: 400px;
}

.hblw-gallery-widget.hblw-gallery-columns-3 .hblw-gallery-item {
    --columns: 3;
    height: 300px;
}

.hblw-gallery-widget.hblw-gallery-columns-4 .hblw-gallery-item {
    --columns: 4;
    height: 250px;
}

@media (max-width: 1199px) {
    .hblw-gallery-widget.hblw-gallery-columns-1 .hblw-gallery-item {
        height: 500px !important;
    }
    .hblw-gallery-widget.hblw-gallery-columns-2 .hblw-gallery-item {
        height: 350px !important;
    }
    .hblw-gallery-widget.hblw-gallery-columns-3 .hblw-gallery-item {
        height: 250px !important;
    }
}

@media (max-width: 991px) {
    .hblw-gallery-widget.hblw-gallery-columns-3 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-4 .hblw-gallery-item {
        --columns: 2 !important;
    }
    .hblw-gallery-widget.hblw-gallery-columns-1 .hblw-gallery-item {
        height: 450px !important;
    }
    .hblw-gallery-widget.hblw-gallery-columns-2 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-3 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-4 .hblw-gallery-item {
        height: 250px !important;
    }
}

@media (max-width: 767px) {
    .hblw-gallery-widget.hblw-gallery-columns-2 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-3 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-4 .hblw-gallery-item {
        --columns: 1 !important;
    }
    .hblw-gallery-widget.hblw-gallery-columns-1 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-2 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-3 .hblw-gallery-item,
    .hblw-gallery-widget.hblw-gallery-columns-4 .hblw-gallery-item {
        height: 260px !important;
    }
}

/****************** WIDGET 36 ******************/
.hblw-carousel-widget {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hblw-carousel-container {
    position: relative;
    height: 550px;
}

.hblw-carousel-slides {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.hblw-carousel-slide {
    flex: 0 0 100%;
}

.hblw-carousel-slide img {
    height: 550px;
    object-fit: cover;
}

.hblw-carousel-arrow {
	background: none;
	cursor: pointer;
	position: absolute;
	top: calc(50% - 40px);
	z-index: 10;
	width: 80px;
	height: 80px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hblw-carousel-arrow.hblw-carousel-prev {
    left: 30px;
}

.hblw-carousel-arrow.hblw-carousel-next {
    right: 30px;
}

.hblw-carousel-arrow svg {
	width: 40px;
	height: auto;
	position: absolute;
}

.hblw-carousel-indicators {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.hblw-carousel-indicators span {
    width: 15px;
    height: 15px;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: transparent;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hblw-carousel-indicators span.active {
    background-color: #000;
}

@media (max-width: 1199px) {
    .hblw-carousel-container {
        height: 450px !important;
    }
    .hblw-carousel-slide img {
        height: 450px !important;
    }
    .hblw-carousel-arrow svg {
        width: 35px !important;
    }
}

@media (max-width: 767px) {
    .hblw-carousel-container {
        height: 240px !important;
    }
    .hblw-carousel-arrow.hblw-carousel-prev {
        left: 15px !important;
    }
    .hblw-carousel-arrow.hblw-carousel-next {
        right: 15px !important;
    }
    .hblw-carousel-slide img {
        height: 240px !important;
    }
    .hblw-carousel-arrow {
        top: calc(50% - 25px);
        z-index: 10 !important;
        width: 50px !important;
        height: 50px !important;
    }
    .hblw-carousel-arrow svg {
        width: 30px !important;
    }
    .hblw-carousel-indicators span {
        width: 10px !important;
        height: 10px !important;
        margin: 0 3px !important;
    }
}

/****************** WIDGET 37 - 44 ******************/
.hblw-widget-text {
	max-width: max-content;
}

@media (max-width: 1199px) {
    .hblw-widget-37 .hblw-widget-video,
    .hblw-widget-38 .hblw-widget-video,
    .hblw-widget-39 .hblw-widget-video,
    .hblw-widget-40 .hblw-widget-video,
    .hblw-widget-41 .hblw-widget-video,
    .hblw-widget-42 .hblw-widget-video,
    .hblw-widget-43 .hblw-widget-video,
    .hblw-widget-44 .hblw-widget-video,
    .hblw-widget-37 .background-video,
    .hblw-widget-38 .background-video,
    .hblw-widget-39 .background-video,
    .hblw-widget-40 .background-video,
    .hblw-widget-41 .background-video,
    .hblw-widget-42 .background-video,
    .hblw-widget-43 .background-video,
    .hblw-widget-44 .background-video {
        height: 400px !important;
    }
}

@media (max-width: 991px) {
    .hblw-widget.hblw-widget-37,
    .hblw-widget.hblw-widget-38,
    .hblw-widget.hblw-widget-39,
    .hblw-widget.hblw-widget-40,
    .hblw-widget.hblw-widget-41,
    .hblw-widget.hblw-widget-42,
    .hblw-widget.hblw-widget-43,
    .hblw-widget.hblw-widget-44 {
        display: block !important;
    }
    .hblw-widget-37 .hblw-widget-video,
    .hblw-widget-38 .hblw-widget-video,
    .hblw-widget-39 .hblw-widget-video,
    .hblw-widget-40 .hblw-widget-video,
    .hblw-widget-41 .hblw-widget-video,
    .hblw-widget-42 .hblw-widget-video,
    .hblw-widget-43 .hblw-widget-video,
    .hblw-widget-44 .hblw-widget-video {
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {
    .hblw-widget-37 .hblw-widget-video,
    .hblw-widget-38 .hblw-widget-video,
    .hblw-widget-39 .hblw-widget-video,
    .hblw-widget-40 .hblw-widget-video,
    .hblw-widget-41 .hblw-widget-video,
    .hblw-widget-42 .hblw-widget-video,
    .hblw-widget-43 .hblw-widget-video,
    .hblw-widget-44 .hblw-widget-video,
    .hblw-widget-37 .background-video,
    .hblw-widget-38 .background-video,
    .hblw-widget-39 .background-video,
    .hblw-widget-40 .background-video,
    .hblw-widget-41 .background-video,
    .hblw-widget-42 .background-video,
    .hblw-widget-43 .background-video,
    .hblw-widget-44 .background-video {
        height: 250px !important;
    }
}

/****************** WIDGET 45 -47 ******************/
.filter-buttons {
    display: flex;
    margin-bottom: 60px;
    text-align: center;
    flex-wrap: wrap;
}

.filter-buttons.left {
	justify-content: flex-start;
}

.filter-buttons.center {
	justify-content: center;
}

.filter-buttons.right {
	justify-content: flex-end;
}

.filter-button {
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
}

.filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.filter-item {
    flex: 1 1 calc(33.333% - 20px);
    border: 1px solid #ddd;
    transition: transform 0.3s, opacity 0.3s;
}

.filter-items > * {
    flex: 1 1 calc(33.33% - 15px);
    box-sizing: border-box;
}

.filter-item .hblw-widget-text {
	max-width: 100% !important;
}

.filter-item .hblw-widget-heading,
.filter-item .hblw-widget-text {
	max-width: max-content;
	background: auto !important;
}

.filter-readmore {
	margin-top: 60px;
}

@media (max-width: 1199px) {
    .filter-items > * {
        flex: 1 1 calc(50% - 15px) !important;
    }
    
}

@media (max-width: 767px) {
    .filter-buttons {
        margin-bottom: 40px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .filter-readmore {
        margin-top: 40px !important;
    }
    .filter-items > * {
        flex: 1 1 100% !important;
    }
}

/****************** WIDGET 48 - 59 ******************/
.hblw-widget-menu header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 20;
}

.hblw-widget .burger-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    visibility: visible;
}

.hblw-widget-48 .burger-menu,
.hblw-widget-50 .burger-menu {
    display: none;
    visibility: hidden;
}

.hblw-widget-49 .burger-menu,
.hblw-widget-51 .burger-menu,
.hblw-widget-52 .burger-menu {
    grid-area: 1 / 11 / span 1 / span 2;
}

.hblw-widget #burger-menu {
	position: relative;
	height: 35px;
    width: 80px;
    cursor: pointer;
    transition: all 0.7s ease;
    z-index: 20;
}

.hblw-widget .burger-menu p {
	margin-bottom: 0;
	text-align: right;
    transition: all 0.7s ease;
    z-index: 20;
}

.menu-open.hblw-widget .burger-menu p {
	margin-right: 12px;
}

.hblw-widget .burgerline {
	position: absolute;
	height: 2px;
    right: 0;
    transition: all 0.7s ease;
}

.hblw-widget .burgerline.burgerline-top {
	top: 0;
}

.hblw-widget .burgerline.burgerline-middle {
	top: 13px;
}

.hblw-widget .burgerline.burgerline-bottom {
	top: 25px;
}

.menu-open.hblw-widget #burger-menu .burgerline-top {
	transform: rotate(35deg);
	top: 24px;
    width: 80px !important;
}

.menu-open.hblw-widget #burger-menu .burgerline-middle {
	display: none;
	visibility: hidden;
}

.menu-open.hblw-widget #burger-menu .burgerline-bottom {
	transform: rotate(-35deg);
    width: 80px !important;
}

.menu-open.hblw-widget #burger-menu {
	height: 50px;
}

.hblw-widget .navbar-nav {
	display: flex;
	justify-content: center;
}

.hblw-widget .nav-link {
	text-decoration: none !important;
}

@media (min-width: 1200px) {
    .hblw-widget-48 #main-nav,
    .hblw-widget-50 #main-nav {
        background-color: unset !important;
    }
}

@media (max-width: 1199px) {
    .hblw-widget .burger-menu {
        grid-area: 1 / 9 / span 1 / span 4 !important;
        display: flex !important;
        visibility: visible !important;
    }
    .hblw-widget-52 .burger-menu {
        grid-area: 1 / 11 / span 1 / span 2 !important;
    }
    .hblw-widget #main-nav {
        position: fixed !important;
        right: 0 !important;
        top: -100vh !important;
        z-index: 10 !important;
        height: 100vh !important;
        width: 100% !important;
        transition: all 0.5s ease !important;
        padding: 15% 10% !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .menu-open.hblw-widget #main-nav {
        top: 0 !important;
    }
    .hblw-widget .navbar-nav {
        text-align: center !important;
        flex-direction: column !important;
    }
    .hblw-widget .nav-item {
        margin: 15px 0 !important; 
    }
}

@media (max-width: 767px) {
    .menu-open.hblw-widget #burger-menu .burgerline-top {
        width: 65px !important;
    }
    .menu-open.hblw-widget #burger-menu .burgerline-bottom {
        width: 65px !important;
    }
}


/* ------------------------------------------------- */
.hblw-widget header {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: 30px;
    align-items: center;
}

.hblw-widget-48 .header-logo,
.hblw-widget-49 .header-logo,
.hblw-widget-52 .header-logo {
	grid-area: 1 / 1 / span 1 / span 2;
}

.hblw-widget-50 .header-logo {
	grid-area: 1 / 4 / span 1 / span 3;
}

.hblw-widget-51 .header-logo {
	grid-area: 1 / 6 / span 1 / span 2;
	justify-content: center;
	display: flex;
}

.hblw-widget-logo {
	position: relative;
	z-index: 20;
	max-width: 100%;
}

.hblw-widget .header-contact {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.hblw-widget .header-contact svg {
	margin: 0 5px;
}

.hblw-widget .header-contact .header-social {
	display: flex;
	flex-direction: row;
    align-items: center;
}

.hblw-widget-48 .header-contact,
.hblw-widget-49 .header-contact,
.hblw-widget-52 .header-contact {
	grid-area: 1 / 3 / span 1 / span 3;
}

.hblw-widget-50 .header-contact {
	grid-area: 1 / 1 / span 1 / span 3;
}

.hblw-widget-51 .header-contact {
	grid-area: 1 / 1 / span 1 / span 4;
	align-items: flex-start;
}

.hblw-widget-contact-data {
	text-decoration: none !important;
}

.hblw-widget .header-contact > div + div {
	margin-top: 5px;
}

.hblw-widget .sprachenwechsler {
	grid-area: 1 / 9 / span 1 / span 2;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.hblw-widget-48 #main-nav,
.hblw-widget-50 #main-nav {
	grid-area: 1 / 7 / 1 / span 6;
	display: flex;
	justify-content: flex-end;
}

.hblw-widget-49 #main-nav,
.hblw-widget-51 #main-nav,
.hblw-widget-52 #main-nav {
	position: fixed;
	right: 0;
	top: -100vh;
	z-index: 10;
	height: 100vh;
	width: 100%;
	transition: all 0.5s ease;
}

.hblw-widget-49.menu-open #main-nav,
.hblw-widget-51.menu-open #main-nav,
.hblw-widget-52.menu-open #main-nav {
	top: 0;
}

.navbar-nav.vertical-nav {
	flex-direction: column;
	height: 100vh;
    justify-content: center !important;
}

.horizontal-nav .nav-item {
	margin: 0 10px;
}

.vertical-nav .nav-item {
	margin: 20px 0;
}

.hblw-widget-49 #main-nav,
.hblw-widget-51 #main-nav {
	z-index: -1 !important;
}

.hblw-widget-49.menu-open #main-nav,
.hblw-widget-51.menu-open #main-nav {
	z-index: 10 !important;
}

@media (max-width: 1199px) {
    .hblw-widget #main-nav {
        justify-content: center !important;
    }
    .horizontal-nav .nav-item {
        margin: 10px 0 !important;
    }
    .vertical-nav .nav-item {
        margin: 10px 0 !important;
    }
    .hblw-widget .header-contact {
        flex-direction: row !important;
    }
    .hblw-widget-48 .header-logo,
    .hblw-widget-49 .header-logo,
    .hblw-widget-52 .header-logo {
        grid-area: 1 / 1 / span 1 / span 3 !important;
    }
    .hblw-widget-48 .header-contact,
    .hblw-widget-49 .header-contact {
        grid-area: 1 / 4 / span 1 / span 7 !important;
    }
    .hblw-widget-52 .header-contact {
        grid-area: 1 / 4 / span 1 / span 4 !important;
    }
    .hblw-widget-50 .header-logo,
    .hblw-widget-51 .header-logo {
        grid-area: 1 / 5 / span 1 / span 4 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .hblw-widget-50 .header-contact,
    .hblw-widget-51 .header-contact  {
        grid-area: 1 / 1 / span 1 / span 4 !important;
    }
    .hblw-widget .sprachenwechsler {
        grid-area: 1 / 8 / span 1 / span 3 !important;
    }
}

@media (max-width: 767px) {
    .hblw-widget-52 .header-contact {
        display: none !important;
        visibility: hidden !important;
    }
    .hblw-widget-52 .header-logo {
        grid-area: 1 / 1 / span 1 / span 4 !important;
    }
    .hblw-widget .sprachenwechsler {
        grid-area: 1 / 6 / span 1 / span 4 !important;
    }
    .hblw-widget .header-contact svg {
        margin: 0 2.5px !important;
    }
}


/****************** WIDGET 50 - 51 ******************/
.hblw-widget footer {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: 30px;
	align-items: flex-end;
    line-height: 1.8;
}

.hblw-widget footer a {
	text-decoration: none !important;
}

.hblw-widget .footer-address {
	grid-area: 1 / 1 / span 1 / span 3;
}

.hblw-widget .footer-contact {
	grid-area: 1 / 4 / span 1 / span 2;
}

.hblw-widget .footer-contact {
	display: flex;
	flex-direction: column;
}

.hblw-widget .footer-logo {
	grid-area: 1 / 6 / span 1 / span 2;
	z-index: 1;
	display: flex;
	justify-content: center;
}

.hblw-widget .footer-social {
	grid-area: 1 / 9 / span 1 / span 2;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.hblw-social-media.instagram {
	margin-top: 5px;
}

.hblw-widget .hblw-footer-links {
	display: flex;
	flex-direction: column;
}

.hblw-widget .footer-links {
	grid-area: 1 / 11 / span 1 / span 2;
	display: flex;
	justify-content: flex-end;
	text-align: right;
}

@media (max-width: 991px) {
    .hblw-widget footer {
        display: flex !important;
        align-items: center !important;
        flex-direction: column !important;
    }
    .hblw-widget-contact-heading {
        text-align: center !important;
    }
    .hblw-widget .footer-contact {
        margin: 30px 0 !important;
    }
    .hblw-widget .footer-links {
        margin-top: 30px !important;
        text-align: center !important;
    }
    .hblw-widget .footer-social {
        margin-top: 30px !important;
    }    
}

/****************** WIDGET 55 - 60 ******************/
@media (max-width: 1199px) {
    .hblw-widget-59 .hblw-widget-video,
    .hblw-widget-60 .hblw-widget-video,
    .hblw-widget-59 .background-video,
    .hblw-widget-60 .background-video {
        height: 400px !important;
    }

}

@media (max-width: 991px) {
    .hblw-widget-57,
    .hblw-widget-58 {
        display: block !important;
    }
    .hblw-widget-57 .hblw-widget-image,
    .hblw-widget-58 .hblw-widget-image {
        max-width: 100% !important;
    }
    .hblw-widget.hblw-widget-59,
    .hblw-widget.hblw-widget-60 {
        display: block !important;
    }
    .hblw-widget-59 .hblw-widget-video,
    .hblw-widget-60 .hblw-widget-video {
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {
    .hblw-widget-59 .hblw-widget-video,
    .hblw-widget-60 .hblw-widget-video,
    .hblw-widget-59 .background-video,
    .hblw-widget-60 .background-video {
        height: 250px !important;
    }
}


/****************** WIDGET 61 ******************/
.hblw-widget-61 .hblw-wrapper {
	position: relative;
}

.hblw-widget-61 .hblw-widget-text.text-1,
.hblw-widget-61 .hblw-widget-text.text-2 {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}