/*
Author URI: http://webthemez.com/
Note: 
Licence under Creative Commons Attribution 3.0 
Do not remove the back-link in this web template 
-------------------------------------------------------*/

@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Poppins'); /***font-family: "Poppins",sans-serif;***/
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Heebo');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro'); /***font-family: 'Source Sans Pro', sans-serif;***/
/* Reset
---------------------------------*/
ul {
    list-style: none;
}

.figure {
    margin: 0px;
}

img {
    max-width: 100%;
}

a, a:hover, a:active {
    outline: 0px !important;
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}


/* Styles
---------------------------------*/
html{
	scroll-behavior:smooth;
	background: #333333;
}
body {
    background-color: rgb(243 243 241) !important;
    /*background-image: url('../images/triangle2.png');*/
    font-size: 14px;
    font-weight: normal;
    color: #b3a258;
    margin: 0;
	padding: 0!important;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'Montserrat', sans-serif;
}

p {
	font-family: 'Source Sans Pro', sans-serif;
}

a {
	font-family: 'Source Sans Pro', sans-serif;
}
input:focus{
	outline: none;
}
textarea:focus{
	outline: none;
}
a:focus{
	outline: none;
}
button:focus{
	outline: none;
}

/**Preloader**/
.loader   {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    height: 100%;
    width: 100%;
 }

.loader img {
    width: 53px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/preloader.html);
    background-repeat: no-repeat;
    background-position: center;
    margin: -14px 0 0 -16px;
 }
 /***/
 @-webkit-keyframes spinner-1--before {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes spinner-1--before {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
}
@-webkit-keyframes spinner-1--after {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes spinner-1--after {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
.spinonediv-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
}
.spinonediv-1:before, .spinonediv-1:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  border: 2px solid #3385d9;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: spinner-1--before 0.5s linear infinite;
  animation: spinner-1--before 0.5s linear infinite;
}
.spinonediv-1:before {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.spinonediv-1:after {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-animation-name: spinner-1--after;
  animation-name: spinner-1--after;
}
/* #preloader  {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #fff;
     z-index: 99;
    height: 100%;
 }
#status  {
     width: 200px;
     height: 200px;
     position: absolute;
     left: 50%;
     top: 50%;
     background-image: url(../images/preloader.gif););
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
     margin: -100px 0 0 -100px;
 }*/
/**Preloader**/

/****Tooltip start*****/
.tooltip {
  position: relative;
  opacity: 1;
}
.tooltip:before,
.tooltip:after {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.tooltip:after {
	border-right: 6px solid transparent;
	border-bottom: 6px solid rgba(0,0,0,.75); 
  border-left: 6px solid transparent;
  content: '';
  height: 0;
    top: 34px;
    left: 10px;
  width: 0;
}
.tooltip:before {
	background: rgba(0,0,0,.75);
    border-radius: 2px;
    color: #fff;
    content: attr(data-title);
    font-size: 11px;
    padding: 3px 5px;
    top: 40px;
    left: -50%;
    border-radius: 5px;
    white-space: nowrap;
}
.tooltip.expand:before {
  transform: scale3d(.2,.2,1);
  transition: all .2s ease-in-out;
}
.tooltip.expand:after {
  transform: translate3d(0,6px,0);
  transition: all .1s ease-in-out;
}
.tooltip.expand:hover:before,
.tooltip.expand:hover:after {
  opacity: 1;
  transform: scale3d(1,1,1);
}
.tooltip.expand:hover:after {
  transition: all .2s .1s ease-in-out;
}
/****Tooltip start*****/

/* Header Styles
---------------------------------*/

#header_wrapper {
    background: #ffffff;
    padding: 0px 0px;
}

/* Nav Styles
---------------------------------*/

.navbar{
	padding: 0px 0px!important;
    background:#333;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
    /* //border-bottom: #ffcc33 3px solid ;
	//-webkit-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.5);
//-moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.5);
//box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.5); */

}
.navbar-brand{
	position: relative;
	height: 80px;
	width: 28%;
}
.navbar-brand img {
    position: absolute;
      top:-15px;

    left: -68px;
    width: 74%;
    border-radius: 5px;
    /* box-shadow: 0px 10px 10px rgba(0,0,0,0.05); */
    transition: all 0.5s ease-in-out;
}
.navbar-nav{
	margin-top: 20px;
}
.navbar-nav .nav-item{
	padding: 25px 12px;
	text-align:center;
	margin: 0px;
}
.navbar-nav .nav-item .nav-link{
	position:relative;
	color:#b3a258  !important;
	
	text-transform:uppercase;
	
	   font-size: 18px;
    font-weight: 900;
	letter-spacing:1px;
	padding: 0px 10px 0px 10px;
	margin-top: 25px;
}
.navbar-nav .nav-item .nav-link:before{
	content:'';
	position:absolute;
	top:-10px;
	left:0;
	width:0%;
	border:2px solid #B3A258 ;
	opacity:0;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}
.navbar-nav .nav-item .nav-link:hover:before{
	transition:0.5s;
	opacity:1;
	width:100%;
}
.navbar-nav .nav-item .nav-link:hover{
	color: #B3A258 ;
	transition: all 0.5s ease-in-out;
	 
}
.navbar.scroll{
	padding: 0px 0px 0px 0px!important;
	background:rgb(51 51 51) !important;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	border-bottom: #B3A258  3px solid;
}

.scroll .navbar-brand img {
    position: absolute;
    /*top: 5px;*/
    /*left: 0px;*/
    top: -34px;
    left: -68px;
    width: 74%;
	transition: all 0.5s ease-in-out
	-webkit-transition: all 0.5s ease-in-out;
}

#id_loo2 {
    display:block;
}
.scroll .navbar-brand #id_looo {
    display:none;
}
.scroll .navbar-brand #id_loo2 {
    display: block !important;
}

/************/
.nav-item{
	transition: all 0.5s ease-in-out;
}
.navbar-nav .dropdown-menu{
	position: absolute;
	top: 95%;
	padding: 0px 68px  0px 0px;
    color: #212529;
	border-top: 5px solid #B3A258 ;
	box-shadow: 1px 1px 5px #00000020;
	/* margin-top: -77px; */

}
/* .navbar-nav .drp-mnu-2{
    left: -560px;
} */
.navbar-nav .drp-mnu-2 .drpdwn-itm-scnd{
	min-width: 340px;
}
.dropdown-item{
	padding: 10px 20px;
    display: flex;
    align-items: center;
}
.dropdown-item:hover{
	background: #0469af15;
	width: 96% !important;
    margin-left: -10px;
}
.dropdown-item:active{
	color: #333;
}
.dropdown-item img{
	height: 40px;
	width: 40px;
	margin: 0px 10px 0px 0px;
	border: 1px solid #B3A258 !important;;
	padding: 3px;
	border-radius: 50%;
	float: left;
}
@keyframes drpdwn{
	0%{
		transform: scale(0,0);
	}
	100%{
		transform: scale(1,1);
	}
}
.product-list{
    position: fixed!important;
    top: 15%!important;
    right: 2%;
    left: 37%;
    width: 20%;
}
.drpdwn-itm-fst .title{
	padding: 0px 0px 0px 20px;
	font-size: 17px;
	letter-spacing: 1px;
	font-weight: 900;
	color: #B3A258 !important;;
}
.drp-item{
	display: table-cell;
}
.drpdwn-itm-fst{
	display: table-cell;
	width: 300px;
	min-width: 300px;
	max-width: 300px;
	padding: 0px 10px 10px 10px;
}
.drpdwn-itm-scnd .title{
	padding: 0px 0px 0px 20px;
	font-size: 17px;
	letter-spacing: 1px;
	font-weight: 900;
	color: #B3A258 !important;;
	opacity: 0;
}
.drpdwn-itm-scnd{
	display: table-cell;
	width: 300px;
	min-width: 300px;
	max-width: 300px;
	text-align: left;
	padding: 0px 10px 0px 10px;
	border-left: 1px solid rgba(0,0,0,0.15);
}
.drpdwn-itm-thrd .title{
	padding: 0px 0px 0px 20px;
	font-size: 17px;
	letter-spacing: 1px;
	font-weight: 900;
	color: #B3A258 !important;;
}
.drpdwn-itm-thrd{
	display: table-cell;
	width: 300px;
	min-width: 300px;
	max-width: 300px;
	text-align: center;
	padding: 0px 10px 30px 10px;
	border-left: 1px solid rgba(0,0,0,0.15);
}
.drpdwn-itm-thrd img{
	margin: 0 auto;
	display: block;
}
.drpdwn-itm-thrd a{
	display: inline-block;
	padding: 10px 20px;
	border-radius: 5px;
	background: #B3A258 !important;;
	color: #fff;
	margin-top: 40px;
	text-decoration: none;
	transition: all 0.5 ease-in-out;
}
.drpdwn-itm-thrd a:hover{
	transition: all 0.5 ease-in-out;
	background: #B3A258 ;	
}
/************/

/************NAVBAR END***************/

/********  SLIDER SECTION START *************/
/*.carsel-itm{
	position:relative;		
}

.carsel-img{
	position:relative;		
	width: 100%;
	overflow: hidden;
	height:600px;
	background: url(../images/slides/slide1.jpg)  center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}*/
#demo{
	margin: 2px 0px 0px 0px;
}
.carousel-item{
	height: 600px;
	height: auto;
}
.carousel-item-img{
	width: 100%;
}
.carousel-item-img img{
	width: 100%;
}
.carousel-caption{
	position: absolute;
	top: 15%;
	left: 8%;
	width: 40%;
	text-align: left;
}
.carousel-caption h3{
	text-align:left;
	font-size: 55px;
	font-family: 'Montserrat';
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	line-height:1;
	color: #333;
	margin: 0px;
}
.carousel-caption a{
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    background: #B3A258 ;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 25px 0px 0px 0px;
    display: inline-block;
}
.carousel-caption a:hover{
	background: #f68a00;
}
.carousel-control-next, .carousel-control-prev{
	opacity:0.9;
}
.carousel-control-next:hover{
	opacity:1;
}
.carousel-control-prev:hover{
	opacity:1;
}
.carousel-control-prev-icon i,.carousel-control-next-icon i {
    font-size: 25px;
    background: #ffffff00;
    color: #ffffff63;
    border-radius: 50%;
    height: 40px;
    padding: 8px 15px;
    width: 40px;
}
.carsel-indctor {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.carsel-indctor li {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 5px;
    border-radius: 50%;
    height: 5px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255,255,255,.5);
}

/********  SLIDER SECTION END *************/

/*****************HOME SERVICE START********************/


#home-service {
    padding: 50px 0px 50px 0px;
    background: #f3f3f1;
     /*background-image: url('../images/triangle2.png');*/
}
#home-service .section-title{
	color: #333333 !important;;
	font-weight: bold;
	font-size: 35px;
	letter-spacing: 1px;
	padding: 0px 0px 10px 0px;
	text-align: center;
}
#home-service .bodr-btm {
    margin-top: 0;
    padding-bottom: 15px;
    /*border-bottom: 2px solid #e2e2e2;*/
    margin-bottom: 15px;
    position: relative;
    max-width: 12%;
    margin: 0 auto;
    margin-left: 48%;
}
#home-service .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40%;
    border-bottom: 3px solid #B3A258 ;
}
#home-service p{
	padding: 25px 30px 0px 30px;
	text-align: center;
	letter-spacing: 0.5px;
    font-size: 17px;
    line-height: 1.5;
    color: #333333;
}
.home-section-header p{
	text-align: center;
	color: #333333;
	font-size: 19px;
	letter-spacing: 1px;
	padding: 0px 0px 0px 0px;
}
.home-service-box{
	margin-top:25px;
	background: #f3f3f1;
	padding: 30px 0px 50px 0px;
	display: block;
	text-decoration: none!important;
	text-align: center;
	box-shadow: 2px 2px 15px rgb(179 162 88 / 47%);
	transition: all 0.5s ease-in-out;
}
.home-service-icon{
	text-align: center;
	margin: 0 auto;
	transition: all 0.2s ease-in-out;
}
.home-service-icon img{
	padding: 0px 0px 0px 0px;
	height: 53px;
	/* width: 100px; */
	transition: all 0.5s ease-in-out;
}

.home-service-box h4{
	font-size:22px;
	color: #333333 !important;
	text-align: center;
	letter-spacing:1px;
	margin: 0px;
	padding: 25px 20px 0px 20px;
	font-weight: 700;
	font-family: Montserrat !important;
	transition: all 0.2s ease-in-out;
}
.home-service-box p {
	font-size:15px;
	line-height:25px;
	text-align: center;
	padding: 0px 20px 20px 20px;
}
.home-service-box span{
	padding: 0px 0px 0px 0px;
	color: #333333 ;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
}
.home-service-box span .fa-angle-right{
    font-size: 20px;
    font-weight: bold;
    padding: 0px 0px 0px 5px;
}
.home-service-box:hover .home-service-icon img{
	transition: all 0.5s ease-in-out;
}
.home-service-box:hover{
	box-shadow: 1px 1px 5px #00000038;
	transition: all 0.5s ease-in-out;
}
.home-service-box:hover .home-service-icon{
	transform: scale(1.1);
	transition: all 0.5s ease-in-out;
}

/*****************HOME SERVICE END********************/

/*****************HOME PRODUCT START*******************/
#home-product{
	background: #ffffff;
}
#home-product .section-title{
	color: #B3A258 !important;;
	font-weight: bold;
	font-size: 35px;
	text-align: center;
	margin: 0;
	letter-spacing: 1px;
	padding: 40px 0px 10px 0px;
}
#home-product .bodr-btm {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 15%;
    margin: 0 auto;
}
#home-product .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40%;
    border-bottom: 3px solid #B3A258 ;
}
#home-product p{
	padding: 40px 70px 0px 70px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.5px;
}
/******************/
.sp-slide{
	position: relative;
}
.sp-slide .prdt-img1{
	position: absolute;
	top: 70px;
	right: 30px;
	height: 400px;
	width: 500px;
}
.prdt-cnct-1 h5{
	position: absolute;
	font-size: 50px!important;
	color: #fff;
	text-align: left;
	font-weight: 900;
	top: 100px!important;
	left: 30px!important;
}
.prdt-cnct-1 p{
	position: absolute;
	font-size: 25px!important;
	color: #fff;
	text-align: left;
	top: 160px!important;
	left: 0px!important;
}
.prdt-cnct-1 p a{
	position: absolute;
	top: 100px!important;
	left: 30px!important;
	padding: 10px 15px;
	font-size: 17px;
	width: 200px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 5px;
}

/*******************/

.prdt-cnct-2 h5{
	position: absolute;
	font-size: 50px!important;
	color: #000;
	text-align: right;
	font-weight: 900;
	top: 100px!important;
	left: 30px!important;
	right: 0px!important;
}
.prdt-cnct-2 p{
	position: absolute;
	font-size: 25px!important;
	color: #000;
	text-align: right!important;
	top: 160px!important;
	left: 0px!important;
	right: 0px!important;
}
.prdt-cnct-2 p a{
	position: absolute;
	top: 100px!important;
	left: 80%!important;
	right: 0px!important;
	padding: 10px 15px;
	float: right;
	text-align: center;
	font-size: 17px;
	width: 200px;
    border: 2px solid #000;
    color: #000;
    border-radius: 5px;
}

/*******************/
.sp-slide .prdt-img2{
	position: absolute;
	top: 70px;
	left: 30px;
	height: 400px;
	width: 500px;
}

/*******************/
.sp-slides-container{
	height: 500px!important;
}
.sp-image{
	height: 500px!important;
	width: 100%!important;
	margin-top: 0px!important;
}
/*****************HOME PRODUCT END********************/


/************** banner-bottom START**************/
#banner-bottom{
	background: #eeeef0;
	width: 100%;
	padding: 25px 0px 15px 0px;
}
.banner-bottom-box h3{
	color: #000;
	font-weight: 900;
	font-size: 25px;
	padding: 0px 0px 10px 0px;
}
.banner-bottom-box p{
	font-size: 16px;
	color: #6d6d6d;
}
.banner-bottom-box button{
    padding: 10px 10px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 17px;
    background: #1466af;
    margin: 0px 0px 0px 50px;
    cursor: pointer;
}
.banner-bottom-box button:hover{
	background: #2c79bd;
	color: #fff;
}
/**************banner-bottom END**************/

/**************Flat Start**************/
#flat{
	padding: 60px 0px 30px 0px;
}
.flat-box img{
	height: 60px;
	width: 60px;
}
.flat-box h4{
	font-size: 16px;
	color: #1f1f1f;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-align: center;
	padding: 20px 0px 10px 0px;
}
.flat-box p{
	text-align: center;
	font-size: 16px;
	line-height: 25px;
	letter-spacing: 0.5px;
}
/**************Flat END**************/

/**************HOME ABOUT US START**************/
#hm-aboutus{
	text-align: center;
	padding: 40px 0px 40px 0px;
	background: #f3f3f1 !important;
	color:#333333 !important ;
}
#hm-aboutus .section-title{
	color: #333333 !important;
	margin: 0px;
	font-weight: bold;
	font-size: 35px;
	letter-spacing: 2px;
	padding: 0px 0px 5px 0px;
}
#hm-aboutus span{
	color: #ffffff96;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	letter-spacing: 1px;
}
#hm-aboutus .bodr-btm {
	padding-top: 15px;
    margin-top: 0;
    padding-bottom: 15px;
     /*border-bottom: 2px solid #b3a258; */
    margin-bottom: 15px;
    position: relative;
    max-width: 12%;
    margin: 0 auto;
    margin-left: 48%;
}
#hm-aboutus .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    border-bottom: 3px solid #B3A258 ;
}
.hm-about-box img{
	padding: 0px 0px 0px 0px;
	height: 360px;
	margin-top: 75px;

}
.hm-about-box p{
    font-size: 18px;
    line-height: 1.5;
    color: #333333 !important;
    letter-spacing: 0.5px;
    padding: 70px 0px 0px 0px;
}
.hm-about-box a{
	background: #B3A258;
    border: none;
    padding: 10px 10px;
    width: 150px;
    color: #333 !important;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 3px;
    border-radius: 5px;
    margin-top: 40px;
    cursor: pointer;
    transition: .5s;
}
.hm-about-box a:hover{
	background:  #B3A258;
	color: #333 !important;
	transition: .5s;
}

/**************HOME ABOUT US END**************/	

/**************HOME PORTFOLIO START**************/	
/*#portfolio{
	padding: 0px 0px 0px 0px;
}
#portfolio  .col-md-6{
	padding-left: 0;
	padding-right: 0;
}
.port-box{
	padding: 40px 0px 40px 0px;
}
.port-box h4{
	text-align: center;
	padding: 20px 0px 20px 0px;
	color: #000;
}
.port-box p{
	font-size: 17px;
	text-align: center;
	padding: 0px 30px 0px 30px;
}*/
#hm-portfolio{
	padding: 0px 0px 50px 0px;
	background: #ffffff;
}
#hm-portfolio .section-title{
	color: #B3A258 !important;;
	font-weight: bold;
	font-size: 35px;
	text-align: center;
	padding: 70px 0px 0px 0px;
    margin: 0;
}
#hm-portfolio span{
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
}
#hm-portfolio .bodr-btm {
	padding-top: 15px;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 5%;
    margin: 0 auto;
}
#hm-portfolio .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    border-bottom: 3px solid #B3A258 ;
}
#hm-portfolio .sec-cncnt{
    padding: 25px 70px 0px 70px;
    text-align: center;
    font-size: 18px;
}
.port-fst-bx{
	text-align: center;
	padding: 40px 0px 40px 0px;
}
#filters li{
	float: none!important;
	display: inline-block;
}	
#filters li:hover span{
	background: #00000010;
}
#filters li span{
    border-radius: 20px;
    padding: 4px 20px 6px 20px;
	margin: 0px 5px;
	border: 1px solid #cacaca;
}
#filters li span.active {
    background: #0469af!important;
    border-radius: 20px;
    padding: 4px 20px 6px 20px;
    border: none;
}
#portfoliolist .portfolio{
	width: 31.33%!important;
}
.portfolio .label-text{
	text-align: center;
}
.portfolio .label-text h5{
	font-size: 25px;
	font-weight: 900;
	margin: 0px;
	padding: 20px 0px 10px 0px;
}
.portfolio .label-text p{
	padding: 10px;
	margin: 0;
	text-transform: uppercase;
	font-size: 17px;
}
.portfolio .label-text a{
	display: inline-block;
    padding: 1px 0px 0px 0px;
    margin: 10px 0px 0px 0px;
    height: 35px;
    text-align: center;
    width: 35px;
    border-radius: 50%!important;
    font-size: 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    background: #B3A258 ;
    color: #fff;
}

#hm-portfolio .prt-btn{
    background: #B3A258 ;
    border: none;
    padding: 10px 10px;
    width: 150px;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 3px;
    border-radius: 5px;
    margin-top: 40px;
    cursor: pointer;
    transition: .5s;
}
#hm-portfolio .prt-btn:hover{
	background: #B3A258 !important;;
	color: #fff;
	transition: .5s;
}
/**************HOME PORTFOLIO END**************/

/**************HOME COUNTER START**************/
#num-counter{
	background: #B3A258 ;
	padding: 30px 0px 30px 0px;
}
.counter-box{
	text-align: center;
    padding: 10px;
}
.counter-box .fa-briefcase,
.counter-box .fa-users,
.counter-box .fa-globe,
.counter-box .fa-desktop{
	font-size: 30px;
    display: block;
    height: 65px;
    border: 1px solid #fff;
    width: 65px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    margin-bottom: 10px;
    padding: 16px 0px 0px 0px;
    color: #ffffff;
}
.counter-box span{
	font-size: 60px;
	font-weight: bold;
	color: #fff;
}
.counter-box p{
	font-size: 17px;
    padding: 10px 0px 0px 0px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}
/**************HOME COUNTER END**************/

/*****************HOME HAPPY CLIENT START********************/
#clients{
	padding: 0px 0px 40px 0px;
	background: #f3f3f1;
}
#clients .section-title{
	color: #333333 !important;;
	font-weight: bold;
	font-size: 35px;
	text-align: center;
	letter-spacing: 1px;
	padding: 40px 0px 0px 0px;
    margin: 0;
     /*background-image: url('../images/triangle2.png');*/
}
#clients .btm-tlt{
	text-transform: uppercase;
	text-align: center;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 20px 0px 40px 0px;
}
#clients .bodr-btm {
	padding-top: 15px;
    margin-top: 0;
    padding-bottom: 15px;
    /*border-bottom: 2px solid #e2e2e2;*/
    margin-bottom: 15px;
    position: relative;
    max-width: 10%;
    margin: 0 auto;
    margin-left: 48%;
}
#clients .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    border-bottom: 3px solid #B3A258 ;
}
#clients p{
	padding: 25px 50px 25px 50px;
	text-align: center;
	letter-spacing: 0.5px;
	font-size: 18px;
}
.owl-two .owl-item{
	/* border:1px solid #0003; */
	border-radius: 5px;
}
.owl-two .owl-item img {
    width: 220px!important;
    //height: 180px;
    margin: 0 auto;
}
.owl-two .owl-nav{
	display:none;
}
.owl-two .owl-dots{
	padding: 50px 0px 0px 0px;
}
.owl-two .owl-dots .owl-dot:focus {
  outline: none;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff!important;
    border: 2px solid #3385d9;
}
.owl-theme .owl-dots .owl-dot span {
    background: #B3A258 !important;!important;
}
/*****************HOME HAPPY CLIENT END********************/


/************** ACTION START**************/
#action{
	/* //background: linear-gradient(50deg,#0382da,#0469af); */
	padding: 50px 0px 50px 0px;
	/* background-image: url(../images/footer_image1.png); */
	background-size: cover;
	/* background-color: #b3a258 !important; */
	background-position: center;
	background-repeat: no-repeat;
	
    position: relative;

}
#action::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-color: rgba(0, 0, 0, 0.5); 0.5 is the transparency value (0 to 1) */
}
.action-box{

}
.action-box h2{
	padding: 50px 0px 0px 0px;
	margin: 0;
	font-size: 25px;
	font-weight: bold;
	color: #fff;
}
.action-box p{
	padding: 30px 0px 50px 0px;
	margin: 0;
	line-height: 1.5;
	font-size: 17px;
	color: #fff;
}
.action-box img{
	padding: 50px 0px 0px 0px;
}
.action-box .fstbtn{
	padding: 10px 20px 10px 20px;
	margin: 0;
	font-size: 17px;
	font-weight: bold;
	color: #fff;
	background: #ffa84b;
	border: none; 
	cursor: pointer;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}
.action-box .fstbtn:hover{
	background: #ffffff;
	color: #B3A258 !important;;
	transition: all 0.5s ease-in-out;
}
.action-box .scndbtn{
	padding: 10px 20px 10px 20px;
	margin: 0px 10px;
	font-size: 17px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	background: none;
	text-decoration: none;
	border: 2px solid #fff; 
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}
.action-box .scndbtn:hover{
	background: #fff;
	color: #B3A258 !important;;
	transition: all 0.5s ease-in-out;
}
/************** ACTION END**************/

/**************HOMETECHNOLOGIES START**************/
#technologies{
	padding: 20px 0px 50px 0px;
}
#technologies .section-title{
	color: #B3A258 !important;;
	font-weight: bold;
	font-size: 35px;
	text-align: center;
	letter-spacing: 1px;
	padding: 30px 0px 0px 0px;
    margin: 0;
}
#technologies .bodr-btm {
	padding-top: 15px;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 5%;
    margin: 0 auto;
}
#technologies .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    border-bottom: 3px solid #B3A258 ;
}
#technologies .sec-cnct{
    padding: 35px 50px 0px 50px;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 18px;
    margin: 0px;
}
.tech-box{
	padding: 0px 0px 0px 0px;
}
.owl-one .owl-item{
	//bord?er:1px dotted #000;
	padding: 30px 0px 0px 0px;
}
.owl-one .item{
	//height: 300px;
}
.owl-one .owl_box figure{
	border: 2px solid #B3A258 !important;;
	margin: 0 auto;
	width: 110px;
	height: 110px;
	padding: 15px 0px 40px 0px;
	border-radius: 50%;
	transition: all .2s ease-in-out;
}
.owl-one .owl_box figure img{
	height: 80px;
	width: 80px!important;
	margin: 0 auto;
	transition: all .2s ease-in-out;
}
.owl-one .owl_box p{
	text-align: center;
	padding: 10px 0px 0px 0px;
	color: #000;
}
.owl-one .owl-nav {
    position: absolute;
    top: 60px;
    left: 0px;
    right: 0px;
}
.owl-one .owl-item .owl_box {
    padding: 20px 0px 10px 0px;
    transition: all .3s ease-in-out;
}
.owl-one .owl-item:hover .owl_box p{
    color: #B3A258 !important;;
    transition: all .3s ease-in-out;
}
.owl-one .owl-item:hover figure{
	//border: 2px solid #333333;
	background: #ffffff;
	transition: all .3s ease-in-out;
}
.owl-one .owl_box:hover figure img{
	transform: scale(1.1);
	transition: all .2s ease-in-out;
}
.owl-one .owl-nav .owl-prev:focus,.owl-one .owl-nav .owl-next:focus {
  outline: none;
}
.owl-one .owl-nav .owl-prev {
    display: inline-block;
    width: 50px;
    height: 50px;
    left: -40px;
    position: absolute;
    font-size: 0;
    text-align: center;
    background: #0469af40!important;
    border-radius: 50%!important;
}
.owl-one .owl-nav .owl-next{
	display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    right: -40px;
    font-size: 0;
    text-align: center;
    background: #0469af40!important;
    border-radius: 50%!important;
}
.owl-one .owl-nav .owl-prev:hover,.owl-one .owl-nav .owl-next:hover{
	background: #0382d9!important;
}
.owl-one .owl-nav .owl-prev span, .owl-one .owl-nav .owl-next span{
	font-size: 30px;
    line-height: 22px;
    text-align: center;
	font-weight: bold;
	color: #fff;
}
.owl-one .owl-dots{
	display: none;
}
/**************HOME TECHNOLOGIES END**************/

/*****************HOME ENQUIRE START********************/
/*#home-enquire{
	padding: 50px 0px 50px 0px;
	background: #222222;
}
:focus {
  outline: none;
}
.home-form{
	padding: 0px 0px 0px 0px;
}
.home-footer .fa-map-marker,.home-footer .fa-envelope{
	color: #333333;
	font-size: 50px;
	display: block;
	text-align: center;
}
.home-footer h5{
	font-size: 23px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.home-footer p{
	text-align: center;
	color: #fff;
	letter-spacing: 1px;
}
.home-footer a{
	color: #fff;
	text-decoration: none;
	line-height: 2;
}

/***********/
/*.home-ftr-link{
	text-align: center;
}
.home-ftr-link h5{
	color: #333333;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
}
.home-ftr-link ul li{
	padding: 3px 0px;
}
.home-ftr-link ul li a{
	color: #fff;
	text-decoration: none;
}
.home-ftr-link ul li a i{
	color: #333333;
	font-weight: bold;
}
/***********/

/***********/
/*.home-ftr-soclink{
	text-align: center;
}
.home-ftr-soclink a i {
    color: #B3A258 !important;;
    text-align: center;
    line-height: 47px;
    height: 50px;
    margin: 0px 5px;
    font-size: 22px;
    width: 50px;
    border-radius: 50%;
    background: #fff;
}
.home-ftr-soclink h5{
	color: #333333;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
}

/***********/

/*input[type="text"] {
  padding: 4px 0px 4px 20px;	
  color: #333;
  width: 100%;
  border: 0;
  box-sizing: border-box;
  letter-spacing: 1px;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
}

.effect-17 ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #3399ff;
  transition: 0.4s;
}
.effect-17:focus ~ .focus-border,
.has-content.effect-17 ~ .focus-border {
  width: 100%;
  transition: 0.4s;
  left: 0px;
}
.effect-17 ~ label {
  position: absolute;
  left: 15px;
  width: 100%;
  top: 0px;
  color: #aaa;
  transition: 0.3s;
  z-index: -1;
  letter-spacing: 0.5px;
}
.effect-17:focus ~ label,
.has-content.effect-17 ~ label {
  top: -16px;
  font-size: 12px;
  color: #3399ff;
  transition: 0.3s;
}*/


/*****************HOME ENQUIRE END********************/

/*********upper footer start************/
#upper-footer{
	background: #222222;
	padding: 10px 0px 20px 0px;
}
/****ftr-abt****/
.ftr-abt{
	padding: 30px 0px 0px 0px;
}
.ftr-abt img{
	height: 100px;
	width: 120px;
}
.ftr-abt p{
	padding: 0px 0px 0px 0px;
	font-size: 16px;
	color: #b3a258;
	letter-spacing: 0.5px;
	    margin-top: -47px;
}

/****ftr-link****/
.ftr-link h4{
	padding: 20px 0px 0px 0px;
	font-size: 25px;
	color: #fff;
	letter-spacing: 1px;
}
.ftr-link ul li{
	padding: 5px 0px;
	transition: all 0.3s ease-in-out;
}
.ftr-link ul li a i{
	color: #B3A258 ;
	font-weight: 900;
}
.ftr-link ul li a{
	color:#b1b1b1;
	text-decoration: none;
}
.ftr-link ul li:hover{
	padding-left: 5px;
	transition: all 0.3s ease-in-out;
}

/***ftr-adrs1***/
.ftr-adrs1{
	padding: 0px 0px 0px 45px;
}
.ftr-adrs1 h4{
	padding: 20px 0px 0px 0px;
	font-size: 25px;
	color: #fff;
	letter-spacing: 1px;
}
.ftr-adrs1 .map{
	display: flex;
}
.ftr-adrs1 .map img{
	height: 30px;
	width: 30px;
	display: inline-block;
}
.ftr-adrs1 .map p{
	text-transform: uppercase;
	font-size: 17px;
	padding: 3px 0px 0px 10px;
	color: #B3A258 ;
}
.ftr-adrs1 p i{
	color: #B3A258 ;
	font-size: 30px;
    padding-right: 10px;
}
.ftr-adrs1 p{
	line-height: inherit;
	display: inline-flex;
	letter-spacing: 1px;
	color: #b3a258;
}
/***ftr-adrs2***/
.ftr-adrs2{
	padding-top: 111px;
}
.ftr-adrs2 .map{
	display: flex;
}
.ftr-adrs2 .map img{
	height: 30px;
	width: 30px;
	display: inline-block;
}
.ftr-adrs2 .map p{
	text-transform: uppercase;
	font-size: 17px;
	padding: 3px 0px 0px 10px;
	color: #B3A258 ;
}
.ftr-adrs2 p i{
	color: #B3A258 ;
	font-size: 30px;
    padding-right: 10px;
}
.ftr-adrs2 p{
	line-height: 2;
	letter-spacing: 1px;
	color: #b1b1b1;
}
/***ftr-cnt***/
.ftr-cnt{
}
.ftr-cnt h4{
	padding: 20px 0px 0px 0px;
	font-size: 25px;
	color: #fff;
	letter-spacing: 1px;	
}
.ftr-cnt ul li a i{
	color: #B3A258 ;
	font-size: 30px;
    padding-right: 10px;
}
.ftr-cnt ul li a{
	color: #b1b1b1;
	letter-spacing: 0.5px;
	text-decoration: none;
	padding: 5px 0px; 
	display: inline-flex;
	line-height: inherit;
}
/***ftr-soc***/
.ftr-soc{
	padding: 4px 0px 0px 0px;
}
.ftr-soc a i{
	color: #B3A258 ;
    text-align: center;
    line-height: 42px;
    height: 40px;
    margin: 0px 5px;
    font-size: 22px;
    width: 40px;
    border-radius: 50%;
    background: #464646;
}  
.ftr-soc a i:hover{
	background: #fff;
}  
/*********upper footer end************/

/*********bottom footer start************/
#bottom-footer{
	background: #000;
	padding: 20px 0px 20px 0px;
}
.btm-ftr-one p{
	color: #fff;
	text-align: left;
	margin: 0;
	padding: 10px 0px 0px 0px;
	letter-spacing: 1px;
}
.btm-ftr-two p{
	color: #fff;
	text-align: right;
	margin: 0;
	padding: 10px 0px 0px 0px;
	letter-spacing: 1px;
}
.btm-ftr-two p a{
	text-decoration: none;
	color: #B3A258 ;
}
/*********bottom footer end************/

/************inner pages start********************/

/*****about us start******/
#about-one{
	background: #f3f3f1;
	margin-top: 145px;
	 /*background-image: url('../images/triangle2.png');*/
}
.about-one-cnct{
	padding: 40px 0px 40px 0px;
	
}
.about-one-cnct h3{
	font-size: 30px;
	color: #333333 !important;;
}
.about-one-cnct .divider{
	width: 50px;
    height: 3px;
    padding: 0;
    margin: 20px 0px 20px 0px;
    background: #B3A258 ;
    border: none;
}
.about-one-cnct p{
	line-height: 30px;
	text-align: left;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 5px 0px;
	    color: #333333;
}
.about-one-cnct img{
	/*height: 500px;*/
	    margin-top: 119px;
}

/*****about us end******/

/*****portfolio start*****/
#portfolio{
	padding: 0px 0px 50px 0px;
	background: #ffffff;
	margin-top: 100px;
}
#portfolio .section-title{
	color: #283593;
	font-weight: bold;
	font-size: 35px;
	text-align: center;
	letter-spacing: 2px;
	padding: 70px 0px 0px 0px;
    margin: 0;
}
#portfolio span{
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	letter-spacing: 1px;
}
#portfolio .bodr-btm {
	padding-top: 15px;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 5%;
    margin: 0 auto;
}
#portfolio .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    border-bottom: 3px solid #ca6702;
}
#portfolio p{
	padding: 10px 20px 10px 20px;
	text-align: center;
}
.port-fst-bx{
	text-align: center;
	padding: 40px 0px 40px 0px;
}
#filters li{
	float: none!important;
	display: inline-block;
}	
#filters li:hover span{
	background: #B3A258 1a;
}
#filters li span{
    border-radius: 20px;
    padding: 4px 20px 6px 20px;
	margin: 0px 5px;
	border: 1px solid #B3A258 ;
}
#filters li span.active {
    background: #0469af!important;
    border-radius: 20px;
    padding: 4px 20px 6px 20px;
    border: none;
}
#portfoliolist .portfolio{
	width: 31.33%!important;
	height: 235px;
}
.portfolio-wrapper{
	height: 100%;
}
.portfolio img{
	height: 100%;
}
.portfolio .label-bg {
    background: #0469afc2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.portfolio .label {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0px;
    top: 0;
    transform: scale(0);
    //-webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    //transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s ease-in-out;
}
.portfolio:hover .label{
	transform: scale(1);
	transition: all 0.5s ease-in-out;
}
#portfolio .prt-btn{
	 background: none;
    border: 2px solid #02020226;
    padding: 10px 10px;
    width: 150px;
    color: #989898;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 3px;
    border-radius: 5px;
    margin-top: 40px;
    cursor: pointer;
    transition: .5s;
}
#portfolio .prt-btn:hover{
	background: #B3A258 !important;;
	color: #fff;
	transition: .5s;
}
/*****portfolio end*******/

/*****portfolio-inner start*******/
#portfolio-inner-one{
	margin-top: 30px;
	padding: 70px 0px 70px 0px;
}
.port-inr-box h2{
	font-size: 40px;
	text-align: left;
	padding: 0px 0px 0px 0px;
	color: #B3A258 !important;;
}
.port-inr-box .bodr-btm {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 10%;
    margin-bottom: 30px;
}
.port-inr-box .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40%;
    border-bottom: 3px solid #ca6702;
}
.port-inr-box img{
	box-shadow: 3px 3px 20px rgba(0,0,0,0.10);
}
.port-inr-box h3{
	padding: 180px 0px 30px 0px;
	font-size: 30px;
	color: #333;
	letter-spacing: 1px;
}
.port-inr-box-2{
	padding: 105px 0px 0px 0px;
}
.port-inr-box-2 a{
	display: inline-block;
	text-decoration: none;
	padding: 10px 15px;
	border: 1px solid #B3A258 !important;;
	color: #B3A258 !important;;
	margin-top: 30px;
	width: 150px;
	text-align: center;
	font-size: 16px;
	letter-spacing: 1px;
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
}
.port-inr-box-2 a:first-child{
	background: #B3A258 !important;;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}
.port-inr-box-2 a:first-child:hover{
	border: 1px solid #B3A258 !important;;
	color: #B3A258 !important;;
	background: none;
	transition: all 0.3s ease-in-out;
}
.port-inr-box-2 a:hover{
	background: #B3A258 !important;;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}
.port-inr-box-2 h6{
	font-size: 19px;
	font-weight: 500;
	margin: 20px 0px 0px 0px;
}
.port-inr-box-2 p{
	font-size: 23px;
	font-weight: 600;
	color: #333;
	margin: 3px 0px 0px 0px;	
}
/*****portfolio-inner end*******/

/*******service start********/
#service-one{
	background: rgb(243 243 241);
	padding: 78px 0px 0px 0px;
	margin-top: 100px;
	 /*background-image: url('../images/triangle2.png');*/
}
#service-one .section-title{
	padding: 0px 0px 70px 30px;
	text-align: center;
	font-size: 40px;
	letter-spacing: 1px;
	color: #333 !important;;
	font-weight: 900;
}
.service-one-box  img{
	height: 348px;
    width: 459px;
    float: left;
	margin-top: 21px;
}
.service-one-box p{
	font-size: 17px;
	line-height: 30px;
	padding: 15px 0px 0px 0px;
	letter-spacing: 1px;
	margin:0px;
}
/**************/
#service-two{
	padding: 40px 0px 30px 0px;
	background: #ffffff; 
}
#service-two .section-title{
	padding: 30px 0px 20px 20px;
	text-align: center;
	letter-spacing: 1px;
	font-size: 40px;
	color: #B3A258 !important;;
	font-weight: 900;
}
#service-two .bodr-btm {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 10%;
    margin: 0 auto;
    margin-bottom: 50px;
}
#service-two .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40%;
    border-bottom: 3px solid #ca6702;
}
.service-two-box{
	margin: 20px 0px;
	padding: 20px 10px 10px 10px;
	transition: all 0.5s ease-in-out;
}
.service-two-box:hover{
	background: rgba(0,0,0,0.03);
	transition: all 0.5s ease-in-out;

}
.service-two-box:hover .fa-check{
	background: #B3A258 !important;;
	color: #fff!important;
	transition: all 0.5s ease-in-out;
}
.service-two-box .srv-icn{
	/* display: table-cell; */
	//vertical-align: middle;
}
.service-two-box .srv-cnt{
	display: table-cell;
	vertical-align: middle;
	position: relative;
}
.service-two-box .srv-cnt:after{
	content: '';
	position: absolute;
	top: 0px;
	left: 15px;
	height: 100%;
	/* border-left: 2px solid rgba(0,0,0,0.05); */
	transition: all 0.3s ease-in-out;
	transform: scale(1);
}
.service-two-box .srv-cnt:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 15px;
	height: 100%;
	/* border-left: 2px solid #B3A258 !important;; */
	transition: all 0.3s ease-in-out;
	transform: scale(0);
}
.service-two-box:hover .srv-cnt:before{
	content: '';
	position: absolute;
	transition: all 0.3s ease-in-out;
	transform: scale(1);
}
.service-two-box .srv-icn .fa-check{
	height: 24px;
    width: 21px;
    color: #B3A258 !important;
    border-radius: 50%;
    text-align: center;
    transition: all 0.5s ease-in-out;
    padding: 4px 0px 0px 0px;
    border: 2px solid #B3A258 !important;
	margin-left: -162px;

}
.service-two-box h4{
    padding: 0px 0px 20px 40px;
    font-size: 20px;
    margin: 0px;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
}
.service-two-box  p{
	padding: 0px 0px 0px 40px;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 25px;
}

/******/
#service-three {
	position: relative;
	width: 100%;
	height: 300px;
	padding: 50px 0px 30px 0px;
	overflow: hidden;
	border-top: 4px solid #b3a258;
	border-bottom: 4px solid #b3a258;
}
#service-three >img {
	position: absolute;
	bottom:0;
	left: 0;
	width:100%;
}
#service-three{
	//background: rgba(0,0,0,0.07);
	//padding: 50px 0px 40px 0px;
}
#service-three h3{
	padding: 0px 0px 40px 0px;
	font-size: 35px;
	margin: 0;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
	color: #B3A258 ;
}
#service-three .rqst-btn{
	text-align: center;
}
#service-three .rqst-btn button{
	padding: 13px 15px;
	background: #B3A258 !important;;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 1px;
	border: none;
	border-radius: 5px;
	margin: 0 auto; 
	transition: all 0.5s ease-in-out;
}
#service-three .rqst-btn button:hover{
	background: #B3A258 ;
	transition: all 0.5s ease-in-out;
}

/*******service end********/

/*******product start********/
.parla {
	position: relative;
	width: 100%;
	height: 300px;
	padding: 50px 0px 30px 0px;
	overflow: hidden;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
}
.parla img {
	position: absolute;
	bottom:0;
	left: 0;
	width:100%;
}
#prdt-header{
	margin-top: 127px;
	/* background-image: url(../images/prdtbg.jpg); */
	height: 162px;
	background-color: #f3f3f1;
}
#prdt-header .section-title{
	padding: 30px 0px 0px 20px;
	text-align: center;
	font-size: 40px;
	letter-spacing: 1px;
	color: #fff;
	font-weight: 900;
}
#prdt-header .undr-tlte{
	padding: 0px 0px 0px 0px;
	text-align: center;
	font-size: 15px;
	letter-spacing: 1px;
	color: #fff;
}

#product-one{
	background: #333333;
	color:#ffb679;
	/* margin-top: 100px; */
	padding: 50px 0px 0px 0px;
}
.product-box-one iframe{
	width: 500px; 
	float: left;
	height: 280px;
	margin-top: 40px;
	border-radius: 5px;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
}
#product-one .product-box-one h4{
	padding: 0px 0px 0px 20px;
	font-size: 30px;
	letter-spacing: 1px;
	font-weight: 600;
	color: #B3A258 !important;;
	margin: 0px 0px 20px 0px;
	text-align: center;
}
#product-one .product-box-one .divider{
    width: 50px;
    height: 3px;
    padding: 0;
    margin: 10px auto 30px;
    background: #B3A258 ;
    border: none;
}
#product-one .product-box-one span{
	padding: 0px 0px 0px 20px;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	line-height: 27px;
	letter-spacing: 0.8px;
}
#product-one .product-box-one p{
	padding: 0px 0px 0px 20px;
	font-size: 16px;
	line-height: 27px;
	letter-spacing: 0.8px;
	text-align: center;
}
#product-two{
	//background: #0469af0d;
	background: #ffffff;
	padding: 40px 50px 80px 50px; 
}
#product-two .divider{
    width: 50px;
    height: 3px;
    padding: 0;
    margin: -60px 0px 40px 0px;
    background: #B3A258 ;
    border: none;
    margin-left: auto;
    margin-right: auto;
}



#service-one .divider{

    display: block;
    height: 0px;
    border: 0;
    border-top: 1px solid #b3a258;
    border-bottom: 1px solid #b3a258;
    margin: 1em 0;
    padding: 0;
    width: 50px;
    margin-left: 50%;
    margin-top: -45px;
}

#product-two h4{
	margin: 0px;
	padding: 40px 0px 40px 0px;
	text-align: center;
	font-size: 30px;
	letter-spacing: 1px;
	font-weight: 600;
	/* color: #B3A258 !important;; */
}
.product-box-two{
	padding: 40px 0px 80px 0px;
}

/********/
.product-box-two img{
	width: 61%;
	float: left;
}
.product-box-two h6{
	padding: 40px 0px 20px 0px;
	font-size: 50px;
	margin: 0px;
	color: #333;
	text-align: center;
}
.product-box-two p{
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	letter-spacing: 0.5px;
}
/***********/
.product-box-three{
	padding: 40px 0px 40px 0px;
}
.product-box-three img{
	//height: 400px;
	width: 500px;
	float: right;
}
.product-box-three h6{
	padding: 40px 0px 20px 0px;
	font-size: 50px;
	margin: 0px;
	color: #333;
	text-align: center;
}
.product-box-three p{
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	letter-spacing: 0.5px;
}

/********/

#product-three{
	padding: 50px 0px 30px 0px;
	//background: #B3A258 ;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../images/abt-bcgrnd.jpg);
}
.product-three-box h6{
	font-weight: 900;
	color: #fff;
	font-size: 20px;
	text-align: left;
	margin: 0;
}
.product-three-box h4{
	padding: 0px 0px 10px 0px;
	color: #ffa84b;
	font-size: 50px;
	font-weight: 900;
	margin: 0;
	text-align: left;
}
.product-three-box p{
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	text-align: left;
}
.product-three-box .rqst-btn{
	float: right;
	background: #fff;
	border: none;
	margin-top: 40px;
	padding: 15px 10px;
	color: #B3A258 !important;;
	font-weight: 600;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
}
.product-three-box .rqst-btn:hover{
	background: #ffa84b;
	color: #fff;
	transition: all 0.5s ease-in-out;
}
.modal::-webkit-scrollbar {
    width: 0px;
}
.modal-header{
	position: relative;
}
.modal-header img{
	position: absolute;
    top: -25px;
    left: 37%;
    height: 80px;
    border-radius: 45%;
    width: 110px;
}
.modal-body{
	padding: 30px 20px 20px 20px;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    padding: 5px 0px 0px 0px;
    font-size: 22px;
    font-weight: 600;
    color: #B3A258 !important;;
}
.fst-frm .frm-box{
	position: relative;
}
.fst-frm .frm-box input{
	width: 100%;
	margin: 0px 0px 40px 0px;
	padding: 10px 10px 5px 10px;
	border: none;
	border-bottom: 2px solid rgba(0,0,0,0.14);
	transition: all 0.3s ease-in-out;
}
.fst-frm .frm-box textarea{
	width: 100%;
	padding: 10px 10px;
	margin: 0px 0px 40px 0px;
	border: none;
	border-bottom: 2px solid rgba(0,0,0,0.14);
	transition: all 0.3s ease-in-out;
}
.fst-frm .frm-box label{
	position: absolute;
	top: 8px;
	left: 10px;
	font-size: 15px;
	letter-spacing: 1px;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
}
.fst-frm .frm-box input:focus ~ label,
.fst-frm .frm-box textarea:focus ~ label,
.fst-frm .frm-box input:valid ~ label,
.fst-frm .frm-box textarea:valid ~ label{
	transition: all 0.3s ease-in-out;
	top: -20px;
	left: 0px;
	font-size: 16px;
	font-weight: 600;
	color: #B3A258 !important;;
}
.fst-frm .frm-box input:focus ,
.fst-frm .frm-box textarea:focus ,
.fst-frm .frm-box input:valid ,
.fst-frm .frm-box textarea:valid {
	border-bottom: 2px solid #B3A258 !important;;
}
/**********************/
/*******product end********/

/******contact start*******/
#enquery{
	margin-top: 100px;
	padding: 0px 0px 60px 0px;
	background: #ffffff;
}
#enquery .section-title{
	padding: 60px 0px 40px 0px;
	font-size: 40px;
	color: #B3A258 !important;;
}
#enquery .divider{
    width: 70px;
    height: 3px;
    padding: 0;
    margin: 0px 0px 40px 8px;
    background: #B3A258 ;
    border: none;
}
.enquire-box{
	box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
	padding: 50px 20px 50px 20px;
}
.cnct-fst-frm .cnct-frm-box{
	position: relative;
}
.cnct-fst-frm .cnct-frm-box input{
	width: 100%;
	margin: 0px 0px 50px 0px;
	padding: 10px 10px 5px 10px;
	border: none;
	border-bottom: 2px solid rgba(0,0,0,0.14);
	transition: all 0.3s ease-in-out;
}
.cnct-fst-frm .cnct-frm-box textarea{
	width: 100%;
	padding: 10px 10px;
	margin: 0px 0px 50px 0px;
	border: none;
	height: 120px;
	border-bottom: 2px solid rgba(0,0,0,0.14);
	transition: all 0.3s ease-in-out;
}
.cnct-fst-frm .cnct-frm-box label{
	position: absolute;
	top: 5px;
	left: 10px;
	font-size: 15px;
	letter-spacing: 1px;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
}
.cnct-fst-frm .cnct-frm-box input:focus ~ label,
.cnct-fst-frm .cnct-frm-box textarea:focus ~ label,
.cnct-fst-frm .cnct-frm-box input:valid ~ label,
.cnct-fst-frm .cnct-frm-box textarea:valid ~ label{
	transition: all 0.3s ease-in-out;
	top: -20px;
	left: 0px;
	font-size: 16px;
	font-weight: 600;
	color: #B3A258 !important;;
}
.cnct-fst-frm .cnct-frm-box input:focus ,
.cnct-fst-frm .cnct-frm-box textarea:focus ,
.cnct-fst-frm .cnct-frm-box input:valid ,
.cnct-fst-frm .cnct-frm-box textarea:valid {
	border-bottom: 2px solid #B3A258 !important;;
}
.cnct-frm-btn{
	text-align: center;
}
.cnct-frm-btn button{
	background: #B3A258 !important;;
	padding: 15px 40px;
	border: none;
	color: #fff;
	font-weight: 600;
	border-radius: 5px;
	margin-top: 10px;

}

#map{
	border-top: 5px solid #B3A258 !important;;
}
#map iframe{
	height: 450px;
	width: 100%;
}

/*****************/
#contact .section-title{
	padding: 0px 0px 20px 0px;
	font-size: 40px;
	color: #B3A258 !important;;
	text-align: center;
}
#contact .bodr-btm {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 10%;
    margin: 0 auto;
}
#contact .bodr-btm:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40%;
    border-bottom: 3px solid #ca6702;
}
#contact .cntct{
	padding-top: 70px;
}
#contact .mil{
	padding-top: 70px;
}
#contact .mbile{
	max-width: 21%;
	padding-top: 70px;
}


.contact-box{
	width: 100%;
	padding-left: 20px;
}
.add-bx-one{
	display: table-cell;
	padding-right: 20px;
	padding-top: 20px;
}
.add-bx-two{
	display: table-cell;
	vertical-align: middle;
	padding-left: 30px;
	border-left: 1px solid rgba(0,0,0,0.12);
}
#contact{
	background: #ffffff;
	padding: 60px 0px 80px 0px;
}
/**********/
.contact-box .add-bx-one .fa-map-marker{
	color: #B3A258 !important;;
	font-size: 30px;
}
.contact-box .add-bx-two img{
	height: 30px;
	width: 30px;
	margin: 30px 0px 0px 0px;
}
.contact-box .add-bx-two h3{
	color: #000;
	padding: 20px 0px 10px 0px;
	font-weight: 900;
	font-size: 19px;
	letter-spacing: 1px;
	margin: 0;
}
.contact-box .add-bx-two p{
	font-size: 17px;
	letter-spacing: 1px;
	line-height: 30px;
	color: #585858;
}

/***********/
.mail .add-bx-one .fa-envelope{
	color: #B3A258 !important;;
	font-size: 30px;
	vertical-align: 
}
.mail .add-bx-two{
	margin: 0px 0px 0px 0px;
}
.mail .add-bx-two h3{
	color: #000;
	padding: 20px 0px 10px 0px;
	font-weight: 900;
	font-size: 19px;
	letter-spacing: 1px;
	margin: 0;
}
.mail .add-bx-two a{
	font-size: 17px;
	letter-spacing: 1px;
	text-decoration: none;
	line-height: 30px;
	color: #585858;
	display: block;
}

/***********/
.mobile .add-bx-one .fa-mobile{
	color: #B3A258 !important;;
	font-size: 30px;
}
.mobile .add-bx-two h3{
	color: #000;
	padding: 20px 0px 10px 0px;
	font-weight: 900;
	font-size: 19px;
	letter-spacing: 1px;
	margin: 0;
}
.mobile .add-bx-two a{
	font-size: 17px;
	letter-spacing: 1px;
	text-decoration: none;
	line-height: 30px;
	color: #585858;
	display: block;
}
/******contact end*******/

/********contact two************/
.contact-box-2 .fa-map-marker{
	color: #B3A258 !important;;
	font-size: 40px;
	display: block;
	text-align: center;
}
.contact-box-2 .map-div img{
	height: 40px;
	width: 40px;
}
.contact-box-2 .map-div h3{
	color: #000;
	padding: 20px 0px 10px 0px;
	font-weight: 900;
	font-size: 19px;
	letter-spacing: 1px;
	margin: 0;
}
.contact-box-2 .map-div{
	display: flex;
}

/********contact two************/

/************inner pages end********************/

/*****************MENU START********************/


#menu{
	padding: 70px 0px;
}

.main {
	margin: 0 auto; 
	width:100%:
}

.menu-box {
	background: #efefef; 
	color: #9b0304;
	box-shadow:0px 0px 5px #c1c1c1;
}

.menu-box > div {
	display: none; 
	padding: 20px 25px 5px;
}

.main input {
	display: none;
}

.main label {
	background:#9b0304;
	color:#fff;
	display: inline-block; 
	padding: 15px 79px; 
	font-weight: 600; 
	font-size:15px;
	text-align: center;
	margin:0px;
	text-transform:uppercase;
	border-radius:5px;
}

.main label:hover {
	color: #dadada; 
	cursor: pointer;
}

.main input:checked + label {
	background: #efefef; 
	color: #9b0304;
	box-shadow:0px 0px 5px #c1c1c1;
}

#tab1:checked ~ .menu-box #menu-box1,
#tab2:checked ~ .menu-box #menu-box2,
#tab3:checked ~ .menu-box #menu-box3,
#tab4:checked ~ .menu-box #menu-box4 {
	  display: block;
}
.menu-item {
	display:flex;
	background:#ffe4c4;
	border-right:5px solid #9b0304;
	margin:10px 0px;
}
.menu-item  img{
	height:40px;
	width:40px;	
}
.menu-item p{
	font-size:17px;
	text-transform:capitalize;
	padding-left:20px;
	line-height:42px;
}
/*****************MENU END********************/

/*****************FOOTER START********************/   

.footer_wrapper {
    background-image:url("../img/footer%20image.html");
	background-size:cover;
	background-position:center;
}
.footer_wrapper h4 {
	margin:20px 0px;
	text-align:center;
	text-transform:uppercase;
}
.footer_bottom {
    border-top: 1px solid #3C3A3A;
    padding: 25px 0;
}

.footer_bottom span {
    display: block;
    font-size: 14px;
    color: #cccccc;
    text-align: left;
}

.footer_bottom font {
	float:right;
}

.footer_bottom span a {
    display: inline-block;
    color: #3399cc;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.footer_bottom span a:hover {
    color: #fff;
}
/********footer contact****************/
.ftr-abt h4{
	color:#feb578;
	text-transform:uppercase;
	margin:30px 0px 15px 0px;
	text-align:left;
}
.ftr-abt p{

}
/************************************/
.contact-content p{
	font-family:'Raleway', sans-serif;
	font-size:17px;
	color:#ffffff94;
	line-height:25px;
	padding-bottom:15px;
	letter-spacing:1px;
	
}
.contact-content p a{
	color:#ffffff94;
}
.contact-content p a:hover{
	cursor:pointer;
	color:#ffb679;
}
.contact-content p:hover{
	color:#ffb679;
	cursor:pointer;
}
.contact-content p i{
	color: #B3A258 ;
	font-size:20px;
}
.contact-content img{
	height:50px;
	width:200px;
	border-radius:3px;
	opacity:0.7;
	transition:all 0.5s;
}
.contact-content img:hover{
	opacity:1;
	transition:all 0.5s;
}
/********footer form****************/
.footer-form{
	margin-top:10px;
	height:auto;
	width:100%;
}
.footer-form h3{
	background-image:url("../img/abtimg.html");
	text-align:center;
	background-size:cover;
	padding:50px 0px;
	text-transform:uppercase;
	font-size:25px;
	color:#B3A258 ;
	margin-bottom:0;
}
.frm-insd{
	background:#000;
	height:auto;
	width:100%;	
}
.frm-insd >input[type="text"]{
	height:40px;
	width:95%;
	padding:10px 10px;
	margin:8px 5px 0px 9px;
	background:#ffffffeb;
	border:none;
	text-transform:uppercase;
	color:#000!important;
}
.frm-insd >input[type="email"]{
	height:40px;
	width:95%;
	padding:10px 10px;
	margin:8px 5px 0px 9px;
	background:#ffffffeb;
	border:none;
	text-transform:uppercase;
	color:#000!important;
}
.frm-insd >input[type="date"]{
	height:40px;
	width:95%;
	padding:10px 10px;
	margin:8px 5px 0px 9px;
	background:#ffffffeb;
	border:none;
	text-transform:uppercase;
	color:#000!important;
}
.frm-insd textarea{
	height:80px;
	width:95%;
	padding:10px 10px;
	margin:8px 5px 0px 9px;
	background:#ffffffeb;
	border:none;	
	text-transform:uppercase;	
}
.frm-insd button{
	position:relative;
	height:50px;
	width:95%;
	background:#8abd01;
	border:none;
	color:white;
	margin:8px 5px 15px 5px;
	font-size:17px;
	text-transform:uppercase;
	transition:all 0.2s;
	z-index:1;
}
.frm-insd button:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	background:#7dab04;
	width:0%;
	height:50px;
	transition:all 0.2s;
	z-index:-1;
}
.frm-insd button:hover:before{
	content:'';
	position:absolute;
	height:50px;
	width:100%;
	transition:all 0.2s;
	z-index:-1;
}
/********footer testimonial****************/
.footer-testimonial{
	position:relative;
	margin:11px 20px;
	border:1px solid #fff;
	width:100%;
	height:480px;
}

/*****************FOOTER END********************/

.social_links {
    padding:0;
    margin: 0;
    display: block;
    overflow: hidden;
    list-style: none;
}

.social_links li {
    float: left;
    margin-right: 4px;
}

.social_links li a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    color: #fff;
}

.social_links li a:hover, .social_links li a:focus {
    text-decoration: none;
    border-radius: 80px;
}

.twitter a:hover {
    color: #55acee;
}

.facebook a:hover {
    color: #3b5998;
}

.pinterest a:hover {
    color: #cb2026;
}

.gplus a:hover {
    color: #dd4b39;
}
 
.input-text {
    padding: 15px 16px;
    border: 1px solid #ccc;
    width: 100%;
    height: 50px;
    display: block;
    border-radius: 4px;
    font-size: 15px;
    color: #aaa;
    margin: 0 0 15px 0;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.input-text:focus {
    border: 1px solid #fff;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
}

.input-text.text-area {
    height: 230px;
    resize: none;
    overflow: auto;
    
}

.input-btn {    
    width: 175px;
    height: 50px;
    letter-spacing: 0px;
    background: #3399cc;
    border-radius: 3px;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border: 0px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.input-btn:hover {
    background: #fff;
    color: #222;
}

/* Footer
---------------------------------*/


/* Animation Timers
---------------------------------*/
.delay-02s {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.delay-03s {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

.delay-04s {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.delay-05s {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

.delay-06s {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.delay-07s {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}

.delay-08s {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

.delay-09s {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}

.delay-1s {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.delay-12s {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}
	
.section-title h2 {
	font-size: 40px;
    color: #bb5832;
    line-height: 52px;
	padding-bottom:10px;
    margin: 0 0 26px 0;
    font-family: 'Raleway', sans-serif;
    text-align: left;
}
	
	
.project-image-slider .bx-wrapper .bx-next {
    background: url("images/project_slider_right.html") no-repeat;
    background-size: 35px 65px;
    opacity: 0.3;
    right: -90px;
}

.project-image-slider .bx-wrapper .bx-prev {
    background: url("images/project_slider_left.html") no-repeat;
    background-size: 35px 65px;
    opacity: 0.3;
    left: -90px;
}

.project-image-slider .bx-wrapper .bx-next:hover, .project-image-slider .bx-wrapper .bx-prev:hover {
    opacity: 1;
    background-position: 0;
}

.project-image-slider .bx-wrapper .bx-controls-direction a {
    height: 65px;
    margin-top: -33px;
    outline: 0 none;
    position: absolute;
    text-indent: -9999px;
    top: 50%;
    width: 35px;
    z-index: 100;
}

	
.project-description {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.visit-project {
    width: 100%;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding: 55px 0 20px 0;
}

.project-description h5 {
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 5px;
}
	
		
	
#cycle-loader {
    height: 32px;
    left: 50%;
    margin: -8px 0 0 -8px;
    position: absolute;
    top: 50%;
    width: 32px;
    z-index: 999;
}

#arrow_left {
    top: 50%;
    height: 60px;
    position: absolute;
    left: 30px;
    width: 32px;
    z-index: 1000;
    margin-top: -30px;
}

#arrow_right {
    top: 50%;
    height: 60px;
    position: absolute;
    right: 30px;
    width: 32px;
    z-index: 1000;
    margin-top: -30px;
}

#arrow_left:hover, #arrow_right:hover {
    margin-top: -28px;
}

#arrow_left:active, #arrow_right:active {
    margin-top: -28px;
}

div.mc-image {
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.in-slide-content div.info-slide {
    background: #FFF url(images/info.html) no-repeat left bottom;
    background-size: 46px 46px;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    margin: 0;
    display: block;
    text-indent: 10px;
    -moz-border-radius: 23px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    cursor: pointer;
    z-index: 1000;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=0.5);
    opacity: 0.5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.in-slide-content div.info-slide:hover {
    width: 200px;
    background: #FFF;
    position: absolute;
    bottom: 40px;
    padding: 10px 20px;
    text-indent: 0px;
    moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    z-index: 1000;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=1);
    opacity: 1;
}

.in-slide-content h2, .in-slide-content p {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 24px;
}

.in-slide-content h2 {
    font-size: 14px;
    color: #444;
    text-shadow: none;
    font-weight: normal;
    text-transform: uppercase;
    z-index: 1001;
    position: relative;
    white-space: nowrap;
}

.info-slide p {
    color: #aaa;
    font-size: 13px;
    text-shadow: none;
    z-index: 1001;
    position: relative;
    margin: 0;
    font-weight: normal;
    white-space: nowrap;
}

.in-slide-content div.info-slide h2 {
    display: none;
    padding: 10px 10px 0 10px;
}

.in-slide-content div.info-slide p {
    display: none;
    padding: 0px 10px 10px 10px;
}

.in-slide-content div.info-slide:hover h2, .in-slide-content div.info-slide:hover p {
    display: inherit;
    padding: 0;
}

/*
   Media Queries
--------------------------- */

@media (max-width: 991px) {
.navbar-brand img { 
       top: 1px;
    left: 17px;
    height: auto;
    width: 280px;
}}


@media (max-width: 768px) {
.container{
	width: 100%!important;
}
/**header**/
.navbar{
	min-height: 60px;
}
.navbar-toggler{
	color: #fff;
	padding: 15px 10px;
	position: absolute;
    right: 0px;
    top: 0px;
}
.navbar-toggler-icon{
	line-height: 26px;
}
.navbar-nav .nav-item {
    padding: 15px 15px;
}
.navbar-brand img {
	margin-top: 5px; 
    height: auto;
    width: 180px;
}
.navbar-collapse {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    max-height: 500px;
    overflow-y: auto;
    padding: 0px 0px 30px 0px;
}
.scroll .navbar-brand img {
    position: absolute;
    top: -48px;
    left: 20px;
    height: auto;
    width: 80px;
    transition: all 0.5s ease-in-out -webkit-transition: all 0.5s ease-in-out;
}
.navbar-nav .nav-item .nav-link:hover:before {
    width: 50%;
    left: 25%;
    transform: scaleX(1);
}
.navbar-nav .nav-item .nav-link:before {
    border: 1px solid #B3A258 ;
    transform: scaleX(0);
}
.product-list {
    position: inherit!important;
    top: 10px!important;
    right: 0px;
    left: 0px;
        width: 77%;
}
.drpdwn-itm-fst,
.drpdwn-itm-scnd,
.drpdwn-itm-thrd{
    display: inherit;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0px 10px 0px 10px;
}
.drpdwn-itm-thrd{
	padding: 0px 10px 40px 10px; 
}
.navbar-nav .drp-mnu-2 {
    left: 10px;
    right: 10px;
}
/**index**/
#demo {
    margin: 62px 0px 0px 0px;
}
.carousel-item {
    height: auto;
}
.carousel-caption {
    top: 10%;
}
.carousel-caption h3 {
    font-size: 13px;
}
.carousel-caption a {
    font-size: 14px;
    padding: 5px 5px;
    margin: 5px 0px 0px 0px;
}
.owl-one .owl-nav .owl-prev{
	left: 0px;
}
.owl-one .owl-nav .owl-next{
	right: 0px;
}
/**/
#home-service {
    padding: 15px 0px 50px 0px;
    background: #333;
}
#home-service .section-title {
    font-size: 28px;
    margin: 0px;
}
#home-service .bodr-btm {
    max-width: 20%;
}
#home-service p {
    padding: 25px 0px 0px 0px;
}
.home-service-box{
	padding: 30px 10px 50px 10px;
}
/**/
#hm-aboutus .section-title{
	font-size: 28px;
}
#hm-aboutus .bodr-btm {
    padding-top: 5px;
    max-width: 20%;
}
.hm-about-box p {
    font-size: 18px;
    line-height: 1.4;
    color: #ffffffc7;
    letter-spacing: 0px;
    padding: 30px 0px 0px 0px;
}
.hm-about-box img {
    padding: 50px 0px 0px 0px;
    height: auto;
}
/**/
#hm-portfolio {
    padding: 40px 0px 50px 0px;
}
#hm-portfolio .section-title {
    font-size: 28px;
    padding: 0px;
}
#hm-portfolio .bodr-btm {
    padding-top: 5px;
    max-width: 20%;
}
#hm-portfolio .sec-cncnt {
    padding: 25px 0px 0px 0px;
}
.port-fst-bx {
    text-align: center;
    padding: 20px 0px 40px 0px;
}
#portfoliolist .portfolio {
    width: 100%!important;
    height: 250px;
    border: 1px solid rgba(0,0,0,0.20);
    border-radius: 5px;
}
/**/
#clients{
	padding: 40px 0px 40px 0px;
}
#clients .section-title {
    font-size: 28px;
    padding: 0px 0px 0px 0px;
}
#clients .bodr-btm {
    padding-top: 10px;
    max-width: 20%;
}
#clients p {
    padding: 30px 0px 25px 0px;
}
/**/
#technologies .section-title{
	font-size: 28px;
}
#technologies .bodr-btm {
    padding-top: 5px;
    max-width: 20%;
}
#technologies .sec-cnct {
    padding: 35px 0px 0px 0px;
}
.ftr-link ul{
	padding: 0px;
}
.ftr-adrs1 {
    padding: 0px 0px 0px 0px;
}
.ftr-cnt ul{
	padding: 0px;
}
.ftr-soc {
    padding: -2px 0px 0px 40px;
}
#bottom-footer {
    padding: 0px 0px 15px 0px;
}
.btm-ftr-one p,
.btm-ftr-two p{
    text-align: center;
}
/***About Us***/
#about-one {
    margin-top: 60px;
}
.about-one-cnct {
    padding: 0px 0px 40px 0px;
}
.about-one-cnct img {
    height: auto;
}
/***Product Page***/
#prdt-header {
    margin-top: 60px;
    height: auto;
    padding: 0px 0px 40px 0px;
    background-size: cover;
    background-position: center;
}
#prdt-header .section-title {
    padding: 30px 0px 0px 20px;
    text-align: center;
    font-size: 35px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 900;
}
#product-two {
    padding: 40px 0px 80px 0px;
}
.product-box-two h6,
.product-box-three h6 {
    padding: 0px 0px 20px 0px;
    font-size: 35px;
}
.product-box-two {
    padding: 40px 0px 0px 0px;
}
.product-box-three {
    padding: 40px 0px 0px 0px;
}
.parla{
	background: url(../images/web-bg.jpg);
	height: 330px;
}
.parla img{
	display: none;
}
/***service page***/
#service-one {
    padding: 23px  0px 0px 0px;
    margin-top: 60px;
}
#service-one .section-title {
    font-size: 30px;
}
.service-one-box img {
    height: auto;
    width: 100%;
    float: none;
}
#service-two .section-title {
    padding: 0px 0px 20px 20px;
    font-size: 28px;
    margin: 0px;
}
#service-two .bodr-btm {
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
    max-width: 20%;
    margin: 0 auto;
    margin-bottom: 0px;
}
.service-two-box {
    margin: 20px 0px;
    padding: 20px 0px 10px 0px;
    transition: all 0.5s ease-in-out;
}
#service-three h3 {
    color: #fff;
}
#service-three{
	background: url(../images/web-bg.jpg);
}
#service-three >img{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    top: 0px;
    height: 100%;
    display: none;
}
/***Contact Us***/
#enquery .section-title {
    padding: 0px 0px 25px 0px;
    font-size: 35px;
}
#contact .bodr-btm {
    max-width: 20%;
}
#contact .cntct {
    padding-top: 50px;
}
.contact-box {
    width: 100%;
    padding-left: 0px;
}
#contact .mil {
    padding-top: 20px;
}
#contact .mbile {
    max-width: 100%;
    padding-top: 30px;
}
.add-bx-one {
    display: block;
    padding-right: 0px;
    padding-top: 0px;
    margin: 0px 0px 10px 0px;
}
.add-bx-two {
    display: block;
    vertical-align: middle;
    padding-left: 0px;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.12);
}


}

@media (min-width: 992px) {
.nav-item:hover .dropdown-menu{
	
	/*display: block;*/
    /*transition: all 0.5s ease-in-out;*/
    /*animation: 0.4s drpdwn;*/
}

/* ...........customised................ */


    /* Style for the gallery section */


/* Style for each image box */
.product-box {
  width: 100%;
  height: 235px; /* Set a fixed height for each box */
  box-sizing: border-box;
  text-align: center;
  /* background-color: #ffffff; Set background color for each box */
  padding: 20px; /* Add padding inside each box */
  border-radius: 8px; /* Add rounded corners to the box */
  box-shadow: 2px 2px 15px rgb(179 162 88 / 47%);  /* Add a subtle box shadow */
  margin-bottom: 20px; /* Add space between each box */
  /* margin-left: 59px; 
  margin-right: 10px;  */
}

.product-box img {
  display: block;
  margin: 0 auto;
  max-width: 100%; /* Make sure the image doesn't overflow the box */
  height: auto;
  border-radius: 8px; /* Add rounded corners to the image */
}

.product-box h2 {
  /* margin-top: 10px; Adjust spacing between image and title */
  font-size: 1.2em;
  /* margin-bottom: 10px; Adjust spacing between title and bottom */
}

@media (min-width: 768px) {
  /* Set up responsive columns for larger screens */
  .product-box {
       /* width: 66%;  */
    margin-right: 20px; /* Add spacing between boxes */
  }

  .product-box:last-child {
    margin-right: 0; /* Remove margin for the last box in a row */
  }
}

/* .........product details............ */
     /* Style for the gallery section */


/* Style for each image box */
.product-box {
  width: 100%;
  height: 235px; /* Set a fixed height for each box */
  box-sizing: border-box;
  text-align: center;
  /* background-color: #ffffff; Set background color for each box */
  padding: 20px; /* Add padding inside each box */
  border-radius: 8px; /* Add rounded corners to the box */
  box-shadow: 2px 2px 15px rgb(179 162 88 / 47%);  /* Add a subtle box shadow */
  margin-bottom: 20px; /* Add space between each box */
  /* margin-left: 59px; 
  margin-right: 10px;  */
}

.product-box img {
  display: block;
  margin: 0 auto;
  max-width: 100%; /* Make sure the image doesn't overflow the box */
  height: auto;
  border-radius: 8px; /* Add rounded corners to the image */
}

.product-box h2 {
  /* margin-top: 10px; Adjust spacing between image and title */
  font-size: 1.2em;
  /* margin-bottom: 10px; Adjust spacing between title and bottom */
}

.product-image-frame {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product-image-frame img {
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
}


@media (min-width: 768px) {
  /* Set up responsive columns for larger screens */
  .product-box {
       /* width: 66%;  */
    margin-right: 20px; /* Add spacing between boxes */
  }

  .product-box:last-child {
    margin-right: 0; /* Remove margin for the last box in a row */
  }
  .text-gold {
    color: #b3a258 !important;
}

}
 #service-two {
    text-align: center;
    /* padding: 0px 0px 0px 145px; */
}

#service-two .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-two-box {
    box-shadow:  2px 2px 15px rgb(179 162 88 / 47%); /* Adjust the shadow as needed */
    margin-bottom: 30px; /* Adjust the margin as needed */
    height: 300px; /* Adjust the height as needed */
    position: relative;
        border-radius: 8px;
}
.service-two-box .srv-cnt {
    
    top: 50%;
    transform: translateY(-50%);
    text-align: center;

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px; /* Adjust the padding as needed */
    background-color: rgba(255, 255, 255, 0.9); /* Adjust the background color and transparency as needed */
  
}
.service-two-box img {
    max-height: 80%; /* Adjust the image height as a percentage of the box height */
}
/* ..........contact ........... */

/* Computer */
.grid_1 { width: 6.5%; } 
.grid_2 { width: 15%; } 
.grid_3 { width: 23.5%; } 
.grid_4 { width: 32%; } 
.grid_5 { width: 40.5%; }
.grid_6 { width: 49%; } 
.grid_7 { width: 57.5%; } 
.grid_8 { width: 66%; } 
.grid_9 { width: 74.5%; } 
.grid_10 { width: 83%; } 
.grid_11 { width: 91.5%; } 
.grid_12 { width: 100%; } 

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	margin: 0 2% 1% 0;
	float: left;
	display: block;
}

.alpha{margin-left:0;}
.omega{margin-right:0;}

.container{
	width: 90%; /*width: 1000px;*/
	max-width: 1000px;
	margin: auto;
	
}



.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0}.clearfix:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;width:0;height:0}* html .clearfix,*:first-child+html .clearfix{zoom:1}




/* Mobile */
@media screen and (max-width : 480px) {

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	width:100%;
}

}


/* Slide 5 */
#slide5 {
    
    margin-top: -10%;

}
.contactmap {
	background: #B3A258;
	border-radius: 4px;
}
#slide5 h2 {
	margin: 13px 0 0 30px;
	color: #fff;
	font-size: 1.5em;
}
#slide5 p {
	line-height: 150%;
	color: #fff;
	padding: 5px 0 0 30px;
}
.contactype {
	position: relative;
	cursor: pointer;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
	text-align: center;
	background-color: #c3c3c3;
	border-radius: 5px;
	height: 100px;
	float: left;
	transition: all .3s ease-in;
}
.contactype p {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -7.5px;
	left: 0;
	padding: 0 !important;
}
.contactype:hover,.contactype.active {
	background-color: #B3A258;
}
.contactype div {
	font-size: 4em;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	transition: all .2s ease-in;
}
.contactmap .grid_8.omega .grid_6 {
	margin: 40px 0 0 220px;
}
.contactmap .grid_8.omega .grid_6 .btn {
	margin-top: 10px;
	border: 1px solid rgba(0,0,0,.1);
	margin-left: 0;
}
.bus-point {
	display: block;
	margin-bottom: 3px;
}
#contact-bus .grid_6.omega,
#contact-car .grid_6.omega {
	height: 200px;
	overflow-x: hidden;
	position: relative;
}
.contactmap .information span {
	font-weight: bold;
}
#contact-phone .grid_6.omega {
	font-size: 2.5em;
	margin-top: 100px;
}
#contact-mail .grid_6.omega {
	padding-top: 40px;
}
.btn {
	display: inline-block;
	padding-left: 56px;
	color: #626263;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	background-color: #fff;
	padding: 16px 24px 17px 24px;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	text-shadow: none;
	line-height: 20px;
	text-align: center;
	border-radius: 5px;
	margin-left: 2.5em;
}
.btn span {
	font-size: 1em;
}
footer {
	position: relative;
	text-align: center;
	display: block;
}
footer hr {
	height: 0;
	width: 100%;
	display: block;
	position: absolute;
	background-color: #bbb;
	top: 40%;
	left: 0;
	z-index: 1;
}
.btn2 {
	color: #626263;
	background: #f7f5f2;
	border: 1px solid #bbb;
	box-shadow: 0 1px rgba(0,0,0,0);
	padding: 14px 24px;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	border-radius: 5px;
	display: inline-block;
	line-height: 20px;
	text-align: center;
	position: relative;
	z-index: 2;
}
.contactmap {
	/* height: 361px; */
	margin-bottom: 10%;
}
.contactmap .grid_8.omega {
	background-color: #fff;
	height: 100%;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
#contact-car .grid_10.omega {
	margin: 0 auto;
	display: block;
}
#map_canvas {
	margin: 0;
	padding: 0;
	height: 100%;
}
.submit {
	display: none;
	margin: 0 auto;
	width: auto;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	padding: 15px 21px;
	border: 1px solid rgba(255,255,255,0.4);
	background: transparent;
	border-radius: 9px;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color .4s;
}
.submit:hover {
	color: #fff;
	border-color: #fff;
}
.callus {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 240px;
	margin-left: -155px;
	border-radius: 5px 5px 0 0;
	background-color: rgba(255,255,255,.8);
	color: #000;
	line-height: 1.5em;
	font-size: 1.5em;
	z-index: 99;
	padding: 10px 35px;
	text-align: center;
	animation-delay: 4s;
}
.callus:hover {
	background-color: #fff;
}


#contact-bikeClick.active div {
	font-size: 10em;
	color: #c3c3c3;
	top: 125px;
	left: -115px;
	-webkit-perspective: 10em;
	-moz-perspective: 10em;
	-ms-perspective: 10em;
	perspective: 10em;
	transform: rotateY(180deg);
	transform-style: preserve-3d;
}
#contact-busClick.active div {
	font-size: 10em;
	color: #c3c3c3;
	top: 125px;
	left: 25px;
}
#contact-carClick.active div {
	font-size: 10em;
	color: #c3c3c3;
	top: 125px;
	left: 200px;
}
#contact-bikeClick.active div {
	left: -100px !important;
}
#contact-phoneClick.active div {
	left: -300px !important;
}
#contact-mailClick.active div {
	left: -440px !important;
}
#contact-mailClick.active div {
	font-size: 10em;
	color: #c3c3c3;
	top: 145px;
	left: -440px;
}
#contact-phoneClick.active div {
	font-size: 10em;
	color: #c3c3c3;
	top: 145px;
	left: -315px;
}
/* .................... */

                  #id_loo2 {
                display: none;
                top: -77px;
                margin-left: -2px;
                    }
                    
                    /* Mobile Responsive Styles */
                    @media only screen and (max-width: 600px) {
                        #id_loo2 {
                            display: block; /* Adjust the display property for mobile screens */
                            top: -25px ;width: 180px; /* Adjust the top position for mobile screens */
                            margin-left: 0; /* Adjust the margin-left for mobile screens */
                        }
                    }
/* .......................... */

.table,
.table tbody,
.table tr,
.table td {
    background-color: #f3f3f1 !important;
}
.table thead th {
    background-color: #342f2f !important;
}
.custom-table {
    width: 90%;
    margin: 0 auto;   /* centers left & right */
}


    table {
    border-collapse: collapse;
    width: 89%; 
    background-color: #2f2f2f !important;
}

th, td {
    border: 1px solid #b3a258 !important;
    color: #333 !important;
    padding: 14px;
    vertical-align: middle;
}

th {
    background-color: #342f2f !important;
    font-weight: 600;
    color:  #b3a258 !important;

}

/* Hover effect like image */
tr:hover {
    background-color: #3a3a3a;
}
@media (max-width: 768px) {
    table {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    td:first-child, th:first-child {
    text-align: center;
    width: 80px;
}

}
 
#core-services .bodr-btm {
   width: 80px;
    height: 3px;
    background-color: rgb(179, 162, 88); /* GOLDEN LINE */
    margin: 10px auto 20px;
}
#core-services .section-title {
    color: #333333 !important;
    font-weight: bold;
    font-size: 35px;
    letter-spacing: 1px;
    padding: 0px 0px 10px 0px;
    text-align: center;
}
 #core-services .border-image {
        border: 2px solid rgb(179 162 88); 
        border-radius: 5px; 
    }
	
/* Heading */
/* Heading */
#major-branding .section-title {
    color: #333;
    font-weight: bold;
    font-size: 35px;
    text-align: center;
    margin-bottom: 10px;
}

/* Line */
#major-branding .bodr-btm {
    width: 80px;
    height: 3px;
    background: #e2e2e2;
    margin: 0 auto 30px;
    position: relative;
}

#major-branding .bodr-btm:after {
    content: "";
    width: 40px;
    height: 3px;
    background: #B3A258;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

/* Carousel spacing */
#major-branding .brand-carousel {
    margin-top: 10px;
}

/* Item alignment */
#major-branding .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 0 10px;



    border: 1px solid #B3A258;  /* 🔥 gold border */
    border-radius: 8px;         /* smooth corners */
}

/* 🔥 Logo size control */
#major-branding .brand-logo {
    max-height: 100%;  /* increase/decrease here */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}



}


