body {
	color: #232434;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	overflow-x: hidden;
}

.header-randy {
	width: 100%;
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #fff;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

.header-randy .container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
}

.header-randy .logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-randy .logo img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid #fff;
}

.header-randy .logo span {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffd700;
}

.header-randy nav {
	display: flex;
	align-items: center;
}

.header-randy nav ul {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
}

.header-randy nav ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.header-randy nav ul li a:hover {
	background: #ffd700;
	color: #203a43;
}

/* Hamburger for mobile */
.header-randy .menu-toggle {
	display: none;
}

.header-randy .lz2VF9l9h5 {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.header-randy .lz2VF9l9h5 span {
	width: 25px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: 0.3s;
}

@media screen and (max-width: 900px) {
	.header-randy nav ul {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #203a43;
		flex-direction: column;
		align-items: center;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease-in-out;
	}

	.header-randy .menu-toggle:checked~nav ul {
		max-height: 300px;
	}

	.header-randy .lz2VF9l9h5 {
		display: flex;
	}
}

html,
body {
	height: 100%;
	position: relative;
}

.site-wrapper {
	max-width: 1360px;
	margin: 0 auto;
	padding: 45px 25px;
}

h1,
h2,
h3 {
	font-weight: 800;
	letter-spacing: 0.3px;
}

/* Intro Section */
.T9acWZKscP {
	background: linear-gradient(to right, #047857, #10b981);
	color: #ecfdf5;
	padding: 160px 70px;
	text-align: center;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.T9acWZKscP::after {
	content: '';
	position: absolute;
	top: -20%;
	left: -20%;
	width: 150%;
	height: 150%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.1)" cx="50" cy="50" r="40"/></svg>') repeat;
	animation: swirl 15s infinite linear;
}

@keyframes swirl {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.T9acWZKscP h1 {
	font-size: 4.5em;
	margin: 0 0 25px;
	text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
}

.T9acWZKscP p {
	font-size: 2em;
	max-width: 850px;
	margin: 0 auto;
	font-weight: 300;
}

/* Services Section */
#repair-services {
	padding: 110px 0;

}

.Tx2IWoHoZ9 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 65px;
}

.fhmL2EX075 {

	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 20px 55px rgba(4, 120, 87, 0.3);
	transition: transform 0.6s ease, box-shadow 0.6s ease;
	position: relative;
}

.fhmL2EX075::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background: #10b981;
	border-radius: 0 25px 0 50px;
	transition: width 0.5s ease, height 0.5s ease;
}

.fhmL2EX075:hover {
	transform: translateY(-10px) rotate(2deg);
	box-shadow: 0 30px 70px rgba(4, 120, 87, 0.4);
}

.fhmL2EX075:hover::before {
	width: 70px;
	height: 70px;
}

.fhmL2EX075 img {
	width: 100%;
	height: 270px;
	object-fit: cover;
	border-bottom: 6px dotted #047857;
	transition: transform 0.5s ease;
}

.fhmL2EX075:hover img {
	transform: scale(1.05);
}

.service-details {
	padding: 40px 30px;
	text-align: center;
}

.service-details h3 {
	font-size: 2.2em;
	color: #10b981;
	margin-bottom: 20px;
}

.service-details p {
	font-size: 1.15em;
	margin-bottom: 25px;
}

.repair-cost {
	font-size: 1.65em;
	font-weight: 800;
	color: #ecfdf5;
	margin-bottom: 25px;
}

.fix-btn {
	display: inline-block;
	background: #047857;
	color: #ecfdf5;
	padding: 16px 40px;
	border-radius: 50px 10px;
	text-decoration: none;
	font-weight: 800;
	text-transform: uppercase;
	transition: border-radius 0.4s ease, background 0.4s ease;
}

.fix-btn:hover {
	border-radius: 10px 50px;
	background: #065f46;
}

/* Plans Section */
#repair-plans {
	padding: 110px 0;

}

.plans-arrange {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	justify-content: center;
}

.plan-panel {
	flex: 1 1 340px;
	background: #ecfdf5;
	border-radius: 15px;
	padding: 50px;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
	transition: outline 0.5s ease;
	max-width: 400px;
}

.plan-panel:hover {
	outline: 4px solid #10b981;
}

.plan-panel h3 {
	font-size: 2.4em;
	color: #047857;
	text-align: center;
	margin-bottom: 35px;
}

.plan-panel ul {
	list-style: none;
	padding: 0;
	margin-bottom: 35px;
}

.plan-panel li {
	font-size: 1.2em;
	margin-bottom: 20px;
	padding-left: 45px;
	position: relative;
}

.plan-panel li::before {
	content: '🛠';
	position: absolute;
	left: 0;
	font-size: 1.6em;
	color: #047857;
}

/* Testimonials Section */
#testimonials {
	padding: 110px 0;

}

.Xq31ERZbLO {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 60px;
}

.testimonial-unit {

	padding: 45px;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(4, 120, 87, 0.25);
	transition: transform 0.6s ease;
}

.testimonial-unit:hover {
	transform: scale(1.03) rotate(-1deg);
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.ME2aPmBNau {
	font-size: 1.4em;
	font-weight: 800;
	color: #10b981;
}

.UIhM199o50 {
	color: #34d399;
	font-size: 1.7em;
}

.testimonial-text {
	font-size: 1.15em;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.T9acWZKscP {
		padding: 110px 50px;
	}

	.T9acWZKscP h1 {
		font-size: 3.8em;
	}

	.Tx2IWoHoZ9,
	.plans-arrange,
	.Xq31ERZbLO {
		gap: 50px;
	}
}

@media (max-width: 768px) {
	.site-wrapper {
		padding: 35px 20px;
	}

	.T9acWZKscP {
		padding: 80px 30px;
		clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
	}

	.T9acWZKscP h1 {
		font-size: 3em;
	}

	.T9acWZKscP p {
		font-size: 1.6em;
	}

	.fhmL2EX075 img {
		height: 230px;
	}

	.plan-panel {
		padding: 40px;
	}
}

@media (max-width: 480px) {
	.fix-btn {
		padding: 14px 30px;
		font-size: 0.9em;
	}

	.repair-cost {
		font-size: 1.45em;
	}

	.UIhM199o50 {
		font-size: 1.5em;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	letter-spacing: 0px;
	margin-top: 0px;
	font-family: Exo, sans-serif;
	color: #232434;
	font-weight: 400;
}

a {
	font-family: Exo, sans-serif;
	text-decoration: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

a:hover {
	color: #fff;
	text-decoration: none;
}

a:focus {
	outline: none;
	text-decoration: none;
}

p {
	margin-bottom: 0;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0;
}

b,
strong {
	font-weight: 600;
}

.no-padding {
	padding: 0
}

/*END PRELOADER DESIGN*/
.section-padding {
	padding: 80px 0
}

/*START SECTION TITLE DESIGN*/
.section-title {
	margin-bottom: 60px
}

.section-title h4 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
}

.section-title h1 {
	text-transform: capitalize;
	font-size: 60px;
	font-weight: 500;
}

.section-title p {
	width: 60%;
	margin: auto;
}

h1.section-title-white {
	color: #fff;
}

h4.section-title-white {
	color: #fff;
}

/*END SECTION TITLE DESIGN*/
/*START SCROLL TO TOP*/
.topcontrol {
	background: #6138bd none repeat scroll 0 0;
	border-radius: 30px;
	bottom: 5px;
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
	color: #fff;
	cursor: pointer;
	font-size: 22px;
	height: 50px;
	line-height: 47px;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	position: fixed;
	right: 5px;
	text-align: center;
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
	width: 50px;
}

@media only screen and (max-width:768px) {
	.topcontrol {
		display: none;
	}
}

.topcontrol:hover {
	background: #fff;
	color: #1b2032;
}

/*END SCROLL TO TOP*/
/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 02.START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
.site-logo img {
	width: 150px;
	height: auto;
	margin-top: 10px;
}

.bg-faded {
	background-color: transparent;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.navbar-fixed {
	z-index: 999;
	position: fixed;
	opacity: .98;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=98)";
	width: 100%;
	padding: 10px 0;
	top: 0;
	-webkit-animation: fadeInDown 800ms;
	animation: fadeInDown 800ms;
	-webkit-backface-visibility: hidden;
	border-radius: 0px;
	background: #fff;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
}

#navigation {
	padding: 10px 0;
	/* border-bottom: 1px solid #232434; */
	background-color: transparent;
}

#navigation.navbar-fixed {
	padding: 10px 0;
	background: #fff;
	border-color: #fff;
}

.header_right {
	display: block;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}



#main-menu ul {
	list-style-type: none;
	text-align: center;
}

#main-menu ul li {
	display: inline-block;
	margin-left: 20px;
	position: relative;
}

#main-menu ul li a {
	color: #232434;
	font-weight: 600;
	text-transform: capitalize;
	-webkit-transition: .5s;
	transition: .5s;
	font-size: 16px;
	padding: 24px 0 26px;
	display: block;
}

#main-menu ul li a span {
	font-weight: bold;
	font-size: 12px;
}

@media only screen and (max-width: 880px) {
	#main-menu ul li a span {
		display: none;
	}
}

#navigation.navbar-fixed #main-menu ul li a {
	color: #232434;
	padding: 22px 0 22px;
}

#navigation.navbar-fixed #main-menu ul li a:hover,
#navigation.navbar-fixed #main-menu ul li a:focus,
#main-menu ul li a:hover,
#main-menu ul li a:focus {
	color: #232434;
}

#main-menu ul li>a:hover,
#main-menu ul li>a:focus {

	color: #232434;
}



#navigation.navbar-fixed #main-menu ul li a:hover,
#navigation.navbar-fixed #main-menu ul li a:focus {
	color: #232434;
}

.slicknav_menu {
	font-size: 16px;
	box-sizing: border-box;
	background: #fff;
	padding: 0px;
}

.slicknav_nav_icon {
	color: #6138bd;
	font-size: 24px;
}

#mobile_menu {
	display: none;
}

/* Responsive Design */
@media only screen and (max-width:1024px) {
	#main-menu ul li {
		margin-left: 30px;
	}
}

/*END 1024px*/
@media only screen and (max-width: 991px) {
	#main-menu ul li {
		margin-left: 9px;
	}

	#main-menu ul li a {
		font-size: 15px;
	}

	#navigation {
		padding: 10px 0 20px;
		background: #fff;
	}
}

/*END 991px*/
@media only screen and (max-width: 880px) {
	#main-menu {
		display: none;
	}

	#mobile_menu {
		display: block;
		width: 100%;
	}

	.slicknav_nav {
		background-color: #fff;
	}

	#navigation #mobile_menu li a {
		color: #232434;
		font-weight: 500;
	}

	#navigation.navbar-fixed #mobile_menu li a {
		color: #232434;
	}

	.slicknav_nav a {
		padding: 5px 0px;
		-webkit-transition: .3s;
		transition: .3s;
	}

	#navigation #mobile_menu li a:hover,
	#navigation #mobile_menu li a:focus {
		color: #232434;
		background: #fff;
	}

	.slicknav_btn {
		top: 24px;
		background: #232434;
	}
}

/*END 767px*/

@media only screen and (max-width: 575px) {
	.slicknav_btn {
		margin: 0;
		text-decoration: none;
		position: absolute;
		top: 35px;
		right: 17px;
	}

	.ti-angle-down {
		display: none;
	}
}

/*END 575px*/
/*-------------------------------
# Dropdwon menu 
--------------------------------*/

#navigation #main-menu ul li ul,
#navigation #main-menu ul li ul li ul {
	background: #fff;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, .05);
	left: -55px;
	list-style: outside none none;
	margin: 0;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	padding: 10px;
	position: absolute;
	text-align: left;
	top: 100%;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 200px;
	z-index: 999;
	border-radius: 4px;
	border-top: 2px solid #232434;
}

#navigation #main-menu ul li ul li {
	position: relative;
}

#navigation #main-menu ul li ul li ul {
	top: 0;
	right: auto;
	left: 205px;
}

#navigation.navbar-fixed #main-menu ul li li a {
	color: #232434;
}

#navigation #main-menu ul li:hover ul,
#navigation #main-menu ul li ul li:hover>ul {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible;
}

#navigation #main-menu ul li ul li {
	display: block;
	margin: 0;
	padding: 0;
}

#navigation.navbar-fixed #main-menu ul li ul li a,
#navigation #main-menu ul li ul li a {
	color: #232434;
	display: block;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 5px 12px;
	position: relative;
	-webkit-transition: all 0.3s ease 0s !important;
	transition: all 0.3s ease 0s !important;
	visibility: inherit !important;
	opacity: inherit !important;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=NaN)";
}

#navigation #main-menu ul li ul li a:hover,
#navigation.navbar-fixed #main-menu ul li ul li a:hover,
#navigation.navbar-fixed #main-menu ul li ul li a:focus {
	color: #fff;
	background-color: #232434;
	text-decoration: none;
}


@media only screen and (max-width:767px) {
	.navbar-brand {
		padding-top: 20px;
	}
}



.call_to_action a {
	background: #232434;
	border: 1px solid #232434;
	color: #fff;
	padding: 10px 30px;
	font-weight: 500;
	display: inline-block;
	float: right;
	margin-top: 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 30px;
}

.call_to_action a:hover {
	background: #fff;
	border: 1px solid #232434;
	color: #232434;
}

@media only screen and (max-width:880px) {
	.call_to_action a {
		padding: 10px 22px;
	}
}

.home_bg {
	height: 750px;
	position: relative;
}

@media only screen and (max-width:960px) {
	.home_bg {
		height: auto;
	}
}

.about_me_content {
	padding-top: 250px;
	position: relative;
}

@media only screen and (max-width:768px) {
	.about_me_content {
		padding-left: 30px;
		padding-right: 20px;
	}
}

.about_me_content h1 {
	font-size: 90px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 120px;
	margin-bottom: 10px;
}

@media only screen and (max-width:480px) {
	.about_me_content h1 {
		font-size: 40px;
		line-height: 50px;
	}
}

.about_me_content p {
	margin-bottom: 40px;
	font-weight: 400;
	font-size: 18px;
}

@media only screen and (max-width:480px) {
	.home_btn {
		margin-left: 30px;
	}
}

@media only screen and (max-width:480px) {
	.home_btn {
		margin-top: 30px;
	}
}

.home_btn a {
	display: inline-block;
	margin-right: 30px;
}

.home_one {
	background: #232434;
	border: 1px solid #232434;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	padding: 14px 40px;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 100px;
	display: inline-block;
	font-weight: 500;
}

.home_one:hover,
.home_one:focus {
	background: #fff;
	border: 1px solid #232434;
	color: #232434;
	box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.1);
}

.video-play {
	margin-top: 35px;
	display: block;
}

.video-play i {
	background: #232434;
	color: #fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 100px;
	margin-right: 15px;
	display: inline-block;
	box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.15);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.video-play:hover i {
	background: #fff;
	color: #232434;
}

.video-title {
	font-weight: 400;
	color: #232434;
	text-transform: uppercase;
	font-size: 16px;
}

/*Image style coding*/
.profile_img {
	padding-top: 200px;
}

@media only screen and (max-width:812px) {
	.profile_img {
		padding-top: 100px;
		text-align: center;
	}
}



.home_socials ul li {
	float: left;
}

.home_socials ul li a {
	color: #1b1e22;
	margin-right: 15px;
	font-size: 20px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.home_socials ul li a:hover {
	color: #6138bd;
}

/*
* ----------------------------------------------------------------------------------------
* 03. END HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04.START SERVICE DESIGN
* ----------------------------------------------------------------------------------------
*/
.best-service {
	padding-bottom: 50px;
	position: relative;
}

.best-service:before {
	position: absolute;
	content: '';
	height: 1375px;
	width: 600px;
	background-image: url(../img/bg/bg-2.png);
	background-size: 100% 100%;
	right: 0;
	top: 0;
	z-index: -1;
}



.service-title h4 {
	font-size: 18px;
	font-weight: 500;
}

.service-title h1 {
	font-weight: 600;
	line-height: 54px;
	margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
	.service-title h1 {
		line-height: 44px;
		margin-bottom: 0px;
	}
}



.service-content p {
	margin-top: 32px;
	padding-left: 30px;
}

@media only screen and (max-width: 768px) {
	.service-content p {
		padding-left: 0px;
		margin-bottom: 60px;
	}
}

.single_service {
	background: -webkit-linear-gradient(left, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	padding: 60px;
	padding: 60px;
	border-radius: 10px;
	-webkit-transition: 0.3s;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	margin-bottom: 30px;
	position: relative;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.single_service:hover {
	background: #fff;
	box-shadow: 0px 60px 60px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 100;
	-webkit-transform: translate(0, -10px);
	transform: translate(0, -10px);
}

@media only screen and (max-width:480px) {
	.single_service {
		padding: 30px;
		margin: 0 0 65px 0px;
	}
}

.single_service img {
	margin-bottom: 30px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 100px;
}

@media only screen and (max-width:480px) {
	.single_service span {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
}

.single_service h3 {
	font-weight: 600;
	font-size: 22px;
	padding-bottom: 15px;
}

.single_service p {
	margin-bottom: 0px;
}


.complete-project-area {
	padding-bottom: 50px;
}

.single-project-complete {
	border-right: 1px solid #ddd;
	text-align: center;
	margin-bottom: 30px;
}

.brnone {
	border-right: 0px;
}

@media only screen and (max-width:768px) {
	.single-project-complete {
		margin-bottom: 30px;
	}
}

.single-project-complete h2 {
	font-size: 45px;
	font-weight: 600;
}

.single-project-complete p {
	text-transform: capitalize;
	font-weight: 500;
	margin-top: 0;
}

/*05.END COUNTER AREA*/

/*
* ----------------------------------------------------------------------------------------
* 06.START PROMO DESIGN
* ----------------------------------------------------------------------------------------
*/
.csQ7lgPbvy {

	background-position: center;
	background-size: cover;
}



@media only screen and (max-width: 880px) {
	.aO4r6RG0wW {
		margin-bottom: 60px;
	}
}

.aO4r6RG0wW h1 {
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 50px;
}

.promo_one_btn {
	margin-top: 30px;
}

.promo_two_story h1 {
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 36px;
	line-height: 46px;
}

.promo_percenteg {
	margin-top: 30px;
}

.promo_two_img {
	text-align: center;
}

.pts_blod {
	font-weight: 600;
	margin-bottom: 40px;
}

.pp_one {
	float: left;
	margin-right: 40px;
}

.pp_one h2 {
	font-weight: 600;
	font-size: 48px;
}

.pp_one h2 span {
	color: #6bbf59;
	margin-left: 8px;
}



.pp_two h2 {
	font-weight: 600;
	font-size: 48px;
}

.pp_two h2 span {
	color: #cd3d3d;
	margin-left: 8px;
}



.marketing_content_area {
	padding-bottom: 50px;
	position: relative;
}

.marketing_content_area:before {
	position: absolute;
	content: '';
	height: 1375px;
	width: 600px;
	background-image: url(../img/bg/bg-1.png);
	background-size: 100% 100%;
	left: 0;
	top: 0;
	z-index: -1;
}

@media only screen and (max-width: 880px) {
	.marketing_content_area:before {
		width: 100%;
	}
}



.marketing-title h4 {
	font-size: 18px;
	font-weight: 500;
}

.marketing-title h1 {
	font-weight: 600;
	line-height: 46px;
	font-size: 36px;
	margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
	.marketing-title h1 {
		margin-bottom: 0px;
	}
}



.marketing-content p {
	margin-top: 32px;
	padding-left: 30px;
}

@media only screen and (max-width: 768px) {
	.marketing-content p {
		margin-bottom: 60px;
		padding-left: 0px;
	}
}

.single_marketing {
	margin-bottom: 30px;
	position: relative;
}

.single_marketing img {
	border-radius: 10px;
}

.single_marketing_inner {
	box-shadow: 0 10px 40px -10px rgba(0, 64, 128, .2);
	margin: 0 20px;
	margin-top: -80px;
	background: #fff;
	position: relative;
	border-radius: 8px;
	padding: 30px;
	transition: 0.3s;
}

.single_marketing_inner h2 {
	font-size: 20px;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.single_marketing_inner h2 a {
	color: #232434;
	font-weight: 600;
	text-transform: capitalize;
	transition: 0.3s;
}

.single_marketing_inner h2 a:hover {
	color: #3c79f5;
}

.single_marketing_inner p {
	margin-bottom: 0px;
	transition: 0.3s;
}

.single_marketing:hover .single_marketing_inner {
	background: #3c79f5;
}

.single_marketing:hover .single_marketing_inner h2 a {
	color: #fff;
}

.single_marketing:hover .single_marketing_inner p {
	color: #fff;
}

/*END PORTFOLIO SINGLE PAGE DESIGN*/


.single_project_details {
	background: #fff;
	padding: 60px;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
}



.single_project_details h1 {
	margin: 20px 0;
	font-size: 50px;
	line-height: 60px;
	text-transform: capitalize;
	font-weight: 500;
}

@media only screen and (max-width: 480px) {
	.single_project_details h1 {
		margin: 20px 0;
		font-size: 30px;
		line-height: 45px;
	}
}

.project_details_info {
	margin-bottom: 30px;
	margin-top: 30px;
}

.project_details_info h4 {
	font-weight: 500;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.project_details_info ul {
	list-style: none;
}

.project_details_info ul li {
	line-height: 32px;
}

.project_details_info ul li i {
	color: #000;
	margin-right: 10px;
}

.project_details_info ul li a {
	color: #000;
}



.testimonials_area {
	background: #232434;
}

.testimonial {
	margin-bottom: 0px;
}

@media screen and (max-width:812px) {
	.testimonial {
		margin-bottom: 30px;
	}
}

.testimonial_content {
	width: 80%;
	margin: auto;
	margin-bottom: 40px;
}

.testimonial_content h3 {
	font-weight: 600;
	font-size: 20px;
	color: #fff;
}

.testimonial_content i {
	color: #fff;
	font-size: 22px;
}

.testimonial_content p {
	overflow: hidden;
	font-size: 20px;
	line-height: 34px;
	font-weight: 400;
	color: #fff;
}

.testi_pic_title {
	display: inline-block;
	overflow: hidden;

}

.testi_pic_title .pic {
	margin-left: 30px;
	margin-bottom: 30px;
	width: 80px;
	height: 80px;
}

.testi_pic_title .pic img {
	width: 100%;
	height: auto;
	border-radius: 100px;
}

.testi_pic_title h4 {
	font-size: 18px;
	font-weight: 500;
	margin-top: 10px;
	overflow: hidden;
	color: #fff;
	text-transform: uppercase;
}

.testi_pic_title small {
	font-weight: 400;
	font-size: 14px;
	margin-top: 8px;
	display: block;
	color: #fff;
}

.owl-theme .owl-controls .owl-page span {
	border: 2px solid #fff;
	background: #fff;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page:hover span {
	background: #fff;
}

@media only screen and (max-width: 767px) {
	.testimonial {
		padding: 20px;
		text-align: center;
	}

	.testimonial .pic {
		display: block;
		position: static;
		margin: 0 auto 15px;
	}
}

.owl-theme .owl-controls .owl-page {
	display: inline-block
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer
}

.owl-theme .owl-controls .owl-page span {
	background-color: #fff !important;
	border-radius: 20px;
	display: block;
	height: 6px;
	margin: 5px 3px;
	width: 6px;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	background-color: #fff
}

.owl-theme .owl-controls {
	display: block !important;
	margin-top: 10px;
	text-align: center;
}

.customer_success_area {
	background: url(../img/bg/2.png);
	background-size: cover;
	background-position: top center;
}

.single_success {
	margin-top: 60px;
}

@media only screen and (max-width: 880px) {
	.single_success {
		margin-top: 0px;
		margin-bottom: 60px;
	}
}

.single_success h1 {
	font-weight: 600;
	font-size: 36px;
	line-height: 46px;
	margin-bottom: 30px;
}

.single_success h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

.single_success ul {
	margin-bottom: 30px;
}

.single_success ul li {
	text-transform: capitalize;
	font-weight: 400;
	line-height: 30px;
}

.single_success ul li span {
	color: #68c917;
	font-weight: bold;
}

.single_success h5 {
	margin-bottom: 30px;
	font-weight: 500;
	text-decoration: underline;
}

.single_success_img {
	text-align: center;
}

.single_success_img img {
	width: 450px;
}

@media only screen and (max-width:880px) {
	.single_success_img img {
		width: 100%;
	}
}

.promotion_contact {
	padding: 60px 0;
}



.promo_contact_content h1 {
	font-weight: 600;
	margin-bottom: 20px;
}

.promo_contact_content p {
	margin-bottom: 30px;
}


.partner_title h3 {
	margin-bottom: 60px;
	font-size: 22px;
	font-weight: 500;
}

.partner.owl-theme .owl-controls {
	display: none !important;
}

/*
 * ----------------------------------------------------------------------------------------
 * 10.END PROMO CONTACT AND PARTNER LOGO DESIGN
 * ----------------------------------------------------------------------------------------
*/

/* ----------------------------------------------------------------------------------------
* 11.START TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
.team_area {
	padding-bottom: 20px;
}

.our-team {
	margin-bottom: 60px;
}

@media only screen and (max-width:880px) {
	.our-team {
		margin-bottom: 30px
	}
}

.single-team {
	margin-bottom: 10px;
}

.single-team img {
	margin-bottom: 20px;
	width: 250px;
	border-radius: 50%;
}

.single-team h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.single-team p {
	margin-bottom: 0px;
}

.our-team .social {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.our-team .social li {
	display: inline-block;
}

.our-team .social li a {
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 15px;
	color: #fff;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	border-radius: 30px;
	margin: 3px;
}

.our-team:hover .social li:nth-child(1) a {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.our-team:hover .social li:nth-child(2) a {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.our-team:hover .social li:nth-child(3) a {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.our-team:hover .social li:nth-child(4) a {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.our-team .social li a:hover {
	border: 1px solid #eee;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.facebook {
	background: #1C58A1;
	border: 1px solid #1C58A1;
}

.facebook:hover {
	background: #fff;
	color: #1C58A1 !important;
}

.twitter {
	background: #0CBCE3;
	border: 1px solid #0CBCE3;
}

.twitter:hover {
	background: #fff;
	color: #0CBCE3 !important;
}

.linkedin {
	background: #0e76a8;
	border: 1px solid #0e76a8;
}

.linkedin:hover {
	background: #fff;
	color: #0e76a8 !important;
}

.blog_area {
	padding-bottom: 50px;
}

.single_blog {
	margin-bottom: 30px;
}

.single_blog img {
	border-radius: 10px;
}

.sb_content {
	box-shadow: 0 10px 40px -10px rgba(0, 64, 128, .2);
	margin: 0 20px;
	margin-top: -30px;
	background: #fff;
	position: relative;
	border-radius: 8px;
	padding: 30px;
}

.sb_content h2 {
	line-height: 34px;
	font-size: 22px;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.sb_content h2 a {
	color: #232434;
	font-weight: 600;
	text-transform: capitalize;
}

.sb_content h2 a:hover {
	color: #3c79f5;
}

.sb_content p {
	margin-bottom: 0px;
}

.sb_content span {
	text-transform: capitalize;
	margin-bottom: 10px;
	display: inline-block;
	font-weight: 500;
}

.sb_content span a {
	color: #232434;
}

.single_blog_two span {
	margin-top: 0px;
}

.single_blog_two p {
	margin-bottom: 30px;
}

.blog_btn {
	font-weight: 600;
	text-decoration: underline;
	color: #232434;
	display: inline-block;
	margin-top: 15px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.blog_btn:hover {
	color: #3c79f5;
}

/*START SINGLE PAGE BLOG STYLE*/
.contact_form_blog {
	padding-top: 0px !important;
}

.blog_sidebar_title {
	border-bottom: 1px solid #d4d7e5;
	color: #232434;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: x;
	margin-bottom: 15px;
	margin-top: 0;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.blog_search,
.latest_blog,
.advertisement_post,
.video_post,
.categories,
.tag,
.banner {
	margin-bottom: 30px;
	background: #F5F7FC;
	padding: 30px 30px;
	border-radius: 10px;
}

.tag {
	overflow: hidden;
}



.blog_search input {
	background: #fff;
	border: 1px solid #fff;
	border-radius: 0;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	height: 52px;
	outline: 0 none;
}

.blog_search input:focus {
	border: 1px solid #72c02c;
	outline: 0 none;
}

.single_latest_blog {
	overflow: hidden;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.single_latest_blog h4 {
	color: #232434;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	margin: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single_latest_blog h4:hover {
	color: #3c79f5;
}

.single_latest_blog span {
	color: #161616
}

.single_upcoming_event {
	margin-bottom: 20px;
}

.single_upcoming_event h4 {
	color: #232434;
	font-size: 17px;
	font-weight: 600;
	line-height: 28px;
	margin: 10px 0 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single_upcoming_event:hover h4 {
	color: #ffff
}

.single_upcoming_event span i {
	margin-right: 5px;
	color: #232434
}

.single_upcoming_event span {
	color: #777
}

.categories ul {
	margin: 0;
	padding: 0;
	list-style: none;
}



.categories ul li a {
	color: #232434;
	display: block;
	padding: 5px 0;
	font-weight: 500;
}

.categories ul li a:hover {
	color: #3c79f5;
}

.categories ul li a i {
	margin-right: 10px
}

.video_post iframe {
	width: 100%;
	height: 100%;
	border: medium none;
}

.tag a {
	border: 2px solid #232434;
	border-radius: 30px;
	color: #232434;
	display: block;
	float: left;
	font-size: 14px;
	font-weight: 500;
	margin: 6px 4px;
	padding: 3px 20px;
	text-transform: capitalize;
	font-family: open sans, sans-serif;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: none;
}

.tag a:hover {
	background: #3c79f5;
	color: #fff;
	border: 2px solid #3c79f5;
}

.bc_left {
	padding-left: 30px;
	font-style: italic;
	font-weight: 600;
}

.bc_bottom {
	margin-bottom: 30px;
}

.blog-img img {
	width: 100%;
}

.author_part {
	margin-bottom: 30px;
	overflow: hidden;
	margin-top: 60px;
}

.single_author {
	background: #F5F7FC;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 40px -10px rgba(0, 64, 128, .08);
	overflow: hidden;
}

.author_part img {
	border-radius: 100px;
	float: left;
	height: 120px;
	margin-right: 20px;
	width: 120px;
}

.author_part h4 {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
}

.author_part p {
	margin-bottom: 0
}

.blog_head_title {
	border-bottom: 1px solid #e1dddd;
	margin: 0 0 30px;
	padding-bottom: 10px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 18px;
}

.comments_part {
	margin-bottom: 60px;
}

.single_comment {
	margin-bottom: 30px;
	background: #F5F7FC;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 40px -10px rgba(0, 64, 128, .08);
	overflow: hidden;
}

.single_comment_mbnone {
	margin-bottom: 0px
}

.single_comment img {
	border-radius: 100px;
	float: left;
	height: 120px;
	margin-right: 20px;
	width: 120px;
}

.single_comment h4 {
	font-size: 16px;
	font-weight: 600;
	/* letter-spacing: 1px; */
	text-transform: uppercase;
}

.single_comment p {
	margin-bottom: 0
}

.comment-box {
	border-radius: 10px;
}

.comment_form input,
.comment_form textarea {
	border: 0px;
}

.comment_form input:focus,
.comment_form textarea:focus {
	border: 0px;
}



.single_address h4 {
	font-weight: 600;
	font-size: 26px;
	margin-bottom: 20px;
}

.mr_20 {
	margin-bottom: 10px;
}



.single_address p a {
	color: #232434;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	font-weight: 500;
	margin-bottom: 10px;
	display: inline-block;
}

.single_address p a:hover {
	color: #3c79f5;
}



.map iframe {
	width: 100%;
	height: 400px;
	margin-bottom: -10px;
}

.contact input {
	background: -webkit-linear-gradient(left, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	border: 1px solid #fff;
	border-radius: 0px;
	box-shadow: none;
	color: #232434;
	font-size: 18px;
	font-weight: 400;
	height: 70px;
	padding: 20px;
	width: 100%;
	margin-bottom: 15px;
}

.contact textarea {
	background: -webkit-linear-gradient(left, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	border: 1px solid #fff;
	border-radius: 0px;
	box-shadow: none;
	color: #232434;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 400;
	padding: 20px;
	width: 100%;
}

.contact input:focus {
	background: -webkit-linear-gradient(left, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	border: 1px solid #f6f6f6;
	box-shadow: none;
	color: #232434;
	outline: 0 none;
}

.contact textarea:focus {
	background: -webkit-linear-gradient(left, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	border: 1px solid #fff;
	box-shadow: none;
	color: #232434;
	outline: 0 none;
}

.contact button {
	font-size: 16px;
}

.contact_btn {
	background: #ffaa17;
	display: inline-block;
	color: #fff;
	border: 2px solid #ffaa17;
	padding: 12px 40px;

}

.contact_btn:hover {
	background: #232a34;
	border: 2px solid #232a34;
}

/*
* ----------------------------------------------------------------------------------------
* 13.END ADDRESS DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 14.START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
.footer {
	background-size: cover;
	background-position: top center;
	padding-bottom: 40px;
}

.cf_border {
	padding: 40px 0;
	border-bottom: 1px solid #232434;
	margin-bottom: 60px;
}



.cf_mail span {
	color: #fff;
}

.cf_mail h2 {
	color: #fff;
	font-size: 30px;
}

@media only screen and (max-width:480px) {
	.cf_mail h2 {
		font-size: 22px;
	}
}

.cf_logo {
	text-align: center;
}

.cf_logo img {
	width: 140px;
	margin-top: 10px;
}

@media only screen and (max-width:880px) {
	.cf_logo {
		float: left;
		margin-bottom: 40px;
	}
}



.cf_phone span {
	color: #fff;
}

.cf_phone h2 {
	color: #fff;
	font-size: 30px;
}

@media only screen and (max-width:480px) {
	.cf_phone h2 {
		font-size: 22px;
	}
}

.footer_logo p {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 25px;
}



@media only screen and (max-width:880px) {
	.single_footer {
		margin-bottom: 40px;
	}
}

.single_footer h4 {
	color: #fff;
	margin-top: 0;
	margin-bottom: 25px;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 17px;
}

.single_footer p {
	color: #fff;
}

.single_footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}



.single_footer ul li a {
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	line-height: 36px;
	font-size: 15px;
	text-transform: capitalize;
}

.single_footer ul li a:before {
	content: "-";
	font-family: "LineAwesome";
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	font-size: 20px;
	margin-right: 6px;
}

.single_footer ul li a:hover {
	color: #fff;
}



.single_footer_address ul li {
	color: #fff;
}

.single_footer_address ul li span {
	font-weight: 400;
	color: #fff;
	line-height: 28px;
}

.contact_social ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

.single_footer_address p {
	margin-bottom: 10px;
}

/*START SOCIAL PROFILE CSS*/


.newsletter-form h4 {
	color: #fff;
	margin-top: 0;
	margin-bottom: 25px;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 18px;
}

.newsletter-form input {
	width: 100%;
	margin-bottom: 20px;
	height: 50px;
	padding: 10px;
	color: #1d293e;
	border-radius: 2px;
	border: 0px;
}

.subscribe button {
	border: none;
	width: 100%;
}

.sub_btn {
	background: #3c79f5;
	border: 1px solid #3c79f5;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	padding: 14px 40px;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 100px;
	display: inline-block;
	font-weight: 500;
}

.sub_btn:hover,
.sub_btn:focus {
	background: #fff;
	border: 1px solid #232434;
	color: #232434;
	box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.1);
}

.social_profile {
	margin-top: 25px;
	overflow: hidden;
}

@media only screen and (max-width:880px) {
	.social_profile {
		margin-bottom: 40px;
	}
}

.social_profile ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

.social_profile ul li {
	float: left;
}

.social_profile ul li a {
	text-align: center;
	border: 0px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin-right: 10px;
	font-size: 16px;
	color: #fff;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 30px;
}

@media only screen and (max-width:480px) {
	.social_profile ul li a {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}

.social_profile ul li a:hover {
	color: #232434;
	background: #fff;
}

.f_facebook {
	background: #3B5998;
}

.f_twitter {
	background: #1A90D9;
}

.f_instagram {
	background: #FF5252;
}

.f_linkedin {
	background: #0e76a8;
}

/*END SOCIAL PROFILE CSS*/
.footer_copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 30px;
	margin-top: 60px;
}

.footer_copyright p {
	color: #fff;
	text-align: center;
	text-transform: capitalize;
}

/*
* ----------------------------------------------------------------------------------------
* 14.END FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 15.START SECTION TOP DESIGN
* ----------------------------------------------------------------------------------------
*/
.section-top {
	padding-bottom: 50px;
	/* ; */
	position: relative;
	border-bottom: 1px solid #ddd;
	background: -webkit-linear-gradient(left, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
	height: 100px;
}

.HngwqNUp8F {
	padding-top: 50px;
}

.HngwqNUp8F h4 {
	font-weight: 500;
	text-transform: capitalize;
	font-size: 20px;
	margin-bottom: 20px;
	text-decoration: underline;
	display: inline-block;
	background: #3c79f5;
	color: #fff;
}

.HngwqNUp8F h1 {
	color: #232434;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 46px;
	margin-bottom: 30px;
	line-height: 56px;
}

@media only screen and (max-width:480px) {
	.HngwqNUp8F h1 {
		font-size: 30px;
	}
}

.site-footer {
	background-color: #3d3d3d;
	color: #fff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	padding: 60px 20px 30px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-main-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #555;
}

@media (max-width: 991px) {
	.footer-main-content {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
}

.RMQpRLpoC1 {
	flex-basis: 45%;
	max-width: 500px;
}

.footer-nav-column {
	flex-basis: 25%;
	min-width: 180px;
}

@media (max-width: 991px) {

	.RMQpRLpoC1,
	.footer-nav-column {
		flex-basis: auto;
	}
}

.brand-title {
	font-size: 2.2em;
	font-weight: bold;
	color: #f0f0f0;
	margin-bottom: 5px;
}

.company-name {
	font-size: 1.5em;
	font-weight: 300;
	color: #bbb;
	margin-bottom: 15px;
}

.UR7CMqLrm5 {
	font-size: 0.9em;
	line-height: 1.6;
	color: #aaa;
	margin-bottom: 25px;
}

.contact-info-list {
	margin-bottom: 30px;
}

.Qt5qfB05pu {
	margin: 0;
	line-height: 1.8;
}

.WOuCogQiPh {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.WOuCogQiPh:hover {
	color: #ffcc00;
	/* A pop of color on hover */
}

.iK8N2plzt6 {
	display: flex;
	gap: 20px;
}

@media (max-width: 991px) {
	.iK8N2plzt6 {
		justify-content: center;
	}
}

.social-icon-link img {
	width: 38px;
	height: 38px;
	transition: transform 0.3s ease;
	filter: brightness(0.8) invert(1);
}

.social-icon-link img:hover {
	transform: scale(1.1);
}

.nav-heading {
	font-size: 1.1em;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
	position: relative;
}

.nav-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 50px;
	height: 2px;
	background-color: #ffcc00;
}

@media (max-width: 991px) {
	.nav-heading::after {
		left: 50%;
		transform: translateX(-50%);
	}
}

.nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-list li {
	margin-bottom: 10px;
}

.nav-list a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav-list a:hover {
	color: #ffcc00;
}

.footer-copyright-bar {
	text-align: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #555;
}

.copyright-text {
	font-size: 0.8em;
	color: #777;
	margin: 0;
}


:root {
	--deep-emerald: #065f46;
	--bright-saffron: #f59e0b;
	--pure-white: #ffffff;
	--soft-gray: #d1d5db;
}

.geo-harmony {
	min-height: 70vh;
	display: flex;
	align-items: center;
	background: var(--pure-white);
	position: relative;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
}

.geo-harmony::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(6, 95, 70, 0.05) 20px, rgba(6, 95, 70, 0.05) 40px);
	animation: slide-pattern 10s linear infinite;
}

.uMM5o9Ch6G {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem;
	position: relative;
	z-index: 1;
}

.align-axis {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
}

.restore-zone {
	flex: 1;
	padding: 1.5rem;
	background: var(--soft-gray);
	text-align: left;
	position: relative;
	clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 100%);
}

.line-titles {
	margin-bottom: 1rem;
}

.solid-vow {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--deep-emerald);
	line-height: 1.3;
	position: relative;
}

.solid-vow::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--bright-saffron);
	transition: width 0.3s ease;
}

.restore-zone:hover .solid-vow::after {
	width: 80px;
}

.wide-reach {
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--bright-saffron);
	margin-top: 0.5rem;
}

.text-plane p {
	font-size: 1rem;
	color: var(--deep-emerald);
	line-height: 1.5;
	font-weight: 400;
}

.text-plane strong {
	font-weight: 700;
	color: var(--bright-saffron);
}

.action-grid {
	margin-top: 1.5rem;
	display: flex;
	justify-content: flex-start;
}

.estimate-edge {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
	text-decoration: none;
	font-weight: 600;
	background: var(--deep-emerald);
	color: var(--pure-white);
	transition: transform 0.3s ease;
	cursor: pointer;
	position: relative;
}

.estimate-edge:hover {
	transform: translateY(-5px);
}

.VJdi6OY73s {
	width: 18px;
	height: 18px;
	margin-left: 0.5rem;
	fill: var(--pure-white);
}

.visual-shift {
	flex: 1;
	position: relative;
}

.shape-frame {
	position: relative;
	overflow: hidden;
}

.shift-img {
	width: 100%;
	object-fit: cover;
	transition: opacity 0.5s ease;
}

.move-overlay {
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, transparent, rgba(245, 158, 11, 0.3), transparent);
	animation: glide-effect 4s linear infinite;
}

.shape-frame:hover .shift-img {
	opacity: 0.8;
}

@keyframes slide-pattern {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50px);
	}
}

@keyframes glide-effect {
	from {
		left: -100%;
	}

	to {
		left: 100%;
	}
}

@media (max-width: 992px) {
	.align-axis {
		flex-direction: column;
	}

	.solid-vow {
		font-size: 1.8rem;
	}

	.wide-reach {
		font-size: 1.2rem;
	}

	.text-plane p {
		font-size: 0.9rem;
	}
}

@media (max-width: 576px) {
	.uMM5o9Ch6G {
		padding: 1rem;
	}

	.restore-zone {
		padding: 1rem;
	}

	.solid-vow {
		font-size: 1.4rem;
	}

	.estimate-edge {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}
}


/* Основний розділ */
.contact-ultra-new {
	background-color: #f0f2f5;
	font-family: 'Montserrat', sans-serif;
	padding: 80px 0;
}

.contact-title-ultra-new {
	font-size: 3rem;
	color: #2c3e50;
}

.acxXNQpICZ {
	max-width: 600px;
	color: #7f8c8d;
	font-size: 1.1rem;
}

/* Форма */
.contact-form-ultra-new {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.Zw1ET4d4jN-ultra-new {
	padding: 1rem 1.25rem;
	border-radius: 50px;
	border: 1px solid #ced4da;
	background-color: #f7f9fc;
	transition: all 0.3s ease;
}

.Zw1ET4d4jN-ultra-new:focus {
	border-color: #047857;
	box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.1);
	background-color: #fff;
}

.btn-submit-ultra-new {
	background-color: #047857;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-submit-ultra-new:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(52, 152, 219, 0.25);
}

/* Інфо та карта */
.contact-info-map-ultra-new {
	background-color: #2c3e50;
	color: #fff;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.info-item-ultra-new {
	font-size: 1.1rem;
	color: #ecf0f1;
}

.info-item-ultra-new i {
	font-size: 1.2rem;
	color: #047857;
}

.info-link-ultra-new {
	color: #ecf0f1;
	text-decoration: none;
	transition: color 0.3s ease;
}

.info-link-ultra-new:hover {
	color: #fff;
}

/* Карта */
.map-ultra-new {
	height: 400px;
	border: 3px solid #047857;
}


/* Секція appliance-services */
.appliance-services {
	padding: 70px 0;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: #ffffff;
	position: relative;
}

.appliance-services::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
	z-index: 0;
}

.services-title h1 {
	font-weight: 800;
	text-transform: uppercase;
	color: #ffffff;
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}

.services-title h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 3px;
	background: #ff6b6b;
}

.zwonH46X4H {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	z-index: 1;
}

.zwonH46X4H:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.zwonH46X4H h3 {
	color: #1e3c72;
	font-weight: 700;
	margin-bottom: 15px;
}

.zwonH46X4H p {
	color: #2d3436;
	font-size: 0.95rem;
}

/* Секція repair-story */
.repair-story {
	padding: 80px 0;
	background: #f5f6fa;
}

.story-text {
	padding-right: 20px;
}

.story-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #2d3436;
	margin-bottom: 20px;
}

.ins4xd4Yok {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ins4xd4Yok img {
	transition: transform 0.5s ease;
}

.ins4xd4Yok:hover img {
	transform: scale(1.05);
}

.VNbymLCGLS {
	display: inline-block;
	background: #ff6b6b;
	color: #fff;
	padding: 10px 25px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s ease;
}

.VNbymLCGLS:hover {
	background: #e74c3c;
}

/* Секція reasons-to-choose */
.reasons-to-choose {
	padding: 70px 0;
	background: linear-gradient(to right, #dfe6e9 0%, #b2bec3 100%);
}

.reasons-title h1 {
	font-weight: 800;
	color: #2d3436;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.reasons-title h1::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: #ff6b6b;
}

.reason-block {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.reason-block:hover {
	transform: translateY(-5px);
}

.reason-block img {
	height: 180px;
	object-fit: cover;
}

.reason-content {
	padding: 20px;
	text-align: center;
}

.reason-content h2 {
	color: #1e3c72;
	font-weight: 700;
	margin-bottom: 12px;
}

.reason-content p {
	color: #2d3436;
	font-size: 0.95rem;
}

/* Секція expertise-highlight */
.expertise-highlight {
	padding: 80px 0;
	background: #ffffff;
}

.eUhQ8nPxdY {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.eUhQ8nPxdY img {
	transition: transform 0.5s ease;
}

.eUhQ8nPxdY:hover img {
	transform: scale(1.03);
}

.highlight-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #2d3436;
	margin-bottom: 20px;
}

/* Секція contact-callout */
.contact-callout {
	padding: 60px 0;
	background: url('../../img/AzNhIKgUPq.jpg') no-repeat center center/cover;
	color: #ffffff;
	text-align: center;
	position: relative;
}

.contact-callout::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.contact-content {
	position: relative;
	z-index: 1;
}

.contact-content h1 {
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.contact-content p {
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.call-button {
	background: #ff6b6b;
	color: #fff;
	padding: 12px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.call-button:hover {
	background: #e74c3c;
	transform: translateY(-3px);
}

/* Адаптивність */
@media (max-width: 992px) {

	.appliance-services,
	.repair-story,
	.reasons-to-choose,
	.expertise-highlight,
	.contact-callout {
		padding: 50px 0;
	}

	.services-title h1,
	.reasons-title h1,
	.contact-content h1 {
		font-size: 1.8rem;
	}

	.zwonH46X4H,
	.reason-block {
		margin-bottom: 20px;
	}

	.story-text p,
	.highlight-text p {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.story-text {
		padding-right: 0;
	}

	.zwonH46X4H,
	.reason-block {
		padding: 15px;
	}
}

html,
body {
	overflow-x: hidden;
}