/* General Header */
.site-header {
	background: transparent;
	position: absolute;
	width: 100%;
	z-index: 1000;
}

/* .site-header .dropdown.services___dropdown {
	overflow: hidden;
} */

.services___dropdown .submenu {
	top: 60px;
	left: -20px;
	transition: 0.4s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	max-width: max-content;
	z-index: 1;
	width: 250px;
	border-radius: 10px;
}

.site-header .dropdown.services___dropdown:hover {
	overflow: visible;
	opacity: 1;
}

.site-header .dropdown.services___dropdown:hover .submenu {
	top: 28px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.services___dropdown .submenu .link-here {
	letter-spacing: 1px;
}

.services___dropdown .submenu .link-here:hover {
	color: var(--extra-color-9);
}

.services___dropdown .submenu .link-here.active {
	color: var(--extra-color-9);
	font-weight: 600;
}

/* Nav Links */
.call-btn {
	text-decoration: none;
	background: #ca552b;
	padding: 9px 20px;
	border-radius: 7px;
	color: #f7f5f3;
	font-family: var(--heading-regular);
	display: flex;
	align-items: center;
	gap: 13px;
	font-size: 18px;
}
.call-icon {
	width: 23px;
	object-fit: scale-down;
}
.logo-here {
	width: 160px;
	object-fit: scale-down;
}

/* Base styles for your links */
.nav-link-here,
.mobile-menu a,
footer a {
	position: relative;
	/* needed for ::after positioning */
	color: inherit;
	text-decoration: none;
	font-weight: normal;
	transition: color 0.3s ease;
	/* smooth color change */
	font-family: var(--heading-regular);
	font-size: 17px;
	color: #fff;
	text-transform: uppercase;
}

/* Create the underline effect using ::after */
.nav-link-here::after,
.mobile-menu a::after,
footer a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	/* distance from text */
	width: 0;
	height: 2px;
	/* thickness of the line */
	background-color: #d8683d;
	transition: width 0.3s ease;
	/* animation speed */
}

/* Hover and active state */
.nav-link-here:hover::after,
.nav-link-here.active::after,
.mobile-menu a:hover::after,
.mobile-menu a.active::after,
footer a:hover::after {
	width: 100%;
	/* expand underline fully */
}
.inner____banner .banner____wrap h3 {
	text-transform: uppercase;
}
/* Optional: change color and weight on hover/active */
.nav-link-here:hover,
.nav-link-here.active,
.mobile-menu a:hover,
.mobile-menu a.active,
footer a:hover {
	color: #d8683d;
	font-weight: bold;
}

/* Hamburger */
.menu-btn {
	width: 35px;
	height: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-btn span {
	height: 3px;
	width: 100%;
	background: #fff;
	display: block;
	border-radius: 3px;
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: #111;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
	text-align: center;
}

.mobile-menu li {
	margin: 20px 0;
	opacity: 0;
}

/* for GSAP animation */
.mobile-menu a {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 2px;
	text-decoration: none;
}

/* Cancel Button */
.cancel-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 48px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
}

/* Footer General */
.footer {
	/* background-color: #111; */
	color: #fff;
	font-family: Arial, sans-serif;
}

.contact-form {
	border-radius: 8px;
}

.footer-logo {
	width: 150px;
}

.footer-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #ccc;
}

.footer-title {
	color: #d8683d;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-size: 16px;
}

.footer-list li,
.footer-contact li {
	margin-bottom: 10px;
	font-size: 14px;
	color: #ccc;
	font-family: var(--heading-regular);
	display: flex;
	align-items: center;
}

.footer-contact li i {
	color: #d8683d;
}

.footer-newsletter input.form-control {
	padding: 12px 20px;
	border-radius: 14px;
	border: none;
	color: var(--body-color);
}

.footer-newsletter input.form-control::placeholder {
	font-family: var(--heading-medium);
	color: #fff;
}

.footer-newsletter .btn-orange {
	background-color: #ca552b;
	border: none;
	color: #fff;
	padding: 10px 20px;
	border-radius: 14px;
}

.footer-newsletter .btn-orange:hover {
	background-color: #b8562f;
}

.footer-bottom {
	font-size: 12px;
	color: #666;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
	.footer-newsletter {
		flex-direction: column !important;
	}

	.footer-newsletter input,
	.footer-newsletter .btn-orange {
		width: 100%;
		margin-bottom: 10px;
	}
}

/* Header Css End */
/* Footer General */
.custom-footer {
	background-color: #111;
	color: #fff;
	padding: 60px 20px 20px;
	font-family: Arial, sans-serif;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-col {
	flex: 1 1 200px;
	min-width: 200px;
}

.footer-col h4 {
	color: #d8683d;
	font-size: 16px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
	font-size: 14px;
}

.footer-col ul.contact-info li i {
	margin-right: 8px;
	color: #d8683d;
}

/* Logo Column */
.footer-logo {
	width: 230px;
	object-fit: scale-down;
}

.logo-col p {
	font-size: 13px;
	line-height: 1.6;
	color: #ccc;
}

/* Newsletter */
.newsletter form {
	display: flex;
	gap: 5px;
}

.newsletter input[type="email"] {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 4px;
	outline: none;
}

.newsletter button {
	padding: 10px 20px;
	border: none;
	background-color: #d8683d;
	color: #fff;
	border-radius: 4px;
	cursor: pointer;
}

.newsletter button:hover {
	background-color: #b8562f;
}

/* Footer Bottom */
.footer-bottom {
	text-align: center;
	margin-top: 40px;
	font-size: 12px;
	color: #666;
	border-top: 1px solid #222;
	padding-top: 15px;
}

/* Responsive */
@media (max-width: 991px) {
	.footer-container {
		flex-direction: column;
		gap: 30px;
	}

	.newsletter form {
		flex-direction: column;
	}

	.newsletter input[type="email"] {
		width: 100%;
	}

	.newsletter button {
		width: 100%;
	}
}

/* Banner Css Start ---------------> */
.hero-banner {
	position: relative;
	padding: 120px 0;
	color: #fff;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/banner-bg.png") center/cover no-repeat;
	z-index: -2;
}

.hero-bg::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	top: 0;
	left: 0;
}

.small-text-wrapper {
	color: #c9bba6;
	font-family: var(--heading-regular);
	font-size: 26px;
}

.hero-title {
	font-size: 50px;
	line-height: 1.1;
	font-family: var(--heading-bold);
}

/* .hero-title span {
	background: linear-gradient(90deg, #a64430, #c06a59);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
} */

.hero-desc {
	max-width: 480px;
	opacity: 0.9;
	color: #e0dad1;
}

.hero-features {
	display: flex;
	align-items: center;
}

.btn-main {
	color: #fff;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.btn-main:hover i {
	color: #ca552b !important;
}

.btn.btn-light {
	background: #fff;
	color: #ca552b;
}

.c-icon {
	width: 20px;
	height: 20px;
	object-fit: scale-down;
}

.hero-features span {
	margin-right: 20px;
	font-size: 15px;
	display: flex;
	gap: 11px;
	font-family: var(--text-regular);
	color: #fff;
}

.bg-shadow {
	position: absolute;
	bottom: 20px;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 15px;
	top: -18px;
}

.hero-img-card {
	position: relative;
}

img.img-fluid.imag-shadow {
	position: relative;
	z-index: 11;
}

.hero-img-card img {
	border-radius: 20px;
}

/* Scroll Down */

.scrolldown-wrapper {
	left: 50%;
	position: absolute;
	text-align: center;
	bottom: 0;
	transform: translate(-50%, 60%);
}

.scrolldown {
	border: 2px solid #736c65;
	border-radius: 30px;
	height: 46px;
	margin: 0 auto 8px;
	text-align: center;
	width: 30px;
	cursor: pointer;
}

.scrolldown-p1,
.scrolldown-p2 {
	animation-duration: 1.5s;
	animation-name: scrolldown;
	animation-iteration-count: infinite;
	fill: #ffffff;
}

.scrolldown-p2 {
	animation-delay: 0.75s;
}

@keyframes scrolldown {
	0% {
		opacity: 0;
		transform: translate(0, -8px);
	}

	50% {
		opacity: 1;
		transform: translate(0, 0);
	}

	100% {
		opacity: 0;
		transform: translate(0, 8px);
	}
}

/* Banner Css End ---------------> */

.timeline-line-hover {
	position: absolute;
	top: 45px;
	left: 0;
	height: 2px;
	background: #ca552b;
	z-index: 1;
}

.process-section {
	padding: 100px 0;
	color: #fff;
}

.subtitle {
	color: #ca552b;
	letter-spacing: 4px;
	font-size: 14px;
	margin-bottom: 10px;
}

.title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 80px;
}

.process-row {
	position: relative;
}

/* timeline line */

.process-row::before {
	content: "";
	position: absolute;
	top: 45px;
	left: 120px;
	width: 80%;
	height: 1px;
	background: #2c3442;
	z-index: 1;
}

/* step item */

.process-item {
	text-align: center;
	position: relative;

	z-index: 2;
}

/* circle icon */

.circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 2px solid #ca552b;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	background: #282c33;
	transition: 0.4s;
	margin-bottom: 20px;
}

.process-item:hover .circle img,
.process-item.active .circle img {
	filter: brightness(0) invert(1);
}

.circle img {
	width: 35px;
}

/* active step */

.process-item.active .circle {
	background: #ca552b;

	border: none;

	box-shadow: 0 0 25px rgba(202, 85, 43, 0.8);
}

/* text */

.process-item h5 {
	font-weight: 700;
	margin-top: 10px;
}

.process-item p {
	color: #c9bba6;
	font-size: 14px;
	max-width: 260px;
	margin: auto;
	opacity: 0.7;
}

/* hover */

.process-item:hover .circle {
	background: #ca552b;

	border: none;

	box-shadow: 0 0 20px rgba(202, 85, 43, 0.8);
}

.process-item:hover p,
.process-item:hover h5 {
	color: #fff;
}

/* built-section Css  */
.built-section {
	background-image: url(../img/built-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.outline____text {
	color: var(--secondary-color);
	-webkit-text-stroke-width: 0.4px;
	-webkit-text-stroke-color: #fff;
	text-transform: uppercase;
}

.strenght-section {
	background-image: url(../img/strenght-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* built-section Css  */

/* scope-section Css  */
.scope___wrapper {
	background: #edebe8;
	border: 1px solid #d7d1cc;
	padding: 30px;
	border-radius: 15px;
	height: 100%;
}

.scope___wrapper:hover {
	background: var(--secondary-color) !important;
}

.scope___wrapper:hover .scope___hover {
	color: var(--extra-color-12);
}

.scope___wrapper:hover .scope-icon img.img-fluid {
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(6783%)
		hue-rotate(32deg) brightness(115%) contrast(101%);
}

.trusted-section .scope___wrapper {
	background: #282c33;
}

/* scope-section Css  */

/* trusted-section Css  */
.trusted-section {
	position: relative;
	overflow: hidden;
}

.trusted-bg {
	position: absolute;
	top: -20%;
	left: 0;
	width: 100%;
	height: 140%;
	background-image: url(../img/trusted-bg.png);
	background-size: cover;
	background-position: center;
	z-index: -1;
}

/* trusted-section Css  */

/* designed-section Css  */
.designed-section {
	background-image: url(../img/designed-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* designed-section Css  */

/* plan-section Css  */
.plan____main {
	background: #edebe8;
	border: 1px solid #d7d1cc;
	padding: 40px;
	border-radius: 15px;
}

/* plan-section Css  */

/* longevity-section Css  */
.longevity___icon {
	background: #282c33;
	max-width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #a6443040;
	margin: auto;
}

/* longevity-section Css  */

/* material-section Css  */
span.line-wra {
	position: relative;
	top: -1px;
	left: 8px;
}

.material-section {
	position: relative;
	overflow: hidden;
}

.material-bg {
	position: absolute;
	top: -20%;
	left: 0;
	width: 100%;
	height: 140%;
	background-image: url(../img/material-bg.png);
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.material___wrapper {
	background: #282c33;
	border: 1px solid #c9bba612;
	border-radius: 15px;
	padding: 25px;
	height: 100%;
}

.material___wrapper:hover {
	box-shadow: 0 0 17.71px rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	border-color: var(--secondary-color);
}

/* material-section Css  */

/* inner-banner Css  */
.inner____banner .banner____wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	height: fit-content;
	width: 100%;
	margin: auto;
}

.check___span {
	flex: 0 0 4%;
}

.plan-section .check___span {
	flex: 0 0 10%;
}

.longevity-title span {
	background: linear-gradient(
		90deg,
		rgba(42, 123, 155, 1) 0%,
		rgba(166, 68, 48, 1) 0%,
		rgba(192, 106, 89, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

/* Container Flex */
.contact-section .container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: flex-start;
}

/* Left Text */
.contact-text {
	flex: 1 1 45%;
	font-family: "Poppins", sans-serif;
}

.contact-text h2 {
	font-size: 28px;
	margin-bottom: 12px;
}

.contact-text p {
	font-size: 16px;
	color: #555;
}

/* Right Form Card */
.estimate-form {
	flex: 1 1 45%;
	background-color: #f9f6f2;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-family: "Poppins", sans-serif;
}

.estimate-card {
	background: #edebe8;
	border-radius: 12px;
	box-shadow: 0 25px 40px -15px rgba(60, 40, 30, 0.3);
	max-width: 100%;
	width: 100%;
	padding: 2.2rem 2rem;
	border: 2px solid #d7d1cc;
}

/* === STEP INDICATOR (exactly your markup) === */
.step-indicator {
	display: flex;
	gap: 12px;
	margin-bottom: 2.2rem;
}

.step {
	flex: 1;
	height: 8px;
	background-color: #e0d6cf;
	transition:
		background-color 0.25s,
		box-shadow 0.2s;
}

/* active class — exactly what you asked */
.step.active {
	background: var(--secondary-color);
	box-shadow: 0 0 0 2px rgba(216, 140, 111, 0.3);
}

/* form steps */
.form-step {
	display: none;
}

.form-step.active {
	display: block;
	animation: fade 0.3s;
}

.quality___wrapper {
	background: #282c33;
	padding: 30px;
	border-radius: 15px;
	border: 1px solid #c9bba60f;
}

@keyframes fade {
	from {
		opacity: 0.3;
	}

	to {
		opacity: 1;
	}
}

.form-title {
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 1px;
	color: #1a1d23;
	text-transform: uppercase;
	margin-bottom: 1.8rem;
	font-family: var(--heading-bold);
}

/* project options */
.project-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 2rem;
}

.project-options > *:last-child {
	grid-column: span 2;
}

.project-options button {
	padding: 14px 8px;
	background: white;
	border: 1px solid #dbd0c8;
	border-radius: 4px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #352c26;
	cursor: pointer;
	transition: all 0.15s;
	font-family: var(--heading-medium);
	text-align: start;
	color: #5c6370;
	letter-spacing: 2px;
}

.project-options input,
select {
	grid-column: span 1;
	padding: 14px 8px;
	border: 1px solid #dbd0c8;
	border-radius: 4px;
	font-size: 0.95rem;
	background: #fefcfb;
	font-family: var(--heading-medium);
	text-align: start;
	color: #5c6370;
	letter-spacing: 2px;
}

.project-options input::placeholder {
	font-family: var(--heading-medium);
	color: #5c6370;
}

.project-options button.active {
	background: var(--secondary-color);
	border-color: #b85f44;
	color: white;
	font-weight: 600;
	box-shadow: 0 6px 12px -8px #aa624b;
	letter-spacing: 2px;
}

.project-options input:focus {
	outline: none;
	border-color: #d88c6f;
}

/* inputs */
.form-step input:not(.project-options input),
.form-step textarea {
	width: 100%;
	padding: 16px 20px;
	margin-bottom: 18px;
	border-radius: 7px;
	border: 1px solid #dbd0c8;
	background: #fefcfb;
	font-size: 1rem;
	color: #5c6370;
	font-family: var(--heading-medium);
}

.form-step textarea {
	border-radius: 28px;
	resize: none;
	border-radius: 7px;
	color: #5c6370;
	font-family: var(--heading-medium);
}

.form-step input:focus,
.form-step textarea:focus {
	outline: none;
	border-color: #d88c6f;
	box-shadow: 0 0 0 4px rgba(216, 140, 111, 0.15);
}

/* navigation */
.form-nav {
	display: flex;
	gap: 16px;
	margin-top: 28px;
}

.next-btn,
.prev-btn,
.submit-btn {
	padding: 16px 20px;
	flex: 1;
	border: none;
	border-radius: 6px;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	background: var(--secondary-color);
	color: white;
	cursor: pointer;
	transition: background 0.2s;
	font-family: var(--heading-medium);
	text-transform: uppercase;
}

.prev-btn {
	background: #b2a49b;
}

.prev-btn:hover {
	background: #9f8f84;
}

.next-btn:hover,
.submit-btn:hover {
	background: #c0705c;
}

/* simple responsive */
@media (max-width: 500px) {
	.project-options {
		grid-template-columns: 1fr;
	}

	.project-options input {
		grid-column: 1;
	}
}

.testimonial-slider {
	margin-top: 20px;
}

.swiper-button-next,
.swiper-button-prev {
	color: #ff6a2a;
}

.swiper-slide {
	padding-right: 20px;
}

.swiper-slide.swiper-slide-active .testimonial-item {
	border-left: 2px solid #ff6a2a;
	padding-left: 15px;
}

.testimonial-item {
	border-left: 2px solid #fff;
	padding-left: 15px;
	border-radius: 0px;
}

/* Slider height important */
.testimonial-vertical {
	height: 250px;
	overflow: hidden;
	margin-top: 20px;
}

/* Each slide spacing */
.testimonial-vertical .swiper-slide {
	display: flex;
	align-items: center;
	border-radius: 0px;
}

/* Testimonial style */

.testimonial-item p {
	font-size: 14px;
	color: #ccc;
	margin: 10px 0;
	font-family: var(--text-italic);
}

.testimonial-item h6 {
	font-size: 12px;
	color: #aaa;
}

.stars {
	color: #ff6a2a;
	font-size: 14px;
}

/* Smooth fade feel */
.swiper-slide {
	opacity: 0.4;
	transition: 0.3s;
}

.swiper-slide-active {
	opacity: 1;
}

section.testimonial-section {
	background: #1a1d23;
}

/* Slide styles */
.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	overflow: hidden;
	/* ensures image fits inside rounded corners */
}

/* Slide images */
.swiper-slide img {
	width: 510px;
	height: 500px;
	object-fit: fill;
	display: block;
	transition: transform 0.5s ease;
	border-radius: 18px;
}

.services___image figure::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(26, 29, 35, 0.6);
	border-radius: 15px;
	z-index: 1;
}

.services___image figure {
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-radius: 15px;
}

.services___image figure img.img-fluid {
	height: 477px;
	width: 100%;
	border-radius: 15px;
	object-fit: cover;
}

.services____content {
	z-index: 9;
}

/* service-detail Page Css  */
.service___detail___image figure img.img-fluid {
	height: 530px;
	object-fit: cover;
}
/* service-detail Page Css  */

/* blog detail page Css  */
.blog____detail___image img.img-fluid {
	height: 500px;
	object-fit: cover;
	border-radius: 15px;
}
/* blog detail page Css  */

/* Laptop Responsive  */
@media (max-width: 1400px) {
	.nav-link-here1 {
		font-size: 16px !important;
	}
	.call-btn {
		padding: 9px 16px;
		font-size: 16px;
	}
	.logo-here {
		width: 130px;
	}
	.nav-link-here,
	.mobile-menu a,
	footer a {
		font-size: 16px;
	}
	.check___span {
		flex: 0 0 7%;
	}
	.hero-title {
		font-size: 40px !important;
	}
}

@media (max-width: 1200px) {
	.nav-link-here1 {
		font-size: 14px !important;
	}
	.call-btn {
		padding: 9px 15px;
		font-size: 14px;
	}
	.logo-here {
		width: 110px;
	}
	.nav-link-here,
	.mobile-menu a,
	footer a {
		font-size: 14px;
	}
	.plan____main {
		padding: 30px;
	}
	.project-options button {
		font-size: 0.73rem;
		letter-spacing: 1px;
	}
	.project-options input,
	select {
		font-size: 0.73rem;
		letter-spacing: 1px;
	}
	.title {
		font-size: 40px;
	}
}
/* Laptop Responsive  */

/* Mobile Responsive  */

@media (max-width: 576px) {
	.hero-title {
		font-size: 30px !important;
	}
	.hero-features {
		flex-direction: column;
		align-items: start;
		row-gap: 10px;
	}
	.services___wrapper {
		margin-bottom: 20px;
	}
	.services___image figure img.img-fluid {
		height: 400px;
	}
	.process-row::before {
		content: unset;
	}
	.process-item {
		margin-bottom: 20px;
	}
	.project-options {
		display: block;
	}
	.project-options button {
		width: 100%;
		margin-bottom: 10px;
	}
	.project-options input,
	select {
		width: 100%;
	}
	.title {
		font-size: 30px;
	}
}
/* Mobile Responsive  */
