/***Main Body***/
html, body{
    margin: 0;
    padding: 0;
    height:100%;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}

.error {
    color: red;
 }

.success, .valid {
    color: green;
}

/**Main Page Backgrounds**/
/*.home-bg{
    background: url("../img/bgground.jpg");

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/

.parallax-bg{
    background: url("../img/bgground.jpg");
    /* Set a specific height */
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro{
    height:100%;
    width: 100%;
    margin: auto;
    display: table;
    top: 0;
    background-size:cover;
}

.intro .inner{
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    max-width: none;
}

.content{
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.content h1{
    color: #F9F3F4;
    text-shadow: 0px 0px 300px #000;
    font-size:150%;
    font-weight: 600;
}

/***Navigation Bar***/

.navbar{
    padding: 1%;
    -o-transition: all .6s;
    -moz-transition: all .6s;
    -webkit-transition: all .6s;
    -ms-transition: all .6s;
    transition: all .6s;
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 0.9em;
    font-weight: bolder;
    color:white;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
}

/*.navbar-brand{
    padding: 0 0px 0px;
    text-indent: -99999px;
}*/

.dropdown-menu{
    background-color: #f1f1f1;
}

.dropdown-menu a{
    color: black;
}

.dropdown-menu a:hover{
    background-color: #00B0F0;
}

/**Home**/

.intermediate_text{
    font-size: 25px;
    padding: 4%;
    color: white;
}

#serv-1{
    background-color:#43a6dc;
    color: white;
}

#serv-2{
    background-color:#E3E3E3;
}

#serv-3{
    background-color:#EE8E1D;
    color: white;
}

#req-demo{
    background-color:#94B4B4;
}

.serv-desc{
    padding: 4% 6% 4% 6%; 
}

.services-box img {
    -o-transition: all .8s; -moz-transition: all .8s; -webkit-transition: all .8s; -ms-transition: all .8s; transition: all .8s;
    height: 500px;
    width: 500px;
    padding: 2%;
    text-align: center;
}

.services-box p:nth-child(1) {
    font-size: 2.5em;
    text-align: center;
    margin-top: 5%;
}

.services-box div {
    font-size: 1.2em;
    line-height: 50px;
}

/***Request a demo***/
#req-demo
{
    padding: 4%;
}

#req-demo p
{
    font-size: 2.5em;
    color: white;
    font-weight: 600;
    text-align: center;
}

#req-demo form
{
    margin: 0 35% 0 35%;
    color: white;
}

/****Footer***/

footer {
	padding: 40px 0px 40px 0;
    background: #363636;
    /*background: black;*/
	color: #ffff;
    font-size:1em;
}

footer a{
    padding: 5px 5px 5px 10px;
}

.icons{
    height:40px;
    width: 40px;
}

.testimonals{
    padding:6% 6% 6% 6%;
    background-color: #ef5350;
    color:#cfd8dc;
}

/***Common***/
.fade-in {
    visibility: visible;
    opacity: 1;
    transition: opacity 1s linear;
  }
  
  .fade-out {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
  }

  .underline-effects{
    color:white;
    font-size: 1.5em;
    text-decoration: none;
    position: relative;
    outline: none;
}

.underline-effects:hover{
    text-decoration: none;
    color: white;
}

.underline-effects:after{
    content: '';
    position: absolute;
    width: 0; height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #fff;
    transition: width .2s ease;
    -webkit-transition: width .2s ease;
  }
   
.underline-effects:hover:after{
    width: 100%;
    left: 0;
    background: #fff;
}

.underline-effects-black{
    color:black;
    font-size: 1.5em;
    text-decoration: none;
    position: relative;
    outline:none;
}

.underline-effects-black:hover{
    text-decoration: none;
    color: black;
}

.underline-effects-black:after{
    content: '';
    position: absolute;
    width: 0; height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: black;
    transition: width .2s ease;
    -webkit-transition: width .2s ease;
  }
   
.underline-effects-black:hover:after{
    width: 100%;
    left: 0;
    background: black;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance:textfield; /* Firefox */
    appearance: none;
    margin: 0; 
}

/**responsive queries**/
@media (max-width: 768px){
    .landing-text h1{
        font-size: 300%;
    }
}

