@charset "utf-8";

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}
textarea:hover, input:hover, textarea:active, input:active, textarea:focus, select:active, button:active, button:focus, select:focus, input:focus {
        outline:0px !important;
    }
/* @font-face { */
    /* font-family: MyriadPro-Regular; */
    /* src: url(../fonts/MyriadPro-Regular.ttf); */
/* } */

@font-face {
    font-family: Myriad-Pro;
    src: url(../fonts/Myriad-Pro.ttf);
}
 

@font-face {
    font-family: Roboto-Regular;
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto-Light;
    src: url(../fonts/Roboto-Light.ttf);
}

.roboto-regular{
 font-family: Roboto-Regular;
}
.roboto-light{
 font-family: Roboto-Light;
}	

body {}

p {
    font-family: Roboto-Regular;
    font-style: normal;
    letter-spacing: 0.1px;
    text-rendering: optimizeLegibility;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 27px;
    color: #5d5d5d;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.clearfixd {
    clear: both;
}

main {
    width: 100%;
    float: left;
}


 
@keyframes horizontal {
  0% {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
  }

  6% {
    -webkit-transform: translate(5px,0);
    -ms-transform: translate(5px,0);
    transform: translate(5px,0);
  }

  12% {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
  }

  18% {
    -webkit-transform: translate(5px,0);
    -ms-transform: translate(5px,0);
    transform: translate(5px,0);
  }

  24% {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
  }

  30% {
    -webkit-transform: translate(5px,0);
    -ms-transform: translate(5px,0);
    transform: translate(5px,0);
  }

  36% {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
  }
}

.faa-horizontal.animated,
.faa-horizontal.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-horizontal {
  -webkit-animation: horizontal 2s ease infinite;
  animation: horizontal 2s ease infinite;
}

/* FLASHING */

@-webkit-keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.faa-flash.animated,
.faa-flash.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-flash {
  -webkit-animation: flash 2s ease infinite;
  animation: flash 2s ease infinite;
}

/* BOUNCE */

@-webkit-keyframes bounce {
  0%, 10%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 10%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.faa-bounce.animated,
.faa-bounce.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-bounce {
  -webkit-animation: bounce 2s ease infinite;
  animation: bounce 2s ease infinite;
}

/* SPIN */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.faa-spin.animated,
.faa-spin.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-spin {
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

/* FLOAT */

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.faa-float.animated,
.faa-float.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-float {
  -webkit-animation: float 2s linear infinite;
  animation: float 2s linear infinite;
}

/* PULSE */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.faa-pulse.animated,
.faa-pulse.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-pulse {
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
}

/* SHAKE */

.faa-shake.animated,
.faa-shake.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-shake {
  -webkit-animation: wrench 2.5s ease infinite;
  animation: wrench 2.5s ease infinite;
}

/* TADA */

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9) rotate(-8deg);
    transform: scale(.9) rotate(-8deg);
  }

  30%, 50%, 70% {
    -webkit-transform: scale(1.3) rotate(8deg);
    transform: scale(1.3) rotate(8deg);
  }

  40%, 60% {
    -webkit-transform: scale(1.3) rotate(-8deg);
    transform: scale(1.3) rotate(-8deg);
  }

  80% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9) rotate(-8deg);
    -ms-transform: scale(.9) rotate(-8deg);
    transform: scale(.9) rotate(-8deg);
  }

  30%, 50%, 70% {
    -webkit-transform: scale(1.3) rotate(8deg);
    -ms-transform: scale(1.3) rotate(8deg);
    transform: scale(1.3) rotate(8deg);
  }

  40%, 60% {
    -webkit-transform: scale(1.3) rotate(-8deg);
    -ms-transform: scale(1.3) rotate(-8deg);
    transform: scale(1.3) rotate(-8deg);
  }

  80% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.faa-tada.animated,
.faa-tada.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-tada {
  -webkit-animation: tada 2s linear infinite;
  animation: tada 2s linear infinite;
}

/* PASSING */

@-webkit-keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
}

@keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
}

.faa-passing.animated,
.faa-passing.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-passing {
  -webkit-animation: passing 3s linear infinite;
  animation: passing 3s linear infinite;
}

/* WAVE */

@-webkit-keyframes burst {
  0% {
    opacity: .6;
  }

  50% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes burst {
  0% {
    opacity: .6;
  }

  50% {
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.faa-burst.animated,
.faa-burst.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-burst {
  -webkit-animation: burst 3s infinite linear;
  animation: burst 3s infinite linear;
}
 




/*header section css start*/
.top-header{
width:100%;
float:left; 
background:#1c1006		
}
.top-header ul li {
    font-family: Roboto-Light;
    color: #67bc31;
    float: left;
    padding: 10px 12px 0px;
    font-size: 15px;
}
.top-header ul {
width:100%;
float:right	
}
.top-header ul li img{
padding-right:5px	
}
.top-header p img{
padding-right:5px;
padding-left: 20px;	
}
.top-header p{
 font-family: Roboto-Light;
    color: #67bc31;
float:right;
    margin: 7px 0px 7px;	
}
.top-header p span:first-child{
	padding-left:20px
}

header{
width:100%;
float:left;	
background:#ebecec;
position:relative;height:114px;
}
 
 

.mylogo {
    position: absolute;
    margin-top: -40px;
}
.navbar{
margin-bottom:15px !important;	
}
.myneedhelp-menu li a{
color:#676963 ;
   font-family: Roboto-Regular;
   font-size:15px
	
}
.myneedhelp-menu{
margin-top:16px !important	
}
.button-self{
background:#71ba3f;
color:#71ba3f;	
}
.button-self {
    background: #71ba3f;
    color: #fff;
    border-radius: 30px;
    padding: 0px 8px 1px 8px;
    margin-left: 20px;
    margin-right: 20px;
}
.button-self a{
color:#fff !important
}
.myneedhelp-menu li:nth-child(3) {
border-right: 1px solid #e2e2e2;
}
.view-all span {
    font-size: 23px;
}
.view-all1 span {
    font-size: 23px;
}

/*header section css end*/

/*slider section css start    background-image:url(../images/homebanner.png);*/
.homeslider{   
      
    float: left;
    width: 100%;
position:relative	
}
.home-section-slider-section{

    width: 100%;
    margin: 0 auto;
    
}
.homeslider img{width:100%; position:relative}
.counter-overlay {
     background: rgba(15, 22, 30, 0.78) none repeat scroll 0 0;
    color: #ffffff;
     display: inline;
    float: left;
 
    width: 100%;
 
}
.width-center{width:70% !important; margin:0px auto}

.counter-overlay301 {
    background: rgba(15, 22, 30, 0.78) none repeat scroll 0 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    position: absolute;
    padding-top: 80px;
}



.homeslider h1{
color:#c8c6c6;
font-weight:normal;
font-size:30px;	
font-family: Roboto-Light;
text-align:center;
padding-bottom: 15px;
}
.slider-center{
width:72%;
margin:0px auto;
 
}
.serchnow-div{
width:100%;
float:left;
height:61px;
position:relative;
background:#fff;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
	 border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
}
.search-location{
width: 40%;
    float: left;
    padding: 0px 0px;
    position: absolute;
}
.search-location i{
color: #777777;
    font-size: 22px !important;
    padding: 20px 10px;
    float: left;

}
.search-location input
{
    color: #343434;
    font-family: Roboto-Light;
    font-size: 18px;
    vertical-align: bottom;
    margin-left: 0px;
    text-align: left;
    float: left;
    width: 90%;
    /* background: #ccc; */
    padding: 30px 0px;
    border-bottom: none;
}

.search-location input:focus {
    outline: none;
    border-bottom: none;
}
.search-div{
border-left: 1px solid #ccc;
    width: 42%;
    float: left;
    padding: 18px 0px;
    margin-left: 40%;
}
.searchbox{
width:100%;
border:none;	
  font-family: Roboto-Light;
      font-size: 18px;
	      color: #777777;
}
.searchbox:focus{border:0px}
.subscribe-email{border:0px}
.myneedhelp-menu li a {outline: 0;}
.searchbox::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #bbb7b7;
  
}
.myneedhelp-menu li > a:hover, .nav > li > a:focus{color:#71ba3f;}
.searchbox::-moz-placeholder { /* Firefox 19+ */
 color: #bbb7b7;
}
.searchbox:-ms-input-placeholder { /* IE 10+ */
 color: #bbb7b7;
}
.searchbox:-moz-placeholder { /* Firefox 18- */
  color: #bbb7b7;
}

.search-button-div {
	float:left;
	background:#71ba3f;
width:18%;
	    padding: 18.3px;
	  text-align:center;
	      border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
    position: absolute;
right:0	;border: none;
}
.search-button-div span{
color:#fff;	
  font-family: Roboto-Light;
  font-size:18px;
  color:#fff;
 
      text-transform: uppercase;
}
 .home-services{
width:100%;
float:left;	
}
.slider-center1{
width:74.4%;
margin:0px auto;
}	
.serivces-img{
display:block;
margin:auto;	
}
.home-services h5{
text-align:center;
font-size:14px;	
font-family: Roboto-Light;
color:#373737;
padding-top:10px;
    margin-bottom: 3px;
}
.home-div{
      box-shadow: 0px 6px 30px 2px rgba(44, 38, 40, 0.27);
    background: #fff;
    margin-top: -45px;
    padding-top: 32px;
	
}
.rightarrow1{
    color: #71ba3f;
    text-align: center;
    display: block !important;
    font-size: 20px !important;
    padding-bottom: 25px;
}
 .slider-center1 a:hover{
    color: #373737;
text-decoration:none;	
 }
 


/*lider section css end */


/*needhelp-home div css start*/
.needhelp-home{
width:100%;	
float:left;
    padding-bottom: 30px;
}
.needhelp-home h1{	
text-align:center;
text-transform:uppercase;
   color: #71ba3f;
   font-size:23px;
   font-family: Roboto-Regular;
      letter-spacing: 1px; 
}
.needhelp-home-p{
text-align:center;
color:#565b5f;
font-size:17px;
}
.needhelp-margin{
margin-top:15px	
}
hr.borderwhite-sm1 {
    max-width: 100px;
    border-color: #71ba3f;
    border-width: 3px;
    margin: 0px auto;
     padding-bottom: 50px;
    margin-top: 10px;
}
.needhelp-left{
width:55%;
float:left;	
}
.needhelp-right{
width:45%;	
float:left;	
}
.training-section{
width:49.2%;
float:left;
background:#f5f5f5;
    border: 1px solid #e6e5e5;
    border-radius: 2px;
	    padding: 25px 14px 0px;
		 min-height: 240px;
		 position:relative

}
.circle-div {
    width: 80px;
    height: 80px;
    background: #6eb83a;
    border-radius: 50%;
    display: block;
    margin: 0px auto;
    text-align: center;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}

.training-section:hover .circle-div{
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.needhelp-left img{
width:100%;
float:left;	
    min-height: 484px;
    max-height: 484px;
}
.needhelp-right h3{
text-align:center;
text-transform:uppercase;
color:#6eb83a;
font-size:16.4px;
font-family: Roboto-Regular;
    margin-top: 9px;
    margin-bottom: 5px;
}
.needhelp-right p{
text-align:center;
font-size:12.3px;
color:#7d7f7c;
line-height:19px;
}
.circle-div1 img {
    padding: 23px 13px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.circle-div2 img{
    padding: 18px 13px;
}
.circle-div3 img{
    padding: 11px 11px;
}
.circle-div4 img{
padding: 24px 16px;
}
.arrow-bottom{
    display: block;
    margin: auto;
    position: absolute;
    /* top: 0; */
    bottom: 9px;
    left: 0;
    right: 0;	
}
.training-section:nth-child(2) {
    margin-left: 1.5%;	
}
.training-section:nth-child(3) {
   margin-top:4px;	
}
.training-section:nth-child(4) {
 margin-left: 1.5%;	
	margin-top:4px;	
}
.view-all{
 font-family: Roboto-Regular;
    text-transform: uppercase;
    color: #6eb83a !important;
    font-size: 19px;
    border: 1px solid #6eb83a;
    padding: 10px 25px;
    border-radius: 2px;
    margin-top: 40px;
    font-size: 18px;
}
.view-all a{color: #6eb83a; text-decoration:none;}
.view-all:hover{
text-decoration:none;
background: #6eb83a;
    color: white !important;
}
.viewall-help{
width:100%;
float:left;	
margin-top:40px
}
.viewall-help a{color: #71ba3f;}

.eduction-type-div h3 a{color: #7f7f7f;}

/*needhelp-home div css end */


/*homemedial-section div css start*/
.homemedial-section{
width:100%;
float:left;	
background-image:url(../images/medicalbanner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;	
}
.homemedial-section h1{
    text-align: center;
    text-transform: uppercase;
    color: #71ba3f;
    font-size: 23px;
    font-family: Roboto-Regular;
    letter-spacing: 1px;
}

.medical-p{
color:#7b7d7b !important;	
 font-family: Roboto-Light !important;
 font-size:20px !important;
 text-align:center;
 padding-bottom: 30px;
}
hr.borderwhite-sm2 {
    max-width: 100px;
    border-color: #71ba3f;
    border-width: 3px;
    margin: 0px auto;
    padding-bottom: 8px;
    margin-top: 17px;
}
.medical-help{
width:26.5%;
float:left;
background:#e4e7e7;	
    max-height: 410px;
    min-height: 410px;
	   -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    -moz-transition: -moz-transform .5s ease-in-out;
}
 .medical-help:hover{
-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
 
 
}

.medical-help:nth-child(2){
margin-left: 59px;
}
.medical-help:nth-child(3){
margin-left: 59px;
}
.medical-help:nth-child(4){
margin-left: 59px;
}


.homemedial-section h2{
    color: #71ba3f;
    font-size: 26px;
    font-family: Roboto-Regular;
text-transform:uppercase;
    padding-left: 20px;
    padding-right: 20px;	
}
.homemedial-section h2 a{color: #71ba3f; text-decoration:none;}
.homemedial-section p{
	    padding-left: 20px;
    padding-right: 20px;
	    color: #969393;
    font-family: Roboto-Light;
	font-size:16px;
	line-height:22px
}
.medical-help img{
width:100%;	
min-height: 240px;
    max-height: 240px;
}
.homemedial-overlay{
    background: rgba(224, 227, 228, 0.78);
    color: #ffffff;
    display: inline;
    float: left;
    padding: 10px 0px 17px; 
    width: 100%;	
}
.homemedial-center{
background:#fff;
    padding: 0px 0px 38px;
}
.view-all1{
    font-family: Roboto-Regular;
    text-transform: uppercase;
    color: #6eb83a !important;
    font-size: 19px;
    border: 1px solid #6eb83a;
    padding: 10px 25px;
    border-radius: 2px;
    margin-top: 40px;
    font-size: 18px;
}
.view-all1 a{color: #6eb83a; text-decoration:none;}
.view-all1:hover{
text-decoration:none;
background: #6eb83a;
    color: white !important;
}
.view12{
	margin-top:38px
}
 
.fileText{ 
    background-image: url(../images/uploadimages.png);
    background-position: center center;
    background-repeat: no-repeat;
}	
 
/*homemedial-section div css end */

/*environmental-section div css start*/
.environmental-section{
width:100%;	
float:left;	
}

.environmental-section h1{
font-size:30px;
text-align:center;
color: #71ba3f;	
    padding-top: 30px;
    text-transform: uppercase;	
}
.environmental-p{
text-align:center;
font-size:18px;	
color:#716f6e;
}


.environmental-section2{
  /*background-image:url(../images/environmental-banner.png);
       background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;*/
    float: left;
    width: 100%;
    position: relative ;
 	
}
.environmental-section2 img{width:100%;}
.right-section-env{    float: right !important;
    position: absolute !important;
    /* left: 0; */
    right: 37px;
    top: 0;
     }
     
.enviromental-imgs321{width:100%}
.environmental-col1{
    background: rgba(0, 0, 0, 0.8);
    width: 47% !important;    height: 100%;	
}
.environmental-inner{
width:100%;	
float:left;	
    padding: 0px 40px 0px 40px;
	   -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    -moz-transition: -moz-transform .5s ease-in-out;
}
.environmental-inner:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.environmental-section2 h3{
	color:#5ca030;
	font-size:20px;
  font-family: Myriad-Pro;	
      text-transform: uppercase;
}
.environmental-section2 h3 a{color:#5ca030;text-decoration:none;}
.environmental-section2 p{
    color: #e6e5e5;
    font-size: 15px;
    line-height: 20px;
  font-family: Myriad-Pro;	
}
.environmental-center{
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 1px solid #71ba3f;
    display: block;
    margin: 15px auto 0px;	
}

.environmental-center img{    border-radius: 100%;
    width: 100%;
    height: 100%;}
.environmental-help1{
width:25%;
float:left	
}
.environmental-help2{
width:70%;
float:left		
}
.environmental-img1{
 padding: 14px 15px;		
}
.environmental-img2{
    padding: 13px 11px;		
}
.environmental-img3{
 padding: 12px 15px;		
}
.environmental-img4{
 padding: 23px 21px;		
}
.environmental-inner:nth-child(1)
{
margin-top:30px;		
}
.environmental-inner:nth-child(4)
{
margin-bottom:30px;		
}
 
/*environmental-section div css end */

/*testimonial css start*/
.testimonial{
width:100%;	
float:left;
    padding-bottom: 65px;
}
.testimonial h1{
 font-family: Roboto-Regular;
 font-size:30px;
 text-transform:uppercase;
 text-align:center;
     color: #71ba3f;
    padding-top: 30px;	 
}
.testimonial-p{
color:#000;
font-size:20px;	
font-family: Myriad-Pro;
text-align:center;
    padding-bottom: 40px;	
}

/* carousel */
#quote-carousel 
{
 
  margin-top: 30px 0px 0px;
}

/* Control buttons  */
#quote-carousel .carousel-control
{
  background: none;
  color: #222;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
}
/* Previous button  */
#quote-carousel .carousel-control.left 
{
  left: -12px;
}
/* Next button  */
#quote-carousel .carousel-control.right 
{
  right: -12px !important;
}
/* Changes the position of the indicators */
#quote-carousel .carousel-indicators 
{
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li 
{
  background: #c0c0c0;
}
#quote-carousel .carousel-indicators .active 
{
  background: #333333;
}
#quote-carousel img
{
  width: 250px;
  height: 100px
}
/* End carousel */

.item blockquote {
    border-left: none; 
    margin: 0;
 padding: 0px;
}

.item blockquote img {
    margin-bottom: 10px;
    border: 2px solid #9a9a9a;
    padding: 7px;
    width: 130px !important;
    height: 130px !important;
}
/*
.item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}
*/



/**
  MEDIA QUERIES
*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    #quote-carousel 
    {
      margin-bottom: 0;
      
      margin-top: 30px;
    }
    
}

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) { 
    
    /* Make the indicators larger for easier clicking with fingers/thumb on mobile */
    
    #quote-carousel .carousel-indicators {
        bottom: -20px !important;  
    }
    #quote-carousel .carousel-indicators li {
        display: inline-block;
        margin: 0px 5px;
        width: 15px;
        height: 15px;
    }
    #quote-carousel .carousel-indicators li.active {
        margin: 0px 5px;
        width: 20px;
        height: 20px;
    }
}

.testimonial-div{
background:#222525;
float:left;
width:100%;	
    padding-bottom: 15px;
}
.testimonial h2{
    font-family: Myriad-Pro;
    font-size: 19px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
}
.testimonial h2 span{
    color: #92ea59;
    text-transform: capitalize;
    font-weight: normal;
    padding-left: 10px;
	
}
blockquote p{
font-family: Roboto-Regular;
    color: #539926;
    font-size: 17px;
    line-height: 25px;
}
 .carousel-indicators li{
border-radius:0 !important;	 
 }
 #quote-carousel .carousel-indicators10{
     bottom: -60px;	 	 
 }
 .carousel-indicators10 li{
     width: 15px !important;
    height: 15px !important;   
 }
 #quote-carousel .carousel-indicators10 .active{
 width: 15.5px !important;
    height: 15.5px !important; 	 
 }
/*testimonial css end */


/*footer css start*/
footer{
width:99.7%;	
float:left;
background:#eeeeee 
}
.footer-center{
 
    margin: 70px auto;
}
.footerlogo{
display:block;
 
}
.footer-col-1{
width:8%;
float:left;	
}
.footer-col-main{
width:92%;	
float:left;	
}
.footer-col-2{
width:65%;
float:left;	
}

.footer-col-3{
width:32%;
float:right;	
}
.footer-ul{
width:100%;
float:left;	
}
.footer-ul li {
 
}
.footer-ul li a{
    color: #373737;
    float: left;
    font-size: 14px;
    font-weight: bold;
    padding: 25px 40px 0px 0px;
}
.footer-ul li a:hover{
text-decoration:none;	
    color: #71ba3f;
}
.footer-about{
font-size:12px;
color:#929292;
font-family: Roboto-Light;
line-height:23px	
}
.app-download{
float:right;	
}
.app-download img{
padding-left: 15px;	
}
.subscribe-span{
    color: #636363;
    font-family: Roboto-Light;
    font-size: 12px;
    float: left;
    padding-top: 25px;
	padding-bottom:8px;
	width:100%;
	text-align:right
}
.subscribe-email{
    width: 70%;
    float: left;
    padding: 7px 10px;
    border: 1px solid #d6d5d5;
    border-radius: 2px;
	border-right: none;
	    background: #fff;
}
.subscribe-form{
width:100%; 
float:left;	
}
.subscribe-form input{
height:38px;	
}
.subscribe-btn{
    background: #71ba3f;
    color: #fff;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 7px 7px 8px;
    width: 30%;
	
}
.footer-social{
 
float:right;	
}
.footer-social li{
	float:left;
	padding:10px 0px 0px;
	font-size:12px;
	color:#929292
}
.footer-social li:nth-child(1){
    padding-top: 25px;
}
.footer-social li a img{
    padding: 14px 15px;	
}
.footer-col-4{
	width:60%;
	float:left;
}
.footer-col-5{
	width:40%;
	float:right;
}
.footer-ul2 li a{
font-size:14px;	
}
.footer-bottom-line{
width:100%;
float:left;
border-bottom:1px solid #ccc;
    padding-bottom: 3px;
}
.footer-bottom-last{
float:right;
width:85.4%;
}	
.copyrights{
    font-size: 12px;
    color: #929292;
    margin: 0px;
    padding: 12px 0px;
}
/*footer css end */

/*education-help-category page css start*/
 
.serch-now{
    position: relative;
    width: 305px;
    border: 1px solid #dddddd;
  padding: 9px 68px 9px 11px;
	background: #f6f6f6;
    border-radius: 4px;	
}
.search-btn{
    background: #71ba3f;
    color: #fff;
    border: none;
    padding: 6px 23px;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0px;
    /* left: 0; */
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.search-ul{
    margin-left: 130px;
    width: 306px;
    float: left;
    position: relative;
    margin-top: 15px;
    margin-bottom: 0px;	
}

.serch-now::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #acadae;
  
}
.serch-now::-moz-placeholder { /* Firefox 19+ */
 color: #acadae;
}
.serch-now:-ms-input-placeholder { /* IE 10+ */
 color: #acadae;
}
.serch-now:-moz-placeholder { /* Firefox 18- */
  color: #acadae;
}
 .marginBottom-0{margin-bottom:13px !important;}

.education-help-banner{
width:100%;
float:left;	
 /*
background-image:url(../images/eduction-help.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;	 
min-height:400px;
max-height:400px;	*/ 
}
.education-help-banner img{
width:100%;	
float:left;	
min-height:390px;
max-height:390px;
}
.counter-overlay20 {
    background: rgba(8, 8, 8, 0.50) none repeat scroll 0 0;
   height:390px;
    width: 100%;
    position: absolute;
}
.education-help-banner h1{
font-size:40px;	
color:#d1d1d1;
text-align:center;
font-family: Roboto-Regular;
padding-top:130px	
}
.breadcrumb-div{
width:100%;	
float:left;	
}
 .breadcrumb-div ul {
width:100%;
float:left;	 
 }
.breadcrumb-div ul li a{
    color: #7b7d7b;
    float: left;
    font-size: 14.4px;
    text-transform: capitalize;
    padding: 12px 12px 0px 0px;
}
.breadcrumb-div ul li a:hover{
text-decoration:none;	
}
.breadcrumb-div ul > li.active-breadcrumb a{
color:#539926;	
}

.eduction-type-div{
width:100%;	
float:left;	
padding-bottom:50px
}
.eduction-type-div-center{
width:70%;
margin:50px auto;	
}
.study-section a{
width:100%;
float:left;	cursor: pointer;
    padding-top: 15px;
    padding-bottom: 15px;
}
.study-section a:hover{}
.study-section1{
width: 50px;
    float: left;
    margin-right: 15px;    height: 50px;

}
.study-section2{

float:left;	
}
.study-section3{
width: 26px;
    float: right;
    margin: 13px 0px 0px 0px;	
}
.eduction-type-div h3{font-family: Roboto-Regular;color: rgb(66, 66, 66);font-size: 18px;margin:0px; padding:10px 0px;
font-weight: normal;}
.rightarrow{
 display: block;
    margin: auto;
}
.eduction-type-div h3:hover{color:#71ba3f;}
  .study-section-white{
	background:#fff !important;float: left;
    width: 100%;border-bottom: 1px solid #efefef;
    padding: 0px;height:75px;
 }
  .study-section-grey{ background:#f8f8f8;border-bottom: 1px solid #efefef;float: left;
    width: 100%;   padding: 0px;height:75px;} 
 /*.study-section a:nth-child(odd){
	background:#f8f8f8;border-bottom: 1px solid #efefef; 
 }*/
 .ptb10{padding-top:10px !important;padding-bottom:10px !important;}
 .eduction-type20{
	width:100%;
float:left;
box-shadow: 0px 0px 17px 0px rgba(179, 179, 179, 0.45);
padding: 20px 30px;
border-radius: 6px 6px 6px 6px;
 }
 .eduction-img10{
    display: block;
    margin: auto;	
    /*width: 40px;*/     height: auto;margin:5px 10px;
 }
/*education-help-category page css end*/
.serch-bar input:focus {
    outline: none;
    border-bottom: 1px solid #dddddd;
}
.subscribe-form input:focus {
    outline: none;
    border-bottom: 1px solid #dddddd;
}

.serch-bar{    width: 300px;
    float: right !important;
    /*margin-top: 15px;
    margin-bottom: -5px; margin-right: 8px;*/
    position: relative;
   
}

.navbar-header{
    height: 75px;
    width: 130px;	
}
.search21{
background:#f6f6f6;
border:1px solid #dddddd;
width:100%;	
    padding: 20px 12px;
	padding-right:65px
}
.search21::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #373737;
  
}
 
.search21::-moz-placeholder { /* Firefox 19+ */
 color: #373737;
}
.search21:-ms-input-placeholder { /* IE 10+ */
 color: #373737;
}
.search21:-moz-placeholder { /* Firefox 18- */
  color: #373737;
}
.search-btn10{
float: right;
    background: #71ba3f;
    position: absolute;
    right: -4px;
    top: 0;
    bottom: 0;
    padding: 15px 22px 14px 22px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;	
	cursor:pointer;
}
 

/*responsive media query css start */
 
@media screen and (max-width:767px) {
	.fixed-size{width:auto !important;}
	.fixed-size1{width:auto !important;}
	.footerlogo{margin:0px auto;}
	.navbar-header{
	width:100%	
	}
	.myneedhelp-menu {
    margin-top: 0px !important;
}
.serch-bar{
width:100%;
margin-top: 0px;	
}
.mylogo{
margin-top:0px;
width:65px;	
}
.top-header p img{
padding-right: 1px;
    padding-left:2px;	
}
.top-header p{
	    float: left;
    margin: 3px 0px 3px;
    font-size: 12px;
}
.navbar-inverse .navbar-toggle{
 border-color:transparent !important;	
}
.navbar-inverse .navbar-toggle .icon-bar{
background-color:#67bc31 !important;	
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus{
background-color:transparent !important		
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{
 border-color:transparent !important;		
}
.myneedhelp-menu li:nth-child(3) {
    border-right: none;
}
.button-self{
    margin-left: 0px;
    margin-right: 0px;
    width: 133px;  	
}
.homeslider h1{
font-size:25px	
}

.search-location{
    width: 100%;
    position: relative;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    padding-top:8px;
    padding-bottom: 8px;
}
.search-button-div{
    position: relative;
    width: 100%;
    border-radius: 7px;
    padding: 10px 15px;
}
.search-div{
    border-left: none;
    margin-left: 0px;
    background: #fff;
    width: 100%;
    position: relative;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.serchnow-div{
	background:transparent;
}
.searchbox{
	font-size:15px;
}
.search-location i{
font-size: 18px !important;	
}
.search-location span{
font-size:14px;	
}
.navbar-toggle{
    margin-bottom: 0px !important;
    margin-top: 17px !important	
}
.home-div{
margin-top:10px	
}
.needhelp-left{
width:100%;	
}
.needhelp-right{
width:100%	
}
.needhelp-left img{
    min-height: 100%;
    max-height: 100%;	
}
.training-section{
width:100%	
}
.training-section:nth-child(2){
margin-left:0%;	
}
.training-section:nth-child(3){
margin-left:0%;	
}
.training-section:nth-child(4){
margin-left:0%;	
}

.medical-help{
width:100%	
}
.medical-help:nth-child(2)
{
    margin-left: 0px;	
}
.medical-help:nth-child(3){
	margin-left: 0px;	
}

.medical-help:nth-child(4){
margin-left: 0px;		
}
.environmental-section h1{
    font-size: 23px;	
}
.environmental-col1{
width:100% !important	
}
.environmental-help1{
width:100%	
}
.environmental-help2{
width:100%;	
}
.environmental-inner {
 
    padding: 0px; 
    text-align: center;
}
.testimonial h1{
font-size:23px;	
}
.testimonial-p{
    font-size: 17px;
}
#quote-carousel .carousel-indicators{
    bottom: -60px !important;
}
.homemedial-section h2{
    font-size: 22px;	
}
.testimonial-div{
	padding-top: 15px;
}
.footer-col-1{
width:100%	
}
.footer-col-main{
width:90%;	
margin:0px auto !important;
float:none	
}
.footer-col-2{
width:100%	
}
.footer-col-3{
width:100%	
}
.footer-col-4{
width:100%	
}
.footer-col-5{
width:100%	
}
.footer-ul li a{
    font-size: 12px;
    padding: 10px 20px 0px 0px;	
}
.app-download img{
padding-left:0px	
}
.footer-social li a img {
    padding: 14px 11px;
}
.subscribe-btn{
    font-size: 12px;
    padding: 12px 4px 7px;	
}
.footer-center{
margin-top:20px	
}
.footer-social{
float:left;	
}
.footer-bottom-last {
    float: none;
    width: 90%;
    margin: auto;
}
}

 @media only screen and (min-width : 768px) and (max-width : 900px)
 {
	 .footerlogo{margin:0px auto;}
	 .serch-bar{
	width: 272px;	 
	 }
	 .nav > li > a{
	padding: 0px 5px 0px !important 
	 }
	 	.fixed-size{width:auto !important;}
	.fixed-size1{width:auto !important;}
	.search-location{
    width: 100%;
    position: relative;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    padding-top: 0px;
    padding-bottom: 0px;height: 40px;
}
.search-button-div{
    position: relative;
    width: 100%;
    border-radius: 7px;
    padding: 10px 15px;
}
.search-div{
    border-left: none;
    margin-left: 0px;
    background: #fff;
    width: 100%;
    position: relative;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    padding-top: 6px;
    padding-bottom: 10px;
}
.serchnow-div{
	background:transparent;
}
 
.search-location i{
font-size: 18px !important;	
}
.search-location span{
font-size:14px;	
} 


.home-div{
margin-top:15px	
}
.needhelp-left{
width:40%;	
}
.needhelp-right{
	width:60%
 }
.medical-help{
width: 32%;	
}
.medical-help:nth-child(2) {
    margin-left: 10px;
}
.medical-help:nth-child(3) {
    margin-left: 5px;
}
.medical-help:nth-child(4) {
    margin-left: 5px;
}
.homemedial-section h2{
font-size:22px	
}
.environmental-inner{
padding:0px	
}
.environmental-center{
width:78px;
height:78px	
}
.environmental-help2{
padding-left:10px	
}
.environmental-inner{
padding:0px	
}

.footer-col-1{
width:100%	
}

.footer-col-2{
width:100%	
}
.footer-col-5{
float:left;	
}
.footer-social{
float:left;	
}
.footer-col-4{
width:50%;	
}
.footer-col-3{
width:50%;	
}
.footer-ul li a{
padding: 25px 16px 0px 0px;	
}
.footer-social li a img{
padding: 14px 12px;	
}
.footer-col-main{
width:90%;
margin:0px auto;	
float:none;
}
.footer-center{
margin-top:25px;	
}
 }
  @media only screen and (min-width : 901px) and (max-width : 1024px)
  
  {
	  
	   .serch-bar{
	width: 270px;	 
	 }
	 .nav > li > a{
	padding: 0px 5px 0px !important 
	 }
		.fixed-size{width:auto !important;}
	.fixed-size1{width:auto !important;} 
	 
.search-location{
width:27%
}	
.search-div{
width:50%;
margin-left:28%	
}
.slider-center{
width:80%
	
  }
 .search-button-div{
padding: 18px;	 
 }
 .home-div{
	margin-top:10px 
 }
 .needhelp-left{
width:40%	 
 }
  .needhelp-right{
width:60%	 
 }
 .medical-help{
width: 32%;	
}
.medical-help:nth-child(2) {
    margin-left: 10px;
}
.medical-help:nth-child(3) {
    margin-left: 5px;
}
.medical-help:nth-child(4) {
    margin-left: 5px;
}
.environmental-center{
width:78px;
height:78px	
}
.environmental-help2{
padding-left:10px	
}
.environmental-inner{
padding:0px	
}
.footer-col-1{
width:100%	
}

.footer-col-2{
width:100%	
}
.footer-col-5{
float:left;	
}
.footer-social{
float:left;	
}
.footer-col-4{
width:50%;	
}
.footer-col-3{
width:50%;	
}
.footer-ul li a{
padding: 25px 16px0px 0px;	
}
.footer-social li a img{
padding: 14px 12px;	
}
.footer-col-main{
width:90%;
margin:0px auto;	
float:none;
}
.footer-center{
margin-top:25px;	
}
  }
 @media only screen and (min-width : 1025px) and (max-width : 1200px)
 {
	.environmental-help2{
padding-left:10px	
} 
	.environmental-inner{
padding:0px	
} 
.search-location{
	width:24%
 }
 .search-div{
width: 59%;
margin-left: 23%;	 
 }
 .footer-ul li a{
padding: 25px 30px 0px 0px;	 
 }
 .footer-col-1{
width:10%	 
 }
 .footer-col-main{
width:90%	 
 }
 .subscribe-btn{
padding: 11px 7px 9px;
font-size: 11px;
 }	 
 }
 
  
  
/*responsive media query css end */




/*success-story page css start*/
 .success-story-section{
	width:100%; 
	float:left; 
 }
 .success-story-section h3{
    text-align: center;
    text-transform: uppercase;
    color: #71ba3f;
    font-size: 21px;
    font-family: Roboto-Regular;
    letter-spacing: 1px;	 
 }
 .success-story-section h2{
    text-align: center;
    color: #565b5f;
    font-size: 22px;
    font-family: Roboto-Regular;
    /* letter-spacing: 1px; */
    font-style: italic;
    font-weight: normal;
    font-family: Roboto-Light;
    line-height: 27px;	 
 }
 .success-story-section h6{
text-align: center;
    color: #a2a5a7;
    font-size: 15px;
       font-family: Roboto-Light;
    font-style: italic;
    font-weight: normal;
    line-height: 27px;
    margin-top: 0;
 }
.story-hr{    width: 70%;
    margin: 0px auto;
	} 
 .mystory-img{width:100%;
     max-height: 480px;
    min-height: 480px;
	padding-bottom:20px;
 }
 hr.borderwhite-sm1 {
    max-width: 90px;
    border-color: #71ba3f;
    border-width: 3px;
    margin: 0 auto;
    padding-bottom: 27px;
    margin-top: 13px;
}
.story-quotes{
    font-family: Roboto-Light;
    font-size: 15px;
    color: #716f6e;
    border-left: 7px solid #71ba3f;
    padding: 7px;
    font-style: italic;	
}
.story-read{
    border: 1px solid #6eb83a;
    background: #6eb83a;
    font-family: Roboto-Light;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    padding: 8px 27px;
    margin-top: 20px;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
 
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
 
    margin-bottom: 20px;
}
.story-read:hover{
background: #6eb83a;
color: #fff;
text-decoration:none;	
}
.recent-story{
    width: 100%;
    float: left;
    box-shadow: 1px 4px 20px -4px #8e8e8e;
    padding: 10px;
    margin-bottom: 10px;
}
.recent-story-section1{width:50%; float:left;}
.recent-story-section2{width:50%; float:left; padding-left: 20px;}
.recentstory-img{width:100%;    min-height: 100px;
    max-height: 100px;}
.success-story-section h1{
    font-family: Roboto-Light;
    color: #565b5f;
    font-size: 15px;
    margin-top: 9px;
    font-weight: bold;
    border-bottom: 2px dotted #ccd0d4;
    padding-bottom: 4px;
}
.success-story-section h5{
    font-family: Roboto-Light;
    color: #a2a5a7;
    font-style: italic;
    font-size: 13px;
}
 .add-story-section{
width:100%;	 
	 /*background-image:url(../images/helpchild.jpg);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;	 
min-height:183px;
max-height:183px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
 }
 .overlay-story{
    background: rgba(74, 74, 74, 0.5) none repeat scroll 0 0;
    height: 183px;
    width: 100%;	 
	 
 }
 .add-your-storys{
    font-family: Roboto-Light;
    color: #a2a5a7;
    /* position: absolute; */
    text-align: center;
    background: rgba(68, 68, 68, 0.71);
    padding: 19px 72px;
    /* border: 1px solid #6eb83a; */
    /* background: #6eb83a; */
    font-family: Roboto-Light;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 12px 47px;
    margin-top: 50px;
    display: inline-block;
    font-size: 23px;
    line-height: 1.2;
    text-align: center;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    /* margin-bottom: 20px; */
    letter-spacing: 1px;
    text-align: center;
	 
	 
 }
  .add-your-storys:hover{
	 text-decoration:none;
color:#fff;	 
  }
 .add-your-storys:hover{
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.story-container-center{
padding:40px 0px	
	
}
.left-section-scroll1{    width: 400px;
    float: left;
    position: relative;
    height: 780px;
    margin-left: -25px;}
.border-right-storypage{border-right:2px solid #71ba3f;margin-right:-5px;padding-right:21px}
 
 
 /*success-story page css end*/
 
 
 

.heading-main {
    float: left;
    width: 100%;
    height: auto;
    text-align: center;
    margin: 15px 0px 35px 0px;
}

.heading-int {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    width: 100%;
    background-image: url(heading-line.png);
    background-repeat: no-repeat;
    background-position: bottom;
    text-align: center;
    text-transform: uppercase;
    line-height: 70px;
    display: inline-block;
    padding: 0px 0px 0px 0px;
}




.heading-int span {
    color: #71ba3f;
}

.send-input{width: 65%;float: left;}
.send-otp{float: right;}
.send-otp {position: ABSOLUTE;
    TOP: 0PX;
RIGHT: 0PX;}
.send-otp a{
	    width: auto;
    background: #71ba3f;
    color: white !important;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 10px;
    margin: 5px 5px;font-weight:normal !important;
    font-family: Roboto-Regular;
    font-size: 14px;
    height: 40px !important;
    box-shadow: 0px 10px 10px 0px #dcdcdc;
}
/*Sign-up*/
.checkbox {
  padding-left: 20px; }
  .checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px; }
    .checkbox label::before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 17px;
      height: 17px;
      left: 0;
      margin-left: -20px;
      border: 1px solid #cccccc;
      border-radius: 3px;
      background-color: #fff;
      -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
      -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
      transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
    .checkbox label::after {
      display: inline-block;
      position: absolute;
      width: 16px;
      height: 16px;
      left: 0;
      top: 0;
      margin-left: -20px;
      padding-left: 3px;
      padding-top: 1px;
      font-size: 11px;
      color: #555555; }
  .checkbox input[type="checkbox"] {
    opacity: 0; }
    .checkbox input[type="checkbox"]:focus + label::before {
      outline: thin dotted;
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
    .checkbox input[type="checkbox"]:checked + label::after {
      font-family: 'FontAwesome';
      content: "\f00c"; }
    .checkbox input[type="checkbox"]:disabled + label {
      opacity: 0.65; }
      .checkbox input[type="checkbox"]:disabled + label::before {
        background-color: #eeeeee;
        cursor: not-allowed; }
  .checkbox.checkbox-circle label::before {
    border-radius: 50%; }
  .checkbox.checkbox-inline {
    margin-top: 0; }

.checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #428bca;
  border-color: #428bca; }
.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f; }
.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de; }
.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }
.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff; }

.checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c; }
.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff; }
 /*Sign-up*/
.alert-success .sucess-close{
	margin-top:-10px !important;opacity:0.8;
}