@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
	--primary-color: #F09E3A;
	--secondary-color: #464254;
	--text-color: #464254;
	--dark-color: #000000;
	--background-color: #fff;
	--light-color: #fff;
	--lightgray-color: #c7c6cc;
}

img {
	max-width: 100%;
}

* {
    outline: none;
}

body {
	font-family: "Outfit", sans-serif;
	margin: 0px;
	padding: 0px !important;
	overflow: auto !important;
}

a {
	text-decoration: none;
}

body, p {
	color: var(--text-color);
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--secondary-color);
}

.title-section {
	font-weight: 800;
	font-size: 42px;
	margin-bottom: 20px;
	letter-spacing: 0px;
}

.btn {
	background-color: var(--primary-color);
	color: var(--light-color);
	font-weight: 700;
	padding: 12px 25px;
	border: 1px solid var(--primary-color);
	position: relative;
	border-radius: 5px;
	font-size: 16px;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.btn::before {
    content: "";
    height: 1px;
    width: 0%;
    background: transparent;
    transition: 1s;
    position: absolute;
    top: -5px;
    left: -5px;
    border-left: 1px solid var(--primary-color);
    height: 1px;
    border-top: 1px solid var(--primary-color);
    opacity: 0;
    border-radius: 5px;
}

.btn:hover::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    opacity: 1;
}

.btn::after {
    content: "";
    height: 1px;
    width: 0%;
    background: transparent;
    transition: 1s;
    position: absolute;
    bottom: -5px;
    right: -5px;
    border-right: 1px solid var(--primary-color);
    height: 1px;
    border-bottom: 1px solid var(--primary-color);
    opacity: 0;
    border-radius: 5px;
}

.btn:hover::after {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    opacity: 1;
}

a.btn.outline-white {
    background: transparent;
    border: 1px solid var(--light-color);
}

a.btn.outline-white:hover {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

a.btn.bg-white {
    color: var(--primary-color);
}

a.btn.bg-white:hover {
    background: var(--primary-color) !important;
    color: var(--light-color);
    border-color: var(--primary-color);
}


/* header Css Start Here */

ul.dropdown-menu {
    background: var(--secondary-color);
    border: none;
    padding: 0px;
    margin: 0;
}

ul.dropdown-menu li:last-child a {
    border: none;
}

li.nav-item.dropdown:hover ul.dropdown-menu {
    display: block;
}

ul.dropdown-menu li a {
    color: #fff;
    padding: 8px 15px;
    border-bottom: 1px dashed #6b657e;
    min-width: 200px;
    transition: 1s;
}

ul.dropdown-menu li:hover a {
    background: var(--primary-color);
    color: #fff;
}

.right-form ul li {
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-form ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.right-form ul li img {
    width: 24px;
}

header.main-header {
	border-bottom: 4px solid var(--bs-red);
}

a.cstm-btn-outline {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	display: block;
	text-align: center;
	padding: 4px 20px 6px;
	font-size: 21px;
	font-weight: 900;
	text-decoration: none;
	line-height: 18px;
	transition: 1s;
	background: transparent;
	border-radius: 5px;
}

a.cstm-btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

a.cstm-btn-outline span {
	display: block;
	font-size: 14px;
	font-weight: 400;
}

.cstm-btn {
	display: flex;
	gap: 10px 14px;
	margin-left: 10px;
	align-items: center;
}

.navbar-light .navbar-nav .nav-link {
	color: var(--dark-color);
	padding: 0 20px;
	font-weight: 300;
}


/* Hero Section Css Start here  */

section.hero-section::before {
	background-color: rgba(70 66 84 / 0.8);
	content: "";
	position: absolute;
	left: 50%;
	right: 0;
	width: 200%;
	height: 100%;
	top: 0;
	transform: skewX(-10deg);
	border-left: 10px solid var(--primary-color);
}

.right-form-banner h4 {
	text-align: center;
	color: var(--light-color);
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
}

section.hero-section {
	position: relative;
	overflow-x: hidden;
	box-shadow: inset 1000px 1000px 1000px rgba(0, 0, 0, 0.7);
	background-size: cover !important;
	background-position: top center !important;
}

section.hero-section .container {
	position: relative;
}

section.hero-section h1 {
	color: var(--light-color);
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

section.hero-section p {
	color: var(--light-color);
}

section.hero-section ul.list-unstyled {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 10px;
}

section.hero-section ul.list-unstyled li {
	color: var(--light-color);
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

section.hero-section ul.list-unstyled li img {
	width: 24px;
}

ul.form-section.page-section {
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	max-width: 400px;
	justify-content: space-between;
	gap: 15px 0;
}

ul.form-section.page-section li {
	width: 100%;
}

ul.form-section.page-section li.half {
	width: 49%;
}

ul.form-section.page-section li input,
ul.form-section.page-section li textarea,
ul.form-section.page-section li select {
	width: 100%;
	display: block;
	border: 3px solid var(--lightgray-color);
	padding: 8px 15px;
	background: #FFF;
	border-radius: 5px;
}

li#id_9 {
	display: none;
}

.error-navigation-container {
    display: none;
}

.form-error-message img {
    display: none;
}

span.error-navigation-message {
    color: #f03;
}

button#input_2 {
	width: 100%;
}

.logo-banner ul {
	margin: 50px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 10px 40px;
	align-items: center;
}

/* Hero Section Css end here  */


/* Review Section Css Start here  */

section.review_Section .row {
    gap: 20px 0;
}

.review_box {
	padding: 20px;
	border-radius: 5px;
	background-color: var(--secondary-color);
	height: 100%;
}

.john_heading {
	display: flex;
	justify-content: space-between;
}

.review_contant p {
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--lightgray-color);
}

.john_heading img {
	width: 20px;
}

.review_contant img {
	padding: 10px 0px;
	width: 85px;
}

.john_heading h6 {
	font-weight: 800;
	color: var(--light-color);
	font-size: 21px;
}

/* Review Section Css end here  */


/* Service Section Css Start here  */

.call-right-side {
    text-align: center;
}

.cstm-sidebar {
    position: sticky;
    top: 20px;
}

.cont-box {
	padding: 40px;
	max-width: 640px;
}

.order-1+.right-content .cont-box {
	margin-left: auto;
}

.serv-img img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	object-position: center;
}

.cont-box h3 {
	font-weight: 800;
	font-size: 30px;
	margin-bottom: 15px;
}

section.service-section-form .serv-img img {
    border-radius: 8px;
    display: block;
    margin-bottom: 20px;
    height: 300px;
}

section.service-section-form h3.title-section {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Service Section Css end here  */


/* Process Section CSS Start Here */

.process-section .border {
	border: 10px solid var(--secondary-color) !important;
	margin-top: 50px;
	position: relative;
	transition: 1s;
}

.process-section .border img {
	max-width: 100px;
	margin: -82px 0px 20px;
}

.process-section .border h5 {
	font-size: 24px;
	color: var(--secondary-color);
	line-height: 32px;
	margin: 0;
	min-height: 80px;
}

.process-section .border:hover {
    background: var(--secondary-color);
}

.process-section .border:hover h5 {
    color: #fff;
}

/* Process Section CSS end Here */


/* After Before Slider CSS Start Here */

.img-comp-container {
	position: relative;
	height: 450px;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 10px;
}

.img-comp-img {
	position: absolute;
	width: auto;
	height: auto;
	overflow: hidden;
	border-right: 2px solid #fff;
}

.img-comp-img img {
	display: block;
	vertical-align: middle;
	height: 450px;
	width: 900px;
	max-width: none !important;
}

.img-comp-slider {
	position: absolute;
	z-index: 9;
	cursor: ew-resize;
	width: 40px;
	height: 40px;
	background: url(../images/after-before.svg);
	opacity: 1;
	background-size: contain;
	background-position: center;
	margin-left: -2px;
}

.slider-container {
	position: relative;
	width: 80%;
	max-width: 900px;
	margin: 40px auto 0px;
}

.slider-track {
	display: flex;
	transition: transform 0.4s ease-in-out;
}

.slide {
	min-width: 100%;
	box-sizing: border-box;
}

.nav-button {
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 100%;
}

.after-before {
	overflow-x: hidden;
	margin-bottom: 60px;
	overflow-y: clip;
}

.after-before .slide {
	opacity: 0.2;
	transform: scale(0.9);
}

.after-before .slide.active {
	opacity: 1;
	transform: scale(1.1);
}

button#nextBtn {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    right: -120px;
    outline: none;
}

button#prevBtn {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: -120px;
}

.process-section .row > div:not(:last-child) .border::after {
    background: url(../images/after-before-arrow.svg);
    content: "";
    position: absolute;
    padding: 13px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    right: -35px;
    top: 50%;
}


/* After Before Slider CSS end Here */



/* Faq Section Css Start here  */

section.faq-section {
	background-size: cover !important;
	background-position: center center !important;
}

.accordion-item {
	border-radius: 0px !important;
	border: none !important;
	margin-top: 10px;
}

.accordion-header .accordion-button {
	border-radius: 0px !important;
	background: var(--light-color);
	box-shadow: none !important;
	font-weight: 600;
	padding: 15px;
	font-size: 18px;
	border: 1px solid var(--primary-color);
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.accordion-body {
	background: #fff;
	padding: 15px;
	border-left: 4px solid var(--primary-color);
}

.accordion-button:not(.collapsed)::after {
	filter: invert(1) brightness(100);
}

.accordion-header .accordion-button:not(.collapsed) {
	background: var(--primary-color);
	color: var(--light-color);
}

/* Faq Section Css end here  */



/* Call Action Css Start here  */

.call-action h2.title-section {
    margin-bottom: 10px;
}

.call-action {
    background-color: var(--primary-color);
    padding: 40px 0 !important;
}

.call-action h2, .call-action p {
    color: var(--light-color);
}

.call-action p {
    margin: 0;
}

.call-action::before {
    background-color: var(--secondary-color);
    content: "";
    position: absolute;
    left: 70%;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
    transform: skewX(-30deg);
}

.call-action {
    position: relative;
    overflow-x: hidden;
}

.call-action .container {
    position: relative;
}

/* Call Action Css end here  */



/* Footer Css Start here  */


footer.footer-main {
	background-color: var(--secondary-color);
}

.copyright_content p {
	background: var(--background-color);
	margin: 0;
	padding: 15px 10px;
	text-align: center;
	color: var(--dark-color);
}

footer.footer-main h4 {
	font-weight: bold;
	color: var(--light-color);
	margin-bottom: 15px;
}

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

footer.footer-main ul li a {
	color: var(--lightgray-color);
	display: flex;
	padding-bottom: 8px;
	align-items: baseline;
	gap: 0 10px;
}

ul.menu.vinyl-services {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 20px;
}

ul.social-icon {
    display: flex;
    justify-content: center;
    margin: 20px 0 0 !important;
    padding: 0;
    list-style: none;
    gap: 15px;
}

footer.footer-main ul.social-icon li a {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 20px;
    transition: 1s;
}

footer.footer-main ul.social-icon li a:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary-color);
}

.footer_row {
    gap: 20px 0;
}

.footer_content.footer-img {
    text-align: center;
    max-width: 180px;
    margin: 0 auto;
}

/* Footer Css end here  */


/* Mobile Call Button Css Start Here */

.sticky_button a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 12px 10px;
}

.btn-cstm {
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.sticky_button {
    background-color: var(--secondary-color);
    padding: 0;
    position: fixed;
    bottom: 0;
    display: none;
    justify-content: center;
    width: 100%;
    border-top: 2px solid var(--primary-color);
    left: 0;
    z-index: 9999;
}

/* Mobile Call Button Css end Here */


/* Thankyou Page Css Start Here */

section.thank-section .inner-box {
	max-width: 620px;
	margin: 60px auto;
	text-align: center;
	background: #edf0f4;
	padding: 30px 15px;
	border-bottom: 2px solid var(--primary-color);
	width: 90%;
}

section.thank-section .inner-box p {
	margin: 0;
}

section.thank-section .inner-box h3 {
	font-size: 36px;
	font-weight: 800;
	margin: 0px 0px 10px;
}

section.thank-section .inner-box i {
	font-size: 60px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

/* Thankyou Page Css End Here */


/* Inner Page Banner Css Start Here */

.inner-banner p {
    color: #fff;
}

.inner-banner {
    background-size: cover !important;
    background-position: center center !important;
    padding: 80px 0px;
    box-shadow: inset 1000px 1000px 1000px rgba(0, 0, 0, 0.7);
}

.inner-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

ol.breadcrumb {
    justify-content: center;
}

.breadcrumb li a {
    color: var(--primary-color);
}

.breadcrumb li, .breadcrumb li::before {
    color: var(--light-color) !important;
}

/* Inner Page Banner Css end Here */


/* Contact Page Css Start Here */

.contact-section ul.form-section.page-section {
    max-width: 100%;
}

.contact-card:hover {
    background: var(--primary-color);
}

.contact-card:hover i {
    color: #fff;
}

.contact-card:hover p.small-title::after {
    border-color: #fff;
}

.contact-card {
    border-radius: 10px;
    text-align: center;
    height: 100%;
    background-color: var(--secondary-color);
    transition: 1s;
    margin: 0;
}

.contact-card p.small-title {    
	margin: 0 0 15px;
    color: var(--secondary-color);
}

.contact-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    transition: 1s;
}

.contact-card h5 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.contact-card p {
    margin: 0;
    color: #fff;
}

.contact-card p.small-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
}

.contact-card p.small-title::after {
    content: "";
    display: block;
    width: 100px;
    border: 1px dashed var(--primary-color);
    margin: 10px auto 0;
    transition: 1s;
}

ul.social-icon li a i {
    font-size: 20px !important;
}

.contact-image img {
    border-radius: 15px !important;
    height: 560px;
    object-fit: cover;
    width: 100%;
}

/* Contact Page Css end Here */


/* Gallery Page Css Start Here */

.modal-backdrop {
    display: none !important;
}

.modal.show {
    background: rgba(0, 0, 0, 0.6);
}

.modal-body img {
    height: 300px;
    object-fit: cover;
}

.gallery-page .tab-content img {
    height: 320px;
    object-fit: cover;
    border-radius: 5px;
}

div#nav-tab {
    border: none;
    margin-bottom: 20px;
    justify-content: center;
    gap: 4px;
}

div#nav-tab button.nav-link {
    background: var(--secondary-color);
    border: none;
    border-radius: 3px;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
}

div#nav-tab button.nav-link.active {
    background: var(--primary-color);
}

/* Gallery Page Css End Here */


/* Service Page Css start Here */

.right-form ul li a {
    padding: 0;
    background: transparent !important;
    color: #fff;
    border-bottom: 1px dashed var(--primary-color);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.right-form ul li:last-child a {
    border: none;
    padding: 0 !important;
}

.right-form ul li a:hover {
    color: var(--primary-color);
}

.right-form ul li a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

.right-form {
    box-shadow: 0px 0.3px 1px -6px rgba(0, 0, 0, 0.034), 0px 0.7px 2.4px -6px rgba(0, 0, 0, 0.048), 0px 1.3px 4.5px -6px rgba(0, 0, 0, 0.06), 0px 2.2px 8px -6px rgba(0, 0, 0, 0.072), 0px 4.2px 15px -6px rgba(0, 0, 0, 0.086), 0px 10px 36px -6px rgba(0, 0, 0, 0.12);
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--secondary-color);
    border-bottom: 5px solid var(--primary-color);
    margin-left: 30px;
    margin-bottom: 20px;
}

.right-form ul.form-section.page-section {
    max-width: 100%;
}

.right-form h4 {
    font-size: 30px;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 15px;
    text-align: center;
}

.right-form p {
    /* margin: 10px 0px 20px; */
    color: #fff;
}

/* Service Page Css end Here */


/* Responsive Css Start Here */

@media (max-width: 1399px) {

a.cstm-btn-outline span {
    font-size: 14px;
}

.review_box {
    padding: 15px;
}

body, p {
    font-size: 16px;
    line-height: 26px;
}

}


@media (max-width: 1199px) {

a.cstm-btn-outline span {
    font-size: 10px;
}

a.cstm-btn-outline {
    font-size: 14px;
}

.btn {
    padding: 12px 10px;
    font-size: 13px;
}

.navbar-light .navbar-nav .nav-link {
    padding: 0 15px;
    font-size: 14px;
}

footer.footer-main ul.social-icon li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

.title-section {
    font-size: 32px;
}

footer.footer-main h4 {
    font-size: 20px;
}

.cont-box h3 {
    font-size: 28px;
}

ul.form-section.page-section {
    max-width: 360px;
}

}


@media (max-width: 991px) {

.right-form {
    padding: 20px;
    margin-top: 20px;
    margin-left: 0;
}

.mune_bg ul.navbar-nav {
    background-color: var(--secondary-color);
    padding: 10px 0px;
    border-radius: 5px;
    border-bottom: 4px solid var(--primary-color);
    position: absolute;
    top: 100%;
    z-index: 999;
    right: 15px;
    width: 90%;
    margin: 0 auto;
    max-width: 300px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
}

.mune_bg .cstm-btn {
    display: none;
}

a.navbar-brand {
    margin: 0;
    padding: 0;
    display: block;
}

.header-icon-top {
    width: 100%;
    display: flex;
    justify-content: center;
}

.process-section .border img {
    max-width: 80px;
    margin: -60px 0px 10px;
}

.process-section .border h5 {
    font-size: 16px;
    line-height: 24px;
    min-height: 48px;
}

.process-section .border {
    padding: 10px !important;
}

.cont-box {
    padding: 20px 10px;
}

.hide-md-device {
    display: none;
}

section.hero-section h1 {
    text-align: center;
    font-size: 28px;
}

section.hero-section p {
    text-align: center;
}

.right-form-banner {
    margin-top: 30px;
}

ul.form-section.page-section {
    max-width: 100%;
}

section.hero-section::before {
    opacity: 0;
}

.navbar-light .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 40px;
    outline: none !important;
    box-shadow: none !important;
}

.btn {
    padding: 12px 18px;
    font-size: 14px;
}

ul.menu.vinyl-services {
    grid-template-columns: repeat(1, 1fr);
}

.img-comp-img img {
    height: 380px;
    width: 500px;
}

.img-comp-container {
    height: 380px;
}

.slider-container {
    width: 55%;
}

}

@media (max-width: 767px) {

section.service-section-form h3.title-section {
    font-size: 18px;
    margin-bottom: 10px;
}

section.thank-section .inner-box {
    margin: 30px auto;
    padding: 20px 10px;
}

.inner-banner {
    padding: 45px 0px;
    text-align: center;
}

.inner-banner h1 {
    font-size: 30px;
}

section.thank-section .inner-box h3 {
    font-size: 24px;
}

footer.footer-main {
    padding-bottom: 65px;
}

.sticky_button {
    display: flex;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

button#prevBtn {
    left: -50px;
}

button#nextBtn {
    right: -50px;
}

.img-comp-img img {
    height: 250px;
    width: 300px;
}

.img-comp-container {
    height: 250px;
}

.slider-container {
    width: 70%;
}


.process-section .mt-5 {
    margin-top: 30px !important;
}

.process-section .row .col-6 {
    margin: 0 !important;
}

.process-section .row > div:not(:last-child) .border::after {
    display: none;
}

.main_content {
    text-align: center;
}

.main_content a.btn {
    display: none;
}

.accordion-header .accordion-button {
    font-size: 14px;
    padding: 15px 10px;
}

.copyright_content p {
    font-size: 14px;
    padding: 10px;
}

.footer_row {
    padding: 30px 0 !important;
}

footer.footer-main ul.menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-section .order-1 {
    order: 0 !important;
}

.cont-box {
    padding: 20px 10px 30px;
    text-align: center;
}

.cont-box p {
    text-align: left;
}

.title-section {
    font-size: 24px;
    margin-bottom: 15px;
 }

a.navbar-brand img {
    max-width: 150px;
}

.logo-banner ul {
    margin: 20px 0 0;
    gap: 25px;
}

.right-form-banner {
    margin: 0;
}

.right-form-banner h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cont-box h3 {
    font-size: 20px;
}

.call-action .text-start, .call-action .text-end {
    text-align: center !important;
}

.call-action .text-end {
    margin: 20px 0 0;
}

}