@charset "utf-8";

@font-face {
	font-family: 'ppneuemontrealbook_0';
	src: url('../fonts/ppneuemontrealbook_0.eot');
	src: url('../fonts/ppneuemontrealbook_0.eot') format('embedded-opentype'),
		url('../fonts/ppneuemontrealbook_0.woff2') format('woff2'),
		url('../fonts/ppneuemontrealbook_0.woff') format('woff'),
		url('../fonts/ppneuemontrealbook_0.ttf') format('truetype'),
		url('../fonts/ppneuemontrealbook_0.svg#ppneuemontrealbook_0') format('svg');
}

@font-face {
	font-family: 'ppneuemontrealmedium_0';
	src: url('../fonts/ppneuemontrealmedium_0.eot');
	src: url('../fonts/ppneuemontrealmedium_0.eot') format('embedded-opentype'),
		url('../fonts/ppneuemontrealmedium_0.woff2') format('woff2'),
		url('../fonts/ppneuemontrealmedium_0.woff') format('woff'),
		url('../fonts/ppneuemontrealmedium_0.ttf') format('truetype'),
		url('../fonts/ppneuemontrealmedium_0.svg#ppneuemontrealmedium_0') format('svg');
}

@font-face {
	font-family: 'ppneuemontrealbold_0';
	src: url('../fonts/ppneuemontrealbold_0.eot');
	src: url('../fonts/ppneuemontrealbold_0.eot') format('embedded-opentype'),
		url('../fonts/ppneuemontrealbold_0.woff2') format('woff2'),
		url('../fonts/ppneuemontrealbold_0.woff') format('woff'),
		url('../fonts/ppneuemontrealbold_0.ttf') format('truetype'),
		url('../fonts/ppneuemontrealbold_0.svg#ppneuemontrealbold_0') format('svg');
}

@font-face {
	font-family: 'MerchantThin';
	src: url('../fonts/MerchantThin.eot');
	src: url('../fonts/MerchantThin.eot') format('embedded-opentype'),
		url('../fonts/MerchantThin.woff2') format('woff2'),
		url('../fonts/MerchantThin.woff') format('woff'),
		url('../fonts/MerchantThin.ttf') format('truetype'),
		url('../fonts/MerchantThin.svg#MerchantThin') format('svg');
}


/* font-family: "Poppins", sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: 'ppneuemontrealbook_0';
	--body-color: #FFF;
	--primary-color: #012D52;
	--secondary-color: #2A5B85;
	--tertiary-color: #017E94;
	--quaternary-color: #00FFFF;
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;
	--grey-light: #EFEFEF;
	--grey-dark: #6D6D6D;
	/*--font-weight-light:400;
	--font-weight-normal:400;
	--font-weight-medium:500;	
	--font-weight-bold:600;	*/
	--font-weight-normal: 'ppneuemontrealbook_0';
	--font-weight-medium: 'ppneuemontrealmedium_0';
	--font-weight-bold: 'ppneuemontrealbold_0';
	--heading-font: 'MerchantThin';


}

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(--white);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--primary-color);


}

/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	z-index: 999999;
}

#status {
	width: 100px;
	height: 100px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/hawaii-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100px;
	margin: -50px 0 0 -50px;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	-webkit-border-radius: 10px;
	border-radius: 10px;

}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: var(--secondary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

* {
	-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(--secondary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;

}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	display: block;
	width: 100%;
	height: 1px;
	position: relative;
}

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-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-green {
	color: var(--tertiary-color) !important;
}

.text-blue {
	color: var(--secondary-color) !important;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}



/*-----------background styles------------*/

.bg-primary {
	background: var(--primary-color);
	color: #fff;
}

.bg-secondary {
	background: var(--secondary-color);
	color: #fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
	color: #fff;
}

.bg-quaternary {
	background: var(--quaternary-color);
	color: #fff;
}

.bg-grey {
	background: var(--grey);

}

.bg-white {
	background: var(--white)
}

.bg-bx-stlye {
	background: var(--tertiary-color);
	padding: 50px;
	position: relative;
	outline: 1px solid rgba(255, 255, 255, 0.2);
	outline-offset: -20px;
	margin-bottom: 50px;
}



/***************listing ***************/

.info-col {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	background: var(--seondary-color);
	color: #fff;
}

.info-col ul,
.info-col ul li {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;

}

.info-col ul li {
	width: 33.33333333333333%;
	margin: 0 !important;
	padding: 100px 40px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);

}

.info-col ul li:last-child {
	border-right: 0;

}

.info-col h2 {
	font-size: 34px;
	line-height: normal;
	font-weight: var(--font-weight-bold);
}

/*********************************/

.container {
	width: 1366px;
	margin: 0 auto;
}

.fullheight {
	width: 100%;
	min-height: 100vh;
	overflow: hidden;

}

.fullwidth {
	width: 100%;
	display: block;
}

.img-rounded {
	border-radius: 50%;
	overflow: hidden;
}

.corner-radius {
	border-radius: 50%;
}

/*************HOVER EFFECT*******/

.hover-effect {
	width: 100%;
	position: relative;
	overflow: hidden;
	/*border-radius: 15px;*/
}

.hover-effect i {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	border-radius: 50%;
	color: #fff;
	position: absolute;
	left: 50%;
	top: -100px;
	z-index: 1;
	line-height: 50px;
	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 {
	top: 50%;
	margin: -25px 0 0 -25px;
}

.hover-effect i:hover {
	background-color: var(--secondary-color);
}

.hover-effect img {
	display: block;
	width: 100%;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.steel-door-details .hover-effect img {
	display: block;
	width: 100%;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
	height: 380px;
}

.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: blocx;
	position: relative;

}

.section-spacing {
	padding: 100px 0;

}

.sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width: 100%;

}

.tagline {
	position: absolute;
	left: 50px;
	bottom: 50px;
	z-index: 10;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	padding-left: 20px;
	border-left: 1px solid var(--white);
}



/*********************************************/


header {
	width: 100%;
	z-index: 999;
	position: absolute;
	top: 0;
	left: 0px;
	padding: 20px;
	display: flex;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

header.smaller {
	padding: 10px 20px;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.7);
}

.logo {
	position: absolute;
	left: 55%;
	top: 30px;
	margin-left: -80px;
	z-index: 120;
	width: 160px;
	display: flex;
	justify-content: center;

}

header.smaller .logo {
	top: 30px;
}

.logo img {
	width: 160px;
	display: inline-block;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

header.smaller .logo img {
	width: 120px;
}

/***********social ***********/


.link {}

.link a {
	border-radius: 50px;
	color: var(--white);
	font-size: 18px;
	line-height: 60px;
	height: 60px;
	font-family: var(--font-weight-medium);
	padding: 0 30px 0 70px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin: 0;
	border: 1px solid var(--white);


}

.link a:before {
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 10px;
	content: '';
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;


}

.link a:hover:before {
	left: 15px;

}

.link a:hover {
	padding: 0 40px 0 80px;
	border: 1px solid var(--secondary-color);
	background-color: var(--secondary-color);

}

.caps {
	text-transform: uppercase;
}

.heading,
.subheading {
	line-height: normal;
	letter-spacing: -.01em;
	font-family: var(--heading-font);
}

.heading {
	font-size: 100px;
	line-height: 120px;

}

.heading span,
.subheading span {
	color: var(--secondary-color);
}

.bold,
strong {
	font-weight: var(--font-weight-bold);
}

.subheading {
	font-size: 30px;
	line-height: 40px;
}

.subtitle {
	font-size: 44px;
	font-weight: normal;
	line-height: normal;
	font-family: var(font-weight-normal);
}

.title-small {
	font-size: 16px;
	font-weight: normal;
	line-height: normal;
	color: var(--quaternary-color);
}

.page-title {
	font-size: 16px;
	line-height: 18px;
	font-family: var(--font-weight-medium);
	margin: 0 0 40px 0 !important;
	padding: 0 0 0 110px;
	position: relative;
}

.page-title:before {
	width: 80px;
	height: 1px;
	background-color: var(--tertiary-color);
	position: absolute;
	left: 0;
	top: 10px;
	content: '';
}

/****************************/

.pos-relative {
	position: relative;
}

.invisible {}

.leve2 {
	position: relative;
	z-index: 2;
}

/*********YOUTUBE *************/
.video-box {
	padding: 40px;

}

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
}

.embed-responsive::before {
	display: block;
	content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-21by9::before {
	padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}

.embed-responsive-4by3::before {
	padding-top: 75%;
}

.embed-responsive-1by1::before {
	padding-top: 100%;
}

/*******categories grid***********/


.brands-listing {}


.brands-listing ul li img {
	width: 100% !important;
	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%);
}

.brands-listing ul li {
	flex: 0 0 16.66666666666667% !important;
	height: auto !important;
	padding: 30px !important;
}

/****************SCROLLING TEXT***************/

.scrolling-text-wrap {
	width: 100%;
	padding: 10px 0;
	overflow-x: hidden;
	overflow-Y: hidden;
	overflow: hidden;
	background-color: var(--white);
	/*border-top:1px solid rgba(255 ,255 ,255 ,0.2);*/

}

.scroll {
	white-space: nowrap;
	margin: 0;
}

.scroll div {
	display: flex;
	gap: 2em;


}

.scroll h2 {
	font-size: 74px;
	line-height: 65px;
	letter-spacing: -.05em;
	color: var(--primary-color);
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	font-weight: 700;
}

.scroll h2 span {
	font-family: var(--font-weight-light);
	display: inline-block;
	margin: 0 20px;
	position: relative;
	top: 14px;
}

.RightToLeft {
	animation: RightToLeft 70s infinite linear;


}

@keyframes RightToLeft {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-510%);
	}
}

.LeftToRight {
	animation: LeftToRight 70s infinite linear;
}

@keyframes LeftToRight {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-890%);
	}
}

/******************colur grid***************************/

.features {
	width: 100%;
	display: flex;
	flex-wrap: wrap;

}

.features ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px 3.5%;

}

.features ul li {
	flex: 0 0 48%;
	background-color: var(--secondary-color);
	padding: 40px;
}

.features ul li:nth-child(even) {
	background-color: var(--tertiary-color);
}


.features ul li h2 {
	font-size: 24px;
	line-height: normal;
	font-weight: normal;
	margin: 0 0 10px 0;

}

.features ul li p {
	font-size: 16px;
	line-height: normal;
	font-weight: normal;
	margin: 0;

}

/*******funfacts***********/



.funfacts,
.funfacts ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	position: relative;
}

.funfacts:before {
	width: 1px;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	content: '';
	background-color: var(--white);
}

.funfacts:after {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	content: '';
	background-color: var(--white);
}

.funfacts ul {
	list-style: none;
	margin: 0;
	font-size: 16px;

}

.funfacts ul li {
	flex: 0 0 50%;
	margin: 0;
	padding: 30px;
	text-align: center;
}



.funfacts ul li h2 {
	font-size: 100px;
	line-height: 100px;
	margin: 0;
	font-family: var(--heading-font);


}

.funfacts p {
	margin: 0;

}

/*****************index -carousel item**********/


/*****************grid colums**********/
.text-thumb {
	display: inline-block;
	margin: 0 25px;
	width: 130px;
	vertical-align: middle;
	border-radius: 10px;
}

.company-logos {
	display: flex;
	gap: 0 10px;
}

.company-logos img {
	width: 200px;
}

/*****************grid colums**********/


.display-style {
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
	display: block;
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 5px;
	overflow: hidden;
	/* padding-top: 15px; */
}

.display-style:after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	content: '';
	background-color: var(--tertiary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.display-style:hover:after {
	width: 0;
	right: 0;
	left: auto;
}

.display-des {
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
	display: block;
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 15px 15px 25px 15px;


}

.display-des a {
	color: var(--body-color);

}

.display-des a:hover {
	color: var(--body-color);

}

.display-des h2 {
	margin: 0;
	padding: 0 0 15px 0;
	font-size: 18px;
	line-height: normal;
	text-align: center;
	font-family: var(--font-weight-medium);
}

.display-des .footer {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 10px;
}


.more-button {}

.more-button a {
	border-radius: 50px;
	color: var(--white);
	font-size: 14px;
	line-height: normal;
	font-family: var(--font-weight-medium);
	padding: 5px 15px;
	margin: 0;
	border: 1px solid var(--white);
}

.more-button a:hover,
.phone a:hover,
.whatsapp a:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

.phone,
.whatsapp {}

.phone a,
.whatsapp a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	display: inline-block;
	border: 1px solid var(--white);
	text-align: center;
	border-radius: 50%;
}

/*--------------------------------scroll-------------*/

.sideScroll-wrap {
	background-color: var(--primary-color);
	width: 100%;
	display: flex;
	overflow: hidden;
}

.sideScroll {
	white-space: nowrap;
	position: relative;
	color: white;
	display: inline-block;
	animation: sideScroll 20s linear infinite;
	padding: 15px 0;

}

.sideScroll p {
	font-size: 22px;
	line-height: 22px;
	color: var(--white);
	font-weight: 500;
	display: flex;
	align-items: center;
	margin: 0;
}

.sideScroll p .sep {
	font-size: 22px;
	line-height: 22px;
	display: inline-block;
	width: 40px;
	text-align: center;
}

@keyframes sideScroll {
	100% {
		transform: translateX(-2000px);
	}
}

.sep {
	font-size: 70px;
	line-height: 59px;
	font-weight: 300;
	color: var(--white);
	width: 30px;
	/* height: 5px; */
	overflow: hidden;
	margin-top: -5px;
}

.sidescroll-row {
	overflow: hidden;
	background-color: var(--dark-grey);
	padding: 1px 0;
}

.video-button-wrap {
	position: relative;
	padding: 0;
	display: flex;
	background-color: #003399;


}

/**********/


.rotating-circle {
	width: 120px;
	height: 120px;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	border-radius: 50%;

}

.rotating-circle:after {
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 50%;
	left: 0;
	top: 0;
	content: '';
	background-image: url(../images/icons/video-button.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/icons/play-bt.svg);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size: 50%;
}

@-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);
	}
}



/*********************testimonials**********************/


.quote-style {
	width: 100%;
	position: relative;
	padding: 0 0 0 100px;
}

.quote-style-inner {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 0 0 200px 0;
	padding: 50px;
}

.feedback-style {
	width: 100%;
	font-size: 30px;
	padding: 50px;
	line-height: 40px;
}

.customer-details {
	padding: 20px 0;
	font-size: 20px;
	line-height: 20px;
	margin-top: 50px;
	color: var(--quaternary-color);
	border-top: 1px solid var(--quaternary-color);
}

.customer-details span {
	font-size: 14px;
	line-height: 20px;
	color: var(--white);

}

.quote {
	margin-right: 25px;
	color: var(--quaternary-color);
	font-size: 30px;
}

.customer-photo {
	border-radius: 0 0 50px 0;
	position: absolute;
	left: 0;
	top: 100px;
	width: 150px;
	overflow: hidden;
	z-index: 2;

}

.customer-photo img {
	width: 100%;

}

/**********************news**********************/

.iconic {
	width: 100%;
	display: block;
	position: relative;
	padding: 0 0 0 120px;

}

.iconic:last-child {
	border-bottom: 0;
}

.iconic h2 {
	font-size: 24px;
	margin: 0 0 15px 0;
	line-height: 30px;
	font-weight: var(--font-weight-bold);


}

.webicon {
	position: absolute;
	left: 0;
	top: -5px;
	width: 100px;
	height: 100px;
	padding: 10px;
	border-radius: 50%;
	background-color: var(--white);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.webicon img {
	display: block;
	width: 100%;
}

.webicon:hover {
	background-color: var(--tertiary-color);
}

/*********services style****/

.product-bg {
	background: #6E7384;
	padding: 20px;
}

.product-name {
	font-size: 24px;
	line-height: normal;
	text-align: center;
	margin-bottom: 10px;
	font-family: var(--font-weight-normal);
	padding: 20px 0;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.product-name span {
	color: var(--tertiary-color);
	display: inline-block;
	margin-right: 20px;
}

a:hover .product-name {
	padding: 20px 20px;
}

/**********************news**********************/
.bx-shadow {
	background-color: var(--white);
	overflow: hidden;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.news-single {
	overflow: hidden;
	border-bottom: 1px solid var(--quaternary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.news-single:hover {
	background-color: var(--primary);
	overflow: hidden;
	border-bottom: 1px solid var(--secondary-color);

}

.news-desc {
	padding: 40px 0;
	position: relative;
	z-index: 1;
	width: 100%;
	color: var(--white);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a .news-desc {
	color: var(--white);
}

a:hover .news-desc {
	color: var(--quaternary-color);
}

.date {
	font-size: 14px;
	margin: 0 0 10px 0;

}

.date i {
	margin: 0 10px 0 0;
	color: var(--quaternary-color);
}

.news-desc h2 {
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 20px;



}

.news-desc p:last-child {
	margin-bottom: 0;
}


.aside {
	width: 30%;
	padding-right: 100px;
}

.summary {
	width: 70%;

}


.location-details {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 40px 0;
	border-bottom: 1px solid var(--secondary-color);
}

.showroom-photo {
	width: 40%;
}

.showroom-address {
	width: 60%;
	padding-left: 40px;
	font-size: 16px;

}

.showroom-address h2 {
	font-size: 20px;
	font-family: var(--font-weight-medium);
	color: var(--quaternary-color);

}


.side-pad {
	padding: 0 250px;
}

.side-pad div:nth-child(even) {
	margin-top: 80px;
}


/*****innerpage products************/
.inner-product {
	border: 1px solid #e5e5e5;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.inner-product:hover {
	border: 1px solid var(--primary-color);
}


/*********************mega menu styles**********************/

.mega-menu-holder {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	color: var(--black);
	background-color: var(--white);
	/*box-shadow: 0 15px 80px 0 rgba(0,0,0,0.17);*/
}

.mega-menu-col {
	flex: 0 0 25%;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
	align-content: center;
	text-align: center;
	padding: 30px 20px;
	font-size: 16px;
	line-height: 22px;
	color: var(--grey-dark);
	border-right: 1px solid var(--grey);

}

.mega-menu-col:last-child {
	border-right: 0;
}

.mega-menu-col h2 {
	font-size: 20px;
	color: var(--secondary-color);
	font-weight: normal;
	line-height: normal;
	margin: 0 0 20px 0;
	font-family: var(font-weight-normal);
}

.mega-menu-col p:last-child {
	margin: 0;
}

.mega-menu-col-img {
	width: 100%;
	display: flex;
	margin-bottom: 25px;
}

.mega-menu-col-img img {
	width: 100%;
	display: block;

}

.mega-menu-col .link a {
	font-size: 14px;
	line-height: 30px;
	height: 30px;
	padding: 0 20px;
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);


}

.mega-menu-col .link a:before {
	display: none;

}


.mega-menu-col .link a:hover {
	padding: 0 25px;


}

/*************** footer CSS ***************/
.footer-logo {
	width: 120px;
	filter: brightness(10000%);
}

footer {
	padding: 100px 0 0 0;
	background-color: var(--primary-color);
	color: var(--white);
	font-size: 16px;
}

footer a,
.footer-col a {
	color: var(--white);
}

.footer a:hover,
.footer-col a:hover {
	color: var(--secondary-color);
}

.footer-col-first {
	flex: 0 0 50%;
	padding-right: 100px;


}

.footer-col {
	flex: 0 0 25%;


}

footer h4 {
	font-size: 20px;
	line-height: normal;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
	position: relative;


}


.footer-col ul,
.footer-col ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-col ul li {
	padding: 5px 0;
	line-height: normal;
}

.footer-bottom {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	margin-top: 50px;
	color: var(--white);
	border-top: 1px solid rgba(255, 255, 255, 0.2);

}

.footer-bottom a {
	color: var(--white);
}

.footer-bottom a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.copy {}

.footer-logo {}

.footer-logo img {
	width: 170px;
	display: inline-block;
	margin-bottom: 20px;
}



.social {
	display: flex;
	vertical-align: middle;

}

.social a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 16px;
	margin: 5px;
	display: inline-block;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.5);


}

.social a:hover {
	color: var(--secondary-color);

}

.address-box {
	background-color: var(--tertiary-color);
	padding: 40px;
}

.address-box h2 {
	font-size: 24px;
	font-family: var(--font-weight-medium);

}

.add {
	width: 100%;
	position: relative;
	padding: 0 0 0 70px;
	min-height: 70px;
	margin-bottom: 20px;

}

.add i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: var(--white);
	font-size: 14px;
	margin: 0;
	position: absolute;
	left: 0;
	text-align: center;

}

.google-map {
	overflow: hidden;
	width: 100%;
	height: 450px;
	margin: 0;
	padding: 0;
	outline: none;
	border: 0;
}

/******************************/





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;
}



ul.iconiclist {
	padding: 0;


}

ul.iconiclist li {
	list-style: none;
	margin: 0;
	padding: 10px 0;
	line-height: normal;
	position: relative;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	font-family: var(--font-weight-medium);
	color: var(--quaternary-color);
}

ul.iconiclist li img {
	vertical-align: middle;
	display: inline-block;
	margin: 0 15px 0 0;
	width: 40px;

}


/*****************************/



.table-div {
	overflow-x: auto;
	margin-bottom: 50px;
}

.table-div td {
	text-transform: uppercase;
}

.table-div h4 {
	font-size: 20px;
	color: var(--secondary-color);
	font-family: var(--heading-font);
	text-transform: uppercase;
}

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;
}

/************************/
.table-wrap {
	width: 100%;
	position: relative;
	display: flex;
	overflow-x: scroll;
}

/******************************team-style*****************/




/*************** INNER BANNER ***************/
.banner {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-repeat: no-repeat;
	background-position: top;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);

}


.banner h2 {
	color: var(--white);
	font-weight: normal;
	line-height: normal;
	margin-bottom: 50px;
	padding: 0;
	font-size: 100px;
	line-height: normal;
	position: relative;
	z-index: 4;
	letter-spacing: -.01em;
	font-family: var(--heading-font);
}

/************/
.breadcrumb {
	width: 100%;
	display: flex;
	color: var(--white);
	margin: 0 0 150px 0;
	position: relative;
	font-size: 16px;
	line-height: 18px;
	font-family: var(--font-weight-medium);
	padding: 0 0 0 110px;

}


.breadcrumb:before {
	width: 80px;
	height: 1px;
	background-color: var(--tertiary-color);
	position: absolute;
	left: 0;
	top: 10px;
	content: '';
}

.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.breadcrumb ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumb li:not(:last-child)::after {
	display: inline-block;
	margin: 0 15px;
	content: " → ";

}

.breadcrumb a {
	color: var(--white);
}

.breadcrumb a:hover {
	color: rgba(255, 255, 255, 0.7);

}

.breadcrumb span {
	color: var(--white);
}


/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/


/*************** JARALLAX ***************/
.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);
}

.bg2 {
	background-image: url(../images/backgrounds/bg2.jpg);
}

.bg3 {
	background-image: url(../images/backgrounds/bg3.jpg);

}


.white-strip {
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-color: var(--white);
}

/*********file chosen style**************/

input.file {
	display: none;
}


.fa-upload {
	margin: 0 15px 0 0;
}

.custom-file-upload {
	border: 0;
	display: inline-block;
	padding: 14px 20px;
	color: #fff;
	cursor: pointer;
	background-color: var(--primary-color);
	/*border-radius: 6px;*/
	border: 0;

}

.custom-file-upload:hover {
	background-color: var(--secondary-color);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding: 20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 0;
	box-shadow: 0 1px 0 0 #FFF;
	margin: 0;
	color: var(--body-color);
	font-size: 16px;

}

.sendbutton {
	width: auto;
	height: auto;
	margin: 0;
	display: inline-block;
	color: var(--white);
	font-size: 18px;
	cursor: pointer;
	vertical-align: top;
	border-radius: 50px;
	border: 1px solid var(--white);
	padding: 20px 30px 20px 80px;
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: 30px center;
	background-color: var(--primary-color);
	background-size: 20px;
	font-weight: normal;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

.sendbutton:hover {
	background-color: var(--tertiary-color);
	border: 1px solid var(--tertiary-color);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}


::-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;
	/* 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(--secondary-color);
	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(--secondary-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.banner.steel-door {
	background-image: url(../images/backgrounds/banner-hawayyi.webp);

}

.banner.steel-window {
	background-image: url(../images/backgrounds/banner-window.webp);

}

.banner.frp-doors {
	background-image: url(../images/backgrounds/frp-banner.webp);

}

.banner.Luxury-doors {
	background-image: url(../images/backgrounds/luxury_banner.webp);

}

.banner.stark-doors {
	background-image: url(../images/backgrounds/stark-banner.webp);

}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1366px) {

	.container {
		width: 100%;
		padding: 0 20px;
	}


}

/************************************* 1024px *************************************/
@media only screen and (max-width:1199.98px) {

	header,
	header.smaller {
		background-color: var(--primary-color);
		padding: 20px 20px;
		position: relative;
	}

	.logo,
	header.smaller .logo {
		position: absolute;
		left: 20px;
		top: 10px;
		margin-left: 0;
		width: 120px;
		display: flex;
		justify-content: center;

	}

	.logo img,
	header.smaller .logo img {
		width: 120px;

	}

	.tagline {
		display: none;
	}


	.aside,
	.summary {
		width: 100%;
		padding: 20px 0;

	}


	.location-details {
		padding: 20px 0;
		border-bottom: 1px solid var(--secondary-color);
	}


	.mega-menu-holder {
		width: 100%;

	}

	.mega-menu-holder.two {
		display: unset !important;
	}

	.mega-menu-col {
		flex: 0 0 50%;
		padding: 20px;
		border: 0 !important;
		outline: 1px solid var(--grey);
	}

	.mega-menu-col:last-child {
		border: 0 !important;
	}

	.mega-menu-col h2 {
		font-size: 20px;
	}

	.mega-menu-col p:last-child {
		margin: 0;
	}

	.mega-menu-col-img {
		margin-bottom: 20px;
	}

	.product-bg {
		/*background:#6E7384;
	padding:20px;*/
	}

	.product-name {
		font-size: 20px;
		padding: 20px 0;
	}


	a:hover .product-name {
		padding: 20px 0;
	}

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

	.features {
		width: 100%;
		display: flex;
		flex-wrap: wrap;

	}

	.features ul {

		gap: 20px 0;

	}

	.features ul li {
		flex: 0 0 100%;
		padding: 20px;
	}

	/***/

	.quote-style {
		padding: 0;
	}

	.quote-style-inner {
		border-radius: 0 0 20px 0;
		padding: 150px 20px 20px 20px;
	}

	.feedback-style {
		font-size: 18px;
		padding: 0;
		line-height: 28px;
		padding-top: 60px;
	}

	.customer-photo {
		border-radius: 0 0 50px 0;
		left: 20px;
		top: 20px;
		width: 100px;
	}

	.customer-photo img {
		width: 100%;

	}

	.bg-bx-stlye {
		padding: 40px;
		outline-offset: -10px;
	}


	.embed-responsive {
		border-radius: 0;

	}

	.video-box {
		padding: 0;

	}

	.showroom-photo {
		width: 100%;
		margin-bottom: 25px;
	}

	.showroom-address {
		width: 100%;
		padding: 0;

	}


}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

	body {
		font-size: 16px;
	}

	.heading {
		font-size: 30px;
		line-height: 40px;

	}

	.subtitle {
		font-size: 30px;
		line-height: 40px;
	}

	.news-desc {
		padding: 20px 0;
	}



	hr {
		margin: 20px 0;

	}

	.link a {
		line-height: 40px;
		height: 40px;
		padding: 0 20px 0 50px;
		font-size: 14px;
	}

	.link a:before {
		width: 30px;
		left: 10px;
	}

	.info-col ul li {
		width: 100%;
		margin: 10px 0 !important;
		padding: 20px;
		border-right: 0;
		border: 1px solid rgba(255, 255, 255, 0.2);

	}

	.info-col h2 {
		font-size: 24px;
		line-height: 24px;
		margin: 0 0 15px 0;
	}

	.section-spacing {
		padding: 50px 0;

	}

	.banner {
		height: 30vh;


	}

	.banner h2 {
		font-size: 30px;
		line-height: 40px;

	}

	/*******funfacts***********/




	.funfacts:before,
	.funfacts:after {
		display: none;
	}

	.funfacts {
		margin-top: 130px;
	}

	.funfacts ul li {
		flex: 0 0 50%;
		margin: -1px 0 0 -1px;
		padding: 20px;
		text-align: left;
		border: 1px solid var(--white);
	}



	.funfacts ul li h2 {
		font-size: 40px;
		line-height: 40px;
	}



	.scrolling-text-wrap {
		padding: 20px 0;
	}

	.scroll h2 {
		font-size: 30px;
		line-height: 30px;
	}

	.RightToLeft {
		animation: RightToLeft 5s infinite linear;
	}

	footer {
		padding: 50px 0 0 0;

	}

	.footer-col-first {
		flex: 0 0 100%;
		padding: 0 0 50px 0;


	}

	.footer-col {
		flex: 0 0 50%;
		margin-bottom: 25px;

	}

	.footer-col h2 {
		font-size: 18px;
		line-height: 18px;
		padding: 0 0 10px 0;
		margin: 0 0 10px 0;
	}

	.footer-bottom {
		padding: 20px 0;
		margin-top: 20px;
	}

	.copy,
	.social {
		width: 100%;
	}

	.social a {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 12px;

	}

	.add {
		width: 100%;
		padding: 0 0 0 50px;
		min-height: 40px;

	}

	.add i {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}

	.text-thumb {

		margin: 0 15px;
		width: 50px;
		border-radius: 8px;
	}

	.company-logos {
		display: flex;
		gap: 0 10px;
	}

	.company-logos img {
		width: 200px;
	}


	.heading {
		font-size: 30px;
		line-height: 34px;

	}

	.subheading {
		font-size: 20px;
		line-height: 28px;
	}

	.company-logos {
		padding: 20px 0;

	}

	.company-logos img {
		width: 100px;
	}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

	.breadcrumb,
	.page-title {
		margin: 0 0 50px 0;
		padding: 0 0 0 50px;

	}

	.breadcrumb:before,
	.page-title:before {
		width: 30px;
	}

	ul.iconiclist li {

		padding: 5px 0;
		font-size: 16px;
		line-height: 18px;

	}

	ul.iconiclist li img {
		width: 30px;

	}

	.bg-bx-stlye {
		padding: 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) {}

/* warranty */
.warranty-data .tabs {
	margin: 50px auto;
	overflow: hidden;
}

/* Tabs Header */
.warranty-data .tabs-header {
	display: flex;

}

.warranty-data .tab-link {
	padding: 8px 30px;
	background: #fff;
	margin: 4px;
	border-radius: 4px;
	color: #012d52;
	width: 10%;
	font-weight: 500;
	font-size: 18px;
}

.warranty-data .tab-link.active {
	background: #fff;
	color: #012d52;
}

.warranty-data .tab-link:hover {
	background: #a2ffff;
}

/* Tabs Content */
.warranty-data .tabs-content {
	padding: 20px;
}

.warranty-data .tab-content {
	display: none;
	animation: fadeIn 0.3s;
}

.warranty-data .tab-content.active {
	display: block;
}

.warranty-data .contacts-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.warranty-data .contacts-buttons a {
	text-decoration: none;
	color: #002d51;
	background-color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
}

.warranty-data h2 {
	font-weight: 400;
	color: #fff;
	font-size: 63px;
	max-width: 50%;
	line-height: 70px;
}

.warranty-data p {
	color: #ccc;
	font-size: 15px;
	line-height: 29px;
	max-width: 350px;
}

.warranty-data h4 {
	margin-bottom: 10px;
}

.warranty-data .warrenty-tabs {
	display: flex;
}

.warranty-data .tabs-one {
	width: 48%;
}

.warranty-data .warranty-form {
	background: #ecf3f6;
	padding: 50px;
	border-radius: 8px;
	max-width: 600px;
}

.warranty-data .warranty-form h3 {
	color: #19326a;
	font-size: 23px;
	font-weight: 600;
}

.warranty-data .warranty-form select {
	width: 100%;
	padding: 12px 0;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	margin-bottom: 16px;
	resize: vertical;
	background: 0 0;
	border-bottom: 1px solid #ccc;
	color: #002d51;
	font-size: 15px;
}

.warranty-data .warranty-form select option:hover {
	background-color: #00FFFF;
	/* Background on hover */
	color: white;
	/* Text color on hover */
}

.ve-codes {
	display: flex;
	gap: 20px;
}

.warranty-data .warranty-form .form-control {
	background: 0 0;
	border: none;
	border-bottom: 1px solid #ced4da;
	border-radius: 4px;
	width: 100%;
	margin-bottom: 16px;
	padding: 5px 15px;
	color: #002d51;

}

.warranty-data .warranty-form label {
	margin-bottom: .5rem;
	color: #002d51;
	font-weight: 800;
	font-size: 15px;
}

.warranty-data .warranty-form .form-control::placeholder {
	color: #6c757d;
	font-size: 13px;

}

.warranty-data .warranty-form input.date-time {
	padding: 2px 0;
	border: none;
	background: 0 0;
	border-bottom: 1px solid #cccc;
	width: 50%;
	color: #8c98b4;
}

.warranty-data .warranty-form button {
	padding: 3px 14px;
	background: #002d51;
	margin: 4px;
	border-radius: 4px;
	border: none;
	color: #fff;
	text-align: center;
	margin: auto;
	width: 100%;
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.hover-effect img:hover {
	filter: none;
}

.display-style:hover {
	background-color: #017e94;
}

.banner.about {
	background-image: url(../images/backgrounds/about-banner.jpg);
}

.gallery .hover-effect img {
	display: block;
	width: 100%;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
	height: 425px;
}

/* --------------- */
.video .video-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 20px;
}

.video .video-gallery .video-item {
	position: relative;
	width: 350px;
	/* Adjust size */
	height: auto;
	/* Adjust size */
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.video .video-gallery .video-item img {
	width: 350px;
	height: 221px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.home-news .hover-effect img {
	display: block;
	width: 408px;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
	height: 363px;
}

.news-details .hover-effect img {
	display: block;
	height: 586px;
	width: 659px;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.video .video-gallery .video-item:hover img {
	transform: scale(1.1);
}

.video .video-gallery .video-item .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
	color: white;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.video .video-gallery .video-item:hover .play-icon {
	opacity: 1;
}

/* Popup styling */
.video .popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.video .popup-overlay iframe {
	width: 80%;
	height: 60%;
	border: none;
	border-radius: 10px;
}

.video .popup-overlay .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	color: white;
	cursor: pointer;
}

.video {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.news .hover-effect img {
	display: block;
	width: 423px;
	-webkit-filter: none;
	filter: none;
	-webkit-transition: all .5s;
	transition: all .5s;
	height: 375px;
}

@media only screen and (max-width: 740px) {
	.warranty-data .tab-link {
		width: 100%;
	}

	.warranty-data .warrenty-tabs {
		display: flex;
		flex-direction: column;
	}

	.warranty-data .tabs-one {
		width: 100%;
		margin-top: 20px;
	}

	.warranty-data .tabs-content {
		padding: 0px;
	}

	.warranty-data .contacts-buttons a {
		padding: 5px 5px;
	}

	.warranty-data .contacts-buttons {
		gap: 5px;
		justify-content: space-evenly;
	}

	.warranty-data .warranty-form {
		padding: 20px;
	}

	.video .video-gallery {
		padding: 0px;
	}

	.bg2 {
		background-image: url(../images/backgrounds/media-background.png) !important;
	}
}



/* new */
/* Floating button styling */
.fixed-contacts {
	position: fixed;
	top: 170px;
	right: 10px;
	background-color: #ffffff;
	border-radius: 5%;
	padding: 25px;
	text-align: center;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 100;
	font-size: 18px;
	cursor: pointer;
	color: #012d52;
}

.fixed-contacts h3 {
	margin-bottom: 0px;
	font-size: 24px;
	font-weight: 600;
}

.fixed-contacts input {
	border: none;
	border-bottom: 1px solid #012d52;
	padding: 15px 0;
}

.fixed-contacts input::placeholder {
	color: #012d52;
	font-size: 16px;
}

.fixed-contacts form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Hide the form by default */
.form-container {
	display: none;
	width: 300px;
	height: auto;
}

/* Flexbox for enquiry header */
.fixed-contacts .enquiry {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

/* Close icon styling */
.fixed-contacts .fa-xmark {
	cursor: pointer;
	font-size: 20px;
	color: red;
}

.fixed-contacts .sendbutton {
	width: auto;
	height: auto;
	margin: 0;
	display: inline-block;
	color: var(--white);
	font-size: 16px;
	cursor: pointer;
	vertical-align: top;
	border-radius: 50px;
	border: 1px solid var(--white);
	padding: 15px 25px 15px 50px;
	background-image: url(../images/icons/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: 18px center;
	background-color: var(--primary-color);
	background-size: 16px;
	font-weight: normal;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

.fixed-contacts .texts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 10px 15px;
	border-radius: 30px;
	border: 2px solid #00FFFF;
}

.fixed-contacts.starts {
	padding: 0;
	border-radius: 30px;
}

.fixed-contacts h2 {
	margin-bottom: 0px;
	font-size: 20px;
}

.fixed-contacts .s-btn {
	display: flex;
	margin-top: 15px;
}


@media only screen and (max-width: 740px) {

    .fixed-contacts .texts {
        gap: 7px;
        padding: 5px 10px;
    }
	.fixed-contacts h2 {
		font-size: 16px;
	}

	.fixed-contacts i {
		font-size: 13px;
	}

	.fixed-contacts {
		top: 175px;
	}

	.form-container {
		width: 230px;
	}

	.fixed-contacts h3 {
		font-size: 16px;
	}

	.fixed-contacts input {
		padding: 8px 0;
	}

	.fixed-contacts form {
		gap: 5px;
	}

	.fixed-contacts input::placeholder {
		color: #012d52;
		font-size: 14px;
	}

	.fixed-contacts .sendbutton {
		font-size: 13px;
		padding: 10px 20px 10px 35px;
		background-position: 13px center;
		background-size: 13px;
	}
}