@charset "utf-8";


/* font-family: "Libre Baskerville", serif;
 font-family: "Plus Jakarta Sans", sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Plus Jakarta Sans", sans-serif;
	--body-color: #000;
	--primary-color: #0646A5;
	--secondary-color: #C12033;
	--tertiary-color: #D3B72D;
	--quaternary-color: #EDF2F9;
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;
	--light: 300;
	--normal: 400;
	--medium: 600;
	--bold: 700;


}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 30px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-weight-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);
	background-attachment: fixed;
	overflow-x: hidden;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-border-radius: 10px;
	border-radius: 10px;

}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: var(--primary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden !important;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color: var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color: var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;

}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 70px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	display: block;
	width: 100%;
	height: 1px;
	position: relative;
}

.hr:after {
	width: 100px;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background-color: var(--primary-color);
	z-index: 2;
}

img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/


/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-grey {
	color: var(--grey-dark) !important;
}

.text-blue {
	color: var(--primary-color) !important;
}

.text-red {
	color: var(--secondary-color) !important;
}

.text-gold {
	color: var(--tertiary-color) !important;
}


.text-center {
	text-align: center;
}

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

.text-justify {
	text-align: justify;
}



/*-----------background styles------------*/
.corner-round {
	overflow: hidden;
	border-radius: 12px;
}

.bg-gradient {
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color: var(--white) !important;
}

.bg-primary {
	background: var(--primary-color);
	color: #fff !important;
}

.bg-secondary {
	background: var(--secondary-color);
	color: #fff !important;
}

.bg-tertiary {
	background: var(--tertiary-color);

}

.bg-quaternary {
	background: var(--quaternary-color);

}

.bg-grey {
	background: var(--grey);

}

.bg-grey-light {
	background: var(--grey-light);
}

.bg-ivory {
	background-color: #F6F1D5;
}

/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white);
	z-index: 999999;
}

#status {
	width: 300px;
	height: 300px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/energixcel-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50%;
	margin: -150px 0 0 -150px;
}


/*********************************/

.container {
	width: 1360px;
	margin: 0 auto;
}

.fullheight {
	width: 100%;
	height: 100vh;
	overflow: auto;

}

.fullwidth {
	width: 100%;
	display: block;
}

.img-rounded {
	border-radius: 50%;
	overflow: hidden;
}

.corner-radius {
	border-radius: 50%;
}

/*************HOVER EFFECT*******/


.img-style {
	overflow: hidden;
	border-radius: 100px 0 0 0 !important;

}

.hover-effect {
	width: 100%;
	position: relative;
	overflow: hidden;
	/*border-radius: 12px; */
}

.hover-effect i {
	width: 60px;
	height: 60px;
	background-color: var(--white);
	color: var(--primary-color);
	position: absolute;
	right: -60px;
	top: -60px;
	z-index: 1;
	line-height: 60px;
	font-size: 18px;
	text-align: center;
	margin: 0 0 0 -25px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.hover-effect:hover i {
	right: 0;
	top: 0;
}

.hover-effect i:hover {
	color: var(--white);
	background-color: var(--secondary-color);
}

.hover-effect img {
	display: block;
	width: 100%;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.hover-effect:hover img {
	-webkit-transform: scale(1.09, 1.09);
	transform: scale(1.09, 1.09);
	-webkit-filter: brightness(70%);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/



section {
	width: 100%;
	display: block;
	position: relative;
}

.section-spacing {
	padding: 100px 0;
}

.sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width: 100%;
}

/*********************************************/

.top-color {
	width: 100%;
	height: 220px;
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--primary-color);

}

header {
	width: 100%;
	position: relative;
	left: 0;
	top: 0;
	padding: 25px 0;
	z-index: 5;
	background-color: var(--primary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

header.smaller {
	padding: 20px 0;
	position: fixed;
	/*box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  */
}

.header {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	color: var(--white);
}

.logo {
	width: 300px;
	position: relative;
	transition: all 0.4s ease;
}

header.smaller .logo {
	width: 150px;

}

.logo img {
	width: 100%;
	display: block;

}

.nav-group,
.header-right {
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
	align-items: center;
}

.call-bt,
.call-bt a {
	color: var(--white);
	font-weight: var(--font-bold);
}

.call-bt i {
	margin-right: 10px;
}

.nav-group {}

.social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	vertical-align: middle;
	gap: 0 5px;
}

.social a {
	color: var(--white);
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0;
	transition: all 0.4s ease;

}

.social a:hover {
	color: var(--white);
	border-radius: 50%;
	background-color: var(--secondary-color);
}

/***mobile content****/
.mobile-content {
	display: none !important;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 10px 20px;
	color: var(--white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-content a {
	color: var(--white);
}

.mobile-content i {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: var(--tertiary-color);
	border-radius: 5px;
	color: var(--primary-color);
	font-size: 14px;
	margin: 0 15px 0 0;
	text-align: center;
}

.mobile-content .tel {
	font-weight: var(--font-bold);
	font-size: 18px;
	margin: 0;
}



.mobile-menu {
	display: none !important;
}


.logo-mobile {
	width: 150px;
}

/***********social ***********/

.link {}

.link a {

	color: var(--white);
	font-size: 16px;
	padding: 10px 60px 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;
	background-color: var(--primary-color);
	font-weight: var(--font-bold);


}

.link a:before {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	content: '';
	z-index: 2;
	transform: rotate(0deg);
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.link a:hover:before {
	transform: rotate(45deg);
}

.link a:hover {
	background-color: var(--secondary-color);
	color: var(--white);
}

.caps {
	text-transform: uppercase;
}

.bold,
strong {
	font-weight: var(--bold);
}

.medium {
	font-weight: var(--medium);
}

.normal {
	font-weight: var(--normal);
}

.light {
	font-weight: var(--medium);
}

.heading {
	font-size: 50px;
	line-height: normal;
}

.subheading {
	font-size: 30px;
	line-height: normal;
}

.subtitle {
	font-size: 22px;
	line-height: normal;
}

.section-title {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: var(--medium);
	line-height: normal;
	letter-spacing: 2px;
	color: var(--secondary-color);
	position: relative;
	margin-bottom: 20px;
	padding: 0 0 0 60px;

}

.section-title:before {
	width: 30px;
	height: 4px;
	position: absolute;
	left: 0;
	top: 50%;
	content: '';
	background-color: var(--tertiary-color);
}

/****************************/

.pos-rel {
	position: relative;
}




/****************SCROLLING TEXT***************/

.scrolling-text-wrap {
	width: 100%;
	overflow-x: hidden !important;
	overflow-Y: hidden !important;
	overflow: hidden !important;
}

.scroll {
	white-space: nowrap;
	margin: 0;
}

.scroll div {
	display: flex;

}

.scroll h2 {
	font-size: 134px;
	line-height: 134px;
	color: var(--quaternary-color);
	font-weight: var(--font-bold);
	margin: 0;
}

.scroll h2 span {
	width: 6px;
	height: 6px;
	background-color: var(--primary-color);
	outline-offset: 4px;
	outline: 1px solid var(--primary-color);
	border-radius: 50%;
	display: inline-block;
	position: relative;
	margin: 0 25px;
	vertical-align: middle
}

.RightToLeft {
	animation: RightToLeft 20s infinite linear;
}

/***********/

/*********/
@keyframes RightToLeft {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-50%);
	}
}

.LeftToRight {
	animation: LeftToRight 20s infinite linear;
}

@keyframes LeftToRight {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0%);
	}
}


/*******intro***********/
.tagline {
	background-color: var(--secondary-color);
	background-image: radial-gradient(rgba(255, 255, 255, 0.3) 6%, transparent 0);
	background-size: 20px 20px;

}

.tag {
	font-size: 40px;
	font-weight: var(--bold);
	line-height: normal;
	color: var(--white);
	margin: 0;
}

/*******funfacts***********/


.funfacts {
	width: 100%;
	position: relative;
	z-index: 2;
	background-color: var(--primary-color);
	background-image: radial-gradient(rgba(255, 255, 255, 0.3) 6%, transparent 0);
	background-size: 20px 20px;


}

.funfacts ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.funfacts ul li {
	width: 25%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	color: var(--white);
	padding: 70px 25px;
	flex-direction: column;
	text-transform: uppercase;
	margin: 0;
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	justify-content: center;
	font-weight: var(--bold);
}

.funfacts ul li:last-child {
	border-right: 0;
}

.funfacts ul li h2 {
	margin: 0;
	padding: 0;
	line-height: 78px;
	font-size: 80px;
	font-weight: var(--bold);
}

.funfacts p {
	margin: 0;
	font-size: 14px;
	font-weight: var(--bold);

}


.rotating-circle {
	width: 145px;
	height: 145px;
	display: inline-block;
	position: relative;
	z-index: 2;
	border-radius: 50%;

}

.rotating-circle:after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background-image: url(../images/rotation-text.svg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}

.rotating-circle:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	z-index: 6;
	background-image: url(../images/1958.svg);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size: 90%;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

@-webkit-keyframes rotation2 {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(-359deg);
	}
}



/**********************news**********************/
a:hover .news-widget {
	background-image: linear-gradient(to bottom, rgba(6, 70, 165, 0), rgba(6, 70, 165, 1));
}

.news-widget {
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 30px;
	z-index: 2;
	color: var(--white);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

.news-widget:before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 0;
	height: 4px;
	z-index: 2;
	background-color: var(--secondary-color);
	transition: all 0.4s ease;
}

a:hover .news-widget:before {
	width: 100%;
	right: 0;
}

.news-widget h2 {
	font-size: 20px;
	line-height: normal;
	font-weight: var(--medium);

}

.date {
	font-size: 14px;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 15px 0;
	vertical-align: middle;
}

.date i {
	font-size: 16px;
	color: var(--secondary-color);
	vertical-align: middle;
	margin: -5px 10px 0 0;
}

.news-style p:last-child {
	margin: 25px 0 0 0;
}

/********************services scroller**********************/

.pro-title {
	padding: 20px 40px;
	background-color: var(--quaternary-color);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	font-size: 18px;
	font-weight: var(--medium);
	width: 80%;
	background-image: url(../images/icons/arrow-blue.svg);
	background-repeat: no-repeat;
	background-position: 90% center;
	background-size: 18px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.hover-effect:hover .pro-title {
	padding: 20px 50px;
	color: var(--primary-color);
	width: 100%;
}

.pro-title:before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 0px;
	height: 4px;
	background-color: var(--secondary-color);
	transition: all 0.4s ease;
}

.hover-effect:hover .pro-title:before {
	width: 100%;
	right: 0;
}

.project-title {
	padding: 20px 40px;
	background-color: var(--white);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	font-size: 18px;
	font-weight: var(--medium);
	width: auto;

}

.project-details {
	padding: 20px 0;
	font-size: 16px;
	font-weight: var(--medium);
	width: 100%;
	border-bottom: 1px solid var(--grey-dark);

}

/***********************/


.display-style {
	width: 100%;
	aspect-ratio: 1.3 / 1;
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 40px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.shadow {
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
}


.iconic {
	width: 100%;
	display: block;
	position: relative;
	padding: 0 20px 0 120px;
	min-height: 100px;
	vertical-align: top;
}

.iconic:last-child {
	border-bottom: 0;
}

.iconic h2 {
	font-size: 30px;
	line-height: 34px;
	font-family: var(--medium);
	margin: 0 0 15px 0;

}

.webicon {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 80px;
	height: 80px;
	text-align: center;
	color: var(--white);
	font-size: 30px;
	vertical-align: middle;
	margin: 0;
	padding: 15px;
	border-radius: 50%;
	background-image: linear-gradient(to left top, var(--primary-color), var(--secondary-color));

	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.webicon img {
	display: block;
	width: 100%;
}

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

.iconic p:last-child {
	margin: 0;
}

.res-icon {
	top: 40px;
}




/*********fix buttons**************/
.fixbutton {
	width: 50px;
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 2;
	margin-top: -95px;

}

.fixbutton a {
	width: 50px;
	height: 50px;
	line-height: 50px;
	/*border-radius:50%;*/
	position: relative;
	color: #fff;
	text-align: center;
	display: block;
	margin: 0;
	-webkit-transition: all 300ms -in-out;
	-moz-transition: all 300ms -in-out;
	transition: all 300ms -in-out;
}

.fixbutton a:hover {
	background-color: var(--black);
}

.fixbutton h5 {
	width: 100px;
	top: 7px;
	right: 50px;
	background-color: var(--secondary-color);
	line-height: 12px;
	border-radius: 5px;
	font-size: 12px;
	padding: 10px;
	position: absolute;
	z-index: -1;
	margin: 0;
	-webkit-transition: .3s -in-out;
	-moz-transition: .3s -in-out;
	transition: .3s -in-out;
	opacity: 0;
}

.fixbutton a:hover h5 {
	right: 60px;
	opacity: 9;
}

.fixbutton h5:before {
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-left: 10px solid var(--secondary-color);
	border-bottom: 10px solid transparent;
	position: absolute;
	top: 5px;
	right: -5px;
	content: ''
}

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

.fixbutton .write {
	background-color: var(--primary-color) !important;
}

a:hover.write {
	background-color: var(--secondary-color);
}

/**********************Reviews**********************/


.m0-p0 {
	margin: 0 !important;
	padding: 0 !important;
	color: #fff;
}

/*********whatsa app*/
.float {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 80px;
	line-height: 50px;
	right: 20px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	/*box-shadow: 2px 2px 3px #999;*/
	z-index: 4;
}

.float i {
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;

}

.float:hover i {
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}

.float:hover {
	color: #FFF;

}

.float h5 {
	width: 100px;
	top: 8px;
	right: 50px;
	background-color: var(--white);
	color: var(--grey-dark);
	box-shadow: 0px 0px 5px gray;
	line-height: 12px;
	border-radius: 5px;
	font-size: 12px;
	padding: 10px;
	position: absolute;
	z-index: -1;
	margin: 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0;
}

.float:hover h5 {
	opacity: 9;
	right: 60px;
}




/*************** footer CSS ***************/

.footer {
	padding: 50px 0 0 0;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	background-color: var(--primary-color);
	background-image: radial-gradient(rgba(255, 255, 255, 0.3) 6%, transparent 0);
	background-size: 20px 20px;

	color: var(--white);
}

.footer a {
	color: var(--white);
}

.footer a:hover {
	color: var(--secondary-color);
}

.footer h2 {
	font-size: 18px;
	line-height: normal;
	font-weight: var(--bold);
	text-transform: uppercase;
	margin: 0 0 25px 0;
}

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

}

.f-col {}

.footer-logo {
	width: 250px;
}

.lower-footer {
	border-top: 2px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	margin-top: 50px;
}

.copy {}

.footer .social a:hover {
	color: var(--white) !important;

}


/**********************/
.address-box {
	padding: 30px;
	/*border-bottom:4px solid var(--secondary-color);
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);*/
	background-color: var(--primary-color);
}

.add {
	width: 100%;
	position: relative;
	padding: 0 0 0 60px;
	min-height: 30px;
	margin-bottom: 20px;
	font-size: 20px;
	vertical-align: top;
	line-height: 24px;
	color: var(--white);

}

.add h2 {
	font-size: 16px;
	line-height: 20px;
	font-weight: var(--font-bold);
	margin: 0;
	line-height: normal;
}

.add i {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: var(--tertiary-color);
	color: var(--primary-color);
	font-size: 14px;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;


}

.google-map {
	overflow: hidden;
	width: 100%;
	height: 450px;
	margin: 0;
	padding: 0;
	outline: none;
	border: 0;
	display: block;
}

.ext {
	display: inline-block;
	padding-top: 10px;
}

.add a {
	color: var(--white);
}

.add a:hover {
	color: var(--white);
}

/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

/*****************************/

/*************mission vison****************/
.mission-vision {
	padding: 30px 25px;
	border-radius: 15px;
	background-color: var(--white);
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/*****************************/
/************************/
.table-wrap {
	width: 100%;
	position: relative;
	display: flex;
	overflow-x: scroll;
}

table {
	min-width: 100%;
	width: 900px;
	border-collapse: collapse;

}

/* Zebra striping */
tr:nth-of-type(odd) {
	background: #eee;
}

th {
	background: var(--secondary-color);
	color: var(--white);

}

td,
th {
	padding: 8px 15px !important;
	border: 1px solid #ccc;
	text-align: left;
	font-size: 14px;
}


/***************brands-listing*****************/

.brands-listing {}

.brands-listing ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.brands-listing ul li {
	display: flex;
	width: 16.66666666666667%;
	list-style: none;
	margin: -1px 0 0 -1px;
	padding: 0;
	border: 1px solid var(--grey);
}

.brands-listing ul li img {
	width: 100%;
	display: block;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.brands-listing ul li:hover img {
	filter: grayscale(100%);
}



/*************** INNER BANNER ***************/
.banner {
	width: 100%;
	height: 200px;
	padding: 40px 0;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	position: relative;
	/*align-items: center;*/
	background-color: var(--quaternary-color);
	color: var(--white);
	background-image: url(../images/backgrounds/bg-circle.svg);
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

}


.banner h2 {
	font-weight: var(--bold);
	font-size: 30px;
	line-height: 30px;
	padding: 0;
	position: relative;
	z-index: 2;
	color: var(--black);
}

/*************************banners ***************/
.bg01 {
	background-image: url(../images/backgrounds/services.jpg);
}

/*****************************/


.breadcrumb {
	display: flex;
	color: var(--grey-dark);
	margin: 0;
	position: relative;
	z-index: 2;


}

.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 20px 0 0 0;
	padding: 5px 20px;
	background-color: var(--secondary-color);
	color: var(--white);
}

.breadcrumb li {
	margin: 0;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--white);
	font-weight: var(--font-bold);


}

.breadcrumb li:not(:last-child)::after {
	display: inline-block;
	margin: 0 15px;
	/*content: " → "; */
	content: " / ";

}

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

.breadcrumb a:hover {
	color: rgba(255, 255, 255, 0.5);

}

/*************************banners ***************/
.bg-circle {
	background-image: url(../images/backgrounds/bg-circle.svg);
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
}

/*****************************/






/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}


/*********/



.bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment: fixed;
}







/**********forms**************/



.formstyle {}

form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding: 20px 20px;
	border: 1px solid var(--grey);
	background-color: var(--white);
	color: var(--black);
	display: block;
	/*border-radius:7px;*/
	margin: 0;
	font-size: 16px;

}

.sendbutton {

	color: var(--white);
	font-size: 30px;
	font-family: var(--font-bold);
	background-color: var(--primary-color);
	border: 0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;

}

.sendbutton:hover {
	background-color: var(--secondary-color);

}




::-webkit-input-placeholder {
	color: var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}

/*********/



/*************** backToTop *************/
.progress-wrap {
	position: fixed;
	right: 10px;
	bottom: 10px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	background-color: var(--secondary-color);
	/* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);

}

.progress-wrap::after {
	position: absolute;
	content: "\f062";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	text-align: center;
	line-height: 45px;
	font-size: 20px;
	color: var(--white);
	left: 0;
	top: 0;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--black);
	stroke-width: 4px;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}



/************************************* 1400px *************************************/

@media only screen and (max-width: 1359.99px) {
	.container {
		width: 100%;
		padding: 0 25px;
	}

	header,
	header.smaller {
		padding: 10px 0;
	}




	.header {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		color: var(--white);
	}

	.logo,
	header.smaller .logo {
		width: 150px;

	}

	.nav-group {
		flex-direction: row-reverse;
		gap: 0 10px;
	}


	.top-color,
	.header-right {
		display: none;

	}

	.mobile-content,
	.mobile-menu {
		display: block !important;
	}

}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {


	.section-spacing {
		padding: 40px 0;
	}




	/***********news style*****/




}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

	.funfacts ul li {
		width: 50%;
		padding: 25px;
		border: 1px solid rgba(255, 255, 255, 0.2) !important;
		margin: -1px 0 0 -1px;

	}



	.funfacts ul li h2 {
		line-height: 30px;
		font-size: 30px;

	}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

	body {
		font-size: 16px;
		line-height: 24px;
	}

	.banner {
		height: 150px;

	}

	.banner h2 {
		font-size: 20px;
		line-height: 24px;
		margin: 0 0 10px 0;

	}

	.breadcrumb ul {
		margin: 0;
	}

	.scroll h2 {
		font-size: 50px;
		line-height: 50px;

	}

	.RightToLeft {
		animation: RightToLeft 5s infinite linear;
	}

	.iconic {
		padding: 0 0 0 70px;
	}

	.iconic:last-child {
		border-bottom: 0;
	}

	.iconic h2 {
		font-size: 20px;
		line-height: 28px;
	}

	.webicon {
		width: 50px;
		height: 50px;
		padding: 10px;

	}

	.heading {
		font-size: 30px;
	}

	.subheading {
		font-size: 24px;
	}

	.subtitle {
		font-size: 18px;

	}

	.pro-title {
		padding: 15px 20px;
		font-size: 18px;
		width: 80%;
	}

	.hover-effect:hover .pro-title {
		padding: 15px 30px;

	}

	.project-title {
		padding: 15px 20px;
		font-size: 18px;

	}

	.brands-listing ul li {
		width: 33.33333333333333%;
	}

	.tag {
		font-size: 20px;

	}

}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}


.down-btn a {
	color: #0646a5;
    font-size: 14px;
    padding: 12px 10px;
    background-color: #fff;
    font-weight: 700;

}

.down-btn{
	float: right;
	margin-right: 20px;
}