.gallery-variants-wrapper .fusion_builder_column_inner {
	max-height: 235px !important;
}
.gallery-list > .fusion-column-wrapper {
	display: block !important;
}
.gallery-list .fusion-column-wrapper > .fusion-builder-row {
	display: contents !important;
}
/* Simple Lightbox CSS */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox.active {
    display: flex;
}
.gallery-lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}
.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}
.gallery-lightbox-close {
    top: 20px;
    right: 20px;
}
.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
}
.gallery-lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.gallery-lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.gallery-lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-lightbox-prev::before,
.gallery-lightbox-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.gallery-lightbox-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}
.gallery-lightbox-next::before {
    transform: translate(-60%, -50%) rotate(45deg);
}
.gallery-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}
.gallery-variants-wrapper .fusion-imageframe {
	width: 100%;
}
.gallery-variants-wrapper img {
	cursor: pointer;
    transition: opacity 0.3s;
    max-width: 392px;
    width: 100%;
    height: 214px;
	margin-bottom: 20px;
    object-fit: cover;
}
.gallery-variants-wrapper img:hover {
    opacity: 0.8;
}
body.lightbox-open {
    overflow: hidden;
}
.gallery-variants-wrapper .gallery-list .fusion-text {
    display: none;
}
.gallery-lightbox-description {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 8px;
    display: none;
}
.gallery-lightbox-description p {
	margin: 0;
}
.gallery-lightbox-description a {
	color: var(--Brand-primary-500);
}
/* Gallery with sidebar filter layout */
.gallery-variants-wrapper-main .fusion-builder-row {
    display: flex !important;
    flex-wrap: wrap !important;
}
.gallery-variants-wrapper-main .gallery-variants-filter-wrapper {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
}
.gallery-variants-wrapper-main .fusion_builder_column:not(.gallery-variants-filter-wrapper) {
    flex: 0 0 66.666% !important;
    max-width: 66.666% !important;
}
.gallery-variants-wrapper-main .fusion_builder_column_inner {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
}
.accordian.fusion-accordian .fusion-toggle-icon-unboxed .panel-title a.active .fa-fusion-box,
.accordian.fusion-accordian .fusion-toggle-icon-unboxed .panel-title a:hover .fa-fusion-box {
	color: var(--Brand-primary-500) !important;
}
.gallery-no-results-text {
	display: none;
}
/* Gallery filters */
/* Add fake checkboxes before filter text */
.gallery-variants-filter-wrapper .toggle-content p {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
	margin-bottom: 12px;
}
/* Checkbox square */
.gallery-variants-filter-wrapper .toggle-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
}
/* Checkmark (hidden by default) */
.gallery-variants-filter-wrapper .toggle-content p::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg) scale(0);
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transition: transform 0.2s ease;
}
.gallery-variants-filter-wrapper .toggle-content p:hover::before {
    border-color: #999;
}
.gallery-variants-filter-wrapper .toggle-content p.checked::before {
    background: #F5802D;
    border-color: #F5802D;
}
.gallery-variants-filter-wrapper .toggle-content p.checked::after {
    transform: translateY(-50%) rotate(45deg) scale(1);
}
.fusion-accordian {
	padding: 22px 32px 32px;
}
.gallery-load-more-wrapper {
    text-align: center;
    padding: 0 0 40px 0;
    width: 100%;
}
.gallery-load-more-btn {
    padding: 10px 30px;
    font-size: 16px;
    color: var(--Brand-secondary-500);
    background: #ffffff;
    border: 1px solid var(--Brand-secondary-500);
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.gallery-load-more-btn:hover {
    background: var(--Brand-secondary-500);
    color: #ffffff;
}
.gallery-variants-wrapper .gallery-loadmore-button-wrapper.fusion-layout-column {
	max-width: 100% !important;
	flex: 1 !important;
	justify-content: flex-end;
}
.gallery-loadmore-button-wrapper .fusion-column-wrapper {
	max-width: 66.666%;
	text-align: center;
}
/*Header*/
.header-container.fusion-flex-container {
	padding-top: 14px;
	padding-bottom: 14px;
}
.header-container .awb-menu_row .menu-text {
	font-weight: 700;
}
.header-container .awb-menu {
	justify-content: flex-end !important;
}
.header-container.fusion-fullwidth > .fusion-builder-row {
	z-index: 999;
}
.awb-menu.collapse-enabled.mobile-mode-collapse-to-button.expanded .awb-menu__main-ul {
	margin-top: 18px;
}
/*Fotoer*/
body .fusion-footer a {
	color: var(--Neutral-gray-500);
}
.fusion-footer .fusion-imageframe img {
	height: 70px;
}
/* Intro Image Gallery Slider */
.intro-image-gallery-container.fusion-flex-container {
    position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}
.intro-image-gallery-container .fusion-builder-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.intro-image-gallery-container .fusion-builder-row > .fusion_builder_column:nth-child(1) {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    order: 1;
	margin-bottom: 20px;
}
.intro-image-gallery-container .fusion-builder-row > .fusion_builder_column:nth-child(2),
.intro-image-gallery-container .fusion-builder-row > .fusion_builder_column:nth-child(3),
.intro-image-gallery-container .fusion-builder-row > .fusion_builder_column:nth-child(4),
.intro-image-gallery-container .fusion-builder-row > .fusion_builder_column:nth-child(5) {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
    order: 2;
    transition: opacity 0.3s ease;
}
.intro-image-gallery-container .fusion-builder-row > .fusion_builder_column:nth-child(n+6) {
    display: none !important;
}
.intro-slider-nav {
    position: absolute;
    top: 59%;
    right: calc(50% - 590px);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.intro-slider-btn {
	width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
	background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.intro-slider-btn::before {
    content: '\f0a9';
	font-family: 'Font Awesome 7 Sharp';
	font-size: 35px;
	color: var(--Brand-primary-500);
}
.intro-slider-btn.prev::before {
	transform: rotate(180deg);
}
.intro-image-gallery-container img {
    transition: opacity 0.3s ease;
	max-height: 500px;
	object-fit: cover;
}
.intro-image-gallery-container .fusion-layout-column:not(:first-child) img {
	height: 214px;
	object-fit: cover;
}
/*Contacts*/
.contact-form-input-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contact-form-input-wrapper > p {
	width: 49%;
}
.google-maps-wrapper iframe {
	height: 450px;
}
.cf-privacy-policy {
    display: flex;
    align-items: center;
}
.cf-privacy-policy .wpcf7-list-item {
    margin: 0 10px 0 0;
}
.wpcf7-form .cf-privacy-policy .wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-form .cf-privacy-policy input {
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 6px;
}
/*Parallax container*/
.parallax-container:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--Brand-secondary-500);
	opacity: .75;
}
.post-content .parallax-container p,
.post-content .parallax-container h1,
.post-content .parallax-container h2,
.post-content .parallax-container h3,
.post-content .parallax-container h4,
.post-content .parallax-container h5,
.post-content .parallax-container h6 {
	color: #ffffff;
}
.parallax-container .fusion-button span {
	font-weight: 700;
}
/*Image text slider*/
.image-text-slider-wrapper .fusion-builder-row-inner {
    position: relative;
    overflow: hidden;
}
.image-text-slider-track {
    display: flex;
	width: 100%;
    transition: transform 0.6s ease-in-out;
}
.image-text-slider-slide {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
}
.image-text-slider-slide .fusion_builder_column_inner {
    flex: 0 0 50%;
    display: block;
}
.image-text-slider-nav {
	position: absolute;
	top: 50%;
	font-size: 20px;
	cursor: pointer;
}
.image-text-slider-nav.image-text-slider-prev {
	left: -50px;
}
.image-text-slider-nav.image-text-slider-next {
	right: -50px;
}
/*House project floor slider*/
.house_project-template-default .fusion-flex-container.floor-container {
	padding-top: 0;
}
.house_project-template-default .fusion-flex-container.floor-slider-title-container {
	padding-bottom: 0;
}
.floor-container > .fusion-builder-row {
    position: relative;
    overflow: hidden;
}
.house-project-floor-slider-track {
    display: flex;
	width: 100%;
    transition: transform 0.6s ease-in-out;
}
.house-project-floor-slide {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
}
.house-project-floor-slide > .fusion-layout-column {
    flex: 0 0 50%;
    display: block;
}
.fusion-flex-container .fusion-row .fusion-flex-column.floor-slider-counter {
	width: auto;
    margin-top: 10px;
    margin-bottom: 15px;
}
.floor-slider-counter i {
	display: flex;
	align-items: center;
	font-size: 19px;
}
.floor-slider-counter .fusion-title.fusion-title-size-three {
    margin: 0;
}
/*Card carousel*/
.card-carousel-nav {
	position: absolute;
	top: 50%;
	font-size: 20px;
	cursor: pointer;
}
.card-carousel-nav.card-carousel-prev {
	left: -50px;
}
.card-carousel-nav.card-carousel-next {
	right: -50px;
}

/* Mobile responsive */
@media (max-width: 1280px) {
	.intro-slider-nav {
		right: 40px;
		top: 65%;
	}
	.card-carousel-nav.card-carousel-prev {
		left: -20px;
	}
	.card-carousel-nav.card-carousel-next {
		right: -20px;
	}
	.image-text-slider-nav.image-text-slider-prev {
		left: -20px;
	}
	.image-text-slider-nav.image-text-slider-next {
		right: -20px;
	}
	.intro-image-gallery-container .fusion-layout-column:not(:first-child) img {
		height: 150px;
	}
}
@media (max-width: 768px) {
	.fusion-tb-header .fusion-builder-row .fusion-layout-column {
		width: 50%;
	}
	.gallery-variants-wrapper-main .fusion_builder_column:not(.gallery-variants-filter-wrapper),
	.gallery-variants-wrapper-main .gallery-variants-filter-wrapper {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.gallery-loadmore-button-wrapper .fusion-column-wrapper {
		max-width: 100%;
	}
	.gallery-variants-filter-wrapper.fusion-layout-column {
		margin-bottom: 20px;
	}
	.gallery-variants-filter-wrapper.fusion-layout-column > .fusion-column-wrapper {
		margin-left: 20px;
		margin-right: 20px;
	}
    .gallery-lightbox-close,
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 40px;
        height: 40px;
    }
    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }
    .gallery-lightbox-prev {
        left: 10px;
    }
    .gallery-lightbox-next {
        right: 10px;
    }
	.gallery-lightbox-description {
		font-size: 14px;
		padding: 10px 16px;
		max-width: 90%;
	}
	.image-text-slider-track .fusion_builder_column_inner {
        flex: 0 0 100%;
    }
	.house-project-floor-slider-track .house-project-floor-slide > .fusion-layout-column {
        flex: 0 0 100%;
    }
	.card-carousel-nav {
		display: none;
	}
	.image-text-slider-nav {
		display: none;
	}
	.intro-image-gallery-container .fusion-layout-column:not(:first-child) img {
		height: 100px;
	}
    .card-carousel-nav.card-carousel-prev,
    .card-carousel-nav.card-carousel-next,
    .image-text-slider-nav.image-text-slider-prev,
    .image-text-slider-nav.image-text-slider-next {
        display: none;
    }
}
@media (max-width: 480px) {
	.gallery-variants-wrapper-main .fusion_builder_column_inner {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
	}
	.intro-slider-nav {
		right: 40px;
		top: 60%;
	}
	.intro-slider-btn {
		width: 25px;
		height: 25px;
	}
	.intro-slider-btn::before {
		font-size: 25px;
	}
	.contact-form-input-wrapper > p {
		width: 100%;
	}
	.intro-image-gallery-container .fusion-layout-column:not(:first-child) img {
		height: auto;
	}
}