@charset "utf-8";

body {
	padding: 0;
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	color: #221f1f;
	font-weight: 400;
	line-height: normal;
	overflow-x: hidden;
}

a {
	color: #221f1f;
	text-decoration: none;
}

a:hover {
	color: #00adef;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.padding-t-0 {
	padding-top: 0 !important;
}

.padding-b-0 {
	padding-bottom: 0 !important;
}

#wrap {
	float: left;
	width: 100%;
	overflow: hidden;
}

:root {
	--container-width: 1250px;
	--container-padding: calc((100vw - var(--container-width)) / 2);
}

.container {
	max-width: 1250px;
	padding: 0;
}

#header {
	position: sticky;
	float: left;
	width: 100%;
	padding: 15px 0px;
	background-color: #ffffff;
	top: 0;
	z-index: 2;
	transition: all .3s ease-in-out;
}

.logo {
	float: left;
	width: 258px;
	transition: all .3s ease-in-out;
}

.logo img {
	width: 100%;
	height: auto;
}

.mainMenu {
	float: right;
	align-items: center;
	width: 55%;
	padding: 10px 0px 0px 0px;
	flex-direction: row;
	align-content: center;
}

.mainMenu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mainMenu li {
	display: inline-block;
	width: auto;
	padding: 0px 0px 0px 0px;
	margin: 0 40px 0 0;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
}

.mainMenu li:last-child {
	margin-right: 0px;
}

.mainMenu ul li a {
	position: relative;
	display: inline-block;
	color: #000000;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.mainMenu ul li a:before {
	position: absolute;
	display: inline-block;
	content: "";
	width: 0;
	height: 1px;
	background: #00adef;
	top: calc(100% + 3px);
	transition: .5s cubic-bezier(.4, .6, .6, 1);
}

.mainMenu ul li a:hover {
	color: #00adef;
	text-decoration: none;
}

.mainMenu ul li a:hover:before {
	width: 100%;
	transition: .4s cubic-bezier(.2, .6, .4, 1);
}

.mainMenu li.estimateBtn {
	display: inline-block;
}

.mainMenu li.estimateBtn a {
	display: inline-block;
	padding: 10px 15px;
	background-color: #009fe3;
	border-radius: 8px;
	font-size: 20px;
	color: #ffffff;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.mainMenu li.estimateBtn a:hover {
	background-color: #000000;
	color: #ffffff !important;

}

.mainMenu li.estimateBtn a:before {
	display: none;
}



/*-------------- Sticky Header Start --------------*/
#header.sticky {

	box-shadow: 0px 3px 7px rgb(0 0 0 / 4%);
}

#header.sticky .logo {
	width: 258px;
}

#header.sticky #mainMenu {
	padding: 10px 0px 0px 0px;
}

/*-------------- Sticky Header End --------------*/


/* MENU HAMBURGESA */

#header .hamburger {
	float: right;
	width: auto;
	top: 25px;
	right: 0;
	z-index: 200;
	float: right;
	width: auto;
}

#header .hamburger:before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	border: 1px solid #221f1f;
	border-radius: 100%;
	position: absolute;
	top: 10px;
	right: 10px;
	transition: all .3s ease-in-out;
}

#header .hamburger:hover:before {
	-webkit-animation: heartbeat 1.4s linear infinite;
	-o-animation: heartbeat 1.4s linear infinite;
	-moz-animation: heartbeat 1.4s linear infinite;
	-ms-animation: heartbeat 1.4s linear infinite;
	animation: heartbeat 1.4s linear infinite;
}

#header .hamburger #nav-btn,
#header .hamburger #nav-btn+label {
	position: absolute;
	top: 25px;
	right: 20px;
	width: 30px;
	height: 20px;
	margin: 0;
	padding: 0;
	z-index: 2;
	cursor: pointer;
	display: flex;
	align-items: center;
}

#header .hamburger #nav-btn {
	position: absolute;
	opacity: 0;
	z-index: 3;
}

#header .hamburger #nav-btn+label span {
	display: block;
	width: 30px;
	height: 2px;
	background-color: #221f1f;
	position: relative;
	cursor: pointer;
	z-index: 2;
	transition: all .3s ease-in-out;
}

#header .hamburger #nav-btn+label span::before,
#header .hamburger #nav-btn+label span::after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background-color: #0c2340;
	position: absolute;
	left: 0;
	transition: all .3s ease-in-out;
}

#header .hamburger #nav-btn+label span::before {
	top: -7px;
}

#header .hamburger #nav-btn+label span::after {
	bottom: -7px;
}

#header .hamburger #nav-btn:checked+label span {
	width: 30px;
	height: 1px;
	margin-left: 7px;
	background-color: #ffffff;
	transform: rotate(135deg);
	top: 0;
}

#header .hamburger #nav-btn:checked {
	top: 15px;
}

#header .hamburger #nav-btn:checked+label span::before,
#header .hamburger #nav-btn:checked+label span::after {
	width: 26px;
	height: 1px;
	max-width: 100%;
	background-color: #ffffff;
	top: 0px;
	left: 0px;
	transform: rotate(90deg);
}

#header .hamburger #nav-btn:checked+label span::after {
	opacity: 0;
}

#header .hamburger #nav-btn:checked~nav {
	pointer-events: auto;
	visibility: visible;
}

#header .hamburger #nav-btn:checked~nav>div {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.75s;
	transition-duration: 0.75s;
}

#header .hamburger #nav-btn:checked~nav>div>div {
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0.4s;
	transition: opacity 0.4s ease 0.4s;
}

#header .hamburger nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline: 1px solid transparent;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

#header .hamburger nav>div {
	width: 240vw;
	height: 240vw;
	color: #FEFEFE;
	background: #221f1f;
	border-radius: 50%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-box-flex: 0;
	flex: none;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

#header .hamburger nav>div>div {
	position: relative;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	-webkit-box-flex: 0;
	flex: none;
	display: -webkit-box;
	display: flex;
	flex-direction: column;
}

#header .hamburger nav>div>div .mobileMenu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	padding: 30px;
}

#header .hamburger nav>div>div .mobileMenu ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

#header .hamburger nav>div>div .mobileMenu ul li {
	display: inline-block;
	width: 100%;
	padding: 0px 0px 20px 0px;
	font-size: 20px;
	color: #ffffff;
	font-weight: 400;
	line-height: normal;
	text-align: center;
}

#header .hamburger nav>div>div .mobileMenu ul li:last-child {
	padding-bottom: 0px;
}

#header .hamburger nav>div>div .mobileMenu ul li a {
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

#header .hamburger nav>div>div .mobileMenu ul li a:hover {
	color: #00adef;
	text-decoration: none;
}

#header .hamburger nav .nav-img-box {
	width: 62vw;
	height: 82vh;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-3deg);
	overflow: hidden;
}


/*---------------- Home Banner CSS Start Here ---------------*/

#bannerSection {
	position: relative;
	float: left;
	width: 100%;
	padding-bottom: 100px;
}

#bannerSection .bannerLeft {
	float: left;
	width: 50%;
	margin-top: 10%;
}

#bannerSection .bannerLeft .title {
	float: left;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 70px;
    color: #221f1f;
    font-weight: 700;
    line-height: 80px;
}

#bannerSection .bannerLeft .title2 {
	float: left;
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 45px;
    color: #221f1f;
    font-weight: 700;
    line-height: 60px;
}

#bannerSection .bannerLeft .title2 span {
	color: #00adef;
}

/*------------------ Type JS -------------------*/
.typed-cursor {
	opacity: 1;
	font-weight: 100;
	-webkit-animation: blink 0.7s infinite;
	-moz-animation: blink 0.7s infinite;
	-ms-animation: blink 0.7s infinite;
	-o-animation: blink 0.7s infinite;
	animation: blink 0.7s infinite;
	color: #393939;
}

@-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-ms-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


#bannerSection .bannerLeft p {
	margin: 0 0 20px 0;
	font-size: 18px;
	color: #221f1f;
	font-weight: 400;
	line-height: 28px;
}

#bannerSection .bannerLeft .workBtn {
	display: inline-block;
	padding: 12px 33px;
	background-color: #ffffff;
	border: 1px solid #00adef;
	border-radius: 8px;
	font-size: 18px;
	color: #00adef;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0px 10px 0px 0px rgba(0, 173, 239, 1);
	-webkit-box-shadow: 0px 10px 0px 0px rgba(0, 173, 239, 1);
	-moz-box-shadow: 0px 10px 0px 0px rgba(0, 173, 239, 1);
	transition: all .3s ease-in-out;

}

#bannerSection .bannerLeft .workBtn i {
	font-family: "Material Design Icons";
	font-size: 18px;
	color: #00adef;
	line-height: 28px;

}

#bannerSection .bannerLeft .workBtn:hover {
	background-color: #00adef;
	border: 1px solid #00adef;
	color: #ffffff;

}

#bannerSection .bannerLeft .workBtn:hover i {
	color: #ffffff;
}

#bannerSection .bannerRight {
	position: relative;
	float: left;
	width: 50%;
	margin-top: 70px;
	border-radius: 15px;
	overflow: hidden;
	background: transparent;
}

#bannerSection .bannerRight img {
	width: 100%;
	height: auto;
}

#bannerSection .bannerRight .bgBoxLeft {
	width: calc(100% - 400px);
	background-color: transparent;
	position: absolute;
	top: 0;
	right: calc(0px - var(--container-padding));
	bottom: 0;
	left: 50px;
	z-index: -1;
}

/*---------------- Home Banner CSS End ---------------*/

/* image animation  */

[data-aos=image-container] {
	position: relative;
	background-color: rgb(223 186 111 / 50%);
	-webkit-transition: -webkit-clip-path 0s cubic-bezier(.71, .07, .17, .91);
	transition: -webkit-clip-path 0s cubic-bezier(.71, .07, .17, .91);
	transition: clip-path 0s cubic-bezier(.71, .07, .17, .91);
	transition: clip-path 0s cubic-bezier(.71, .07, .17, .91), -webkit-clip-path 0s cubic-bezier(.71, .07, .17, .91);
	-webkit-transition-duration: 1.1s !important;
	transition-duration: 1.1s !important;
}

[data-aos=image-container] img {
	-webkit-transition: -webkit-clip-path .03s cubic-bezier(.71, .07, .17, .91);
	transition: -webkit-clip-path .03s cubic-bezier(.71, .07, .17, .91);
	transition: clip-path .03s cubic-bezier(.71, .07, .17, .91);
	transition: clip-path .03s cubic-bezier(.71, .07, .17, .91), -webkit-clip-path .03s cubic-bezier(.71, .07, .17, .91);
	-webkit-transition-duration: inherit;
	transition-duration: inherit;
}

[data-aos=image-container],
[data-aos=image-container] img {
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
}

[data-aos=image-container].aos-animate,
[data-aos=image-container].aos-animate img {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.mask {
	overflow: hidden;
}

.mask [data-aos][data-aos=mask] {
	-webkit-transform-origin: 0% 100%;
	-ms-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
	transform: rotateZ(90deg);
	transition-duration: 1.2s;
}

.mask [data-aos][data-aos=mask].aos-animate {
	transform: rotateZ(0deg);
}

#middle {
	float: left;
	width: 100%;
}

#aboutSec {
	position: relative;
	min-height: 527px;
	margin-bottom: 205px;
	padding-top: 60px;
	padding-bottom: 60px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}

#aboutSec h2 {
	margin: 0px 0px 30px 0px;
	font-size: 60px;
	color: #ffffff;
	line-height: 70px;
	font-weight: 400;
	text-align: center;

}

#aboutSec p {
	margin: 0px 0px 20px 0px;
	font-size: 18px;
	color: #ffffff;
	line-height: 28px;
	font-weight: 400;

}

#aboutSec .moreBtn {
	display: inline-block;
	padding: 12px 33px;
	background-color: #00adef;
	border-radius: 8px;
	font-size: 18px;
	color: #ffffff;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease-in-out;

}

#aboutSec .moreBtn i {
	font-family: "Material Design Icons";
	font-size: 18px;
	color: #ffffff;
	line-height: 28px;
	transition: all .3s ease-in-out;

}

#aboutSec .moreBtn:hover {
	background-color: #ffffff;
	color: #00adef;

}

#aboutSec .moreBtn:hover i {
	color: #00adef;
}

#aboutSec .aboutImage {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: -205px;
	background: transparent;
}

#aboutSec .aboutImage img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

#aboutSec::before {
	position: absolute;
	content: '';
	left: 60px;
	bottom: -199px;
	width: 144px;
	height: 276px;
	background-image: url(../images/t-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;

}

#aboutSec::after {
	position: absolute;
	content: '';
	right: 420px;
	bottom: -130px;
	width: 212px;
	height: 107px;
	background-image: url(../images/dots-image.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;

}

#serviceSec {
	padding-top: 80px;
	padding-bottom: 50px;
}

#serviceSec .content {
	float: left;
	width: 100%;
	padding-top: 30px;
}

#serviceSec .content h4 {
	margin: 0px 0px 10px 0px;
	font-size: 22px;
	color: #009fe3;
	font-weight: 400;
	line-height: 32px;
	text-transform: uppercase;
}

#serviceSec .content h2 {
	margin: 0px 0px 0px 0px;
	font-size: 60px;
	color: #221f1f;
	line-height: 70px;
	font-weight: 400;
}

#serviceSec .content p {
	margin: 50px 0px 20px 0px;
	font-size: 18px;
	color: #221f1f;
	line-height: 28px;
	font-weight: 400;

}

#serviceSec .content .servicesClm {
	float: left;
	width: 100%;
	margin-bottom: 30px;
	padding: 45px 35px;
	background-color: #fafafd;
	border: 1px solid #fafafd;
	border-radius: 10px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

#serviceSec .content .servicesClm:hover {
	border: 1px solid #00adef;

}

#serviceSec .content .servicesClm .icon {
	float: left;
	width: 100%;
	margin-bottom: 30px;

}

#serviceSec .content .servicesClm .title {
	float: left;
	width: 100%;
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e7e5e4;
	font-size: 24px;
	color: #221f1f;
	line-height: 34px;
	font-weight: 700;
}

#serviceSec .content .servicesClm p {
	margin: 50px 0px 20px 0px;
	font-size: 18px;
	color: #221f1f;
	line-height: 28px;
	font-weight: 400;

}

#serviceSec .content .servicesClm .moreLink {
	display: inline-block;
	font-size: 18px;
	color: #00adef;
	font-weight: 400;
	line-height: 28px;
	text-decoration: none;
	transition: all .3s ease-in-out;

}

#serviceSec .content .servicesClm .moreLink i {
	font-family: "Material Design Icons";
	font-size: 18px;
	color: #009fe3;
	line-height: 28px;
	transition: all .3s ease-in-out;

}

#serviceSec .content .servicesClm .moreLink:hover {
	color: #221f1f;
}

#serviceSec .content .servicesClm .moreLink:hover i {
	color: #221f1f;

}

#marqueeSec {
	overflow: hidden;
	padding-bottom: 60px;
}

.marquee-container,
.marquee-container-mobile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%
}

.marquee-text-dark,
.marquee-text-reverse-dark {
	padding: 0 50px;
	color: transparent;
	font-size: 90px;
	color: #000000;
	font-weight: 700;
	white-space: nowrap
}

.marquee-text-dark strong,
.marquee-text-reverse-dark strong {
	display: inline-block;
	padding: 0 30px;
	color: #000000;
	font-weight: 700;
}

.marquee-text-dark p,
.marquee-text-reverse-dark p {
	margin-bottom: 0;
}

#workSec {
	position: relative;
	min-height: 527px;
	padding-top: 60px;
	padding-bottom: 60px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}

#workSec h2 {
	margin: 0px 0px 20px 0px;
	font-size: 60px;
	color: #ffffff;
	line-height: 70px;
	font-weight: 700;
	text-align: center;

}

#workSec p {
	margin: 0px 0px 10px 0px;
	font-size: 22px;
	color: #ffffff;
	line-height: 28px;
	font-weight: 400;
	text-align: center;

}

#workSec .profolioRow {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding-bottom: 30px;
}

#workSec .profolioRow .clm_1 {
	float: left;
	width: 51%;
	padding-bottom: 60px;
}

#workSec .profolioRow .clm_1 .portfolioImage {
	float: left;
	width: 100%;
	margin-bottom: 40px;
	background-color: transparent;
}

#workSec .profolioRow .clm_1 .portfolioImage img {
	width: 100%;
	height: auto;
}

#workSec .profolioRow .clm_1 .portfolioInfo {
	float: left;
	width: 100%;
}

#workSec .profolioRow .clm_1 .portfolioInfo .link {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 36px;
	color: #ffffff;
	font-weight: 400;
	line-height: 45px;
	text-decoration: none;
	transition: all .3s ease-in-out;

}

#workSec .profolioRow .clm_1 .portfolioInfo .link i {
	font-family: "Material Design Icons";
	font-size: 36px;
	color: #ffffff;
	line-height: 28px;
	vertical-align: middle;
	transition: all .3s ease-in-out;

}

#workSec .profolioRow .clm_1 .portfolioInfo .link:hover {
	color: #00adef;
}

#workSec .profolioRow .clm_1 .portfolioInfo .link:hover i {
	color: #00adef;

}

#workSec .profolioRow .clm_1 .portfolioInfo p {
	margin: 0px 0px 10px 0px;
	font-size: 22px;
	color: #ffffff;
	line-height: 30px;
	font-weight: 400;
	text-align: left;

}

#workSec .profolioRow .clm_2 {
	float: right;
	width: 41%;
	margin-top: 80px;
}

#workSec .profolioRow .clm_3 {
	float: left;
	width: 80%;
}

#workSec .profolioRow .btnRow {
	float: left;
	width: 100%;
	text-align: center;
}

#workSec .profolioRow .btnRow .viewallBtn {
	display: inline-block;
	padding: 12px 33px;
	background-color: #00adef;
	border-radius: 8px;
	font-size: 18px;
	color: #ffffff;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease-in-out;

}

#workSec .profolioRow .btnRow .viewallBtn:hover {
	background-color: #ffffff;
	color: #00adef;

}

#testimonialSec {
	padding-top: 145px;
	padding-bottom: 135px;
}

#testimonialSec h2 {
	margin: 0px 0px 10px 0px;
	font-size: 60px;
	color: #000000;
	line-height: 70px;
	font-weight: 700;
	text-align: center;
}

#testimonialSec h2 strong {
	color: #00adef;
	font-weight: 700;
}

#testimonialSec p {
	margin: 0px 0px 0px 0px;
	font-size: 22px;
	color: #000000;
	line-height: 30px;
	font-weight: 400;
	text-align: center;

}

#testimonialSec .contentWrap {
	padding-top: 30px;
}

#testimonialSec .contentWrap .item {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 30px;
	padding: 49px 40px;
	border: 1px solid #00adef;
}

#testimonialSec .contentWrap .item::before {
	position: absolute;
	content: '';
	width: 80px;
	height: 59px;
	left: 25px;
	top: 25px;
	background-image: url(../images/quote-icon.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}


#testimonialSec .contentWrap .item h3 {
	margin: 0px 0px 10px 0px;
	font-size: 22px;
	color: #000000;
	line-height: 32px;
	font-weight: 700;
}

#testimonialSec .contentWrap .item p {
	min-height: 210px;
	margin: 0px 0px 0px 0px;
	font-size: 18px;
	color: #000000;
	line-height: 30px;
	font-weight: 400;
	text-align: left;

}

#footer {
	float: left;
	width: 100%;
	background-color: #000000;
}

.footerSection {
	position: relative;
	float: left;
	width: 100%;
	padding-top: 80px;
	padding-bottom: 50px;
}

.footerSection .ftrLogo {
	float: left;
	width: 100%;
	margin-bottom: 40px;
}

.footerSection .ftrMenu {
	float: left;
	width: 100%;
	padding-bottom: 30px;
}

.footerSection .ftrMenu ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.footerSection .ftrMenu ul li {
	float: left;
	width: 100%;
	margin-bottom: 15px;
	font-size: 22px;
	color: #ffffff;
	font-weight: 400;
	line-height: 32px;
}

.footerSection .ftrMenu ul li:last-child {
	margin-bottom: 0px;
}

.footerSection .ftrMenu ul li a {
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.footerSection .ftrMenu ul li a:hover {
	color: #009fe3;
}

.footerSection .ftrtSocial {
	float: left;
	width: 100%;
	padding-bottom: 30px;
}

.footerSection h4 {
	margin-bottom: 15px;
	font-size: 22px;
	color: #ffffff;
	font-weight: 400;
	line-height: 32px;
}

.footerSection .ftrtSocial ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footerSection .ftrtSocial ul li {
	display: inline-block;
	padding: 0 10px 0 0;
}

.footerSection .ftrtSocial ul li:last-child {
	padding: 0;
}

.footerSection .ftrtSocial ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background-color: #000000;
	border: 1px solid #ffffff;
	border-radius: 50%;
	font-size: 18px;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.footerSection .ftrtSocial ul li a:hover {
	background-color: #009fe3;
	border: 1px solid #009fe3;
	color: #fafafd;
}

.footerSection .ftrContact {
	float: left;
	width: 100%;
	padding-bottom: 30px;
}

.footerSection .ftrContact ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.footerSection .ftrContact ul li {
	float: left;
	width: 100%;
	padding: 0 10px 0 0;
}



.footerSection .ftrContact ul li:last-child {
	padding: 0;
}

.footerSection .ftrContact ul li a {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	line-height: 28px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.footerSection .ftrContact ul li a:hover {
	color: #009fe3;
}

.footerSection .copy_text {
	float: left;
	width: 100%;
	padding-top: 40px;
	border-top: 1px solid #322d2d;
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
}

.footerSection .copy_text a {
	display: inline-block;	
	color: #ffffff;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	transition: all .3s ease-in-out;

}
.footerSection .copy_text a:hover {	
	color: #009fe3;
}


#innerBanner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 233px;
	padding: 50px 0px 0px 0px;
}

#innerBanner .caption {
	float: left;
	width: 100%;
}

#innerBanner .caption h1 {
	margin: 0px 0px 5px 0px;
	font-size: 60px;
	color: #000000;
	font-weight: 700;
	line-height: 70px;
}

#innerBanner .caption p {
	margin: 0px 0px 10px 0px;
	font-size: 24px;
	color: #000000;
	font-weight: 400;
	line-height: 34px;
}

#innerBanner .caption .aboutBanner {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 70px;
	border-radius: 15px;
	overflow: hidden;
	background: transparent;
}

#innerBanner .caption .aboutBanner img {
	width: 100%;
	height: auto;
}

#innerSection {
	padding-top: 80px;
	padding-bottom: 80px
}

#innerSection h2 {
	margin: 0px 0px 5px 0px;
	font-size: 60px;
	color: #000000;
	font-weight: 700;
	line-height: 70px;
}

#innerSection h6 {
	margin: 0px 0px 20px 0px;
	font-size: 18px;
	color: #009fe3;
	line-height: 28px;
	font-weight: 400;
}


#innerSection p {
	margin: 0px 0px 20px 0px;
	font-size: 18px;
	color: #000000;
	line-height: 28px;
	font-weight: 400;
}
.how_we_work {
	padding-top: 50px;
}

/*-------- About Page ------*/
.aboutBox {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding: 30px 0px;

}

.aboutBox .icon {
	float: left;
	width: 100%;
	margin-bottom: 30px;

}

.aboutBox .info {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

.aboutBox .info h3 {
	margin: 0px 0px 5px 0px;
	font-size: 24px;
	color: #000000;
	font-weight: 700;
	line-height: 34px;
}

.aboutBox .info p {
	margin: 0px 0px 20px 0px;
	font-size: 18px;
	color: #000000;
	line-height: 28px;
	font-weight: 400;
}

.worklist {
	float: left;
	width: 100%;

}

.worklist .listitem {
	float: left;
	width: 100%;
}

.worklist .listitem .portfolioImage {
	float: left;
	width: 100%;
	margin-bottom: 40px;
	background-color: transparent;
}

.worklist .listitem .portfolioImage img {
	width: 100%;
	height: auto;
}

.worklist .listitem .portfolioInfo {
	float: left;
	width: 100%;
}

.worklist .listitem .portfolioInfo .link {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 36px;
	color: #000;
	font-weight: 400;
	line-height: 45px;
	text-decoration: none;
	transition: all .3s ease-in-out;

}

.worklist .listitem .portfolioInfo .link i {
	font-family: "Material Design Icons";
	font-size: 36px;
	color: #000000;
	line-height: 28px;
	vertical-align: middle;
	transition: all .3s ease-in-out;

}

.worklist .listitem .portfolioInfo .link:hover {
	color: #00adef;
}

.worklist .listitem .portfolioInfo .link:hover i {
	color: #00adef;

}

.servicesList {
	float: left;
	width: 100%;
}

.servicesList .item {
	float: left;
	width: 95%;
	height: calc(100% - 50px);
	padding: 30px;
	margin-bottom: 50px;
	border: 1px solid #fafafd;
	transform: scale(1);
	transition: all .3s ease-in-out;
	background-color: #fafafd;
	border-radius: 10px;
}

.servicesList .item p {
	margin: 0 0 10px 0;
}

.servicesList .item h3 {
	margin: 0 0 20px 0;
	font-size: 24px;
	color: #000000;
	font-weight: 500;
}

.servicesList .item:hover {
	border: 1px solid #009fe3;
	transform: scale(1.1);
}

.servicesList .item i {
	display: inline-block;
	font-family: "Material Design Icons";
	font-size: 36px;
	color: #000000;
	line-height: 28px;
	vertical-align: middle;
	transition: all .3s ease-in-out;

}

.servicesList .item:hover i {
	color: #00adef;

}

.contactSec {
	float: left;
	width: 100%;
}

.contactSec p {
	margin: 0 0 10px 0;
}

.contactSec h3 {
	margin: 0 0 20px 0;
	font-size: 30px;
	color: #009fe3;
	font-weight: 700;
}

.contactSec .contact-form {
	margin-bottom: 0;
}

.contactSec .contact-form .input-group {
	margin-bottom: 15px;
}

.contactSec .contact-form .input-group .form-control {
	display: block;
	width: 100%;
	height: 55px;
	padding: 15px 0px;
	outline: 0;
	border: none;
	border-bottom: 1px solid #080a19;
	background-color: transparent;
	border-radius: 0px;
	font-size: 16px;
	color: #000000;
	font-weight: 400;

}

.contactSec .contact-form .input-group .form-control::placeholder {
	color: #000000;
}

.contactSec .contact-form .input-group textarea.form-control {
	height: 100px;
	resize: none;
}

.contactSec .contact-form .input-group .send-btn {
	display: inline-block;
	padding: 15px 35px;
	margin-top: 30px;
	background-color: #009fe3;
	border-radius: 8px;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.contactSec .contact-form .input-group .send-btn:hover {
	background-color: #000000;

}

.blockContact {
	float: left;
	width: 100%;
	padding-left: 15%;
}

.blockContact .contact-information {
	margin-top: 35px;
	margin-bottom: 35px;
	padding-left: 30px;
	border-left: 1px solid #ded2c5;
}

.blockContact .contact-information .text-info-contact {
	margin-bottom: 5px;
	color: rgba(21, 20, 20, 0.49);
	font-size: 14px;
	line-height: 140%;
	font-weight: 500;
}

.blockContact .contact-information h6 {
	margin-top: 0px;
	margin-bottom: 15px;
	color: #000000 !important;
	font-size: 35px !important;
	line-height: 45px !important;
	font-weight: 700 !important;
}

.applicationSec {
	float: left;
	width: 100%;
	overflow: hidden;
}

.applicationSec .left_content {
	float: left;
	width: 100%;
	margin-bottom: 30px;
	padding: 50px 0px 0px 0px;
}

.applicationSec .left_content h3 {
	margin: 0 0 10px 0;
	font-size: 36px;
	color: #000000;
	line-height: 46px;
	font-weight: 700;
}

.applicationSec .left_content p {
	margin: 0 0 10px 0;
}

.applicationSec .left_content .appBtn {
	float: left;
	width: 100%;
	margin-top: 20px;
}

.applicationSec .left_content .appBtn a {
	margin-right: 10px;
	display: inline-block;
	width: 170px;
}

.applicationSec .left_content .appBtn a img {
	width: 100%;
	height: auto;
}

.applicationSec .mobileScreen {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

.applicationSec .mobileScreen img {
	width: 100%;
	height: auto;
}

/*----- Estimate Menu ------*/
.menuBox {
	/* display: inline-flex; */
	align-items: center;
	cursor: pointer;
	float: right;
}

.menuBox .burberMenu {
	display: inline-block;
	float: left;
	width: auto;
	margin-right: 0;
}

.menuBox .burberMenu a {
	display: inline-block;
	padding: 10px 15px;
	background-color: #009fe3;
	border-radius: 8px;
	font-size: 20px;
	color: #ffffff;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.menuBox .burberMenu a:hover {
	background-color: #221f1f;

}

.menuBox .burberMenu img {
	filter: none;
	width: 100%;
}

.menuBox .burberMenu img {
	filter: brightness(0) invert(1);
}

/* -------------- BROWSE PRODUCTS Menu Start -------------- */

.menuBox.checked~.box-menu-browse {
	pointer-events: auto;
	visibility: visible;
}

.menuBox.checked~.box-menu-browse>div {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.75s;
	transition-duration: 0.75s;
}

.menuBox.checked~.box-menu-browse>div>div {
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0.4s;
	transition: opacity 0.4s ease 0.4s;
}

/* .box-menu-browse {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #ffffff;
	z-index: 5;
	padding: 35px 70px;
	display: none;
} */

.box-menu-browse {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline: 1px solid transparent;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	z-index: 4;
}

.box-menu-browse>div {
	width: 240vw;
	height: 240vw;
	color: #FEFEFE;
	background: #ffffff;
	border-radius: 50%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-box-flex: 0;
	flex: none;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.box-menu-browse>div>div {
	position: relative;
	width: 100vw;
	height: 100vh;
	padding: 35px 70px;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	-webkit-box-flex: 0;
	flex: none;
	display: -webkit-box;
	display: flex;
	flex-direction: column;
}

.box-menu-browse .Search-close {
	display: flex;
	justify-content: space-between;
}

.menuBox.checked~.box-menu-browse .close-btn {
	display: inline-block;
	padding: 17px 40px;
	outline: 0;
	border: none;
	background-color: transparent;
	border-radius: 0px;
	font-size: 13px;
	color: #000000;
	font-weight: 600;
	letter-spacing: 0px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.box-menu-browse .close-menu {
	/*max-width: 20%;*/
	width: 100%;
	display: flex;
	justify-content: end;
}

.quoteForm .contentWrapper {
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
	padding: 20px 0;
	position: relative;
}

.quoteForm .contentWrapper h1 {
	margin: 0px 0px 20px 0px;
	font-size: 60px;
	color: #000000;
	font-weight: 700;
	line-height: 70px;
	text-align: center;
}


.quoteForm .contentWrapper h3 {
	margin: 0px 0px 5px 0px;
	font-size: 24px;
	color: #000000;
	font-weight: 700;
	line-height: 34px;
}

.quoteForm .contentWrapper p {
	margin: 0px 0px 20px 0px;
	font-size: 18px;
	color: #000000;
	line-height: 28px;
	font-weight: 400;
	text-align: center;
}

.quoteForm .contentWrapper p span {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #00adef;
}

.quoteForm .contentWrapper .formContent {
	position: relative;
	display: inline-block;
	width: 100%;
}

.quoteForm .contentWrapper .formContent .input-group {
	margin: 0 0 20px 0;
}

.quoteForm .contentWrapper .formContent .input-group:last-child {
	margin-bottom: 0;
}

.quoteForm .contentWrapper .formContent .input-group .checkbox,
.quoteForm .contentWrapper .formContent .input-group .radio .quoteForm .input-group .radio {
	width: 33.33%;
	padding: 0 20px 10px 0;
}

.quoteForm .contentWrapper .formContent .input-group input[type="checkbox"] {
	display: none;
}

.quoteForm .contentWrapper .formContent .input-group label {
	position: relative;
	width: 100%;
	margin: 0;
	padding-left: 30px;
	padding-right: 15px;
	font-size: 16px;
	color: #000000;
	line-height: 30px;
	font-weight: 400;
	vertical-align: middle;
}

.quoteForm .contentWrapper .formContent .input-group input[type="checkbox"]+label:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	padding: 0;
	border-radius: 3px;
	margin-right: 10px;
	background-clip: content-box;
	border: 1px solid #c4c4c4;
	background-color: transparent;
	cursor: pointer;
	left: 0;
	top: 7px;
}

.quoteForm .contentWrapper .formContent .input-group input[type="checkbox"]:checked+label:before {
	position: absolute;
	content: "\f00c ";
	font-family: 'FontAwesome';
	padding: 0;
	background-color: #00adef;
    border: 1px solid #00adef;
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	line-height: 16px;
	text-align: center;
}

.quoteForm .contentWrapper .formContent .input-group textarea.form-control {
	height: 100px;
	resize: none;
}

.quoteForm .contentWrapper .formContent .input-group .form-control {
	display: block;
	width: 100%;
	height: 55px;
	padding: 15px 0px;
	outline: 0;
	border: none;
	border-bottom: 1px solid #080a19;
	background-color: transparent;
	border-radius: 0px;
	font-size: 16px;
	color: #000000;
	font-weight: 400;

}

.quoteForm .contentWrapper .formContent .input-group .form-control::placeholder {
	color: #000000;
}

.quoteForm .contentWrapper .formContent .input-group .submitBtn {
	display: inline-block;
	padding: 15px 35px;
	margin-top: 30px;
	background-color: #009fe3;
	border-radius: 8px;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	transition: all .3s ease-in-out;
}

.quoteForm .contentWrapper .formContent .input-group .submitBtn:hover {
	background-color: #000000;

}

#contactSec {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

#contactSec h3 {
	margin: 0 0 20px 0;
	font-size: 62px;
	color: #221f1f;
	font-weight: 700;
	line-height: 64px;
}

#contactSec strong {
	color: #00adef;
}

#contactSec .contactBtn {
	display: inline-block;
	padding: 12px 33px;
	background-color: #ffffff;
	border: 1px solid #00adef;
	border-radius: 8px;
	font-size: 18px;
	color: #00adef;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0px 10px 0px 0px rgba(0, 173, 239, 1);
	-webkit-box-shadow: 0px 10px 0px 0px rgba(0, 173, 239, 1);
	-moz-box-shadow: 0px 10px 0px 0px rgba(0, 173, 239, 1);
	transition: all .3s ease-in-out;

}

#contactSec .contactBtn i {
	font-family: "Material Design Icons";
	font-size: 18px;
	color: #00adef;
	line-height: 28px;

}

#contactSec .contactBtn:hover {
	background-color: #00adef;
	border: 1px solid #00adef;
	color: #ffffff;

}

#contactSec .contactBtn:hover i {
	color: #ffffff;
}