:root {
  --nav-padding:20px;
}

body
{
	text-align:center;height:100%; width:100%;background-color:white;
	margin:0px;
	padding:0px;
}

/* Create a sticky/fixed navbar */
#navbar {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: var(--nav-padding) 0px; /* Large padding which will shrink on scroll (using JS) */
  transition: 0.4s; /* Adds a transition effect when the padding is decreased */
  position: fixed; /* Sticky/fixed navbar */
  width: 100%;
  top: 0; /* At the top */
  z-index: 99;
}

/* Style the navbar links */
#navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo */
#navbar #logo {
  font-size: 30px;
  font-weight: bold;
  transition: 0.4s;
}

.logo img
{
	width:100px;	
	height:auto;
}

/* Links on mouse-over */
#navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link */
#navbar a.active {
  background-color: dodgerblue;
  color: white;
}

/* Display some links to the right */
#navbar-right {
  float: right;
}
/* ----------------------------- Navigation ends here --------------------------------- */



#central_section
{
	width:100%;
	text-align:center;
	top: calc(var(--nav-padding)*2 + 30px);
	color:grey;
	position:absolute;
	z-index: 9;
}

.corossol
{
	width:100%;
	text-align:center;
	min-height:600px;
	background-image: url(http://rahainnovations.com/res/images/header.jpg);
	background-repeat:no-repeat;
	background-size: cover;
	padding-top:100px;
}


.new_banner ul li {
    font-size: 14px;
}

.new_banner ul li {
    display: block;
    font-size: 22px;
    padding: 5px;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #fff;
    border: 1px dotted #fff;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
}

.new_banner .btn_learn {
    margin-top: 20px;
    font-size: 16px;
}
.new_banner .btn_learn {
    margin-top: 40px;
    font-size: 22px;
    padding: 10px 30px;
    border-radius: 0px;
    border: 2px solid #fff;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.ser_section .android_c:hover {
    border-style: solid;
    webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px 0 rgba(88, 190, 70, 0.1);
}
.ser_section .android_c {
    border-color: rgba(88, 190, 70, 0.25);
}
.service_box {
    background-color: #fff;
    border-style: dashed;
    border-radius: 5px;
    webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0)-webkit-transition: all .4s ease;
    transition: all .4s ease;
    border-left: 5px solid;
    height: 100%;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}


.parallax {
  /* The image used */
 
  /* Full height */
  height: 200px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Add responsiveness - on screens less than 580px wide, display the navbar vertically instead of horizontally */
@media screen and (max-width: 580px) {

  #navbar a {
    float: none;
    display: block;
    text-align: left;
	padding:5px;
  }
  #navbar-right {
    float: none;
  }

}
