* {
	font-family: 'Montserrat', sans-serif !important;
}


body{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size:14px;
	color:#888;
}

html {
	scroll-behavior: smooth;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}


.hero-section {
	position: relative;
}

.hero-bg {
	background-image: url('/img/construction_blueprints.jpg');
	background-size: cover;
	background-position: center top; /* важно */
	background-repeat: no-repeat;
	min-height: 650px; /* чуть больше */
	display: flex;
	align-items: flex-start;
	padding-top: 120px;
	position: relative;
}


	.hero-bg::before {
		content: "";
		position: absolute;
		inset: 0;
	}

.hero-text {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: right;
}


	.hero-text h1 span {
		color: #1A76D1;
	}

@media (max-width: 1200px) {
	.hero-bg {
		min-height: 600px;
		padding-top: 100px;
	}
}


/*===================
	Start Header CSS
=====================*/
.header{
	background-color:#fff;
	position:relative;
}

/* Стили для блока иконок */
.header-icons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 12px;
	gap: 13px; /* Отступ между иконками */
}

/* Стили для каждой кнопки */
.icon-btn {
	color: #333;
	font-size: 13px;
	font-weight: 600;
	margin-left: 10px;
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 8px;
	background-color: #eaeaea;
	transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Стили для иконок */
.icon-btn i {
	font-size: 20px;
	margin-right: 8px;
	color: inherit;
	transition: color 0.3s ease, transform 0.3s ease;
}

.header .navbar-collapse{
	padding:0;
}

.header .header-inner {
	background:#fff;
	z-index:999;
	width:100%;
}
.header .logo {
	float: left;
	margin-top: 18px;
}
	.header .logo img {
		padding: 5px 5px;
	}

.header .navbar {
	background: none;
	box-shadow: none;
	border: none;
	margin: 0;
	height: 0px;
	min-height: 0px;
}

.header .nav li{
	margin-right: 15px;
    float: left;
	position:relative;
}

.header .nav li:last-child{
	margin:0;
}

.header .nav li a {
	color: #2C2D3F;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 25px 12px;
	position: relative;
	display: inline-block;
	position:relative;
}

.header .nav li a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width:0%;
	background: #1A76D1;
	border-radius: 5px 5px 0 0;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}

.header .nav li.active a:before{
	opacity:1;
	visibility:visible;
	width: 100%;
}

.header .nav li.active a{
	color:#1A76D1;
}

.header .nav li:hover a:before{
	opacity:1;
	width: 100%;
	visibility:visible;
}

.header .nav li:hover a{
	color:#1a76d1;
}

.header .nav li a i {
	display: inline-block;
	margin-left: 1px;
	font-size: 13px;
}


.language-selector-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #2C2D3F;
}

	.language-selector-wrapper i {
		font-size: 20px;
		color: #1A76D1;
	}

	.language-selector-wrapper .language-label {
		font-weight: 500;
	}

	.language-selector-wrapper select {
		padding: 6px 10px;
		border-radius: 6px;
		border: 1px solid #ccc;
		font-size: 14px;
		background-color: #fff;
		color: #2C2D3F;
		cursor: pointer;
		transition: all 0.3s ease;
	}

		.language-selector-wrapper select:hover,
		.language-selector-wrapper select:focus {
			border-color: #1A76D1;
			box-shadow: 0 0 5px rgba(26, 118, 209, 0.3);
			outline: none;
		}

/*=========================
	End Header CSS
===========================*/

/*=============================
	Start Feautes CSS
===============================*/
.Feautes{
	padding-top:30px;
}
.Feautes.index2{
	padding-top:100px;
}
.Feautes.testimonial-page{
	padding-top:100px;
}
.Feautes .single-features{
	text-align:center;
	position:relative;
	padding:10px 20px;
}
.Feautes .single-features::before {
	position: absolute;
	content: "";
	right: -72px;
	top: 60px;
	width: 118px;
	border-bottom: 3px dotted #1a76d1;
}
.Feautes .single-features.last::before{
	display:none;
}
.Feautes .single-features .signle-icon{
	position:relative;
}
.Feautes .single-features .signle-icon i{
	font-size:50px;
	color:#1a76d1;
	position:absolute;
	left:50%;
	margin-left:-50px;
	top:0;
	height:100px;
	width:100px;
	line-height:100px;
	text-align:center;
	border:1px solid #dddddd;
	border-radius:100%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.Feautes .single-features:hover .signle-icon i{
	background:#1A76D1;
	color:#fff;
	border-color:transparent;
}
.Feautes .single-features h3{
	padding-top: 128px;
	color:#2C2D3F;
	font-weight:600;
	font-size:21px;
}
.Feautes .single-features p {
	margin-top: 20px;
	font-size: 16px;
}

.Feautes .section-title p {
		margin-top: 20px;
		font-size: 18px;
}
/*=============================
	End Feautes CSS
===============================*/

/*===================
	Why choose CSS
=====================*/
.why-choose .choose-left h3{
	font-size:24px;
	font-weight:600;
	color:#2C2D3F;
	position:relative;
	padding-bottom:20px;
	margin-bottom:24px;
}
.why-choose .choose-left h3:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:2px;
	width:150px;
	background:#1a76d1;
}
.why-choose .choose-left p {
	margin-bottom: 35px;
	font-size: 20px;
}

.why-choose .choose-left .list{}
	.why-choose .choose-left .list li {
		color: #868686;
		margin-bottom: 13px;
		font-size: 15px;
		color: #2C2D3F;
	}
.why-choose .choose-left .list li:last-child{
	margin-bottom:0px;
}
.why-choose .choose-left .list li i{
	height:13px;
	width:13px;
	line-height:13px;
	text-align:center;
	background:#1a76d1;
	color:#fff;
	font-size:14px;
	border-radius:100%;
	padding-left:2px;
	margin-right:10px;
}
/* Start Faq CSS */
.why-choose{
	background:#fff;
	margin-top: 0px;
}

.why-choose .section-title h2 {
	text-transform: none !important;
}

	.why-choose .choose-right {
		display: flex;
		align-items: flex-start; /* выравниваем по верхнему краю */
		justify-content: center;
		height: auto; /* контейнер подстраивается под картинку */
	}

		.why-choose .choose-right img {
			width: 100%;
			height: auto;
			border-radius: 10px;
			display: block;
		}



/*=======================
	End Why choose CSS
=========================*/

/*=========================
	Start Footer CSS
===========================*/

.footer .footer-top {
	padding: 50px 0px;
	position: relative;
	background: linear-gradient(135deg, #1A76D1, #155fa8);
}
	.footer .footer-top:before {
		position: absolute;
		content: "";
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		opacity: 0.1;
		pointer-events: none;
	}

.footer .single-footer .social{
	margin-top:25px;
}
.footer .single-footer .social li{
	display:inline-block;
	margin-right:10px;
}
.footer .single-footer .social li:last-child{
	margin-right:0px;
}
.footer .single-footer .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #fff;
	text-align: center;
	padding: 0;
	border-radius: 100%;
	display: block;
	color:#fff;
	font-size: 16px;
}
.footer .single-footer .social li a:hover{
	color:#1A76D1;
	background:#fff;
	border-color:transparent;
}
.footer .single-footer.f-link li a i{
	margin-right:10px;
}
.footer .single-footer.f-link li{
	display:block;
	margin-bottom:12px;
}
.footer .single-footer.f-link li:last-child{
	margin:0;
}
.footer .single-footer.f-link li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
}
.footer .single-footer.f-link li a:hover{
	padding-left:8px;
}
.footer .single-footer h2 {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 12px;
}

	.footer .single-footer h2::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 60px;
		height: 3px;
		background: rgba(255,255,255,0.8);
		border-radius: 2px;
	}

.footer .single-footer .time-sidual{
	margin-top:15px;
}
.footer .single-footer .time-sidual{
	overflow:hidden;
}
.footer .single-footer .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span{
	display:inline-block;
	float:right;
}
.footer .single-footer .day-head .time {
	font-weight: 400;
	float: right;
}
.footer .single-footer p{
	color:#fff;
}
.footer .single-footer .newsletter-inner{
	margin-top:20px;
	position:relative;
}
.footer .single-footer .newsletter-inner input {
	background: transparent;
	border: 1px solid #fff;
	height: 50px;
	line-height: 42px;
	width: 100%;
	margin-right: 15px;
	color: #fff;
	padding-left: 18px;
	padding-right: 70px;
	display: inline-block;
	float: left;
	border-radius: 0px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
	border-radius: 5px;
}
.footer .single-footer .newsletter-inner input:hover{
	padding-left: 22px;
}
.footer input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-moz-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer .copyright {
	background: #155fa8;
	padding: 18px 0;
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.5px;
}

	.footer .copyright p {
		margin: 0;
		color: rgba(255,255,255,0.9);
		font-size: 16px;
	}

.footer .copyright .copyright-content p{
	color:#fff;
}
.footer .copyright .copyright-content p a{
	color:#fff;
	font-weight:400;
	text-decoration:underline;
	display:inline-block;
	margin-left:4px;
}

/* === CONTACT FOOTER BLOCK === */

.contact-footer .contact-list {
	list-style: none;
	padding: 0;
	margin-top: 15px;
}

	.contact-footer .contact-list li {
		color: #fff;
		margin-bottom: 14px;
		font-size: 15px;
		line-height: 1.6;
		opacity: 0.9;
		transition: 0.3s ease;
	}

.footer-map {
	display: flex;
	justify-content: center;
}

	.footer-map iframe {
		width: 100%;
		max-width: 620px;
		height: 280px;
		border-radius: 14px;
		box-shadow: 0 12px 35px rgba(0,0,0,0.25);
		transition: 0.4s ease;
	}

.footer-logo {
	margin-top: 45px;
}

	.footer-logo img {
		max-width: 300px; /* размер логотипа */
		height: auto;
		opacity: 0.9;
		transition: 0.3s ease;
	}

/*=========================
	End Footer CSS
===========================*/




/*=======================
	Start Fun Facts CSS
=========================*/
.fun-facts {
	position: relative;
}

	.fun-facts.section {
		padding: 120px 0;
	}

.fun-facts {
	background: url('img/fun-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

	.fun-facts .single-fun {
		position: relative;
		margin-bottom: 30px;
	}

		.fun-facts .single-fun i {
			position: absolute;
			left: 30px;
			font-size: 62px;
			color: #fff;
			height: 70px;
			width: 70px;
			line-height: 67px;
			font-size: 28px;
			text-align: center;
			padding: 0;
			margin: 0;
			border: 2px solid #fff;
			border-radius: 0px;
			top: 50%;
			margin-top: -35px;
			-webkit-transition: all 0.4s ease;
			-moz-transition: all 0.4s ease;
			transition: all 0.4s ease;
			border-radius: 50%;
		}

		.fun-facts .single-fun:hover i {
			color: #1A76D1;
			background: #fff;
			border-color: transparent;
		}

		.fun-facts .single-fun .content {
			padding-left: 120px;
		}

		.fun-facts .single-fun span {
			color: #fff;
			font-weight: 600;
			font-size: 20px;
			position: relative;
			display: block;
			-webkit-transition: all 0.4s ease;
			-moz-transition: all 0.4s ease;
			transition: all 0.4s ease;
			display: block;
			margin-bottom: 7px;
		}

		.fun-facts .single-fun p {
			color: #fff;
			font-size: 15px;
		}
/*===================
	End Fun Facts
=====================*/

/*=========================
	Start gallery CSS
===========================*/
.gallery-section {
	padding: 10px 0;
}

.masonry-gallery {
	column-count: 4;
	column-gap: 20px;
}

.video-preview {
	width: 100%;
	height: 0;
	padding-top: 56.25%; /* 16:9 соотношение */
	background: black;
	border-radius: 12px;
	position: relative;
	display: block;
}

	.video-preview::after {
		content: "▶";
		position: absolute;
		font-size: 50px;
		color: white;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		pointer-events: none; /* чтобы не мешать клику */
	}

@media (max-width: 992px) {
	.masonry-gallery {
		column-count: 3;
	}
}

@media (max-width: 768px) {
	.masonry-gallery {
		column-count: 2;
	}
}

@media (max-width: 576px) {
	.masonry-gallery {
		column-count: 1;
	}
}

.masonry-item {
	margin-bottom: 20px;
	break-inside: avoid;
}

	.masonry-item img {
		width: 100%;
		border-radius: 12px;
		cursor: pointer;
		transition: transform 0.3s ease;
	}

		.masonry-item img:hover {
			transform: scale(1.03);
		}





/*=============================
	End gallery CSS
===============================*/