@charset "utf-8";
/* CSS Document */
body {
	margin:0 auto;
	padding: 0;
	font-family: 'Muli', sans-serif;
}
#slide_img{
	background:url(../images/slider.jpg) no-repeat;
	background-size:cover
}
/*---======== Header Part Start =======--*/
.header {
	width: 100%;
	float: left;
	position:fixed;	
	z-index:2;
}
/*---======== Header Part Close =======--*/

.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#wrapper {
	display: none;
}
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 234px;
	background:#0D4532;
}

#page-content-wrapper {
    width: 100%;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
	position: absolute;
	top: 0;
	width: 220px;
	margin: 0;
	padding: 0;
	list-style: none;
	padding-top: 25px;
}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #000;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
.sidebar-nav li:first-child a {
    color: #fff;
}
/*.sidebar-nav li:nth-child(2):before {
    background-color: #ec1b5a;   
}*/
/*.sidebar-nav li:nth-child(3):before {
    background-color: #79aefe;   
}
.sidebar-nav li:nth-child(4):before {
    background-color: #314190;   
}
.sidebar-nav li:nth-child(5):before {
    background-color: #279636;   
}
.sidebar-nav li:nth-child(6):before {
    background-color: #7d5d81;   
}
.sidebar-nav li:nth-child(7):before {
    background-color: #ead24c;   
}
.sidebar-nav li:nth-child(8):before {
    background-color: #2d2366;   
}
.sidebar-nav li:nth-child(9):before {
    background-color: #35acdf;   
}*/
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 20px;
    line-height: 44px;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
	position: fixed;
	top: 5px;
	z-index: 999;
	display: block;
	width: 20px;
	height: 24px;
	margin-left: 15px;
	background: transparent;
	border: none;
	right: 20px;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height:2px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #fff;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom:6px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #1a1a1a;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 1;
}
.navi_menu a {
	float: right;
	font-size: 14px;
	color: #fff;
	padding-top: 8px;
	text-decoration:none;
}

.slider {
	text-align: center;
	color: #fff;
	margin-top:56px;
	float:left;
	width:100%;
	position:absolute;
	bottom:0;
}
.slider p {
	font-size: 30px;
	line-height: 40px;
	letter-spacing: 1px;
	background: rgba(0,0,0,0.3);
	padding: 6px 50px;
	margin: 0 100px;
}
.all_slid{
	width:100%;
	float:left;
	text-align:center;
	color:#fff;
	margin-top: 37px;
}
.all_slid img{
	width:100%;
	float:left;
}
.all_slid_inves {
	
	background:url(../images/investments.jpg) no-repeat;
	background-size:100% 100%;
}
.all_slid_inves {
	background: url(../images/investments.jpg) no-repeat;
	background-size: 100% 100%;
	padding: 155px 0 !important;
}
.all_slid_appro{
	width:100%;
	float:left;
}
.all_slid_cont{
	width:100%;
	float:left;
}

.all_slid p {
	font-size: 24px;
	font-weight: 900;
	padding: 0 15px;
	line-height: 30px;
	margin-bottom: 0;
	letter-spacing: 1px;
	text-align:left;
}

.about_contact {
	width: 100%;
	float: left;
	padding:80px 0;
}
.about_contact_bg {
	background:#ddd;
}
.about_contact h2 {
	text-align: left;
	margin-bottom: 18px;
	margin-top: 0;
	color:#0D4532;
	font-size:26px;
}
.about_contact p {
	font-size: 16px;
	line-height: 24px;
	text-align: left;
	letter-spacing: 1px;
}

/*--========= Contact Page Start =======-----*/
/*--========= Contact Page Start =======-----*/
.contact_part{
	width:100%;
	float:left;
	padding:60px 0 30px;
}
.contact_part h2 {
	margin-bottom:30px;
	color:#0D4532;
	font-size: 26px;
	padding-left:15px;
}
.cont_txt {
	width: 100%;
	float: left;
	border: 1px solid #d4d4d4;
	margin-bottom: 30px;
	padding: 20px 15px 0;
	min-height: 264px;
}

.sbline {
	width: 254px;
	padding: 2px 0;
	background:  #22B173;
	margin-bottom: 50px !important;
}
.cont_txt h4 {
	font-size: 22px;
	margin-bottom:20px;
}
.cont_txt p {
	font-size: 16px;
	width: 100%;
	float: left;
	margin-bottom: 12px;
	letter-spacing:1px;
}
.cont_txt p a {
	margin-bottom: 24px !important;
	float: left;
	color: #215c8b;
}
.cont_form{
	width:100%;
	float:left;
	margin-top:40px;
}
.cont_form .form-control {
	display: block;
	width: 100%;
	height: 48px;
	padding: 11px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius:0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	margin-top:8px;
}
.cont_form textarea {
	display: block;
	width: 100%;
	height:auto !important;	
	border: 1px solid #ccc;
	margin-top:8px;
}
.cont_form .form-group {
	margin-bottom: 30px;
}
.cont_form button {
	background: #215c8b;
	color: #fff;
	padding: 12px 40px;
	border: none;
	font-size:20px;
}
/*--========= Contact Page Close =======-----*/
/*--========= Contact Page Close =======-----*/

.tab_part {
	position: relative;
	top:155px;
	width: 100%;
	float: left;
	text-align: center;
	background: rgba(0,0,0,0.4);
}
.tab_part .intro {
	font-size:18px;
	border-bottom:1px solid #fff !important;
	color: #fff !important;
}
.tab_part .nav-tabs > li > a {
	font-size:18px;
	color:#fff;
	border:0 solid transparent !important;
	padding:10px 0 15px;
}

.tab_part .nav > li > a:focus, .nav > li > a:hover {
	text-decoration: none;
	background: none;
	border:none !important;
}

.footer
{
	float:left;
	width:100%;
	border-top:1px solid #ccc;

}
.foot_1
{
	float:left;
	width:100%;    padding-top: 20px;
}
.footer ul
{
	float:left;
	width:100%;
     padding-left:0;
}
 
.footer ul li
{
	float:left;
	width:100%;
	list-style-type:none;
}
.footer ul li a
{
	position: relative;
    display: block;
    padding: 5px 0px;
    font-size: 14px;
	color:#000;
}
.footer ul li a:hover
{
	text-decoration:none;
	color: #0D4532;
}
.foot_1 h5
{
	float:left;
	width:100%;
	color: #0D4532;
    font-size: 18px;
}

.foot_2
{
	float:left;
	width:100%;
	padding-top: 20px;
}

.foot_2 h5
{
	float:left;
	width:100%;
	color: #0D4532;
    font-size: 18px;
}

.foot_2 p
{
	float:left;
	width:100%;
	font-size:14px;
	    padding: 5px 0;
    margin-top: 0;
    margin-bottom: 0;
}





@media (max-width:991px){
.nav > li > a {
	padding: 10px 5px;
	font-size: 14px;
}

}

@media (max-width:767px){
.nav > li > a {
	padding: 10px 15px;
	font-size: 16px;
}
.header {
	width:100%;
	float:left;
	position: fixed;
	z-index: 9999;
}
.navbar-toggle {
	display: none;
}
#wrapper {
	display: block !important;
}


.sidebar-brand img {
	width: 96%;
	padding-left: 22px;
	margin-top: 15px;
	margin-bottom: 30px;
}
.all_slid img {
	width: 100%;
}
.navbar-header {
	height:32px;
}
.navbar-brand img {
	/*display:none !important;*/
}
.tab_part h2 {
	font-size: 18px;
	text-align: left;
}
.all_slid {
	margin-top: 30px !important;
}


.slider p {
	font-size: 16px;
	line-height: 24px;
	margin-top: 40px;
	letter-spacing: 1px;
	background: rgba(0,0,0,0.3);
	padding: 18px 0 !important;
	margin: 0 12px;
}
.slider {
	position:inherit !important;
	padding:60% 0;
}
#slide_img{
	background-position:center center;
	width:100%;
	height:100%;
}
.all_slid_inves {
	padding: 59px 0 !important;
}
.tab_part {
	top: 59px !important;
}
.about_contact {
	padding: 50px 0 !important;
}
}




@media (max-width:480px){
.all_slid_inves {
	padding: 20px 0 !important;
}
.tab_part {
	top: 20px !important;
}
.tab_part .nav-tabs > li > a {
	font-size: 12px !important;
}
}
@media (max-width:360px){
.all_slid_inves {
	padding: 10px 0 !important;
}
.tab_part {
	top: 10px !important;
}
.tab_part .nav-tabs > li > a {
	padding: 5px 0 10px !important;
}
}