@charset "utf-8";
* {
	margin:0;
	padding:0;
	border:none;
	outline:none;
	font-size:100%;
	line-height:inherit;
	-ms-word-wrap:break-word;
	word-wrap:break-word;
}
body {
	font-size:14px;
	background: #FFFFFF;
	color:#787878;
	line-height:1.6em;
	font-weight:400;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	font-family: 'rajdhaniregular';
}
a {
	text-decoration:none;
	cursor:pointer;
	color:#de9e53;
}
a:hover,a:focus,a:visited {
	text-decoration:none;
	outline:none;
	color: #000;
}
h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:400;
	margin:0;
	background:none;
	line-height:1.2em;
	font-family: 'rajdhaniregular';
}
textarea {
	overflow:hidden;
}
button {
	outline:none!important;
	cursor:pointer;
}
p,.text {
	font-size:18px;
	line-height:34px;
	font-weight:400;
	color:#6c6d70;
	margin:0;
}
p {
	margin-bottom:10px;
	margin-top:10px;
}
ul, li {
	list-style: none;
	padding: 0px;
    margin: 0px;
}
::-webkit-input-placeholder {
	color:inherit;
}
::-moz-input-placeholder {
	color:inherit;
}
::-ms-input-placeholder {
	color:inherit;
}
::-webkit-scrollbar{
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ec1f25;
    /*background: #0095da;*/
}
/*****FANCY*****/
/*.button {
	
	--offset: 10px;
	--border-size: 2px;
	
	display: block;
	position: relative;
	padding: 1.5em 3em;
	appearance: none;
	border: 0;
	background: transparent;
	color: #e55743;
	text-transform: uppercase;
	letter-spacing: .25em;
	outline: none;
	cursor: pointer;
	font-weight: bold;
	border-radius: 0;
	box-shadow: inset 0 0 0 var(--border-size) currentcolor;
	transition: background .8s ease;
	
	&:hover {
		background: rgba(100, 0, 0, .03);
	}
	
	&__horizontal,
	&__vertical {
		position: absolute;
		top: var(--horizontal-offset, 0);
		right: var(--vertical-offset, 0);
		bottom: var(--horizontal-offset, 0);
		left: var(--vertical-offset, 0);
		transition: transform .8s ease;
		will-change: transform;
		
		&::before {
			content: '';
			position: absolute;
			border: inherit;
		}
	}
	
	&__horizontal {
		--vertical-offset: calc(var(--offset) * -1);
		border-top: var(--border-size) solid currentcolor;
		border-bottom: var(--border-size) solid currentcolor;
		
		&::before {
			top: calc(var(--vertical-offset) - var(--border-size));
			bottom: calc(var(--vertical-offset) - var(--border-size));
			left: calc(var(--vertical-offset) * -1);
			right: calc(var(--vertical-offset) * -1);
		}
	}
	
	&:hover &__horizontal {
		transform: scaleX(0);
	}
	
	&__vertical {
		--horizontal-offset: calc(var(--offset) * -1);
		border-left: var(--border-size) solid currentcolor;
		border-right: var(--border-size) solid currentcolor;
		
		&::before {
			top: calc(var(--horizontal-offset) * -1);
			bottom: calc(var(--horizontal-offset) * -1);
			left: calc(var(--horizontal-offset) - var(--border-size));
			right: calc(var(--horizontal-offset) - var(--border-size));
		}
	}
	
	&:hover &__vertical {
		transform: scaleY(0);
	}
	
}*/
/*****FANCY*****/
/*.section-intro:before, .section-intro:after {
	content: ' ';
    position: absolute;
    width: 0;
    height: 0;
}
.section-intro:after  {
	left: 0px;
    top: 100%;
    border-width: 5px 10px;
    border-style: solid;
    border-color: #000000 #000000 transparent transparent;
}*/
.section-intro h1 {
	color: #000;
	font-weight: 900;
	letter-spacing: 5px;
	text-align: center;
}
.section-intro h1 span {
	display: block;
    width: 7%;
    height: 4px;
    background: #ec1f25;
    margin: 10px auto;
}

/*Btn Style One*/
.btn-style-one{
	position:relative;
	font-size:18px;
	line-height:27px;
	color:#ffffff;
	font-weight:700;
	padding: 25px 60px;
	background-color: #de9e53;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 300ms linear;
	border-radius: 0px;
}

.btn-style-one .btn-title{
	position: relative;
}

.btn-style-one:hover {
	color:#de9e53;
	-webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-moz-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-ms-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-o-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.btn-style-one:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: #24262d;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}

.btn-style-one:hover:before{
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}

/*Btn Style Two*/
.btn-style-two{
	position:relative;
	font-size:18px;
	line-height:27px;
	color:#ffffff;
	font-weight:700;
	padding: 25px 60px;
	background-color: #24262d;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 300ms linear;
	border-radius: 0px;
}

.btn-style-two .btn-title{
	position: relative;
}

.btn-style-two:hover{
	color:#24262d;
	-webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-moz-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-ms-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-o-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.btn-style-two:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: #ffffff;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}

.btn-style-two:hover:before{
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}

/*Btn Style Three*/
.btn-style-three {
	position:relative;
	font-size:16px;
	line-height:30px;
	color:#f1ecff;
	font-weight:500;
	padding: 10px 32px;
	background-color: #1a2940;
	overflow: hidden;
	border-radius: 0px;
	transition: all 300ms linear;
}

.btn-style-three .btn-title{
	position: relative;
}

.btn-style-three:hover{
	color:#1a2940;
	-webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-moz-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-ms-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	-o-box-shadow: 0 10px 30px rgba(0,0,0,0.10);
	box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.btn-style-three:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: #FFFFFF;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}

.btn-style-three:hover:before {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}
/*Btn Style Four */
.btn-style-four{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 28px;
	color: #ffffff;
	padding: 10px 30px;
	font-weight: 500;
	overflow: hidden;
	border: 1px solid #333333;
	background-color: #333333;
}
.btn-style-four:hover {
	color: #333333;
	border: 1px solid #ffffff;
	-webkit-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	-moz-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	-ms-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	-o-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
}
/**********HEADER START************/
.main-header {
	background: #e7e7e7;
}
.main-header ul li{
	list-style: none;
	display:inline-block;
}
.header-logo {
	text-align: center;
}
.header-logo .img-fluid {
	width: 130px;
	/*padding: 2%;*/
	position: relative;
	top: 15%;
}
.header-text {
	background: #de9e53;
	color: #000;
}
.header-text ul li {
	list-style: none;
	display: inline-block;
}
.text-top {
	background: #e7e7e7;
	color: #FFF;
	padding: 0;
}
.top-left {
	position: relative;
    float: left;
	text-align: left;
	color: #000;
	padding: 0;
}
/*Scroll Text Start*/
.scrolltxt {
	height: 35px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow:clip; 
	position: relative;
	width: 100%;
	padding-bottom: 0%;
}
.scrolltxt a img {
	position: relative;
	height:16px;
}
.scrolltxt a {
	font-size: 1.5em;
	font-weight: 700;
	padding-top:1%;
	letter-spacing: 2px;
	font-family:'Monotype Corsiva';
	/*color: #2C8361 !important;*/
	color: #ec1f25 !important;
	line-height: 18px; 
	position: absolute;
	width: 100%;
	text-align: left;
	-moz-transform:translateX(100%);
	-webkit-transform:translateX(100%);	
	transform:translateX(100%);
	-moz-animation: scrolltxt 15s linear infinite;
	-webkit-animation: scrolltxt 25s linear infinite;
	animation: scrolltxt 15s linear infinite;
}
@-moz-keyframes scrolltxt {
	0%   { -moz-transform: translateX(100%); transform: translateX(100%); }
	100% { -moz-transform: translateX(-100%); transform: translateX(-100%); }
}
@-webkit-keyframes scrolltxt {
	0%   { -webkit-transform: translateX(100%); transform: translateX(100%);}
	100% { -webkit-transform: translateX(-100%); transform: translateX(-100%);}
}
@keyframes scrolltxt {
	0%   { -moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%); 		
 }
	100% { 
	-moz-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%); 
 }
}
.scrolltxt a:hover {
	/*color: #000 !important;*/
	-webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
}
.top-right {
	text-align: center;
}
.top-right a {
	position: relative;
    font-size: 18px;
    line-height: 25px;
    color: #DB7703 !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
	padding-bottom: 2%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.top-right a:after {
	content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
}
.text-middle {
	position: relative;
    padding: 10px 0;
	text-align: center;
	background-color: #e7e7e7;
}
.middle .top-contacts {
	position: relative;
}
.middle .top-contacts li {
	position:relative;
	font-size:16px;
	line-height:25px;
	color:#000;
	font-weight:500;
	text-transform:uppercase;
	letter-spacing:.05em;
	margin-left:35px;
}
.middle .top-contacts li:first-child {
	margin-left:0;
}
.middle .top-contacts li a {
	display:inline-block;
	font-weight:600;
	font-size: 20px;
	color:#000;
	transition:all 300ms ease;
	letter-spacing: 2px;
}
.middle .top-contacts li a:hover {
	color:#000;
}
.middle .top-contacts li span {
	display:inline-block;
	color:#de9e53;
	font-weight:700;
	margin-right:20px;
	letter-spacing:1px;
	text-transform:uppercase;
}
.middle .top-contacts li span .img-fluid {
	width: 20px;
}
/*Social SideBar Start*/
.bottom-left {
	position: relative;
	width: auto;
	top: 10%;
	left: 0;
	z-index: 1049;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}
.bottom-left ul li a {
	display: block;
	font-size: 25px;
	text-align: center;
	transition: all 0.3s ease;
	color: #fff;
	padding: 10%;
	border-radius: 10%;
	margin-bottom: 10%;
	width: 40px;
	height: 100%;
}
.bottom-left ul li:nth-child(3), li:nth-child(4) {
	
}
.bottom-left ul li a i {
	padding: 5%;
}
.bottom-left a:hover {
	font-size: 35px;
}
/*Social SideBar End*/
/*Navbar Start*/
.bottom-right {
	position: relative;
	bottom: 0;
	float: left;
	padding: 5px;
	margin-top: 0%;
	margin-right: 0;
	width: 100%;
	text-align: center;
	background-color: #de9e53;
	height: 100%;
}
.bottom-right .navbar {
	padding-bottom: 0;
}
.bottom-right .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
	position:relative;
	top: 0;
	width: 100%;
	text-align: center;
	list-style: none;
	margin: 0;
}
.bottom-right .navbar-nav li {
    position: relative;
	margin-left: 1%;
	width: 60%;
	padding: 0;
}
.bottom-right .navbar-nav li a {
    display: block;
	font-family:'Copperplate Gothic Regular';
	letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px;
	font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
	margin: 2%;
}
.bottom-right .navbar-nav li li {
	width:100%;
}
.bottom-right .navbar-nav li a {white-space:nowrap;}
.bottom-right .navbar-nav li.active {
	background: #6D9197;
	padding: 5px;
	width: 60%;
}
.bottom-right .navbar-nav li a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 2px solid #262626;
	border-bottom: 2px solid #262626;
	color: #000;
	transform: scaleY(2);
	opacity: 0;
	transition: .3s;
}
.bottom-right .navbar-nav li a:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #AD974F;
	color: #000;
	transform: scale(0);
	opacity: 0;
	transition: .3s;
	z-index: -1;
}
.bottom-right .navbar-nav li a:hover {
	color: #fff !important;
}
.bottom-right ul li a:hover:before {
	transform: scaleY(1);
	opacity: 1;
}
.bottom-right .navbar-nav li a:hover:after {
	transform: scaleY(1);
	opacity: 1;
}
.bottom-right .navbar-nav li>ul {
    display: block;
    position: absolute;
	background-color: #de9e53;
    left: 0;
    top: 45%;
    padding: 20px;
	text-align: left;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -webkit-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05), -2px 0 5px 1px rgba(0,0,0,.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05),-2px 0 5px 1px rgba(0,0,0,.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05),-2px 0 5px 1px rgba(0,0,0,.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05),-2px 0 5px 1px rgba(0,0,0,.05);
    box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05), -2px 0 5px 1px rgba(0,0,0,.05);
}
.bottom-right .navbar-nav li:hover>ul {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.bottom-right .navbar-nav li>ul li {
    display: block;
	padding-top:0;
	padding-bottom:2%;
}
.bottom-right .navbar-nav li>ul li a {
    text-transform: capitalize;
	width: 100%;
	font-weight: 700;
	color: black;
}
.bottom-right .navbar-nav li>ul li:hover a {
    background: #6D9197;
    color: #0194D9;
}
.bottom-right .navbar-nav li>ul li a:before {
  transform: scaleY(0);
}
.bottom-right .navbar-nav li>ul li a:hover:after {
  transform: scaleY(0);
}
/*********HEADER****/
/***************STIKCY HEADER**********/
.sticky-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1049;
	background: #e7e7e7;
	animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-80px);
	}
	100% {
		transform: translateY(0px);
	}
}
.sticky-header-logo {
	text-align: center;
	backgorund-color: #e7e7e7;
}
.sticky-header-logo:after {
	position:absolute;
	right:0;
	top:0;
	border-left:30px solid transparent;
	border-top:25px solid #de9e53;
	content:""
}
.sticky-header-logo:before {
	position:absolute;
	right:0;
	bottom:0;
	border-left:30px solid transparent;
	border-bottom:25px solid #de9e53;
	content:""
}
.sticky-header-logo .img-fluid {
	width: 80px;
	padding: 1%;
	margin-right: 2%;
	position: relative;
	top: 0;
	float: right;
}
.sticky-header-menu {
	float: left;
	background-color: #de9e53;
}
.sticky-header-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
	position:relative;
	top: 40%;
	text-align: center;
	list-style: none;
	margin: 0;
	padding: 0% 5% 0% 5%;
}
.sticky-header-menu ul li {
    position: relative;
	margin-left: 1%;
	width: 100%;	
}
.sticky-header-menu ul li a {
    display: block;
	font-family:'Copperplate Gothic Regular';
	letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 2%;
    padding-bottom: 2%;
	font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
	margin: 0;
	padding: 0;
}
.sticky-header-menu li li {
	width:100%;
}
.sticky-header-menu li a {white-space:nowrap;}
.sticky-header-menu li.active {
	background: #6D9197;
}
.sticky-header-menu ul li a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 2px solid #262626;
	border-bottom: 2px solid #262626;
	color: #000;
	transform: scaleY(2);
	opacity: 0;
	transition: .3s;
}
.sticky-header-menu ul li a:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #AD974F;
	color: #000;
	transform: scale(0);
	opacity: 0;
	transition: .3s;
	z-index: -1;
}
.sticky-header-menu ul li a:hover {
	color: #fff !important;
}
.sticky-header-menu ul li a:hover:before {
	transform: scaleY(1);
	opacity: 1;
}
.sticky-header-menu ul li a:hover:after {
	transform: scaleY(1);
	opacity: 1;
}
.sticky-header-menu ul li>ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background: #f2e2ce;
    padding: 20px;
	text-align: left;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -webkit-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05), -2px 0 5px 1px rgba(0,0,0,.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05),-2px 0 5px 1px rgba(0,0,0,.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05),-2px 0 5px 1px rgba(0,0,0,.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05),-2px 0 5px 1px rgba(0,0,0,.05);
    box-shadow: 2px 2px 5px 1px rgba(0,0,0,.05), -2px 0 5px 1px rgba(0,0,0,.05);
}
.sticky-header-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.sticky-header-menu ul li>ul li {
    display: block;
	padding-top:2%;
	padding-bottom:2%;
}
.sticky-header-menu ul li>ul li a {
    text-transform: capitalize;
	width: auto;
	font-weight: 700;
	color: black;
}
.sticky-header-menu ul li>ul li:hover a {
    background: #6D9197;
    color: #0194D9;
}
.sticky-header-menu ul li>ul li a:before {
  transform: scaleY(0);
}
.sticky-header-menu ul li>ul li a:hover:after {
  transform: scaleY(0);
}

/***************STIKCY HEADER**********/
.wkd-slider {
	padding: 0;
}
#wkdcarousel .carousel-item {
	width: 100%;
	height: auto;
	background: #ffffff;
	padding: 0;
}
#wkdcarousel .carousel-item .img-fluid {
	width: 100%;
	height: auto;
}
#wkdcarousel .carousel-item .carousel-caption {
	display:none;
}
.project-section {
	padding: 2%;
}
.project-section h1 {
	padding-bottom: 5%;
	letter-spacing: 1px;
	font-size: 25px;
}
.project-section h1 span {
	width: 10%;
}
.project-sec-l img {
	width: 100%;
}
.project-section .second-row, .project-section .third-row {
	margin-bottom: 3%;
}
.project-section .third-row .tr-heading span {
	color: #ec1f25;
	margin-right: 1%;
	font-size: 20px;
}
.project-section .third-row .tr-heading {
	color: #00673A;
	font-weight: 700;
	margin-bottom: 2%;
	text-align: center;
}
.project-section .third-row .img-fluid {
	width: 100%;
	height: 500px;
	margin-bottom: 5%;
}
.project-section .pro-intro-r {
	padding-left: 15px;
	padding-right: 15px;
}

.project-section .pro-intro-r h6 {
	position: relative;
	color: #ec1f25;
	font-weight: 600;
	letter-spacing: 0.15rem;
	margin-bottom: 0.5rem;
	text-align: left;
}
.project-section .pro-intro-r h2 {
	color: #000;
	font-weight: 900;
	letter-spacing: 0.15rem;
	text-align: left;
	margin-bottom: 40px;
}
.project-section .pro-intro-r h2 .img-fluid {
	position: relative;
	top: -7px;
	width: 145px;
}
.project-section .pro-intro-r p {
	font-weight: 600;
	color: #4A4848;
	text-align: justify;
	letter-spacing: 1.5px;
}
.project-section .pro-intro-r p span {
	color: #000;
	font-weight: 900;
}
.pro-secbl-list p {
	color: #000;
	font-weight: 600;
	font-size: 21px;
}
.pro-secbl-list p:before {
	content: '*';
	color: red;
	position: absolute;
	left: 0;
}
.pro-secbl-list ul, .pro-pg-l-list ul, .pro-pg-bl ul, .pro-pg-br ul {
	position: relative;
}
.pro-secbl-list ul li, .pro-pg-l-list ul li, .pro-pg-bl ul li, .pro-pg-br ul li {
	position: relative;
    font-size: 18px;
    line-height: 24px;
    color: #24262d;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 16px;
}
.pro-secbl-list ul li:before, .pro-pg-l-list ul li:before {
	content: url("../images/verify1.png");
    position: absolute;
    left: -10px;
    top: 0px;
    display: block;
    line-height: 26px;
    padding: 0px;
    color: #de9e53;
    font-weight: 900;
}
.pro-secbr-list, .pro-pg-r-list, .oldpro-2-list {
	position: relative;
}
.pro-secbr-list ul, .pro-pg-r-list ul, .pro-pg-bl ul, .pro-pg-br ul, .oldpro-2-list ul {
	position: relative;
}
.pro-secbr-list ul li, .pro-pg-r-list ul li, .pro-pg-bl ul li, .pro-pg-br ul li, .oldpro-2-list ul li {
	position: relative;
    font-size: 18px;
    line-height: 24px;
    color: #24262d;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 16px;
}
.pro-secbr-list ul li:before, .pro-pg-r-list ul li:before, .oldpro-2-list ul li:before {
	content: url("../images/verify1.png");
    position: absolute;
    left: -10px;
    top: 0px;
    display: block;
    line-height: 26px;
    padding: 0px;
    color: #de9e53;
    font-weight: 900;
}
.pro-secbr-list .btn-style-three {
	color: #FFFFFF;
	position: relative;
	background-color: #ec1f25;
}
.pro-secbr-list .btn-style-three:hover:before {
	background-color: #00673A;
}
/***********/
.fancy-box {
	position: relative;
}
.fancy-box .f1 {
	position: relative;
    padding: 10px;
    text-align: center;
	cursor: pointer;
	margin-bottom: 20px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.fancy-box .f1 .img-fluid {
	height: 100px;
}
.fancy-box .f1 h5 {
	margin-top: 10%;
	color: #000;
	font-weight: 600;
}
/********/
.contact-info {
	padding: 30px 15px;
}
/***********/
.pro-sec-spects {
	padding:  2% 2% 0% 2%;
}
.pro-sec-spects h4 {
	color: #00673A;
	font-weight: 700;
	margin-bottom: 5%;
	text-align: center;
}
.pro-sec-spects h4 img {
	position: relative;
	top: -4px;;
	width: 105px;
}
.pro-sec-spects .media-object-default .media {
	padding-bottom: 2%;
	margin-right: 5%;
}
.pro-sec-spects .media-object-default .media img {
	width: 145px;
}
.pro-sec-spects .media-object-default .media .media-body {
	padding-top: 2%;
	padding-left: 5%;
}
.pro-sec-spects .media-object-default .media .media-body h5 {
	/*color: #000;
	font-weight: 800;
	letter-spacing: 1px;
	padding-bottom: 2%;*/
	position: relative;
    padding: 2%;
    color: #fff;
	font-weight: 800;
    background-color: #00673A;
}
.pro-sec-spects .media-object-default .l1 h5 {
	width: 120px;
}
.pro-sec-spects .media-object-default .l2 h5 {
	width: 100px;
}
.pro-sec-spects .media-object-default .l3 h5 {
	width: 80px;
}
.pro-sec-spects .media-object-default .l4 h5 {
	width: 110px;
}
.pro-sec-spects .media-object-default .l5 h5 {
	width: 100px;
}
.pro-sec-spects .media-object-default .l6 h5 {
	width: 85px;
}
.pro-sec-spects .media-object-default .l7 h5 {
	width: 125px;
}
.pro-sec-spects .media-object-default .l8 h5 {
	width: 150px;
}
.pro-sec-spects .media-object-default .media .media-body h5:before, .pro-sec-spects .media-object-default .media .media-body h5:after {
	content: ' ';
    position: absolute;
    width: 0;
    height: 0;
}
.pro-sec-spects .media-object-default .media .media-body h5:after {
	left: 0px;
    top: 100%;
    border-width: 5px 10px;
    border-style: solid;
    border-color: #000000 #000000 transparent transparent;
}
.pro-sec-spects .media-object-default .media .media-body h5 span {
	dispay: none;
}
.pro-sec-spects .media-object-default .media .media-body ul {
	margin-top: 10%;
}
.pro-sec-spects .media-object-default .media .media-body ul li {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	padding-left: 10%;
	padding-bottom: 5%;
	letter-spacing: 1%;
}
.pro-sec-spects .media-object-default .media .media-body ul li:before {
	content: url("../images/check-all-1.png");
	position: absolute;
	left: 35%;
}
.pro-sec-spects .media-object-default .l3 .media .media-body ul li, .pro-sec-spects .media-object-default .l4 .media .media-body ul li {
	padding-left: 0;
	text-align: justify;
}
.pro-sec-spects .media-object-default .l3 .media .media-body ul li:before, .pro-sec-spects .media-object-default .l4 .media .media-body ul li:before {
	display: none;
}
.pro-sec-sitehide {
	padding-top: 2%;
	padding-bottom: 2%;
	text-align: center;
}
.pro-sec-sitehide h4 {
	color: #ec1f25;
    font-weight: 700;
    margin-bottom: 2%;
}
.site-cont-map .list-group {
	list-style: none;
	padding: 30px;
	text-align: center;
}
.site-cont-map .list-group .list-group-item {
	color: #000;
    font-size: 20px;
    font-weight: 600;
	border: none;
	letter-spacing: 2px;
	background-color: #f7f7f7;
	margin-bottom: 5%;
}
.site-cont-map .list-group .list-group-item a {
	display: block;
	margin: 5%;
	color: #000;
}
.site-cont-map .list-group .list-group-item:nth-child(3) a {
	margin-left: 12%;
}
.site-cont-map .list-group .list-group-item span {
	margin-bottom: 5%;
	display: block;
	font-size: 18px;
	color: #de9e53;
	font-weight: 900;
}
.site-cont-map .list-group .list-group-item:before {
	content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    background-size: cover;
    background-position: center;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.site-cont-map .list-group .list-group-item:nth-child(1):before {
	background-image: url("../images/telephone.png");
}
.site-cont-map .list-group .list-group-item:nth-child(2):before {
	background-image: url("../images/envelope.jpg");
	height: 60px;
}
.site-cont-map .list-group .list-group-item:nth-child(3):before {
	background-image: url("../images/home-address.png");
	height: 70px;
}
.site-an-map {
	padding: 30px;
}
.site-g-map h5, .site-vid-map h5, .site-g-map-oldpro-2 h5 {
	text-align: center;
	color: #000;
	font-weight: 700;
	margin-bottom: 5%;
	letter-spacing: 1px;
}
.site-vid-map {
	padding: 0px 30px;
}
.site-vid-map iframe {
	padding: 10px 30px;
}
/*.pro-sec-cont-map {
	text-align: center;
	padding: 50px 15px;
}
.pro-sec-cont-map h4 {
	color: #000;
	font-size: 21px;
	font-weight: 700;
	padding-bottom: 10%;
}
.pro-sec-cont-map h4 .img-fluid {
	width: 130px;
	margin-left: 2px;
}
.pro-sec-cont-map .mapimg {
	height: 450px;
	padding-top: 20px;
}*/
.pro-sec-cont-text {
	padding: 50px 15px;
	text-align: center;
}
.pro-sec-cont-text h4 {
	margin-top: 15px;
	margin-bottom: 15px;
	color: #000;
}
.pro-sec-cont-text .input-group-text .img-fluid {
	width: 25px;
}
.pro-sec-cont-text .cont-text-info {
	padding: 55px 15px;
}
.dimens-sec {
	padding-top: 5%;
	padding-bottom: 1%;
}
.dimens-sec .nav-tabs {
	border: none;
}
.dimens-sec .nav-item {
	position: relative;
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
    line-height: 30px;
    color: #6c6d70;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-align: center;
    padding: 30px 15px;
    background-color: #e9ecef;
    border-right: 1px solid #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.dimens-sec .nav-item .nav-link {
	color: #000;
}
.dimens-sec .tab-content .floor-info, .dimens-sec .tab-content .image-info {
	padding: 50px 15px;
}
.dimens-sec .tab-content .floor-info ul li {
	position: relative;
    font-size: 16px;
    line-height: 27px;
    color: #6c6d70;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px;
    background-color: #e9ecef;
}
.dimens-sec .tab-content .floor-info ul li:nth-child(even) {
	background-color: #FFFFFF;
}
.dimens-sec .tab-content .floor-info ul li span {
	float: right;
}
.dimens-sec .tab-content .dimen-info ul li span {
	position: relative;
    float: right;
    color: #24262d;
}
.dimens-sec .tab-content .dimen-info, .dimens-sec .tab-content .image-dimen .img-fluid {
	width: 100%;
}
.dimens-sec .tab-content .dimen-info ul li {
	position: relative;
    font-size: 16px;
    line-height: 27px;
    color: #6c6d70;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px;
    background-color: #e9ecef;
}
.dimens-sec .tab-content .dimen-info ul li span {
	position: relative;
    float: right;
    color: #24262d;
	letter-spacing: 2px;
}
.dimens-sec .tab-content .dimen-info ul li:nth-child(even) {
	background-color: #FFFFFF;
}
.dimens-sec .tab-content .dimen-info, .dimens-sec .tab-content .image-dimen .img-fluid {
	height: 550px;
}
.dimens-sec .tab-content .dimen-info, .dimens-sec .tab-content .image-dimen {
	padding: 50px 0px 50px 15px;
}
.cont-text-info {
	position: relative;
    text-align: center;
	background-image: linear-gradient(
      rgba(0, 103, 58, 0.5), 
      rgba(0, 103, 58, 0.5)
    ),url("../images/wkd2.png");
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 2% 0;
	color: #FFFFFF;
}
.cont-text-info p {
	color: #e9a216;
	font-weight: 900;
}
.cont-text-info h1 {
	color: #e9a216;
	font-weight: 900;
}
.cont-text-info a {
	display: block;
	color: #FFFFFF;
	margin-top: 2%;
	font-size: 30px;
	letter-spacing: 2px;
	font-weight: 900;
	text-align: center;
}
.cont-text-info .btn-box {
	margin-top: 3%;
	margin-left: 43%;
	margin-right: 43%;
}
.cont-text-info .btn-style-two {
	color: #FFFFFF;
	background-color: #ec1f25;
}
.cont-text-info .btn-style-two:before, .cont-text-info .btn-style-two:hover:before {
	background-color: #00673A;
}
.project-gallery {
	padding-top: 2%;
	padding-bottom: 2%;
}
.project-gallery h3 {
	margin-top: 3%;
	margin-bottom: 3%;
	color: #000;
	font-weight: 900;
	letter-spacing: 1px;
	text-align: center;
}
.project-gallery h3 span {
	color: #ec1f25;
}
.project-gallery h3 span span {
	color: #00673A;
}
.project-gallery .project-gallery-img {
	position: relative;
	text-align: center;
}
.project-gallery .project-gallery-img .card {
	display: inline-block;
	background-color: transparent;
	margin-right: 1%;
	margin-bottom: 2%;
	max-width: 45%;
}
.project-gallery .project-gallery-img .card .img-fluid {
	margin-top: 2%;
	margin-bottom: 2%;
}
.project-gallery .project-gallery-img .card .card-body h5 {
	padding: 2%;
    color: #fff;
    font-weight: 800;
    background-color: #00673A;
	margin-left: 30%;
	margin-right: 30%;
}
.project-gallery .project-gallery-img .card:nth-child(4) .card-body h5, .project-gallery .project-gallery-img .card:nth-child(6) .card-body h5 {
	margin-left: 30%;
	margin-right: 30%;
}
.project-gallery .project-gallery-img .card:nth-child(7) .card-body h5 {
	margin-left: 18%;
	margin-right: 18%;
}
.project-gallery .project-gallery-img1 {
	position: relative;
	text-align: center;
}
.project-gallery .project-gallery-img1 .card {
	display: inline-block;
	background-color: transparent;
	margin-right: 1%;
	margin-bottom: 2%;
}
.project-gallery .project-gallery-img1 .card .card-body h5 {
	padding: 2%;
    color: #fff;
    font-weight: 800;
    background-color: #00673A;
	margin-left: 20%;
	margin-right: 20%;
}
.project-gallery .project-gallery-img1 .card:nth-child(4) .card-body h5, .project-gallery .project-gallery-img1 .card:nth-child(6) .card-body h5 {
	margin-left: 30%;
	margin-right: 30%;
}
.project-gallery .project-gallery-img1 .card:nth-child(7) .card-body h5 {
	margin-left: 12%;
	margin-right: 12%;
}
.project-section .pro-infobtn {
	text-align: center;
	padding: 30px 0px;
}
.project-section .pro-infobtn .btn-style-three {
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 700;
}
.project-section .pro-infobtn .btn-style-three:before {
	background-color: #00673A;
}
.project-section .pro-infobtn .btn-style-three:hover:before {
	background-color: #00673A;
}
.about-section {
	padding: 2% 0;
	margin: 0;
	text-align: center;
	background-color: #E8F6FF;
}
.about-section .section-intro h1 {
	letter-spacing: 2px;
	font-size: 25px;
}
.about-section h4 {
	font-size: 33px;
	color: #000;
	font-weight: 500;
}
.about-sec-tl, .about-sec-tr, .about-sec-bl, .about-sec-br {
	padding: 3% 0;
}
.about-sub-headt .img-fluid {
	padding-top: 3%;
	width: 100px;
}
.about-sub-headt h3 {
	color: #000;
	font-weight: 600;
	padding-top: 1%;
	letter-spacing: 2px;
}
.about-sub-headt h3 span {
	display: block;
    width: 20%;
    height: 4px;
    background: #ec1f25;
    margin: 10px auto;
}
.about-sec-tl .img-fluid {
	position: relative;
}
.about-sec-tr p {
	margin-left: 10%;
	color: #000;
	text-align: left;
	letter-spacing: 0.5px;
}
.about-sec-tr h4 {
	font-size: 25px;
	font-weight: 600;
	margin-left: 10%;
	padding-bottom: 5%;
}
.about-sub-headb h3{
	padding-top: 3%;
	color: #000;
	font-weight: 800;
}
.about-sec-blhd {
	text-align: left;
	padding: 2% 1% 0% 0;
}
.about-sec-bl h4 {
	padding-top: 2%;
	padding-bottom: 2%;
	font-size: 25px;
	font-weight: 600;
}
.about-sec-blhd ul {
	position: relative;
}
.about-sec-blhd ul li {
	position: relative;
    font-size: 18px;
	letter-spacing: 1px;
    line-height: 24px;
    color: #24262d;
    font-weight: 900;
    padding-left: 40px;
    margin-bottom: 20px;
}
.about-sec-blhd ul li:before {
    content: url("../images/check-all-1.png");
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 20px;
    line-height: 26px;
    padding: 0px;
    color: #de9e53;
    font-weight: 900;
}
.about-sec-br img {
	position: relative;
	top: 15%;
	padding-left: 7%;
}
.about-sec-mainb .btn-style-three {
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 900;
}
.about-sec-mainb .btn-style-three:before, .about-sec-mainb .btn-style-three:hover:before {
	background-color: #00673A;
}
.experties-sec {
	padding: 1% 0;
	margin: 0;
	text-align: center;
	background-color: #E8F6FF;
}
.experties-sec .section-intro h1 {
	letter-spacing: 2px;
	font-size: 25px;
}
.experties-sec .section-intro h1 span {
	width: 20%;
}
.experties-sec .section-intro h1 p {
	color: #000;
}
.experties-box {
	position: relative;
    background-color: #FFFFFF;
    padding: 5%;
	border-radius: 20px 20px;
}
.experties-box ul {
	position: relative;
    display: block;
}
.experties-box ul li {
	position: relative;
    display: block;
    font-size: 18px;
    line-height: 2em;
    color: #24262d;
    font-weight: 600;
    text-transform: uppercase;
	text-align: left;
    letter-spacing: 0.03em;
    margin-bottom: 36px;
    padding-left: 60px;
}
.experties-box ul li:before {
	position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 2em;
    color: #ec1f25;
    font-weight: 600;
    /*counter-increment: count;
    content: "0" counter(count);*/
	content: '>>';
}
.experties-box ul li:nth-child(1) a span {
	display: block;
    width: 35%;
    height: 4px;
    background: #ec1f25;
}
.experties-box ul li:nth-child(2) a span {
	display: block;
    width: 95%;
    height: 4px;
    background: #ec1f25;
}
.experties-box ul li:nth-child(3) a span {
	display: block;
    width: 25%;
    height: 4px;
    background: #ec1f25;
}
.experties-box ul li:nth-child(4) a span {
	display: block;
    width: 75%;
    height: 4px;
    background: #ec1f25;
}
.expertise-b .img-fluid {
	margin-top: 30px;
	width: 100px;
}
.expertise-b .btn-style-three {
	position: relative;
	top: 50px;
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 900;
}
.expertise-b .btn-style-three:before, .expertise-b .btn-style-three:hover:before {
	background-color: #00673A;
}
.service-sec {
	padding: 2%;
	margin: 0;
	text-align: center;
}
.service-sec .section-intro h1 {
	letter-spacing: 2px;
	font-size: 25px;
}
.service-sec .section-intro h1 span {
	width: 20%;
}
.service-sec .card1, .service-sec .card2 {
	background: transparent;
	border: none;
}
.service-sec .card1 .card-img-top {
	height: 350px;
	width: auto;
}
.service-sec .card1 .card-body, .service-sec .card2 .card-body {
	text-align: left;
}
.service-sec .card1 .card-body .btn-style-three, .service-sec .card2 .card-body .btn-style-three {
	position: relative;
	top: 20px;
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 900;
}
.service-sec .card1 .card-body .btn-style-three:before, .service-sec .card1 .card-body .btn-style-three:hover:before, .service-sec .card2 .card-body .btn-style-three:before, .service-sec .card2 .card-body .btn-style-three:hover:before {
	background-color: #00673A;
}
.service-sec #cardtwo {
	margin-left: 15%;
	margin-right: 15%;
}
.service-sec .card1 h5, .service-sec .card2 h5 {
	color: #000;
	font-weight: 600;
}
.service-sec .card1 p, .service-sec .card2 p {
	text-align: justify;
}
.team-sec {
	padding: 1% 0;
}
.team-sec .section-intro h1 {
	letter-spacing: 1px;
	font-size: 25px;
}
.team-sec .section-intro h1 span {
	width: 2%;
}
.team-sec .section-intro p {
	text-align: center;
	margin-bottom: 35px;
}
.team-sec .card .card-img-top {
	width: 100%;
    height: 100%;  /* set to anything and aspect ratio is maintained */
    max-width: 100%;
}
.team-sec .card .card-body {
	padding-left: 3px;
	padding-right: 3px;
}
.team-sec .card h5 {
	color: #000;
	font-weight: 900;
	letter-spacing: 1px;
	font-size: 1.10rem;
}
.team-sec .card p {
	color: #000;
	letter-spacing: 1px;
	line-height: 20px;
}
/*team end*/
/*Testimonial Start*/
.testmon {
	padding: 35px 15px;
}
.testmon .section-intro {
	text-align: center;
}
.testmon .section-intro h1 {
	letter-spacing: 2px;
	font-size: 25px;
}
.testmon .section-intro h1 span{
	width: 10%;
}
.test-content {
	padding-top: 1%;
}
.test-photo-active {
	position: relative;
	top: 2%;
}
.test-photo-active .test-images .img-fluid {
	width: 100%;
}
.test-content-active .test-wrap {
	text-align: left;
}
.test-content-active .test-wrap .dialogue-box {
	position: relative;
    display: block;
    background: #fff;
    border: 1px solid #e7e7e8;
    padding: 35px 39px 35px;
    border-radius: 7px;
	margin-top: 1%;
}
.test-content-active .test-wrap .dialogue-box:after {
	content: " ";
  	position: absolute;
  	left: 0px;
  	bottom: -15px;
  	border-top: 15px solid #A2A2A6;
  	border-right: 15px solid transparent;
  	border-left: 15px solid transparent;
  	border-bottom: none;
}
.test-content-active .test-wrap i {
	font-size: 30px;
	color: rgba(0, 103, 58, 1);
}
.test-content-active .test-wrap .dialogue-box p {
	color: #000;
    font-size: 22px;
    line-height: 32px;
	text-align: justify;
	padding: 18px 15px;
    margin-top: 2%;
}
.test-content-active .test-wrap h4 {
	margin-top: 5%;
	margin-bottom: 1%;
	color: #000;
	font-weight: 600;
	text-align: left;
}
.test-content-active .test-wrap span {
	font-size: 18px;
	font-weight: 600;
}
.test-img .img-fluid {
	width: 100%;
}
.test-img ul {
	background: rgba(0, 0, 0, 0.9);
	padding: 5% 3%;
}
.test-img ul li {
	display: inline;
	color: #FFFFFF;
	font-size: 20px;
}
.test-img ul li i {
	margin-left: 2%;
	color: #fcb837;
}
/*Testimonial End*/
/*INDEX HTML END*/
/*HOME HTML START*/
.wkd-home-slider {
	padding: 0;
}
#wkdhomecarousel .carousel-item {
	width: 100%;
	height: auto;
	background: #ffffff;
	padding: 0;
}
#wkdhomecarousel .carousel-item .img-fluid {
	width: 100%;
	height: auto;
}
#wkdhomecarousel .carousel-item .carousel-caption {
	display:none;
}
.pro-h-sec {
	padding-top: 1%;
	padding-bottom: 2%;
	text-align: center;
}
.pro-h-sec .pro-h1 {
	color: #000;
	font-weight: 700;
	letter-spacing: 2px;
}
.pro-h-sec .pro-h1 span {
	display: block;
    width: 7%;
    height: 4px;
    background: #ec1f25;
    margin: 10px auto;
}
.pro-h-sec .pro-old-h1 {
	color: #000;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 5%;
}
.pro-h-sec .pro-old-h1 span {
	display: block;
    width: 20%;
    height: 4px;
    background: #ec1f25;
    margin: 10px auto;
}
.pro-h-sec .pro-h3 {
	color: #216288;
	font-weight: 900;
	margin-top: 2%;
	margin-bottom: 2%;
}
.pro-h-sec .pro-h3:hover {
	color: #000;
}
.pro-h-sec .pro-h3 i:hover {
	color: #28a745;
}
.pro-h-sec .pro-h-headimg {
	text-align: center;
}
.pro-h-sec .pro-h-headimg .img-fluid {
	width: 165px;
	margin-bottom: 30px;
}
.pro-h-sec .embed-vid {
	padding-top: 1%;
}
.pro-h-sec .embed-vid h4 {
	color: #000;
	font-weight: 700;
	margin-bottom: 5%;
}
.pro-new-btn {
	padding-top: 20px;
	padding-bottom: 20px;
}
.pro-new-btn .btn-style-three {
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 900;
}
.pro-new-btn .btn-style-three:before, .pro-new-btn .btn-style-three:hover:before {
	background-color: #00673A;
}
.pro-old {
	padding-bottom: 20px;
}
.pro-old-l .pro-l-heading {
	text-align: center;
	margin-bottom: 30px;
}
.pro-old-l .pro-l-heading .img-fluid {
	width: 280px;
}
.pro-old-l .pro-l-img {
	margin-top: 20px;
	margin-bottom: 20px;
}
.pro-old-l .btn-style-three {
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 900;
}
.pro-old-l .btn-style-three:before, .pro-old-l .btn-style-three:hover:before {
	background-color: #00673A;
}
.pro-old-r .pro-r-heading {
	text-align: center;
	margin-bottom: 40px;
}
.pro-old-r .pro-r-heading h4 {
	font-size: 30px;
	font-weight: 900;
	color: #ec1f25;
	letter-spacing: 2px;
}
.pro-old-r .pro-r-heading h4 span {
	color: #00673A;
}
.pro-old-r .pro-r-img {
	margin-top: 20px;
	margin-bottom: 20px;
}
.pro-old-r .btn-style-three {
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 900;
}
.pro-old-r .btn-style-three:before, .pro-old-r .btn-style-three:hover:before {
	background-color: #00673A;
}
/*HOME HTML END*/
/*ABOUT HTML START*/
.about-page-title, .contact-page-title, .ne-page-title {
	position: relative;
	width: 100%;
	background-image: url("../images/aboutbread.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 250px 0;
	opacity: 1.5;
}
.about-page-title:before, .contact-page-title:before {
	position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    opacity: .50;
}
.about-page-title h1, .contact-page-title h1 {
	position: relative;
    font-size: 70px;
    font-weight: 700;
    color: #fff;
	/*padding: 0 10%;*/
	top: 10%;
	margin: 0 auto;
    line-height: 1em;
    z-index: 99;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.about-page-title-image .breadcrumb, .contact-page-title-image .breadcrumb {
	position: absolute;
	bottom: 0px;
	right: 0;
	margin-right: 10%;
	background-color: #de9e53;
}
.about-page-title-image .breadcrumb .breadcrumb-item, .contact-page-title-image .breadcrumb .breadcrumb-item {
	font-size: 21px;
	color: #FFFFFF;
	font-weight: 900;
	letter-spacing: 2px;
}
.about-page {
	background-color: #E8F6FF;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 2%;
}
.about-page #wkdaboutCarousel {
	width: 100%;
	padding: 30px 15px;
}
.about-page #wkdaboutCarousel .carousel-inner .carousel-item img {
	width: 100%;
}
.about-page .about-page-toptitle {
	padding-top: 7%;
	color: #000;
	font-weight: 900;
	margin-bottom: 20px;
}
.about-page .about-page-bttitle .img-fluid {
	position: relative;
	top: -7px;
	width: 350px;
}
.about-page-content .c1, .about-page-content .c2, .about-page-content .c3, .about-page-content .c4 {
	padding: 1% 5%;
}
.about-page-content .c1 h4, .about-page-content .c2 h4, .about-page-content .c3 h4, .about-page-content .c4 h4, .about-page-content .c5 h4 {
	margin-bottom: 2%;
	text-align: center;
	font-weight: 700;
	color: #000;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.about-page-content h4 span {
	display: block;
    height: 4px;
    background: #ec1f25;
    margin: 10px auto;
}
.about-page-content p {
	font-weight: 700;
	letter-spacing: 2px;
	text-align: justify;
	margin-top: 5%;
	color: #24262d;
}
.about-page-content .c1 h4 span {
	width: 18%;
}
.about-page-content .c1 p {
	margin-top: 9%;
}
.about-page-content .c2 h4 span {
	width: 20%;
}
.about-page-content .c3 h4 span {
	width: 10%;
}
.about-page-content .c3 ul, .about-page-content .c5 ul {
	margin-top: 15%;
}
.about-page-content .c3 ul li, .about-page-content .c5 ul li {
	position: relative;
    font-size: 18px;
    line-height: 24px;
    color: #24262d; 	
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 16px;
	letter-spacing: 2px;
}
.about-page-content .c3 ul li:before, .about-page-content .c5 ul li:before {
	content: url("../images/verify1.png");
    position: absolute;
    left: -10px;
    top: 0px;
    display: block;
    line-height: 26px;
    padding: 0px;
    color: #de9e53;
    font-weight: 900;
}
.about-page-content .c4 h4 span {
	width: 15%;
}
.about-page-content .c4 ul {
	margin-top: 2%;
}
.about-page-content .c4 ul li {
	position: relative;
	color: #24262d;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
	padding-left: 20px;
    margin-bottom: 2%;
	letter-spacing: 2px;
}
.about-page-content .c4 li:before {
	position: absolute;
	left: -10px;
	background-size: 20px 20px;
	display: inline-block;
    width: 20px; 
    height: 20px;
    content:"";
}
.about-page-content .c4 li:nth-child(1):before {
	background-image: url("../images/logo/brandname_Images/brandname_ImgID3.png");
}
.about-page-content .c4 li:nth-child(2):before {
	background-image: url("../images/logo/brandname_Images/brandname_ImgID2.png");
}
.about-page-content .c4 li:nth-child(3):before {
	background-image: url("../images/logo/brandname_Images/brandname_ImgID1.png");
}
.about-page-content .c5 {
	padding-left: 30%;
	padding-right: 30%;
	padding-bottom: 2%;
}
.about-page-content .c5 h4 span {
	width: 25%;
}
.about-page-content .c5 ul {
	margin-top: 5%;
}
.about-page-content .c5 ul li {
	text-align: left;
}
.about-page-content .c5 ul li:before {
	
}
.about-page-content .c1 .img-fluid:hover, .about-page-content .c2 .img-fluid:hover, .about-page-content .c3 .img-fluid:hover, .about-page-content .c4 .img-fluid:hover, .about-page-content .c5 .img-fluid:hover {
	/*box-shadow: 0 0 10px 10px rgba(0, 140, 186, 0.5);*/
	box-shadow: 0 0 10px 10px rgba(222, 158, 83, 1);
}
.about-page-contact {
	padding-bottom: 1%;
}
/*ABOUT HTML END*/
/*NEWS & EVENTS START*/
.ne-page {
	padding-top: 2%;
	padding-right: 2%;
}
.ne-page-title {
	background-image: url("../images/ne.jpeg");
    opacity: 1.5;
}
.ne-content-block .ne-content-cardbox{
	position: relative;
	margin: 10px;
}
/*.ne-content-block .ne-content-box .ne-content-cardbox {
	height: 550px;
	margin-bottom: 40%;
}*/
.ne-content-bt {
	position: relative;
    padding: 35px;
	background-color: #f7f5f1;
}
.ne-content-bt p {
	position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: 900;
    letter-spacing: .16em;
    padding: 10px 30px;
    text-transform: uppercase;
    background-color: #00673A;
    margin-bottom: 20px;
}
.ne-content-bt h5 {
	position: relative;
	text-align: left;
    font-size: 33px;
    line-height: 54px;
    color: #24262d;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 0;
}
.ne-content-bt h5 span {
	display: block;
    height: 4px;
    background: #ec1f25;
    margin: 2% 55% 2% auto;
}
.ne-sidebar {
	margin-bottom: 50px;
}
.sidebar-search {
	position: relative;
    background-color: #24262d;
    padding: 5px 25px 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.sidebar-posts {
	position: relative;
    border: 2px solid #f7f5f1;
    padding: 35px;
	margin-bottom: 20px;
}
.sidebar-posts h4 {
	position: relative;
    display: block;
    font-size: 21px;
    line-height: 1.2em;
    color: #24262d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.sidebar-events, .sidebar-achievement, .sidebar-news { 
	color: #fff;
	border: 2px solid #f7f5f1;
}
.sidebar-events h4, .sidebar-achievement h4, .sidebar-news h4 { 
	font-weight:500; 
	color:#FFFFFF; 
	background-color:#de9e53; 
	margin:0 auto; 
	padding-left: 30px;
	line-height:60px; 
	text-transform:uppercase;
}
.sidebar-events .events_content, .sidebar-achievement .achievement_content, .sidebar-news .news_content { 
	width:90%; 
	margin:0 auto; 
	text-align:justify; 
}
.sidebar-events .events_content a, .sidebar-achievement .achievement_content a, .sidebar-news .news_content a { 
	display: block;
	font-size: 21px;
	font-weight: 700;
	color:#000; 
	border-bottom:1px dashed #5d5d5d; 
	padding-top: 20px; 
	padding-bottom: 20px; 
	margin-bottom: 0px;
}
.sidebar-events .events_content a:hover {
	color: #000;
}
.sidebar-events .events_content a:last-child { 
	border-bottom:none;
}
.sidebar-achievement {
	margin-top: 3%;
	margin-bottom: 3%;
}
.sidebar-achievement .achievement_content .card {
	margin: 30px 15px;
}
.sidebar-achievement .achievement_content .card .card-body h5 {
	color: #000;
	font-weight: 700;
}
.sidebar-achievement .achievement_content .card .card-body p {
	color: #000;font-weight: 500;
}
.sidebar-achievement .achievement_content .card .card-body .btn-style-three {
	margin-left: 20%;
	margin-right: 20%;
	text-align: center;
}
.sidebar-achievement .achievement_content .card .card-body .btn-style-three {
	color: #FFFFFF;
	background-color: #ec1f25;
}
.sidebar-achievement .achievement_content .card .card-body .btn-style-three:before, .sidebar-achievement .achievement_content .card .card-body .btn-style-three:hover:before {
	background-color: #00673A;
	color: #FFFFFF;
}
/*MARQUEE END*/
/*NEWS & EVENTS END*/
/*PROJECT PAGE START*/
.project-section .pp-intro {
	padding-bottom: 4%;
	text-align: center;
}
.project-section .pp-intro .img-fluid {
	width: 250px;
}
.pp-intro-r {
	margin-top: 5%;
}
.pro-pg-h4 {
	padding-top: 1%;
	padding-bottom: 2%;
}
.pro-pg-h4 .tr-h4-head {
	color: #00673A;
    font-weight: 700;
    text-align: center;
}
.pro-pg-h4 .tr-h4-head span {
	color: #ec1f25;
    margin-right: 1%;
    font-size: 20px;
}
.pro-pg-l-list ul {
	padding-top: 5%;
}
.pro-pg-r-list ul {
	padding-top: 0;
}
.pro-pg-l-list h5, .pro-pg-r-list h5 {
	color: #00673A;
	font-weight: 900;
	margin-bottom: 7%;
}
.pro-pg-l-list h5 i, .pro-pg-r-list h5 i {
	color: #ec1f25;
}
.pro-pg-r-list {
	margin-bottom: 7%;
}
.pro-pg-bl h5, .pro-pg-br h5, .pro-secbl-list h5, .pro-secbr-list h5, .oldpro-2-list h5 {
	color: #00673A;
	font-weight: 900;
	margin-bottom: 5%;
}
.pro-pg-bl h5 i, .pro-pg-br h5 i, .pro-secbl-list h5 i, .pro-secbr-list h5 i, .oldpro-2-list h5 i {
	color: #ec1f25;
}
.pro-pg-bl ul li, .pro-pg-br ul li {
	padding-left: 30px;
}
.pro-pg-bl ul li:before, .pro-pg-br ul li:before {
	position: absolute;
    left: -10px;
    top: 0px;
    display: block;
    line-height: 26px;
    padding: 0px;
    font-weight: 900;
	font-size: 25px;
}
.pro-pg-bl ul li:before {
	content: "\2217";
	color: #ec1f25;
}
.pro-pg-br ul li:before {
	content: "\2713";
	color: #00673A;
}
/*PROJECT PAGE END*/
/*BROCHURE PAGE START*/
.brochure .section-intro {
	margin-top: 2%;
	margin-bottom: 2%;
}
.brochure .section-img {
	text-align: center;
	margin-top: 2%;
	margin-bottom: 2%;
}
.brochure .section-img .img-fluid {
	width: 230px;
}
.brochure .brochure-text {
	position: relative;
	top: 30%;
	text-align: center;
}
.brochure .b-row {
	margin-top: 5%;
	margin-bottom: 5%;
}
.brochure .brochure-text h3 {
	color: #000;
	font-weight: 700;
}
.brochure .brochure-text h3 .img-fluid {
	position: relative;
	top: -3px;
	height: 1.45rem;
}
.brochure .row:nth-child(5) .brochure-text h3 .img-fluid {
	height: 2.5rem;
	top: -5px;
}
/* Button Group Start */
.brochure .brochure-text .btn-group > div {
	width: auto;
	margin-top: 10%;
}

/*  set2 start here */

.brochure .brochure-text .set_2_button {
	font: inherit;
	color: #FFF;
	width: auto;
	padding: 0px 25px;
	line-height: 45px;
	overflow: hidden;
	position: relative;
	transition: all 1s;
	cursor: pointer;
	border: 1px solid #000;
}
.brochure .brochure-text .set_2_button:before {
	left: 48%;
}
.brochure .brochure-text .set_2_button:active {
	background: #cccccc;
	color: #000000;
	top: 2px;
	transition: all 1s;
}
.brochure .brochure-text .set_2_button > span {
	display: inline-block;
	transition: all 0.5s;
}
.icon-forward:before {
	content: "→";
	position: absolute;
}
.icon-forward-color:before {
	content: "→";
	position: absolute;
	color:#fff;
}
.icon-backward:before {
	content: "←";
	position: absolute;
}
.icon-up:before {
	content: "↑";
	position: absolute;
}
.icon-down:before {
	content: "↓";
	position: absolute;
}
.icon-down-color:before {
	content: "↓";
	position: absolute;
	color: #000;
}
.set_2_btn-1:before {
	left: -100%;
	transition: all 0.5s;
}
.set_2_btn-1:hover:before {
	left: 48%;
	transition: all 1s;
}
.set_2_btn-1:hover > span {
	transform: translateX(300%);
	transition: all 1s;
}
.set_2_btn-2:before {
	top: -100%;
	transition: all 0.5s;
}
.set_2_btn-2:hover:before {
	top: 0px;
}
.set_2_btn-2:hover > span {
	transform: translateY(300%);
}
.color1{
background:#666666 ;
}
.color1_1{
background:#CFC86E;
color:#000;
}
.color1_1:hover{
background:#D6383E;
color:#fff;
}
.color2{
background:#f8c013;
color:#2e2302;
}
.color3{
background:#f2625a;
}
.color4{
background:#b9ccd2;
color:#252b2d;
}
.color4_1{
background:#096B3C;
color:#fff;
}
.color4_1:hover{
background:#CFC86E;
}
.color5{
background:#56c5ff;
color:#fff;
}
/* set 2 end here */
/* Button Group End */
/*BROCHURE PAGE END*/
/*OLD PROJECT START*/
.project-section .section-intro .oldpro-head {
	padding-bottom: 3%;
}
.old-pro-second-subhead {
	text-align: center;
}
.old-pro-second-subhead .img-fluid {
	width: 250px;
	margin-bottom: 3%;
}
.oldpro-second .tr-heading span {
	color: #ec1f25;
	margin-right: 1%;
	font-size: 20px;
}
.oldpro-second .tr-heading {
	color: #00673A;
	font-weight: 700;
	margin-bottom: 2%;
	text-align: center;
}
.oldpro-2-list {
	padding-top: 2%;
	padding-bottom: 2%;
}
.oldpro-2-list h5 {
	letter-spacing: 1px;
}
.oldpro-2-list ul li {
	letter-spacing: 1px;
}
.oldpro-2-sitemap {
	padding-top: 2%;
	padding-bottom: 2%;
}
.oldpro-2-sitemap .img-fluid {
	width: 100%;
	height: 400px;
}
.site-g-map-oldpro-2 {
	text-align: center;
}
.project-section .oldpro-infobtn {
	text-align: center;
	padding: 30px 0px;
	display: inline;
}
.project-section .oldpro-infobtn .btn-style-three {
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 700;
}
.project-section .oldpro-infobtn .btn-style-three:nth-child(1) {
	margin-right: 5%;
}
.project-section .oldpro-infobtn .btn-style-three:before {
	background-color: #00673A;
}
.project-section .oldpro-infobtn .btn-style-three:hover:before {
	background-color: #00673A;
}
.old-pro-first-subhead {
	text-align: center;
}
.old-pro-first-subhead h2 {
	color: #ec1f25;
	font-weight: 900;
	letter-spacing: 1px;
}
.old-pro-first-subhead h2 span {
	color: #00673A;
}
/*OLD PROJECT END*/
/*TEAM START*/
.team-page {
	padding-bottom: 2%;
}
.team-page .row {
	margin-top: 3%;
}
.team-page .row:nth-child(1) {
	margin-top: 0;
}
.team-page .row:nth-child(2) {
	margin-top: 0;
}
.team-page .row-line {
	display: block;
    width: 80%;
    height: 4px;
    background: #ec1f25;
    margin: 10px auto;
	margin-top: 2%;
}
.team-page .section-intro .team-head {
	margin-top: 2%;
	margin-bottom: 1%;
}
.team-page .section-intro .team-head span {
	width: 18%;
}
.team-page .section-intro .team-head-txt {
	text-align: center;
	color: #000;
	font-weight: 700;
	letter-spacing: 1px;
}
.team-page .team-page-img {
	text-align: center;
}
.team-page .team-page-img .tpi-head {
	color: #000;
	font-weight: 600;
}
.team-page .team-page-img .tpi-subhead {
	color: #000;
	font-weight: 700;
}
.team-page .team-page-img .img-fluid {
	margin-top: 5%;
}
.team-page .team-page-content {
	margin-top: 5%;
	text-align: justify;
	padding-left: 30px;
	padding-right: 150px;
}
.team-page .team-page-content ul {
	position: relative;
}
.team-page .team-page-content ul li {
	position: relative;
    font-size: 18px;
    line-height: 24px;
    color: #24262d;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 16px;
	letter-spacing: 1px;
}
.team-page .team-page-content ul li:before {
	content: "\274F";
    position: absolute;
    left: -10px;
    top: 0px;
    display: block;
    line-height: 26px;
    padding: 0px;
    color: #ec1f25;
    font-weight: 900;
}
.team-page .team-page-content ul li ul li {
	margin-top: 2%;
}
.team-page .team-page-content ul li ul li:before {
	content: "\2714";
	left: -3px;
}
.team-page .team-page-img ul li {
	display: inline;
}
.team-page .team-page-img ul li a {
	background: none;
	margin-right: 2%;
}
.team-page .team-page-img ul li a .img-fluid {
	width: 30px;
}
.team-page .team-page-img ul li a .img-fluid:hover {
	width: 35px;
	transition: 0.5s;
}
/*TEAM END*/
/*SERVICE START*/
#service-page .card-body h5 {
	background-color: #00673A;
	color: #fff;
    font-weight: 800;
	padding: 2%;
	text-align: center;
}
#service-page .card1:nth-child(1) .card-body h5, #service-page .card2:nth-child(2) .card-body h5 {
	font-size: 1.20rem;
}
#service-page .card-text {
	color: #000;
	font-weight: 700;
}
#service-page .section-intro {
	margin-top: 2%;
}
#service-page .expertise-b .img-fluid {
	float: left;
}
/*SERVICE END*/
/*CAREER START*/
.career-page .section-intro, .contact-page .section-intro {
	text-align: center;
}
.career-page .section-intro .career-page-head, .contact-page .section-intro .contact-page-head {
	padding-top: 2%;
	padding-bottom: 2%;
	color: #000;
	font-weight: 700;
}
.career-page .section-intro .career-page-head .img-fluid, .contact-page .section-intro .contact-page-head .img-fluid {
	width: 70px;
	margin-right: 2%;	
}
.career-form {
	padding-right: 5%;
}
.career-form h3 {
	color: #000;
	margin-bottom: 3%;
	font-weight: 700;
	padding-bottom: 2%;
}
.career-form .form-group .form-control {
	font-size: 1.50rem;
}
.career-page .social h3 {
	color: #000;
	font-weight: 700;
}
.career-page .social h4 {
	color: #000;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3%;
}
.career-page .social h5 {
	margin-bottom: 5%;
	text-align: center;
}
.career-page .social h5 .wta {
	color: #000!important;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5%;
	letter-spacing: 2px;
}
.career-page .social h5 .wta .img-fluid {
	width: 25px;
}
.career-positions {
	border-left: 5px solid red;
	padding-left: 5%;
}
.career-positions h2 {
	color: #000;
	font-weight: 600;
	margin-bottom: 5%;
}
.career-positions h3 {
	color: #000;
}
/*CAREER END*/
/*CONTACT START*/
.contact-page-title {
	position: relative;
	width: 100%;
	height: 100%;
	background-image: url("../images/contactpage.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	background-origin: padding-box;
	background-attachment: local;
	opacity: 1;
	padding: 150px 0;
}
.contact-page {
	padding-bottom: 2%;
	background-color: #70c3be;
    color: #fff;
}
.contact-page .section-intro .contact-page-head .img-fluid {
	margin-right: 2%;
}
.contact-page .section-intro {
	margin-bottom: 5%;
}
.contact-page h6 {
	margin-bottom: 3%;
}
.contact-page .card .card-body .form-group {
	margin-bottom: 5%;
}
.contact-page .card .card-body .form-group .form-control {
	font-size: 1.50rem;
}
.contact-wrap {
	margin-top: 3%;
}
.contact-wrap ul li{
	position: relative;
	padding:30px 20px 30px 100px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	background: #216288;
	margin-top: 50px;
	margin-bottom: 25px;
	border-radius: 5px;
}
.contact-wrap ul li:last-child{
	margin-bottom: 0px;
}
.contact-wrap ul li a {
	color: #fff !important;
	display: inline-block;
}
.contact-wrap ul li a i:hover {
	color: #7fb174;
}
.contact-wrap ul li i{
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	left: 30px;
	font-size: 35px;
	color: #FFFFFF;
}
.contact-wrap ul li i:hover{
	font-size: 45px;
}
.contact-wrap ul li a p{
	position: relative;
	font-size: 14px;
	margin-top: 10%;
	font-weight: 400;
	text-transform: capitalize;
	top: 40%;
	letter-spacing: 2px;
}
.contact-wrap ul li p span{
	display: block;
	color: #fff;
	font-size: 18px;
}
.contact-wrap ul li p a:hover {
	color: #fff;
}
.contact-page .contact-page-social {
	margin-top: 3%;
	text-align: center;
}
.contact-page .contact-page-social .list-inline .list-inline-item a .img-fluid {
	width: 40px;
}
/*CONTACT END*/
/*FOOTER START*/
.main-footer {
	text-align: center;
	color: #FFFFFF;
}
.footer-top {
	padding: 30px 0px;
	background: #333132;
}
.footer-top .img-fluid {
	width: 100px;
	background: #f1f1f1;
	padding: 1%;
	margin: 30px 0px 20px;
}
.footer-top p {
	color: #FFFFFF;
	letter-spacing: 1px;
}
.footer-top .ftop-one ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
}
.footer-top .ftop-one ul li a img {
	width: 40px;
	height: 40px;
	background: transparent;
}
.footer-top .ftop-one ul li a img:hover {
	width: 50px;
	height: 50px;
	transition: 0.5s;
}
.footer-top .ftop-two, .footer-top .ftop-three, .footer-top .ftop-four {
	text-align: left;
}
.footer-top .ftop-two h4 {
    font-size: 21px;
    text-transform: uppercase;
    padding-left: 30px;
    margin: 30px 0px 50px;
    font-weight: 600;
    position: relative;
}
.footer-top .ftop-two h4:before {
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 12px;
    background: #ec1f25;
    content: "";
}
.footer-top .ftop-two ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    line-height: 24px;
    font-size: 18px;
	letter-spacing: 1px;
}
.footer-top .ftop-two ul li a {
	color: #fff;
}
.footer-top .ftop-two ul li i {
    height: 25px;
    width: 25px;
    font-size: 14px;
    border: 2px solid #ec1f25;
    text-align: center;
    line-height: 24px;
    position: absolute;
    left: 0;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.footer-top .ftop-two ul li:last-child {
    margin-bottom: 0px;
}
.footer-top .ftop-three h4 {
    font-size: 21px;
    text-transform: uppercase;
    padding-left: 30px;
    margin: 30px 0px 50px;
    font-weight: 600;
    position: relative;
}
.footer-top .ftop-three ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    line-height: 24px;
    font-size: 18px;
	letter-spacing: 1px;
}
.footer-top .ftop-three ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f101";
    font-family: fontawesome;
}
.footer-top .ftop-three ul li:hover:before {
    left: 5px;
    color: #ec1f25;
}
.footer-top .ftop-three ul li a {
	color: #fff;
}
.footer-top .ftop-three ul li i {
    height: 25px;
    width: 25px;
    font-size: 14px;
    border: 2px solid #ec1f25;
    text-align: center;
    line-height: 24px;
    position: absolute;
    left: 0;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.footer-top .ftop-four h4 {
    font-size: 21px;
    text-transform: uppercase;
    padding-left: 30px;
    margin: 30px 0px 50px;
    font-weight: 600;
    position: relative;
}
.footer-top .ftop-four p {
    margin-bottom: 20px;
}
.footer-top .ftop-four input {
    width: 100%;
    height: 40px;
    border: 2px solid #fff;
    padding-left: 15px;
    background: transparent;
    margin-bottom: 10px;
}
.footer-top .ftop-four input {
    color: #fff;
}
.footer-top .ftop-four .btn-style-three {
	position: relative;
	color: #FFFFFF;
	background-color: #ec1f25;
	font-weight: 900;
	letter-spacing: 2px;
}
.footer-top .ftop-four .btn-style-three:before, .footer-top .ftop-four .btn-style-three:hover:before {
	background-color: #00673A;
}
.footer-bottom {
	padding: 10px 0px;
    background: #e7e7e7;
    text-align: center;
}
.footer-bottom p {
	color: #000;
	font-size: 21px;
	font-weight: 900;
}
/*FOOTER END*/
/*SCROLL START*/
.scroll-to-top {
	position:fixed;
	bottom:20px;
	right:20px;
	width:48px;
	height:48px;
	color:#fff;
	font-size:25px;
	font-weight: 900;
	line-height:48px;
	text-align:center;
	z-index:100;
	cursor:pointer;
	background:#ec1f25;
	display:none;
	border-radius:5px;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}
.scroll-to-top:hover {
	background:#00673A;
}
/*SCROLL END*/
.modal.fade.show {
	padding: 0 !important;
}
.modal-dialog-slideout {
	min-height: 100%; 
	margin: 0 0 0 auto;
	background: #fff;
}
.modal.fade .modal-dialog.modal-dialog-slideout {
	-webkit-transform: translate(100%,0)scale(1);
	transform: translate(100%,0)scale(1);
}
.modal.fade.show .modal-dialog.modal-dialog-slideout {
	-webkit-transform: translate(0,0);
	transform: translate(0,0);
	display: flex;
	align-items: stretch;
	-webkit-box-align: stretch;
	height: 100%;
	padding-right: 0px;
}
.modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body{
	overflow-y: auto;
	overflow-x: hidden;
}
.modal-dialog-slideout .modal-content{
	border: 0;
}
.modal-dialog-slideout .modal-header, .modal-dialog-slideout .modal-footer {
	height: 69px; 
	display: block;
} 
.modal-dialog-slideout .modal-header h5 {
	float:left;
}
.popup-form .btn-style-three {
	color: #FFFFFF;
	transform: rotate(-90deg);
	position: fixed;
	background-color: #ec1f25;
	z-index: 1049;
	top: 50%;
	right: -45px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
    -moz-box-shadow: -2px -0px 8px rgba(43, 33, 33, 0.06);
    -webkit-box-shadow:  -2px -0px 8px rgba(43, 33, 33, 0.06);
	box-shadow: -2px -0px 8px rgba(43, 33, 33, 0.06);
}
.popup-form .btn-style-three:before {
	background-color: #00673A;
}
.popup-form .btn-style-three:hover:before {
	background-color: #00673A;
}
.popup-form .btn-style-three .btn-title {
	padding: 0;
	font-size: 18px;
	font-weight: 700;
}
.btnn-enq {
	color: #fff;
	transform: rotate(-90deg);
	position: fixed;
	background-color: #216288;
	z-index: 1049;
	top: 40%;
	left: 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
    -moz-box-shadow: -2px -0px 8px rgba(43, 33, 33, 0.06);
    -webkit-box-shadow:  -2px -0px 8px rgba(43, 33, 33, 0.06);
	box-shadow: -2px -0px 8px rgba(43, 33, 33, 0.06);
}

.popup-form span {
	padding: 0% 0% 2% 0%;
	font-size: 10px;
}
.popup-form .modal-header {
	background: #f1f1f1;
	height: 100px;
}
.popup-form .modal-header .modal-title {
	font-size: 18px; 
	margin: 2% 0% 2% 2%;
	font-weight: 900;
	color: #000;
}
.popup-form .modal-header .modal-title .img-fluid {
	width: 60px;
}
.popup-form .modal-body {
	padding-top: 5%;
	background: #fff;
}
.popup-form .modal-footer {
	background: #f9f9f9;
}
.btn-label {
	position: relative;
	left: -12px;
	border: 2px solid #fff;
	display: inline-block;
	padding: 6px 12px;
	background: rgba(0,0,0,0.15);
	border-radius: 3px 0 0 3px;
}
.btn-readmore .btn-logo {
	position: relative;
	float: left;
	margin-left: -25px;
	width: 46px;
}
.btn-readmore .btn-logo img {
	background: #f1f1f1;
	padding: 2%;
	border-radius: 10% 10% 10% 10%;
}
.animated.lightSpeedIn{z-index: 999;-webkit-animation-duration:2s;-moz-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s}
.animated.flipInX{-webkit-animation-duration:3s;-moz-animation-duration:3s;-o-animation-duration:3s;animation-duration:3s}

/*Social SideBar Start*/
.icon-bar {
	position: fixed;
	top: 15%;
	right: 5px;
	z-index: 1049;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}
.icon-bar a {
	display: block;
	margin-bottom: 5px;
}
.icon-bar a .img-fluid {
	width: 45px;
}
.icon-bar a .img-fluid:hover {
	width: 50px;
	transition: 0.5s ease;
}
/*Social SideBar End*/
/*Discplaimer Start*/
.popupBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    display: none;
}
.contBox {
	color: #000;
    width: 50%;
	height: auto;
    text-align: justify;
    margin: 0 auto;
    margin-top: 4%;
    font-size: 16px;
    line-height: 22px;
    border: 3px solid #ec1f25;
    border-radius: 6px;
    outline: 0;
    background: #f1f1f1;
    padding: 30px 10px 5px 10px;
}
.contBox p{
	font-size: 35px;
	font-weight: 900;
	color: #ec1f25;
}
.contBox>hr {
	border: 1px solid #000;
	margin-right: 15px;
	margin-left: 15px;
}
/*.agreeBtn {
    width: 150px;
	border-radius: 5%;
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
    padding: 30px 15px;
    cursor: pointer;
    background: #ec1f25;
    color: #000;
}
.agreeBtn:hover {
    background: #6CA580;
    color: #000;
}*/
.agreeBtn {
	text-align: center;
	margin: 20px auto;
}
.agreeBtn .theme-btn {
	background-color: transparent;
}
.agreeBtn .btn-style-three {
	background-color: #ec1f25;
	color: #FFFFFF!important;
	font-weight: 700;
}
.agreeBtn .btn-style-three:hover {
	background-color: #ec1f25;
	font-weight: 700;
}
.agreeBtn .btn-style-three:before {
	background-color: #00673A;
}
.agreeBtn .btn-style-three:hover:before {
	background-color: #00673A;
	font-weight: 700;
}

#scroll{
	overflow:auto;
	height:350px;
	cursor: pointer;
}
#scroll p{
	margin-left: 2%;
	margin-right: 2%;
	font-size: 21px;
	line-height: 35px;
	color: #000;
	font-weight: 500;
}
/*Discplaimer End*/
/*MODAL START*/
#vision-dialog, #mission-dialog {
	display: none;
}
#vision-dialog .modal-dialog, #mission-dialog .modal-dialog {
	position: relative;
	top: 18%;
	border: 2px solid #ec1f25;
}
#vision-dialog .modal-dialog .modal-content .modal-header .pmd-avatar-list-img .img-fluid, #mission-dialog .modal-dialog .modal-content .modal-header .pmd-avatar-list-img .img-fluid {
	width: 80px;
}
#vision-dialog .modal-dialog .modal-content .modal-header .media-body .section-intro, #mission-dialog .modal-dialog .modal-content .modal-header .media-body .section-intro {
	padding: 15px 40px;
	color: #000;
	font-weight: 900;
}
#vision-dialog .modal-dialog .modal-content .modal-header .close, #mission-dialog .modal-dialog .modal-content .modal-header .close {
	font-weight: 500;
	font-size: 50px
}
#vision-dialog .modal-dialog .modal-content .modal-header .close:hover, #mission-dialog .modal-dialog .modal-content .modal-header .close:hover {
	background: #ec1f25;
	color: #FFFFFF;
}
#vision-dialog .modal-dialog .modal-content .pmd-modal-media, #mission-dialog .modal-dialog .modal-content .pmd-modal-media {
	padding: 15px;
	background: #f7f7f7;
}
#vision-dialog .modal-dialog .modal-content .modal-body, #mission-dialog .modal-dialog .modal-content .modal-body {
	background: #de9e53;
}
#vision-dialog .modal-dialog .modal-content .modal-body p, #mission-dialog .modal-dialog .modal-content .modal-body p {
	color: #FFFFFF;
	font-size: 22px;
	letter-spacing: 2px;
	font-weight: 700;
	text-align: justify;
}
/*MODAL END*/
/*MAGNIFIC POPUP START*/
.mfp-content {
	margin-top: 7%;
}
/*.mfp-close {
	background: transparent;
}
.mfp-img {
	
	padding-bottom: 0;	
}*/
/*MAGNIFIC POPUP END*/