/*menu*/
.sp-page-title {
	background: #a80000;
}
#sp-section-1{
background: #000000;

}
.sp-megamenu-parent > li > a {
	color: #fff;
	padding-right: 15px;
}
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li.active:hover > a {
	color: #dc3545;
	padding-right: 15px;
}
#sp-header.header-sticky {
	background-color: #2d3239e6;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li.active:hover > a {
	background-color: #ff00008f;
	color: white;
	-webkit-box-shadow: 2px 16px 15px -14px rgba(255, 0, 19, 0.85);
	-moz-box-shadow: 2px 16px 15px -14px rgba(255, 0, 19, 0.85);
	box-shadow: 2px 16px 15px -14px rgba(255, 0, 19, 0.85);
	text-shadow: 0px 1px 10px rgba(255, 0, 0, 0.7);
	padding-right: 15px;
}
.sp-megamenu-parent > li > a {
	color: #b1b1b1;
	border-left: 1px solid #404040;
	border-image: linear-gradient(to top, #78787887, rgba(0, 0, 0, 0)) 1 100%;
	text-shadow: 0px 1px 0px rgb(0 0 0 / 54%);
}
.sp-megamenu-parent > li > a:hover {
	color: whitesmoke;
	background-color: #ff00008f;
	border-bottom: 1px solid crimson;
	padding-right: 15px;
	border-image: linear-gradient(to top, #b1b1b1, rgba(0, 0, 0, 0)) 1 100%;
	-webkit-transition: all 1s ease;
	-moz-transition: background 0.5s ease-in-out;
	-ms-transition: background 0.5s ease-in-out;
	-o-transition: background 0.5s ease-in-out;
	transition: background 0.5s ease-in-out;
	-webkit-box-shadow: 2px 16px 15px -14px rgba(255, 0, 19, 0.85);
	-moz-box-shadow: 2px 16px 15px -14px rgba(255, 0, 19, 0.85);
	box-shadow: 2px 16px 15px -14px rgba(255, 0, 19, 0.85);
	text-shadow: 0px 1px 10px rgba(255, 0, 0, 0.7);
}
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus,
.bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: #f00;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
	background: #2d3239e6;
	border-bottom: 1px solid #f00;
	-webkit-box-shadow: 2px 16px 15px -14px rgb(255 0 19 / 85%);
	-moz-box-shadow: 2px 16px 15px -14px rgba(255, 0, 19, 0.85);
	box-shadow: 2px 16px 15px -14px rgb(255 0 19 / 85%);
}

.sp-megamenu-parent .sp-mega-group > li > a {
	color: #ff0000;
}
.sp-module ul > li > a {
	color: #b7b7b7;
}
.sp-megamenu-parent .sp-dropdown .sp-module .sp-module-title {
	color: red;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
	border-bottom: 1px solid #454545;
	width: 100%;
}
.burger-icon {
	width: 25px;
	cursor: pointer;
	margin-left: 50px;
}
#sp-header-1 {
	background-color: #fff;
}

/*search*/
.search {
	margin-top: 5px;
}
.mod-search-searchword125 {
	background-color: red;
}
/*header*/
.header1 {
	display: flex;
	justify-content: start;
	align-items: center;
	margin-top: 14px;
	font-size: 16px;
	color: #cf0000;
	padding-top: 5px;
	border-right: 1px solid #ff00007a;
}

@media only screen and (max-width: 1200px) {
	.header1 {
		display: flex;
		justify-content: start;
		align-items: center;
		margin-top: 14px;
		font-size: 12px;
		padding-top: 5px;
		border-right: 1px solid #c7c7c7;
	}
}
@media only screen and (max-width: 1000px) {
	.header1 {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 14px;
		font-size: 12px;
		padding-top: 5px;
		border-right: 0px;
	}
}
.burger-icon > span {
	background-color: #fff;
}
.logo-image {
	padding-bottom: 2px;
}
.header1 p {
	line-height: 0px;
}
.header1 span {
	font-size: 12px;
	color: #808080;
}
.date {
	display: flex;
	margin-top: 14px;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	background-color: #b10000;
	border-radius: 5px;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 250px;
}
.menu {
	float: left;
}
.gradient-border {
	--borderWidth: 3px;
	background: #1d1f20;
	position: relative;
	border-radius: var(--borderWidth);
}
.gradient-border:after {
	content: '';
	position: absolute;
	top: calc(-1 * var(--borderWidth));
	left: calc(-1 * var(--borderWidth));
	height: calc(100% + var(--borderWidth) * 2);
	width: calc(100% + var(--borderWidth) * 2);
	background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
	border-radius: calc(2 * var(--borderWidth));
	z-index: -1;
	animation: animatedgradient 3s ease alternate infinite;
	background-size: 300% 300%;
}
@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/*tabs about galery*/
.content-t{
	border: 1px solid #ccc;
	border-image: linear-gradient(to bottom, #ff00004d, rgba(0, 0, 0, 0)) 1 15%;
	padding: 5px;
	

}

.sppb-img-responsive {
	border: 1px solid #ccc;
	border-image: linear-gradient(to bottom, #ff00004d, rgba(0, 0, 0, 0)) 1 15%;
	padding: 5px;
	box-shadow: rgb(0 0 0 / 45%) 0px 25px 20px -20px;
	transition: transform 0.2s;
}
.sppb-img-responsive:hover {
	border: 1px solid #fff;
	border-image: linear-gradient(to top, #6b6b6b, rgba(0, 0, 0, 0)) 1 15%;
	padding: 5px;
	box-shadow: rgb(0 0 0 / 45%) 0px 25px 20px -20px;
	transform: scale(1.1);
}
/*tabs video*/
.video_tab {
	border: 1px solid #ccc;
	padding: 5px;
	box-shadow: rgb(0 0 0 / 45%) 0px 25px 20px -20px;
}
/*background animation*/
.back {
	background: linear-gradient(-45deg, #f00, #6b0000, #000, #ff0000);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/*animation text*/
.animated_text {
	font: 700 4em/1 'Oswald', sans-serif;
	letter-spacing: 0;
	padding: 0.25em 0 0.325em;
	display: block;
	margin: 0 auto;
	text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
	/* Clip Background Image */
	background: url(/images/dd_cardesign_127/background-section/animated-text-fill.png) repeat-y;
	-webkit-background-clip: text;
	background-clip: text;
	/* Animate Background Image */
	-webkit-text-fill-color: transparent;
	-webkit-animation: aitf 80s linear infinite;
	/* Activate hardware acceleration for smoother animations */
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}


/* RESPONSIVE */
@media only screen and (max-width: 992px) {
	.sm-no-flex {
		display: block;
	}
	.sm-no-float {
		float: none !important;
	}
	.sm-text-center {
		text-align: center;
	}
}
@media only screen and (max-width: 550px) {
	.team-members li {
		text-align: center;
	}
	.team-members li > div {
		float: none;
		display: inline-block;
		width: 30%;
		margin: 0 !important;
	}
	.team-members {
		transform: rotate(0);
	}
	.member-details img {
		transform: rotate(0) translate(0, 0);
	}
	.team-overview {
		padding: 15px;
	}
}
@media only screen and (max-width: 399px) {
	.team-members li > div {
		width: 48%;
	}
}
/*buuton animated class*/

.btn-1 {
	text-align: center;
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
}
.btn-1:before {
	content: '';
	position: absolute;
	height: 150px;
	width: 50px;
	background: #fff;
	left: -55px;
	top: -40px;
	transform: rotate(37deg);
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-1:hover:before {
	left: 95%;
}
/* Buton 1 bitti */
.btn-2 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-2:before {
	content: '';
	position: absolute;
	height: 11px;
	width: 100%;
	background: #fff;
	left: 0;
	top: 0;
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-2:hover:before {
	top: 77%;
}
/* Buton 2 Bitti */
.btn-3 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-3:before {
	content: '';
	position: absolute;
	height: 11px;
	width: 100%;
	background: #fff;
	left: 0;
	bottom: 0;
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-3:hover:before {
	bottom: 80%;
}
/* Buton 3 Bitti */
.btn-4 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-4:before {
	content: '';
	position: absolute;
	height: 150px;
	width: 50px;
	background: #fff;
	right: -40px;
	top: -40px;
	transform: rotate(37deg);
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-4:hover:before {
	right: 105%;
}
/* Buton 4 Bitti */
.btn-5 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-5:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 0;
	background: #fff;
	left: 0;
	bottom: 0;
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-5:hover:before {
	width: 100%;
}
/* Buton 5 Bitti */
.btn-6 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-6:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 0;
	background: #fff;
	left: 100%;
	bottom: 0;
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-6:hover:before {
	width: 100%;
	left: 0;
}
/* Buton 6 Bitti */
.btn-7 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-7:before {
	content: '';
	position: absolute;
	height: 0;
	width: 100%;
	background: #fff;
	left: 0;
	top: 0;
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-7:hover:before {
	height: 100%;
}
/* Buton 7 Bitti */
.btn-8 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid #fff;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-8:before {
	content: '';
	position: absolute;
	height: 0;
	width: 100%;
	background: #fff;
	left: 0;
	bottom: 0;
	transition: all 0.3s;
	opacity: 0.3;
}
.btn-8:hover:before {
	height: 100%;
}
/* Buton 8 Bitti */
.btn-9 {
	background: #51a3b8;
	font-size: 20px;
	color: white;
	border-radius: 7px;
	box-shadow: 0 7px 0px #387796;
	display: inline-block;
	transition: all 0.2s;
	position: relative;
	padding: 20px 25px;
	top: 0;
	cursor: pointer;
	margin: 0 20px;
}
.btn-9:active {
	top: 3px;
	box-shadow: 0 2px 0px #387796;
	transition: all 0.2s;
}
/* Buton 9 Bitti */
.btn-10 {
	background: #8d6e63;
	font-size: 20px;
	color: white;
	border-radius: 7px;
	box-shadow: 0 7px 0px #6d4c41;
	display: inline-block;
	transition: all 0.2s;
	padding: 20px 25px;
	position: relative;
	top: 0;
	cursor: pointer;
	margin: 0 20px;
}
.btn-10:active {
	top: 3px;
	box-shadow: 0 2px 0px #6d4c41;
	transition: all 0.2s;
}

/* Buton 10 Bitti */
.btn-11 {
	background: #7986cb;
	font-size: 20px;
	color: white;
	border-radius: 7px;
	box-shadow: 0 7px 0px #3f51b5;
	display: inline-block;
	transition: all 0.2s;
	position: relative;
	padding: 20px 25px;
	top: 0;
	cursor: pointer;
	margin: 0 20px;
}
.btn-11:active {
	top: 3px;
	box-shadow: 0 2px 0px #3f51b5;
	transition: all 0.2s;
}

/* Buton 11 Bitti */
.btn-12 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-12:before {
	content: '';
	position: absolute;
	width: 0;
	background: #fff;
	left: 45%;
	height: 2px;
	bottom: 0;
	transition: all 0.3s;
	opacity: 0.7;
}
.btn-12:hover:before {
	width: 100%;
	left: 0;
}
/* Button 12 Bitti */
.btn-13 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
}
.btn-13:before {
	content: '';
	position: absolute;
	width: 0;
	background: #fff;
	left: 45%;
	height: 2px;
	top: 0;
	transition: all 0.3s;
	opacity: 0.7;
}
.btn-13:hover:before {
	width: 100%;
	left: 0;
}
/* Buton 13 Bitti */
.btn-14 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
	border-bottom: 2px solid #fff;
}
.btn-14:before {
	content: '';
	position: absolute;
	width: 0;
	background: #fff;
	left: 45%;
	height: 2px;
	top: 0;
	transition: all 0.3s;
	opacity: 0.7;
}

.btn-14:hover:before {
	width: 100%;
	left: 0;
}
/* Buton 14 Bitti */
.btn-15 {
	text-align: center;
	display: inline-block;
	padding: 15px 40px;
	cursor: pointer;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
	border-top: 2px solid #fff;
}
.btn-15:before {
	content: '';
	position: absolute;
	width: 0;
	background: #fff;
	left: 45%;
	height: 2px;
	bottom: 0;
	transition: all 0.3s;
	opacity: 0.7;
}
.btn-15:hover:before {
	width: 100%;
	left: 0;
}
/*module*/
#sp-left .sp-module .sp-module-title,
#sp-right .sp-module .sp-module-title {
	padding-bottom: 5px;
	padding-left: 10px;
	padding-top: 5px;
	font-size: 22px;
	font-weight: 500;
	border-bottom: 1px solid #c01f1f;
	color: #8f0000;
	background-color: #ffffff24;
	border-radius: 2px;
	font-family: 'Roboto';
}


/*joomla news*/
.article-info > span a {
	color: #ff0000;
}
.article-info > span {
	color: #878787;
}
.article-full-image {
	box-shadow: rgb(0 0 0 / 45%) 0px 16px 16px -20px;
	padding: 10px;
}
.article-details .article-info {
	margin-bottom: 1rem;
	margin-top: 0.8rem;
	padding-left: 10px;
	border-top: 1px dashed #ccc;
	border-bottom: 1px dashed #ccc;
	border-left: 1px dashed #ccc;
	line-height: 3;
	border-right: 1px dashed #ccc;
	background-color: #f9f9f9;
}
.article-details .article-ratings-social-share {
	padding: 0rem 0;
	border-top: 0px solid #f5f5f5;
	border-bottom: 0px solid #f5f5f5;
	margin-bottom: 0rem;
}
.tags > li a {
	background: rgb(131 131 131 / 10%);
	color: #198754;
	border: 1px solid #ccc;
	border-radius: 0rem;
}
.tags > li a:hover {
	background: rgb(255 94 0);
	color: #f9fafb;
	border: 1px solid #ccc;
	border-radius: 0rem;
}
.tags {
	margin-top: 10px;
}
.article-intro-image {
	border-radius: 0px;
	border-bottom: 1px solid #f5f5f5;
	overflow: hidden;
	padding-left: 5px;
	padding-right: 5px;
}
.article-list .article {
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 30px;
	border: 1px solid #ededed;
	border-radius: 0px;
	box-shadow: rgb(0 0 0 / 45%) 0px 13px 20px -20px;
	background: #ffffff69;
}
.article-list .article .article-intro-image img,
.article-list .article .article-featured-video img,
.article-list .article .article-featured-audio img,
.article-list .article .article-feature-gallery img {
	border-radius: 0px;
}
.article-info {
	margin-bottom: 1.5rem;
}
.article-list .article .article-header h2 a {
	color: #c01f1f;
	margin: 0 0 2px 0;
}
.article-list .article .article-header h2 a:hover {
	color: #404040;
}
.article-list .article .readmore a {
	color: #d90000;
}
#sp-main-body {
	padding: 50px 0;
}
/*carousel image*/
#sppb-addon-1634805944979 .sppb-testimonial-carousel-img-wrap img {
	box-shadow: rgb(0 0 0 / 45%) 0px 25px 20px -20px;
}

/* blog news  */
.sppb-article-img-wrap {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	padding: 5px;
	
	transition: all 0.3s ease;
}
.sppb-article-img-wrap:hover {
	filter: brightness(70%);
	transform: scale(0.95);
}

.sppb-article-img-wrap::after {
	content: '\1F517';
	/* content: url('../../../images/image/icon/fish.png'); */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	transition: transform 0.5s ease;
	font-size: 24px;
	color: white;
	z-index: 10;
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.8);
	border: 2px solid orange;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 40px;
}
.sppb-article-img-wrap:hover::after {
	transform: translate(-50%, -50%) rotate(360deg);
}
/* for single article */
.view-article .article-details {
	display: flex;
	flex-direction: column;
}
.view-article .article-header {
	order: -1;
	margin-bottom: 2px;
}
/* for articles list */
.article-list .articleBody,
.article-list .article-body {
	display: contents;
}
.article-list .article {
	display: flex;
	flex-direction: column;
}
.article-list .article-header {
	order: -1;
}

.article-info {
	order: -1;
}
.article-list .article .article-intro-image,
.article-list .article .article-featured-video,
.article-list .article .article-featured-audio,
.article-list .article .article-feature-gallery {
	margin: -8px -10px 20px 0px;
	border-radius: 3px 3px 0 0;
	border-bottom: 1px solid #f5f5f5;
	overflow: hidden;
}
.sppb-addon.sppb-addon-popover .sppb-marker.active {
    color: #000;
    background: #fff;
}
.number {
    
    transition: background-color 0.5s ease-in-out;
	transition: background-color 0.5s ease-in-out, transform 0.5s ease-in-out; /* Animacja zmiany koloru tła */
}

.number:hover {
    background-color: rgba(255, 0, 0, 0.37);; /* Kolor tła po najechaniu */
	 transform: translateY(-5px);
}
.sppb-carousel-extended-nav-control .nav-control {
    color: #ff0000;
    border: 1px solid #ec430f;
   
}
/* box-1 */
/* box-1 */
.box-1 {
  background-color: #1a1a1a;
  color: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 10px;
}

.box-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.box-1:hover::before {
  border-color: #ff5722;
  animation: borderAnimation 1.5s linear forwards;
}

.box-1 h3 {
  color: #ff5722; /* HouseSmart orange color */
  margin-top: 0;
  font-size: 24px;
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 10px 0;
  padding-left: 15px;
  transition: text-shadow 0.3s ease;
}

.box-1 h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 3px;
  background-color: #ff5722;
  transition: height 0.3s ease;
}

.box-1:hover h3::before {
  height: 100%;
  animation: expandLine 0.3s ease-out forwards;
}

.box-1:hover h3 {
  animation: glowPulse 2s infinite;
}

.box-1 p {
  position: relative;
  z-index: 1;
}

@keyframes borderAnimation {
  0% {
    clip-path: inset(0 0 98% 0);
  }
  25% {
    clip-path: inset(0 98% 0 0);
  }
  50% {
    clip-path: inset(98% 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 98%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 5px rgba(255, 87, 34, 0.5); }
  50% { text-shadow: 0 0 20px rgba(255, 87, 34, 0.8); }
}

@keyframes expandLine {
  0% { height: 0; }
  100% { height: 100%; }
}