/*
-------------------------------
Import CSS and Google Fonts
-------------------------------
*/
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700,900|Work+Sans:400,500,600,700');


/*
-------------------------------
Global Styles
-------------------------------
*/
body {
	font-family: 'Work Sans', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #313131;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
}

p {
	font-size: 15px;
	line-height: 1.6;
}

a {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	color: #313131;
}

a:focus {
	outline: none;
	color: #313131;
}

button:focus {
	outline: none;
}

.form-group input:focus {
	box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #313131;
}

a:hover,
a:active,
a:visited,
a:focus {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

a:hover {
	color: #3367c1;
}

img {
	max-width: 100%;
	height: auto;
}

.bg {
	position: absolute;
	background-color: #313131;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.75;
}

.bg-area {
	background: #ffffff;
}

button {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px !important;
	border-radius: 0 !important;
}

input,
textarea,
.form-control,
select{
	border-radius: 0 !important;
    font-family: 'Work Sans', sans-serif;
}
/* input arrow hide css */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.pl-10 {
	padding-left: 10px !important;
}

.pr-10 {
	padding-right: 10px !important;
}

.ptb {
	padding: 60px 0 !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.pb-30 {
	padding-bottom: 30px !important;
}

.pt-60 {
	padding-top: 60px !important;
}

.pb-60 {
	padding-bottom: 60px !important;
}

.mtb {
	margin: 60px 0 !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mt-60 {
	margin-top: 60px !important;
}

.mb-60 {
	margin-bottom: 60px !important;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.headline {
	text-align: center;
	position: relative;
    padding-bottom: 12px;
}

.headline h2 {
    font-size: 36px;
	font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.headline h2 span{
    font-weight: 400 !important;
}
.headline h3 {
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
    margin-bottom: 15px;
    color: #777;
}
.hl-white {
	color: #fff !important;
}

.hl-white h2 {
	color: #fff !important;
}
.hl-white h3 {
	color: #fff !important;
}

.hl-left {
	text-align: left !important;
}

.headstyle h4 {
	display: inline-block;
	position: relative;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 9px;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.headstyle h4:before {
	position: absolute;
	content: '';
	width: 70%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: 0;
}

.headstyle h4:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: -5px;
}

.image-effect {
	position: relative;
	display: block;
	vertical-align: top;
	max-width: 100%;
}

.image-effect:before,
.image-effect:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .3);
	z-index: 6;
	-webkit-transition: transform .5s, opacity .2s ease-in-out 0s;
	-o-transition: transform .5s, opacity .2s ease-in-out 0s;
	transition: transform .5s, opacity .2s ease-in-out 0s;
	opacity: 0;
	filter: alpha(opacity=0);
}

.effect-item:hover .image-effect:before {
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	transform: scale(0, 1);
	opacity: 1;
	filter: alpha(opacity=100);
}

.effect-item:hover .image-effect:after {
	-webkit-transform: scale(1, 0);
	-ms-transform: scale(1, 0);
	-o-transform: scale(1, 0);
	transform: scale(1, 0);
	opacity: 1;
	filter: alpha(opacity=100);
}

.button a {
	display: inline-block;
	font-weight: 600;
	color: #fff;
	background: #3367c1;
	border-left: 5px solid;
	border-right: 5px solid;
	border-color: #313131;
	border-radius: 0px;
	padding: 13px 27px;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.button a i {
	margin-left: 5px;
}

.button a:hover {
	background: #3367c1;
	border-color: #313131;
	color: #313131;
}

.button-bn a {
	font-weight: 600;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.button-bn i {
	margin-left: 3px;
}

.button-bn a:hover {
	color: #313131;
}

/* button-df */
.button-df a {
	display: inline-block;
	font-weight: 700;
    letter-spacing: 0.5px;
	color: #fff;
	background: #3367c1;
	border-radius: 0px;
	padding: 13px 27px;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.button-df a i {
	margin-left: 5px;
}

.button-df a:hover {
	background: #313131;
	color: #fff;
}

.modal-footer .btn {
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.modal-footer .btn:hover {
	background: #313131;
	color: #fff;
}
.btn-subs {
	background: #313131!important;
	border-color: #313131!important;
}
.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: relative;
    background:linear-gradient(to right, #F27121, #E94057, #232b8a);
    padding: 4px 0;
    min-height: 42px;
    z-index: 999;
}
/*
-------------------------------
Preloader
-------------------------------
*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-repeat: no-repeat;
	background-position: center;
	margin: -100px 0 0 -100px;
}

/*
-------------------------------
Header-Area
-------------------------------

*/
button#increaseFont {
    color: white;
    border: 1px solid white;
    padding: 0px 2px;
}
#decreaseFont{
	color: white;
    border: 1px solid white;
    padding: 0px 2px;
}
#resetFont{
	color: white;
    border: 1px solid white;
    padding: 0px 2px;
}
/* .header-top-orange{
	background-color: #ee7e44;
	height: 26px;
} */
/* google translate css */
#google_translate_element{
	text-align: end;
	margin-top: 2px;
}
.goog-te-banner-fram.skiptranslate, .goo-te-gadget-simple img { 
	display: none !important;
}
.goo-tooltip{
	display: none !important;
}
.goo-tooltip:hover{
	display: none !important;
}
.goog-text-highlight{
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
}
.header-area{
	/* background: #159957;  fallback for old browsers
	background: -webkit-linear-gradient(to right, #155799, #159957);  Chrome 10-25, Safari 5.1-6
	background: linear-gradient(to right,#42863b, #096da7); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	/* background: #159957;  fallback for old browsers */
	/* background: -webkit-linear-gradient(to right, #155799, #159957);
    background: linear-gradient(to right,#ee7e44, #416e64); */
    /* background-color: #da5800; */
	height: 30px;
	background: #8A2387;  
	background: -webkit-linear-gradient(to right, #F27121, #E94057, #8A2387);  
    background: linear-gradient(to right, #F27121, #E94057, #232b8a); 
}

.header-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-social li {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}

.header-social li:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	background-color: #e9e9e9;
	top: 0;
	left: -15px;
}

.header-social li:first-child:before {
	display: none;
}

.social-bar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-bar li {
	display: inline-block !important;
	margin-right: 15px !important;
}

.social-bar li:last-child {
	margin-right: 0 !important;
}

.social-bar li:before {
	display: none;
}

.social-bar li a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.social-bar li a:hover {
	color: #fff;
}

.language a {
	text-decoration: none;
	color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
}

.language a:hover {
	color: #fff;
}

.language i {
	margin-right: 7px;
}
.logo-search-bar{
	margin: 0px 0px;
	/* background-color: #8ecbff; */
	/* background-image: url(../uploads/samajk/header-image.jpeg);
	background-repeat: no-repeat;
	background-size:cover; */
}
.dropdown-menu a {
	text-decoration: none;
	color: #313131;
    font-family: 'Work Sans', sans-serif;
}

.dropdown-menu a:hover {
    background-color: transparent;
	color: #3367c1;
}

.header-info {
	text-align: right;
	float: right;
}

.header-info ul.first {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-info ul.first li {
	position: relative;
	display: inline-block;
	color: #fff;
	margin-left: 30px;
	font-size: 13px;
}

.header-info ul.first li:first-child {
	margin-left: 0;
}

.header-info ul.first li:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	background-color: #e9e9e9;
	top: 0;
	right: -17px;
	display: none;
}


.header-info ul.first li i {
	margin-right: 7px;
	color: #fff;
}

/*
-------------------------------
Logo and Menu
-------------------------------
*/
.lion-img{
	text-align: center;
}
.logo-main-img-am{
	width: 100%;
}
.logo-main-img{
	width:40%;
    /* margin: 20px 0px; */
}
.logo-main-imgsj{
	width:40%;
	margin-top: 10px;
}
.forest-h1{
	font-family: 'Cinzel', serif !important;
    font-size: 18px;
    margin-top: 10px;
	text-align: start;
	color: white;
}
.a-govt-h6{
	font-size:18px;
    text-align:start;
    font-weight: 500;
	font-family: 'Cinzel', serif !important;
	color: white;
}
.a-gov-span{
	font-size: 13px !important;
}
.VIpgJd-ZVi9od-vH1Gmf-ibnC6b div, .VIpgJd-ZVi9od-vH1Gmf-ibnC6b:link div, .VIpgJd-ZVi9od-vH1Gmf-ibnC6b:visited div, .VIpgJd-ZVi9od-vH1Gmf-ibnC6b:active div {
    color: #3f6e64 !important;
    background: #FFF;
}
.goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #ffffff !important;
}
.goog-te-gadget .goog-te-combo {
    margin: 4px 0 !important;
    margin-left: 194px !important;
    width: 92px;
	border-radius: 10px !important;
    box-shadow: 2px 2px 2px #3f6e64;
}
.goog-te-gadget-icon {
    margin-left: 2px;
    margin-right: 2px;
    width: 19px;
    height: 19px;
    vertical-align: middle;
    display: none;
}
/* hide translator bar */
.goog-te-banner-fram.skiptranslate, .goog-te-gadget-simple img{
	display: none !important;
}
.goog-tooltip{
	display: none !important;
}
.goo-tooltip:hover{
	display: none !important;
}
.goog-text-highlight{
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
}
.goog-te-gadget-simple {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
#goog-gt-tt{
	display:none !important;
}
.VIpgJd-ZVi9od-ORHb .VIpgJd-ZVi9od-l4eHX-hSRGPd {
    padding-top: 2px;
    padding-left: 4px;
    display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-l4eHX-i3jM8c {
    position: absolute;
    top: 10px;
    left: 14px;
    display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid {
    border-radius: 0 0 12px 12px;
    margin: 0;
    background: #f1f4f9;
    position: relative;
    min-height: 50px;
    display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd-N7Eqid ltr{
	display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-axAV1 {
    width: auto;
    padding: 12px 0 0;
    color: #1f1f1f;
    font-size: 16px;
    text-align: initial;
	display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-k77Iif-i3jM8c, .VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-k77Iif-SIsrTd {
    margin: 16px;
    padding: 0;
    display: none !important;
}
.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od {
    display: inline-block;
    width: 77%;
    padding: 12px;
    display: none !important;
}

/* .logo img {	
    width:92px;
} */
/* search button start */
form.example input[type=text] {
    margin-top: 12px;
	margin-left: 24px;
	padding: 4px 10px;
    border-radius: 26px !important;
    font-size: 16px;
    border: 1px solid #000000;
    float: left;
    width: 90%;
    background: #ffffff;
  }
.search-icon-btn{
	background-color: white;
	border: none;
}
.search-btn{
	cursor: pointer;
    background-color: rgb(253 253 253 / 0%);
    position: relative;
    left: 87%;
    top: -35px;
    font-size: 22px !important;
    color: #4c9bc7;
}

/*   
  form.example button {
	float: left;
	width: 20%;
	padding: 10px;
	background: #2196F3;
	color: white;
	font-size: 17px;
	border: 1px solid grey;
	border-left: none;
	cursor: pointer;
  }
  
  form.example button:hover {
	background: #0b7dda;
  } */
  
  form.example::after {
	content: "";
	clear: both;
	display: table;
  }
/* search button end */

#strickymenu {
	background: #c31432;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #240b36, #c31432);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #ed573d, #2c2c88);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	/* background: #11998e;  fallback for old browsers
	background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  Chrome 10-25, Safari 5.1-6
	background: linear-gradient(to right, #f37f43, #3f6e64); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

	padding: 10px 0px;
}
.download-btn{
	background-color:#0083d7;
    width: 140px;
    transition: all 0.5s;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 10px !important;
}
/* .download-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.download-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
} */
.main-menu-item {
	float:left;
	/* margin-left:70px; */
	/* margin-right: 25px; */
}

.mean-bar .main-menu-item {
	margin-right: 0;	
}

ul.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.nav-menu li {
	position: relative;
	float: left;
}

ul.nav-menu li a {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	text-decoration: none;
	font-family: sans-serif !important;
	padding: 12px 16px;
	/* min-height: 87px; */
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-direction: column;
	flex-direction: column;
}
ul.nav-menu li ul {
	position: absolute;
	width: 280px;
	top: 100%;
	left: 0;
	z-index: 999;
}

ul.nav-menu li ul > li {
	float: none;
	display: none;
	opacity: 0;
}

ul.nav-menu li ul li a {
	font-size: 16px;
	font-weight: 500;
    letter-spacing: 0.5px;
	font-family: sans-serif !important;
	padding: 14px 20px;
	background: #171818;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.20);
	min-height: 49px;
}

ul.nav-menu li ul li ul {
	top: 0;
	left:87%;
	width: 280px;
}

ul.nav-menu li:hover ul > li > ul > li > a{
	border-left: 1px solid rgba(255,255,255,0.20);
}

ul.nav-menu li:hover > a {
	color: #3367c1;
}
ul.nav-menu li ul li:hover > a{
    background: #f1f1f1;
	color: #3367c1;
    border-bottom:  1px solid #f1f1f1;
}

ul.nav-menu li:focus > ul > li,
ul.nav-menu li:hover > ul > li {
	display: block;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-animation: fade 0.4s forwards;
	animation: fade 0.4s forwards;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

@-webkit-keyframes fade {
	0% {
		-webkit-transform: translateY(0px);
		;
	}
	100% {
		-webkit-transform: translateY(0px);
		;
	}
	0% {
		-webkit-transform: translateY(0px);
		;
	}
}

@keyframes fade {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(0px);
		opacity: 1;
	}
	0% {
		transform: translateY(0px);
	}
}

ul.nav-menu li ul li:first-child {
	animation-delay: 0.1s;
}

ul.nav-menu li ul li:nth-child(2) {
	animation-delay: 0.2s;
}

ul.nav-menu li ul li:nth-child(3) {
	animation-delay: 0.3s;
}

ul.nav-menu li ul li:nth-child(4) {
	animation-delay: 0.4s;
}

ul.nav-menu li ul li:nth-child(5) {
	animation-delay: 0.5s;
}

ul.nav-menu li ul li:nth-child(6) {
	animation-delay: 0.6s;
}

ul.nav-menu li ul li:nth-child(7) {
	animation-delay: 0.7s;
}

ul.nav-menu li ul li:nth-child(8) {
	animation-delay: 0.8s;
}

ul.nav-menu li ul li:nth-child(9) {
	animation-delay: 0.9s;
}

ul.nav-menu li ul li:nth-child(10) {
	animation-delay: 1s;
}

.menu-item-has-children {
	margin-right: 15px;
}
.menu-item-has-children a.chl {
	position: relative;
}
.menu-item-has-children a.chl:after {
	content: '\f0d7';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	/* top: 30px; */
}
.menu-item-has-children a.chl::after {
	/* top: 30px; */
}
.sticky .menu-item-has-children a.chl::after {
	top: 12px;
}

.mean-container .mean-nav ul {
	position: static;
	display: block;
}

.mean-container .mean-nav ul li a {
	background: #003180;
	border-left: 0;
    padding: 13px 5%;
}

.mean-container .mean-nav ul li:hover {
	background: none;
}

.mean-container .mean-nav ul li a:hover {
	background-color: rgba(255, 255, 255, 0.1)!important;
}

.mean-container .mean-nav ul li a.mean-expand {
	height: 24px!important;
}

#strickymenu.sticky {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	/* background-color: #fff; */
	/* border-bottom: 1px solid #ddd; */
	z-index: 999;
	-webkit-transition: height 0.3s;
	transition: all 0.3s;
}

#strickymenu.sticky .logo {
	min-height: 70px;
}

#strickymenu.sticky .logo img {
	height: 56px;
}

#strickymenu.sticky ul.nav-menu li a {
	min-height: 40px;
}

#strickymenu.sticky ul.nav-menu li ul li a {
	min-height: 49px;
	overflow: auto;
	width: 280px;
	padding-left: 38px;
}

/*
-------------------------------
Search
-------------------------------
*/
.searchbar .search-button {
	text-align: right;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	right: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.searchbar .search-button:active,
.searchbar .search-button:focus,
.searchbar .search-button:hover {
	cursor: pointer;
	color: #3367c1;
}

.searchbar .input-search {
	position: absolute;
	width: 50%;
	right: 0px;
	bottom: -66px;
	background: #3367c1;
	padding: 15px;
}

.input-search {
	z-index: 999;
}

.searchbar .input-search input {
	font-size: 15px;
	border: 1px solid #fff;
}

.searchbar .input-search .btn {
	cursor: pointer;
	background: #eef1f5;
}

/*
-------------------------------
Slider
-------------------------------
*/
.slider-item {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	height: 600px;
	color: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.bg-slider {
	position: absolute;
	width: 100%;
	/* height: 100%; */
	top: 0;
	left: 0;
	/* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%);
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%);
	background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%); */
}

.text-animated h1 {
	font-size: 42px;
	font-weight: 700;
	color: #ffb216;
	text-transform: uppercase;
	margin-bottom: 15px;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	line-height: 1.3;
	font-family: 'Rubik Wet Paint', cursive !important;
}

.text-animated h1 span {
	font-weight: 300;
}

.text-animated p {
	font-size: 16px;
	color: #fff;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}

.text-animated ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.text-animated li {
	display: inline-block;
	margin-top: 15px;
	margin-right: 15px;
	/* -webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-delay: .8s;
	animation-delay: .8s; */
}

.text-animated li a {
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	background: #3367c1;
	color: #fff;
	border: 1px solid #3367c1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 10px 40px;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.text-animated li a:hover {
	background: #e2b614;
	color: #000000;
	border: 1px solid #fff;
}

.text-animated li:last-child a {
	background: #367c3a !important;
    color: #fff;
    font-size: 30px;
    border: 1px solid #313131;
    margin-top: 330px;
	border-radius: 10px;
}

.text-animated li:last-child a:hover {
	background:rgb(255 178 22)!important;
	color: #ffffff;
	border: 1px solid #fff !important;
	font-size: 30px;
    border: 1px solid #313131;
    margin-top: 330px;
	border-radius: 10px;
}
.slider-one .owl-nav {
	position: absolute;
	bottom: 5%;
    left: calc(50% - 60px);
	width: 120px;
}

.slider-one .owl-nav .owl-prev,
.slider-one .owl-nav .owl-next {
	font-size: 28px;
    text-align: center;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 30px;
    color: #ffffff;
    background: #bbbbbb00 !important;
    border: 2px solid #ffffff !important;
    margin: 0 6px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
	margin-left: 60rem;
    margin-top: 10px;
}

.slider-one .owl-nav .owl-prev:hover,
.slider-one .owl-nav .owl-next:hover {
	color: #3268c1;
	background: #ffffff00 !important;	
	border: 2px solid #367c3a !important;
}

.slider-two .slider-text {
	text-align: center;
}

.slider-two .text-animated p {
	margin-left: 30px;
	margin-right: 30px;
}

.slider-two .owl-nav .owl-prev,
.slider-two .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 45px;
	height: 50px;
	line-height: 46px;
	top: 50%;
	margin-top: -25px;
	border: 2px solid #fff;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.slider-two .owl-nav .owl-prev {
	left: 0;
	margin-left: 0;
}

.slider-two .owl-nav .owl-next {
	right: 0;
	margin-right: 0;
}

.slider-two .owl-nav .owl-prev:hover,
.slider-two .owl-nav .owl-next:hover {
	color: #3268c1;
	border: 2px solid #3268c1;
}


/*
-------------------------------
About start
-------------------------------
*/
.abt-fdcm-heading{
    text-align: center;
    font-size: 28px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
	color: #004aa8;
}
.ab-fdcm-hding-span{
	text-align: center;
    font-size: 28px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
	color:#162e6a;
	border-bottom: 3px solid #0083d7;
}
.about-us-bg{
	background-color:#f1f5ff;
	padding-bottom: 30px;
}
/* .bg-abt-img{
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
} */
.abt-bg{
	background-image: url(../uploads/bg-texture-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    margin: 10px 0px;
	overflow-x: hidden;
	overflow-y: scroll;
    height: 434px;
    width: 100%;
	
	/* background: #2980B9;  
	background: -webkit-linear-gradient(to right, #FFFFFF, #6DD5FA, #2980B9); 
	background: linear-gradient(to right, #87a3ac, #feffff, #e6e6e6ba); */
}
.abt-us-p{
	text-align: justify;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.head-para{
	margin-top: 20px;
}
.bg-div {
	display: block;
    /* margin-left: auto; */
    margin-left: 20px;
    margin-top: 20px;
    /* margin-right: 20px;
  width: 50%;
	/* height: 205px;
	width: 205px; */
	background-position: -140px -580px;
	> img {
	/* margin-top: 28px;
    margin-left: 12px; */
    width: 80px;
    /* height: 110px; */
    border-radius: 130px;
    animation: rotate-animation 10s infinite linear;
	}
}
@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* .welc-margin{
	position: absolute;
   
} */
.wlcm-text-area{
	background-color: #f1f5ff;
    width: 88%;
	min-height: 328px;
    padding: 10px;
    margin-left: 80px;
    border-radius: 4px;
    /* overflow: auto; */
	word-wrap: break-word;
}
.welc-heading{
	font-size: 22px;
    font-family: sans-serif !important;
    font-weight: 700;
    color: #000000;
    text-align: center;
    padding-top: 8px;

}	
.wlcm-text-area p{
	text-align: justify;
	padding-right: 20px;
}
  /* top line */
  /* .welc-heading::before {
	content: '';
    position: absolute;
    background-color: #317739;
    width: 46%;
    height: 3px;
    top: 0;
    left: 0px;
  } */
  
  /* bottom line */
  /* .welc-heading::after {
	content:'';
	position: absolute;
	background-color: #317739;
    width: 27%;
	height: 3px;
	bottom: 0;
	left:0;
  }	 */
  
 .fdcm-bg-clr{
	padding: 38px;
    background-color: #f1f5ff;
    margin-top: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
	height: 434px;
	text-align: center;
 }
.fdcm-hding-spn{
	font-size: 22px;
	font-family: sans-serif !important;
    font-weight: 700;
    color: #004aa8;
	border-bottom: 3px solid #ffa60c;
}
.forest-para-spn{
	font-family: sans-serif !important;
	font-weight: 700;
	color: #000;	
}
.forest-para {
	font-size: 16px;
    color: #000000;
    font-weight: 400;
    font-family: sans-serif !important;
    word-wrap: break-word;
    text-align: justify;
    padding: 0px 16px;
}
.members-img{
	width: 100%;
}
/* READ MORE BTN START CSS */


.read-m-btn {
	background-color:#0083d7;
    border: none;
    color: #FFFFFF;
    padding: 7px;
    text-align: start;
    width:90px;
    transition: all 0.5s;
    cursor: pointer;
    /*margin-left: 16px;*/
    border-radius: 4px !important;
}
  
.read-m-btn a {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	text-decoration: none;
	color: white;
	font-weight: 700;
	font-family: sans-serif !important;
}
  
  .read-m-btn a:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
  }
  
  .read-m-btn:hover a {
	padding-right: 12px;
  }
  
  .read-m-btn:hover a:after {
	opacity: 1;
	right: 0;
  }
  .fdcm-b-img{
    margin-top:-20px;
    box-shadow: 0px 1px 2px 1px gray;
    width: 100%;
	border-radius: 8px;
	height: 250px;
    object-fit: cover;
  }
  .fdcm-a-tag{
	text-decoration: none;
    font-size: 16px;
    color: #000000;
    font-family: sans-serif !important;
    font-weight: 600;
  }
  .fdcm-a-tag:hover{
	color:#7a4e29;
	border-bottom: 1px solid #7a4e29;
  }
  .photo-c-p{
    background-color: rgb(241 245 255);
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    margin-top: 10px !important;
	height: 434px;
  }
  .chairman-img{
	margin-top: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 8px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	
  }
  .chariman-name{
    font-size: 14px;
    font-family: sans-serif !important;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 0px;
	color: #162e6a;
	text-align: center;
  }
  .position-chair{
	font-size: 14px;
	font-family: sans-serif !important;
	font-weight: bold;
    color: #162e6a;
	text-align: center;
	
  }
  .md-img{
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 8px;
	display: block;
	margin-left: auto;
	margin-right: auto;
  }
  
  /* READ MOER BTN END CSS */
  /* *************************************** */
/* latest update section start */
.new-badge{
    background: url(../uploads/samajk-icon/new-img.gif) !important;
	background-repeat: no-repeat;
	background-size: cover;
    text-indent: -9999px;
	width: 44px;
    height: 24px;
    display: inline-block;
}
.clearfix:after{
	display: blockl
	con
}
.tabs-imp-bg{
	margin-bottom: 30px;
}
.tabs-heading{
	color: #0447b2;
	font-size: 18px;
	font-family: sans-serif;
	font-weight: bold;
}
.tabs-tenders-p{
	color: #fff;
    background-color: #0447b2;
    padding: 10px;
    font-size: 14px;
    font-family: sans-serif;
	cursor: pointer;
}
.form-column {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.full-wdth{
	width: 100%;
}
.form-column, .full-wdth {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 10px;
}
.float-right{
	float: right;
}
.float-left{
	float: left;
}
label {
	display: inline-block;
	margin-bottom: .5rem;
}
.form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.form-wizard-wrapper {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	padding-top: 8px;
	z-index: 1;
	margin-bottom: 20px;
	height: 332px;
	border-bottom: 1px solid #d2d2d2;
}
/* .form-wizard-wrapper .form-wizardmove-button {
	position: absolute;
	width: 122.4px;
	left: 0;
	top: -4px;
	bottom: -4px;
	box-shadow: 2px 2px 2px #636363;
	border-radius: 4px;
	background-color: #0c77e5 !important;
	-webkit-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
	-moz-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
	-ms-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
	-o-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
	transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;

} */
.form-wizard-wrapper ul li .form-wizard-link {
    text-align: center !important;
}
a.form-wizard-link.active {
    color: #fff;
}
a.form-wizard-link.active {
    background: #0c77e5;
    border-radius: 5px;
}
.frm-w-btn{
	background-color: #0081B4 !important;
}
.box-ul{
	display: block !important;
	overflow: auto;
	background-color: white;
	
}
.form-wizard-wrapper ul {
    background-color: #ffffff;
    z-index: 1;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0;
    list-style: none;
    padding: 0;
}
.form-wizard-wrapper ul li {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	list-style-type: decimal !important;
}
.form-wizard-wrapper ul li a {
    display: block;
    padding: 10px;
    width: 100%;
    color: #000000;
    text-decoration: none;
    text-align: start !important;
    background-color: #ffffff;
    box-shadow: 2px 2px 2px #979797;
    border-bottom: 1px solid gray;
    /* text-align: center !important; */
}
.form-wizard-wrapper ul li a:focus{
	outline: 0;
}
.form-wizard-wrapper ul li a span {
	position: relative;
	z-index: 1;
	font-size: 16px;
	font-weight: bold;
	/* color: #000000; */
}
.form-wizard-wrapper ul li.active a {
	background-color: #ffffff;
}
.form-wizard-wrapper .form-wizard-content {
	background-color: #ffffff;
	padding: 20px;
	color: #777777;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
	transform: translate3d(100%, 0px, 0px);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}
.form-wizard-wrapper .form-wizard-content.show {
	transform: translate3d(0px, 0px, 0px);
	border: 1px solid #d2d2d2;
    border-radius: 4px;
	overflow: auto;
}
.form-wizard-wrapper .form-wizard-content h6 {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 10px;
}
.form-wizard-wrapper .form-wizard-content .form-wizard-next-btn,
.form-wizard-wrapper .form-wizard-content .form-wizard-previous-btn {
	background-color: #3bb6b6;
	color: #ffffff;
	display: inline-block;
	padding: 6px 26px;
	border-radius: 4px;
	margin-top: 20px;
	text-decoration: none;
}
.form-wizard-wrapper .form-wizard-content .form-wizard-previous-btn {
	background-color: #f1f1f1;
	color: #000000;
}

.form-wizard-content-wrapper {
	height: 280px;
	position: relative;
	background-color: #fff;
}
.text-field {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


/* .latest-updt-bg{
	height: 400px;
} */
.rounded-bottom {
    border-bottom-right-radius: var(--bs-border-radius)!important;
    border-bottom-left-radius: var(--bs-border-radius)!important;
    max-height: 330px !important;
	overflow: auto;
}
.t_tab-content--fluid {
    transition: .5s cubic-bezier(.37, -0.05, .05, 1.69);
}
li.nav-item {
    background-color:#3f6e64;
    color: rgb(0, 0, 0) !important;
	padding: 6px;
	font-size:16px;
}
.nav-tabs .nav-link.active{
	color: #fff !important;
    background-color: #f3803f !important;
	
} 
.nav-tabs{
	margin-top: 30px;
}
.latest-updt{
	color: white !important;
}
.latest-u-heading{
	font-size: 18px;
    font-weight: 600;
    color: #162e6a;
    border-bottom: 2px solid #367c3a;
	font-family: sans-serif;
}
.wht-n-mtb{
	margin-bottom: 10px;
    border-bottom: 1px solid #bdbdbd;
}
.whts-n-list{
	text-decoration: none;
	font-size: 14px;
	color: black;
	font-family: sans-serif;
}
.whts-n-list:hover{
	text-decoration: none;
	font-size: 14px;
	color: rgb(219 99 4);
	font-family: sans-serif;
}
/* badge css */

/* latest update section end */
  /* *************************************** */
  /* IMPORTANT LINKS SECTION *****START****/
  .imp-link-section-bg{
	background-image: linear-gradient(to right bottom, #ffffff52, #ffffffdb),url(../uploads/key-ind-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	padding-bottom: 0px;
  }
  .important-links-section{
    border: 1px solid rgb(217, 217, 217);
    max-height: 319px;
    overflow: auto;
    border-radius: 6px;
}
.imp-links-heading{
	font-size: 15px;
	font-weight: bold;
    font-family: sans-serif;
    background-color: rgb(0 131 215);
    color: white;
    text-align: center;
    padding: 12px 0px;
    margin-top: 9px;
	box-shadow: 2px 2px 2px #003180;
}

.imp-box{
	background-color: #ffffff;
	height:272px;
	overflow: auto;
	border: 1px solid #e4e4e4;
    border-radius: 4px;
	list-style: none;

}
.imp-box li {
    width: 96%;
    border-bottom: 1px solid rgb(129 129 129);
	padding: 10px 0px;
}
.imp-links-box {
    font-size: 15px;
    font-family: sans-serif;
    text-decoration: none;
    color: rgb(0, 0, 0);
    line-height: 2rem;
    padding: 7px 0px;
}
  /* BOOK NOW SECTION START */
.book-bg{
	position: relative;
	width: 100%;
}
/* .click-btn-me{
	text-align: center;
	border-radius: 20px;
	padding: 10px 28px;
} */
.click-here-btn{
	background-color: #0083d7;
    color: #FFFFFF;
	width: 183px;
    padding: 16px;
    transition: all 0.5s;
    cursor: pointer;
	border-radius: 10px !important;
	border: 2px solid white;
	position: absolute;
	top: 74%;
	left: 53%;
	transform: translate(-50%, -50%);
}
/* animation start */
.click-here-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.click-here-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
/* animation end */
.click-here-btn a {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	text-decoration: none;
	color: white;
	font-weight: 700;
	font-family: sans-serif !important;
}
  .click-here-btn a:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
  }
  .click-here-btn:hover a {
	padding-right: 12px;
  }
  
  .click-here-btn:hover a:after {
	opacity: 1;
	right: 0;
  }
  /* .click-here-btn{
	text-decoration: none;
    font-size: 30px;
    color: white;
    padding: 10px 28px;
    background-color: #f3803f;
	border: 2px solid white;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border-radius: 20px;
}
.click-here-btn:hover{
    font-size: 30px;
    color: white;
    padding: 10px 28px;
    background-color: #3f6e64;
	transition: 0.6s;
	border: 2px solid white;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border-radius: 20px;
} */
  
.book-g-s-heading{
    text-align: center;
    font-size: 20px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
	color: #464646;
}
.bok-g-s-hding-span{
	text-align: center;
    font-size: 20px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
	color:#162e6a;
    border-bottom: 2px solid #317739;
}
/* map and induction summary css start */
/* .map-in-heading{
    text-align: center;
    font-size: 20px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
	color: #000000;
}
.map-in-hding-span{
	text-align: center;
    font-size: 20px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
	color:#162e6a;
    border-bottom: 2px solid #317739;
} */
/* key indication tabs section for bar Chart  */
/* Style the tab */
/* .key-ind-bg{
		background-image: linear-gradient(to right bottom, #ffffff52, #f3f4f90d),url(../uploads/key-ind-bg.jpg);
		background-size: cover;
		background-repeat: no-repeat;
}
.key-ind-heading{
    font-size: 24px;
    font-family: unset;
    font-weight: 700;
    margin-bottom: 30px;
	color: #000000;
}
.key-ind-hding-span{
    font-size: 24px;
    font-family: unset;
    font-weight: 700;
    margin-bottom: 20px;
	color:#ff9f2a;
    border-bottom: 2px solid #317739;
}
.tab {
	float: left;
	border: 1px solid #000000;
	background-color: #f1f1f1;
	width: 30%;
	height: 400px;
  } */
  
  /* Style the buttons inside the tab */
  .tab button {
	display: block;
	background-color: #0b6ea4 !important;
	color: rgb(255, 255, 255);
	padding: 22px 16px;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	cursor: pointer;
	transition: 0.3s;
	font-size:20px !important;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
	background-color: #ddd;
  }
  
  /* Create an active/current "tab button" class */
  .tab button.active {
    background-color: #40853b !important;
  }
  
  /* Style the tab content */
  .tabcontent {
	float: left;
	padding: 0px 12px;
	border: 1px solid #000000;
	width: 70%;
	border-left: none;
	height: 400px;
  }
/* key indication tabs section for bar Chart ***END***/


/* .headline-left{
    margin-bottom: 50px;
}
.headline-left h2 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}
.headline-left h2 span {
	font-size: 40px;
	display: block;
    font-weight: 300;
}
.progress-gallery.main-prog{
    margin-top: 50px;
}
.about-tab{
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}
.about-tab:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3367c1;
    opacity: 0.9;
}
.about-tab ul{
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 10px;
    position: relative;
    z-index: 99;
}
.about-tab ul li{
    display: inline-block;
}
.about-tab ul li a{
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    background: #fff;
    padding: 10px 20px;
    margin-left: -5px;
}
.about-tab ul li a.active{
    background: #313131;
    color: #fff;
} */

/*
-------------------------------
Video
-------------------------------
*/
.video-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  animation: video-pop 1500ms ease-out infinite;
}

.video-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  transition: all 200ms;
}

.video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #3367c1;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes video-pop {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.progress-gallery.main-prog .bar-container .progress{
    height: 8px;
    border-radius: 0;
}
.modal.show .modal-dialog.hb-style {
    -webkit-transform: translate(0px,25%);
    -o-transform: translate(0px,25%);
    transform: translate(0px,25%);
}
.modal-header h3 {
	font-size: 24px;
    font-weight: 700;
	color: #3367c1;
	margin: 0;
}


/*
-------------------------------
About Detail
-------------------------------
*/
.about-page .headstyle h4 {
	margin-bottom: 20px;
}

.about-page p a {
	font-family: 'Work Sans', sans-serif;
	text-decoration: underline;
	font-weight: 700;
	font-size: 15px;
}

.about-menu {
	margin-top: 30px;
}

.about-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-menu ul li {
	position: relative;
	margin-bottom: 8px;
}

.about-menu ul li:last-child {
	margin-bottom: 0;
}

.about-menu ul li a {
	display: block;
	font-size: 16px;
	font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 8px;
	padding-left: 12px;
	position: relative;
}

.about-menu ul li a:before {
	position: absolute;
	content: '\f0da';
	font-family: fontawesome;
	top: 0;
	left: 0;
}

.about-menu ul li a.active {
	color: #3367c1;
	border-bottom: 1px solid #3367c1;
}

.company-detail {
	margin-top: 30px;
}

.about-carousel {
	margin-bottom: 30px;
}

.company-detail h5 {
	font-size: 16px;
    font-weight: 700;
	line-height: 1.4;
	margin-bottom: 15px;
}

.company-detail p:last-child {
	margin: 0;
}

.history-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.history-list ul li {
	font-size: 15px;
	margin-bottom: 15px;
	padding-bottom: 8px;
}

.history-list ul li span {
    font-size: 16px;
	font-weight: 700;
	color: #3367c1;
}

.about-carousel {
	border: 1px solid #e1e1e1;
}

.about-carousel .owl-nav .owl-prev,
.about-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 40px;
	height: 50px;
	line-height: 48px;
	top: 50%;
	margin-top: -25px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.about-carousel .owl-nav .owl-prev {
	left: 0;
}

.about-carousel .owl-nav .owl-next {
	right: 0;
}

.about-carousel .owl-nav .owl-prev:hover,
.about-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.mission-detail {
	margin-top: 15px;
}

.mission-item {
	text-align: center;
	margin-top: 15px;
	background: #f5f5f5;
	border: 1px solid #e1e1e1;
	padding: 15px;
	min-height: 228px;
}

.mission-item img {
	width: 60px;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.mission-item i {
	font-size: 40px;
    color: #3367c1;
	margin: 0 auto;
	margin-bottom: 20px;
}

.mission-item h4 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.mission-item p {
	margin: 0;
}

.progress-gallery {
	margin-top: 15px;
}

.progress-gallery .bar-container {
	position: relative;
	font-size: 15px;
	margin-bottom: 15px;
}

.progress-gallery .bar-container p {
	font-weight: 500;
	margin-bottom: 5px;
}

.progress-gallery .bar-container .progress {
	height: 10px;
}

.progress-gallery .bar-container .progress .progress-bar-custom {
	background-color: #3367c1;
}

.progress-gallery .bar-container .percentage-show {
	font-weight: 500;
	position: absolute;
	top: 0px;
	right: 0;
	z-index: 9;
}

.progress-gallery .progress-bar {
	transition-duration: 3s;
}


/*
-------------------------------
Benefits
-------------------------------
*/
.benefits-photo img {
    max-width: 100%;
    height: auto;
}

.benefits-right h3 {
	font-size: 40px;
	font-weight: 700;
    text-transform: uppercase;
	margin-bottom: 25px;
}
.benefits-right h3 span{
    font-weight: 400;
}

.benefits-right p {
	margin-bottom: 20px;
}

.benefits-right ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefits-right ul li {
    font-size: 16px;
    font-weight: 500;
	position: relative;
	padding-left: 25px;
	margin-top: 5px;
    color: #3367c1;
}

.benefits-right ul li:before {
	position: absolute;
	content: '\F178';
	font-family: 'fontawesome';
	top: 0;
	left: 0;
	color: #3367c1;
}


/*
-------------------------------
Choose Items
-------------------------------
*/
.choose-item {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	text-align: center;
	margin-top: 30px;
	padding: 15px;
	position: relative;
	height: 300px;
}

.choose-item:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #3367c1;
	opacity: 0.8;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.choose-item:hover:before {
	opacity: 1;
}

.choose-icon {
	position: relative;
	margin-bottom: 20px;
}

.choose-icon img {
	width: 60px;
	height: 60px;
}
.choose-icon i{
    font-size: 60px;
    color: #fff;
}

.choose-text {
	position: relative;
}

.choose-text h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.choose-text p {
	color: #d6ddff;
	margin: 0;
}


/*
-------------------------------
Featured
-------------------------------
*/
/* service boxes css start */
.service-box-bg{
	background-color: #f0fbff;
	padding-bottom: 30px;
}
.serv-heading{
    text-align: center;
    font-size: 28px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
	color: #000000;
	background-color:#ffffff;
}
.serv-heading1{
    text-align: center;
    font-size: 28px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #000000;
    background-color: #f0fbff;
}
.serv-heading-span{
	text-align: center;
    font-size: 28px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
	color: #004aa8;
	border-bottom: 3px solid #ffa60c;
}
/* .service-boxes{
	text-decoration: none;
}
.serviceBox{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 20px 60px;
    margin: 5px 0 0 5px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
	min-height: 305px;
}
.serviceBox:before{
    content: '';
    background-color: #fff;
    border-bottom: 30px solid #FF8F10;
    border-radius: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    bottom: 0;
    z-index: -1;
	margin-bottom:10px;
	box-shadow:rgb(38, 57, 77) 0px 0px 30px -10px;
}
.serviceBox .service-icon{
    color: #FF8F10;
    background-color: #FF8F10;
    font-size: 35px;
    text-align: center;
    height: 74px;
    width: 160px;
    padding: 7px;
    margin: 0 auto 30px;
    border-radius: 25px;
    position: relative;
}
.serviceBox .service-icon:before{
    content: '';
    background-color: #FF8F10;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    transform: rotate(45deg);
    position: absolute;
    left: 25px;
    bottom: -10px;
}
.serviceBox .service-icon span{
    background-color: #fff;
    line-height: 60px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: inline-block;
}
.serviceBox .title{
    color: #FF8F10;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 27px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.serviceBox .description{
    color:#1e1e1e;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}
.serviceBox.magenta:before{ border-color: #FF415A; }
.serviceBox.magenta .service-icon,
.serviceBox.magenta .service-icon:before{
    color: #FF415A;
    background-color: #FF415A;
}
.serviceBox.magenta .title{ color: #FF415A; }
.serviceBox.pink:before{ border-color: #FF679F; }
.serviceBox.pink .service-icon,
.serviceBox.pink .service-icon:before{
    color: #FF679F;
    background-color: #FF679F;
}
.serviceBox.pink .title{ color: #FF679F; }
.serviceBox.purple:before{ border-color: #A969BE; }
.serviceBox.purple .service-icon,
.serviceBox.purple .service-icon:before{
    color: #A969BE;
    background-color: #A969BE;
}
.serviceBox.green .title{ color: #6ae345;}
.serviceBox.green:before{ border-color: #6ae345; }
.serviceBox.green .service-icon,
.serviceBox.green .service-icon:before{
    color:#6ae345;
    background-color:#6ae345;
}
.serviceBox.blue .title{ color: #378ad7;}
.serviceBox.blue:before{ border-color: #378ad7;}
.serviceBox.blue .service-icon,
.serviceBox.blue .service-icon:before{
    color:#378ad7;
    background-color:#378ad7;
}
.serviceBox.purple .title{ color: #A969BE; }
@media only screen and (max-width: 990px){
    .serviceBox{ margin: 0 0 30px; }
}
.box-icons{
	width: 36px;

} */

/* service boxes css end */
.quality-features{
	text-decoration: none;
}
.feature-heading{
    color: rgb(255, 255, 255);
    font-size: 18px;
    border-bottom: 1px solid;
    font-family: sans-serif;
    font-weight: 400;
    border-bottom-style: dashed;
}
.featur-p{
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-family: sans-serif;
	letter-spacing: 0.5px;
}
.feature-item {
	display: table;
	width: 100%;
	margin-top: 30px;
}

.feature-icon {
	vertical-align: top;
	display: table-cell;
	width: 70px;
    text-align: center;
}

.feature-icon img {
	width: 70px;
	height: 70px;
	background: #fcfcfc;
	border: 1px solid #e4e4e4;
	border-right: 0px;
	border-radius: 50px 0px 0 50px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.feature-icon-1 i{  
	font-size: 40px;
	width: 70px;
	height: 70px;
    background-color: #ae3289;
    color: #fff;
    border-right: 0px;
	border-radius: 10px 0px 0 10px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-icon-2 i{  
	font-size: 40px;
	width: 70px;
	height: 70px;
	background-color: #399bd6;
    color: #fff;
    /* border: 1px solid #3c813a !important; */
    border-right: 0px;
	border-radius: 10px 0px 0 10px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-icon-3 i{  
	font-size: 40px;
	width: 70px;
	height: 70px;
	background-color: #f9456e;
    color: #fff;
    /* border: 1px solid #3c813a !important; */
    border-right: 0px;
	border-radius: 10px 0px 0 10px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-icon-4 i{  
	font-size: 40px;
	width: 70px;
	height: 70px;
	background-color: rgb(71 203 81);
    color: #fff;
    /* border: 1px solid #3c813a !important; */
    border-right: 0px;
	border-radius: 10px 0px 0 10px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-icon-5 i{  
	font-size: 40px;
	width: 70px;
	height: 70px;
    background-color: #7841c1;
    color: #fff;
    /* border: 1px solid #3c813a !important; */
    border-right: 0px;
	border-radius: 10px 0px 0 10px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-icon-6 i{  
	font-size: 40px;
	width: 70px;
	height: 70px;
	background-color: #ff9d42;
    color: #fff;
    /* border: 1px solid #3c813a !important; */
    border-right: 0px;
	border-radius: 10px 0px 0 10px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}


/* .feature-icon i {
    font-size: 40px;
	width: 70px;
	height: 70px;
    background: #FF4E50;  fallback for old browsers
	background: -webkit-linear-gradient(to right, #F9D423, #FF4E50);  Chrome 10-25, Safari 5.1-6
	background: linear-gradient(to right, #F9D423, #FF4E50) !important; W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+
    color: #fff;
    border: 1px solid #3c813a !important;
    border-right: 0px;
	border-radius: 50px 0px 0 50px;
	padding: 12px;
	box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
} */
.feature-text-1{
	vertical-align: top;
    display: table-cell;
    padding: 20px;
	background-color:#ae3289;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid #e4e4e4;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    height: 200px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.feature-text-2{
	vertical-align: top;
	display: table-cell;
	padding: 20px;
	background-color: #399bd6;
	border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
	/* background: #3494E6;  
	background: -webkit-linear-gradient(to right, #EC6EAD, #3494E6);  
	background: linear-gradient(to right, #EC6EAD, #3494E6) !important;  */
	border: 1px solid #e4e4e4;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	height: 200px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.feature-text-3{
	vertical-align: top;
	display: table-cell;
	padding: 20px;
	border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
	/* background: #DCE35B; 
	background: -webkit-linear-gradient(to right, #45B649, #DCE35B);
	background: linear-gradient(to right, #45B649, #DCE35B) !important; */
	background-color:  #f9456e;
	height: 200px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border: 1px solid #e4e4e4;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-text-4{
	vertical-align: top;
	display: table-cell;
	padding: 20px;
	border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
	background-color: rgb(71 203 81);
	/* background: #007991;  
	background: -webkit-linear-gradient(to right, #78ffd6, #007991);  
	background: linear-gradient(to right, #78ffd6, #007991) !important;  */
	height: 200px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border: 1px solid #e4e4e4;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-text-5{
	vertical-align: top;
	display: table-cell;
	padding: 20px;
	border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
	/* background: #a8c0ff;
	background: -webkit-linear-gradient(to right, #3f2b96, #a8c0ff);  
	background: linear-gradient(to right, #abc522, #ebdc43) !important;  */
	background-color:#7841c1;
	height: 200px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border: 1px solid #e4e4e4;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.feature-text-6{
	vertical-align: top;
	display: table-cell;
	padding: 20px;
	border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
	background-color:#ff9d42;
	/* background: #f2709c; 
	background: -webkit-linear-gradient(to right, #ff9472, #f2709c); 
	background: linear-gradient(to right, #ff9472, #f2709c) !important; */
	height: 200px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border: 1px solid #e4e4e4;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}


/* .feature-text {
	vertical-align: top;
	display: table-cell;
	padding: 20px;
	background: #30803740;
	border: 1px solid #e4e4e4;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
} */
.feature-text h4 {
	font-size: 20px;
    font-weight: 700;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-transform: uppercase;
}

.feature-text p {
	margin: 0;
}

.feature-two .feature-icon img {
	border-radius: 0;
	padding: 12px;
	box-shadow: none;
}
.feature-two .feature-icon i {
	border-radius: 0;
	padding: 12px;
	box-shadow: none;
}

.feature-item:hover .feature-icon img,
.feature-item:hover .feature-icon i,
.feature-item:hover .feature-text {
	box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
}
.feature-item:hover .feature-icon i{
    background: #fff;
    color: #3367c1;
}
.feature-item:hover .feature-text{
    background: #3e823b !important;
	border: 1px solid  #3e823b !important;
    color: #fff;
}
.feature-item:hover .feature-text h4{
    color: #fff;
}

/* PHOTO GALLARY AND VIDEO GALLARY *****START******* */
/* PHOTO GALLARY AND VIDEO GALLARY *****START******* */
/* .gallary-bg{
	border: 2px solid gray;
} */
.gallary-fdcm-heading{
	text-align: center;
    font-size: 28px;
    font-family: unset;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #000000;
	background-color: white;
}

.photo-gallary-main-div{
	display: flex;
	justify-content: space-between;
    align-items: center;
	background-color: white;
}
.photo-main{
    border: 1px solid #acacac;
    min-height: 380px;
    border-radius: 4px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.photo-heading{
	padding: 10px 10px;
    background-color: #3f6e64;
    color: white;
    margin-top: 8px;
    font-size: 18px;
    border-radius: 4px;
    border: 2px solid white;
}
.photo-view-all-btn{
	text-decoration: none;
    font-size: 18px;
    background-color:#f37f43;
    color: white !important;
    padding: 10px 10px;
    border: 2px solid white;
	border-radius:4px;
}
.photo-view-all-btn:hover{
	text-decoration: none;
    font-size: 18px;
	background-color: #3f6e64;
    color: white;
    padding: 10px 10px;
    border: 2px solid white;
}
.photo-gallary-img{
	min-height: 320px;
}
.middle-photo-gallary{
	margin: 0px 0px 26px;
    border: 1px solid #a4a4a4;
    border-radius: 4px;
}
.video-gallary-main-div{
	display: flex;
	justify-content: space-between;
    align-items: center;
	/* background: linear-gradient(to right, #f37f43, #3f6e64); */
	background-color: #ffffff;
}
.video-main{
    border: 1px solid #a1a1a1;
    min-height: 380px;
    border-radius: 4px;
    box-shadow: rgba(149, 157, 165, 0.2)
}
.video-heading{
	padding: 10px 10px;
    background-color: #3f6e64;
    color: white;
    margin-top: 8px;
	font-size: 18px;
	border-radius: 4px;
    border: 2px solid white;
}
.video-view-all-btn{
	text-decoration: none;
    font-size: 18px;
    background-color: #f37f43;
    color: white !important;
    padding: 10px 10px;
    border: 2px solid white;
	border-radius:4px;
}
.video-view-all-btn:hover{
	text-decoration: none;
    font-size: 18px;
	background-color: #3f6e64;
    color: white;
    padding: 10px 10px;
    border: 2px solid white;
}

/* PHOTO GALLARY AND VIDEO GALLARY *****END******* */
/* ************************************************************** */
/*
-------------------------------
Service
-------------------------------
*/
.services-item {
	border: 1px solid #f5f5f5;
	margin-top: 30px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.services-item:hover {
	box-shadow: 0 9px 20px rgba(0, 0, 0, 0.2);
}

.services-photo {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	height: 196px;
}

.services-text {
	background: #f5f5f5;
	padding: 20px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.services-item:hover .services-text {
	background: #f9f9f9;
}

.services-text h3 a {
	font-size: 20px;
    font-weight: 700;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-transform: uppercase;
}
.services-text .button-bn a{
    font-size: 16px;
    font-weight: 700;
}
.services-text a:hover {
	color: #3367c1;
}

.services-text p {
	margin-bottom: 10px;
}


/*
-------------------------------
Single Service
-------------------------------
*/

.single-ser-carousel {
	margin-bottom: 30px;
}

.single-ser-carousel .owl-nav .owl-prev,
.single-ser-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 40px;
	height: 50px;
	line-height: 48px;
	top: 50%;
	margin-top: -25px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.single-ser-carousel .owl-nav .owl-prev {
	left: 0;
}

.single-ser-carousel .owl-nav .owl-next {
	right: 0;
}

.single-ser-carousel .owl-nav .owl-prev:hover,
.single-ser-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.service-sidebar {
	margin-top: 30px;
}

.service-sidebar-item {
	margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
}

.service-sidebar-item:first-child {
	margin-top: 0;
}

.service-sidebar-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-sidebar-item ul li {
	padding: 6px 0;
}

.service-sidebar-item ul li:first-child {
	padding-top: 0;
}

.service-sidebar-item ul li a {
    font-family: 'Work Sans', sans-serif;
	display: inline-block;
	text-decoration: none;
	position: relative;
	padding-left: 10px;
}

.service-sidebar-item ul li a:before {
	position: absolute;
	content: '\F105';
	font-family: fontawesome;
	top: 0;
	left: 0;
	color: #313131;
}

.service-sidebar-item h3 {
	font-size: 26px;
	font-weight: 500;
}

.service-sidebar-item .form-group textarea {
	height: 110px;
}

.service-info {
	margin-top: 30px;
}

.service-info h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-info p:last-child {
	margin: 0;
}


/*
-------------------------------
Counter
-------------------------------
*/
.counterup-area {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}

.bg-counterup {
	position: absolute;
	/* background: linear-gradient(to right, #f37f43, #3f6e64); */
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.9;
	background-color: #378ad7de !important;
}

.counter-item {
	position: relative;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	margin-top: 30px;
	padding: 15px;
	min-height:180px;
}

.counter-item:before,
.counter-item:after {
	position: absolute;
	content: '';
	width: 50%;
	height: 5px;
	background: #fff;
	transition: all 0.4s;
}

.counter-item:before {
	top: 0;
	right: 0;
}

.counter-item:after {
	bottom: 0;
	left: 0;
}

.counter-item:hover:before {
	right: 50% !important;
}

.counter-item:hover:after {
	left: 50% !important;
}

.counter-item img {
	width: 86%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border-radius: 8px;
}
.counter-item i {
	font-size: 56px;
	margin-bottom: 15px;
}

.counter-item h2.counter {
	font-size: 36px;
	font-weight: 700;
	margin-top: 0;
	color: #fff;
}

.counter-item h4 {
	font-size: 20px;
	color: #fff;
	margin: 0;
}
.gov.site-img{
	width: 100%;
}


/*
-------------------------------
Portfolio
-------------------------------
*/

.portfolio-menu {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 6px;
}

.portfolio-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.portfolio-menu li {
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	font-family: 'Roboto Condensed', sans-serif;
	display: inline-block;
	border-bottom: 1px solid #32477c;
	color: #313131;
	padding: 5px 10px;
	padding-top: 0;
	margin: 0 10px;
	margin-top: 10px;
	position: relative;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.portfolio-menu li:hover {
	color: #3367c1 !important;
}

.portfolio-menu li.filtr-active {
	border-bottom: 1px solid #3367c1;
	color: #3367c1;
}

.portfolio-menu li.filtr-active:before {
	border-color: #3367c1 transparent transparent;
	border-style: solid;
	position: absolute;
	content: "";
	border-width: 6px 6px 0;
	left: 50%;
	margin-left: -6px;
	bottom: -6px;
	text-decoration: none;
}

.portfolio-group {
	border: 1px solid #ededed;
	margin-top: 30px;
}

.portfolio-photo {
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	height:300px;
	position: relative;
}

.portfolio-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #3367c1;
	visibility: hidden;
	opacity: 0;
	transform: scale(0);
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.portfolio-group:hover .portfolio-bg {
	opacity: 0.7;
	transform: scale(1);
	visibility: visible;
}

.portfolio-table {
	display: table;
	width: 100%;
	height: 100%;
}

.portfolio-icon {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.portfolio-icon a {
	position: relative;
	font-size: 26px;
	color: #fff;
	text-decoration: none;
	z-index: 99;
}

.portfolio-group:hover .portfolio-icon {
	opacity: 1;
	visibility: visible;
}

.portfolio-text {
	text-align: center;
	background: #f5f5f5;
	padding: 6px;
}

.portfolio-text h3 a {
	font-size: 20px;
    font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	margin-bottom: 8px;
	color: black;
}

.portfolio-text h3 a:hover {
	color: #3367c1;
}

.portfolio-text p {
	position: relative;
	font-size: 15px;
	border-top: 1px solid #ddd;
	margin: 0;
	padding-top: 8px;
}

.portfolio-text p:before {
	position: absolute;
	content: '';
	left: 0;
	top: -1px;
	width: 0%;
	height: 1px;
	background: #3367c1;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.portfolio-group:hover .portfolio-text p:before {
	width: 100%;
}

.portfolio-text p span {
	margin-right: 8px;
}

.project-page .portfolio-menu {
	margin-top: 0;
	margin-bottom: 5px;
}

.project-page li {
	margin-top: 0;
	margin-bottom: 10px;
}


/*
-------------------------------
Portfolio Details
-------------------------------
*/

.portfolio-carousel {
	overflow: hidden;
	margin-top: 30px;
}

.portfolio-photo-item {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	height: 370px;
	position: relative;
}

.portfolio-carousel .owl-nav .owl-prev,
.portfolio-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	top: 50%;
	width: 40px;
	height: 50px;
	line-height: 48px;
	background: #3367c1;
	color: #fff;
	margin-top: -25px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.portfolio-carousel .owl-nav .owl-prev {
	left: 0;
}

.portfolio-carousel .owl-nav .owl-next {
	right: 0;
}

.portfolio-carousel .owl-nav .owl-prev:hover,
.portfolio-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.portfolio-details-text h3 {
	font-size: 26px;
	font-weight: 700;
    text-transform: uppercase;
	margin: 0;
	margin-top: 30px;
}

.portfolio-details-text p {
	margin: 0;
	margin-top: 20px;
}

.portfolio-sidebar {
	margin-top: 30px;
}

.portfolio-details,
.portfolio-form{
    border: 1px solid #ddd;
    padding: 30px;
}

.portfolio-details ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.portfolio-details ul li {
	font-size: 15px;
	font-weight: 400;
	color: #313131;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #dddddd;
}

.portfolio-details ul li span {
	font-weight: 600;
	color: #3367c1;
	margin-right: 5px;
}


.portfolio-form .form-group textarea {
	height: 110px;
}

.recent-project .portfolio-text {
	background: #fff;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 38px;
	top: 0;
	margin-top: -20px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.project-carousel .owl-nav .owl-prev {
	right: 0;
	margin-right: 40px;
}

.project-carousel .owl-nav .owl-next {
	right: 0;
	margin-right: 0px;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}


/*
-------------------------------
Team
-------------------------------
*/
.team-box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.team-item {
	overflow: hidden;
	border: 1px solid #ddd;
	margin-top: 30px;
	position: relative;
}
.team-ite-m {
	overflow: hidden;
	border: 1px solid #ddd;
	margin-top: 30px;
	position: relative;
}

.team-item img {
	width: 100%;
	height: auto;
}

.team-text {
	text-align: center;
	color: #fff;
	background: #3367c1;
	padding: 15px;
    position: relative;
    z-index: 99;
}

.team-text a {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
    text-transform: uppercase;
	color: #fff;
	margin-bottom: 4px;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.team-text p {
	margin: 0;
}

.team-social {
	text-align: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
    background: #eef1f5;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.team-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social li {
	display: inline-block;
    margin-left: -5px;
}

.team-social li a {
	display: block;
	width: 35px;
	height: 33px;
	line-height: 33px;
	background: #f1f1f1;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #eaeaea;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.team-social li a:hover {
	color: #fff;
	background: #3367c1;
	border-top: 1px solid #3367c1;
	border-bottom: 1px solid #3367c1;
}

.team-item:hover .team-social {
    bottom: 88px;
	visibility: visible;
    opacity: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 38px;
	top: 0;
	margin-top: -20px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.team-carousel .owl-nav .owl-prev {
	right: 0;
	margin-right: 40px;
}

.team-carousel .owl-nav .owl-next {
	right: 0;
	margin-right: 0px;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.team-social-two {
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: 85px;
	background: #eef1f5;
	padding: 10px 0;
}

.team-social-two ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-social-two ul li {
	display: inline-block;
	margin-left: -5px;
}

.team-social-two ul li a {
	display: block;
	width: 35px;
	height: 33px;
	line-height: 33px;
	background: #f1f1f1;
	border-left: 1px solid #fff;
	border-right: 1px solid #eaeaea;
	text-decoration: none;
}

.team-social-two ul li:first-child a {
	border-left: 1px solid #eaeaea;
}

.team-social-two li a:hover {
	color: #fff;
	background: #3367c1;
	border-left: 1px solid #3367c1;
	border-right: 1px solid #3367c1;
}


/*
-------------------------------
Team Details
-------------------------------
*/

/* .team-detail-photo {
	margin-top: 30px;
}

.team-detail-text {
	margin-top: 30px;
}

.team-detail-text h4 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 7px;
}

.team-detail-text p {
	margin-top: 20px;
}

.team-detail-text ul {
	list-style: none;
	margin: 0;
	margin-top: 15px;
	padding: 0;
}

.team-detail-text ul li {
	text-align: center;
	display: inline-block;
	margin-right: 7px;
	margin-top: 5px;
}

.team-detail-text ul li:last-child {
	margin-right: 0;
}

.team-detail-text ul li a {
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
}

.team-detail-text ul li a:hover {
	background: #313131;
	color: #fff;
}

.team-info {
	background: #f5f5f5;
	border: 1px solid #e1e1e1;
	padding: 30px;
	margin-top: 30px;
}

.team-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-info ul li {
	padding-bottom: 5px;
}

.team-info ul li span {
	color: #3367c1;
	margin-right: 10px;
}

.team-skill {
	background: #f5f5f5;
	border: 1px solid #e1e1e1;
	padding: 30px;
	margin-top: 30px;
}

.team-skill ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-skill ul li {
	position: relative;
	padding-left: 20px;
	padding-bottom: 5px;
}

.team-skill ul li:before {
	content: '\f14a';
	font-family: FontAwesome;
	position: absolute;
	top: 0;
	left: 0;
	color: #3367c1;
} */


/*
-------------------------------
PRICING TABLE
-------------------------------
*/

/* .price-item {
	text-align: center;
	background: #fff;
	padding: 15px;
	margin-top: 30px;
    transform: scale(1);
	-webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
	box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.price-header {
	padding: 15px 0;
}

.price-header img {
	width: 94px;
	height: 94px;
	background: #f6f6f6;
	border-radius: 50%;
	padding: 10px;
	margin-bottom: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.price-header i {
    font-size: 52px;
	width: 94px;
	height: 94px;
    line-height: 94px;
	background: #3367c1;
    color: #fff;
	border-radius: 50%;
	margin-bottom: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.price-item:hover .price-header img {
	background: #ececec;
}

.price-header h3 {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 7px;
}

.price-header h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 7px;
}

.price-header p {
	margin: 0;
}

.price-body {
	padding: 15px 0;
}

.price-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.price-body li {
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

.price-body li:last-child {
	border-bottom: 0px;
}

.price-footer {
	padding: 15px 0;
}
.price-item:hover{
    transform: scale(1.05);
} */

/* Price-Page */

/* .price-page .price-item {
	border: 1px solid #e1e1e1;
	background: #f5f5f5;
} */


/*
-------------------------------
Testimonial
-------------------------------
*/

/* .testimonial-area {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}

.bg-testimonial {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #3367c1;
	opacity: 0.8;
}

.testimonial-item {
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	padding: 30px;
}

.testimonial-description {
	margin: 0 auto;
}

.testimonial-description p {
	position: relative;
	padding-top: 15px;
	margin-top: 15px;
	margin-bottom: 0;
}

.testimonial-description p:before {
	position: absolute;
	content: '';
	width: 120px;
	height: 3px;
	bottom: 100%;
	left: 50%;
	margin-left: -60px;
	background: #fff;
}

.testimonial-photo {
	width: 95px;
	height: 95px;
	margin: 0 auto;
}

.testimonial-photo img {
	width: 100%;
	height: auto;
}

.testimonial-name {
	margin-top: 15px;
}

.testimonial-name h4 {
	font-size: 22px;
    font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.testimonial-name p {
	font-size: 15px;
	margin: 0;
}

.testimonial-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #3367c1;
	border: 7px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.testimonial-carousel .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: #313131;
	border: 7px solid #fff;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	top: 50%;
	width: 40px;
	height: 50px;
	line-height: 48px;
	background: #fff;
	color: #3367c1;
	margin-top: -25px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.testimonial-carousel .owl-nav .owl-prev {
	left: 0;
}

.testimonial-carousel .owl-nav .owl-next {
	right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
	color: #3367c1;
	background: #fff;
}

.testimonial-grid .testimonial-item,
.testimonial-two-carousel .testimonial-item {
	color: #313131;
	background: #f5f5f5;
	border: 1px solid #e1e1e1;
	padding: 30px;
}

.testimonial-grid .testimonial-description,
.testimonial-two-carousel .testimonial-description {
	width: 100%;
}

.testimonial-grid .testimonial-description p,
.testimonial-two-carousel .testimonial-description p {
	padding-top: 15px;
	padding-bottom: 0;
	margin-top: 15px;
	margin-bottom: 0;
}

.testimonial-grid .testimonial-description p:before,
.testimonial-two-carousel .testimonial-description p:before {
	bottom: 100%;
    background: #3367c1;
}

.testimonial-grid .testimonial-name h4,
.testimonial-two-carousel .testimonial-name h4 {
	color: #313131;
}

.testimonial-two-carousel .owl-nav .owl-prev,
.testimonial-two-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	top: 50%;
	width: 40px;
	height: 50px;
	line-height: 48px;
	background: #3367c1;
	color: #fff;
	margin-top: -25px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.testimonial-two-carousel .owl-nav .owl-prev {
	left: 0;
}

.testimonial-two-carousel .owl-nav .owl-next {
	right: 0;
}

.testimonial-two-carousel .owl-nav .owl-prev:hover,
.testimonial-two-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
} */

/*
-------------------------------
Booking
-------------------------------
*/

/* .booking-area {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}

.booking-area:before {
	position: absolute;
	content: '';
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	background: #3367c1;
	opacity: 0.8;
}


.bg-booking {
	position: absolute;
	background-color: #3367c1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
}


.booking-gallery {
	position: relative;
	padding-right: 30px;
	z-index: 998;
	margin-top: 30px
}
.booking-form input,
.booking-form select,
.booking-form textarea{
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid #ddd !important;
}
.booking-form input:focus{
    border: 1px solid #fff;
}
.booking-form option{
    color: #333 !important;
}
.booking-form ::placeholder {
    color: #fff !important;
    opacity: 1;
}

.booking-form :-ms-input-placeholder {
   color: #fff !important;
}

.booking-form ::-ms-input-placeholder {
   color: #fff !important; 
}
.booking-form textarea{
    height: 112px;
}
.form-group input {
	font-size: 15px;
	font-family: 'Work Sans', sans-serif;
	height: 40px;
	box-shadow: none;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 0 12px;
}

.form-group textarea {
	font-size: 15px;
}

.form-control:focus {
	border-color: #3367c1;
	box-shadow: none;
}

.form-group select.custom-select {
	font-size: 15px;
	width: 100%;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 0px;
	color: #646769;
	padding: 0 8px;
}

.form-button .btn {
	cursor: pointer;
	font-size: 16px !important;
	font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
	width: 100%;
	background: #3367c1;
	color: #fff;
	padding: 9px 18px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.form-button .btn:hover {
	color: #fff;
	background: #313131;
}

.form-button .btn2 {
	background: #313131;
}

.form-button .btn2:hover {
	background: #fff;
	color: #3367c1;
} */


/*
-------------------------------
Faq
-------------------------------
*/

.faq-home {
	padding-left: 30px;
}
.faq-item {
	border: 0px;
	margin-bottom: 15px;
}

.faq-header button.faq-button {
	cursor: pointer;
	font-size: 16px !important;
	text-align: left;
	display: block;
	width: 100%;
	padding: 15px;
	font-weight: 500;
	text-decoration: none;
	background: #3367c1;
	color: #fff;
}

.faq-header button.faq-button.collapsed {
	background: #f6faff;
	color: #313131;
}
.faq-header button.faq-button.collapsed:hover{
    background: #3367c1;
	color: #fff;
}

.faq-header button.faq-button i {
	margin-right: 5px;
}

.faq-header button.faq-button.collapsed i {
	margin-right: 5px;
}

.faq-body {
	border: 1px solid #fff;
	border-top: 0;
	background: #fff;
	padding: 25px;
	line-height: 1.6;
}

.faq-home .faq-body {
	padding: 15px;
}

.faq-body ul {
	list-style: none;
	margin: 0;
	margin-top: 20px;
	padding: 0;
}

.faq-home .faq-body ul {
	margin-top: 10px;
}

.faq-body ul li {
	position: relative;
	margin-top: 5px;
	padding-left: 20px;
}

.faq-body ul li:before {
	position: absolute;
	content: '\f00c';
	font-family: 'fontawesome';
	top: 0;
	left: 0;
	color: #3367c1;
}


/*
-------------------------------
Blog
-------------------------------
*/
.blog-item {
	border: 1px solid #f5f5f5;
	margin-top: 30px;
}

.blog-image {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	height: 196px;
}

.blog-text {
	background: #f5f5f5;
	padding: 20px;
}

.blog-item h3 a {
	font-size: 26px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	margin-bottom: 8px;
}

.blog-item h3 a:hover {
	color: #3367c1;
}

.blog-item span {
	display: block;
	font-size: 15px;
}

.blog-item span i {
	margin-right: 5px;
	color: #3367c1;
}

.blog-item p {
	margin-top: 15px;
	margin-bottom: 5px;
}

.blog-author {
	overflow: hidden;
	background: #e6e6e6;
}

.blog-author ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: 5px;
}

.blog-author li {
	display: inline-block;
}

.blog-author li a {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	padding: 15px 10px;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.blog-author li a i {
	margin-right: 5px;
	color: #3367c1;
}

.blog-author li a:hover {
	color: #3367c1;
}

.blog-author li.blog-button {
	background: #3367c1;
	float: right;
}

.blog-author li.blog-button a {
	background: #3367c1;
	padding: 15px 30px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.blog-author li.blog-button i {
	color: #fff;
	margin: 0;
}

.blog-author li.blog-button a:hover {
	background: #313131;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 16px;
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 38px;
	top: 0;
	margin-top: -20px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.blog-carousel .owl-nav .owl-prev {
	right: 0;
	margin-right: 40px;
}

.blog-carousel .owl-nav .owl-next {
	right: 0;
	margin-right: 0px;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.blog-one-item {
	margin-top: 30px;
}

.blog-one-item img {
	width: 100%!important;
}

.blog-one-text {
	margin-top: 20px;
}

.blog-one-text ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-one-text ul li {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 5px;
}

.blog-one-text ul li:last-child {
	margin-right: 0;
}

.blog-one-text ul li a {
    font-family: 'Work Sans', sans-serif;
	text-decoration: none;
}

.blog-one-text ul li i {
	color: #3367c1;
	margin-right: 5px;
}
.blog-one-text h3{
    margin-bottom: 15px;
}
.blog-one-text h3 a {
	font-size: 28px;
	font-weight: 700;
	text-decoration: none;
    display: inline-block;
	margin-top: 15px;
}

.blog-one-text h3 a:hover {
	color: #3367c1;
}

.blog-one-text p {
	margin-bottom: 20px;
}

/*
-------------------------------
Sidebar
-------------------------------
*/
.sidebar {
	margin-top: 30px;
}

.sidebar-item {
	margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
}
.sidebar-item:first-child {
	margin-top: 0;
}

.sidebar-item input {
	font-size: 15px;
    font-family: 'Work Sans', sans-serif;
	height: 40px;
	border: 1px solid #e1e1e1;
}

.sidebar-item button {
	background: #3367c1;
	border: 1px solid #3367c1;
    color: #fff;
}

.sidebar-item button:hover {
	cursor: pointer;
}

.sidebar-item h3 {
	display: inline-block;
	position: relative;
	font-size: 22px;
	font-weight: 700;
    text-transform: uppercase;
	padding-bottom: 12px;
	margin-bottom: 30px;
}

.sidebar-item h3:before {
	position: absolute;
	content: '';
	width: 70%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: 0;
}

.sidebar-item h3:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: -5px;
}

.sidebar-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-item ul li {
	padding: 8px 0;
}

.sidebar-item ul li:first-child {
	padding-top: 0;
}

.sidebar-item ul li a {
	display: inline-block;
	position: relative;
	text-decoration: none;
	padding-left: 10px;
    font-family: 'Work Sans', sans-serif;
}

.sidebar-item ul li a:before {
	position: absolute;
	content: '\F105';
	font-family: fontawesome;
	top: 0;
	left: 0;
	color: #313131;
}

.sidebar-recent-item {
	overflow: hidden;
	display: table;
	margin-bottom: 25px;
}

.recent-photo {
	vertical-align: top;
	display: table-cell;
	float: left;
	width: 105px;
	padding-right: 8px;
}

.recent-photo img {
	max-width: 100%;
	height: auto;
}

.recent-text {
	vertical-align: top;
	display: table-cell;
	padding-left: 5px;
}

.recent-text a {
	vertical-align: top;
	display: block;
	margin-bottom: 5px;
	text-decoration: none;
    font-family: 'Work Sans', sans-serif;
}

.recent-text a:hover {
	color: #3367c1;
}

.rpwwt-post-date {
	position: relative;
	font-size: 13px;
	color: #b7b7b7;
	padding-left: 21px;
}

.rpwwt-post-date:before {
	position: absolute;
	content: '\f073';
	font-family: fontawesome;
	left: 0;
	top: 0;
}

.tagcloud a {
	font-size: 15px;
    font-family: 'Work Sans', sans-serif;
	display: inline-block;
	border: 1px solid #ddd;
	padding: 8px 8px;
	margin-right: 7px;
	margin-bottom: 8px;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.tagcloud a:hover {
	color: #3367c1;
}


/*
-------------------------------
Pagination
-------------------------------
*/
.pagination a:hover {
	text-decoration: none;
}


/*
-------------------------------
Blog Single
-------------------------------
*/

.single-blog {
	margin-top: 30px;
}

.single-blog img {
	margin-bottom: 30px;
}

.single-blog h3 {
	font-size: 24px;
    text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 15px;
}

.single-blog ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.single-blog ul li {
	display: inline-block;
	margin-top: 2px;
	margin-right: 15px;
	font-size: 14px;
	font-family: 'Work Sans', sans-serif;
}

.single-blog ul li i {
	color: #3367c1;
	margin-right: 5px;
}

.single-blog ul li a {
	text-decoration: none;
	font-size: 14px;
	font-family: 'Work Sans', sans-serif;
}

.single-blog p {
	margin: 0;
	margin-top: 15px;
}

.comment-form span {
	font-size: 16px;
	color: #3367c1;
}

.comment-form textarea {
	height: 220px;
}

.comment-form .btn {
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
	padding: 14px 30px;
	border: 1px solid #3367c1;
	background: #3367c1;
	color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.comment-form .btn:hover {
	color: #fff;
	background: #313131;
	border: 1px solid #313131;
}

.comment-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list ul li {
	border-bottom: 1px solid #ddd;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.comment-list ul li:last-child {
	border: 0;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.comment-list .comment-item {
	overflow: hidden;
	display: table;
	width: 100%;
}

.comment-list .thumb {
	display: table-cell;
	vertical-align: top;
	width: 80px;
}

.comment-list .com-text {
	display: table-cell;
	vertical-align: top;
	padding: 0 15px;
}

.comment-list .com-text h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 7px;
}

.comment-list .com-text span.date {
	margin-right: 30px;
	font-size: 14px;
}

.comment-list .com-text span.date i {
	color: #3367c1;
	margin-right: 3px;
}

.comment-list .com-text span a {
	display: inline-block;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
	padding: 5px 10px;
	background: #3367c1;
	color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.comment-list .com-text span a:hover {
	background: #313131;
	color: #fff;
}

.comment-list .com-text p {
	margin-top: 12px;
	margin-bottom: 0;
}

.comment-list ul ul.children {
	margin-top: 20px;
	margin-left: 40px;
}

.comment-list ul ul.children li {
	border: 0;
	padding-bottom: 0px;
	margin-bottom: 0px;
	margin-top: 40px;
}


/*
-------------------------------
Brand
-------------------------------
*/

.brand-item img {
	max-width: 100%;
	height: auto;
}


/*
-------------------------------
Call To Action
-------------------------------
*/

.call-us {
	position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 55px;
    padding-bottom: 70px;
}
.call-us:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3367c1;
    opacity: 0.8;
}
.call-text {
	margin-top: 33px;
}

.call-text h3 {
	font-size: 24px;
    font-weight: 500;
    color: #fff;
	margin: 0;
}

.call-us .button {
	margin-top: 15px;
}

.call-us .button a {
	font-size: 18px;
    text-transform: uppercase;
	background: #313131;
	border: 0;
	padding: 17px 30px;
}

.call-us .button a:hover {
	color: #313131;
	background: #fff;
}

/*
-------------------------------
Footer
-------------------------------
*/
.footer-bg{
	background-color: #003180;
	/* background-color: #0447b2; */
	/* background-image: linear-gradient(to right bottom, #a7b9ff8f, #ffffffdb),url(../uploads/forest-footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat; */
}
.footer-logo{
	margin-top: 20px;
	text-align: center;
}
.footer-social{
	list-style: none;
	
} 
.footer-list{
	list-style: none;
	line-height: 38px;
}
.quick-heading{
	font-size: 20px;
    font-family: sans-serif;
    font-weight: 600;
    border-left: 3px solid white;
    padding: 0px 10px;
    color: #ffffff;
}
.quick-links-btn{
	margin-top: 20px;
}
.quick-items{
	text-decoration: none;
    color: white;
    font-size: 16px;
    font-family: sans-serif;
}
.quick-items:hover{
	/* border-bottom: 1px solid #ffffff !important; */
    color: #007ab5 !important;
}
.social-media-icons{
	margin-top: 20PX;
}
.social-m-heading{
	font-size: 20px;
    font-family: sans-serif;
    font-weight: 600;
    border-left: 3px solid white;
    padding: 0px 10px;
    color: #ffffff;

}
.sc-icons{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 16px;
	font-family: sans-serif;
	line-height: 38px;
}
/* .sc-icons:hover{
	border-bottom: 1px solid #ffffff;
    color: #fab535;
} */
.copy-right-heading{
	text-align: center;
    font-size: 16px;
    font-family: sans-serif;
    color: white;
}
.copy-right-c-name{
	text-align: center;
    font-size: 16px;
    font-family: sans-serif;
	color: #ebe64b !important;
	text-decoration: none;
}
.copy-right-c-name:hover{
	border-bottom: 1px solid #ffffff !important;
    color: #fab535 !important;
}
.gallary-footer{
	font-size: 20px;
    font-family: sans-serif;
    font-weight: 600;
    border-left: 3px solid white;
    padding: 0px 10px;
    color: #ffffff;
	margin-top: 20px;
}
.plant-1{
	margin:24px 0px;
}
.plant-2{
	margin:24px 0px;
}
/* .footer-area {
	background: #f5f5f5;
	position: relative;
}

.footer-item {
	color: #313131;
	margin-top: 30px;
}

.footer-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-item ul li {
	display: block;
	margin-bottom: 12px;
}

.footer-item ul li:last-child {
	margin-bottom: 0;
}

.footer-item ul li a {
	position: relative;
	display: inline-block;
    font-family: 'Work Sans', sans-serif;
	color: #313131;
	padding-left: 12px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.footer-item ul li a:before {
	position: absolute;
	content: '\f0da';
	font-family: fontawesome;
	top: 0;
	left: 0;
	color: #313131;
}

.footer-item ul li a:hover {
	color: #3367c1;
}

.footer-item p,
.footer-item a {
	text-decoration: none;
	color: #313131;
}

.footer-item h3 {
	display: inline-block;
	position: relative;
	font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
	color: #313131;
	padding-bottom: 12px;
	margin-bottom: 36px;
}

.footer-item h3:before {
	position: absolute;
	content: '';
	width: 70%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: 0;
}

.footer-item h3:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: -5px;
}

.footer-item .input-group {
	margin-top: 25px;
}

.footer-address-item {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
}

.footer-address-item .icon {
	position: absolute;
	top: -2px;
	left: 0;
	font-size: 17px;
}

.footer-address-item .text {
	font-size: 15px;
}

.footer-item ul.footer-social {
	margin-top: 25px;
}

.footer-item ul.footer-social li {
	display: block;
	margin-top: 5px;
	margin-right: 5px;
	padding: 0;
}

.footer-item ul.footer-social li a:before {
	display: none;
}

.footer-item ul.footer-social li a {
	text-align: center;
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: #fff;
	background: #3367c1;
	border: 1px solid #3367c1;
	border-radius: 1px;
	padding: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.footer-item ul.footer-social li a:hover{
    background: #313131;
	border: 1px solid #313131;
}
.footer-item .input-group .btn {
	font-size: 16px !important;
}

.footer-recent-item {
	display: table;
	margin-bottom: 15px;
}

.footer-recent-photo {
	vertical-align: top;
	display: table-cell;
	float: left;
	width: 90px;
	padding-right: 8px;
}

.footer-recent-photo img {
	max-width: 100%;
	height: auto;
}

.footer-recent-text {
	vertical-align: top;
	display: table-cell;
	padding-left: 5px;
}

.footer-recent-text a {
	vertical-align: top;
	display: block;
	margin-bottom: 5px;
}

.footer-recent-text a:hover {
	color: #3367c1;
}

.footer-post-date {
	position: relative;
	font-size: 13px;
	color: #313131;
	padding-left: 21px;
}

.footer-post-date:before {
	position: absolute;
	content: '\f073';
	font-family: fontawesome;
	top: 0;
	left: 0;
}

.footer-item .form-control {
	font-size: 15px;
    font-family: 'Work Sans', sans-serif;
	height: 48px;
	border: 2px solid #3367c1;
	z-index: 3 !important;
}

.footer-item .btn {
	cursor: pointer;
	font-size: 20px;
	border: 2px solid #3367c1;
	background: #3367c1;
	color: #fff;
	z-index: 3 !important;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.footer-project {
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 10px;
} */

/*
-------------------------------
Footer Bottom
-------------------------------
*/

/* .footer-bottom {
	text-align: center;
	background: #313131;
}

.footer-menu {
	border-bottom: 1px solid #9a9a9a;
	margin-bottom: 15px;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu ul li {
	display: inline-block;
	margin: 0px 10px;
	padding-bottom: 15px;
}

.footer-menu ul li a {
	font-size: 15px;
    font-family: 'Work Sans', sans-serif;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.footer-menu ul li a:hover {
	color: #f1f1f1;
}

.copy-text {
	padding-top: 0px;
}

.copy-text p {
	font-size: 15px;
	color: #fff;
	margin: 0;
}

.copy-text a {
	color: #fff;
    font-family: 'Work Sans', sans-serif;
	text-decoration: none;
} */

/*
-------------------------------
Banner
-------------------------------
*/

.banner-slider {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	height: 245px;
	position: relative;
}

.bannder-table {
	display: table;
	width: 100%;
	height: 100%;
}

.banner-text {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	position: relative;
}

.banner-text h1 {
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
}

/*
-------------------------------
Scroll To Top
-------------------------------
*/

.scroll-top {
	cursor: pointer;
	text-align: center;
	font-size: 22px;
	position: fixed;
	width: 50px !important;
	height: 50px;
	line-height: 46px;
	bottom: 20px;
	right: 20px;
	background:#003180  !important;
	color: #fff;
	opacity: 0.7;
	z-index: 9999;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.scroll-top:hover {
	opacity: 1;
	color: #fff;
	background: #313131;
	width: 50px !important;
}

/*
-------------------------------
Event
-------------------------------
*/

.event-item {
	border: 1px solid #ddd;
	background: #f1f1f1;
	padding: 30px;
	padding-top: 15px;
	margin-top: 30px;
}

.event-photo {
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 175px;
	margin-top: 15px;
}

.event-body {
	margin-top: 15px;
}

.event-header {
	overflow: hidden;
	margin-bottom: 15px;
	display: table;
	width: 100%;
}

.event-header ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

li.event-header-left {
	float: left;
	vertical-align: top;
	display: table-cell;
	width: 100%;
	padding-right: 10px;
}

li.event-header-left h4 {
	font-size: 22px;
    font-weight: 700;
	margin-bottom: 5px;
}

li.event-header-left span {
	margin-right: 15px;
}

li.event-header-left span:last-child {
	margin-right: 0;
}

li.event-header-left i {
	color: #3367c1;
	margin-right: 4px;
}

li.event-header-right {
	float: right;
	vertical-align: top;
	display: table-cell;
}

li.event-header-right h5 {
	font-size: 16px;
    font-family: 'Work Sans', sans-serif;
	margin-bottom: 2px;
}

li.event-header-right span {
	color: #3367c1;
	font-size: 26px;
	font-weight: 700;
}

li.event-header-right p {
	font-size: 18px;
    font-weight: 700;
	margin: 0;
}

.event-content .button a {
	padding: 12px 20px;
}

/*
-------------------------------
Event Detail
-------------------------------
*/

.event-detail-content {
	margin-top: 30px;
}

.event-contact-item {
	text-align: center;
	background: #3367c1;
    color: #fff;
	padding: 30px 5px;
	margin-top: 30px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.event-contact-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
    color: #fff;
	border: 1px solid #fff;
	margin: 0 auto;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.event-contact-icon img {
	width: 25px;
	height: 25px;
}
.event-contact-icon i {
	font-size: 18px;
}
.event-contact-text {
	margin-top: 20px;
}

.event-contact-text h4 {
	font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
	margin-bottom: 5px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.event-contact-text p {
	margin: 0;
}

.event-contact-item:hover{
    background: #f5f5f5;
    color: #313131;
}
.event-contact-item:hover .event-contact-icon{
    color: #3367c1;
	border: 1px solid #3367c1;
}
.event-contact-item:hover .event-contact-text h4{
    color: #313131;
}

.event-carousel {
	border: 1px solid #e1e1e1;
}

.event-carousel .owl-nav .owl-prev,
.event-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 40px;
	height: 50px;
	line-height: 48px;
	top: 50%;
	margin-top: -25px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.event-carousel .owl-nav .owl-prev {
	left: 0;
}

.event-carousel .owl-nav .owl-next {
	right: 0;
}

.event-carousel .owl-nav .owl-prev:hover,
.event-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.event-detail-text {
	margin-top: 30px;
}

.event-detail-text h3 {
	font-size: 22px;
	font-weight: 700;
    text-transform: uppercase;
	margin-bottom: 15px;
}

.event-map {
	margin-top: 30px;
}

.event-map iframe {
	width: 100%;
	height: 350px;
}


/*
-------------------------------
Gallery
-------------------------------
*/

.gallery-menu {
	text-align: center;
	margin-bottom: 5px;
}

.gallery-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gallery-menu li {
	cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    border-bottom: 1px solid #e1e1e1;
    color: #313131;
    padding: 5px 10px;
    padding-top: 0;
    margin: 0 10px 10px;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.gallery-menu li:hover {
	color: #3367c1;
}

.gallery-menu li.filtr-active {
	border-bottom: 1px solid #3367c1;
	color: #3367c1;
}

.gallery-menu li.filtr-active:before {
	border-color: #3367c1 transparent transparent;
	border-style: solid;
	position: absolute;
	content: "";
	border-width: 6px 6px 0;
	left: 50%;
	margin-left: -6px;
	bottom: -6px;
	text-decoration: none;
}

.gallery-group {
	border: 1px solid #ededed;
	margin-top: 30px;
}

.gallery-photo {
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 196px;
	position: relative;
}

.gallery-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background: #3367c1; */
	background-color: #784636 !important;
	visibility: hidden;
	opacity: 0;
	transform: scale(0);
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.gallery-group:hover .gallery-bg {
	opacity: 0.7;
	transform: scale(1);
	visibility: visible;
}

.gallery-table {
	display: table;
	width: 100%;
	height: 100%;
}

.gallery-icon {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.gallery-icon a {
	position: relative;
	font-size: 26px;
	color: #fff;
	text-decoration: none;
	z-index: 99;
}

.gallery-group:hover .gallery-icon {
	opacity: 1;
	visibility: visible;
}

.gallery-text {
	text-align: center;
	background: #f5f5f5;
	padding: 15px;
}

.gallery-text a {
	color: #3367c1;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.gallery-text h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.gallery-text a:hover {
	color: #3367c1;
}

.gallery-text .photo-name {
	font-size: 18px;
	font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.gallery-text p {
	position: relative;
	font-size: 15px;
	border-top: 1px solid #e1e1e1;
	margin: 0;
	padding-top: 8px;
}

.gallery-text p:before {
	position: absolute;
	content: '';
	left: 0;
	top: -1px;
	width: 0%;
	height: 1px;
	background: #3367c1;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.gallery-group:hover .gallery-text p:before {
	width: 100%;
}

.gallery-text span {
	margin-right: 3px;
}

/*
-------------------------------
Shop
-------------------------------
*/

.product-item {
	text-align: center;
	border: 1px solid #e1e1e1;
	margin-top: 30px;
}

.product-photo {
	overflow: hidden;
	position: relative;
}

.product-cart {
	position: absolute;
	width: 100%;
	bottom: -20px;
	left: 0px;
	background: #3367c1;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.product-item:hover .product-cart {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}

.product-cart ul {
	text-align: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-cart ul li {
	float: left;
	width: 50%;
}

.product-cart ul li:first-child {
	border-right: 1px solid #ddd;
}

.product-cart ul li a {
	display: block;
	font-size: 13px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
	background: #3367c1;
    color: #fff;
	padding: 12px 5px;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.product-cart ul li a:hover {
	color: #fff;
	background: #313131;
}

.product-cart ul li i {
	margin-right: 5px;
}

.product-text {
	border-top: 1px solid #e1e1e1;
	padding: 15px 10px;
}

.product-text h3 a {
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	margin-bottom: 12px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	text-transform: uppercase;
}

.product-text h3 a:hover {
	color: #3367c1;
}

.product-text h4 {
	font-size: 17px;
    font-family: 'Work Sans', sans-serif;
	margin-bottom: 12px;
}

.product-text del {
	color: #313131;
	font-size: 17px;
	font-weight: 400;
	margin-left: 8px;
}

.product-star i {
	color: #3367c1;
}

.shop-sidebar {
	margin-top: 30px;
	border: 1px solid #e1e1e1;
	padding: 30px;
}

.shop-widget {
	margin-top: 30px;
}

.shop-widget:first-child {
	margin-top: 0;
}

.shop-widget input {
	font-size: 15px;
	height: 40px;
	border: 1px solid #e1e1e1;
}

.shop-widget button {
	background: #3367c1;
    color: #fff;
	border: 1px solid #3367c1;
}

.shop-widget button:hover {
	cursor: pointer;
}

.shop-widget h4 {
	display: inline-block;
	position: relative;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 12px;
	margin-bottom: 24px;
}

.shop-widget h4:before {
	position: absolute;
	content: '';
	width: 70%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: 0;
}

.shop-widget h4:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: #3367c1;
	left: 0;
	bottom: -5px;
}

.price-range p {
	font-size: 15px;
	margin-bottom: 15px;
}

.price-range span {
	font-weight: 600;
}

.shop-widget .ui-widget.ui-widget-content {
	border: 1px solid #e1e1e1;
}

.shop-widget .ui-widget-header {
	background: #3367c1;
}

.shop-widget .ui-state-default,
.shop-widget .ui-widget-content .ui-state-default {
	border: 1px solid #e1e1e1;
}

.shop-widget .ui-state-active,
.shop-widget .ui-widget-content .ui-state-active {
	background: #3367c1;
	border: 1px solid #3367c1;
}

.shop-widget .button-df {
	margin-top: 25px;
}

.shop-widget .button-df a {
	padding: 10px 30px;
}

.product-rated-item {
	display: table;
	width: 100%;
	border-bottom: 1px solid #e1e1e1;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.product-rated-item:last-child {
	border-bottom: 0px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.product-rated-photo {
	vertical-align: top;
	display: table-cell;
	float: left;
	width: 105px;
	padding-right: 8px;
}

.product-rated-photo img {
	max-width: 100%;
	height: auto;
}

.product-rated-text {
	vertical-align: top;
	display: table-cell;
	width: 100%;
	padding-left: 5px;
}

.product-rated-text a {
	font-size: 16px;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
	text-decoration: none;
	color: #313131;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.product-rated-text a:hover {
	color: #3367c1;
}

.product-rated-text h5 {
	font-size: 15px;
    font-family: 'Work Sans', sans-serif;
	margin-bottom: 5px;
}

.product-rated-text del {
	margin-left: 8px;
}

.shop-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-widget ul li {
	padding: 10px 0;
	border-top: 1px solid #e1e1e1;
}

.shop-widget ul li:first-child {
	border-top: 0px;
}

.shop-widget ul li a {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
	position: relative;
	text-decoration: none;
	padding-left: 10px;
}

.shop-widget ul li span {
	margin-left: 15px;
}

.shop-widget ul li a:before {
	position: absolute;
	content: '\F105';
	font-family: fontawesome;
	top: 0;
	left: 0;
	color: #313131;
}

/*
-------------------------------
Product Detail
-------------------------------
*/

.product-photo-item {
	padding: 30px;
}
.product-photo-item img {
    max-height: 370px;
    width: auto !important;
    margin: 0 auto;
}
.review-table h2{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.review-table .table thead th, 
.review-table .table tbody td{
    text-align: left;
}
.review-form h2{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.review-form label{
    font-size: 15px;
    font-weight: 600;
}
.review-form .review-star{}
.review-form textarea{
    height: 220px;
}
.review-form .btn{
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border: 1px solid #3367c1;
    background: #3367c1;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.review-form .btn:hover{
    color: #fff;
    background: #313131;
    border: 1px solid #313131;
}

.product-carousel {
	border: 1px solid #e1e1e1;
	margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 40px;
	height: 50px;
	line-height: 48px;
	top: 50%;
	margin-top: -25px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.product-carousel .owl-nav .owl-prev {
	left: 0;
}

.product-carousel .owl-nav .owl-next {
	right: 0;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

.shop-detail-text {
	margin-top: 30px;
}

.shop-detail-text h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.shop-detail-text h4 {
	font-size: 20px;
	font-weight: 500;
    font-family: 'Work Sans', sans-serif;
	margin-bottom: 15px;
}

.shop-detail-text h4 del {
	font-size: 20px;
	font-weight: 400;
	margin-left: 8px;
	color: red;
}

.shop-detail-text p {
	margin: 0;
	margin-top: 15px;
}

.shop-detail-choose {
	margin-top: 15px;
}

.shop-detail-cart {
	margin-top: 0px;
}

.shop-detail-cart ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-detail-cart ul li {
	display: inline-block;
	margin-top: 15px;
	margin-right: 15px;
}

.shop-detail-cart ul li a.cart-btn {
	font-weight: 600;
	display: inline-block;
	background: #3367c1;
	color: #fff;
	text-decoration: none;
	padding: 15px 30px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.shop-detail-cart ul li a.cart-btn:hover {
	color: #fff;
	background: #313131;
}

.shop-detail-cart ul li i {
	margin-right: 5px;
}

.shop-detail-cart ul li .ui-spinner {
	width: 125px;
	border: 1px solid #3367c1;
	border-radius: 0;
	margin-bottom: 1px;
}

.shop-detail-cart ul li input {
	font-size: 16px;
	height: 50px;
	text-indent: 30px;
	margin: 0;
	padding: 0;
}

.shop-detail-cart ul li .ui-button {
	cursor: pointer;
	padding: 0 25px;
	border-left: 1px solid #3367c1;
	border-radius: 0;
	background: #3367c1;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.shop-detail-cart ul li .ui-button:hover {
	background: #313131;
}

.shop-detail-cart ul li .ui-button .ui-icon {
	background-image: url("../images/ui-icons_ffffff_256x240.png");
}

.shop-detail-cat {
	margin-top: 20px;
}

.shop-detail-cat p {
	margin: 0;
}

.shop-detail-cat span {
	font-weight: 600;
}

.shop-detail-tab ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-detail-tab ul li {
	display: inline-block;
	margin-top: 15px;
	margin-right: 15px;
}

.shop-detail-tab ul li:last-child {
	margin-right: 0;
}

.shop-detail-tab ul li a {
	display: block;
	font-size: 15px;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	color: #fff;
	background: #313131;
	padding: 12px 25px;
	text-decoration: none;
}

.shop-detail-tab ul li a.active {
	color: #fff;
	background: #3367c1;
}

.shop-detail-content {
	margin-top: 30px;
}

.owlproduct-carousel .owl-nav .owl-prev,
.owlproduct-carousel .owl-nav .owl-next {
	text-align: center;
	font-size: 18px;
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 38px;
	top: 0;
	margin-top: -20px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.owlproduct-carousel .owl-nav .owl-prev {
	right: 0;
	margin-right: 40px;
}

.owlproduct-carousel .owl-nav .owl-next {
	right: 0;
	margin-right: 0px;
}

.owlproduct-carousel .owl-nav .owl-prev:hover,
.owlproduct-carousel .owl-nav .owl-next:hover {
	color: #fff;
	background: #313131;
}

/*
-------------------------------
Shopping Cart
-------------------------------
*/

.cart-table .table {
	width: 100%;
}

.table {
	margin-bottom: 0;
}

.table thead th,
.table tbody td {
	vertical-align: middle;
	text-align: center;
	border: 1px solid #e1e1e1;
}

.cart-table .table thead th {
	font-size: 16px;
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #3367c1;
	color: #fff;
	padding: 15px 5px;
}

.cart-table th.c-photo {
	min-width: 160px;
	width: 160px;
}

.cart-table th.c-name {
	min-width: 180px;
}

.cart-table th.c-qnt {
	min-width: 120px;
}

.cart-table th.c-price,
.cart-table th.c-total {
	min-width: 90px;
}

.cart-table .table tbody td {
	font-size: 15px;
	color: #313131;
}

.cart-table .table tbody td span {
	font-weight: 600;
}

.cart-table .table tbody td a {
	font-size: 15px;
    font-family: 'Work Sans', sans-serif;
	color: #313131;
	text-decoration: none;
}

.cart-table .table tbody td a:hover {
	color: #3367c1;
}

.cart-table .table tbody td img {
	max-width: 100%;
	height: auto;
}

.cart-table .table tbody td input {
	border: 1px solid #e1e1e1;
	padding: 10px 15px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.cart-table .table tbody td input:focus {
	border-color: #3367c1;
}

.cart-action {
	margin-top: 25px;
}

.update-cart {
	margin-top: 15px;
}

.update-cart a {
	display: inline-block;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	text-decoration: none;
	padding: 15px 30px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.update-cart a:hover {
	background: #313131;
	color: #fff;
}

.coupon-cart {
	font-size: 15px;
	height: 51px;
	margin-top: 15px;
}

.coupon-cart input {
	font-size: 15px;
	border-radius: 0;
}

.coupon-cart .btn {
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	border: 1px solid #3367c1;
	border-radius: 0;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.btn.focus,
.btn:focus {
	box-shadow: none;
}

.coupon-cart .btn:hover {
	border: 1px solid #313131;
	background: #313131;
	color: #fff;
}

.total-cart {
	margin-top: 40px;
}

.total-cart td {
	text-align: left !important;
	padding: 20px;
}

.total-cart td.t-bold {
	font-size: 16px;
	font-weight: 600;
	padding: 20px;
}

.proceed-cart {
	margin-top: 15px;
}

.proceed-cart a {
	display: inline-block;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	text-decoration: none;
	padding: 20px 40px;
	background: #3367c1;
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.proceed-cart a:hover {
	background: #313131;
	color: #fff;
}

/*
-------------------------------
Checkout
-------------------------------
*/

.checkout-form {
	margin-top: 30px;
}

.checkout-form textarea {
	height: 120px;
}

.checkout-table {
	margin-top: 30px;
}

.checkout-table table th,
.checkout-table table td {
	text-align: left;
}

.checkout-table table th {
    font-size: 16px;
	font-weight: 700;
    text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
	color: #fff;
    background: #3367c1;
}

.checkout-table table td.t-bold {
	font-size: 15px;
	font-weight: 600;
	color: #313131;
}

.payment-select {
	text-align: center;
	margin-top: 30px;
}

.payment-select.headstyle h4:before {
	width: 118px;
	left: 50%;
	margin-left: -59px;
}

.payment-select-group .form-check-input:only-child {
	position: absolute;
}

.payment-order-button {
	margin-top: 30px;
}

.payment-order-button a {
	display: block;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background: #3367c1;
	padding: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.payment-order-button a:hover {
	color: #fff;
	background: #313131;
}


/*
-------------------------------
Contact
-------------------------------
*/

.contact-item {
	text-align: center;
	border: 1px solid #e1e1e1;
	min-height: 180px;
	position: relative;
	background: #fafafa;
	padding: 30px 15px;
	padding-top: 60px;
	margin-top: 71px;
}

.contact-icon {
	position: absolute;
	width: 82px;
	height: 82px;
	line-height: 92px;
	top: 0px;
	left: 50%;
	background: #fafafa;
    color: #3367c1;
	border-radius: 50%;
	border: 1px solid #e1e1e1;
	margin-top: -41px;
	transform: translate(-50%, 0%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.contact-icon img {
	width: 40px;
	height: 40px;
}

.contact-icon i {
	font-size: 34px;
}
.contact-item:hover .contact-icon{
    background: #3367c1;
    color: #fafafa;
	border: 1px solid #3367c1;
}
.contact-text {
	margin-top: 0px;
}

.contact-text h4 {
	font-size: 18px;
    font-weight: 700;
	margin-bottom: 5px;
}

.contact-text p {
	margin: 0;
}

.contact-form textarea {
	height: 190px
}

.contact-form .btn {
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	padding: 14px 30px;
	border: 1px solid #3367c1;
	background: #3367c1;
	color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.contact-form .btn:hover {
	color: #fff;
	background: #313131;
	border: 1px solid #313131;
}

.map-area iframe {
	width: 100%;
	height: 450px;
	margin-bottom: -5px;
}

/*
-------------------------------
404 Page
-------------------------------
*/

.error-page {
	text-align: center;
}

.error-head {
	display: inline-block;
	background: #f1f1f1;
	border: 1px solid #e1e1e1;
	padding: 30px;
}

.error-head h1 {
	font-size: 70px;
	font-weight: 700;
	color: #3367c1;
	margin-bottom: 2px;
}

.error-head h1 span {
	color: #313131;
}

.error-head h3 {
	font-size: 32px;
	font-weight: 700;
	margin: 0;
}

.error-body {
	margin-top: 30px;
}

.error-body h4 {
	font-size: 22px;
    font-weight: 700;
	margin-bottom: 5px;
}

.error-body p {
	margin: 0;
}

/*
-------------------------------
Under Construction Page
-------------------------------
*/

.under-construction {
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	position: relative;
}

.under-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #3367c1;
	opacity: 0.9;
}

.under-text {
	text-align: center;
	position: relative;
	z-index: 99;
	color: #fff;
}

.under-text h1 {
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 15px;
}

.under-text h1 span {
	color: #fff;
}

.under-text p {
	font-size: 15px;
	color: #fff;
	margin-bottom: 25px;
}

.under-text .form-control {
	font-size: 15px;
	height: 48px;
	border: 2px solid #fff;
	z-index: 3 !important;
}

.under-text .btn {
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	border: 2px solid #3367c1;
	background: #3367c1;
	color: #fff;
	z-index: 3 !important;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#navigator-toolbox::after {
  content: "";
  display: -moz-box;
  -moz-box-ordinal-group: 101; /* tabs toolbar is 100 */
  height: 1px;
  background-color: ThreeDShadow;
}


.error-class {
    background: #ca6464;
    color: #fff;
    padding-top: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 14px;
}

.success-class {
    background: #68a554;
    color: #fff;
    padding-top: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 14px;
}


/* Language Button */
.lang-right {
	float: left;
	border-bottom: 0;
	margin: 0;
	padding: 0;
	padding-left: 35px;
}

.lang-right select {
	padding: 0;
	font-size: 14px;
}

.lang-right select.form-control:not([size]):not([multiple]) {
	height: 26px!important;
	background: transparent;
	color: #fff!important;
	border: none;
	margin-top:-16px;
}

.lang-right select option {
	color: #000!important;
	padding: 5px 10px!important;
}


/* ------------------------------------------- */
/* toastr */
/* ------------------------------------------- */
.toast {
    opacity: 1 !important;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    border-radius: 0!important;
}
#success_toastr {background: green;}
#error_toastr {background: red;}
#warning_toastr {background: coral;}
#info_toastr {background: cornflowerblue;}
#question_toastr {background: grey;}

.captcha-section {
    font-size: 16px;
    width: 100%;
}

.captcha-section-1 {
    width: 90px;
    float: left;
    padding-top: 5px;
}

.captcha-section-2 {
    float: left;
    width: 100px;
}

span.input-group-btn {
    background: #3367C1;
}

.footer-item .input-group .btn {
	padding-top: 10px;
}

.service-sidebar-item .form-group {
	width: 100%;
}

.portfolio-details .form-group {
	width: 100%;
}

.single-blog img {
	width: 100%;
}




.share_buttons a {
	text-align: center;
}
.share_buttons a i {
    border: 1px solid #3b5998;
    color: #fff!important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    margin-right: 4px;
}
.share_buttons a.facebook i {
	background: #3b5998;
    border-color: #3b5998;
}
.share_buttons a.facebook:hover i {
	color: #3b5998!important;
	background: #fff;
}
.share_buttons a.twitter i {
	background: #00aced;
    border-color: #00aced;
}
.share_buttons a.twitter:hover i {
	color: #00aced!important;
	background: #fff;
}
.share_buttons a.pinterest i {
	background: #EB4823;
    border-color: #EB4823;
}
.share_buttons a.pinterest:hover i {
	color: #EB4823!important;
	background: #fff;
}
.share_buttons a.linkedin i {
	background: #0e76a8;
    border-color: #0e76a8;
}
.share_buttons a.linkedin:hover i {
	color: #0e76a8!important;
	background: #fff;
}
/* *************************************** */
/* COMPANY-PROFILE CSS START */
.company-p-row{
	margin: 20px 0px;
	border-radius: 8px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.cp-fdcm-p{
    font-size: 22px;
    color: #162e6a;
    font-family: serif;
    font-weight: 600;
}
.cp-f-para{
	font-size: 18px;
	text-align: justify;
}
.cp-f-para-m{
	font-size: 18px;
	text-align: justify;
	font-weight: 500;
}
.cp-f-parao {
    font-size: 18px;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 2;
	margin: 20px 0px;
}
.cp-par{
	font-size: 18px;
	text-align: justify;
	color: white;
}
.area-o-h{
	font-size: 20px;
	font-weight: bold;
	color: #162e6a;
}
.cp-d{
	font-size: 20px;
	font-weight: bold;
	color: #f37f43;
}
.cp-details-bg{
	background-image:linear-gradient(to right bottom, #000000, #222222ad),url(../uploads/cp-d.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	padding: 20px 0px;
}
/* COMPANY-PROFILE CSS END*/
/* board of directors css start */
.team-text{
	/* background-color:#81512f; */
	background-color: brown;
	min-height: 144px;
}
.sudhir-c-m{
	font-size: 18px;
	font-weight: 700;
	font-family: sans-serif;
}
.board-in-the{
	color: #162e6a;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    font-family: 'Cinzel';
}
/* board of directors css start */
/* managing director desk css start */
.man-dire-desk-bg{
	background-image:linear-gradient(to right bottom, #000000, #222222ad),url(../uploads/c-p-bg.gif);
    background-size: cover;
    background-repeat: no-repeat;
	padding: 20px 0px;
}
.mang-d-p{
    font-size: 22px;
	color: #f37f43;
    font-family: serif;
    font-weight: 600;
}
.man-d-para{
    font-size: 18px;
    text-align: justify;
	color: white;
}
/* managing director desk css end */
/* whos who css start */
.table-head-h{
	background-color:#3f6e64 !important;
	color: white !important;
}
.table-head-h1{
	background-color:#81512f !important;
	color: white !important;
}
.td-heading{
	text-align: start !important;
	font-weight: 600;
	color: #162e6a !important;
	width: 500px;
}
/* milestone css start */
.mil-sec-h{
	color: #162e6a;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    font-family: 'Cinzel';
}
.mil-sec-box{
	border: 2px solid #f37f43;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 12px;
    margin: 30px 0px;
	background-image: linear-gradient(to right bottom, #00000000, #22222200),url(../uploads/bg-t.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
/* HUMAN RESOURCE CSS START */
.hr-t-heading{
	background-color: #3f6e64 !important;
    color: white !important;
}
.cls-heading{
	background-color:#81512f !important;
	color: white !important;
}
.total-cls-b{
	background-color:#3f6e64 !important;
	color:white !important;
	font-size: 18px;
	font-weight: 700;
}
.hr-srno{
	width: 120px;
}
.hr-desig{
	width:480px;
}
.hr-cls{
	width:120px;
}
.hr-sec{
	width:220px;
}
.hr-all-t{
	font-size: 20px;
	font-weight: 700;
	background-color: #162e6a !important;
	color: white !important;
}
/* annual reports css start */
.lan-e-m{
	text-decoration: none;
    color: #162e6a;
    font-weight: 600;
	font-family: math;
}
.ar-heading{
	background-color:#81512f !important;
	color: white !important;
}
.ar-td{
	font-weight: 600;
}
/*wild life conser start*/
.wildlife-w{
	width: 90px;
}
.wildlife-bg{
	background-image: linear-gradient(to right bottom, #00000094, #222222bf),url(../uploads/c-p-bg.gif);
    background-size: cover;
    background-repeat: no-repeat;
	padding: 20px 0px;
	margin: 20px 0px;
}
.gr-no{
	font-weight: 700;
	color:white;
}
.td-jstfy{
	text-align: start !important;
	font-weight: 600;
}
.area-o-h1 {
	font-size: 20px;
	font-weight: bold;
	color:#f37f43;
}
.cp-f-paraw {
    font-size: 18px;
    text-align: justify;
    color:white; 
}
/* balasaheb gorewada start */
.total-h{
	font-size: 18px;
	font-weight: 500;
	color: black;
}
/* QUALITY TEAK TIMBER & POLES css start */
/* medicinal plant species css start */
.medi-ol{
    font-size: 18px;
    line-height: 30px;
}
.medi-para-box{
	border: 2px solid #f37f43;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 12px;
    margin: 30px 0px;
    background-image: linear-gradient(to right bottom, #00000000, #22222200),url(../uploads/bg-t.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.medi-para{
	font-size: 18px;
	font-weight: 500;
	line-height: 30px;
	color: #0c1923;
}
.medi-sec-ul{
	font-size: 18px;
    font-weight: 500;
    color: #162e6a;
	list-style: none;
	line-height: 30px;
}
.pdf-viewer-bg{
	margin: 20px 0px;
}
/* national bamboo start */
.nation-box{
	border: 2px solid #f37f43;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 12px;
    margin: 30px 0px;
    background-image: linear-gradient(to right bottom, #00000000, #22222200),url(../uploads/bg-t.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
/* turn key projects */
.th-t{
	text-align: center;
	background-color:#81512f !important;
	color: white !important;
}
/* ramdongri css start */
.ramd-td{
	text-align: start !important;
    font-size: 18px;
    font-weight: 500;
	background-color: #f7f7f7 !important; 
}
.ram-td-a{
	text-decoration: none;
}
/* footer privcy policy  start*/
.privcy-p-f{
	font-size: 22px;
	font-weight: 600;
	color: #162e6a;
}
/* disclaimer footer start */
.for-a-row{
	/* background-color:#162e6a; */
	/* padding: 30px 0px; */
	position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 90px;
    padding-bottom: 90px;
}
.for-a-row:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #3367c1;
    opacity: 0.8;
}
.cnt-us{
	text-decoration: none;
	color: white;
	padding: 20px;
}
.for-a-q{
	font-size: 32px;
    font-weight: 700;
    color: #162e6a;
    font-family: sans-serif;
}
.cnt-us-btn{
	background-color: #f37f43;
    width: 140px;
    transition: all 0.5s;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 10px !important;
	padding: 12px 0px;
}
.cnt-us-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.cnt-us-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.fdcm-b-cnt{
	text-decoration: none;
	color:#317739;
	font-weight: 700;
    font-size: 16px;
}
.regis-off-ad{
	font-size: 26px;
	font-weight: 600;
	font-family: serif;
	text-align: center;
	color: #162e6a;
}    
.addr-tbl-td{
	text-align: start !important;
	font-size: 16px;
	color: #162e6a !important;
	font-weight: 500;
}
.add-tbl-th{
	/* background-color: #81512f !important; */
	background-color: #162e6a !important;
    color: white !important;	
}
.add-tbl{
	margin-top: 60px;
}
/* BAR RESORTS BOOKING START */
.cnt-resort{
	box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 28px;
}
.book-r-btn{
	background-color:#162e6a;
    width: 240px;
    transition: all 0.5s;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 10px !important;
	padding: 12px 0px;
}
.book-r-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.book-r-btn {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.booked-res{
	text-align: center;
}
.cnt-us1{
	text-decoration: none;
	color: white;
	padding: 20px;
	font-size: 18px;
}
.book-r-btn1{
	background-color: #f37f43;
    width: 240px;
    transition: all 0.5s;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 10px !important;
	padding: 12px 0px;
}
.book-r-btn1 {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.book-r-btn1 {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.tbl-b-rs{
	color: #162e6a;
}
.tbl-td-rs{
	text-align: start !important;
    font-size: 16px;
    font-weight: 700;
}
.traffic-tbl-bg{
	border: 2px solid #f37f43;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px;
	margin: 20px 0px;
}
.bor-container-box{
	border: 2px dashed #f37f43;
	border-radius: 20px;
	padding: 20px;
}
/* nagzira resorts booking start */
.tbl-td-rs1{
    font-size: 16px;
    font-weight: 700;
	color: #81512f !important;
}
/* nagzira resorts booking end */
/* photo gallary start *********************/
.portfolio-menu li.filtr-active,
.team-social li a:hover {
	border-bottom-color:#81512f !important;             
}

.portfolio-menu li.filtr-active:before,
.team-social li a:hover {
	border-top-color:#81512f !important;               
}
.portfolio-menu li.filtr-active{
	color: #162e6a !important;
	cursor: pointer;
}
.portfolio-menu li:hover{
	color:#81512f !important;
}
.portfolio-bg{
	background-color:#5266c7  !important;
}
.portfolio-text h3 a:hover{
	color:#81512f !important;
}
/* photo gallary end *********************/
/* plantation-inventory start */
.achv-p{
	margin-bottom: 10px;
}
/* slider news IMPORTANT PERSONS***START****/
.slider-news{
	width: 30%;
	height: 445px;
	background-color: #f1f5ff;
   
}
/* imp-persons css start */
.imp-heading{
	font-size: 22px;
    color: #003180;
    font-family: sans-serif;
    margin-top: 10px;
}
.imp-para{
	font-size: 16px;
    font-family: sans-serif;
	color: black;
}
.imp-p{
	text-align: center;
    margin-top: 10px;
    color: #ffffff;
    padding: 10px 0px;
    font-weight: 600;
    font-size: 20px;
    font-family: unset;
	background-color: #162e6a;    
	border-radius: 4px;
}
a.fontbutton{
	text-decoration: none;
    color: black;
}
/* -[SPECIAL SCHEMES]-----SERVICE BOX CSS---START---------- */
.serv-a-tag{
	text-decoration: none;
}
.service-box{
	position: relative;
	overflow: hidden;
	margin-bottom:10px;
	perspective:1000px;
	-webkit-perspective:1000px;
}
.service-icon{
	width: 100%;
	height: 220px;
	padding: 20px;
	text-align: center;
	transition: all .5s ease;
}

.service-content{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	width: 100%;
	height: 220px;
	padding: 20px;
	text-align: center;
	transition: all .5s ease;
	background-color: #003180;
	backface-visibility:hidden;
	transform-style: preserve-3d;
	-webkit-transform: translateY(110px) rotateX(-90deg);
	-moz-transform: translateY(110px) rotateX(-90deg);
	-ms-transform: translateY(110px) rotateX(-90deg);
	-o-transform: translateY(110px) rotateX(-90deg);
	transform: translateY(110px) rotateX(-90deg);
}
.service-box .service-icon .front-content{
	position: relative;
	top:80px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.service-box .service-icon .front-content i {
	font-size: 28px;
	color: #fff;
	font-weight: normal;
}

.service-box .service-icon .front-content h3 {
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
	text-transform: uppercase;
	font-family: sans-serif;
}
.service-box .service-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom:10px;
	text-transform: uppercase;
	font-family: sans-serif;
}
.service-box .service-content p {
	font-size: 16px;
	color: white;
	margin:0;
	font-family: sans-serif;
}
.purple{background-color:#190482;}
.s-pink{background-color:#B15EFF;}
.l-pink{background-color:#7752FE;}
.pink{background-color: #934a00}
.l-purple{background-color: #3f9154;}
.s-purple{background-color:#940B92;}
.b-purple{background-color:#0081B4;}
.d-purple{background-color: #3A1078;}

.service-box:hover .service-icon{
	opacity: 0;
	-webkit-transform: translateY(-110px) rotateX(90deg);
	-moz-transform: translateY(-110px) rotateX(90deg);
	-ms-transform: translateY(-110px) rotateX(90deg);
	-o-transform: translateY(-110px) rotateX(90deg);
	transform: translateY(-110px) rotateX(90deg);
}
.service-box:hover .service-content {
	opacity: 1;
	-webkit-transform: rotateX(0);
	-moz-transform: rotateX(0);
	-ms-transform: rotateX(0);
	-o-transform: rotateX(0);
	transform: rotateX(0);
}
.srv-para{
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
}
/* -[SPECIAL SCHEMES]-----SERVICE BOX CSS --END---------- */
/* ********************************************************* */
/*  our partner css ************start***********  */
.headeing-text h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 68px;
    color: #1c1c1c;
    display: block;
    margin: 0;
    text-transform: uppercase;
}
.headeing-subheading-text {
    color: #999;
    line-height: 40px;
    text-align: center;
    font-weight: 200;
  font-size:20px;

}
.client-section .client-logo{
  margin-bottom: 50px;
}
.client-section .client-logo .item {
	transition: transform 200ms cubic-bezier(.785, .135, .15, .86), box-shadow 200ms cubic-bezier(.785, .135, .15, .86);
    margin-bottom: 15px;
	/* background-color: #ffd914; */
    margin: 10px;
    padding: 6px;
    border: 1px solid #ffcca98c;
    border-radius:4px;
	/* background: -webkit-linear-gradient(to right, #FFD194, #D1913C);
    background: linear-gradient(to right, #ebab57, #c97b13); */
}
.client-section .client-logo .item:hover {
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
/* .client-section .client-logo img {
    width: 240px;
    margin: 0 auto;
    opacity: 0.8;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
} */
.client-section .client-logo img:hover {
    opacity: 1;
    transition: all 0.3s ease-in-out 0s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
/*  our partner css ************END***********  */
/* footer css start */
a.sc-icons {
    color: white;
}
.quick-items{
	color: white !important;
}
/* imp- schemes */
.imp-hdn{
	margin-top:10px;
}
/* ****************************************************** */
/* testimonial css start**************** */
.testimonials {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	/* padding: 50px 0; */
	font-family: "Poppins", sans-serif;
  }
  .testimonials::before {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	/* background: rgba(255, 216, 50, 0.7); */
  }
  .testimonials .title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	/* padding: 20px 0; */
	max-width: 600px;
	margin: 0 auto;
  }
  .testimonials .title h5 {
	color: #004aa8;
	line-height: 1.2em;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: -3px;
  }
  .testimonials .title h2 {
	color: #5a3733;
	line-height: 1.2em;
	font-weight: 900;
	font-size: 41px;
	letter-spacing: -1px;
	margin: 0;
  }
  .testimonials .title img {
	margin-top: -10px;
  }
  .testimonials .title p {
	margin: 0 0 10px;
	margin-bottom: 0;
	color: #5a3733;
  }
  .testimonials .testi .item {
	background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
	border: 1px solid #005a75c9;
	margin: 30px 10px;
  }
  .testimonials .testi .item .profile {
	display: flex;
	padding-left: 15px;
  }
  .testimonials .testi .item .profile img {
	border-radius: 100%;
	width: 150px;
	height: 150px;
	object-fit: cover;
	border: 1px solid #f0f0f0;
  }
  .testimonials .testi .item .profile .information {
	padding-left: 20px;
	margin-bottom: 15px;
	margin-top: 30px;
  }
  .testimonials .testi .item .profile .information .stars i {
	color: #ffd832;
  }
  .testimonials .testi .item .profile .information p {
	font-size: 24px;
	margin: 0px auto 0px;
	color: #5a3733;
	font-weight: 900;
	line-height: 1;
  }
  .testimonials .testi .item .profile .information span {
	color: #eb6d2f;
	font-weight: bold;
	margin-top: -4px;
	line-height: 1.6em;
	font-size: 14px;
  }
  .testimonials .testi .item > p {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.6em;
	display: block;
	z-index: 2;
	font-style: italic;
	color: #5a3733;
	text-align: center;
  }
  .testimonials .testi .item .icon {
	text-align: center;
  }
  .testimonials .testi .item .icon i {
	font-size: 32px;
	color: #ffd832;
  }  
/* .testim-bg{
	padding: 20px 0px;
}
.testimonial{ 
	margin: 0 10px 50px;
	border: 1px solid #c0c0c063;
    border-radius: 5px;
 }
.testimonial .pic{
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 15px 15px 0;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
	margin-left: 10px;
	margin-top: 10px;
}
.testimonial .testimonial-profile{
    display: inline-block;
    position: relative;
    top: 15px;
}
.testimonial .title{
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2f2f2f;
    text-transform: capitalize;
    margin: 0 0 7px 0;
}
.testimonial .post{
    display: block;
    font-size: 16px;
	color: #0052d1;
}
.testimonial .description{
    padding: 20px 22px;
	background: #0047a5;
    font-size: 16px;
    color: #fff;
    line-height: 25px;
    margin: 0;
    position: relative;
	margin-top: 30px;
	height: 160px;
}
.testimonial .description:before,
.testimonial .description:after{
    content: "";
    border-width: 18px 0 0 18px;
    border-style: solid;
    border-color: #2960b6 transparent transparent;
    position: absolute;
    bottom: -18px;
    left: 0;
}
.testimonial .description:after{
    border-width: 18px 18px 0 0;
    left: auto;
    right: 0;
} */
.owl-theme .owl-controls{
    margin-top: 10px;
    margin-left: 30px;
}
.owl-theme .owl-controls .owl-buttons div{
    opacity: 0.8;
    background: #fff;
}
.owl-prev:before,
.owl-next:before{
    content: "\f053";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 20px;
    color: #1f487e;
}
.owl-next:before{ content: "\f054"; }
.owl-buttons {
    display: none;
}
/* testimonial css ****end******* */

/* model css start  */

.modal-content{
	margin-top: 80px !important;
}
/* model css end */
/* jeshta nagrik {start} */
.jst-n-hndg{
	text-align: center;
    margin: 30px;
    font-size: 30px;
    font-weight: 600;
    color: brown;
	line-height: 44px;
}
.form-hndg{
	text-align: center;
    margin: 30px;
    font-size:24px;
    font-weight: 600;
    color: black;
}
.frm-hndg{
    margin: 30px;
    font-size: 30px;
    font-weight: 600;
    color: black;
}
.frm-f{
    font-size: 16px;
    font-weight: 600;
    color: black;
}
.frm-box{
	border: 1px solid #797979;
	padding:20px;
	border-radius:6px;
	margin-bottom: 20px;
}

.men-frm{
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}
.jst-para{
	font-size:20px;
    font-weight: 600;
    text-align: justify;
	line-height: 30px;
	padding-right: 50px;
}
.jt-img-f{
	background-color: #6a1f00;
	padding: 20px;
	margin:20px;
}
/* abt-ngpr start */
.abt-ngpr{
	font-size: 20px;
}
.ab-npr{
	margin-bottom: 20px;
	border-radius: 12px;
}
.ab-npr p {
    text-align: justify;
}
.abt-n-txt{
	color: #02143b;
}
/* *************BREADCRUMBS******************* */
.dlab-bnr-inr.dlab-bnr-inr-lg{
	height: 400px;
    padding-top: 90px;
}
ul.breadcrumb {
	padding: 10px 16px;
    list-style: none;
    background-color: #00bd92;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
	margin-top: 0px;
  }
  ul.breadcrumb li {
	display: inline;
	font-size: 18px;
  }
  ul.breadcrumb li+li:before {
	padding: 8px;
	color: #3d3d3d;
	content: "/\00a0";
	/* content: "/"; */
  }
  ul.breadcrumb li a {
	color: white;
	text-decoration: none;
	font-size: 18px;
  }
  ul.breadcrumb li a:hover {
	color: #01447e;
	font-size: 18px;
	text-decoration: underline;
  }
  /* JESHTA NAGRIK YOJNA  */
  .sub-ti-hdng{
	font-size: 24px;
	color: #183b9c;
    font-weight: 600;
    text-align: center;
	margin-bottom: 20px;
	line-height: 36px;
  }
  .sub-hdng{
	font-size: 24px;
    color: white;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
  }
  .jsht-y-bg{
	background-color: #fff;
    padding: 40px 0px;
  }
  /* .appl-n{
	font-weight: 600;
    padding: 8px 18px;
    font-size: 20px !important;
    letter-spacing: 1px;
    border: 2px solid black;
    background-color: #6666e3;
    color: white;
    border-radius: 10px !important;
	margin: 20px 0px;
  } */
  .appl-n{
	font-weight: 600;
    padding: 8px 22px;
    font-size: 20px !important;
    letter-spacing: 1px;
	background-color: #407fed;
	border-radius: 30px !important;
	border: 2px solid black;
	color:white;
	position: relative;
	overflow: hidden;
	z-index: 1;
	margin: 20px 0px;
	transition: color 150ms ease-in-out;
  
  &:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: rebeccapurple;
    z-index: -1;
    transition: width 150ms ease-in-out;
  }
  
  &:hover {
    color: #fff;
    &:after {
      width: 110%;
    }
  }
}

/* slider event css */
/* event slider css start */
.event-slider-bg{
	/* background: #ecf4ff; */
	background: #CB356B;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #BD3F32, #CB356B);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #BD3F32, #CB356B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	padding-top: 100px;
    padding-left: 300px;
    padding-right: 300px;
    padding-bottom: 20px;
}
/* img-zoom-effect on hover [HOVER] */
.img-zoom {
    /* height: 300px; */
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  }
  
  /* [2] Transition property for smooth transformation of images */
  .img-zoom img {
    transition: transform .5s ease;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .img-zoom:hover img {
    transform: scale(1.5);
  }
  /* table css inner pages start */
  .table>:not(:last-child)>:last-child>* {
    border-bottom-color: brown !important;
    font-size: 20px !important;
}
.table>:not(:last-child)>:last-child>* {
    border-bottom-color: currentColor !important;
    background-color: #ced431 !important;
	/* width: 20px; */
}
/* apply details section start */
.apl-details-bg{
	background-color: #ece53d61;
    padding: 20px 0px;
}

/* ABOUT US <<MISSION PAGE>> */
.mission-bg{
	/* background-image: url(../uploads/home_section_1/homesec1-1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; */
}

/* contact section start */
.cntct-loc{
	font-size: 60px;
	/* text-align: center; */
    color: #ffe764;
	margin-top: 26px;
}
.cntc-add{
	color: white;
	text-align: justify;
}
.ct-add{
	font-size:26px;
    font-family: sans-serif;
    font-weight: 600;
	margin-top: 16px;
}
.add-ct{
	font-size: 20px;
	color: white;
	text-decoration: none;
}
.f-box{
	padding: 10px 10px;
	/* margin: 30px 30px; */
	/* background-color: #e15498; */
	background-color: #a62031;
	min-height: 160px;
	/* width: 439px; */
	margin: auto;
}
/* form */
.frm-ct {
    width: 100%;
    border: 1px solid #e8e8e8;
    background-color: #f8f9fa;
	padding: 20px;
}
.address-map{
	/* margin-top: 30px; */
	border: 1px solid #e8e8e8;
}
/* service box slider start */
.service-Box{
    /* color: #db7100; */
	background: #C21292;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    padding: 25px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
	margin: 10px;
/*	min-height:515px;*/
}
.service-Box:before,
.service-Box:after{
    content: "";
	background: linear-gradient(to right bottom,#fff,#fff);
    border-radius: 10px 10px 80px 10px;
    position: absolute;
    top: 4px;
    left: 4px;
    right: 1px;
    bottom: 1px;
    z-index: -1;
}
.service-Box:after{
	background: #c21292;
    width: 60px;
    height: 60px;
    border-radius: 10px 0 150% 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
}
.service-Box .service-icon img {
    background: #711DB0;
    border-radius: 50px;
    box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.2),0 0 10px rgba(0,0,0,0.15) inset;
    height: 100px;
    width: 100px;
    padding: 10px;
    margin: 0 auto;
}
.service-Box .service__icon img {
    background: #711DB0;
    border-radius: 50px;
    box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.2),0 0 10px rgba(0,0,0,0.15) inset;
    height: 100px;
    width: 100px;
    padding: 10px;
    margin: 0 auto 20px;
}
.service-Box p {
   text-align: justify;
}
.service-Box h4 {
    font-size: 22px;
    font-weight: 600;
}
.service-Box .title{
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.service-Box .description{
    color: #555;
    font-size: 15px;
    line-height: 23px;
}
.service-Box.green{
    color: #75c400;
    background: #75c400;
}
.service-Box.green:after{ background: #75c400; }
.service-Box.blue{
    color: #27A1D3;
    background: #27A1D3;
}
.serviceBox.blue:after{ background: #27A1D3; }
.serviceBox.red{
    color: #bb2b2c;
    background: #bb2b2c;
}
.service-Box.red:after{ background: #bb2b2c; }
@media only screen and (max-width: 990px){
    .service-Box{ margin: 0 0 30px; }
}
.move-up:hover{
    transition: all .5s;
    transform : translateY(-10px);
}
/* new css services*/
/* service box slider end */


/* google translt btn */
.goog-te-gadget-simple {
    background-color: #fff;
    font-size: 10pt;
    display: inline-block;
    padding-top: 1px;
    border-radius: 20px !important;
    padding-bottom: 2px;
    cursor: pointer;
    border: 1px solid aquamarine !important;
    padding: 0px 6px !important;
}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    text-decoration: none;
    color: #8f0023 !important;
}
/* gallery (whats news) start */
.nws-ev-hdng{
    margin-top: 8px;
    color: white !important;
    font-weight: 500;
    font-size: 18px !important;
    background-color: #0c77e5;
    padding: 10px 20px;
}
.magnific-img img {
    width: 100% !important;
    border-radius: 6px;
    border: 1px solid #adadad;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 120px;
    object-fit: cover;
}
.magnific-img {
   margin: 12px 0px;
   text-align: center;
}
.galry{
	background: #f3f3f3;
}
.row.galry {
    height: 274px;
	margin:0px;
}
/* gallery (whats news) end */
/* [vastigruh yojna]  css start*/
.vsti-y-bg {
	background-color: #e9f4ff;
    padding: 20px 0px;
}
.vsti-para {
    font-size: 20px;
    font-weight: 600;
    text-align: justify;
    line-height: 30px;
    color: black;
	letter-spacing: 1px;
}
.vsti-tit-hdng {
    font-size: 24px;
    color: #d80080;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
.vsti-aati-bg{
	padding: 20px 0px;
}
/* shaskiya-shala (start) */
.shski-shala-bg {
	background-color: #ecf7ff;
    padding: 20px 0px;
}
.shski-tit-hdng {
    font-size: 24px;
    color: #0024ae;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
/* pardeshi shishyavrati start */
.prdshi-shish-bg {
	background-color: #f8f3ff;
    padding: 20px 0px;
}
.prdshi-tit-hdng {
    font-size: 24px;
    color: #7200ae;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
.qr-c{
    width:40%;
    border: 2px solid;
    border-radius: 10px;
    margin: 20px;
    padding: 10px;
	background-color: #efdf23;
	margin: auto;
}
.applyhedng{
	text-align: center;
	margin: 30px 0px;
}
.apl-n{
	font-size: 28px;
    font-weight: 700;
    color: #c900a6;
}
.jst-para3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 30px;
	color: #ce0092;
	letter-spacing: 1px;
	margin-top: 10px;
}
/* yojna img start */
.yojna-img{
	padding: 40px 0px;
	background-color: #e7f8ff;
	margin: 10px 0px;
}




/* media query start for 4 boxes*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    
    .srv-para {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
}

.service-Box {
    /* color: #db7100; */
    background: #C21292;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    padding: 25px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin: 10px;
    min-height: 530px;
}

.imp-heading {
    font-size: 16px;
    color: #003180;
    font-family: sans-serif;
    margin-top: 10px;
    font-weight: 600;
}
.imp-para {
    font-size: 14px;
    font-family: sans-serif;
    color: black;
}

}


/*medica query for wide screen start*/
/*@media only screen and (min-width: 1850px) and (max-width: 2000px) {*/
    
/*  .service-Box {*/
/*    min-height: 478px;*/
/*}*/
/*}*/
section.section_page_img img {
    height: 422px;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 749px) {
    .imp-heading {
        font-size: 15px;
    }
    .imp-para {
        font-size: 12px;
    }
	section.section_page_img img {
		height: auto;
		width: 100%;
		object-fit: cover;
	}
	.jst-para {

		padding-right: 0px;
	}
	figure#attachment_1635 {
		width: 100px !important;
	}
}
/* Custom styles */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 9999;
  }
  
  .search-box {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10000;
  }
  
  @media (max-width: 576px) {
	/* Styles for small devices (e.g., smartphones) */
	.search-box {
	  width: 90%;
	  max-width: 300px;
	}
  }
  
  /* Sticky header */
  #strickymenu {
	position: sticky;
	top: 0;
	background-color: #ffffff; /* Adjust as needed */
	z-index: 1000; /* Ensure it's above other content */
  }
.visitors__text {
    display: flex;
    align-items: center;
}
.visitors__text h6 {
    font-size: 20px;
}
.visitors__text p {
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 600;
}
/* ======================== */
a.comm-links {
    text-decoration: none;
    font-size: 16px;
}
.gallery__box_new {
    margin-bottom: 20px;
}
.gallery__box_new img {
    height: 127px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 2px solid #ed573d;
}
.about__img {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}
.about__txt p {
    text-align: justify;
}
.description_txt p {
    text-align: justify;
    font-size: 15px;
}
.description_txt ul li {
    text-align: justify;
    font-size: 15px;
}
.description_txt ol li {
    text-align: justify;
    font-size: 15px;
}
/* ************* */
.team-members-main .team-img img {
    border-radius: 50%;
    width: 180px;
}
.team-members-main .name-details h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.team-members-main .name-details p {
    font-size: 18px;
	font-weight: 600;
    color: #000;
}
.team-members-main .listing-txt ol li {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
}
.input__main input {
    border-radius: 5px !important;
    background: linear-gradient(to right, #2c2c87, #ed573d);
    color: #fff !important;
    margin-right: 10px;
}
.input__main input::placeholder {
	color: #fff;
  }
.input__main button {
    background: linear-gradient(to right, #2c2c87, #ed573d);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px !important;
    border: 1px solid #fff;
}




.schemes__heading h5 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}
td.a__tag a {
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
}
div.a__tag a {
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
}
td.schemes__title {
    font-weight: 600;
    font-size: 18px;
    text-align: left !important;
}
td.schemes__sr {
    font-weight: 600;
    font-size: 18px;
} 
.breadcrumb li {
    color: #fff;
    font-weight: 600;
}
.application_txt h4 {
    color: #003180;
    font-weight: 600;
    margin-bottom: 0px;
}
.front-content img{
	height: 70px;
}
.description_txt h3 {
    font-size: 22px;
    font-weight: 600;
}

.description_txt table th {
    background-color: #ced431;
    border: 1px solid #000;
    padding: 10px;
}
.description_txt td {
    border: 1px solid #000;
    padding: 10px;
}
/**********************************/
/* .scheme_img_main{
	float: left;
}
.scheme_img_main .scheme_img {
    height: auto;
    width: 400px;
    margin-right: 40px;
	margin-bottom: 10px;
} */
.scheme_img_main .scheme_img img {
    border: 2px double #ec573d;
    padding: 10px;
	width: 100%;
}
.application_txt .website__txt{
	font-size: 16px;
}
.application_txt .link__txt a {
    font-size: 16px; 
    font-family: sans-serif;
    font-weight: 500;
}
.application_txt .website__txt {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 0px;
    font-weight: 500;
}
.application_txt .qr__code_img img {
    height: 120px;
    padding: 5px;
    background: #ed573d;
    border-radius: 5px;
}
/*.about__text_home h3 {
    font-size: 25px;
    margin-top: 15px;
    font-weight: 600;
}*/
.about__text_home h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}
.about__text_home h3 {
    font-size: 20px;
    margin-top: 5px;
    font-weight: 600;
}
.about__text_home p {
    font-size: 14px;
    font-weight: 600;
}
.about__nagpur h3 {
    font-size: 22px;
    font-weight: 600;
}
.mission__text ul li {
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
}
.hightlite-txt h6 {
    background-color: #342e85;
    font-size: 16px;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    text-decoration: unset;
    border-radius: 5px;
	/* min-height: 70px; */
}
.hightlite-txt a {
    color: #fff;
    text-decoration: unset;
}
.pt80{
	padding-top: 80px !important;
}
.pb80{
	padding-bottom: 80px !important;
}

.links-grid {
    text-align: center;
    background-color: #f0fbff;
    padding: 10px 5px;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 42%) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.links-grid img {
    height: 60px;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;
}
.links-grid h6 {
    font-size: 16px;
    font-weight: 700;
    font-family: system-ui;
    color: #000;
}
.a__tag_link a{
	text-decoration: none;
}
.helpline-box {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border: 2px solid #2f2c86;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.helpline-box span {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    background-color: #003180;
    padding: 5px 10px;
    border-radius: 5px;
}
.helpline-box h4 {
    margin-top: 12px;
}
.helpline-box h4 a {
    font-size: 22px;
    color: #000;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}