* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;

}

/* ------------------------------------------------- */
/* header style start */
/* ------------------------------------------------- */

.logo {
	height: 40px;
	width: auto;
	float: left;
	margin-right: 10px;
	margin-top: 0px;
}


.navbar::before {
	content: "";
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	opacity: .70;
	z-index: -1;
	background: rgb(43, 42, 42);
	/* background: linear-gradient(to right, black 0%, black 0%, black 100%); */

}

.nav-item a {
	color: white !important;
	/* font-weight: bold; */

}



.navbar ul li{
	position: relative;
}
.navbar ul li a{
	text-decoration: none;
	color: #fff;
	}
.navbar ul li::after{
	content: '';
	height: 3px;
	width:0;
	background: #009688;
	position: absolute;
	left: 0;
	transition: 0.5s;
	
}
.navbar ul li:hover::after{
	width: 100%;
}




.dropdown-menu li a {
	color: black !important;
	background-color: none;

}

.header-section {
	width: 100%;
	height: inherit;
	color: #fff;
	text-align: center;
	position: relative;

}

.center-div {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.carousel-caption a {

	border: 1px solid white;
	border-radius: 100px;
	margin: 0 5px;
	padding: 12px 35px;
	outline: none;
	color: white;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;

}

.carousel-caption a:hover {
	color: #50d1c0;
	background: #fff;
	text-decoration: none;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);


}


.btn-about {

	border: 2px solid black !important;
	border-radius: 100px !important;
	margin: 0 5px;
	padding: 12px 35px !important;
	outline: none;
	color: black;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.bluetext {
	/* color: rgb(46, 63, 146); */
	color: rgb(29, 76, 163);
	font-weight: bolder;

}
.nobullet{
	list-style-type: none
}

/* ------ caroger effect  */

.carousel-inner .c-item {
	/* height: 580px; */
	height: 100vh;
	animation: animate 20s;

}

.carousel-inner .c-img {
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);



}

/* === caregoer effect end */
/* ------------------------------------------------- */
/* header style end */
/* ------------------------------------------------- */

.section {
	padding: 5rem 0;

}

.grid {
	display: grid;
	gap: 5rem;

}

.grid-two-column {
	grid-template-columns: repeat(2, 1fr);
}

.dsaword {
	font-style: italic;
	font-weight: bold;
}

/* ------------------------------------------------- */
/* about style start */
/* ------------------------------------------------- */

.about-us {
	/* background-color: rgb(237, 233, 233); */
	display: flex;
	flex-direction: column;
	justify-content: center;

	align-items: center;
	
}
.aboutheadingword {
	align-items: center;
	text-align: center;
}

.moveup {
	animation: slide-up 1s;
}

@keyframes slide-up {
	from{
		opacity: 0;
	transform: translatex(-100px);
	}
	to{
		opacity: 1;
		transform: translateY(0px);
	}
}
.btn-about:hover {
	/* background: rgb(51, 44, 44);
	color: rgb(255, 149, 0); */
	background: rgb(255, 149, 0);
	color: rgb(255, 254, 253);
	

}

.headingword ::after {
	content: '';
	background: #efefef;
	display: block;
	
	height: 3px;
	width: 170px;
	margin: 10px 2px 5px;
	text-indent: -9999px;
	border-top: 1px solid #585858;
	
	
	

	

	
}



.colyellow {
	color: rgb(255, 149, 0);
}

.headingword {
	font-weight: bolder !important;
}

.container {

	width: 80vw;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-template-rows: repeat(1, minmax(250px, 1fr));

}

.containerimg {

	width: 100vw;
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	grid-template-rows: repeat(1, minmax(350px, 1fr));

}

.about-us-img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.aboutimg {
	/* width: 250px;
	height: autopx; */
	border: 2px solid #fff;
	/* background: url(img/tiger.png) no-repeat; */
	-moz-box-shadow: 10px 10px 5px #ccc;
	-webkit-box-shadow: 10px 10px 5px #ccc;
	box-shadow: 10px 10px 5px #ccc;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;

}

.aboutusinfo {
	text-align: justify;
	margin: 3%;
	line-height: 32px;
}

.about-us-info a{
	margin: 3%;
}

.about-us-info{
	margin-left: 20px;
	margin-right: 30px;
	text-align: justify;
}
.aboutusinfomain {
	font-size: large;
	text-align: justify;
	
	

}


/* [1] The container */
.img-hover-zoom {
	height: 300px; /* [1.1] Set it as per your need */
	overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  }
  
  /* [2] Transition property for smooth transformation of images */
  .img-hover-zoom img {
	transition: transform .5s ease;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .img-hover-zoom:hover img {
	transform: scale(1.5);
  }

/* ------------------------------------------------- */
/* about style end */
/* ------------------------------------------------- */




/*-------------------ServiCE--------------- */
#services {
	background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/bkgrd1.jpg);

	background-size: cover;
	background-position: center;
	color: #efefef !important;
	background-attachment: fixed;
	padding-top: 50px;
	padding-bottom: 50px;


}


#services h1 {
	text-align: center;
	color: #efefef !important;
	padding-bottom: 10px;
	padding: 10px;

}

#services h1::after {
	content: '';
	background: #efefef;
	display: block;
	height: 3px;
	width: 170px;
	margin: 20px auto 5px;
}

.services {
	text-align: center;
	margin-top: 10px;
}

.contain {
	align-items: center;
	padding: 20px;
}

.icon {

	font-size: 40px;
	margin: 20px auto;
	padding: 10px;
	height: 80px;
	width: 80px;
	border: 1px solid #fff;
	border-radius: 50%;

}

#services p {
	font-size: 14px;
	margin-top: 20px;
	color: #ccc;
}

.services .col-md-3:hover {
	/* background: #007bff; */
	background: rgb(233, 143, 17);
	cursor: pointer;
	transition: 0.7s;
}

.about-us-info .eventlink:hover{

	cursor: pointer;
}


.list-unstyled i {
	display: inline-block;
	width: 30px;
	margin-bottom: 10px;


}

.list-unstyled li:hover {
	color: blue;


}

.list-unstyled {
	text-align: center;

}

/* section DSA POLICY started */
#dsaword {
	background-image: linear-gradient(rgba(236, 228, 228, 0.9), rgba(255, 252, 252, 0.9)), url(../images/Image_Quality.jpg);

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #0d0c0c !important;
	background-attachment: fixed;
	padding-top: 90px;
	padding-bottom: 90px;
	height: auto;

}
.carousel-caption h1{
margin-top: -100px;
	/* font-size: 80px; */
	font-size: 3.2vw;
	/* background-color: royalblue; */
	/* background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/contactbkgr.jpg); */
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/controlpanelheade1r.jpg');
}

#dsaword h1 {
	text-align: center;
	color: #221c1c !important;
	padding-bottom: 10px;
	padding: 10px;

}

#dsaword h1::after {
	content: '';
	background: #3b3a3a;
	display: block;
	height: 3px;
	width: 170px;
	margin: 20px auto 5px;
}
.indeximg {
	/* background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/contactbkgr.jpg); */
	/* background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/swanhomelift1.jpg); */
	/* background-image: url(../images/swanhomelift1.jpg) */
	background-image: url(../images/swanhomelift1.jpg);

	background-size: cover !important;
	width: 100%;
	height: 100%;
	/* height: auto;
	color: #fff; */
	padding: 0px;
	padding-left: 0px;
	margin-left: 0px;
	

}
.indeximg img{
	padding: 0px;
	padding-left: 0px;
	margin-left: 0px;
}
.index-imgdiv{
	margin-left: 0px;
	padding-left: 0px;
	background-color: grey;
	align-items: flex-start;
}

.backcover{
		background-color: grey;
		/* width: 300px;
		height: 300px; */
		/* display: flexbox; */
}
.sethight{
	height: 500px;
	width: auto;
}


/* 
	/* section DSA POLICY end */

/* -------------------------------------section contact start */
.mainclasscontact {
	background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/contactbkgr.jpg);
	background-size: cover !important;
	width: 100%;
	height: auto;
	color: #fff;
	position: relative;

}

.contact-container h1 {

	padding-top: 30px;

}

.contactflex {
	display: flex;


}

.contactflex .box {

	flex-basis: 50%;
	padding: 10px 20px;
}

.box .aboutcontent {
	margin: 20px 0 0 0;
	position: relative;
	line-height: 23px;
}

.contact-container h1 {
	/* margin-top: 30px !important; */
	margin-bottom: 0px !important;
	color: white;
	text-align: center;
	font-size: 3em;
	font-family: Arial, Helvetica, sans-serif !important;
	font-weight: bolder;
}

.contact-container .teamslogan {
	margin-top: 0px;
	margin-bottom: 40px;
	font-size: 1em;
	color: #fff;
	text-align: center;
}

.addressdtls {
	color: #fff;
}


.aboutcontent .social {
	margin: 20px 0 0 0;
}

.aboutcontentt .social a {
	padding: 0 2px;
}

.aboutcontent .social a span {
	height: 40px;
	width: 40px;
	background: #1a1a1a;
	color: #fff;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	border-radius: 5px;
	transition: 0.3s;
}

.aboutcontent .social a span:hover {
	background: rgb(227, 168, 18);
}

.aboutcontent::before {
	position: absolute;
	content: '';
	background: white;
	display: block;
	top: -10px;
	height: 2px;
	width: 100%;

}

.aboutcontent:after {
	position: absolute;
	content: '';
	display: block;
	height: 2px;
	width: 15%;
	background: rgb(255, 149, 0);
	top: -10px;
}

.right form .text {
	font-size: 1.0625rem;
	margin-bottom: 2px;
	color: #fff;
}

.right form .msg {
	margin-top: 10px;
}

.right form input,
.right form textarea {
	width: 100%;
	font-size: 1.0625rem;
	background: #151515;
	padding-left: 10px;
	border: 1px solid #222222;
	color: white
}

.right form input:focus,
.right form textarea:focus {
	outline-color: #3498db;
}

.right form input {
	height: 35px;
}

.right form .btn {
	margin-top: 10px;
	height: 40px;
	width: 100%;
	border: none;
	outline: none;
	background: #f12020;
	font-size: 1.0625rem;
	font-weight: 500;
	cursor: pointer;
	transition: .3s;
}

.right form .btn button {
	border: none;
	background: #f12020;
	text-decoration: none;
	color: white;

}



/* -------------------------------------section contact end */



/* page aboutus.html style started */

.aboutusheader {
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/aboutusheader.JPG');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;
}

.aboutusheader::before {
	content: "";
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	opacity: .3;
	z-index: -1;
	background: linear-gradient(to right, black 0%, black 0%, black 100%);
}

.aboutusimgtext {
	color: white;
	text-align: center;
	background: linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.500));

}

/* page aboutus.html style end */


/* Page swan.html style start */

.swanheader {
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/elevatorcoverphoto.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;
}

.aligncenter{

	text-align: center;
	align-items: center;
	text-align: center;
	align-content: center;
}

.aligncenter h2{
	margin: auto;
	font-weight: 70;
	font-size: 2rem;
	text-align: center;
	padding: 20px;
	position: relative;
	display: inline-block;
}
.aligncenter h2:after{
	content: '';
	background: rgb(57, 53, 53);
	
	width: 100%;
	height: 2px;
	display: block;
	margin-top: 15px;

}
.headingword1{
	border-bottom: #3498db;
	border-style: solid;
	
}
.photogallarybkgrd{
	background-image: linear-gradient(rgba(248, 242, 242, 0.9), rgba(130, 126, 126, 0.9)), url(../images/bkgr1d1.jpg);
	margin-bottom: 20px;
}

/* owl start */
.slider {
	margin-bottom: 30px;
	position: relative;
  }
  .slider .owl-item.active.center .slider-card {
	transform: scale(1.15);
	opacity: 1;
	background: #ff9966; /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, #ff5e62, #ff9966); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, #ff5e62, #ff9966); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	color: #fff;
  }
  .slider-card {
	background: #fff;
	padding: 0px 0px;
	margin: 50px 15px 90px 15px;
	border-radius: 5px;
	box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%);
	transform: scale(0.9);
	opacity: 0.5;
	transition: all 0.3s;
  }
  .slider-card img {
	border-radius: 5px 5px 0px 0px;
  }
  .owl-nav .owl-prev {
	position: absolute;
	top: calc(50% - 25px);
	left: 0;
	opacity: 1;
	font-size: 30px !important;
	z-index: 1;
  }
  .owl-nav .owl-next {
	position: absolute;
	top: calc(50% - 25px);
	right: 0;
	opacity: 1;
	font-size: 30px !important;
	z-index: 1;
  }
  .owl-dots {
	text-align: center;
  }
  .owl-dots .owl-dot {
	height: 10px;
	width: 10px;
	border-radius: 10px;
	background: #ccc !important;
	margin-left: 3px;
	margin-right: 3px;
	outline: none;
  }
  .owl-dots .owl-dot.active {
	background: #f44336 !important;
  }
/* owl end */



/* Page swan.html style end */

/* page liftsolutions.html style start */

.liftsolutionlheader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/liftsection.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;
}
/* page liftsolutions.html style end */

/* page cabin.html style start */

.cabinheader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/cabinheader.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;
}
/* page cabin.html style end */


/* page defence.html start */
.defenceheader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/defencehdr.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;
}

.defenceservice{
	background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/defencehd2.jpg);
	margin-left: 0px;
	margin-right: 0px;
	color: #fff;
}

.defenceservice H3{
	text-align: center;
	padding-top: 50px;

}

.defenceservice p{
	color: #fff;
	margin: 50px;
	
}
.defenceservice ul{
	margin: 50px;
	text-align: justify;
	/* padding: 50px !important; */
}


/* page defence.html end */




/* page controlpanel.html style start */
.controlpanelheader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/controlpanelheader.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;
}
.card-title{
	margin-top: 20px;
	align-items: center;
	text-align: center;
	color: rgb(255, 149, 0);
	
}
.bkcol{
	background-color: red;
	color: #0d0c0c;
	
}
.card-body p{
	text-align: justify;
	padding: 10px;
	/* margin-left: 10px; */
}

/* page controlpanel.html style end */

/* page autodoors start */
.autodoorsheader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/doorscoverphoto.JPG');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;

}

.card-img{
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500));
}

/* page autodoors end */


/* page railway start */
.railwayheader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/train.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;

}

.eventheader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/event.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;

	position: relative;

}

.card-img{
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500));
}

/* page railway end */


@media only screen and (max-width:700px) {


	.carousel-inner .c-item {
		/* height: 580px; */
		height: 400px;
		animation: animate 20s;

	}

	.contactflex {
		flex-wrap: wrap;
		flex-direction: column;
	}

	.contactflex .box {
		padding: 10px 20px;
	}

	.dsawordmobile {
		font-size: 12px;
		text-align: left !important;
		justify-items: left !important;
		align-items: normal !important;
	}

	.aboutusheader {
		max-width: 100%;
		max-height: 400px;
		/* height: inherit !important; */
		background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/aboutusheader.JPG');
		background-repeat: no-repeat;
		background-size: 100% 100%;

		position: relative;
	}


	.swanheader {
		max-width: 100%;
		max-height: 400px;
		/* height: inherit !important; */
		background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/elevatorcoverphoto.jpg');
		background-repeat: no-repeat;
		background-size: 100% 100%;

		position: relative;
	}

	
	.autodoorsheader {
		max-width: 100%;
		max-height: 400px;
		/* height: inherit !important; */
		background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.500)), url('../images/doorscoverphoto.JPG');
		background-repeat: no-repeat;
		background-size: 100% 100%;

		position: relative;
	}


}