@charset"utf-8";
:root {
	--primary: #111111;
	--secondary: #699fab;
	--white: #ffffff;
	--black: #000000;
	--yellow: #f1b730;
  --gray: #777c81;
  --lightGray: #b9b9b9;
  --hdnFont: 'Bebas Neue', cursive;
}


*{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html { width: 100%; height: 100%; padding: 0; margin: 0; }
body{ /* font-family: 'Poppins', sans-serif; */ color: var(--primary); font-weight:400; font-size: 18px; line-height: normal; background-color: var(--white); }
div, table, td, tr, section, h1, h2, h3, h4, h5, h6 , p, section, article, figure{ margin:0; padding:0; }
h1, h2, h3, h4, h5, h6{ font-weight: normal; }
a, input, textarea, button{ outline:0; transition: all ease-in-out 0.3s; -webkit-transition: all ease-in-out 0.3s; -moz-transition: all ease-in-out 0.3s; -o-transition: all ease-in-out 0.3s; }
input:focus, input:hover, textarea:focus, textarea:hover{ border-color: #76c7ff !important; box-shadow: none !important; outline: none; }
select { outline: 0; }
input::placeholder { opacity: 1; }
a{ text-decoration:none; border:none; outline:0; color: #f1b730; }
a:hover{ text-decoration:none; border:none; outline:0; color: var(--secondary); }
a:focus{ text-decoration:none; border:none; outline:0; }
button, button:focus{ text-decoration:none; border:none; outline:0; }
ul, ol, ul li, ol li{ list-style:none; margin:0; padding:0; }
p:empty{ display: none; }
img{ width:auto; max-width:100%; height: auto; }
body::selection{ background:#00589e; color:#ffffff; }
body::-moz-selection{ background:#00589e; color: #ffffff; }
p{ font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--primary); line-height: 28px; margin-bottom: 20px; }

body.body-fixed{
	position: fixed;
}
.clear{
	float: none;
	clear: both;
	display: table;
}
a.dfltBorderBtn{
	font-family: var(--hdnFont);
	font-size: 16px;
	color: var(--primary);
	letter-spacing: 2px;
	display: inline-block;
	border: 2px solid var(--secondary);
	border-radius: 8px;
	padding: 11px 25px 10px 25px;
}
a.dfltBorderBtn:hover{
	color: var(--white);
	background-color: var(--secondary);
}
a.dfltBtn{
	font-family: var(--hdnFont);
	font-size: 16px;
	color: var(--white);
	letter-spacing: 2px;
	display: inline-block;
	background-color: var(--secondary);
	border-radius: 8px;
	padding: 11px 25px 10px 25px;
}
a.dfltBtn:hover{
	background-color: var(--primary);
}

.dfltList{
	margin-top: 20px;
}
.dfltList li{
	font-size: 15px;
	color: var(--primary);
	margin-top: 10px;
	background: url(../images/yellow-arrow.png) no-repeat 0 8px;
	padding-left: 30px;
}

.justifySpaceBetween{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.justifyCenter{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.lightGrayBg{
	background-color: rgba(0, 0, 0, 0.05);
}
.lightSkyBg{
	background-color: rgba(239, 249, 255, 0.5);
}

/*================ Header Style Start ================*/
.hdrLogoMenuTopPrt{
	position: relative;
	padding: 15px 0 20px 0;
}
.hdrLogoMenuRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.hdrLogo img{
	max-width: 180px;
}

.hdrContactInfo{
	position: relative;
	margin-bottom: 30px;
}
.hdrContactInfo ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.hdrContactInfo ul li{
	margin-right: 25px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	letter-spacing: 0;
}
.hdrContactInfo ul li a{
	color: var(--primary);
}
.hdrContactInfo ul li a:hover{
	color: var(--secondary);
}
.hdrContactInfo ul li a i{
	width: 28px;
	height: 28px;
	display: inline-block;
	background-color: var(--white);
	border-radius: 100%;
	font-size: 16px;
	color: var(--secondary);
	text-align: center;
	line-height: 28px;
	margin-right: 6px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.hdrContactInfo ul li a i.fa-envelope{
	font-size: 12px;
}
.hdrContactInfo ul li a:hover i{
	color: var(--primary);
}



.innerBannerSec,
.inrBnrImg{
	position: relative;
}
.inrBnrImg::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color:  rgba(0, 0, 0, 0.6);
	z-index: 2;
}
.inrBnrImg img{
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}
.inrBannerCaption{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	z-index: 3;
	text-align: center;
	transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.inrBannerCaption .container{
	max-width: 800px;
}
.inrBannerCaption h1{
	font-family: var(--hdnFont);
	font-size: 75px;
	color: #f2f2f2;
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 15px;
}
.inrBannerCaption p{
	font-size: 18px;
	color: var(--white);
	line-height: 30px;
	margin-bottom: 0;
}
/*================ Header Style End ================*/


/*================ Footer Style Start ================*/

/*======= Footer Contact Style Part =======*/
.footerContactSec{
	position: relative;
	padding: 50px 0 30px 0;
	background-image: url(../images/footer-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.ftrContactRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.ftrContactLeftPrt{
	width: 43%;
}
.ftrContactLeftPrt h2{
	font-family: var(--hdnFont);
	font-size: 35px;
	color: #f2f2f2;
	font-weight: 500;
	letter-spacing: 3px;
	margin: 0 0 20px 0;
}
.ftrContactLeftPrt p{
	color: var(--white);
}
.ftrContactRightPrt{
	width: 55%;
}
.ftrContactRightPrt ul{
	display: flex;
	justify-content: flex-end;
}
.ftrContactRightPrt ul li{
	width: 50%;
	color: var(--white);
	text-align: center;
}
.ftrContactRightPrt ul li .fa{
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	display: inline-block;
	border: 1px solid var(--white);
	border-radius: 100%;
}
.ftrContactRightPrt ul li .fa.fa-phone{
	font-size: 25px;
}
.ftrContactRightPrt ul li span{
	display: inline-block;
	width: 100%;
	margin-top: 15px;
	font-size: 20px;
	font-weight: 500;
}
.ftrContactRightPrt ul li a{
	color: var(--white);
}



.ftrPhoneIcon{
	width: 100px;
	height: 100px;
	background-color: var(--white);
	border-radius: 100%;
	margin: 0 auto;
}
.ftrPhoneIcon .fa{
	font-size: 60px;
	line-height: 100px;
}

.footerContactSec h3{
	font-family: var(--hdnFont);
	font-size: 70px;
	color: #f2f2f2;
	font-weight: 400;
	letter-spacing: 3px;
}

/*======= Footer Menu Style Part =======*/
.footerSec{
	position: relative;
	background-color: var(--secondary);
	padding: 50px 0;
}
.ftrRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ftrLeftPrt .copyright{
	font-family: var(--hdnFont);
	font-size: 20px;
	color: #f2f2f2;
	font-weight: 500;
	letter-spacing: 1px;
	margin: 0;
}
.ftrRightPrt ul{
	display: flex;
	flex-wrap: wrap;
}
.ftrRightPrt ul li{
	font-family: var(--hdnFont);
	font-size: 20px;
	color: var(--white);
	font-weight: 500;
	letter-spacing: 1px;
	margin-right: 15px;
}
.ftrRightPrt ul li a{
	color: var(--white);
}
.ftrRightPrt ul li a:hover{
	color: var(--primary);
}

/*================ Footer Style End ================*/



/*=========================== Index Page Style Sheet Start Here ===========================*/

/*================ Banner Style Part ================*/
.bannerSec{
	position: relative;
	padding: 50px 0;
	background-image: url(../images/home-banner-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.bannerRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.bnrCaption{
	width: 45%;
	padding-left: 10px;
}
.bnrCaption h2{
	font-family: var(--hdnFont);
	font-size: 65px;
	color: #f2f2f2;
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 15px;
}
.bnrCaption h4{
	font-size: 16px;
	color: #f2f2f2;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 25px;
}



.bnrImgSlide{
	position: relative;
	width: 50%;
	padding: 50px 0 0 50px;
}
.bnrImgSlide::before{
	position: absolute;
	content: '';
	width: 95%;
	height: 95%;
	top: 0px;
	left: 0px;
	border: 5px dashed var(--secondary);
}
.bnrImgSlide .bannerImg{
	position: relative;
	z-index: 3;
}
.bnrImgSlide .bannerImg img{
	width: 100%;
	min-height: 500px;
	object-fit: cover;
}
.bannerSec .carousel-item {
  transition-duration: 1.8s;
}
.carousel-control-prev,
.carousel-control-next{
	z-index: 5;
}



/*================ About Us Style Part ================*/
.aboutUsSec{
	position: relative;
}
.aboutBodyRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.aboutLeftPrt{
	position: relative;
	width: 48%;
	padding: 80px 0 40px 0;
}
.aboutLeftPrt h2{
	font-size: 35px;
	color: var(--primary);
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 30px;
}
.aboutLeftPrt h3{
	font-size: 20px;
	color: var(--primary);
	font-weight: 500;
	margin-top: 20px;
}
.aboutLeftPrt img{
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}
.aboutRightPrt{
	position: relative;
	width: 48%;
	background-color: var(--secondary);
	color: var(--white);
	padding: 190px 25px 40px 25px;
}
.aboutRightPrt h2{
	font-family: var(--hdnFont);
	font-size: 20px;
	color: var(--yellow);
	font-weight: 300;
	letter-spacing: 2px;
	margin-bottom: 20px;
}
.aboutRightPrt h3{
	font-size: 25px;
	color: var(--white);
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.aboutRightPrt p{
	color: var(--white);
}
.aboutRightPrt li{
	color: var(--white);
}


/*================ Services Style Part ================*/
.servicesSec{
	position: relative;
	padding: 100px 0;
}
.srvcHdnPrt{
	max-width: 600px;
}
.srvcHdnPrt h2{
	font-size: 38px;
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 30px;
}
.servicesRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.servicesLeftPrt{
	position: relative;
	width: 47%;
}
.servicesLeftPrt ul li{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 20px;
}
.servicesLeftPrt ul li i{
	width: 12%;
	margin: 6px 5% 0 0;
	border: 2px solid var(--yellow);
	text-align: center;
	padding: 15px 5px;
	font-size: 30px;
	color: var(--yellow);
}
.servicesLeftPrt ul li .leftSrvcTxt{
	width: 83%;
}
.servicesLeftPrt ul li h3{
	font-size: 25px;
	color: var(--primary);
	margin-bottom: 10px;
}
.servicesLeftPrt ul li p{
	line-height: 24px;
}

.servicesRightPrt{
	position: relative;
	width: 48%;
	margin-top: 20px;
}
.servicesRightPrt ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}
.servicesRightPrt ul li{
	width: 30%;
	text-align: center;
}
.servicesRightPrt ul li .fa{
	font-size: 25px;
	color: var(--yellow);
}
.servicesRightPrt ul li h3{
	font-size: 18px;
	font-weight: 600;
	margin: 15px 0 10px 0;
}
.servicesRightPrt ul li p{
	font-size: 12px;
	line-height: 18px;
}
.srvcBottomMiddleTxt{
	text-align: center;
	margin-top: 60px;
}
.srvcBottomMiddleTxt p{
	font-size: 26px;
	font-weight: 500;
	line-height: 40px;
}
.srvcBottomMiddleTxt p a{
	color: var(--yellow);
}
.srvcBottomMiddleTxt p a:hover{
	color: var(--secondary);
}


/*================ Feature Style Part ================*/
.featureSec{
	position: relative;
	padding: 100px 0;
	background-color: #222627;
}
.featureRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.featureLeftPrt, .featureRightPrt{
	width: 47%;
}
.featureClm h2{
	font-family: var(--hdnFont);
	font-size: 37px;
	color: var(--white);
	letter-spacing: 2px;
	margin-bottom: 25px;
}
.featureClm img{
	width: 100%;
	min-height: 400px;
	object-fit: cover;
}
.featureClm h3{
	font-size: 25px;
	color: var(--white);
	font-weight: 500;
	margin-top: 20px;
}
.featureClm p{
	color: var(--white);
	margin-top: 20px;
}
.featureClm a.dfltBorderBtn{
	color: var(--white);
}


/*================ Gallery Style Part ================*/
.glryTypeSec{
	position: relative;
}
.glryTypeBodyRow{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.glryTypeLeftPrt{
	width: 47%;
	padding: 100px 0;
}
.glryTypeLeftPrt h2{
	font-family: var(--hdnFont);
	font-size: 37px;
	color: var(--primary);
	letter-spacing: 2px;
	margin-bottom: 25px;
}
.glryTypeLeftPrt ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.glryTypeLeftPrt ul li{
	width: 49%;
	margin-top: 8px;
}
.glryTypeLeftPrt ul li img{
	width: 100%;
	min-height: 180px;
	object-fit: cover;
}
.glryTypeRightPrt{
	width: 48%;
	padding: 170px 0 50px 50px;
	box-shadow: -14px 0 10px #4140401a;
}
.glryTypeRightPrt h2{
	font-size: 28px;
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 20px;
}



/*=========================== Index Page Style Sheet End Here ===========================*/




/*=========================== Inner Page One Style Sheet Start Here ===========================*/
.innerPageOneThirdSec{
	position: relative;
	padding: 100px 0;
}
.innerPageOneThirdSec h2{
	font-size: 38px;
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 30px;
}
.innerPageOneThirdSec h3 {
  font-size: 20px;
  color: var(--primary);
  font-weight: 500;
  line-height: 30px;
}


.innerPageOneFourthSec{
	position: relative;
	padding: 100px 0;
}
.innerPageOneFourthSecTextPrt{
	margin-top: 40px;
}
.innerPageOneFourthSecTextPrt h2{
	font-size: 38px;
	color: var(--primary);
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.innerPageOneFourthSecImgList ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.innerPageOneFourthSecImgList ul li{
	width: 32.3%;
	margin-top: 15px;
}
.innerPageOneFourthSecImgList ul li img{
	width: 100%;
	height: 250px;
	object-fit: cover;
}


/*=========================== Inner Page Two Style Sheet Start Here ===========================*/
.innerPageTwoThirdSec{
	position: relative;
  padding: 100px 0;
}



.innerPageTwoFourthSec{
	position: relative;
  padding: 100px 0;
  /* background-image: url(../images/inner-page-two-third-sec-bg.jpg); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.innerPageTwoFourthSec::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #060303;
  opacity: 0.6;
  z-index: 2;
}
.innerPageTwoFourthSec .container{
	position: relative;
	z-index: 3;
}

.innerPageTwoFourthSec .bnrCaption p {
  color: white;
}


/*=========================== Inner Page Three Style Sheet Start Here ===========================*/
.innerPageThreeSecondSec{
	background-color: var(--secondary);
}
.innerPageThreeSecondSec p{
	color: #ffffff;
}
.innerPageThreeSecondSec .glryTypeLeftPrt ul{
	justify-content: center;
}
.innerPageThreeSecondSec .glryTypeLeftPrt ul li{
	width: 48%;
	margin: 10px 1% 0 1%;
}







/*====== Menu Style Start ======*/
.hdrMenuPrt{
	z-index: 99;
}
.header-menu{
	font-family: var(--hdnFont);
	font-size: 17px;
	color: #000000;
	font-weight: 500;
	letter-spacing: 2px;
}
.navbar{ padding: 0; }
.navbar-nav{
	width: 100%;
	justify-content: center;
}
.navbar-nav li{ margin: 0 5px; position: relative; }
.navbar-nav li:first-child{ margin-left: 0; }
.navbar-nav li:last-child{ margin-right: 0; }
.navbar-nav li a{ position: relative; color: var(--primary); padding: 6px 5px; }
.navbar-nav li a:hover, .hdr_menu .navbar-nav li.active a{ color: var(--secondary); }

/*Dropdown & Submenu Style*/
.dropdown-menu{ white-space: nowrap; padding: 35px 0 0 0; background-color: transparent; z-index: 9; border: none; }
.dropdown-toggle{ padding-right: 14px !important; }
.dropdown-toggle::after{ position: absolute; top: 14px; right: 2px; border-top: 5px solid; border-left: 4.5px solid transparent; border-right: 4.5px solid transparent; }
.dropdown-menu li{ white-space: nowrap; text-align: left; background-color: #ffffff; font-size: 16px; font-weight: 500; letter-spacing: 1px; padding: 0; margin: 0; border-bottom: 1px solid var(--lightGray); }
.dropdown-menu li:last-child{ border-bottom: none; }
.dropdown-menu li a{ color: #000000; border: none; padding: 6px 35px 6px 15px; display: inline-block; width: 100%; }
.dropdown-menu li a:hover{ color: var(--secondary); }
.dropdown_menu_style{ position: relative; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
/*.dropdown_menu_style::before{ position: absolute; content: ''; width: 30px; height: 30px; top: -30px; left: 20px; border-bottom: 20px solid #ffffff; border-left: 15px solid transparent; border-right: 15px solid transparent; }*/

/*Hamburger Style*/
.navbar-toggler{ width: 40px; height: 27px; position: relative; margin: 0px; cursor: pointer; outline: 0 !important; border: none !important;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out; }
.navbar-toggler span{ 
	position: absolute;
	right: 0;
	width: 30px;
	height: 3px;
	background-color: #0c2d86;
	border-radius: 30px;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out; 
}
.navbar-toggler span{ background: var(--secondary); }
.navbar-toggler span:nth-child(1){ top: -1px; }
.navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3){ top: 8px; width: 100%; }
.navbar-toggler span:nth-child(4){ top: 17px; }
.navbar-toggler.open span:nth-child(1){ top: 11px; width: 0%; left: 50%; }
.navbar-toggler.open span:nth-child(2){
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg); }
.navbar-toggler.open span:nth-child(3){
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg); }
.navbar-toggler.open span:nth-child(4){ top: 11px; width: 0%; left: 50%; }
/*====== Menu Style End ======*/


/*=========== Menu Responsive Style Start ===========*/
@media only screen and (min-width: 992px) {
header .navbar-toggler{
	display: none;
}

.navbar .collapse ul li:hover> ul{ display:block; }
.navbar .collapse ul ul{ position:absolute; top:100%; left:0; min-width:250px; display:none; }
/*******/
.navbar .collapse ul ul li{ position:relative; }
.navbar .collapse ul ul li:hover> ul{ display:block; }
.navbar .collapse ul ul ul{ position:absolute; top:0; left:100%; display:none; }
/*******/
.navbar .collapse ul ul ul li{ position:relative; }
.navbar .collapse ul ul ul li:hover ul{ display:block; }
.navbar .collapse ul ul ul ul{ position:absolute; top:0; left:-100%; min-width:250px; display:none; z-index:1; }
}


@media only screen and (max-width: 991px) {
	.header-menu{
		background-color: transparent;
		z-index: 99;
		font-size: 15px;
	}
	.header-menu nav.navbar{
		width: 0;
		height: 100vh;
		background-color: #31302e;
		padding: 0 0 100px 0;
		position: absolute;
		top: 0;
		left: -50px;
		display: inline-block;
		box-shadow: 0 7px 13px rgba(0, 0, 0, 0.4);
		-webkit-transition: .2s ease-in-out;
		-moz-transition: .2s ease-in-out;
		-o-transition: .2s ease-in-out;
		transition: .2s ease-in-out;
	}
	.header-menu.show-nav nav.navbar{
		width: 350px;
		left: 0;
	}
	.header-menu.show-nav nav.navbar .navbar-collapse{
		height: 100%;
	}
	nav.navbar ul {
		height: 100%;
		overflow-y: scroll;
		padding: 10px 0 10px 0;
	}
	.navbar-nav li:nth-child(6){
		margin-left: 0 !important;
	}

	.navbar-nav{ float: none; justify-content: flex-start; }
	.navbar-nav li, .dropdown-menu li{ text-align: left; border-bottom: 1px solid #6f6f6f; margin: 0; }
	.navbar-nav li:last-child, .dropdown-menu li:last-child{ border-bottom: none; }
	.navbar-nav li a{ border: none; display: inline-block; width: 100%; padding: 13px 20px; color: var(--white); }
	.navbar-nav li a:hover, .navbar-nav li.active a{ color: var(--secondary); }
	.dropdown-toggle{ padding-right: 40px !important }
	.dropdown-menu{ padding-top: 0; margin-left: 0; padding-top: 0; }
	.dropdown_menu_style::before{ display: none; }
	.dropdown_menu_style{ box-shadow: none; }
	.dropdown-menu li{ background-color: transparent; font-size: 14px !important; }
	.dropdown-menu li a{ padding: 6px 10px 6px 35px !important; color: #ffffff; }
	.navbar-toggler{ padding: 13px; }
	.dropdown-toggle::after{ top: 18px; right: 15px; }
}
/*=========== Menu Responsive Style End ===========*/



/*=========================== Responsive Style Sheet Start Here ===========================*/
@media only screen and (min-width:1600px){

}

@media only screen and (max-width:1365px){

}

@media only screen and (max-width:1199px){
	.hdrMenuPrt{
		font-size: 13px;
	}
}


@media only screen and (max-width:991px){
	.hdrContactInfo{
		display: none;
	}
	.hdrMenuPrt{
		padding: 0;
	}
	.navbar-toggler{
		top: 5px;
	}
	.ftrContactLeftPrt{
		width: 100%;
	}
	.ftrContactRightPrt{
		width: 100%;
		margin-top: 40px;
	}
	.footerSec{
		padding: 20px 0;
	}
	.ftrRow{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.ftrLeftPrt{
		order: 1;
		margin-top: 15px;
	}
}


@media only screen and (max-width:767px){
	.hdrLogo img{
		max-height: 40px;
	}
	.bnrImgSlide{
		width: 100%;
		padding: 25px 0 0 25px;
	}
	.bnrImgSlide .bannerImg img{
		min-height: inherit;
	}
	.bnrCaption{
		width: 100%;
		padding: 0;
		order: 1;
		margin-top: 30px;
	}
	.bnrCaption h2{
		font-size: 40px;
		margin-bottom: 8px;
	}
	.bnrCaption h3{
		font-size: 20px;
		margin-bottom: 20px;
	}
	.aboutLeftPrt{
		width: 100%;
		padding: 40px 0;
	}
	.aboutRightPrt{
		width: 100%;
		padding: 40px 20px;
	}
	.servicesSec{
		padding: 60px 0 40px 0;
	}
	.servicesLeftPrt{
		width: 100%;
	}
	.servicesRightPrt{
		width: 100%;
		margin-top: 40px;
	}
	.srvcBottomMiddleTxt{
		margin-top: 30px;
	}
	.featureSec{
		padding: 40px 0;
	}
	.featureLeftPrt,
	.featureRightPrt{
		width: 100%;
	}
	.featureRightPrt{
		margin-top: 40px;
	}
	.glryTypeLeftPrt{
		width: 100%;
		padding: 0;
	}
	.glryTypeRightPrt{
		width: 100%;
		padding: 25px 20px 10px 20px;
		box-shadow: 0px -14px 14px #41404049;
	}
	.inrBnrImg img{
		min-height: 270px;
	}
	.inrBannerCaption h1{
		font-size: 50px;
	}
	.inrBannerCaption p{
		font-size: 16px;
		line-height: 25px;
	}
	.glryTypeSec,
	.innerPageTwoFourthSec,
	.innerPageTwoThirdSec,
	.footerContactSec,
	.innerPageOneThirdSec,
	.innerPageOneFourthSec{
		padding: 40px 0;
	}
	a.dfltBtn,
	a.dfltBorderBtn{
		font-size: 15px;
		padding: 10px 20px 8px 20px;
	}
}


@media only screen and (max-width:575px){
	.hdrLogoMenuTopPrt{
		padding: 10px 0 15px 0;
	}
	.ftrRightPrt ul{
		justify-content: center;
	}
	.bnrCaption h2{
		font-size: 30px;
	}
	.bnrCaption h3{
		font-size: 16px;
	}
	.servicesLeftPrt ul li p{
		margin-bottom: 0;
	}
	.inrBannerCaption h1{
		font-size: 40px;
	}
	.ftrContactRightPrt{
		margin-top: 20px;
	}
	.ftrContactRightPrt ul{
		flex-direction: column;
	}
	.ftrContactRightPrt ul li{
		width: 100%;
		margin: 15px 0;
	}
	.innerPageOneFourthSecImgList ul li{
		width: 48%;
	}

	.aboutLeftPrt h2,
	.srvcHdnPrt h2,
	.featureClm h2,
	.glryTypeLeftPrt h2,
	.innerPageOneThirdSec h2,
	.srvcHdnPrt h2,
	.ftrContactLeftPrt h2,
	.innerPageOneFourthSecTextPrt h2{
		font-size: 25px;
	}
	.aboutRightPrt h3,
	.featureClm h3,
	.glryTypeRightPrt h2{
		font-size: 22px;
	}
	.servicesLeftPrt ul li h3,
	.srvcBottomMiddleTxt p{
		font-size: 20px;
		line-height: 30px;
	}
	.innerPageOneThirdSec h3{
		font-size: 18px;
	}
}


@media only screen and (max-width:479px){
	.header-menu.show-nav nav.navbar{
		width: 270px;
	}
	.footerSec{
		padding: 20px 0;
	}
	.ftrLeftPrt .copyright{
		font-size: 15px;
	}
	.bannerSec{
		padding: 20px 0;
	}
	.bnrCaption h2{
		font-size: 25px;
	}
	.glryTypeLeftPrt ul li{
		width: 48.5%;
	}
	.servicesLeftPrt ul li i{
		width: 20%;
	}
	.servicesLeftPrt ul li .leftSrvcTxt{
		width: 75%;
	}
	.inrBannerCaption h1{
		font-size: 25px;
	}
	.inrBannerCaption p{
		font-size: 14px;
		line-height: 22px;
	}
	.innerPageOneThirdSec h3{
		font-size: 16px;
	}
	.ftrContactRightPrt ul li span{
		font-size: 18px;
	}
	.servicesSec{
		padding: 40px 0;
	}
	.inrBnrImg img{
		min-height: 230px;
	}
	.innerPageOneFourthSecImgList ul li img{
		height: 150px;
	}

	.aboutLeftPrt h2,
	.srvcHdnPrt h2,
	.featureClm h2,
	.glryTypeLeftPrt h2,
	.innerPageOneThirdSec h2,
	.ftrContactLeftPrt h2,
	.innerPageOneFourthSecTextPrt h2{
		font-size: 22px;
	}
	.aboutRightPrt h3,
	.featureClm h3,
	.glryTypeRightPrt h2{
		font-size: 20px;
	}
	.servicesLeftPrt ul li h3,
	.srvcBottomMiddleTxt p{
		font-size: 18px;
		line-height: 30px;
	}
	p{
		font-size: 14px;
		line-height: 26px;
	}
}
/*=========================== Responsive Style Sheet End Here ===========================*/