@font-face {
    font-family: Proxima-Nova;
    src:url('../fonts/Proxima-Nova.otf');
}

/*menu part start*/
.nav {
  position:relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  /*background-color: #efefef;*/
}

/** 
* Nav container 
* 1. Ensure this slides in below parentfg
* 2. Hide by default
* 3. Smoother scrolling experience on iOS
*/

a {
    color: #337ab7;
    text-decoration: none;
}

.nav-container {
  position: fixed;
  top: 60px; /* 1 */
  left: 0;
  z-index: 9999;
  overflow-y: auto;
  visibility: hidden; /* 2 */
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); /* 2 */
  background-color: #c0c0c0;
  -webkit-overflow-scrolling: touch; /* 3 */
}

/* 1. Show when `.is-visible` class is added */

.nav-container.is-visible {
  visibility: visible; /* 1 */
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); /* 1 */
}

/* Nav toggle */

.nav-toggle {
  line-height: 1;
  display: inline-block;
  padding: 1.25rem 1rem;
  border: 0;
  background-color: #e74c3c;
}

/* Nav toggle icon */

.nav-toggle .icon-menu {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 20px;
  vertical-align: middle;
  fill: none;
}

/* Nav toggle icon lines */

.icon-menu .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  background-color: #fff;
}

/* Nav toggle icon line 1 */

.icon-menu .line-1 { top: 0; }

/* When active, rotate line 1 to be lefthand part of X */

.is-active .icon-menu .line-1 {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  -ms-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
}

/* Nav toggle icon line 2 */

.icon-menu .line-2 {
  top: 50%;
  margin-top: -2px;
}

/* When active, hide line 2 */

.is-active .icon-menu .line-2 { opacity: 0; }

/* Nav toggle icon line 3 */

.icon-menu .line-3 { bottom: 0; }

/* When active, rotate line 3 to be righthand part of X */

.is-active .icon-menu .line-3 {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}

/* Remove default list styles for menus */

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/** 
* 1. Give menu a lighter background than its container 
* 2. Prevent menu text from being accidentally highlighted
*/

.nav-menu {
  background-color: #dedede; /* 1 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;         /* 2 */
}

/* Give menu items a top border */

.nav-menu .menu-item { border-top: 1px solid #bbb; }

/* Give last menu item a bottom border */

.nav-menu > .menu-item:last-child { border-bottom: 1px solid #bbb; }

/* Darker background color on hover, and when toggled */

.nav-menu > .menu-item:hover,
.nav-menu > .menu-item.is-active { background-color: #d0d0d0; }

/* 1. Menu links are block level, by default */

.nav-menu .menu-link {
  display: block; /* 1 */
  text-decoration: none;
  color: #444;
  padding: 0.75rem 1rem;
}

/* 1. Menu items with dropdowns appear clickable */

.has-dropdown {
  position: relative;
  cursor: pointer; /* 1 */
}

/* 1. Parent menu links inlined so you can toggle the dropdown */

.has-dropdown > .menu-link { display: inline-block; }

/* 1. Add an icon to menu items that have sub menus */

.has-dropdown:after {
  font-size: 32px;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  content: "+"; /* 1 */
  color: #222;
}

/* 1. Switch icon to n-dash when toggled */

.has-dropdown.is-active:after { content: "\2013"; /* 1 */ }

/**
 * Dropdowns
 * 1. Hide dropdowns by default
 */

.nav-dropdown {
  display: none; /* 1 */
  background-color: #c0c0c0;
}
.influ_head a p {padding-top:12px;}

/* 1. Show dropdown when toggled */

.has-dropdown.is-active > .nav-dropdown { display: block; /* 1 */ }

/* 2nd level dropdown */

.nav-dropdown .nav-dropdown { background-color: #aaa; }

.nav-dropdown .menu-item { border-color: #a0a0a0; }

.nav-dropdown .nav-dropdown .menu-item {
  background-color: #b0b0b0;
  border-color: #909090;
}

/* Main content area */

.content { margin-top: 60px; }

.content .wrapper { padding: 1rem 0; }
 @media (min-width: 960px) {

.nav { /*background-color: #dedede;*/ }

.nav,
 .nav-container,
 .nav-container.is-visible {
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.nav-container,
 .nav-container.is-visible {
  visibility: visible;
  height: auto;
  min-height: 0;
  overflow-y: visible;
}

.nav-toggle { display: none; }

/* 1. Display menu items inline */

.nav-menu > .menu-item,
 .nav-menu > .menu-item.is-active {
  display: inline-block; /* 1 */
  background-color: transparent;
  border: 0;
}

/* Remove bottom border on last child */

.nav-menu > .menu-item:last-child { border: 0; }

.nav-menu .menu-item {
  -webkit-transition: background-color 0.15s ease-in-out,  color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out,  color 0.15s ease-in-out;
}

/* Remove +/- icons */

.has-dropdown:after { content: "" !important; }

/* Add a caret to top-level menu items that have dropdowns */

.nav-menu > .has-dropdown:after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0;
  height: 0;
  margin-top: -2px;
  margin-left: -4px;
  content: "";
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #444 transparent transparent transparent;
}

/* Increase padding to compensate for caret */

.has-dropdown > .menu-link { padding-right: 2rem; }

/* Re-style dropdowns for larger screens */

.nav-dropdown {
  display: block;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 200px;
  margin: 0;
  padding: 0.5rem 0;
  background-color: #dedede;
  box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.15);
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.25s,  opacity 0.25s linear;
  transition: visibility 0s linear 0.25s,  opacity 0.25s linear;
}

.has-dropdown:hover > .nav-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav-dropdown .menu-item { border: 0; }

.nav-dropdown .menu-item:hover,
 .nav-dropdown .nav-dropdown .menu-item:hover { background-color: #d0d0d0; }

.nav-dropdown .nav-dropdown,
 .nav-dropdown .nav-dropdown .menu-item { background-color: #dedede; }

.nav-dropdown .nav-dropdown {
  z-index: 9998;
  top: 0;
  left: 100%;
}

.content { margin-top: 0; }
}
/*menu part end*/



.follow_us img{ padding:1px;}steps ul{ list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden; }
.steps ul li{ list-style:none; display:inline; float:left; text-transform:uppercase; padding:20px;  width: 160px;}
.steps ul li h3{ font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight:700; text-align:center; font-size: 14px;}
.steps ul li h4{ font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight:700;text-align:center;font-size: 12px;     border-bottom: 2px solid #7ac144; padding-bottom:10px; }
.steps ul li p{  font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight:700;text-align:center; color:#990000;font-size: 12px;}

.contentblock_left .infostyle{  font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif; text-align: center; padding:10px 0px;}
.contentblock_left p{ text-align:center; font-size:18px; font-weight:500; font-family: "Proxima Nova"; padding: 20px 116px 0px;}
.contentright .col-md-12, .contentright .col-md-4, .contentright .col-md-8  { padding:0}
.contentright{ background-color:#f4f4c1; border: #e6e6e6 solid 1px; font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif; padding:10px;}

.contentright .datestyle {
    color: #129d12;
    font-size: 14px;
    padding-top: 0;
    font-weight: 500;
}

li:before {
    color: blue; /* Or a color you prefer */
}

.logo img{ width:100%;}
.logo{padding:12px 0px;}



<style>
.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}
.fade-carousel {
    position: relative;
    height: 66vh;
}
.fade-carousel .carousel-inner .item {
    height: 100vh;
}
.fade-carousel .carousel-indicators > li {
    margin: 0 2px;
    background-color: #f39c12;
    border-color: #f39c12;
    opacity: .7;
}
.fade-carousel .carousel-indicators > li.active {
  width: 10px;
  height: 10px;
  opacity: 1;
}

/********************************/
/*          Hero Headers        */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0,0,0,.75);
      -webkit-transform: translate3d(-50%,-50%,0);
         -moz-transform: translate3d(-50%,-50%,0);
          -ms-transform: translate3d(-50%,-50%,0);
           -o-transform: translate3d(-50%,-50%,0);
              transform: translate3d(-50%,-50%,0);
}
.hero h1 {
    font-size: 6em;    
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s; 
}
.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s;    
}


/********************************/
/*          Custom Buttons      */
/********************************/
.btn.btn-lg {padding: 10px 40px;}
.btn.btn-hero,
.btn.btn-hero:hover,
.btn.btn-hero:focus {
    color: #f5f5f5;
    background-color: #1abc9c;
    border-color: #1abc9c;
    outline: none;
    margin: 20px auto;
}

.bg_content {
    background-color: #f3f3f3;
    padding: 20px;
    border: 1px solid #e6e6e6;
}

.bg_text .title {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 400;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	line-height: 1.5em;
	color: #1f1f1f;
	text-transform: inherit;
	margin-bottom:25px;padding-left: 32px;
}

.bg_text1 .title {
	text-align: center;
	font-size: 2.3rem;
	font-weight: bold;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	line-height: 1.2em;
	color: #1f1f1f;
	text-transform: inherit;
	margin-bottom:25px;
	margin-top: 50px;
}

.bg_text1 p {
    padding: 0px 10px;
    text-align: center;
    font-size: 17px;
    line-height: 1.6em;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
}

.bg_text h6 {
	text-align: justify;
	font-size: 18px;
	font-weight: 400;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	line-height: 1.5em;
	color: #1f1f1f;
	text-transform: inherit;
	margin-bottom:2px;padding-left: 32px;
}
.imgwithcontent {
	background-color: #f4f4f4;
}

.col-md-9.contentblock_left {
	padding-left:0px;
}

.new {
    margin-bottom: 20px;
}

.content_title {
	margin-bottom: 2px;
}

.content_space {
	margin-bottom: 10px;
}

.cb1 {
	background-image:url(../images/cb1.jpg);
	background-repeat:no-repeat;
	padding:15px;
}

.cb1 h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.cb1 p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 0px;
    text-align: left;
}

.cb1 {
	background-image:url(images/cb1.jpg);
	background-repeat:no-repeat;
	padding: 10px 15px;
}

.cb2 {
	background-image:url(images/cb22.jpg);
	background-repeat:no-repeat;
	padding: 10px 15px;
}

.cb3 {
	background-image:url(images/cb3.jpg);
	background-repeat:no-repeat;
	padding: 10px 15px;
}

.cb4 {
	background-image:url(images/cb44.jpg);
	background-repeat:no-repeat;
	padding: 10px 15px;
}

.cb5 {
	background-image:url(images/cb5.jpg);
	background-repeat:no-repeat;
	padding: 10px 15px;
}

.cb6 {
	background-image:url(images/cb44.jpg);
	background-repeat:no-repeat;
	padding: 10px 15px;
}

.cb_title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	margin-top:90px;
}

.cb_text {
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 5px 0px;
    text-align: left;
}

.cb_text ul li {
    line-height: 1.4em;
}

.cb_bth {
    color: #fff;
    font-size: 8.5px;
    font-weight: 600;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    border: 1px solid #fff;
    padding: 4px 0;
    text-align: center;
    text-transform: uppercase;
}

#padd_left {
	margin-left:0px;
}

#padd_left1 {
	margin-left:0px;
	margin-top: 15px;
}

#padd_right {
	padding-right:0px;
}

.bg_content h5 {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 0px 5px 20px;
	line-height: 1.2em;
}

.content_text p {
    color: #1f1f1f;
    font-weight: 600;
    padding: 10px 0px;
    text-align: center;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 1.5em;
	font-size: 17px;
}
.content_text1{    
    color: #1f1f1f;
    font-weight: 400;
    padding: 8px 10px;
    font-size: 17px;
    text-align: center;
}

.content_btn p {
    font-size: .7222222222rem;
    font-weight: 400;
	text-align: center;
	background-color: transparent;
	margin-top: 15px;
	margin-bottom:50px;
}
.bg_text p{text-align:center !important; padding:0px 95px;}



#latest_padd {
	padding-left:0px;
	padding-right:0px;
}

.contstyle {
	margin-left:0px !important;
	border-bottom: 1px solid #00a651;
	margin-bottom: 20px;
}

.readmore {
	background-color:#39a839;
	color:#fff;
	float:right;
	padding:5px 25px;
	font-size:16px;
	font-weight:600;
	margin: 5px 0 5px 0;
	border-radius:2px;
}

.contentright h2 {
	font-weight:600;
	color: #129d12;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:18px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}


.latest_text {
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight:500;
	margin: 50px 0; font-size:18px;text-align:center;
}

.latest_parafc p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
	padding-top: 22.5px;
	padding-bottom: 20px;
}

.contentright h3 {
	font-weight:600;
	color:#b50505;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:15px;
	margin:0;
	text-align:left;
	line-height:19px;
}

.contentright h3 a {
    color: #111;
	margin-bottom: 9px;
}

.teamservice {
	background-color:#f5f6f8;
}

.team_title {
    color: #009977;
    line-height: 1.25;
    font-size: 3.5888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-bottom: 0.5rem;
	margin-bottom: 65px;
}

.team_title4 {
    color: #162020;
    line-height: 1.25;
    font-size: 3.5888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	margin-bottom: 30px;
	margin-top: 30px;
}

.team_title1 {
    margin-top: 7px;
    color: #162020;
    line-height: 1.25;
    font-size: 3.5888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 0.5rem;
}

.team_title2 {
    margin-top: 20px;
	margin-bottom: 40px; 
    line-height: 1.25;
    font-size: 3.5888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;	
    color: #162020;

}

.team_title3 {
    margin-top: 30px;
    color: #162020;
    line-height: 1.25;
    font-size: 3.5888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 0.5rem;
}

.team_title5 {
    margin-top: 45px;
    color: #162020;
    line-height: 1.25;
    font-size: 3.5888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 0.5rem;
}

.prov_title {
    margin-top: 0;
    color: #162020;
    line-height: 1.25;
    font-size: 3.5888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 40px;
	text-align:center;
}


.team_subtitle {
	font-size: 20px;
	font-weight:500;
	color:#162020;
	text-align: left;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.team_text {
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    font-size: 16.5px;
    font-weight: 500;
    margin: 18px 0;
    line-height: 1.35em;
	text-align: justify;
}

.unordered_list {
	padding: 0px;
	list-style-position: inside;
	list-style-type: square;
}

.unordered_list li b {
	color: #000;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 600;
}

.unordered_list {
    margin-bottom: 0.7em;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 0.4em;
    text-align: justify;
}

.fund_list {
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 1.5em;
	font-weight: 500;
	margin-bottom: 2em;
}

.eco_list {
    margin-bottom: 1em;
    font-size: 18px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 0.5em;
	text-align:center;
    line-height: 1.5em;
}

.pilot_list {
    margin-bottom: 1.7em;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 0.7em;
    text-align: justify;
}

#cost_text {
    margin-top: 1.4em;
	margin-bottom: 2.5em;
}

.team_padd {
	padding: 15px 15px 15px 0px;
	margin: 10px 0;
}

.team_padd_1 {
	padding: 15px 15px 15px 0px;
	margin: 28px 0;
}

.team_padd1 {
	padding: 15px 15px 15px 0px;
	margin: 29px 0;
}

.sub_list {
	padding: 0px;
	list-style-position: none;
}

.sub_list li {
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}

.interest b {
	font-weight:600;
	color:#800020;
}

.pilot {
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
	margin:15px 0;
}

.pilot b {
	font-weight:500;
    font-size: 16px;
}

.pilothead {
	background-color:#f5f6f8;
	padding-bottom: 0px;
}


.item-service-process:first-child, .item-service-process:nth-child(4n+1) {
    margin-left: 0px;
}

.item-service-process {
    display: inline-block;
    text-align: center;
    position: relative;
}

.color-bg-1 .head-service-process {
    background: #a9f76c !important;
}

.head-service-process {
    position: relative;
    min-height: 57px;
    text-align: center;
    margin: 0 auto;
	width: 175px;
    padding-bottom: 25px;
}

.color-bg-1 .head-service-process:before {
    border-left: 35px solid #a9f76c;
}

.head-service-process:before {
    content: '';
    right: -35px;
    position: absolute;
    top: 0;
    height: 1%;
    z-index: 1;
    border-top: 58px solid transparent;
    border-bottom: 58px solid transparent;
}

.head-service-process:after {
    content: '';
    left: 0px;
    position: absolute;
    top: 0;
    height: 1%;
    border-top: 58px solid transparent;
    border-bottom: 58px solid transparent;
    border-left: 35px solid #fff;
}

.divisor-service-process {
    position: relative;
    height: 40px;
    margin: 0 auto;
    margin-left: 58%;
    width: 1px;
}

.info-service-process {
    position: relative;
    width: 100%;
    padding: 10px 0 0 0px;
    text-align: center;
    margin: 0 auto;
}

.color-bg-1 .divisor-service-process .circle-top {
    border: solid 3px #a9f76c;
}

.divisor-service-process .circle-top {
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -20px;
    border-radius: 50%;
    width: 40px;
    font-size: 0.875rem;
    font-weight: bold;
    height: 40px;
    background: #fff;
    color: #666;
    line-height: 2.5rem;
}

.divisor-service-process .circle {
    background: #a9f76c !important;
    background-color: #a9f76c !important;
}

.divisor-service-process .circle {
    position: absolute;
    bottom: -3px;
    left: 50%;
    margin-left: -6px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: #777;
}

.color-bg-1 .info-service-process p {
    color: #990000 !important;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 12px;
	text-transform:uppercase;
	line-height: 1.5em;
}

/*#menu_left {
	margin-left: 15px;
}
*/
.color-bg-1 .head-service-process1 {
    background: #515151 !important;
}

.head-service-process1 {
    position: relative;
    min-height: 57px;
    text-align: center;
    margin: 0 auto;
	width: 175px;
    padding-bottom: 25px;
}

.color-bg-1 .head-service-process1:before {
    border-left: 35px solid #515151;
}

.head-service-process1:before {
    content: '';
    right: -35px;
    position: absolute;
    top: 0;
    height: 1%;
    z-index: 1;
    border-top: 58px solid transparent;
    border-bottom: 58px solid transparent;
}

.head-service-process1:after {
    content: '';
    left: 0px;
    position: absolute;
    top: 0;
    height: 1%;
    border-top: 58px solid transparent;
    border-bottom: 58px solid transparent;
    border-left: 35px solid #fff;
}

.color-bg-1 .divisor-service-process .circle-top1 {
    border: solid 3px #515151;
}

.divisor-service-process .circle-top1 {
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -20px;
    border-radius: 50%;
    width: 40px;
    font-size: 0.875rem;
    font-weight: bold;
    height: 40px;
    background: #fff;
    color: #666;
    line-height: 2.5rem;
}

.divisor-service-process .circle1 {
    background: #515151 !important;
    background-color: #515151 !important;
}

.divisor-service-process .circle1 {
    position: absolute;
    bottom: -3px;
    left: 50%;
    margin-left: -6px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: #777;
}

.steps {
	margin-top: 80px;
	margin-bottom: 55px;
}

.steps h3 {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
	font-weight:700;
    padding-top: 20px;
	margin-left: 50px;
}

.steps h4 {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
	font-weight:700;
	margin-left: 50px;
}

.white {
	color: #fff !important;
}

.pro_bg {
	background-color: #f9f9f9;
	border-left: #a6d809 2px solid;
	border-right: #a6d809 2px solid;
	padding: 0px 15px;
}

.pro_bg1 {
	background-color: #f9f9f9;
	border-left: #009be7 2px solid;
	border-right: #009be7 2px solid;
	padding: 0px 15px;
}

.pro_header {
    color: #000000;
    text-align: center;
    font-size: 20px;
    padding-top: 35px;
    font-weight: 500;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-bottom: 10px;
}

.pro_img {
	text-align:center;
}

.pro_title {
	color: #000;
	text-align:center;
	font-size:16px;
	font-weight:500;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	border-bottom: #868686 1px solid;
}

.pro_sub {
    color: #000000;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 10px;
}

.pro_text {
	color: #000;
	text-align:center;
	font-size:13px;
	padding: 0 20px;
}

.pro_read {
	color: #ccc;
	text-align:center;
	font-size:13px;
	margin-top: 10px;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.pro_foot {
	text-align:center;
	padding-bottom: 10px;
}

.providers_text {
	padding: 70px 0;
}

.providers_text1 {
	padding: 40px 0;
}

.providers_text p {
	color: #364141;
	text-align:left;
	font-size:16px;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight:500;
	line-height: 1.6em;
}

.see_guides {
    background-color: #33b5cb;
    color: #fff;
    float: right;
    padding: 5px 25px;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 30px 0px 0px;
    border-radius: 2px;
}

.listing_bg {
	background-color: #f9f9f9;
	padding: 40px;
}

#list_padd {
	margin-left: 0px;
}

.listing_title {
    color: #00c9ff;
    text-align: left;
    font-size: 20px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
    margin-top: 7px;
	
}

.listing_text {
	color: #364141;
	text-align:left;
	font-size:15px;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight:500;
	margin-bottom: 15px;
}

.listing_bg1 {
	background-color: #00d6d1;
	padding: 10px 20px;
}

.listing_bg2 {
	background-color: #9bf39b;
	padding: 10px 20px;
	margin-bottom: 15px;
}

.list_more {
	padding-bottom: 80px;
}

.list_head {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
    margin: 20px 0 8px;
    text-transform: uppercase;
    min-height: 20px;
}

.home_more1 i {
    margin-bottom: 15px !important;
}

.list_sub {
	color: #fff;
	text-align:center;
	font-size:18px;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight:600;
	margin: 50px 15px;
}

.list_readmore {
	color: #fff;
	text-align:center;
	font-size:16px;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight:600;
	margin: 20px 0px;
	font-style:italic;
}

a.btn-default i {
    font-weight: 400;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
}

.blogs_bg {
    height: 240px;
}

.allpartner {
	padding: 40px;
}

.blog_space {
    padding: 60px;
    background-color: #f9f9f9;
    border: #eee 1px solid;
}

.blog_1 {
	background-image:url(images/blog_1.jpg);
	background-repeat:no-repeat;
	padding: 10px 20px;
	-webkit-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	-moz-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);}

.blog_2 {
	background-image:url(images/blog_2.jpg);
	background-repeat:no-repeat;
	padding: 10px 20px;
	-webkit-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	-moz-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);}

.blog_3 {
	background-image:url(images/blog_3.jpg);
	background-repeat:no-repeat;
	padding: 10px 20px;
	-webkit-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	-moz-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);}
.blog_4 {
	background-image:url(images/blog_4.jpg);
	background-repeat:no-repeat;
	padding: 10px 20px;
	-webkit-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	-moz-box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);
	box-shadow: -2px 1px 19px -2px rgba(158,158,158,0.76);}

.blog_title {
	color: #000;
	text-align:left;
	font-size:22px;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight:600;
	margin: 10px 0px 200px;
}

#team_left {
	margin-left: 0px;
}

/*#team_right {
	margin-left: 0px;
}*/

.wrapper2 {
	margin: 0px 0;
}

.pro-txt{text-align:center;padding:0px 15px;line-height: 24px; font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;}
.pro-txt strong{ font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 600;}

.max-height-3 h2 a{color:#000; font-weight: 600;}

.other-content {
	text-align:center;
}

@media (min-width: 320px) and (max-width: 480px) {
.bg_content h5 {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 0px 20px 20px;
    line-height: 1.5em;
}
#padd_right {
    padding-left: 0px;padding-bottom: 15px;
}
#menu_left{margin-left:55px;}
.latest_text {
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 600;
    margin: 20px 0; text-align:center;
}
.team_title {
    padding: 0px 0px;
}
.team_subtitle{padding: 0px 0px;}
.team_text{padding: 0px 0px;}
.unordered_list li {
    text-indent: -27px;
    padding-left: 45px;
    margin: 12px 0;
    font-size: 14px;
}
.pilot {
    font-weight: 600;
    color: #000000;
    margin: 15px 0;
    padding: 0px 12px;
}
.provider-mbe{padding-bottom:0px;}
.listing_title{text-align:center;}
.listing_text{text-align:center;}
.pro-txt{text-align:center;padding:0px 7px;line-height: 16px;}
}


/*inner part start*/
@media (max-width: 767px){
.carousel .row .span3 {
display: block;
float: left;
width: 25%;
margin-left: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
}
.linkedfc{border:1px solid #ece8e8; background-color:#f3f3f3;}

.linkedfc b {
	font-size: 13px;
}

.linkedfc1 b {
	font-size: 13px;
}

.myconn b {
	font-size: 13px;
}

.mycompass b {
	font-size: 13px;
}

.tblogs b {
	font-size: 13px;
}

.tdiscussions b {
	font-size: 13px;
}

.linkedfc h5{ background-color:#418382; padding:3px 10px;color:#fff; border-radius:3px; font-size:12px; text-transform:capitalize;margin-left: 0px; margin-bottom: 0px !important; margin-top: 0px !important; line-height: 2.5 !important;}

.linkpro{padding-top:7px;font-size:11px; font-weight: 600;}
.linkpro-lft{color:#75080d;font-size: 14px;}
.linkpro-rht{color:#457600;font-size: 14px;}
.fa-linkedin {font-size:16px; color:#666;}
.fa-facebook {font-size:16px; color:#666;}
.fa-google-plus {font-size:16px; color:#666;}
.fa-twitter {font-size:16px; color:#666;}
.fa-yahoo {font-size:16px; color:#666;}

.linkedfc1{border:1px solid #ece8e8; background-color:#d7ffe5;}
.linkedfc2{background-color:#d7ffe5 !important;}
.linkedfc1 h5 { padding:3px 10px;color:#fff; border-radius:3px; font-size:12px; text-transform:capitalize;margin-left: 0px; margin-bottom: 0px !important; line-height: 2.5 !important; margin-top: 0px !important;}
.linkedfc1 { background-color:#77ab3d; border-radius: 5px; }

.carousel-control {
    margin-top: 12px !important;
}

.list1{ background-color:#FFF;padding:0px 10px;}
.list2{background-color:#77ab3d;}
.ice{ /* padding-top:4px;  */}
.ice-txt{color:#fff;padding-top:4px;padding-bottom:24px;}
.pro2{padding:12px 8px 8px 8px;}
.pro3{ background-color:#fff; padding:4px; border:1px solid #f3f3f3;}
.pro4{font-size:14px; padding:14px 0px 14px 0px; text-align:center; line-height:16px;}
.icon-chevron-left {
    background-position: -432px -72px;
    margin-left: 0px;
}
#myCarousel_myextend .carousel-control{margin-top:-148px !important;}
#myCarousel3 .carousel-control{margin-top:-146px !important;}
#myCarousel4 .carousel-control{margin-top:-148px !important;}
#myCarousel5 .carousel-control{margin-top:-192px !important;}
#myCarousel3  .icon-chevron-left{margin-left: 582px;}
#myCarousel4  .icon-chevron-left{margin-left: 582px;}
#myCarousel5  .icon-chevron-left{margin-left: 582px;}
#myCarousel23 .carousel-control{margin-top:-82px !important;}
#myCarousel23 .icon-chevron-left {margin-left: 360px;}
#myCarousel8 .carousel-control{margin-top:-35px !important;/*left:-185px !important;right:-*/}
#myCarousel8 .icon-chevron-left {margin-left: 0px;}
#myCarousel9 .carousel-control{margin-top:-35px !important;/*left:-185px !important;right:-*/}
#myCarousel9 .icon-chevron-left {margin-left: 0px;}
    
.myconn {margin-top: 15px;}
.myconn1{background-color:#efe4ae;}
/* .myconn3{background-color:#77ab3d;} */
.myconn2{background-color:#e6ffe4;}
.myconn3 h5 {
    background-color: #75ab3b;
    padding: 3px 10px;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    text-transform: capitalize;
    margin-left: 0px;
	margin-top: 0px !important; margin-bottom: 0px !important; line-height: 2.5 !important;
}
.mycompass{background-color:#374142;}
.mycompass1{background-color: #d8ffe4;}

.recolistings {
    background-color: #39b4bb;
    border-radius: 5px;
    margin-top: 15px;
}

.recolistings1{background-color:#ddf9fa;}
.recolistings h5{ background-color:#39b4bb; padding:3px 10px;color:#fff; border-radius:3px; font-size:12px; text-transform:capitalize;margin-left: 0px; margin-top: 0px !important; margin-bottom: 0px !important; line-height: 2.5 !important;}

.tblogs {
    background-color: #fdbf4e;
    border-radius: 3px;
    margin-top: 15px;
}

.tblogs h5{ background-color:#fdbf4e; padding:3px 10px;color:#fff; border-radius:3px; font-size:12px; text-transform:capitalize;margin-left: 0px;}

.tdiscussions {
    background-color: #36f4ac;
    margin-top: 15px;
}

.tdiscussions h5{ background-color:#36f4ac; padding:3px 10px;color:#fff; border-radius:3px; font-size:12px; text-transform:capitalize;margin-left: 0px;}
.myconn h5{ background-color:#75ab3b !important; padding:3px 10px;color:#fff; border-radius:3px; font-size:12px; text-transform:capitalize;margin-left: 0px;}
.mycompass h5{ background-color:#374142; padding:3px 10px;color:#fff; border-radius:3px; font-size:12px; text-transform:capitalize;margin-left: 0px;}
.mycon{ background-color:#fff; min-height: 344px; padding-top: 12px; padding-bottom: 12px;}
.mycon .imgmyconn{ margin-top:-35px;}
.p1-1{padding:10px 10px 10px 10px;}
.p1-2{padding:10px 10px 10px 10px;}
.p1-4{padding:10px 10px 10px 10px;}

.relistings {
    background-color: #fff;
    padding: 10px 15px;
    min-height: 225px;
}

.relistings h4 {
    color: #414548;
    font-size: 13px;
    text-align: center;
    min-height: 40px;
	line-height: 1.3em;
}

.relistings h5 strong {
	color:#414548;
	font-size:13px;
	text-align:left;
	text-transform:capitalize;
	line-height: 20px;
	margin-right: 5px;
}

.relistings h5 {
    color: #909090;
    font-size: 13px;
    text-align: left;
    text-transform: capitalize;
    line-height: 16px;
    padding: 0 10px;
}

.relistings p strong {
	color:#414548;
	font-size:13px;
	text-align:left; 
	margin-right: 5px;
}

.relistings p {
    color: #909090;
    font-size: 13px;
    padding: 0px 10px;
    text-align: left;
    line-height: 16px;
    margin-top: 10px;
}

.mycon h4 {
    color: #414548;
    font-size: 14px;
    padding: 0px 5px;
    min-height: 36px;
    line-height: 1.2em;
    text-align: center;
}

.mycon h5 strong{color:#414548;font-size:13px;text-align:center;}

.mycon h5 {
    padding: 0px 10px;
    font-size: 13px;
    line-height: 18px;
    word-wrap: break-word;
	text-align: center !important;
    min-height: 38px;
}
.mycon h5 {
    padding: 0px 10px;
    font-size: 13px;
    line-height: 18px;
	text-align: center !important;
}

.mycon p strong{color:#414548;font-size:12px;padding:0px 10px;}
.mycon p{color:#909090;font-size:12px;padding:0px 10px; line-height: 18px; text-align: center; min-height: 50px;}

.fa-plus-circle{ font-size:28px !important;color:#05a4ff; vertical-align:middle;}
.connect{color:#FFF; background-color:#7fa953;padding:5px 15px;}

.connect1 {
    color: #FFF;
    background-color: #35b9ac;
    padding: 7px 15px;
    border-radius: 3px;
}

.connect2{color:#FFF; background-color:#374142;padding:5px 15px;}
.btm{padding: 0px 0px 30px 0px;}

.tdis{background-color:#feedd3;border-bottom:1px solid #fde1b6;border-left:1px solid #fde1b6;border-right:1px solid #fde1b6;}
.tdis1{background-color:#ffffff;border-bottom:1px solid #fde1b6;border-left:1px solid #fde1b6;border-right:1px solid #fde1b6;}

.tdbgs{background-color:#d7fdee;border-bottom:1px solid #ebf4df;border-left:1px solid #ebf4df;border-right:1px solid #ebf4df;}
.tdbgs1{background-color:#ffffff;border-bottom:1px solid #ebf4df;border-left:1px solid #ebf4df;border-right:1px solid #ebf4df;}
.cb_bth a{color:#fff;}


.teampad_rt {  padding-right: 80px;}
.pil_rt {padding-right: 80px; }

.partner-img {
	padding: 0px 10px 30px 10px;
}

.partner-img2 {
    padding-top: 25px;
}

.partner-img3 {
    padding-top: 0px;
}

.partner-img4 {
    padding-top: 10px;
}

.stps{margin:0px 0px; margin-left: 0px !important;}
.stps img{width:auto;}
#img_right img {
    width: 100%;
}
.steps-hd {color: #162020;font-size: 1rem;font-weight: 600;font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center; text-transform:capitalize; padding-top:0px; margin-bottom: 5px;}
.steps-hd a{color: #162020;font-size: 18px;font-weight: 600;font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center; text-transform:capitalize; padding-top:15px;padding-bottom:5px;}
.steps-hd a:hover{color: #162020 !important;font-size: 18px;font-weight: 600;font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center; text-transform:capitalize; padding-top:15px;padding-bottom:5px;}
.stps p{color: #162020 !important;font-size: 15px;font-weight: 600;font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center; text-transform:capitalize;}

a:hover{
    color: #162020 !important;
    text-decoration: none;
}


.content_btn p a {
    padding-top: .6944444444rem;
    padding-bottom: .5833333333rem;
    margin-top: .3888888889rem;
    margin-bottom: .3888888889rem;
    min-width: 2.6666666667rem;
    padding-right: 2.5555555555rem;
    padding-left: 2.5555555555rem;
    font-size: .7222222222rem;
    color: #fff !important;
    background-color: #009977;
    border-color: transparent;
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    border-width: .1111111111rem;
    border-style: solid;
    border-radius: .1666666667rem;
    outline: 0;
    -webkit-transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 13px;
}

.btn-default_box {
    padding-top: .6944444444rem;
    padding-bottom: .5833333333rem;
    margin-top: .3888888889rem;
    margin-bottom: 1.3888888889rem;
    min-width: 2.6666666667rem;
    padding-right: 1.5555555555rem;
    padding-left: 1.5555555555rem;
    font-size: .7222222222rem;
    color: #fff;
    background-color: #009977;
    border-color: transparent;
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    border-width: .1111111111rem;
    border-style: solid;
    border-radius: .1666666667rem;
    outline: 0;
    -webkit-transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    font-weight: 500 !important;
    letter-spacing: .1em;
	font-style: normal;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 13px;
	cursor: pointer;
}

.btn-default_box1 {
    padding-top: .6944444444rem;
    padding-bottom: .5833333333rem;
    min-width: 2.6666666667rem;
    padding-right: 1.5555555555rem;
    padding-left: 1.5555555555rem;
    font-size: .7222222222rem;
    color: #fff;
    background-color: #009977;
    border-color: transparent;
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    border-width: .1111111111rem;
    border-style: solid;
    border-radius: .1666666667rem;
    outline: 0;
    -webkit-transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: .1em;
	font-style: normal;
	float: right;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 13px;
}

.btn-default_box3 {
    padding-top: .6944444444rem;
    padding-bottom: .5833333333rem;
    margin-top: .3888888889rem;
    margin-bottom: 1.3888888889rem;
    min-width: 2.6666666667rem;
    padding-right: 1.5555555555rem;
    padding-left: 1.5555555555rem;
    font-size: .7222222222rem;
    color: #fff;
    background-color: #35b9ac;
    border-color: transparent;
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    border-width: .1111111111rem;
    border-style: solid;
    border-radius: .1666666667rem;
    outline: 0;
    -webkit-transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    transition: background-color 150ms,border-color 150ms,color 75ms ease-out,box-shadow 150ms;
    font-weight: 500 !important;
    letter-spacing: .1em;
	font-style: normal;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 13px;
    cursor: pointer;
}

.prov_text p {
    color: #364141;
    text-align: left;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
    line-height: 1.6em;
	margin-bottom: 15px;
	margin-top: 25px;
}


#prov_img {
	text-align:center;
	margin-left: 0px;
	margin-top: 60px;
}

.value-pro {
	padding: 4px;
	text-align:center;
	color:#000;
	font-size:20px;
	font-weight:500;
	background-color: #fff;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	margin-bottom: 20px;
}

.value-pro p {
	padding: 10px 7px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 700;
}

.listing_padd1 {
    padding: 15px 15px 15px 0px;
    margin: 35px 0;
}

.our-entrepreneur .span12 {
    display: none !important;
}
.listing-img{width:100%;}



@media (max-width:480px) {
.content_text p {
    font-size: 16px;
	text-align: center;
}

.col-md-6.col-sm-7.col-xs-7.nopadding.textstyle {
    margin-top: -10px;
}

.col-md-6.col-sm-7.col-xs-7.nopadding.textstyle a {
    line-height: 1.2em;
}

.menubar .icon {
    margin: 0 10px !important;
}

.contentright h3 {
    font-size: 16px;
}

.content_btn p {
    margin-top: 0px;
}

#latest_padd {
	margin-top: 0px;
}

h2.list_marg {
    font-size: 20px;
}

.latest_text {
    font-size: 14px;
}

p.datestyle {
    margin-bottom: 10px;
}

.teampad_rt {
    padding-right: 0px;
}

.team_padd_1 {
    padding: 0px 20px;
    margin: 20px 0;
}

.team_title {
    text-align: center;
    font-size: 30px;
}

.team_text {
    font-size: 15.5px;
    line-height: 1.5em;
    padding: 20px 0px;
    text-align: center;
	margin-bottom:0px !important;
}

.team_left {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

/*.team_full {
	padding-left: 0px !important;
	padding-right: 0px !important;
}*/

.unordered_list {
    font-size: 14.5px;
    text-align:left;
    padding-right: 0px;
}

.team_left {
    margin-bottom: 10px;
}

#cost_text {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.fund_lft {
	text-align:center;
}

.team_padd {
    padding: 0px 15px;
}

.fund_list {
    font-size: 14.5px;
    text-align: left;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-right: 0px;
}

i.btn-default_box {
    margin-top: 0px !important;
}

.sub_list li {
    text-align: left;
    font-size: 14px;
    margin-top: 7px;
}

.pil_rt {
    padding-right: 0px;
}

.team_padd1 {
    padding: 0px 15px;
    margin: 44px 0;
}

.pilot {
    text-align: center;
}

.pilot_list {
    margin-bottom: 0.5em;
    font-size: 14.5px;
    text-align:left;
	padding-right: 0px;
}

.prov_span {
    margin-top: 0px;
}

.teamservice {
    margin-top: 40px;
    margin-bottom: 40px;
}

.pilothead {
    margin-bottom: 40px;
    margin-top: 40px;
}

.prov_space {
    margin-bottom: 60px;
}



.eco_list {
    font-size: 14px;
}

.our-entrepreneur .span12 {
    display: none !important;
}

.list_head {
    font-size: 18px;
}

.listing_padd1.pil_rt {
    padding: 15px 20px;
}

.stButton {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

div.pull-right {
    margin-left: 0px;
	margin-top: 20px !important;
}

.cms-content p {
    text-align: justify;
}

.blog_space {
    padding: 0px;
    height: 88em;
}

.blogs_bg {
    height: 800px;
}

.blog_1 {
	margin-bottom: 15px;
}

.blog_2 {
	margin-bottom: 15px;
}

.list_head {
    margin-bottom: 10px;
	margin-top: 15px;
}

.new_title {
    margin-bottom: 0px !important;
}

.latest_parafc p {
    padding-top: 5px;
    padding-bottom: 0px;
}}

@media (min-width:481px) and (max-width: 767px) {
.sub_banner{margin-top:40px;}
.subpage_title{padding-top:75px!important;font-size: 1.7rem!important;}
.sub_head {
    font-size: 15px!important;
}
.content_text p {
    font-size: 16px;
}

div#follow_lan {
    width: 46%;
    float: left;
    margin: 0 10px;
}

.latest_parafc p {
    padding-top: 5px;
    padding-bottom: 0px;
}

.content_btn p {
    margin-top: 0px;
}

#latest_padd {
	margin-top: 0px;
}

h2.list_marg {
    font-size: 24px;
}

.latest_text {
    font-size: 14px;
}

.teampad_rt {
    padding-right: 0px;
}

.team_padd_1 {
    padding: 0px 20px;
    margin: 0px 0;
}

.provider-mbe {
    width: 50%;
    float: left;
}

.team_title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

#new_module {
	padding-left: 0px;
	padding-right: 0px;
}

.col-md-3.col-sm-6.provider-mbe {
    margin-top: 50px;
}

.bg_text {
    margin-top: 15px;
}

.team_text {
    font-size: 19px;
    line-height: 1.5em;
    text-align: center;
}

.unordered_list {
    font-size: 16px;
    text-align: left;
}

#cost_text {
    margin-top: 1em;
    margin-bottom: 1.5em;
}

.fund_lft {
    padding-left: 0px !important;
}

.col-md-2.col-xs-4.team_left {
    width: 100px;
    margin-left: 0px;
}

.premium_left {
    margin-left: 0px !important;
}

.team_padd {
    padding: 0px 15px;
}

#team_left {
    margin-left: 0px;
	margin-top: 0px;
}

.team_title2 {
    margin-top: 0px;
    text-align: center;
}

#img_right {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 35px;
}

div#img_right img {
    width: 100%;
}

.fund_list {
    font-size: 16px;
    text-align: left;
}

.pro_header {
    font-size: 20px;
}

.pro_title1 {
    margin-top: 0px;
    font-size: 20px;
}

#img_left {
    padding-left: 0px;
    padding-right: 0px;
}

div#img_left img {
    width: auto;
}

.container.full_width {
    width: auto !important;
}

.listing-img {
    width: 70px;
}

.team_title4.fund_title {
    margin: 40px !important;
}

.sub_list li {
    text-align: left;
    font-size: 16px;
    margin-top: 7px;
}

.pil_rt {
    padding-right: 0px;
}

.team_padd1 {
    padding: 0px 15px;
    margin: 44px 0;
}

.pilot {
    text-align: center;
}

.pilot_list {
    margin-bottom: 0.5em;
    font-size: 16px;
    text-align: left;
}

.prov_span {
    margin-top: 0px;
}

.teamservice {
    margin-top: 40px;
    margin-bottom: 40px;
}

.pilothead {
    margin-bottom: 0px;
    margin-top: 40px;
}

.blog_4 {
    margin: 0 15px;
}

.blog_1 {
    margin: 0 15px;
}

.blog_2 {
    margin: 0 15px;
}

.blog_3 {
    margin: 0 15px;
}

.cause_back img {
    margin-top: 10px !important;
}

.partner-img3 {
    padding-top: 10px;
}

.prov_space {
    margin-bottom: 60px;
}

.footer_info p {
    text-align: center;
    margin-top: 10px;
}

.eco_list {
    font-size: 14px;
}

.our-entrepreneur .span12 {
    display: none !important;
}

.list_head {
    font-size: 14px;
    padding-top: 20px;
}

i.btn-default_box {
    margin-top: 30px !important;
}

.fc-space-new {
    margin: 60px 0px 0px 0px !important;
}

.pilothead_venture {
    margin-bottom: 70px !important;
}

.listing_bg1 {
    margin: 15px;
}

.listing_bg2 {
    margin: 15px;
}

.value-pro {
    margin: 10px;
}

.bg_venture p {
    margin-top: 30px;
}

.listing_padd1.pil_rt {
    padding: 15px;
}

.blog_space {
    padding: 15px 0px;
}

.blogs_bg {
    height: auto;
}

.blog_1 {
	margin-bottom: 15px;
}

.blog_2 {
	margin-bottom: 15px;
}

.list_head {
    margin-bottom: 10px;
	margin-top: 0px;
}

.container {
    padding: 0 15px;
}

#slider {
    margin-top: 0px !important;
}

.steps4 h2 {
    font-size: 3.4rem;
}

.stps img {
    width: auto;
	margin-top: 10px;
}

.steps4 {
    margin-bottom: 20px;
}

.contstyle {
    border-bottom: 0px solid #00a651;
}

.contentright {
    margin-top: 30px;
}

.contentright h2 {
    font-size: 20px;
}

.col-md-12.contstyle {
	padding: 0 30px;
}

.more_btn  {
	padding: 0 30px;
}

.contentright h3 {
    font-size: 16px;
}

.col-md-4.col-xs-3.cont_info {
    max-width: 16%;
}

.team_title1 {
    text-align: center;
}

.unordered_list.enquiry_btn {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.team_title5 {
    text-align: center;
}

.team_title4 {
    font-size: 28px !important;
    text-align: center;
    margin: 15px !important;
}

.bg_text1 p {
    padding: 0px 10px;
    text-align: center;
    font-size: 17px;
    line-height: 1.6em;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
}

.partner-img2 {
    padding-top: 0px;
}

#client_space {
    text-align: center;
}

.author {
    font-size: 16px !important;
    margin-top: 10px !important;
}

.free {
    font-size: 16px !important;
}}


@media (min-width:1400px) and (max-width: 2000px) {
.grid_7 {
    width: 1200px !important;
}

.contentright h3 {
    font-size: 12px;
}

.contentright p {
    font-size: 13.5px;
    margin-bottom: 5px;
}

.contentright {
    padding: 15px;
}

.latest_text {
    font-size: 20px;
    line-height: 1.5em;
}

.team_title {
    font-size: 3.58rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 0rem;
    padding-bottom: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-pro p {
	font-size: 18px;
}
 
.team_text {
    font-size: 16px;
}

.unordered_list {
    font-size: 16px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 18px;
    line-height: 0.5em;
}

.pilot b {
    font-size: 20px;
}

.pilot_list {
    font-size: 16px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.bg_text h6 {
    font-size: 1.8rem;
}

.listing_padd1 {
    margin: 10px 0;
}

.venture-img {
    width: 100% !important;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    font-size: 17px;
    line-height: 1.5em;
}

.listing-img {
    width: 100%;
}

#toTop {
    left: 62%;
}

.fc-space {
    margin: 80px 0px 0px 0px !important;
}

.team_title4 {
    line-height: 0 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.pro_header {
    font-size: 16px;
}

.pro-txt {
    font-size: 14px;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}

.fc-space-new {
    margin: 80px 0px 0px 0px !important;
}

.list_head {
    font-size: 14px;
}

.relevant_bg {
    margin: 0px 0px 0px 0px !important;
}

.pro-bg {
    margin: 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#relevant_txt {
    margin-top: 0px !important;
}

#other_txt {
    margin-top: 20px;
    font-size: 18px;
}

#team_right {
    margin-top: 0px !important;
}

.pilothead_venture {
    margin: 0px 0px 0px 0px !important;
}

.blog_space {
    padding: 80px 80px 80px 80px;
    margin-top: 30px;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 300px 0px 300px !important;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

@media (min-width:2001px) and (max-width: 2300px) {
.grid_7 {
    width: 1400px !important;
}

.contentright {
    padding: 15px;
}

.contentright h3 {
    font-size: 12px;
    line-height: 1.5em;
}

.contentright p {
    font-size: 13.5px;
}

.contentright h2 {
    font-size: 22px;
}

.latest_text {
    font-size: 24px;
    line-height: 1.5em;
}

.team_title {
    font-size: 3.388889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 0rem;
    padding-bottom: 4.5rem;
    margin-bottom: 1.5rem;
}

.team_text {
    font-size: 18px;
}

.unordered_list {
    font-size: 17px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 20px;
    line-height: 0.5em;
}

.pilot b {
    font-size: 20px;
}

.pilot_list {
    font-size: 16px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.listing_padd1 {
    margin: 49px 0;
}

#toTop {
    left: 65%;
}

.pro_header {
    font-size: 18px;
}

.eco_list {
    font-size: 24px;
    margin-top: 1.5em;
}

.pro_title {
    font-size: 16px;
    margin-top: 15px;
}

.pro_sub {
    font-size: 16px;
    margin-top: 10px;
}

.pro-txt {
    font-size: 16px;
}

.pro_read {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer_style ul li a {
    font-size: 16px;
    line-height: 1.5em;
}

.footer_style h3 {
    font-size: 16px;
}

.footer_style .text_deco span {
    font-size: 16px;
	line-height: 1.5em;
}

.text_deco a {
    font-size: 16px;
    line-height: 1.5em;
}

.bg_text h6 {
    font-size: 2rem;
}

.footer_info p {
    font-size: 16px;
}

.listing_padd1 {
    margin: 10px 0;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    line-height: 1.7em;
}

.venture-img {
    width: 100% !important;
}

.listing-img {
    width: 100%;
}

.team_title4 {
    line-height: 0 !important; 
    font-size: 26px !important;
	font-weight: 600 !important;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}

.fc-space-new {
    margin: 80px 0px 0px 0px !important;
}

#team_right {
    margin-top: 0px !important;
}

.pilothead_venture {
    margin: 0px 0px 0px 0px !important;
}

.blog_space {
    padding: 80px 80px 80px 80px;
    margin-top: 50px;
}

.relevant_bg {
    margin: 0px 300px 0px 300px !important;
}

.pro-bg {
    margin: 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#relevant_txt {
    margin-top: 5px !important;
}

#other_txt {
    margin-top: 30px;
    font-size: 18px;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 300px 0px 300px !important;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

@media (min-width:2301px) and (max-width: 2500px) {
.grid_7 {
    width: 1600px !important;
}

.contentright {
    padding: 15px;
}

.contentright h3 {
    font-size: 12px;
    line-height: 1.5em;
}

.contentright p {
    font-size: 14px;
}

.contentright h2 {
    font-size: 20px;
}

.latest_text {
    font-size: 26px;
    line-height: 1.5em;
}

.contentright h2 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.team_title {
    font-size: 2.388889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
}

.team_text {
    font-size: 20px;
}

.unordered_list {
    font-size: 18px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 22px;
    line-height: 2em;
}

.pilot b {
    font-size: 22px;
}

.bg_text h6 {
    font-size: 1.1rem;
}

.pilot_list {
    font-size: 18px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.listing_padd1 {
    margin: 49px 0;
}

#toTop {
    left: 69%;
}

.pro_header {
    font-size: 20px;
}

.eco_list {
    font-size: 26px;
    margin-top: 1.5em;
}

.pro_title {
    font-size: 18px;
    margin-top: 15px;
}

.pro_sub {
    font-size: 18px;
    margin-top: 10px;
}

.pro-txt {
    font-size: 16px;
}

.pro_read {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer_style ul li a {
    font-size: 16px;
    line-height: 1.5em;
}

.footer_style h3 {
    font-size: 16px;
}

.footer_style .text_deco span {
    font-size: 16px;
	line-height: 1.5em;
}

.text_deco a {
    font-size: 16px;
    line-height: 1.5em;
}

.footer_info p {
    font-size: 16px;
}

.list_head {
    font-size: 20px;
}

.bg_content h5 {
    font-size: 20px;
}

.fc-space {
    margin: 80px 400px 80px 400px !important;
}

.team_title4 {
    line-height: 0 !important; 
    font-size: 26px !important;
	font-weight: 600 !important;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}

.fc-space-new {
    margin: 80px 400px 0px 400px !important;
}

.bg_text1 h6 {
    font-size: 1.1rem !important;
}

#team_right {
    margin-top: 35px !important;
}

.pilothead_venture {
    margin: 0px 400px 0px 400px !important;
}

.blog_space {
    padding: 80px 80px 0px 80px;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    line-height: 2em;
}

.relevant_bg {
    margin: 0px 400px 0px 400px !important;
}

.pro-bg {
    margin: 0px 0px 0px 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#relevant_txt {
    margin-top: 5px !important;
}

#other_txt {
    margin-top: 30px;
    font-size: 18px;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 400px 0px 400px !important;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

@media (min-width:2501px) and (max-width: 2800px) {
.grid_7 {
    width: 1800px !important;
}

.contentright {
    padding: 15px;
}

.contentright h3 {
    font-size: 13px;
    line-height: 1.5em;
}

.contentright p {
    font-size: 12.5px;
}

.contentright h2 {
    font-size: 24px;
}

.latest_text {
    font-size: 28px;
    line-height: 1.5em;
}

.team_title {
    font-size: 2.388889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
}

.team_text {
    font-size: 20px;
}

.unordered_list {
    font-size: 20px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 22px;
    line-height: 2em;
}

.pilot b {
    font-size: 24px;
}

.pilot_list {
    font-size: 20px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.listing_padd1 {
    margin: 49px 0;
}

#toTop {
    left: 72%;
}

.pro_header {
    font-size: 20px;
}

.eco_list {
    font-size: 28px;
    margin-top: 1.5em;
}

.pro_title {
    font-size: 18px;
    margin-top: 15px;
}

.pro_sub {
    font-size: 16px;
    margin-top: 10px;
}

.pro-txt {
    font-size: 16px;
}

.pro_read {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer_style ul li a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_style h3 {
    font-size: 18px;
}

.footer_style .text_deco span {
    font-size: 18px;
	line-height: 1.5em;
}

.text_deco a {
    font-size: 18px;
    line-height: 1.5em;
}

.bg_text {
    margin-top: 25px !important;
}

#team_right {
    margin-top: 45px !important;
}

.footer_info p {
    font-size: 16px;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    line-height: 2em;
}

.team_padd_1 {
    margin: 10px 0;
}

.list_head {
    font-size: 18px;
}

.bg_content h5 {
    font-size: 22px;
}

.fc-space {
    margin: 80px 0px 80px 0px !important;
}

.team_title4 {
    line-height: 0 !important; 
    font-size: 26px !important;
	font-weight: 600 !important;
}


.fc-space-new {
    margin: 80px 0px 0px 0px !important;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}


.pilothead_venture {
    margin: 0px 0px 80px 0px !important;
}

.bg_text1 h6 {
    font-size: 1.3rem !important;
}

.blog_space {
    padding: 80px;
}

img.team-ser {
    width: 100%;
}

div#img_right img {
    width: 100%;
}

div#img_left img {
    width: 100%;
}

.relevant_bg {
    margin: 0px 500px 0px 500px !important;
}

.pro-bg {
    margin: 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#relevant_txt {
    margin-top: 0px !important;
}

#other_txt {
    margin-top: 30px;
    font-size: 18px;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 500px 0px 500px !important;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

@media (min-width:2801px) and (max-width: 3000px) {
.grid_7 {
    width: 2000px !important;
}

.contentright {
    padding: 25px;
}

.contentright h3 {
    font-size: 12px;
    line-height: 1.5em;
}

.contentright p {
    font-size: 11px;
}

.contentright h2 {
    font-size: 26px;
}

.latest_text {
    font-size: 30px;
    line-height: 1.5em;
}

.team_title {
    font-size: 2.388889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
}

.team_text {
    font-size: 22px;
}

.unordered_list {
    font-size: 20px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 24px;
    line-height: 2em;
}

.pilot b {
    font-size: 26px;
}

.pilot_list {
    font-size: 20px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.listing_padd1 {
    margin: 49px 0;
}

#team_right {
    margin-top: 60px !important;
}

.bg_text1 h6 {
    font-size: 1.3rem !important;
}

#toTop {
    left: 75%;
}

.pro_header {
    font-size: 20px;
}

.eco_list {
    font-size: 30px;
    margin-top: 1.5em;
}

.pro_title {
    font-size: 18px;
    margin-top: 15px;
}

.pro_sub {
    font-size: 16px;
    margin-top: 10px;
}

.pro-txt {
    font-size: 16px;
}

.pro_read {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer_style ul li a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_style h3 {
    font-size: 18px;
}

.footer_style .text_deco span {
    font-size: 18px;
	line-height: 1.5em;
}

.text_deco a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_info p {
    font-size: 18px;
}

.list_head {
    font-size: 24px;
}

.bg_content h5 {
    font-size: 24px;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    line-height: 1.8em;
}

.fc-space {
    margin: 80px 600px 80px 600px !important;
}

.team_title4 {
    line-height: 0 !important; 
    font-size: 24px !important;
	font-weight: 600 !important;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}

.fc-space-new {
    margin: 80px 600px 0px 600px !important;
}

.pilothead_venture {
    margin: 0px 600px 0px 600px !important;
}

.team_padd_1 {
    margin: 5px 0;
}

.blog_space {
    padding: 80px 80px 0px 80px;
}

.relevant_bg {
    margin: 0px 600px 0px 600px !important;
}

.pro-bg {
    margin: 0px 0px 0px 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#relevant_txt {
    margin-top: 5px !important;
}

#other_txt {
    margin-top: 30px;
    font-size: 18px;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 600px 0px 600px !important;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

@media (min-width:3001px) and (max-width: 3900px) {
.grid_7 {
    width: 2000px !important;
}

.contentright {
    padding: 25px;
}

.contentright h3 {
    font-size: 12px;
    line-height: 1.5em;
}

.contentright p {
    font-size: 11px;
}

.contentright h2 {
    font-size: 26px;
}

.latest_text {
    font-size: 30px;
    line-height: 1.5em;
}

.team_title {
    font-size: 2.388889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
}

.team_text {
    font-size: 22px;
}

.unordered_list {
    font-size: 20px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 24px;
    line-height: 2em;
}

.pilot b {
    font-size: 26px;
}

.pilot_list {
    font-size: 20px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.listing_padd1 {
    margin: 49px 0;
}

#team_right {
    margin-top: 60px !important;
}

.bg_text1 h6 {
    font-size: 1.3rem !important;
}

#toTop {
    left: 75%;
}

.pro_header {
    font-size: 20px;
}

.eco_list {
    font-size: 30px;
    margin-top: 1.5em;
}

.pro_title {
    font-size: 18px;
    margin-top: 15px;
}

.pro_sub {
    font-size: 16px;
    margin-top: 10px;
}

.pro-txt {
    font-size: 16px;
}

.pro_read {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer_style ul li a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_style h3 {
    font-size: 18px;
}

.footer_style .text_deco span {
    font-size: 18px;
	line-height: 1.5em;
}

.text_deco a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_info p {
    font-size: 18px;
}

.list_head {
    font-size: 24px;
}

.bg_content h5 {
    font-size: 24px;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    line-height: 1.8em;
}

.fc-space {
    margin: 80px 1100px 80px 1100px !important;
}

.team_title4 {
    line-height: 0 !important; 
    font-size: 24px !important;
	font-weight: 600 !important;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}

.fc-space-new {
    margin: 80px 1100px 0px 1100px !important;
}

.pilothead_venture {
    margin: 0px 1100px 0px 1100px !important;
}

.blog_space {
    margin: 0px 1100px 0px 1100px !important;
}

.team_padd_1 {
    margin: 5px 0;
}

.blog_space {
    padding: 80px 80px 80px 80px;
}

.relevant_bg {
    margin: 0px 1100px 0px 1100px !important;
}

.pro-bg {
    margin: 0px 0px 0px 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#other_txt {
    margin-top: 30px;
    font-size: 18px;
}

#relevant_txt {
    margin-top: 33px !important;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 1100px 0px 1100px !important;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

@media (min-width:3901px) and (max-width: 5800px) {
.grid_7 {
    width: 2000px !important;
}

.contentright {
    padding: 15px;
}

.contentright h3 {
    font-size: 6px;
    line-height: 1.5em;
}

.contentright p {
    font-size: 5px;
}

.contentright h2 {
    font-size: 26px;
}

.latest_text {
    font-size: 30px;
    line-height: 1.5em;
}

.team_title {
    font-size: 2.388889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
}

.team_text {
    font-size: 22px;
}

.unordered_list {
    font-size: 20px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 24px;
    line-height: 2em;
}

.pilot b {
    font-size: 26px;
}

.pilot_list {
    font-size: 20px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.listing_padd1 {
    margin: 49px 0;
}

#team_right {
    margin-top: 60px !important;
}

.bg_text1 h6 {
    font-size: 1.3rem !important;
}

#toTop {
    left: 75%;
}

.pro_header {
    font-size: 20px;
}

.eco_list {
    font-size: 30px;
    margin-top: 1.5em;
}

.pro_title {
    font-size: 18px;
    margin-top: 15px;
}

.pro_sub {
    font-size: 16px;
    margin-top: 10px;
}

.pro-txt {
    font-size: 16px;
}

.pro_read {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer_style ul li a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_style h3 {
    font-size: 18px;
}

.footer_style .text_deco span {
    font-size: 18px;
	line-height: 1.5em;
}

.text_deco a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_info p {
    font-size: 18px;
}

.list_head {
    font-size: 14px;
}

.bg_content h5 {
    font-size: 24px;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    line-height: 1.8em;
}

i.btn-default_box {
    margin-bottom: 35px;
    margin-top: 75px;
}

.fund_list {
    line-height: 0em;
}

.fc-space {
    margin: 80px 0px 80px 0px !important;
}

.team_title4 {
    line-height: 0 !important; 
    font-size: 24px !important;
	font-weight: 600 !important;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}

.fc-space-new {
    margin: 80px 0px 0px 0px !important;
}

.pilothead_venture {
    margin: 0px 0px 0px 0px !important;
    padding-bottom: 50px;
}

.team_padd_1 {
    margin: 5px 0;
}

.blog_space {
    padding: 80px 80px 80px 80px;
}

.relevant_bg {
    margin: 0px 1200px 0px 1200px !important;
}

.pro-bg {
    margin: 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#other_txt {
    margin-top: 30px;
    font-size: 18px;
}

#relevant_txt {
    margin-top: 33px !important;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 2000px 0px 2000px !important;
}

.menubar .container {
    width: 1600px !important;
}

.container {
    width: 1600px !important;
}

.spon_width {
    padding: 0px 1000px;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

@media (min-width:5801px) and (max-width: 7700px) {
.grid_7 {
    width: 2000px !important;
}

.contentright {
    padding: 15px;
}

.contentright h3 {
    font-size: 6px;
    line-height: 1.5em;
}

.contentright p {
    font-size: 5px;
}

.contentright h2 {
    font-size: 26px;
}

.latest_text {
    font-size: 30px;
    line-height: 1.5em;
}

.team_title {
    font-size: 2.388889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
}

.team_text {
    font-size: 22px;
}

.unordered_list {
    font-size: 20px;
    line-height: 1.5em;
}

.fund_list {
    font-size: 24px;
    line-height: 2em;
}

.pilot b {
    font-size: 26px;
}

.pilot_list {
    font-size: 20px;
    line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.3em;
}

.listing_padd1 {
    margin: 49px 0;
}

#team_right {
    margin-top: 60px !important;
}

.bg_text1 h6 {
    font-size: 1.3rem !important;
}

#toTop {
    left: 75%;
}

.pro_header {
    font-size: 20px;
}

.eco_list {
    font-size: 30px;
    margin-top: 1.5em;
}

.pro_title {
    font-size: 18px;
    margin-top: 15px;
}

.pro_sub {
    font-size: 16px;
    margin-top: 10px;
}

.pro-txt {
    font-size: 16px;
}

.pro_read {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer_style ul li a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_style h3 {
    font-size: 18px;
}

.footer_style .text_deco span {
    font-size: 18px;
	line-height: 1.5em;
}

.text_deco a {
    font-size: 18px;
    line-height: 1.5em;
}

.footer_info p {
    font-size: 18px;
}

.list_head {
    font-size: 24px;
}

.bg_content h5 {
    font-size: 24px;
}

.bg_text1 .title {
    font-size: 2rem;
}

.bg_text1 p {
    line-height: 1.8em;
}

.fc-space {
    margin: 80px 3000px 80px 3000px !important;
}

.team_title4 {
    line-height: 0 !important; 
    font-size: 24px !important;
	font-weight: 600 !important;
}

.team_title4.fund_title {
	    font-size: 36px !important;
		font-weight: 500 !important;
}

.fc-space-new {
    margin: 80px 3000px 0px 3000px !important;
}

.pilothead_venture {
    margin: 0px 3000px 0px 3000px !important;
}

.team_padd_1 {
    margin: 5px 0;
}

.blog_space {
    padding: 80px 80px 0px 80px;
}

.relevant_bg {
    margin: 0px 3000px 0px 3000px !important;
}

.pro-bg {
    margin: 0px 0px 0px 0px !important;
}

.head_title h2 {
    padding-top: 5rem;
}

#other_txt {
    margin-top: 30px;
    font-size: 18px;
}

#relevant_txt {
    margin-top: 33px !important;
}

.head_title h2 {
    font-size: 2.5rem;
}

.teamser-pro {
    margin: 0px 3000px 0px 3000px !important;
}

.menubar .container {
    width: 1700px !important;
}

.container {
    width: 1700px !important;
}

.footer_info .span12 { 
	margin-left: 30px !important; 
}}

.steps-hd p a{color:#000;}
.steps4 h2 {
    margin-top: 0;
    color: #162020;
    line-height: 0.9;
    font-size: 4.4rem;
    font-weight: 600;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 4rem;
    margin-bottom: .0rem;text-align:center; text-transform:inherit;vertical-align: middle;
}
.steps4{margin-left: 0 !important;margin-bottom: 40px;}
.steps4 h2 span{color: #009977;font-size:6.5rem;font-weight: 600;vertical-align: initial;padding-bottom: 1rem;}
.steps4 p{font-size: 26px; text-align:center;font-weight: 400;color:#162020; margin-top: 15px;}
.stp5{background-color: #ebfffb;}

.home_page_subheading {
    margin-top: 0;
    color: #162020;
    line-height: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 0rem;
    margin-bottom: 1rem;
	text-align: center;
}

.provbg{background-color: #f4f4f4;}

.login a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .7222222222rem;
    margin-left: auto;
	margin-right: 20px;
	font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 13px;
}

h4.icon._arrow._after span {
    color: #009977;
}

#tfnewsearch{
	padding:5px 0 0;
}

input.tftextinput {
    width: 50%;
}

.tftextinput{
	margin: 0;
	padding: 5px 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	border:1px solid #0076a3; border-right:0px;
	border-top-left-radius: 5px 5px;
	border-bottom-left-radius: 5px 5px;
}

.tfbutton {
	margin: 0;
	padding: 6px 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	border: solid 1px #009977; border-right:0px;
	background: #009977;
	background: -webkit-gradient(linear, left top, left bottom, from(#009977), to(#009977));
	background: -moz-linear-gradient(top,  #009977,  #009977);
	border-top-right-radius: 5px 5px;
	border-bottom-right-radius: 5px 5px;
	margin-top: -11px;
}

.tfbutton:hover {
	text-decoration: none;
	background: #199419;
	background: -webkit-gradient(linear, left top, left bottom, from(#199419), to(#199419));
	background: -moz-linear-gradient(top,  #199419,  #199419);
}

.tfbutton::-moz-focus-inner {
  border: 0;
}

.tfclear{
	clear:both;
}

.fc-space {
	margin: 50px 0px 30px 0px;
}

.fc-space-new {
	margin: 80px 0px 0px 0px;
}

.col._span-12 h2 {
    font-size: 1.388889rem;
    font-weight: 600;
	text-align: right;
}

.team_title4 {
    color: #009977;
    line-height: 0.25;
    font-size: 3.2rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.bg_text {
    margin-top: 0px;
}

.bg_text1 h6 {
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 1.5em;
    color: #1f1f1f;
    text-transform: inherit;
    margin-bottom: 0px;
    padding-left: 32px;
	margin-top: 0px;
}

.team_padd1 {
	padding: 0px;
	margin: 0px;
}

.prov_space {
    margin-bottom: 80px;
}

.pilothead_venture {
	margin-bottom: 75px;
}

#team_right {
    margin-top: 20px;
}

.venture-img {
    width: 100%;
}

.span6.team_padd1.pil_rt .team_title4 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
	font-weight: 600 !important;
}

@media (min-width: 1400px) {
.footer_info .span12 { 
	margin-left: 0px; 
}}
@media (min-width: 1024px){
ul.dropdown-menu.new {
    background-color: #fff;
}
}


.menu_icon a {
	color: #fff !important;
}

.menu_icon1 a {
	border: 2px solid #fff !important;
	border-radius: 3px;
}

.menu_icon1 a:hover {
	background: #fff;
	color: #000 !important;
}

ul.dropdown-menu.new li {
    display: inline;
}

.dropdown-menu > li > a {
	border-bottom: #32bc32 1px solid;
}

.dropdown-menu > li > a:hover {
	color: #162020 !important;
}

.menubar .icon {
	margin: 0 5px;
}

@media (max-width: 480px) {
.wrapper-breadcrumbs {
    margin-top: 70px;
}

.menu_icon1 a:hover {
    background: #009977 !important;
    color: #fff !important;
    border-radius: 5px;
}

.menu_icon1 a {
    border-radius: 5px !important;
}

.main img {
	width: 80%;
}

.wrapper2 {
    margin: 0px 0;
}

#slider {
    margin-top: 0px !important;
}
.bg_text1 .title {
    text-align: center;
    font-size: 24px !important;
    font-weight: 600;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 1.4em;
    color: #1f1f1f;
    text-transform: inherit;
    margin-bottom: 25px;
    padding-left: 0px !important; 
}

.col-md-12.steps4 {
    padding-left: 0px;
    padding-right: 0px;
}}

.menu_search {
	width: 308px;
}

#content .title {
	font-size: 3rem;
}

.unordered_list a {
	/* color: #364146 !important; */
}

ul.sub_list a {
	color: #364146 !important;
}

li#menu-item-526 input {
    margin-left: 15px;
    width: 64%;
    margin-top: 5px;
	font-size: 14px;
	font-weight: 400;
}

/*---------------Latest profiles right side---------------------*/
#lp_rightside{ background-color:#374142;}

@media (max-width: 480px) {
.steps4 h2{
	font-size: 24px;
    line-height: 30px;
}	
.steps4 p {
	font-size: 18px;
	line-height: 27px;
	padding-top: 0px;
}	
.steps4 {
	margin-bottom:0px;
}
.steps-hd a {
	font-size:18px;
}
.stps p a {
	font-size:16px;
}
.stps center {
	margin-top:20px;
}	
.team_title1 {
    margin-top: 7px;
    color: #162020;
    line-height: 1.25;
    font-size: 3.1888888889rem;
    font-weight: 400;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-top: 0.5rem;
}
.bg_text1 p{
    font-size: 16.5px;
	text-align: center;
	padding: 0px !important;
}

.content_btn p {
    text-align: center;
}
	
.bg_text1 .title {
    margin-bottom: 30px!important; 
}	
.value-pro {
	font-size:24px;
	margin-bottom: 20px;
}
.fc-space {
	margin:50px 0px 0px 0px!important;
}
.team-ser1{
	padding:0px 0px!important;
}
.team_title1 {
	margin-top:40px;
	text-align:center;
}
.team_title4 {
	margin-top:35px 0px 10px 0px;
	
}
.team_title5 {
	padding:0px 12px;
	text-align:center;
}
.span6.team_padd1.pil_rt .team_title4 {
	text-align:center;
	font-size:22px;
	font-weight:500!important;
	padding:0px 12px;
}

.bg_venture p {
    text-align: center !important;
    font-size: 15.5px !important;
}

li.fc-prof {
    margin-top: 0px !important;
}

#arrow_right {
    padding-left: 0px;
}

.container.full_width {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

.prov_space{
	margin-bottom:50px;
}
.bg_text h6 {
	text-align:center;
}
.team_title {
	margin-bottom: 0px !important;
}

.bg_text1 h6 {
    text-align: center;
    font-size: 15.5px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 25px;
}

.pilothead_venture p {
    font-size: 16px;
    margin-top: 25px;
}
.sub_list li {
	font-size:14px;
	margin-top: 1.2em;
}
.sub_banner {
    margin-top: 0px;
    height: 100px !important;
    background-size: contain !important;
}

a.button._secondary.js-track__topNavCTA {
    padding: 10px 15px !important;
}

.subpage_title{padding-top:40px!important;font-size: 1.7rem!important;}
.sub_head {
    font-size: 15px!important;
}

.stps img {
    width: 65%;
}}

.hint-img{ background-image:url(../css/images/hint1.png); background-repeat:no-repeat; height:30px; /*float: right;margin-top: 8px;*/
border-bottom: none !important;margin-top: 5px; width: 100%;}

.tolltip-inner {
    max-width: 500px;
}

.signup {top:65%!important;right:6%!important; text-align:right !important;}

.signup a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-right: 15px;
}

.signup1{top:60%!important;left:7%!important; text-align:left !important;}

.signup1 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-left: 15px;
}

.signup2{top:65%!important;right:6%!important; text-align:right !important;}

.signup2 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-right: 15px;
}

.signup3{top:62%!important;left:6.5%!important; text-align:left !important;}

.signup3 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-left: 15px;
}

.signup4{top:68%!important;right:6%!important; text-align:right !important;}

.signup4 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-right: 15px;
}

.signup5{top:58%!important;left:7%!important; text-align:left !important;}

.signup5 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-left: 15px;
}

.signup6{top:55%!important;right:6%!important; text-align:right !important;}

.signup6 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-right: 15px;
}

.signup7{top:55%!important;left:7%!important; text-align:left !important;}

.signup7 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-left: 15px;
}

.signup8{top:65%!important;right:6%!important; text-align:right !important;}

.signup8 a {
    padding: 7px 15px !important;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 18px;
	color: #fff;
    margin-right: 15px;
}

@media (max-width: 480px){
.carousel-caption {
    position: absolute !important;
}

a.button._secondary.js-track__topNavCTA {
    margin-top: 5px;
    margin-bottom: 5px;
}

.button_wbbox {
    margin-top: 15px;
}

.dashboard-member-menu {
    margin-top: 0px !important;
    margin-bottom: 30px;
}

.signup{top:58%!important;right:6%!important;}
.signup a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup1{top:58%!important;left:7%!important; text-align:left !important;}
.signup1 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup2{top:58%!important;right:6%!important; text-align:right !important;}
.signup2 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup3{top:58%!important;left:6.5%!important; text-align:left !important;}
.signup3 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup4{top:58%!important;right:6%!important; text-align:right !important;}
.signup4 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup5{top:58%!important;left:7%!important; text-align:left !important;}
.signup5 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup6{top:58%!important;right:6%!important; text-align:right !important;}
.signup6 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup7{top:58%!important;left:7%!important; text-align:left !important;}
.signup7 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}

.signup8{top:58%!important;right:6%!important; text-align:right !important;}
.signup8 a{padding:4px 12px !important;border:2px solid #fff;font-size: 12px !important;}
}

.btm_rt {
    padding: 10px 0;
}

#myCarousel6  .icon-chevron-left1{margin-left: 120px;}  
#myCarousel6 .carousel-control {margin-top: -225px !important;}
.icon-chevron-left1 {
    background-position: -432px -72px;
    margin-left: 137px;
}
	
.img-circle {
    /*border-radius: 50%;
	margin-top: -30px;*/
	max-width: 100%;
    max-height: 100%;
}

.mycon.net_ht img {
    width: 60px;
    height: 60px;
	object-fit: contain;
	/*object-position: 50% 50%;*/
}


.mycon.net_wt img {
    width: auto;
    height: auto;
	object-fit: contain;
	/*object-position: 50% 50%;*/
}

.mycon.net_wtt img {
    width: auto;
    height: auto;
	object-fit: contain;
	/*object-position: 50% 50%;*/
}

.mycon.ex_ht img {
    width: 60px;
    height: 60px;
	object-fit: contain;
}

.mycon.con_compass img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mycon.con_compass_ex img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.img-circles {
    border-radius: 50%;margin-top: -300px;margin-bottom:100px; margin-right:200px;
	width: 150px;
    height: 150px;
}
.sub_banner{
	background-image:url(images/sub_banner.jpg);
    background-repeat:no-repeat;
   /*  padding: 90px 12px 90px 12px; */
	 height: 310px;
	     background-size: cover;
		     margin-bottom: 0px;

}
.sub_banner_radar{
	background-image:url(images/sub_banner_radar.jpg);
    background-repeat:no-repeat;
   /*  padding: 90px 12px 90px 12px; */
	 height: 310px;
	     background-size: cover;
		     margin-bottom: 20px;

}
.sub_head {
    font-size: 18px;
}
.subanner_head {
	background-color: rgba(0, 0, 0, 0.60);
    padding: 5px;
	font-weight: 400;
}	

.fc-prof {
    padding: 10px;
    background-color: #75ab3b;
    color: #fff;
}
.wrapper-breadcrumbs{
	 background:#e7e7e7;
	 border-bottom:1px solid #dedfe1;
}
::-webkit-scrollbar-thumb {
/*    border-radius: 12px;
    border: 4px solid rgba(255,255,255,0);
*/    background-clip: content-box;
    _background-color: #bfbfbf;
    background-color: #A0A0A0;
}
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
    background-color: #ffffff;
    border-radius: 10px;
}
::-webkit-scrollbar-corner {
    background-color: #e6e6e6;
}

.img-circle4 {
    border-radius: 50%;
}
.influ_head p {
    padding-top: 12px;
}


/*.influ_head img {
   border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: contain;
    object-position: 50% 50%;
}*/

.subcont_bg {
    margin-left: 0px!important;
    background-color: #fef5e6;
	margin-top: 0px;
	margin-bottom: 30px;	
}

.fundservice {
    margin-top: 30px;
}

.subcont_bg1 {
    margin-left: 0px!important;
    background-color: #effaff;
	margin-top: 20px;
	
}
.invite_top{
    padding-top: 40px;
}
.button._secondary:hover {
    color: #ffffff;
    background-color:#009977;
}
a.button._secondary.sec_bot {
    margin-bottom: 20px;
}
.event-menu-messagein a {color:#fff!important;}
.subpage_title {
   /*  margin-top: 20px;
	margin-bottom: 40px; */
    line-height: 1.25;
    font-size: 2.20rem;
    font-weight: 600;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;	
	text-align: center;
    color: #fff;
	padding-top: 124px;
}
#img_wt img{width:100%;}
.spon_bg{background-color:#fff;margin-top:30px;}
.wrp_bg{background-color:#eeeeee;padding-top:20px;}
.ey_num{
	border-radius:50%;
	border:1px solid #fff;
    width: 40px; height: 40px;
    margin-top: -40px;
    background-color: #77ab3d;
    color: #fff;
	font-size: 12px;
}
.ey_txt {
    padding-top: 11px;
	min-height: 48px;
}
.net_ht p {
    min-height: 55px;
	text-align: center;
}
.compass_ht p {
    min-height: 72px;
}
.mycon.ex_ht {
    min-height: 255px;
}

.mycon.net_wtt {
    min-height: 295px;
}

.web_result {
    background-color: #daffd6;
}
.p2-2 {
    padding:15px 0px 0px 0px;
}
a.btn-default_box.btn_trans {
    text-transform: capitalize;
}
.bootstrap-widget-header h3 {margin-top:8px;text-align:center;}
.relistings.rec_ht p {
    min-height: 38px;
}
.linkpro {
    min-height: 134px!important;
}

.team_title4 a center {
    margin-bottom: 20px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
	font-size: 26px;
}

.blog_1 {
    background-position-x: center !important;
}
.blog_2 {
    background-position-x: center !important;
}
.blog_3 {
    background-position-x: center !important;
}
.blog_4 {
    background-position-x: center !important;
}

#img_left {
	padding-left: 0px;
}

/* #img_right {
	padding-right: 0px;
} */

#slider .carousel-control {
    top: 40%;
}

button.btn.btn-success {
	margin-bottom: 0px;
}

#login-details-form label {
    display: block;
}

select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    height: 36px;
    background-color: #f9f9f9;
	border-radius: 3px;
}

#login-details-form {
	background-color: rgba(245, 245, 245, 0);
}

input {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    background-color: #f9f9f9;
	border-radius: 3px;
}

form#login-details-form h4 {
    color: #129d12;
	font-weight: 600;
}

.pull-right.btn.btn-success a {
    color: #fff;
}

.btn.btn-success.small a {
    color: #fff;
}

div#bull_board img {
    width: auto;
    height: auto;
}

.bull_text {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
	padding: 79px 0;
}

.spot_text {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
	padding: 59px 0;
}

.mycon_text {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
	padding: 76.5px 0;
}

.myextend_text {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
	padding: 74px 0;
}

.connectcom_text {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
	padding: 104px 0;
}

#directory_img img {
	width: auto;
	height: 139px;
}

.pull-right.btn.btn-success a:hover {
    color: #fff !important;
}

.btn.btn-success.small a:hover {
    color: #fff !important;
}

.btn-success {
    color: #FFF;
    background-color: #009900;
    text-align: left !important;
    background-image: -moz-linear-gradient(top, #009900, #036303);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#009900), to(#036303));
    background-image: -webkit-linear-gradient(top, #009900, #036303);
    background-image: -o-linear-gradient(top, #009900, #036303);
    background-image: linear-gradient(to bottom, #009900, #036303);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff009900', endColorstr='#ff036303', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn {
    display: inline-block;
    padding: 6px 12px !important;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
	font-weight: 500 !important;
    text-align: left !important;
    vertical-align: middle;
    cursor: pointer;
    background-color: #009977;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    /* border: 2px solid #426A84 !important; */
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

#space_fc {
	padding-left: 0px;
	padding-right: 0px;
}

.profile_text {
	margin-bottom:12px;
	color:#943634;
	font-size: 17px;
	font-weight: 600;
}

.tooltips {
	color:#0001FF;
	font-weight: bold;
}

.menubar ul li ul li a:hover {
    color: #009977 !important;
}

.comment {
	margin: 10px;
}

.morecontent span {
	display: none;
}

div.flash-msgsuccess {
	background:#393;
	color:#FFF;
	border-color:#000;
	width:260px;
	font-weight:700;
}

div.flash-msgsuccess {
	padding:.8em;
	margin-bottom:1em;
	border:2px solid #ddd;
}

.st_sharethis{
	padding:0px 0px 0 0;
	color:#39A839;
}

#profile_txt {
	color:#ff0000 !important;
    font-weight: 500;
}

#txt_grey {
	color: #777;
	font-weight: 500;
}
#txt_grey_last {
	display:block;
	color: #777;
	font-weight: 500;
}

.script_cls {
	display: inline;
}

#left_zero {
	margin-left: 0px;
}

#top_ten {
	margin-top: 10px;
}

#top_twn {
	margin-top: 20px;
}

#border_none {
    border: 1px solid #ccc;
	padding: 20px;
	border-radius: 5px;
}

#mar_zero {
	margin: 0px;
}

#fc_list {
	margin-bottom:0px;
	margin-top: 10px;
}

#list_a {
    font-size: 22px !important;
    margin-left: 0px;
}

#pub_view {
	margin-left:0px;
	background-color:#fcfde7;
	padding: 5px;
	padding-left:8px;
	border:#e6e6e6 solid 1px;
	font-weight:bold;
	border-top:0px;
}

#share_txt {
	font-size: 20px;
}

#txt_black {
	color:#000;
}

#about_txt {
	border-color: #f00;
}

span#form_clr {
	color:#666666;
}

#post_ht {
	height: 140px;
}

#pro_pointer {
	cursor: pointer;
}

#down_img {
	padding-left:20px;
	padding-bottom:15px;
}

.stButton {
    vertical-align: middle;
}

.btn_space {
	margin-bottom: 10px;
}

.col-md-9.side_left {
	padding-left: 0px;
	margin-bottom: 10px;
	padding-right: 0px;
}

.checkbox input {
    height: auto !important;
    width: auto !important;
}

#menus_list {
	text-align: right;
}

#search_btn {
	width:45px;
	height:36px;
}

#text_center {
	text-align: center;
}

.pull-right {
	margin-left: 0px;
}

.stButton .stLarge {
    height: 25px !important;
    width: 25px !important;
}

.pagination {
    margin: 0px 0 !important;
}

.pagination ul {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination ul > li:first-child > a, .pagination ul > li:first-child > span {
    border-left-width: 1px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    -moz-border-radius-topleft: 4px;
}

.pagination ul > .active > a, .pagination ul > .active > span {
    color: #000;
    cursor: default;
}

.pagination ul > li > a:hover, .pagination ul > li > a:focus, .pagination ul > .active > a, .pagination ul > .active > span {
    background-color: #f5f5f5;
}

.pagination ul > li > a, .pagination ul > li > span {
    float: left;
    padding: 4px 12px;
    line-height: 20px;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-left-width: 0;
}

.pagination ul > li {
    display: inline;
}

#business_list {
    padding-top: 0px;
}

.stButton .stLarge:hover {
    background-position: 0px !important;
}

.btn_space label {
	font-size: 13px;
}

h1.content-h3 {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    width: 100%;
    padding: 20px 0;
}

h2.content-h2 {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    width: 100%;
    padding: 20px 0;
}

.list-view .summary {
    text-align: right !important;
    margin-top: 15px;
    margin-bottom: 15px !important;
    letter-spacing: 0.5px;
}

#list_twn {
    padding-top: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px;
}

.comment {
	margin: 10px;
}

.morecontent span {
	display: none;
}

.search_list {
	margin-bottom: 20px;
}

#search_view {
	margin-left:0px;
	background-color: #fcfde7;
	padding: 7px;
	padding-left:18px;
	border:#e6e6e6 solid 1px;
	font-weight:bold;
	border-top:0px;
}

#list_bg {
	background-color: #fbfbfb !important;
    /*margin-top: 25px;*/
}

.view_list {
    font-weight: 500;
    padding: 5px 0px;
}


.fc-listing-alias h2 {
    color: #5cb85c;
    margin: 7px 0;
}

.fc-listing-alias {
    margin: 0px;
}

#profile_bot {
	color:#129d12 !important;
    font-weight: 500;
}

#search_sub strong {
	font-weight: 500;
	color: #f62a2a;
}

#search_su strong {
	font-weight: 500;
	color: #f62a2a;
}

#search_su {
    padding-right: 0px;
    padding-left: 0px;
}

#search_su2 {
	padding-left: 0px;
    padding-right: 0px;
}


.about_me {
	margin-bottom: 5px;
}

#search_sub {
    padding-right: 0px;
	padding-left: 0px;
}

#search_sub2 {
	padding-left: 0px;
    padding-right: 0px;
}

input[type="text"] {
	width: 100%;
	/* background-color: #ffffff;
	border: 1px solid #cccccc !important; */
	height: 36px;
	background-color: #f9f9f9;
    padding-left: 10px;
}

.profile_result {
    font-size: 16px;
    color: #009900;
    font-weight: 600;
    text-transform: uppercase;
}

#list_twn2 {
	padding: 20px 0px 10px 0px;
}

.col-md-12.go_back {
	padding-left: 0px;
	padding-right: 0px;
}

@media (max-width: 480px) {
#search_sub {
    padding-right: 0px;
	padding-left: 0px;
}

.view_list {
    padding: 7px 0;
    text-align: center;
}

.pro-480 {
	text-align: center;
}

.pro-title {
	text-align: center;
}
 
.col-md-9.side_left {
    padding-left: 0px;
    margin-bottom: 15px;
    padding-right: 0px;
}

.fc-listing-alias {
    margin-top: 5px;
}

#search_su {
    padding-right: 0px;
	padding-left: 0px;
}

.col-md-12.go_back {
    margin-top: 30px;
}

.carousel-control {
    width: 10% !important;
}

i.fa.fa-chevron-right {
    font-size: 24px;
}

i.fa.fa-chevron-left {
    font-size: 24px;
}

.stps {
    margin: 24px 0px;
}

.contentright {
    margin-top: 25px;
}

.contstyle {
    border-bottom: 0px solid #00a651;
}

.unordered_list.enquiry_btn {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

#img_left {
    padding-left: 0px;
    padding-right: 0px;
}

.team_title2 {
    margin-top: 0px;
}

.team_padd {
    margin: 0px 0;
}

#img_right {
    padding-right: 0px;
    padding-left: 0px;
	margin-top: 10px;
}

.team_title2 {
    margin-bottom: 30px;
}

.team_title4 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px !important;
	margin-top: 5px !important;
}

.bg_text {
    margin-top: 25px;
}

.bg_text h6 {
    font-size: 15.5px;
    margin-bottom: 30px;
    padding: 0 15px;
    text-align: center;
}

#post_btn {
    margin-left: 0px !important;
    margin-top: 0px !important;
}

.listing-img {
    width: 80%;
}

.team_left {
    padding-right: 0px;
}

.team_title4.fund_title.new_title {
    margin-top: 10px;
    padding-bottom: 20px;
}

.venture-img {
    width: 80%;
}

.team_title4 a center {
    margin-top: 25px;
}

.partner-img2 {
    padding-top: 0px;
}
.green_bg {
    padding: 18px 10px;
}

.home_more {
    margin-top: 55px !important;
}

.menu_bg {
    height: 150px;
    margin-top: 0px;
}

.premium_left {
    margin-left: 10px !important;
}

.unordered_listing a {
    padding: 0px !important;
}

.padleftnull p {
    text-align: justify;
    margin-top: 10px;
	font-size: 16px;
}

.PricingBox-title h2 {
    margin-top: 10px;
    font-size: 16px;
}

.nametag-photo-name {
    color: #fff !important;
    font-size: 14px !important;
}

.dis.pagebotspace {
    margin-left: 15px;
    margin-right: 15px;
}

.col-md-7.restrict-small {
    padding-left: 0px;
    padding-right: 0px;
}

.unordered_listing {
    font-size: 20px !important;
}

.col-md-12.padleftnull.pagebotspace {
    margin-left: 15px;
    margin-right: 15px;
}

label {
    margin-top: 5px !important;
}

.discover_title h2 {
    line-height: 1.5 !important;
    font-size: 28px !important;
    padding: 15px !important;
}

.pull-right {
    float: none !important;
    text-align: center;
}

#discover_full {
	padding-left: 0px;
	padding-right: 0px;
}

.unordered_list1 {
    margin-top: 0.3em !important;
    text-align: left;
    margin-right: 11px;
}

.unordered_list2 {
    text-align: justify;
    margin-right: 11px;
}

.team .col-md-9 {
    padding-right: 15px;
}

.unordered_list3 {
    text-align: justify;
    margin-right: 11px;
}

.left1 {
    padding-top: 25px;
}

.stop {
    margin-top: 0% !important;
}

.itop {
    margin-top: 0% !important;
}

.pull-right.btn.btn-success {
    float: none !important;
    margin-left: 5px;
}

#space_fc {
	margin-top: 0px;
}

#list_a {
    font-size: 20px !important;
}

.full_pro_btn {
     float: none; 
}

.pull-right {
    float: none !important;
    margin-bottom: 25px;
}

#sidebar {
    margin-bottom: 20px;
}

span.badge.pull-right {
    float: right !important;
}

#hintpost_forms {
    padding-left: 0px;
	padding-right: 0px;
}

#hintpost_form1 {
    padding-right: 0px;
	padding-left: 0px;
}

#s2id_CompanyListing_industry_id {
    width: 100% !important;
}

ul.nav {
    margin-bottom: 0px;
}

p.margtop1 {
    margin-left: 15px;
}

.content-hr h2 {
    margin-bottom: 15px !important;
}

a.button._secondary {
    padding: 10px 15px !important;
}

.mob_padd {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.linkedfc {
    margin-top: 15px;
}

.linkedfc1 {
    margin-top: 20px;
}

.lineht {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.linkedfc1 h5 {
    line-height: 1.5 !important;
}

.p1-1 {
    padding: 15px 15px 15px 15px;
}

.p1-4 {
    padding: 15px 15px 15px 15px;
}

.p1-2 {
    padding: 15px 15px 15px 15px;
}

.col-md-12.linkedfc1 {
    margin-top: 0px;
    padding: 7px 0;
}

.col-md-12.linkedfc1 h5 {
    padding: 10px;
}

.col-md-8.col-sm-9.col-xs-9.cont_info {
    min-height: 70px;
}

.more_btn {
    text-align: center;
}

.more_btn a {
	float: none !important;
}

.linkedfc1 h5 {
    padding: 10px 10px;
}

#lp_rightside_top {
    background-color: rgba(255, 255, 255, 0);
}

#sponser_spot {
    height: auto !important;
}

.cms-content {
    padding-bottom: 15px !important;
}}

@media (min-width: 481px) and (max-width: 768px) {
.menubar .menubar-inner {
    height: auto;
}

.col-md-12.go_back {
    margin-top: 50px;
}

.view_list {
    padding: 7px 0;
    text-align: center;
}

#search_sub {
    padding-right: 0px;
	padding-left: 0px;
}

#search_su {
    padding-right: 0px;
	padding-left: 0px;
}

.col-md-9.side_left {
    padding-left: 0px;
    margin-bottom: 12px;
    padding-right: 0px;
    margin-top: 0px;
}

.fc-listing-alias {
    margin-top: 5px;
}

.row.about_me {
    margin-left: 0px !important;
    padding-right: 0px !important;
}

.venture-img {
    width: 70px;
    margin-bottom: 10px;
}

.col-md-3.col-sm-2.col-xs-4.team_left {
    width: 100px;
}

.pro_title {
    font-size: 22px;
}

.team_title4 a center {
    margin-top: 20px;
}

.home_more {
    margin-top: 50px !important;
}

.menu_bg {
    height: 265px;
    margin-bottom: 15px !important;
    margin-top: 0px !important;
}

.content-h1 {
    text-align: left;
    padding: 10px 0 !important;
}

.menu_txt {
    padding: 7em 0;
}

.servicesul {
    padding-left: 15px !important;
    padding-top: 12px !important;
}

.discover_title h2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.left1 {
	margin-top: 25px;
}

.stop {
    margin-top: 5% !important;
}

.itop {
    margin-top: 5% !important;
}

.new_spaces {
	margin-top: 30px;
}

.comment2 {
	margin-left:0px !important;
}

.pull-right {
    float: none !important;
    margin-bottom: 25px;
}

#sidebar {
    margin-bottom: 20px;
}

.sidebar-heading h3 {
    font-size: 20px !important;
}

ul.nav {
    margin-bottom: 10px;
    margin-top: 10px;
}

span#adPlus_conn_old {
    float: right !important;
}

span.badge.pull-right {
    float: right !important;
}

#hintpost_forms {
    padding-left: 0px;
	padding-right: 0px;
}

#hintpost_form1 {
    padding-right: 0px;
	padding-left: 0px;
}

.mob_padd {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.linkedfc {
    margin-top: 15px;
}

.linkedfc1 {
    margin-top: 15px;
}

.lineht {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.linkedfc1 h5 {
    line-height: 2.5 !important;
}

.linkedfc1 h5 {
    padding: 3px 10px;
}

#lp_rightside_top {
    background-color: rgba(255, 255, 255, 0);
}

#sponser_spot {
    height: auto !important;
}

.wrapper-breadcrumbs {
    margin-top: 70px;
}

.main img {
    margin-top: 0px !important;
    width: 85%;
}

.contstyle {
    border-bottom: 0px solid #00a651 !important;
}

.col-md-4.col-sm-3.col-xs-3.cont_info {
    text-align: center;
}

.more_btn {
    text-align: center;
}

.more_btn a {
    float: none !important;
}

.contentright {
    margin-top: 20px;
}

.team_title1 {
    font-size: 3rem;
    text-align: center;
}

.team_title2 {
    font-size: 3rem;
    text-align: center;
	margin-top: 0px;
}

.team_title5 {
    font-size: 3rem;
    text-align: center;
}

.team_title4 {
    line-height: 0.25;
    font-size: 2.8rem;
    text-align: center;
}

#img_right {
    padding-right: 0px;
    padding-left: 0px;
}

.team_title {
    font-size: 3rem;
	margin-bottom: 0px;
}

.col-md-12.padleftnull p {
    text-align: justify !important;
    margin-top: 10px;
}

.team_title4.fund_title {
    margin-bottom: 40px !important;
}

.signup a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup1 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup2 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup3 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup4 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup5 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup6 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup7 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.signup8 a {
    padding: 5px 10px !important;
    font-size: 12px;
}

.cms-content {
    padding-bottom: 15px !important;
    padding-top: 15px;
}}

@media (min-width: 769px) and (max-width: 967px) {
.menubar .menubar-inner {
    height: auto;
}

.col-md-12.go_back {
    margin-top: 50px;
}

.view_list {
    padding: 7px 0;
    text-align: center;
}

#search_sub {
    padding-right: 0px;
	padding-left: 0px;
}

.fc-listing-left img {
    width: auto;
}

.col-md-9.side_left {
    padding-left: 0px;
    margin-bottom: 15px;
    padding-right: 0px;
}

.pull-right {
    float: right!important;
}

#login-details-form {
    margin: 10px 0px !important;
}

.about_me {
    margin-bottom: 5px;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#search_su {
    padding-right: 0px;
	padding-left: 0px;
}

.fc-listing-alias {
    margin-top: 5px;
}

#slider {
    margin-top: 90px !important;
}

.listing_bg2 {
    margin: 10px;
}

.listing_bg1 {
    margin: 10px;
}

.steps4 h2 {
    font-size: 3.4rem;
}

.stps img {
    width: 100px;
    margin-top: 10px;
}

.stp5 {
    padding-bottom: 45px;
}

.contstyle {
    border-bottom: 0px solid #00a651;
	padding: 0 40px !important;
}

.more_btn {
	padding: 0 40px !important;
}

.col-md-4.col-sm-3.col-xs-3.cont_info {
    text-align: center;
}

.more_btn {
    text-align: center;
}

.more_btn a {
	float: none !important;
}

.contentright h2 {
    font-size: 22px;
    margin-top: 40px;
}

.more_btn a {
    margin-bottom: 30px;
}

.bg_content {
    margin-bottom: 30px;
}

.contentright h3 {
    font-size: 18px;
}

.contentright p {
    font-size: 16px;
}

#img_left {
    padding-left: 0px;
    padding-right: 0px;
}

.team_title1 {
    text-align: center;
}

.team_text {
    font-size: 20px;
    text-align: center;
}

.unordered_list {
    font-size: 18px;
}

.team_title2 {
    margin-top: 0px;
    text-align: center;
	font-size: 3rem;
}

.team_left img {
    margin-bottom: 10px;
}

.fund_lft {
    padding-left: 0px !important;
}

#team_left {
    margin-left: 0px;
    margin-top: 0px;
}

#img_right {
    padding-left: 0px;
	margin-top: 25px;
}

#img_right img {
    width: 100%;
}

#img_left img {
    width: 100%;
}

.team_title5 {
    text-align: center;
	font-size: 3rem;
}

.team_title4 {
    text-align: center;
	margin-bottom: 30px !important;
	font-size: 3rem;
}

.team_title {
    margin-bottom: 0px;
	font-size: 3rem;
}

.bg_text {
    margin-top: 0px;
}

.listing-img {
    width: 73%;
}

.venture-img {
    width: 73%;
}

.pro_header {
    font-size: 26px;
    padding-bottom: 0px;
}

.pro_title1 {
    margin-top: 0px;
    font-size: 24px;
}

.pro_sub {
    font-size: 18px;
}

.pro-txt {
    padding: 5px 0px;
    font-size: 18px;
}

.home_more {
    margin-top: 0px !important;
}

.list_head {
    font-size: 18px;
    margin: 10px 0;
}

.home_page_heading {
    min-height: 0px;
}

.home_page_subheading {
    min-height: 18px;
    font-size: 22px!important;
}

.listing_bg1 {
    margin-bottom: 15px;
}

.pilot_list {
    font-size: 18px;
}

.fund_list {
    font-size: 18px;
	margin-bottom: 1em;
}

.pro_title {
    font-size: 24px;
}

#ven_agency {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    margin-bottom: 5px;
}

.max-height-2 {
    height: 190px !important;
}

.blog_space {
    padding: 0 60px;
    background-color: #f9f9f9;
    border: #eee 1px solid;
    height: 45em;
}

.team_title4 a center {
    margin-top: 25px;
}

.blog_1 {
    margin: 20px;
}

.blog_2 {
    margin: 20px;
}

.blog_3 {
    margin: 20px;
}

.padleftnull p {
    text-align: center;
    margin-top: 10px;
	padding-left: 15px;
    padding-right: 15px;
}

.menu_bg {
    margin-bottom: 0px !important;
}

h1.content-h1 {
    padding: 20px 0px 20px 0px;
    margin-bottom: 20px;
}

.cms-content {
    padding-bottom: 15px;
}

.blog_4 {
    margin: 20px;
}

#client_space {
    text-align: center;
}

.partner-img2 {
    padding-top: 0px;
}

.author {
    font-size: 16px !important;
    margin-top: 10px !important;
}

.author {
    font-size: 16px !important;
}

.unordered_list1 {
    margin-top: 2em !important;
}

.menu_txt {
    padding: 11.2em 0;
}

.col-md-2.col-sm-3.col-xs-4.team_left {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.unordered_listing a {
    padding: 0px !important;
}

.discover_title h2 {
    padding-top: 7rem !important;
}

.premium_left {
    margin-left: 0px !important;
}

.unordered_list2 {
    font-size: 20px !important;
}

#space img {
    width: 100%;
}

.left1 {
	margin-top: 25px;
}

.stop {
    margin-top: 0% !important;
}

.itop {
    margin-top: 0% !important;
}

.nontop {
    margin-top: 0% !important;
}

.list_borbot {
    margin-top: 75px !important;
}}

.badge-count {
    font-size: 14px;
}

ul.about_me li {
	display: inline;
}

.nav-pills > .active2 > a {
    font-weight: 400;
    color: #000;
    /* font-size: 12px; */
    color: #000000;
    background-color: #D6FC99;
}
bootstrap.css:4082
.nav-pills > .design_color1 > a {
    color: #000;
    color: #000000;
    background-color: #f4f4f4;
    /* font-family: calibri; */
}
bootstrap.css:4116
.nav-stacked > li > a {
    margin-right: 0;
}
bootstrap.css:4056
.nav-pills > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 1px;
}
bootstrap.css:4013
.nav-tabs > li > a, .nav-pills > li > a {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 2px;
    line-height: 14px;
}
bootstrap.css:3915
.nav > li > a {
    display: block;
}

.col-md-12.stps {
    margin-bottom: 40px;
}

.col-md-12.team_full {
    padding-left: 0px;
    padding-right: 0px;
}

.nav-pills > .design_color2 > a {
    color: #000000;
    background-color: #f7f7d0;
    /* font-family: calibri; #fef5e6*/
    /* font-weight: bold; */
}

.nav-pills > .design_color1 > a {
    color: #000000;
    background-color: #fbfbec;
    /* font-family: calibri; */
}

.more_btn a {
	float: right;
}

.slide_new {
	color: #fff;
}

.npadding {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.npadding-right {
	padding-right: 0px !important;
}

.npadding-left {
	padding-left: 0px !important;
}

.row .nrow {
	margin-left: -15px !important;
	margin-right: -15px !important;
}

.con_none {
	text-decoration: none;
}

a.button._secondary.js-track__topNavCTA {
    padding: 10px 15px;
    margin: 0px;
    margin-right: 0px !important;
	border-radius: 3px;
}

#post_btn {
	margin-left: 32px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.team_title4.fund_title {
    margin-bottom: 80px;
    margin-top: 80px;
}

.pro_title {
	padding:25px 0px 10px;
}

.pilot_full.team_full {
    padding-right: 0px;
    padding-left: 0px;
}

center.pro_title strong {
    font-weight: 500 !important;
	font-size: 18px;
}

#ven_agency {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.tn-top {
	margin-top: 10px;
}

.myconn3 b {
	font-size:13px;
}

.rec-listing {
	background-color: #fff;
}

button.accordion {
	background-color: #f5f6f8;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	border: 1px solid #ddd;
}

button.accordion.active, button.accordion:hover {
	background-color: #ddd;
}

.panel {
	padding: 0 18px;
	display: none;
	background-color: white;
}

.panel.show {
	display: block;
}

.seemore h3 {
	padding:10px !important;
	margin-top:0px !important;
}

.author {
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}

.free {
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
    text-align: center;
}

.allpartner {
    padding-bottom: 25px;
}

.pro_title1 {
    margin-top: 10px;
    font-size: 14px;
	text-transform: uppercase;
}

i.btn-default_box {
    margin-bottom: 35px;
    margin-top: 20px;
}

.rec-listing h5 {
	padding:0px 12px;
	font-size:13px;
	line-height: 18px;
}

.rec-listing p {
	padding:0px 12px;
}

#client_space {
	margin: 0 17px;
} 

.footer_info p {
	font-weight: 400;
}

.bg_venture p {
    padding: 20px 0px;
    text-align: justify;
    font-size: 18px;
    line-height: 1.6em;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
}

.pro_venture1 {
    background-color: #f4f4c1;
    padding: 0px 20px 20px;
    margin-top: 50px;
    border: #d4d49c 1px solid;
}

.etop_about {
	margin-top: 0%; 
}

.discover_title h2 {
    margin-top: 1em;
    color: #000;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    line-height: 1.125;
    font-size: 3.5rem;
    font-weight: 400;
    font-family: proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    margin-bottom: 0rem;
}

a.btn-default .home_more {
    margin-top: 85px;
}

.unordered_list1 {
    margin-bottom: 0.7em;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 1em;
}

.unordered_list2 {
    margin-bottom: 0.7em;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 1.5em;
}

.unordered_list3 {
    margin-bottom: 0.7em;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 0.5em;
}

.relevant_img1 {
    margin-bottom: 5px;
}

#space3 {
    padding-right: 0px;
    padding-left: 0px;
}

.etop_about {
	margin-top: 20px; 
}

.stay_active {
	text-decoration:underline;
	color:#800020;
}

.stu1 {
	margin-top:10px;
}

.PricingBox.team {
    margin-bottom: 40px;
}

#top_twn a {
    color: #fff;
}

#top_twn a:hover {
    color: #fff !important;
}

#left_zero #top_ten {
    margin-top: 0px;
}

#left_zero #padd_left {
    margin-top: 0px;
}

textarea#endorsement_post {
    height: 40px;
    font-size: 16px;
    padding-top: 8px;
	margin-bottom: 10px;
    padding-left: 10px;
	width:100%;
}

.add_endor {
	padding-left: 0px !important;
	padding-right: 0px !important;
	margin-top: 7px;
	margin-bottom: 7px;
}

#left_zero1 {
	margin-bottom: 30px;
}

.editable-checklist label {
    white-space: pre-wrap !important;
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 2px;
  line-height: 15px;
  vertical-align: text-top;
  background-image: url("../img/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
}

.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:focus > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > li > a:focus > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
  background-image: url("../img/glyphicons-halflings-white.png");
}

.icon-glass {
  background-position: 0      0;
}

.icon-music {
  background-position: -24px 0;
}

.icon-search {
	background-image: url("../img/glyphicons-halflings-white.png");
    background-position: -48px 0;
}

.icon-envelope {
  background-position: -72px 0;
}

.icon-heart {
  background-position: -96px 0;
}

.icon-star {
  background-position: -120px 0;
}

.icon-star-empty {
  background-position: -144px 0;
}

.icon-user {
  background-position: -168px 0;
}

.icon-film {
  background-position: -192px 0;
}

.icon-th-large {
  background-position: -216px 0;
}

.icon-th {
  background-position: -240px 0;
}

.icon-th-list {
  background-position: -264px 0;
}

.icon-ok {
  background-position: -288px 0;
}

.icon-remove {
  background-position: -312px 0;
}

.icon-zoom-in {
  background-position: -336px 0;
}

.icon-zoom-out {
  background-position: -360px 0;
}

.icon-off {
  background-position: -384px 0;
}

.icon-signal {
  background-position: -408px 0;
}

.icon-cog {
  background-position: -432px 0;
}

.icon-trash {
  background-position: -456px 0;
}

.icon-home {
/*  background-position: 0 -24px;
*/}

.icon-file {
  background-position: -24px -24px;
}

.icon-time {
  background-position: -48px -24px;
}

.icon-road {
  background-position: -72px -24px;
}

.icon-download-alt {
  background-position: -96px -24px;
}

.icon-download {
  background-position: -120px -24px;
}

.icon-upload {
  background-position: -144px -24px;
}

.icon-inbox {
  background-position: -168px -24px;
}

.icon-play-circle {
  background-position: -192px -24px;
}

.icon-repeat {
  background-position: -216px -24px;
}

.icon-refresh {
  background-position: -240px -24px;
}

.icon-list-alt {
  background-position: -264px -24px;
}

.icon-lock {
  background-position: -287px -24px;
}

.icon-flag {
  background-position: -312px -24px;
}

.icon-headphones {
  background-position: -336px -24px;
}

.icon-volume-off {
  background-position: -360px -24px;
}

.icon-volume-down {
  background-position: -384px -24px;
}

.icon-volume-up {
  background-position: -408px -24px;
}

.icon-qrcode {
  background-position: -432px -24px;
}

.icon-barcode {
  background-position: -456px -24px;
}

.icon-tag {
  background-position: 0 -48px;
}

.icon-tags {
  background-position: -25px -48px;
}

.icon-book {
  background-position: -48px -48px;
}

.icon-bookmark {
  background-position: -72px -48px;
}

.icon-print {
  background-position: -96px -48px;
}

.icon-camera {
  background-position: -120px -48px;
}

.icon-font {
  background-position: -144px -48px;
}

.icon-bold {
  background-position: -167px -48px;
}

.icon-italic {
  background-position: -192px -48px;
}

.icon-text-height {
  background-position: -216px -48px;
}

.icon-text-width {
  background-position: -240px -48px;
}

.icon-align-left {
  background-position: -264px -48px;
}

.icon-align-center {
  background-position: -288px -48px;
}

.icon-align-right {
  background-position: -312px -48px;
}

.icon-align-justify {
  background-position: -336px -48px;
}

.icon-list {
  background-position: -360px -48px;
}

.icon-indent-left {
  background-position: -384px -48px;
}

.icon-indent-right {
  background-position: -408px -48px;
}

.icon-facetime-video {
  background-position: -432px -48px;
}

.icon-picture {
  background-position: -456px -48px;
}

.icon-pencil {
  background-position: 0 -72px;
}

.icon-map-marker {
  background-position: -24px -72px;
}

.icon-adjust {
  background-position: -48px -72px;
}

.icon-tint {
  background-position: -72px -72px;
}

.icon-edit {
  background-position: -96px -72px;
}

.icon-share {
  background-position: -120px -72px;
}

.icon-check {
  background-position: -144px -72px;
}

.icon-move {
  background-position: -168px -72px;
}

.icon-step-backward {
  background-position: -192px -72px;
}

.icon-fast-backward {
  background-position: -216px -72px;
}

.icon-backward {
  background-position: -240px -72px;
}

.icon-play {
  background-position: -264px -72px;
}

.icon-pause {
  background-position: -288px -72px;
}

.icon-stop {
  background-position: -312px -72px;
}

.icon-forward {
  background-position: -336px -72px;
}

.icon-fast-forward {
  background-position: -360px -72px;
}

.icon-step-forward {
  background-position: -384px -72px;
}

.icon-eject {
  background-position: -408px -72px;
}

.icon-chevron-left {
  background-position: -432px -72px;
}

.icon-chevron-right {
  background-position: -456px -72px;
}

.icon-plus-sign {
  background-position: 0 -96px;
}

.icon-minus-sign {
  background-position: -24px -96px;
}

.icon-remove-sign {
  background-position: -48px -96px;
}

.icon-ok-sign {
  background-position: -72px -96px;
}

.icon-question-sign {
  background-position: -96px -96px;
}

.icon-info-sign {
  background-position: -120px -96px;
}

.icon-screenshot {
  background-position: -144px -96px;
}

.icon-remove-circle {
  background-position: -168px -96px;
}

.icon-ok-circle {
  background-position: -192px -96px;
}

.icon-ban-circle {
  background-position: -216px -96px;
}

.icon-arrow-left {
  background-position: -240px -96px;
}

.icon-arrow-right {
  background-position: -264px -96px;
}

.icon-arrow-up {
  background-position: -289px -96px;
}

.icon-arrow-down {
  background-position: -312px -96px;
}

.icon-share-alt {
  background-position: -336px -96px;
}

.icon-resize-full {
  background-position: -360px -96px;
}

.icon-resize-small {
  background-position: -384px -96px;
}

.icon-plus {
  background-position: -408px -96px;
  cursor:pointer;
}

.icon-minus {
  background-position: -433px -96px;
  cursor:pointer;
}

.icon-asterisk {
  background-position: -456px -96px;
}

.icon-exclamation-sign {
  background-position: 0 -120px;
}

.icon-gift {
  background-position: -24px -120px;
}

.icon-leaf {
  background-position: -48px -120px;
}

.icon-fire {
  background-position: -72px -120px;
}

.icon-eye-open {
  background-position: -96px -120px;
}

.icon-eye-close {
  background-position: -120px -120px;
}

.icon-warning-sign {
  background-position: -144px -120px;
}

.icon-plane {
  background-position: -168px -120px;
}

.icon-calendar {
  background-position: -192px -120px;
}

.icon-random {
  width: 16px;
  background-position: -216px -120px;
}

.icon-comment {
  background-position: -240px -120px;
}

.icon-magnet {
  background-position: -264px -120px;
}

.icon-chevron-up {
  background-position: -288px -120px;
}

.icon-chevron-down {
  background-position: -313px -119px;
}

.icon-retweet {
  background-position: -336px -120px;
}

.icon-shopping-cart {
  background-position: -360px -120px;
}

.icon-folder-close {
  width: 16px;
  background-position: -384px -120px;
}

.icon-folder-open {
  width: 16px;
  background-position: -408px -120px;
}

.icon-resize-vertical {
  background-position: -432px -119px;
}

.icon-resize-horizontal {
  background-position: -456px -118px;
}

.icon-hdd {
  background-position: 0 -144px;
}

.icon-bullhorn {
  background-position: -24px -144px;
}

.icon-bell {
 /* background-position: -48px -144px;*/
}

.icon-certificate {
  background-position: -72px -144px;
}

.icon-thumbs-up {
  background-position: -96px -144px;
}

.icon-thumbs-down {
  background-position: -120px -144px;
}

.icon-hand-right {
  background-position: -144px -144px;
}

.icon-hand-left {
  background-position: -168px -144px;
}

.icon-hand-up {
  background-position: -192px -144px;
}

.icon-hand-down {
  background-position: -216px -144px;
}

.icon-circle-arrow-right {
  background-position: -240px -144px;
}

.icon-circle-arrow-left {
  background-position: -264px -144px;
}

.icon-circle-arrow-up {
  background-position: -288px -144px;
}

.icon-circle-arrow-down {
  background-position: -312px -144px;
}

.icon-globe {
  background-position: -336px -144px;
}

.icon-wrench {
  background-position: -360px -144px;
}

.icon-tasks {
  background-position: -384px -144px;
}

.icon-filter {
  background-position: -408px -144px;
}

.icon-briefcase {
  background-position: -432px -144px;
}

.icon-fullscreen {
  background-position: -456px -144px;
}

.editable-buttons {
	display: block;
}

.editable-container.editable-inline, .editableform > .control-group, .editable-input, .editableform .form-control {
	width:100%;
}

.editable-input .input-large {
	width:600px !important;
	height:200px !important;
}

#new_listings {
	margin-bottom: 0px;
	margin-top: 0px;
}

.editable-buttons {
    display: block !important;
    margin-top: 7px;
    margin-bottom: 7px;
	margin-left: 0px !important;
}

#left_zero2 {
	padding: 20px;
	margin-bottom: 30px;
}

#space4 {
	padding-left: 0px;
	padding-right: 0px;
	text-align: right;
}

.btn1.editable-add {
	background-color: #5fd95f;
	border-radius: 3px;
	padding: 7px 5px;
	text-align: center;
	margin-left: 17px;
	margin-top: 30px;
}

.btn1.editable-remove {
	background-color: #cb0707;
	border-radius: 3px;
	padding: 7px 5px;
	text-align: center;
	margin-left: 17px;
	margin-top: 30px;
}

.editable_view img {
	margin-top: 30px;
	margin-left: 17px;
}

#pencil_view {
    padding: 0 15px;
}

#margin_listing {
	margin-bottom: 0px;
	margin-top: 0px;
	padding-bottom: 30px;
}

#exp_div input {
    margin-top: 5px;
    margin-bottom: 5px;
	padding-left: 10px;
}

textarea#description {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

#privacy_hint {
	color: #12a612;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.icon_space {
	padding-right: 5px;
}

.public_none {
	display: none;
}

#click_view {
	color:#ff0000;
	font-weight:bold;
}

.click_new {
	text-align:right;
	font-weight:bold;
}

.name_text {
	color:#FF0000;
}

.form_width {
	width:114px !important;
}

.form_height {
	width:60px !important;
	height:36px !important;
}

#color_edit {
	color:#666666;
}

.edit_view {
	color:#cb0707;
	font-weight:bold;
}

span.label.label-important {
    color: #129d12;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 600;
	padding: 0px;
}

#hint_post {
	margin-left: 0px;
	color: #020231;
	font-weight: bold;
	font-size: 13px;
	margin: 20px 0;
}

#hintpost_form {
	padding-left: 0px;
}

#hintpost_form1 {
	padding-right: 0px;
}

label.required.form_link {
    margin-top: 5px;
}

.required.form_link label {
    margin-top: 5px;
}

.unordered_lists {
    margin-bottom: 0.7em;
    font-size: 16px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 1.4em;
	text-align: left;
}

input.btn.btn-sucess.add {
    margin: 10px 0;
}

.post_textarea {
	height: 170px !important;
	width: 100% !important;
}
.post_textarea_resize {
	height: 170px !important;
	width: 180px !important;
	resize:both;
	
}

.btn_preview {
	margin-top: 15px;
}

#hintpost_form2 label {
    margin-top: 5px;
}

#preview_pad {
    padding: 20px;
}

.list_list {
	height: 36px;
}

#close_pre button {
    margin-top: 20px;
}

.well {
    margin-top: 0px;
}

#space1_fc {
	padding-left: 0px;
	padding-right: 0px;
}

#preview_margin {
	margin: 0;
}

#preview_left {
	margin-left: 0px;
}

#hintpost_forms label {
    margin-top: 23px;
}

#hintpost_forms {
    padding-left: 0px;
}

input#CompanyListing_logo {
    width: 100%;
    padding: 5px;
}

input#CompanyListing_attach {
    width: 100%;
    padding: 5px;
}

label.required.form_link.top_space {
    margin-top: 0px !important;
}

input.btn.btn-sucess.add1 {
	margin-bottom: 10px;
}

#hintpost_form1 select {
    width: 100%;
}

#hind_ico {
	margin-left:240px;
	margin-bottom:-8px;
}

#hind_ico1 {
    margin-left: 140px;
    margin-bottom: -30px;
}

#hind_ico2 {
    margin-left: 180px;
    margin-bottom: -20px;
}

#hind_ico1 img {
	margin-bottom:-14px;
}

#hind_ico img {
	margin-bottom:-14px;
}

#post_right {
    margin-top: 7em;
    padding-left: 0px;
    padding-right: 0px;
}

input#industry_domain_name {
    width: 86%;
}

input#looking_to_connect_name {
    width: 50%;
}

input#expertise_name {
    width: 50%;
}

input#expertise_name {
    width: 86%;
}

input#usertags_name {
    width: 86%;
}

#hobbies_div input#hobbies_name {
    width: 50%;
}

.grid-view {
    padding-top: 15px !important;
}

.unordered_listing a {
    padding: 10px 15px;
}

.grid-view .button-column {
    width: 70px !important;
}

.width {
	width: 100%;
}
.actions7 {
padding-top:12px;	
}

.post_pilot {
	text-align: center;
	width: 50px;
}

.post_pilots {
	width:10%;
	text-align:center;
}

.renew_now {
	text-align: center;
	cursor: pointer;
}

.postnew_listing {
	padding-bottom:15px;
}

.postnew_listings {
	padding-bottom:15px;
	display: none;
}

.dect { 
	width:100%;
}

#post_right1 {
    margin-top: 4.5em;
    padding-left: 0px;
    padding-right: 0px;
}

#post_fc {
    padding-left: 0px;
    padding-right: 0px;
    padding: 5px;
}

.events_title {
    background: -webkit-linear-gradient(top,rgba(173, 176, 179, 0.9),rgba(22,24,27,.38) 72px,rgba(22,24,27,0));
    padding: 7px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.events_para {
    padding: 7px;
    color: #fff;
	text-align: center;
}

.events_date {
    text-align: center;
    padding: 7px;
}

input#Events_photo {
    padding: 5px;
    width: 100%;
}

input#Events_pdf {
    padding: 5px;
    width: 100%;
}

button#event_preview {
    margin-right: 5px;
}

.event_menu {
	display: block;
}

.daspro {
	 padding-top:20px;
}

.event_pre {
    height: 36px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.photo_btn {
    background-color: #5cb85c;
	border-radius: 5px;
}

.photo_btn:hover {
    background-color: #227b22;
	border-radius: 5px;
}

#event_fc {
    padding-left: 0px;
    padding-right: 0px;
    padding: 10px;
}

.bordershadow1 {
    padding: 10px;
    -webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #949191;
}

.photo_text {
	font-size: 12px;
	padding: 10px 0;
	text-align: justify;
	min-height: 105px;
}

.rocode {
	margin-top:25px;
}

#photo_name {
	margin-right:12px;
	font-size:16px;
}

.photo_space {
    margin-bottom: 5px;
    margin-top: 5px;
}

.more_plus {
	cursor:pointer;
	color:#000000;
	font-weight:bold;
	font-size:16px;
}

.cur_pointer {
	cursor: pointer;
}

.dir_color {
	color:#E0221B;
    font-size: 16px;
    font-weight: 500;
}

.new_com {
    word-wrap: break-word;
    text-align: justify;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 7px;
    text-transform: capitalize;
	color: #129d12;
}

div.flash-msgsuccess {
	background:#A1E7A3;
	color:#264409;
	border-color:#000;
	width:300px;
	font-weight:700;
}

div.flash-msgsuccess {
	padding:.8em;
	margin-bottom:1em;
	border:2px solid #ddd;
}

#hint_posts {
    margin-left: 0px;
    color: #020231;
    font-weight: bold;
    font-size: 13px;
}

input#Post_blog_photo {
    padding: 5px;
    width: 100%;
}

.row.buttons {
    padding-bottom: 20px;
}

button#blog_preview {
    margin-right: 5px;
}

.content ol, content ul {
	list-style:initial !important;
	margin-left:40px !important;
}

.content p {
	margin: 0 0 10px !important;
}

.btn_preview1 {
	margin: 20px 0 !important;
}

.bolg-rightside-heading {
    font-weight: 600;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
	text-align: center;
	margin-top: 14px;
	margin-bottom: 14px;
}

.bolg-rightside-heading a {
    color: #129d12!important;
    font-size: 16px !important;
}

.bolg-rightside-heading a:hover {
    color: #129d12!important;
}

.join_color {
    color: #E0221B;
    font-size: 20px;
    font-weight: 500;
}

.join_color1 a {
    color: #E0221B;
}

.join_color1 a:hover {
    color: #E0221B;
}

.post_img {
	margin-bottom: 20px;
}

.join_color1 {
    color: #E0221B;
    font-size: 24px;
    font-weight: 500;
	text-align: left;
	text-transform: none;
}

.join_space  {
    color: #777;
    font-size: 16px;
	text-align: right;
	margin-top: 14px;
	margin-bottom: 14px;
}

.post_pargraph p {
    text-align: justify !important;
}

.blog_tilte {
    font-weight: 600;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 14px;
    text-align: left;
    font-size: 20px;
}

.blog_tilte a {
    color: #129d12;
}

.post_pargraph li {
	margin-bottom: 10px;
	text-align: justify;
}

form#discussion-details-form .required {
	color: #E0221B;
    font-size: 16px;
    font-weight: 500;
}

.content.post_pargraph p {
    font-size: 16px;
}

.content.post_pargraph em {
	font-weight: 600;
}

.alert.alert-block.alert-error p {
    color: #E0221B;
    font-size: 16px;
    text-transform: uppercase;
	margin-bottom: 10px;
}

.alert.alert-block.alert-error ul li {
    padding: 5px 10px;
    background-color: #ffefef !important;
    margin-bottom: 10px;
    border-radius: 5px;
}

.sidebar_form {
	margin-top: 5px;
}

.fc-listing-alias.pro-title strong {
    font-weight: 600;
}

#latest_title {
	border-bottom:1px solid #eee;
}

#latest_img {
	padding-left: 0px;
	padding-right: 0px;
	margin-top: 40px;
}

.img img {
    width: 100%;
}

#latest_para p {
	margin-top: 17px;
	text-align: justify;
}

#latest_para > div {
    font-size: 15px;
	text-align: justify;
}

.comment {
	margin: 10px;
}

.morecontent span {
	display: none;
}

.recent_color {
	color: #39A839;
}

.fun_square {
	list-style:square;
}

.fun_paragraph {
	font-size:18px;
	color:#000;
	line-height:25px;
}

li.photo_btn a strong {
    color: #fff;
}

li.photo_btn a strong:hover {
    color: #000;
}

.fun_interest {
	font-size:20px;
	font-weight: bold;
	color:#000;
}

.fun_sub p {
	font-size: 18px;
	color: #000;
}

.icon_finding {
	list-style:square;
	color:#000000;
	padding-left:10px;
}

.fun_height {
	line-height:30px;
}

.fun_height1 {
	line-height:25px;
}

.fun_span {
	text-decoration:underline;
	color:#009900;
}

.fun_underline {
	text-decoration:underline;
}

.pilot_colors {
	color: #800020;
}

.pilot_colored {
	color:#000099;
}

.fc-listing-alias a strong {
    font-weight: 600;
}

h2.comment2.new_com a {
    font-size: 20px !important;
}

#com_para {
	margin-top: 10px;
}

#refineform {
    margin-bottom: 30px;
}

.col-md-12.pro3 {
    min-height: 97px;
}

#arrow_right {
	text-align: right;
    margin-top: 10px;
}

#arrow_right .carousel-control {
    position: inherit;
}

.list_borbot {
    border-bottom: 1px solid #ccc;
    padding-bottom: 75px;
    margin-top: 50px;
}

.list_marg {
	margin-top:0px;
}

.yout_text {
	margin-left: 0px;
	margin-bottom: 38px;
	margin-top: 20px;
}

.list_padding {
	padding: 15px;
}

.float_right {
	float: right;
}

.btn_fc a:hover {
    color: #000 !important;
}

.mycon.con_compass {
    min-height: 335px;
}

.get_tn {
	font-size:16px;
	text-decoration:underline;
	color:#000000;
	margin-top: 15px;
}

.dashboard-profile3 {
    padding: 15px;
	margin: 15px 0;
    border-radius: 3px;
}

.latest_less {
	padding-left:25%;
	float: right;
}

.seemore {
    background-color: #ddf9fa;
}

.seemore1 { 
	background-color:#FFF;
}

.seemore2 {
    background-color:#FFF;	
}

.trd-lss {
	padding-left:35%;
	float: right;
}

@media (max-width: 480px) {
.trd-lss {
	padding-left:28%;
	float: right;
}}

.trend_blogs {
	min-height: 60px;
}

.date-time {
    margin-bottom: 10px;
}

.bullet_title {
    color: #943634;
    font-size: 14px;
    font-weight: 600;
}

.bullet_description {
	padding: 10px;
	text-align: justify;
	border-bottom: #71d29d 2px solid;
	margin-bottom: 10px;
}

.fc_bullet {
	height:325px;
	overflow-y: scroll;
	overflow-x: hidden;
	margin-top:-10px;
	margin-bottom:0px;
}

#bullet_space {
	padding:15px;
}

.bullet_review {
	margin-top:40px;
	text-decoration:underline;
}

.pub_space {
	text-align:center;
	padding-bottom:5px;
	padding-top:5px;
	color:#333333;
	font-size:14px;
	font-weight:bold;
	height: 40px;
}

span.list-view-page img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    object-position: 50% 50%;
}

.toggle_style {
	display:none;
}

@media (max-width: 480px) {
	.toggle_style{ display:block;
}

input#expertise_name {
    width: 80%;
}}

.man_conn {
	height:40px;
	width:40px;
	margin-right: 10px;
}

.man_connul {
	list-style-type: none;
}

.man_connli {
	font-family: 'OpenSans-Regular', calibri;font: bold;
	font-weight: bold;
	color: #000;
	font-size: 12px;
	padding-left: 15px;
	line-height:35px;
	background-color:#ddf9fa;
	border-bottom:1px solid #39b4bb;
}

.man_conspan {
	font-size:12px;
}

.new_connec {
	font-size:14px;
}

.bg_spot {
	background-color:#eee !important;
	margin: 0px !important;
}

.wrp_bg li.fc-prof {
    margin-top: 0px;
}

#sponser_spot {
	border:1px solid #fff;
	height:135px;
	text-align:center;
	margin-bottom: 10px;
}

#author_spon {
	color:#000;
	font-size:12px;
	text-decoration:underline;
	font-weight:500;
}

.space_logo {
    margin-top: 10px;
}

.cause_back img {
	margin-top: 40px;
}

.partner_back img {
    margin-top: 25px;
}

.santhi_back img {
	margin-top: 10px;
}

.comment {
	margin: 10px;
}

.morecontent span {
	display: none;
}

#hint_ico1 img {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}

.full_top {
	margin-top: 0px;
}

pre {
    margin-bottom: 10px !important;
}

.spon_bg h1 {
    text-align: center;
}

div.flash-msgsuccess {
	background:#A1E7A3;
	color:#264409;
	border-color:#000;
	width:200px;
	font-weight:700;
}

div.flash-msgsuccess {
	padding:.8em;
	margin-bottom:1em;
	border:2px solid #ddd;
}

.btn1 {
	display: inline-block;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 20px;
	text-align: left !important;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	vertical-align: middle;
	cursor: pointer;
	background-color: #f5f5f5;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-small1 {
	padding: 2px 10px;
	font-size: 11.9px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.btn-small {
	padding: 2px 10px;
	font-size: 11.9px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #f5f5f5;
}

.btn-success1 {
	color: #FFF;
	background-color: #009900;
	text-align: left !important;
	background-image: linear-gradient(to bottom, #009900, #009900);
	background-repeat: repeat-x;
}

#content ol, #content ul {
	list-style:initial !important;
}

#content p {
	margin: 0 0 10px;
}

.join_diss {
    color: #fff;
}

h2.comment2.new_com small {
    font-size: 16px;
    text-transform: uppercase;
    color: #5cb85c !important;
    font-weight: 600 !important;
}

.row-no-padding 
  [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 480px) {
.content-h1 {
    font-size: 22px;
    padding: 10px 0px 10px 0px;
    margin-bottom: 10px;
    text-align: left;
}

.faq_ans_sec {
    font-size: 16px;
    text-align: justify;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    margin-bottom: 10px;
}

ul.servicesul {
    padding-left: 0px !important;
}

.faq_ans_sec p {
    margin-top: 10px;
}

#pro_img {
	padding-left: 0px;
	padding-right: 0px;
}

.adv .ser1 {
    margin-top: 10px;
    margin-bottom: 20px;
}

span.vmem p {
    font-size: 20px !important;
    margin-bottom: 0px;
}

.follow_us {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.center1 {
    width: 100%;
}

.PricingBox-header {
    height: 6.5rem;
}

.PricingBox-content p {
    text-align: center;
}

.center {
    width: 100%;
}

input#industry_domain_name {
    width: 80%;
}

input#looking_to_connect_name {
    width: 80%;
}

.fc-listing {
    padding: 23px 0px 20px 0px !important;
}

#space_fc {
    text-align: center;
}

.fc-listing {
    text-align: left;
}

#pub_view {
    text-align: left;
}

.items {
	padding: 10px 20px;
}

#space3 {
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
    float: left;
}

.mob_edit {
	padding-left: 0px !important;
	padding-right: 0px !important;
	margin-top: 20px;
}

#space4 {
    text-align: center;
}

div#img_div {
    text-align: center;
}

.preview_image {
	text-align: center;
}

.fc-listing-alias h2 {
    text-align: left;
}

.items {
    padding: 0px 0 !important;
}

.fcdir {
    width: 100%;
}

.padleftnull {
	margin-bottom: 0px !important;
}

.value-pro p {
    font-size: 16px;
}
.profile-type {
    font-size: 28px !important;
    margin-bottom: 20px;
}
#reg_backgroung2 {
    font-size: 14px !important;
}
.content {
    margin-top: 0px !important;
	font-size: 28px !important;
}
.registration-brief input[type="password"] { 
box-shadow:none !important; 
height:36px; 
border-radius:3px !important;
width: 100%;}
.hint img {
    height: 20px !important;
    width: 20px !important;
}

.main img {
    margin-top: 0px !important;
}

div#menus_list .btn-group {
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
	position: relative;
	float: left;
}

.list_image img {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    object-fit: contain;
    object-position: top;
}

.list_image {
	margin-bottom: 7px;
}

#list_text {
	padding-left: 0px;
    margin-bottom: 5px;
    padding-right: 0px;
    margin-top: 10px;
}}

@media (min-width: 481px) and (max-width: 667px) {
.follow_us {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

div#follow_lan {
    width: 50%;
    float: left;
    margin: 0 0px;
}

.pilothead.fc-space {
    margin-bottom: 0px !important;
}

.team_title1 {
    margin-top: 60px;
}

.new_title {
	margin-bottom: 0px !important;
}

input#industry_domain_name {
    width: 70%;
}

input#looking_to_connect_name {
    width: 70%;
}

.latest_parafc p {
    padding-top: 5px;
    padding-bottom: 0px;
}

.value-pro p {
    font-size: 18px;
}

.center1 {
    width: 100%;
}

.PricingBox-header {
    height: 7.5rem;
}

.center {
    width: 100%;
}

.fc-listing {
    padding: 23px 0px 20px 0px !important;
}

#space_fc {
    text-align: center;
}

.fc-listing {
    text-align: left;
}

#pub_view {
    text-align: left;
}

.items {
	padding: 10px 20px;
}

.mob_edit {
	padding-left: 0px !important;
	padding-right: 0px !important;
	margin-top: 20px;
}

#space4 {
    text-align: center;
}

#space3 {
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
    float: left;
}

.premium_left {
    margin-left: 0px !important;
}

div#img_div {
    text-align: center;
}

.preview_image {
	text-align: center;
}

.fc-listing-alias h2 {
    text-align: left;
}

.items {
    padding: 0px 0 !important;
}

.fcdir {
    width: 100%;
}

.padleftnull {
	margin-bottom: 0px !important;
}

div#menus_list .btn-group {
    float: left;
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.venture {
    width: 50% !important;
}

.col-md-3.col-sm-2.col-xs-4.team_left {
    width: 100px;
}}

@media (min-width: 668px) and (max-width: 997px) {
.content-h1 {
    text-align: left;
}

.lineht {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.follow_us {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.center1 {
    width: 50%;
}

.PricingBox-header {
    height: 7.5rem;
}

.center {
    width: 50%;
}

.fc-listing {
    padding: 20px !important;
}

#space_fc {
    text-align: center;
}

.fc-listing {
    text-align: left;
}

#pub_view {
    text-align: left;
}

.items {
	padding: 10px 20px;
}

.mob_edit {
	padding-left: 0px !important;
	padding-right: 0px !important;
	margin-top: 20px;
}

#space4 {
    text-align: center;
}

#space3 {
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
    float: left;
}

div#img_div {
    text-align: center;
}

.preview_image {
	text-align: center;
}

.fc-listing-alias h2 {
    text-align: left;
}

.items {
    padding: 0px 0 !important;
}

.fcdir {
    width: 100%;
}

.padleftnull {
	margin-bottom: 0px !important;
}

.main img {
    margin-top: 0px !important;
}

.pagebotspace {
    margin-top: 30px;
}

.bizimg {
    margin-top: 50px;
}}

@media (min-width: 998px) and (max-width: 1024px) {
.lineht {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.follow_us {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.center1 {
    width: 50%;
}

.PricingBox-header {
    height: 7.5rem;
}

.center {
    width: 50%;
}

.fc-listing {
    padding: 23px 0px 20px 0px !important;
}

#space_fc {
    text-align: center;
}

.fc-listing {
    text-align: left;
}

#pub_view {
    text-align: left;
}

.items {
	padding: 10px 20px;
}

.mob_edit {
	padding-left: 0px !important;
	padding-right: 0px !important;
	margin-top: 20px;
}

#space4 {
    text-align: center;
}

#space3 {
    padding-right: 0px;
    padding-left: 0px;
    float: left;
}

.team_left {
    padding-left: 0px !important;
	padding-right: 0px !important;
}

.col-md-2.col-sm-3.col-xs-4.team_left {
    padding-left: 0px !important;
	padding-right: 0px !important;
}

div#img_div {
    text-align: center;
}

.preview_image {
	text-align: center;
}

.fc-listing-alias h2 {
    text-align: center;
}

.items {
    padding: 20px 0 !important;
}

.fcdir {
    width: 100%;
}}

@media (min-width: 1025px) {
img.bordershadow {
    height: 200px;
}}

#space img {
    width: 100%;
}

#space3 img {
    width: 100%;
}

.bordershadow {
    margin-bottom: 20px;
}

.items {
    padding: 0px 0;
}

.unordered_listing {
    margin-bottom: 0.7em;
    font-size: 26px;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #364141;
    margin-top: 0.8em;
}

.premium_left {
	margin-left: 50px;
}

.cont_info img {
    padding: 4px;
    text-align: center;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    background-color: #fff;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.profile-home {
    height: 120px;
    width: 120px;
    object-fit: contain;
}

.content_btn p a {
    margin-bottom: 20px;
}

.list_form {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.sign_up {
    box-shadow: 0 1px 5px rgba(22, 32, 32, 0.34), 0 1px 5px rgba(22, 32, 32, 0.33);
    background-color: #fff;
}

#space_sign {
    padding: 40px 50px 10px 50px;
}

.bg_signup {
	background: url(../images/sign_up.jpg);
	background-size: cover;
}

.form.syep {
    margin: 30px 0;
}

#space_sign .row {
    margin-bottom: 5px;
}

.dropdown-backdrop {
    z-index: -9999 !important;
}

span.vmem p {
    font-size: 24px;
    margin-bottom: 0px;
}

.cms-content {
    padding-bottom: 30px;
}

ol.order1 {
    list-style-type: square;
}

ul.servicesul1 {
    list-style-type: square;
}

.promotions {
	list-style-type: square;
	margin-left: 30px;
}

.inner_wrapper {
	margin-top: 25px;
}

#objective_pencil {
	color: #943634 !important;
}

.title-label {
    text-align: center;
}

.profile-type span {
	font-weight: 600;
	color: #000;
}

.normal {
	font-weight: normal;
}

.last-li{padding: 10px 15px;}
.deck4{margin-bottom:25px;}
.textare{width: 100% !important;height: 120px;}
.textare1{margin-top:15px !important;}

#profile_bot a {
    color: #129d12 !important;
    font-weight: 500;
}

li.fc-prof {
    margin-top: 30px;
}

.col-md-2.bubblenot {
    text-align: left;
    margin-top: 0px;
}

.bg_message {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	padding: 25px;
	margin-top: 25px;
}

.well_view {
    margin: 8px 0;
}

select {
    margin-bottom: 0px !important;
}

a {
	cursor: pointer;
}

a#company_name_edit {
    color: #129d12!important;
    font-size: 16px !important;
    line-height: 26px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.new_message {
	margin-top: 20px;
}

.test_list {
	margin-top: 7px;
	margin-bottom: 7px;
}

#update_space {
	margin-bottom: 30px;
}

form#changepassword {
    margin-top: 20px;
}

#list_bg1 {
    min-height: 150px;
	background-color: #fbfbfb !important;
}

input[type="submit"] {
    padding: 5px 15px;
    color: #fff;
    background-color: #77ab3d;
    margin-top: 3px;
}

.event-menu {
    margin-top: 30px;
}

textarea#EventsGallery_message {
    width: 100%;
    margin-bottom: 15px;
}

input#EventsGallery_photo_video {
    width: 100%;
    margin-bottom: 10px;
}
.btn-success a {
color:#fff;
}
.view-table {
    width: 85% !important;
    max-width: 100%;
    margin-bottom: 20px;
    margin-top: 30px;
    border: 1px solid #dfdddd;	
}
.view-table th{
width:16%
}
.social-de {
margin-top:25px;	
}
/*div#cke_1_contents {
    height: 120px!important;
}
.cke_chrome {
    visibility: inherit;
	height: 120px!important;
}
.cke_wysiwyg_frame, .cke_wysiwyg_div {
    background-color:transparent !important;
	height: 120px!important;
}
*/

.hint_1  {
 margin-top:34px !important; 
 margin-left:7px;	
}

.select2-container {
    margin-top: 12px !important;
}

#file_upload_div #Create {
margin-top: 37px;
}

#file_upload_div #delete {
margin-top: 37px;
}

.fshadow .required{
margin-top: 5px; !important;
}

div.pull-right {
	margin-top: 20px;
	margin-bottom: 20px;
}

.influ_head img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

#radar_new {
	padding-left: 0px;
}


.sm-inner {
    margin-top:25px;
}
.content-hr {
   border-top:1px solid #e2e2e2;
   border-bottom:1px solid #e2e2e2;
   padding:15px 0px;
}

.content-hr h2{
   margin-top:0px;
   margin-bottom:0px;
}

a#toTop {
    display: none !important;
}

@media (min-width: 1200px) and (max-width: 1400px) {
.container.full_width {
    width: 100% !important;
	padding-left: 0px;
	padding-right: 0px;
}}
.warning_msg
{
	width:10% !important;
}

.web_result a {
    word-wrap: break-word;
}
.btn-info7 {
	margin-top:25px;
	background: #f5f5f5;
    border: 1px solid #e7e7e7 !important;
}
#custom-search-input .input-group2 input {
    border: 1px solid #e7e7e7 !important;
}

@media (max-width: 480px) {
#radar_new {
    padding-left: 0px;
    padding-right: 0px;
	margin-bottom: 20px;
}

.new_spaceing {
	display: none;
}

#nopadding {
	padding-left: 0px;
	padding-right: 0px;
}

canvas#yii_chartjs_line_0 {
    width: 100% !important;
}

.sub_banner_radar {
    width: 100%;
    height: 160px;
    background-size: cover;
}

.disfc .loweralpha {
    padding-left: 15px;
}

.disfc .faq_li {
    margin: 10px 0px;
}

.btn.btn-success.small {
    font-size: 13px;
}

#public_text {
	padding-left: 0px;
	padding-right: 0px;
}

.list_borbot {
    padding-bottom: 100px;
    margin-top: 10px;
}

.userno {
    margin-top: -10%;
}}

.event-menu-messagein ul{display: inline-flex !important;list-style: none !important;}
.event-menu-messagein ul li{display: inline-flex !important;list-style: none !important;}

label.required.form_link {
    display: block;
}

.row.rememberMe {
    margin: 10px 0;
}

.row.buttons input[type="submit"] {
    padding: 9px 20px;
    color: #fff;
    background-color: #77ab3d;
    margin-top: 11px;
}

#ys1 .summary {
    margin: 0px !important;
}

.bootstrap-widget {
    margin-top: 20px !important;
}

ul.thumbnails li {
    list-style-type: none;
}

div#list_right {
    padding-left: 0px;
    padding-right: 0px;
}

.col-md-12.subcont_bg1 {
    padding-left: 0px;
    padding-right: 0px;
}

.post_img .pull-right {
    margin-top: 2px;
}

.pull-right.btn.btn-success {
    margin-top: 0px;
}

div#newlist_space {
    margin-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
}

.col-md-3.col-sm-3.col-xs-3.coldex-3 {
    padding-left: 0px;
    padding-right: 0px;
}

textarea#Events_events_link {
    margin-bottom: 20px;
}

div#business_list .pagination {
    padding-top: 20px;
	padding-bottom: 20px;
}

.nametag-photo-name {
    color: #fff !important;
    font-size: 14px !important;
}

.cms-content ul {
    margin-left: 15px;
}

@media (max-width: 480px) {
.pull-right.btn.btn-success {
    margin-top: 20px !important;
}

#mobile_tech {
    height: 565px;
}

#mobile_center {
    text-align: center;
}

.full-listing-border.full-list-padd {
    padding: 20px 25px 20px 25px !important;
}

li.fc-prof {
    margin-top: 20px !important;
}

div#s2id_BlockMembers_block_member_id {
    width: 100% !important;
    padding-left: 0px;
    padding-right: 0px;
}

div#list_bg1 {
    padding: 15px !important;
}

div#list_bg1 p {
    text-align: justify;
}

.col-md-12.test_list iframe {
    width: 100%;
}

.col-md-3.col-sm-6.provider-mbe {
    margin-top: 50px;
}

.fc-space-new {
    margin: 50px 0px 0px 0px;
}

.max-height-3 {
    height: 90px !important;
}

.pilothead_venture {
    margin-bottom: 60px;
}

.partner-img {
    padding: 0px 10px 10px 10px;
}

.footer_info p {
    font-size: 14px;
}}

@media (min-width: 768px) and (max-width: 996px) {
span.badge-count.userno {
    margin-top: -4%;
    margin-left: 2%;
}}

p.team_text {
    padding-top: 10px;
}
.fund_list{font-weight:700;}
.teamservice {margin-top:80px; margin-bottom: 0px;}

h2.home_page_heading {
    margin-top: 0px;
}

.pilothead.fc-space {
    margin-bottom: 20px;
}

#profile_bot {
	color: #943634;
}

@media (max-width: 480px) {
#no_padding {
	padding-left: 0px;
	padding-right: 0px;
}

.other-content {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.cause_back img {
    margin-top: 5px;
    margin-bottom: 5px;
}

#client_space {
    margin: 0 0px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

.partner-img3 {
    padding-top: 10px;
}

.allpartner {
    padding: 50px;
}}
.burgundy{color:#943634;}


/*Biz Story*/
.wrapper-other{background:#f4f4f4;}

.singlevw-biz {
    background: #fff;
    padding-top: 35px;
    padding-bottom: 25px;
	min-height: 240px;
}

.singlevw-biz {
	background-color: #fff;
    border: 1px solid #e0e0e0;
    -moz-transition: opacity .6s ease-out;
    -o-transition: opacity .6s ease-out;
    -webkit-transition: opacity .6s ease-out;
    transition: opacity .6s ease-out;
}

.singlevw-biz:hover {
	border: 1px solid #37a000;
}

.col-md-4.col-sm-3.col-xs-3.cont_info {
    margin-bottom: 15px;
}

@media (min-width:667px) and (max-width:1024px){
.teamservice {
    margin-top: 0px;
}

img.etop {
    margin-top: 0px;
}

.left1 {
    margin-top: 0px;
}

.colleges_para {
	margin-top: 50px;
}

p.faq_ques_head.color {
    margin-top: 50px;
}

input#Reg_pass_word {
    width: 100%;
}}

.relevant_bg .teamservice {
    margin-top: 0px;
}

.word_public {
    overflow-y: scroll;
   /* height: 80px;*/
   height:200px;
    border: #ccc 1px solid;
    padding: 20px;
    border-radius: 5px;
}

#new_wprdpublic {
	margin-top: 5px;
	margin-bottom: 5px;
}

.word_publicview {
    overflow-y: scroll;
    height: 100px;
    border: #ccc 1px solid;
    padding: 20px;
    border-radius: 5px;
	margin-bottom: 20px;
}

.pagebotspace .pull-right {
    margin-top: 0px;
    margin-bottom: 0px;
}

ol.order li {
    font-weight: 600;
}

div#howspan a {
    font-weight: 600;
}

.faq_ans_sec {
    font-size: 16px;
    text-align: justify;
    font-family: "Proxima Nova",proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

ol.order li {
    font-weight: 600;
}

div#whatspan a {
    font-weight: 600;
}

div#Shouldspan a {
    font-weight: 600;
}

div#Whospan a {
    font-weight: 600;
}

div#Services12span a {
    font-weight: 600;
}

div#Dospan a {
    font-weight: 600;
}

div#Needspan a {
    font-weight: 600;
}

div#Arespan a {
    font-weight: 600;
}

div#Amspan a {
    font-weight: 600;
}

div#Withspan a {
    font-weight: 600;
}

div#Canspan a {
    font-weight: 600;
}

div#Asspan a {
    font-weight: 600;
}

div#Whospan {
    font-weight: 600;
}

div#yw0 .pagination {
    padding-bottom: 20px;
}

div#yw0 {
    padding-top: 0px;
}

.mediumpost.bordershadow {
    margin-bottom: 0px;
}

#viewevents_list {
	margin-top: 3.5rem;
}

h4.nametag-photo-name {
    padding: 15px !important;
}

div#yw1 .pagination {
    padding-top: 20px;
    padding-bottom: 20px;
}

div#yw1 {
    padding-top: 0px;
}

.cms-content h4 {
    margin: 15px 0;
}

.footer_style h3 {
    margin: 0px !important;
}

input#listing_listhead {
    margin-bottom: 10px;
}

select#looking_hidden {
    margin-bottom: 10px !important;
}

div#latest_para {
    margin-top: 40px;
}

div#latest_para ul li {
    margin-left: 15px;
    font-size: 16px;
    text-align: justify;
}

div#team_left img {
    margin-bottom: 10px;
}

.col-md-3.col-sm-3.col-xs-3.coldex-3 img {
    width: 90px;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
.head_space {
	display: none;
}

#space_mobile {
	padding-left: 0px;
	padding-right: 0px;
}

.listing-header {
    margin: 10px 0px;
}

div#list_twn select {
    width: 100% !important;
}

#list_twn {
    padding-bottom: 45px;
}

.menubar.menu-toggle-class {
    z-index: 999;
}
    
.padritnull {
    padding-left: 0px !important;
}
    
input#experties_name {
    width: 81% !important;
}
    
input#usertags_name {
    width: 81% !important;
}}

#hintpost_form1 h1 {
    width: 100%;
}

#hintpost_form1 p {
    text-align: justify;
}
.dis_top{padding-top:40px;}
.dis_img{border:5px solid #ddd}
.dis_hed{padding-bottom:10px;}
.dis_bg {
    background-color: #f3f3f3;
    padding: 20px;
}


.blue-i { width:30px; height:30px; }
.tooltip { width:320px !important; }

.nopadding .tooltip.fade.top.in {
	left: -200px !important;
	padding: 0 20px;
	max-width: 235px !important;
}

.tooltip.fade.top.in {
	/*left: -200px !important;*/
	padding: 0 20px;
	max-width: 235px !important;
}

.tooltip.fade.top {
	left: 0px !important;
	padding: 0 20px;
	max-width: 100% !important;
}

.tooltip.fade .tooltip-arrow {
	display: none !important;
}

.tooltip-inner {
	text-align: center !important;
}

@media (min-width: 481px) and (max-width: 768px) {
.content {
    margin-top: 15px;
}
    
#latest_img {
    margin-top: 0px;
}
    
#hintpost_form {
    padding-left: 15px;
}
    
#hintpost_form1 {
    padding-right: 15px;
    padding-left: 15px;
}
    
.padleftnull {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
    
.padritnull {
    padding-right: 15px !important;
}
    
#radar_new {
    padding-right: 0px;
    margin-bottom: 15px;
}}

@media (min-width: 769px) and (max-width: 998px) {
.content {
    margin-top: 15px;
}
    
#hintpost_form {
    padding-left: 15px;
}
    
#hintpost_form1 {
    padding-right: 15px;
}
    
.padleftnull {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
    
.padritnull {
    padding-right: 15px !important;
}
    
#radar_new {
    padding-right: 0px;
    margin-bottom: 15px;
}}

canvas#yii_chartjs_line_0 {
    width: 100% !important;
}

.row.buttons {
    padding-top: 25px;
}

form#login-details-form .buttons {
    padding: 0px;
}

h2.border {
    font-size: 24px;
    margin-top: 25px;
}

input#remove_attach {
    width: 100%;
}

input#remove_photo {
    width: 100%;
}

input#remove_logo {
    width: 100%;
}

textarea#Comment {
    margin-bottom: 15px;
}

div#mobile_tech {
    margin-bottom: 20px;
}

input#img_size {
    width: 100%;
}

.form .form-actions {
    padding: 15px;
}

button#yw0 {
    margin-top: 15px;
}

@media (min-width: 1024px) {
.container.menu_header {
    padding: 0 25px;
    width: 1170px !important;
}
}

.stps a{
	color:#009977;
}
.stps  h4 a{
	color:#000;
}
.new_title a {
	color:#009977;
}
ul.site-home li i {
    background-color:#009977 !important;
}