@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,100,700,100italic,300italic,400italic,700italic);

body {
  padding-top: 107px;
  background: #fff;
  font-family: 'Roboto-regular', sans-serif;
  font-weight: 300;
  color: #454545; font-size:15px;
  line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: 'Roboto-regular', sans-serif;
  color: #272727;
}

@font-face {
	font-family: 'Roboto-regular';
	src: url('../fonts/Roboto-Regular.eot');
	src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Regular.woff') format('woff'),
		url('../fonts/Roboto-Regular.ttf') format('truetype'),
		url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto-light';
	src: url('../fonts/Roboto-Light.eot');
	src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Light.woff') format('woff'),
		url('../fonts/Roboto-Light.ttf') format('truetype'),
		url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto-thin';
	src: url('../fonts/Roboto-Thin.eot');
	src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Thin.woff') format('woff'),
		url('../fonts/Roboto-Thin.ttf') format('truetype'),
		url('../fonts/Roboto-Thin.svg#Roboto-Thin') format('svg');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto-medium';
	src: url('../fonts/Roboto-Medium.eot');
	src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Roboto-Medium.woff') format('woff'),
		url('../fonts/Roboto-Medium.ttf') format('truetype'),
		url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
}

.Light49{ font-family:'Roboto-thin'; font-size:49px;}
a {
  color: #000;
  font-size: 15px;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #673ab7;
}
hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}
.gradiant {
  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}
.gradiant-horizontal {
  background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
}
.section-header {
  margin-bottom: 30px;
}
.section-header .section-title {
  font-size: 31px;
  color: #673ab7;
  /*text-transform: uppercase;*/
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 20px;font-family:'Roboto-medium';font-weight:500;
}
.section-header .section-title:before {
  content: "";
  position: absolute;
  width: 140px;
  bottom: 0;
  left: 50%;
  margin-left: -70px;
  height: 1px;
  background: #dd002b;
}
.section-header .section-title:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -11px;
  left: 50%;
  margin-left: -12px;
  border: 5px solid #fff;
  border-radius: 20px;
  background: #dd002b;
}
.btn {
  border-width: 0;
  border-bottom-width: 3px;
  border-radius: 3px;
}
.btn.btn-primary {
  background: #dd002b;
  border-color: #dd002b; border-radius:25px;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #e84a00;
}
.column-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
}
.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
  border-bottom: 1px solid #45aed6;
}
ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
ul.nostyle i {
  color: #45aed6;
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}


@media(min-width:767px) {
    .navbar {
        padding: 0px 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
    }
}



@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/*************************
*******Header******
**************************/
.navbar
{
  height: 105px;
}
.navbar.navbar-default {
  border: 0;
  border-radius: 0;
  margin-bottom: 0; background:#fff;
}
.navbar.navbar-default .navbar-toggle {
  margin-top: 20px;
}
.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 22px 15px 0px;
}
@media only screen and (min-width: 768px) {
  #main-menu.navbar-default {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  }
  
  #main-menu.navbar-default .navbar-nav > li > a {
    padding-top: 20px;
    padding-bottom: 15px; font-size:15px;font-family: 'Roboto-regular'; font-weight:700;
    text-transform: uppercase;
    color: #000;

  }
  .dropdown-menu li
  {
    margin-bottom: 5px;
    border-bottom: 1px dashed #333;
  }
  #main-menu.navbar-default .navbar-nav > li.active > a,
  #main-menu.navbar-default .navbar-nav > li.open > a,
  #main-menu.navbar-default .navbar-nav > li:hover > a {
    background: transparent;
    border-top: 0px solid #401176; color:#401176;
    border-bottom: 1px solid #401176;
  }
  #main-menu.navbar-default .dropdown-menu {
    padding: 0 20px;
    min-width: 220px;
    background-color: #eee;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-clip: inherit;
    margin-right: -203px;
    height: 240px;
    padding: 32px 0;
  }
  #main-menu.navbar-default .dropdown-menu .menu1
  {

  }
  #main-menu.navbar-default .dropdown-menu > li {
    border-left: 3px solid transparent;
    margin-left: -20px;
    padding-left: 17px;
    -webit-transition: border-color 400ms;
    transition: border-color 400ms;
  }
  #main-menu.navbar-default .dropdown-menu > li > a {
    border-top: 1px solid #404455;
    padding: 15px 0;
    color: #eeeeee;
  }
  #main-menu.navbar-default .dropdown-menu > li:first-child > a {
    border-top: 0;
  }
  #main-menu.navbar-default .dropdown-menu > li.active,
  #main-menu.navbar-default .dropdown-menu > li.open,
  #main-menu.navbar-default .dropdown-menu > li:hover {
    border-left-color: #45aed6;
  }
  #main-menu.navbar-default .dropdown-menu > li.active > a,
  #main-menu.navbar-default .dropdown-menu > li.open > a,
  #main-menu.navbar-default .dropdown-menu > li:hover > a {
    color: #45aed6;
    background-color: transparent;
  }
}
#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #45aed6;
}
#progressBar {
  margin-top: -4px;
  position: relative;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

#features {
  padding: 100px 0;
}
#features .media.service-box:first-child {
  margin-top: 80px;
}
#services {
  /*background: #f6f1ff;*/
  padding: 20px 0 0px;
}
.media.service-box {
  margin: 25px 0; text-align:center;
}


.media.service-box .pull-left {
  width:100%; padding-bottom:25px;
}
.media.service-box .pull-left > i {
  font-size: 42px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  border-radius: 100%;
  color: #4c4c4c;
  -webkit-box-shadow: inset 0 0 0 1px #d7d7d7;
  transition: background-color 400ms, background-color 400ms;
  position: relative;
}
.media.service-box .pull-left > i:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: -10px;

}

.media-body h4{ margin-bottom:15px; font-family:'Roboto-light'; font-size:22px; color:#454545;}
.media-body p{ line-height:20px;}
.media.service-box:hover .pull-left > i {
/*  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
*/  color: #000;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
#testimonial {
  background-size: cover;
  padding: 87px 0 80px 0;

}
/*--------------------------------*/
/*  5. Testimonal Area
/*--------------------------------*/
.parallax10 {
    background-image: url(../images/Testimonials-background.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonailfirst{
       font-size: 15px;
    color: #000000;
    font-weight: 600;
    font-family: sans-serif;
}
#testimonial4{
  overflow: hidden;
  min-height: 325px;
  position: relative;
}
#testimonial4 .carousel-inner{
  width: 100%;
  margin: auto;
}
#testimonial4 .carousel-inner:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
  padding: 0;
  width: 10px;
  height: 10px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
  padding: 0;
  width: 10px;
  height: 10px;
  border: none;
  margin: 2px 3px;
  background-color: #000;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control{
  top: 150px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
      border: 2px solid #3c107d;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
  left: 7%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right{
  right: 7%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header{
  top: 0;
    margin-top: 30px;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4{
   letter-spacing: 0.7px;
    color: #330a73;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    font-family: "Times New Roman", Georgia, Serif;
}

.testimonial4_slide{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 90px;
  height: 90px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
}

.testimonial4_slide p {
      color: #000;
    font-size: 17px;
    /*margin: 17px 0 0px 0;*/
    font-weight: 500;
    text-align: justify;
}

.testimonial4_slide h4 {
  color: #3c107d;
  font-size: 24px;
  font-weight: bold;
    margin-bottom: -2px;
}


@media only screen and (max-width: 480px){
  .testimonial4_control_button .carousel-control{
    display: none;
  }
    #testimonial4 {
    overflow: hidden;
    position: relative;
    height: 745px !important;
}
  .testimonial4_header{
    width: 95%;
  }
  .testimonial4_header h4{
    font-size: 20px;
  }
  .testimonial4_slide{
    width: 98%;
    padding: 5px;
  }
  .dropdown-menu img
  {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px){
  .testimonial4_control_button .carousel-control.left{
    left: 2%;
  }
  .testimonial4_control_button .carousel-control.right{
    right: 2%;
  }
  .testimonial4_header{
    width: 95%;
  }
  .testimonial4_slide{
    width: 98%;
    padding: 5px;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  .testimonial4_control_button .carousel-control.left{
    left: 5%;
  }
  .testimonial4_control_button .carousel-control.right{
    right: 5%;
  }
}

@-webkit-keyframes psBoxShadowEffect_2{
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
  -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes psBoxShadowEffect_2{
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.profile .social-icon a
{
    background: #673ab7 none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}

.profile .social-icon a .fa-linkedin:hover {
      background: #0077B5 none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}
/* End Testimonal Area */

/*--------------------------------*/
/*  15. Footer Area
/*--------------------------------*/
.footer .top-footer{
           background: #343434;
       padding: 35px 0px 1px;
      /* background: #132125 url(../images/footer.jpg) no-repeat 0 0;
  background-size: cover;*/
  color: #fff;
  background-color: ##1f1e1e;
      background: #191818;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
    margin-top: -19px;
  }

.footer .top-footer .fo-title h4 {
    font-family: inherit;
    color: #fff;
    padding-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #59246f;
}
.footer .top-footer .fo-title h5 {
    font-family: inherit;
    color: #999;
    margin-bottom: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

.small-border {
    height: 3px;
    width: 70px;
    margin: -12px 0 30px;
    background: #FFF;
    display: block;
}
.footer .top-footer .list-unstyled li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    /*padding-bottom: 10px;*/
}

.footer .top-footer .list-unstyled li span {
   color: #f6f5f5;
    font-size: 12px;
}

.footer .top-footer .list-unstyled li .fa {
    color: #ffffff;
    font-size: 15px;
}
.footer .top-footer .widget-latestposts .latest-content {
    margin-bottom: 20px;
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: -19px;
}
.latest-content span{
       font-size: 12px;
}
.footer .widget-latestposts .latest-content a {
     width: 95%;
    float: left;
    margin-right: 30px;
    color: #fff;
   line-height: 31px;
}

.footer .widget-latestposts .latest-content h6 {
    color: #ffffff;
    margin-bottom: 0;
    margin-top: -6px;
    line-height: 1.8em;
}

.footer .widget-latestposts .latest-content h6:hover {
    color: #ff6fa2;
}

.footer .widget-latestposts .latest-content span i {
   color: #f8f8f8;
    margin-right: 5px;
}

.footer #newsleter .form-group .form-control {
    float: left;
    position: relative;
    padding: 9px 20px;
    height: 40px;
    border: 1px solid #e1e1e1;
    font-style: italic;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -moz-border-radius: 0px;
    font-family: 'Bitter', serif;
    box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    outline: none;
    width: 80%;
}

.footer #newsleter .form-group > button {
        background: #360b5a;
    border: none;
    color: #FFFFFF;
    float: left;
    height: 40px;
    width: 20%;
    text-align: center;
    font-size: 15px;
    line-height: 35px;
}

.footer .top-footer .footer-gallery li {
    padding: 5px;
}

.footer .top-footer .social-icon li {
    /*margin-top: 20px;*/
}

.footer .top-footer .social-icon li a {
      background: #673ab7 none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}

.footer .top-footer .social-icon li a .fa-linkedin:hover {
      background: #0077B5 none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}

.footer .top-footer .social-icon li a .fa-facebook:hover {
      background: #3b5998 none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}
.footer .top-footer .social-icon li a .fa-google-plus:hover {
      background: #d34836 none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}
.footer .top-footer .social-icon li a .fa-twitter:hover {
      background: #0084b4 none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}
.footer .top-footer .social-icon li a .fa-youtube-play:hover {
      background: #c4302b none repeat scroll 0%;
    color: #FFF;
    display: inline-block;
    height: 35px;
    text-align: center;
    line-height: 2.6;
    width: 35px;
}

/*.footer .top-footer .social-icon li a:hover {
    color: #fff;
    background: #34a9e5 none repeat scroll 0% 0%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}*/

.footer .bottom-footer {
        padding: 3px 0px;
    border-top: 1px solid #262626;
    background: #1a1a1a;
}

.footer .bottom-footer p {
       margin-bottom: 6px;
    color: #a7a7a7;
}

.footer-logo img {
        width: auto;
}
.cl-white {
    color: #ffffff;
    text-align: justify;
}
.divider {
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: -moz-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -webkit-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -ms-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  width: 95%;
  height: 1px;
}
.progress {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #eeeeee;
}
.progress .progress-bar.progress-bar-primary {
  background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.nav.main-tab {
  background: #eee;
  border-bottom: 3px solid #222534;
  border-radius: 3px 3px 0 0;
}
.nav.main-tab > li > a {
  color: #272727;
}
.nav.main-tab > li.active > a {
  background: #222534;
  color: #45aed6;
}
.nav.main-tab > li:first-child > a {
  border-radius: 3px 0 0 0;
}
.nav.main-tab > li:last-child > a {
  border-radius: 0 3px 0 0;
}
.tab-content {
  border: 1px solid #eee;
  border-top: 0;
  padding: 20px 20px 10px;
  border-radius: 0 0 3px 3px;
}
.panel-default {
  border-color: #eee;
}
.panel-default > .panel-heading {
  background-color: #fff;
  border-color: #eee;
}
.panel-default > .panel-heading .panel-title {
  font-size: 14px;
  font-weight: normal;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #eee;
}
#animated-number {
  padding: 30px 0 30px;
  background: #132125 url(../images/bg.jpg) no-repeat 0 0;
  background-size: cover;
  color: #fff;
}
#animated-number h1,
#animated-number h2,
#animated-number h3,
#animated-number h4 {
  color: #fff;
}
#animated-number strong {
  display: block;
  margin-bottom: 30px; font-size:22px; font-family: 'Roboto-light'; text-transform:capitalize;
}
.animated-number {
  display: inline-block;font-family: 'Roboto-medium';
  width: 180px;
  height: 180px;
  font-size: 29px;
  line-height: 180px;
  border: 5px solid #fff;
  border-radius: 100px;
  margin-bottom: 20px;
}

#get-in-touch {
  padding: 60px 0 50px;
  color: #454545; background:#f1f1f1;
}
#get-in-touch h1,
#get-in-touch h2 {
  color: #454545;
}
#get-in-touch .address{ float:left; width:100%; margin-bottom:25px;}
#get-in-touch .address h4{ font-size:16px; color:#454545; margin:0px; padding-bottom:5px;}
#get-in-touch .address p{ font-size:16px; color:#454545; margin:0px; padding-bottom:5px;}
#get-in-touch .address a{ color:#454545;}

#get-in-touch .form-control{ height:40px;font-family: 'Roboto-regular'; color:#323232;}
#get-in-touch  textarea.form-control{ height:135px;color:#323232;}

#get-in-touch .btn.btn-primary{font-family: 'Roboto-medium'; font-size:22px; padding:8px 40px;}

#contact .container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 174, 214, 0.3);
  z-index: 1;
}
#contact .contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin-top: 50px;
}
#contact .contact-form h3 {
  margin-top: 0;
}

/* Contact Style Css */

.contact-style-1 {
    background: #f8f8f8;
    padding: 40px 10px 30px 10px;
    display: inline-block;
    position: relative;
}
.contact-style-1 h3 {
    text-align: center;
    color: #744588
}
.orange {
    color:#e52214;
}
.subtitle {
    font-size: 16px;
    font-weight: 700;
}

.padding20 {
    padding:20px;
}
.contact-style-1 p {
    text-align: center;
    margin-bottom: 30px;
}
.contact-style-1:before{
    content: "\f10d";
    font-family: FontAwesome;
    color: #e6d6c8;
    font-size: 400px;
    font-style: normal;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    margin: 0 auto;
    opacity: 0.25;
}
.contact-style-1 h3 {
    position: relative;
}
.contact-style-1 h3:before {
    top: .4em;
    content: "";
    height: 2px;
    left: 1.5em;
    margin: auto;
    position: absolute;
    width: 70px;
    background: #9f1b29;
}
.contact-style-1 h3:after {
    top: .4em;
    content: "";
    height: 2px;
    right: 1.5em;
    margin: auto;
    position: absolute;
    width: 70px;
    background: #9f1b29;
}
.form-group input,
.form-group textarea {
    background: transparent;
    border-color: #999;
}

.service-item {
    padding: 20px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-item.style-1 {
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-item.style-1 i:before {
    font-size: 30px;
}
.service-item.style-1 i {
    font-size: 30px;
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-item.style-1:hover i {
    background: transparent;
}
.service-item.style-1 .content {
    padding-left: 1em;
}
.service-item.style-1 .content h5 {
    font-size: 16px;
    margin-top: 0;
}
.service-item.style-1 .content h5 a {
    color: #744588;
}

.service-item.style-1 .content h5:hover a {
    color: #34a9e5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-item.style-1:hover i {
    color: #34a9e5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/***********************
********* Footer ******
************************/
#footer {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  background: #1b1a1a;
  background: #101010;
  border-top: 1px dashed #383333;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #dd002b;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
}
#footer ul > li {
  display: inline-block;
  margin: 0 7.5px;
}
@media only screen and (min-width: 768px) {
  #footer .social-icons {
    float: right;
  }
}
.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
  height: 40px;
  margin-bottom: 30px;
  border-radius: 0px;
}
.form-control:focus {
    border-color: #673ab7;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(103, 58, 183);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(103, 58, 183);
}
@media (min-width: 768px) and (max-width:999px) {
	#main-menu.navbar-default .navbar-nav > li > a{ padding-left:8px; padding-right:8px; font-size:15px;}
	#meet-team .team-member{ margin-bottom:25px;}
	#meet-team .team-member .team-img, #meet-team .team-member .team-info h3 { text-align:center;}
	#meet-team .team-member .team-info span { text-align:center; display:block;}
	
	}

@media (max-width:767px) {
	#meet-team .team-member{ margin-bottom:25px;}
	#meet-team .team-member .team-img, #meet-team .team-member .team-info h3 { text-align:center;}
	#meet-team .team-member .team-info span { text-align:center; display:block;}
	#blog .blog-post{ margin-bottom:20px;}

	}
	
@media (max-width:500px){
	#blog .blog-post.blog-large .entry-thumbnail img, .team-img img{ width:100%;}
	.animated-number{ height:130px; width:130px; line-height:130px; font-size:22px;}
	#animated-number strong{ font-size:17px;}
	#blog .blog-post.blog-large .entry-thumbnail{ padding-top:0px;}
	}
.dropdown-menu>li>a {
    padding: 15px 20px;
    border-bottom: 1px dashed #3f1873;
}

.dropdown-menu>li:last-child>a {
    border-bottom: none;
}

.navbar-nav>li:first-child>.dropdown-menu {
    left: 0;
}

.dropdown-menu>li>a:hover{
    padding-left: 30px;
}
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    color: #FFF;
    background-color: #3f1873;
}
.dropdown-menu {
    padding: 0;
}

.carousel-control.right
{
  background-image: none;
  }
  .carousel-control.left
  {
    background-image: none;
  }

.serviceBox{
    padding: 25px;
    margin: 0 20px 80px 0;
    border: 1px solid #ddd;
    position: relative;
    transition: all 0.3s ease 0s;
    height: 240px;
}
.serviceBox:hover{ border: 1px solid #2b336c; }
.serviceBox .service-icon{
    display: inline-block;
    font-size: 40px;
    color: #dd002b;
    margin-bottom: 10px;
}
.serviceBox .title{
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #2b336c;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.serviceBox .description{
    font-size: 15px;
    color: #777;
    line-height: 25px;
    margin: 0;
}
.serviceBox .read{
    display: inline-block;
    padding: 7px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #777;
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .read{ color: #fff; }
.serviceBox .read:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: skewX(-15deg);
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .read:after{
    background: #c0bfbd;
    border: 1px solid #c0bfbd;
}


.carousel-showmanymoveone
{
  .carousel-control
  { 
    width: 4%;
    background-image:none;

    &.left 
    {
      margin-left:15px;
    }

    &.right 
    {
      margin-right:15px;
    }
  }

  .cloneditem-1, 
  .cloneditem-2, 
  .cloneditem-3
  {
    display: none;
  }

  .carousel-inner
  {
    @media all and (min-width: 768px)
    {
      @media (transform-3d), (-webkit-transform-3d)
      {
        > .item.active.right,
        > .item.next
        { 
          transform: translate3d(50%, 0, 0);  
          left: 0;
        }

        > .item.active.left,
        > .item.prev
        { 
          transform: translate3d(-50%, 0, 0);
          left: 0;
        }

        > .item.left,
        > .item.prev.right,
        > .item.active
        {
          transform: translate3d(0, 0, 0);
          left: 0;
        }    
      } 

      > .active.left,
      > .prev
      {
        left: -50%;
      }

      > .active.right,
      > .next
      {
        left:  50%;
      }

      > .left,
      > .prev.right,
      > .active
      {
        left: 0;
      }

      .cloneditem-1 
      {
        display: block;
      }
    }

    @media all and (min-width: 992px)
    {    
      @media (transform-3d), (-webkit-transform-3d)
      {
        > .item.active.right,
        > .item.next
        { 
          transform: translate3d(25%, 0, 0);  
          left: 0;
        }    

        > .item.active.left,
        > .item.prev
        { 
          transform: translate3d(-25%, 0, 0);
          left: 0;
        }

        > .item.left,
        > .item.prev.right,
        > .item.active
        {
          transform: translate3d(0, 0, 0);
          left: 0;
        }
      }

      > .active.left,
      > .prev
      {
        left: -25%;
      }

      > .active.right,
      > .next
      {
        left:  25%;
      }

      > .left,
      > .prev.right,
      > .active
      {
        left: 0;
      }

      .cloneditem-2, 
      .cloneditem-3
      {
        display: block;
      }
    }    
  }
}

.partner
{
  padding:20px 0 20px;
}
.partner img
{
      border: 1px solid #431c79;
      margin-bottom: 10px;
}
.welcome
{
  padding: 20px 0 20px;
  /*background: #132125 url(../images/footer.jpg) no-repeat 0 0;
  background-size: cover;*/
  color: #000;
  background-color: #f5eeff;
}
.para
{
  text-align: justify;
  font-size: 16px;
}
.para p
{
  /*border-left: 5px solid #dd002b;*/
  padding: 3px;
}
.para1
{
  text-align: justify;
  font-size: 16px;
}

.topbar {
    background: #673ab7;
    padding: 10px 0px 10px 100px;
    position: relative;
    float: left;
    height: 40px;
    width: 100%;
}

.topbar::before,
.topbar::after {
    content: "";
    display: table;
}

.topbar::before {
    content: '';
    background: #673ab7;
    position: absolute;
    left: 100%;
    top: 0px;
    height: 40px;
    width: 100%;
}

.topbar::after {
    content: "";
    position: absolute;
    left: -49px;
    bottom: 0;
    top: -14px;
    width: 0;
    height: 0;
       border-top: 55px solid #673ab7;
    border-left: 50px solid transparent;
}
.fontsmiddle{
    padding: 3px 12px;
    font-size: 15px;
    border-radius: 3px;
       color: #fff;
       opacity: 0.7;
}
.fontsmiddle:hover{
    font-size: 15px;
    opacity: 1;
}
.ion-ios-lightbulb-outline{
        color: #3f1873;
}
.ion-ios-paperplane-outline{
    color: #3f1873;
}
.iconleft{
    color: #3f1873 !important;
}
.topbar span   {
    color: #fff;
    float: left;
    font-size: 12px;
    font-weight: 600;
    margin-right: 80px;
}

.topbar span em {
        color: #fff;
    font-size: 15px;
    font-family: serif;
    font-weight: 600;
}

.topbar ul {
    margin: 0px;
}

.topbar ul li a {
    color: #3f1873;
    font-size: 15px;
}

.topbar ul li a:hover {
    color: #3f1873;
}

.topbar > span:nth-child(2){
    margin-right: 5px;
}

.topbar .registration a {
    float: left;
    font-size: 11px;
    color: #555;
    font-family: montserrat;
    text-transform: uppercase;
    padding-left: 0px;
    margin-left: 0px;
}

.navbar-brand>img {
    display: block;
    margin-top: -53px;
    }

@media only screen and (max-width: 480px){
  .navbar-brand>img {
    display: block;
    margin-top: -24px;
    height: 67px;
    }
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7;
    background: #e7e7e7;
}
.topbar span
{
  margin-left: -77px;
}
.topbar > span:nth-child(2)
{
  float: right;
}
/*.topbar span em
{
  float: right;
    margin-top: -29px;
    margin-left: 85px;
}*/
}
.product
{
  padding-top: 30px;
  padding-bottom: 30px;
}
.product img
{
  border:1px solid #000;
}
.product p
{
  text-align: justify;
  /*font-size: 16px;*/
}
.side-product
{
  /*background: #f6f1ff;*/
}
.side-product h4
{
  text-transform: uppercase;
}
hr.style1
{
  border-top: 3px solid #c0bfbd;
}

.all-products
{
  /*background: #f6f1ff;*/
  padding-top: 30px;
}

.site
{
  padding:20px 30px;
  background-color: #c0bfbd;
}
.site p
{
      color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.bottopn1 {
    background-image: url(../images/texture1.png);
    height: 150px;
}
.bottopn1 h3 {
    text-align: center;
    margin-top: 27px;
    color: #fff;
    /*font-weight: 100;*/
    font-size: 38px;
    font-style: italic;
}
.botton {
    text-align: center;
    margin-top: 25px;
    /*margin-bottom: 93px;*/
}
.botton a {
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    padding: 10px 16px;
}

.panel-group .panel {
        border-radius: 0;
        box-shadow: none;
        border-color: #EEEEEE;
    }

    .panel-default > .panel-heading {
        padding: 0;
        border-radius: 0;
        color: #212121;
        background-color: #673ab7;
        border-color: #fff;
    }

    .panel-title {
        font-size: 14px;
    }

    .panel-title > a {
        display: block;
        padding: 15px;
        text-decoration: none;
        color: #fff;
    }
    .panel-title a:hover
    {
      color:#000;
    }
    .more-less {
        float: right;
        color: #fff;
    }

    .panel-default > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #EEEEEE;
    }

    .services
    {
      padding-top: 30px;
      /*padding-bottom: 30px;*/
    }
    .services img
    {
      border:2px solid #ddd;
    }
    .services h4
    {
    padding: 12px 10px;
    background-color: #c0bfbd;
    text-transform: uppercase;
    color: #fff;
    }
    .services p
    {
      padding: 3px 5px;
      text-align: justify;
    }

    .services-text
    {
      background: rgba(193, 192, 190, 0.91);
    bottom: 0;
    position: absolute;
    width: 92%;
  
    }
    .services-text h5
    {
      color: #fff;
      padding: 0 10px;
      border-bottom: 1px dashed #ddd;
    }
    .services-text p
    {
      border:none;
      color: #fff;
      /*padding: 0 10px;*/
    }

/*    .fa-icon
    {
      margin-top: 20px;
    }
    .fa-icon .fa
    {
      padding: 35px;
      color: #fff;
      background-color: #dc002b;
      border: 1px solid #673ab7;
      font-size: 36px;
    }

    .fa-icon .fa:hover
    {
      padding: 35px;
      color: #fff;
      background-color: #673ab7; 
      border: 1px solid #dc002b;
      font-size: 36px;
      box-shadow: 0px 8px 17px 0px #2b2b2b;
    }
*/
    .board
    {
      padding-top: 20px;
      padding-bottom: 20px;
    background-image: url(../images/bod-banner.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    }
    .board-item
    {
      background: #ffffffb5;
    padding: 32px 43px;
    border: none;
    transition: .5s ease;
    margin-bottom: 10px !important;
    text-align: center;
    height: 340px;
    border: 2px solid #673ab7;
    }
.board-item:hover
{
  border: 2px solid #673ab7;
  box-shadow: 6px 7px 9px 3px #2b2b2b;
  background: #fff;
}
  .board-item h4
  {
    margin-bottom: 18px;
    padding-top: 20px;
  }

  .business
  {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .business-item h4
  {
    margin-bottom: 18px;
    padding-top: 20px;
  }
  .business-item p
  {
    font-size: 16px;
  }
  .business-item:hover
  {
    transition-duration: 500ms;
    letter-spacing: 1px;
    color: #673ab7;
    font-size: 18px;
    font-weight: bold;
  }
  .techincal
  {
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: url(../images/bd-banner.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }
  .technical-item
  {
    background: #ffffffb5;
    padding: 32px 43px;
    border: none;
    transition: .5s ease;
    margin-bottom: 10px !important;
    text-align: center;
    border: 2px solid #673ab7;
  }
  .technical-item:hover
  {
    border: 2px solid #673ab7;
    box-shadow: 6px 7px 9px 3px #2b2b2b;
    background: #fff;
  }
  .technical-item h4
  {
    margin-bottom: 18px;
    padding-top: 20px;
  }

  .future
  {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #f3ecff;
  }

  .high img
  {
    padding: 5px 5px;
    border: 2px solid #c0bfbd;
  }

  .strengths
  {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .awesome {
      
 
      color:#313131;
      font-size:15px;
      text-transform: uppercase;
      font-weight: bold;
      -webkit-animation:colorchange 20s infinite alternate;
      
      
    }

    @-webkit-keyframes colorchange {
      0% {
        
        color: #dd012c;
      }
      
      10% {
        
        color: #8e44ad;
      }
      
      20% {
        
        color: #1abc9c;
      }
      
      30% {
        
        color: #d35400;
      }
      
      40% {
        
        color: blue;
      }
      
      50% {
        
        color: #34495e;
      }
      
      60% {
        
        color: blue;
      }
      
      70% {
        
        color: #2980b9;
      }
      80% {
     
        color: #f1c40f;
      }
      
      90% {
     
        color: #2980b9;
      }
      
      100% {
        
        color: pink;
      }
    }


    .gallery-title
{
    font-size: 36px;
    color: #673ab7;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}
.filter-button
{
    font-size: 18px;
    border: 1px solid #673ab7;
    border-radius: 5px;
    text-align: center;
    color: #673ab7;
    margin-bottom: 30px;

}
.filter-button:hover
{
    font-size: 18px;
    border: 1px solid #673ab7;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    background-color: #673ab7;

}
.btn-default:active .filter-button:active
{
    background-color: #673ab7;
    color: white;
}

.port-image
{
    width: 100%;
}

/*.gallery_product
{
    margin-bottom: 30px;
}*/

.btn-default:hover, 
.btn-default:focus, 
.btn-default.focus, 
.btn-default:active, 
.btn-default.active, 
.open>.dropdown-toggle.btn-default {
    color: #fff;
    background-color: #673ab7;
    border-color: #adadad;
}

.carousel-caption
{
  color: #fff;
}
.carousel-caption h1
{
  color: #fff;
}

@media screen and (min-width: 768px)
{
.carousel-caption 
{
    right: 20%;
    left: 20%;
    padding-bottom: 125px;
}
.carousel-caption h1
{
  font-size: 62px;
  color: #fff;
}
.carousel-caption p
{
  font-size: 21px;
}
}

@media screen and (max-width: 414px)
{
  .carousel-caption h1
{
  font-size: 25px;
  color: #fff;
}
.carousel-caption p
{
  display: none;
}
}

.history
{
  padding-top: 20px;
/*  background-image: url(../images/history.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;*/
}
/*.history p
{
  color: #fff;
}*/

.hd
{
  margin-bottom: 0px;
}

/* Let's get this party started */
/*::-webkit-scrollbar {
    width: 12px;
}*/
 
/* Track */
/*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;*/
}
 
/* Handle */
/*::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,0,0,0.8); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); */
}
/*::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255,0,0,0.4); */
}
.thanku
{
  background-image: url(../images/thanku.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
   /* background-color: #fff;*/
}

@media screen and (min-width: 768px){
.jumbotron {
    padding: 51px 0;
}
}

.capbox {
      padding: 5px;
    border: 1px solid #999;
  /*background-color: #C0BCBD;
  border: #B3E272 0px solid;
  border-width: 0px 12px 0px 0px;
  display: inline-block;
  *display: inline; zoom: 1;*/ /* FOR IE7-8 */
 /* padding: 8px 40px 8px 8px;*/
  }

.capbox-inner {
  font: bold 11px arial, sans-serif;
  color: #000000;
  /*background-color: #DBF3BA;*/
  margin: 5px auto 0px auto;
  padding: 3px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  }

#CaptchaDiv {
  font: bold 17px verdana, arial, sans-serif;
  font-style: italic;
  color: #673ab7;
  background-color: #FFFFFF;
  padding: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  }

#CaptchaInput { margin: 1px 0px 1px 0px; width: 135px; }
