/*------- Font Family Starts -------*/

@font-face {
	font-family: "Nunito-Light";
	src: url("../fonts/Nunito-Light.ttf");
}

@font-face {
	font-family: "Nunito-Regular";
	src: url("../fonts/Nunito-Regular.ttf");
}

@font-face {
	font-family: "Nunito-Medium";
	src: url("../fonts/Nunito-Medium.ttf");
}

@font-face {
	font-family: "Nunito-SemiBold";
	src: url("../fonts/Nunito-SemiBold.ttf");
}

@font-face {
	font-family: "Nunito-Bold";
	src: url("../fonts/Nunito-Bold.ttf");
}

@font-face {
	font-family: "NunitoSans-Light";
	src: url("../fonts/NunitoSans-Light.ttf");
}

@font-face {
	font-family: "NunitoSans-Regular";
	src: url("../fonts/NunitoSans-Regular.ttf");
}

@font-face {
	font-family: "NunitoSans-SemiBold";
	src: url("../fonts/NunitoSans-SemiBold.ttf");
}

@font-face {
	font-family: "NunitoSans-Bold";
	src: url("../fonts/NunitoSans-Bold.ttf");
}

@font-face {
	font-family: "NunitoSans-ExtraBold";
	src: url("../fonts/NunitoSans-ExtraBold.ttf");
}

@font-face {
	font-family: "Inconsolata";
	src: url("../fonts/Inconsolata-Regular.ttf");
}

/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap'); */

/*------- Font Family Ends -------*/

/*------- Reset CSS Starts -------*/

html {
	font-size: 10px;
	letter-spacing: 1px;
}

ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a,
a:hover,
a:focus {
	outline: 0;
	text-decoration: none;
	-webkit-transition: 0.5s linear;
	-moz-transition: 0.5s linear;
	-ms-transition: 0.5s linear;
	-o-transition: 0.5s linear;
	transition: 0.5s linear;
}

/*------- Reset CSS Ends -------*/

/*------- Common CSS Starts -------*/
body {
	background-color: #fff;
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

html {
	scroll-behavior: smooth;
}

p {
	font: 1.4rem/1.2 "Work Sans";
	color: #707070;
}

::Placeholder {
	color: #fff;
}


/*------- Common CSS Ends -------*/

/*------- Mobile Header Section Starts -------*/

.bg-header-mobile {
	display: none;
}

/*------- Mobile Header Section Ends -------*/

/*------- Mobile Navbar Menu Section Starts -------*/

.fixed-navbar-menu-mobile {
	display: none;
}

/*------- Mobile Navbar Menu Section Ends -------*/

/*------- Mobile Hamburger Menu Section Starts -------*/

.burger-menu {
	background-color: transparent;
	cursor: pointer;
	height: 50px;
	position: relative;
	width: 50px;
	display: none;
}

.burger-menu span {
	background-color: #d90008;
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 25px;
}

.burger-menu span::before,
.burger-menu span::after {
	content: "";
	background-color: #d90008;
	height: 2px;
	width: 25px;
	position: absolute;
	top: 10px;
	-webkit-transition: 0.5s linear;
	-moz-transition: 0.5s linear;
	-ms-transition: 0.5s linear;
	-o-transition: 0.5s linear;
	transition: 0.5s linear;
}

.burger-menu span::before {
	top: -10px;
}

/*------- Mobile Hamburger Menu Section Ends -------*/

/*------- Home Page Starts -------*/

.bg-header-desktop {
	background-color: rgba(0, 0, 0, 0);
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-header-desktop.active {
	position: sticky;
	position: -webkit-sticky;
	background-color: rgba(0, 0, 0, 0.7);
}

.bg-header-mobile {
	background-color: rgba(0, 0, 0, 1);
	/* border-radius: 15px; */
	margin: 30px auto;
	padding: 10px 20px;
}

.header-logo-desktop {
	padding: 10px 0;
}

.header-logo-desktop img {
	height: 80px;
	object-fit: contain;
}

.menu-listing-desktop {
	display: flex;
	justify-content: flex-end;
}

.menu-listing-desktop a {
	color: #fff;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
}
.menu-listing-desktop li.active a{color: #d90008;}
.menu-listing-desktop a:hover{color: #d90008;}
.menu-listing-desktop li {
    display: inline-block;
    position: relative;
    padding: 0 25px;
    font-weight: 500;
	font-family: "Nunito-Bold";
	text-transform: uppercase;
}
.menu-listing-desktop li:first-of-type {
    padding-left: 15px;
}
.menu-listing-desktop li:last-of-type {
    padding-right: 0;
}

.menu-listing-desktop li.active-class a {
	color: #ff005f;
}


/*------- Banner Section Css Starts -------*/
.banner-wrapper {
	position: relative;
	height: 100vh;
}

.overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, .65);
	z-index: 8;
}

.banner-slider img {
	height: 100vh;
	object-fit: cover;
	width: 100%;
}

.banner-txt {
	z-index: 9;
	position: absolute;
	width: 100%;
	padding: 0 20px;
	/* height: 100vh; */
	color: #fff;
	text-align: center;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -60%);
	font-family: "Nunito-Bold";
	font-weight: 600;
}

.banner-txt h2 {		
	font-size: 36px;
	margin: 20px auto 10px;	
	margin-bottom: 20px;
}

.banner-txt h5 {
	font-size: 24px;
	margin-bottom: 20px;
}

.red-btn {
	margin-top: 40px;
	background-color: #d90008;
	border-radius: 30px 30px 30px 30px;
	padding: 10px 24px 14px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	transition: all .2s ease;
	cursor: pointer;

}

.red-btn:hover {
	transform: scale(1.1);
	color: #ffffff;
}

/*------- Banner Section Css Ends -------*/

/*------- About Section Css Starts -------*/
.about-section .section-heading {
	margin-bottom: 20px;
}

.about-section p {
	margin-bottom: 10px;
	color: #707070;
	font-size: 16px;
	line-height: 1.2;
}

.about-section .red-btn {
	margin-top: 20px;
}

.about-right {
	text-align: right;
}

.about-right img {
	text-align: right;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
	border-radius: 4px;
}
.about-left img{
	text-align: left;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
	border-radius: 4px;
}

/*------- About Section Css Ends -------*/

/*------- Service Steps Section Css Starts -------*/
.ser-steps-section {
	background-color: #d90008;
}

.ser-steps-section .section-heading {
	margin-bottom: -10px;
	color: #fff;
}

.ser-steps-section .sectionHeadingPara {
	color: #fff;
}

.ser-steps-section .sectionHeadingPara:before {
	background: #fff;
}

.serv-steps-box {
	background-color: #fff;
	border-radius: 10px;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
	padding: 30px 20px;
}

.serv-steps-box img {
	height: 48px;
	margin-bottom: 20px;
}

.serv-steps-box h4 {
	font-size: 20px;
	margin-bottom: 10px;
	min-height: 48px;
}

.serv-steps-box p {
	font-size: 17px;
	line-height: 1.5;
	margin-top: 20px;
	min-height: 180px;
}

/*------- Service Steps Section Css Ends -------*/

/*------- Our work Section Css Starts -------*/
.work-section .section-heading {
	margin-bottom: -10px;
}

/* .lightbox {
	text-align: center;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, 150%);
} */

/*------- Our work Section Css Ends -------*/

/*------- Our services Section Css Starts -------*/
.service-section {
	background-color: #f7f7f7;
}

.service-section .section-heading {
	margin-bottom: -10px;
}

.sectionHeadingPara {
	position: relative;
	color: #595959;
	font-size: 18px;
	text-align: center;
	margin: 30px;
}

.sectionHeadingPara:before {
	position: absolute;
	content: '';
	width: 50%;
	height: 1px;
	background-color: #595959;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.service-box {
	background: #fff;
	border-radius: 4px;
	margin: 10px 0;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.service-box img {
	border-radius: 4px 4px 0 0;
}

.service-box p {
	/* background: #fff; */
	text-align: center;
	color: #191919;
	padding: 10px 0;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}

/*------- Our services Section Css Ends -------*/


/*------- Testimonial Section Css Starts -------*/
.section {
	padding-top: 70px;
	padding-bottom: 70px;
}

.section-heading {
	color: #191919;
	text-align: center;
	margin-bottom: 40px;
	font-size: 30px;
	/* line-height: 48px; */
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
}
.testimonial .section-heading {
    margin-bottom: -10px;
}

.test-slider .slick-slide {	margin-right: 20px;}

.testimonial-box {
	padding: 30px;
	background: #fff;
	margin: 10px;
	/* border: solid 1px #ebebeb; */
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonial-box p {
	color: #595959;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 20px;
}

.testimonial-detail {
	display: flex;
	position: relative;
}

.testimonial-detail:after {
	position: absolute;
	bottom: 0;
	right: 0;
	content: '\f10e';
	font-family: 'Font Awesome 5 Free';
	font-weight: bold;
	font-size: 20px;
	color: #d90008;
}

.client-img img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.client-detail {
	margin-left: 20px;
}

.client-name {
	color: #191919;
	font-size: 22px;
	font-weight: 500;
}

.client-job {
	color: #bfbfbf;
	font-size: 14px;
}

/*------- Testimonial Section Css Ends -------*/


/*------- CTA Section Css Starts -------*/
.cta-section {
	background-color: #d90008;
	padding: 70px 0;
}

.cta-section h2 {
	font-size: 42px;
	line-height: 48px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
}

.white-btn {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 13px;
	letter-spacing: 1px;
	color: #d90008;
	background-color: #ffffff;
	border-radius: 30px 30px 30px 30px;
	padding: 15px 33px 15px 33px;
	margin: 30px auto 0;
	transition: all .5s ease;
}

.white-btn:hover {
	color: #d90008;
	transform: scale(1.1);
}

/*------- CTA Section Css Ends -------*/

/*------- Footer Css Starts -------*/
.bg-footer {
	background-color: #fff;
	color: #1a1a1a;
	padding: 30px 15px;
}

.footer-logo img {
	height: 70px;
	object-fit: contain;
}

/*.footer-logo {display: flex; align-items: center; }*/
.logo-txt p {
	margin-top: 20px;
	font-size: 16px;	
}

.logo-txt h4,
.footer-heading {
	font: 1.4rem/20px "Nunito-Bold";
	padding: 30px 0;
	font-size: 20px;
}

.logo-txt h5 {
	font: 1.2rem/20px "Nunito-Medium";
	padding-bottom: 5px;
	color: #929292;
}

.logo-txt h5>span {
	color: #ff005f;
}

/*.footer-listing, .footer-heading{text-align: center;}*/
.footer-listing li {
	padding: 0 0 15px;
}

.footer-listing li>a {
	color: #000;
	font-family: "NunitoSans-Regular";
	font-size: 18px;
}

.footer-listing li>a:hover {
	color: red;
}

.footer-social-listing {
	margin-top: 20px;
}

.footer-social-listing li {
	display: inline-block;
	padding-right: 10px;
}

.footer-social-listing li>a {
	color: #1a1a1a;
	font-size: 18px;
	padding: 10px;
	border: solid 2px #000;
	width: 40px;
	height: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.footer-social-listing li>a:hover {
	background-color: red;
	color: #fff;
}

.contact-widget p {
	display: flex;
	margin-bottom: 20px;
	font-family: "NunitoSans-Regular";
	font-size: 16px;
}

.contact-widget p a {
	color: #707070;
}

.contact-widget p span {
	padding-right: 10px;
	color: rgba(0, 0, 0, 0.8);
	width: 80px;
}

.contact-widget p span a {
	padding-bottom: 10px;
	display: block;
	color: #707070;
}

.btm-footer {
	background-color: #fff;
	color: #1a1a1a;
}

.btm-footer p {
	padding: 20px 0;
	margin-left: -20px;
	text-transform: uppercase;
}
.email-contact span:nth-child(2){
	width: unset;
}

/*------- Footer Css Ends -------*/

/*------- ScrollToTop Css Ends -------*/
.scroll-to-top>a {
	background-color: #ee0d09;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	bottom: 100px;
	height: 54px;
	opacity: 0;
	position: fixed;
	right: 40px;
	width: 54px;
	z-index: 10;
}

.scroll-to-top.active>a {
	bottom: 60px;
	opacity: 1;
}

.scroll-to-top>a:hover {
	background-color: #ee0d09;
}

.scroll-to-top>a>i {
	color: #ffffff;
	display: block;
	font-size: 1.8rem;
	line-height: 54px;
	text-align: center;
}

/*------- ScrollToTop Css Starts -------*/


/*------- About Us Page Css Starts -------*/
.bg-header-desktop.inner-page{
	background-color: #000;
	position: relative;
}
.bg-header-desktop.inner-page.active{
	position: sticky;
}
.grey-bg{background-color: #f7f7f7;}
.section-heading.style-2{text-transform: capitalize;margin-bottom: 20px;}

/*------- About Us Page Css ends -------*/

/*------- Contact Page Css Starts -------*/
.contact-box{text-align: center;}

.contact-box i{
	font-size: 28px;
    color: #d90008;
    width: 60px;
    height: 60px;
    background-color:#ebebeb;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    margin-bottom: 20px;
}
.contact-box a{color: #191919; display: block;}
.cb-heading{
	color: #191919;
	text-align: center;
	margin-bottom: 10px;
	font-size: 24px;	
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: capitalize;
}
.contact-box p{
	font-size: 18px;
	line-height: 1.5;
}
.contact-form .section-heading {
    margin-bottom: -10px;
}
.contact-form p{
text-align: center;
font-size: 18px;
margin-bottom: 40px;
}
.contact-form input{padding: 10px 20px;}
.contact-form input:focus, .contact-form textarea:focus{
	border-color: #d90008;  
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25);
}
/*------- Contact Page Css ends -------*/

/*------- Gallery Page Css Starts -------*/
#gallery{
	padding-bottom: 70px;
	padding-top: 30px;
}
.gallery-section p{font-size: 18px; line-height: 1.5; text-align: center;}
/* Filterable Gallery */
.gallery_tabs {
	background-color: inherit;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	row-gap: 0.8rem;
	padding: 1.2rem;
	border-radius: 50px;
	box-shadow: var(--box-shadow);
  }
  .gallery_tabs li {
	padding: 5px 15px;
	/* border-radius: 50px; */
	font-size:16px;
	font-weight: 500;
	text-transform: capitalize;
	cursor: pointer;
	transition: all 0.3s ease;
	
  }
  .gallery_tabs li.active,
  .gallery_tabs li:hover {	
	color: #fff;
	background-color: #d90008;
    border-radius: 40px;
    padding: 5px 15px;
  }
  .gallery_wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 4rem;
  }
  @media (max-width: 768px) {
	.gallery_wrapper {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}
  }
  .gallery_item {
	border-radius: 10px;
	cursor: pointer;
	overflow: hidden;
  }
  /* when the gallery_item has 'show' class */
  .gallery_item.show {
	animation: fadeIn 0.4s ease-in;
  }
  @keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
  }
  /* when the gallery_item has 'hide' class */
  .gallery_item.hide {
	display: none;
  }
  .gallery_item img {
	transition: transform 0.3s ease;
	width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .gallery_item:hover img {
	transform: scale(1.1);
  }
  /* Lightbox */
  
  .lightbox1{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 995;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	overflow-x: hidden;
	overflow-y: auto;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s ease, opacity 0.3s ease;
  }
  /* when the lightbox is open */
  .lightbox1.open {
	pointer-events: all;
	visibility: visible;
	opacity: 1;
  }
  .lightbox_wrapper {
	display: grid;
	place-items: center;
	min-height: calc(100% - 3rem);
	margin: 1.5rem;
  }
  @media (max-width: 575.98px) {
	.lightbox_wrapper {
		margin: 0.5rem;
		min-height: calc(100% - 1rem);
	}
  }
  .lightbox_content {
	box-shadow: var(--box-shadow);
	max-width: 700px;
	width: 100%;
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
	transform: scale(0);
	transition: transform 0.5s ease;
  }
  /* when Lightbox is open then lightbox-content will... */
  .lightbox1.open .lightbox_content {
	transform: scale(1);
  }
  /* lightbox-close-btn */
  .lightbox_close {
	position: absolute;
	top: 3vh;
	right: 3vw;
	z-index: 999;
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
  }
  .lightbox_close span {
	width: 100%;
	height: 3px;
	margin-top: -1.5px;
	margin-bottom: -1.5px;
	background-color: #ddd;
	opacity: 0.7;
	transition: opacity 0.3s ease;
  }
  .lightbox_close:hover span {
	opacity: 1;
  }
  .lightbox_close span:first-child {
	transform: rotate(45deg);
  }
  .lightbox_close span:last-child {
	transform: rotate(-45deg);
  }

/*------- Gallery Page Css Ends -------*/

/*------- Service Page Css Starts -------*/
.service-heading{text-transform: capitalize;}
.service-section-2 h4{
	font-size: 18px;
	margin-bottom: 10px;
}
.service-section-2 p{
	margin-bottom: 20px;
    color: #707070;
    font-size: 16px;
    line-height: 1.2;
}
.service-section-2 img{
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    border-radius: 4px;
}
.red-btn.gallery-btn{
	margin-top: 10px;
}
/*------- Service Page Css Ends -------*/

