body {
    font-family: "Roboto";
    font-weight: 500;
}

#wrapperInside{
  max-width: 100%;
  height: -webkit-fill-available;
}

.parallax { 
  /* The image used */
  background-image: url("../images/buildawe.jpg");

  /* Full height */
 /* height: 100%; */

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*opacity: 0.5;*/
}

.navbar {
    background: white !important;
}

#footer{
  background-color:#191919;
  color: white;
}

#navbarTop {

    
    font-family: "Roboto";
    background: white;
    font-weight: 500;
    /*height: 10em;
    width: 100%; */
    /*background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.2)), url(../images/stock-photo-smart-screen-on-wall-with-spacious-hall-in-modern-office-building-675097483.jpg) !important ;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    height: 6em;
}

.navbar-toggler {
    border: 0.1em solid rgb(56, 109, 253);
    color:rgb(56, 109, 253);
}

.navbar-toggler .menu-md {
    font-size: 1.2em;
}

#navbarTop #navbarBrand img{
    max-height: 2.5em;
    margin-top: 0em;
}

#navbarSupportedContent{
   /*margin-top: 4em;*/
   background-color: white;
}

#navbarTop #navbarLinks li {
    margin-left:1em;
    color: black;
    font-size:1em;
    font-weight: bold;  
}

#navbarTop #navbarLinks li a {
    /*margin-left:2em;*/
    color: black;
    /*font-size:1.25em;*/
}

#home:hover {
  color: blue !important;
}

#navbarDropdown:hover{
  color: red !important;
}

#contact:hover{
  color: blue !important;
}

#AboutUs:hover{
  color: blue !important;
}

#services:hover{
  color: red !important;
}

#navbarTop #rightDiv {
    display: flex;
}

#navbarTop #rightDiv button {
    /* margin: 0 1em; */
    background-color: rgb(56, 109, 253);
    font-weight: 500;
    border: none;
}

.dropdown-custom .dropdown-menu-custom {
    transition: all 0.3s;
    overflow: hidden;
    transform-origin: top center;
    transform: scale(1,0);
    display: block;
}

.dropdown-custom:hover .dropdown-menu-custom {
    transform: scale(1);
}

.dropdown-item:hover {
    background-color: rgb(56, 109, 253);
    color: white !important;
} 

#navbarTop #rightDiv a{
    color: white;
}

#navbarTop #rightDiv a:hover {
    text-decoration: none;
} 

#mainContent {
    /*margin-top: 6em;*/
}

#carousel img {
    height: 90vh;
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
    background-size: cover !important;   
    background-position: center !important;
}

#carousel span {
    padding: 1em;
}

/* Materialize CSS */

.card-panel {
    -webkit-transition: -webkit-box-shadow .25s;
    transition: -webkit-box-shadow .25s;
    transition: box-shadow .25s;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
    padding: 24px;
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
    background-color: #fff;
  }
  
  .card {
    position: relative;
    /* margin: 0.5rem 0 1rem 0; */
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow .25s;
    transition: -webkit-box-shadow .25s;
    transition: box-shadow .25s;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
    border-radius: 2px;
  }
  
  .card .card-title {
    font-size: 24px;
    font-weight: 300;
  }
  
  .card .card-title.activator {
    cursor: pointer;
  }
  
  .card.small, .card.medium, .card.large {
    position: relative;
  }
  
  .card.small .card-image, .card.medium .card-image, .card.large .card-image {
    max-height: 60%;
    overflow: hidden;
  }
  
  .card.small .card-image + .card-content, .card.medium .card-image + .card-content, .card.large .card-image + .card-content {
    max-height: 40%;
  }
  
  .card.small .card-content, .card.medium .card-content, .card.large .card-content {
    max-height: 100%;
    overflow: hidden;
  }
  
  .card.small .card-action, .card.medium .card-action, .card.large .card-action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .card.small {
    height: 300px;
  }
  
  .card.medium {
    height: 400px;
  }
  
  .card.large {
    height: 500px;
  }
  
  .card.horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  
  .card.horizontal.small .card-image, .card.horizontal.medium .card-image, .card.horizontal.large .card-image {
    height: 100%;
    max-height: none;
    overflow: visible;
  }
  
  .card.horizontal.small .card-image img, .card.horizontal.medium .card-image img, .card.horizontal.large .card-image img {
    height: 100%;
  }
  
  .card.horizontal .card-image {
    max-width: 50%;
  }
  
  .card.horizontal .card-image img {
    border-radius: 2px 0 0 2px;
    max-width: 100%;
    width: auto;
  }
  
  .card.horizontal .card-stacked {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
  
  .card.horizontal .card-stacked .card-content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  
  .card.sticky-action .card-action {
    z-index: 2;
  }
  
  .card.sticky-action .card-reveal {
    z-index: 1;
    padding-bottom: 64px;
  }
  
  .card .card-image {
    position: relative;
  }
  
  .card .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  
  .card .card-image .card-title {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 24px;
  }
  
  .card .card-content {
    min-height: 15em; 
    padding: 24px;
    border-radius: 0 0 2px 2px;
    text-align: center;
  }

#alarm{
     height: 5em;
  }

#report{
     height: 5em;
  }

#richview{
     height: 5em;
  }

#cleverspace{
     height: 5em;
  }

#voiceassist{
     height: 5em;
  }

#dlmsdriver{
  height: 5em;
}      
  
  .card .card-content p {
    color: black;
    margin: 0;
    text-align: center;
  }
  
  .card .card-content .card-title {
    display: block;
    line-height: 32px;
    margin-bottom: 8px;
  }
  
  .card .card-content .card-title i {
    line-height: 32px;
  }
  
  .card .card-action {
    background-color: inherit;
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    position: relative;
    padding: 16px 24px;
    text-align: center;
  }
  
  .card .card-action:last-child {
    border-radius: 0 0 2px 2px;
  }
  
  .card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
    color: #ffab40;
    margin-right: 24px;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    text-transform: uppercase;
  }
  
  .card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating):hover {
    color: #ffd8a6;
  }
  
  .card .card-reveal {
    padding: 24px;
    position: absolute;
    background-color: #fff;
    width: 100%;
    overflow-y: auto;
    left: 0;
    top: 100%;
    height: 100%;
    z-index: 3;
    display: none;
  }
  
  .card .card-reveal .card-title {
    cursor: pointer;
    display: block;
  }
  
/* Materialize CSS Ends */

#cards {
    /*margin-top: 3em;*/
    margin-bottom: -8em;
}

#cards .enclosing-div {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),
                0 3px 1px -2px rgba(0,0,0,0.12), 
                0 1px 5px 0 rgba(0,0,0,0.2);
    padding: 0px !important;
    margin-bottom: 2em;
}

@media only screen and (min-width: 768px) {
    #cards .enclosing-div:first-child{
        margin-left: 2.5em;
    }   
    #cards .enclosing-div:nth-of-type(4){
        margin-left: 2.5em;
    }
    #cards .enclosing-div:nth-of-type(7){
        margin-left: 2.5em;
    }  
}

#cards .img-thumb {
    width: 100%;
    height: auto
}

#cards .enclosing-div span {
    font-size: 1.5em; 
    color: #4E80FF;  
}

#blackcard{
    font-size: 1.5em; 
    color: black !important;  
}

#cards .enclosing-div .inner-enclosing-div {
    padding: 1em;
}

#cards .enclosing-div .inner-enclosing-div hr {
    border-bottom: 1px solid #D3E0FF;
}

#cards .enclosing-div .inner-enclosing-div a {
    color: rgb(56, 109, 253);
}

#cards .enclosing-div .inner-enclosing-div a:hover {
    text-decoration: none;
}

.btn{
    border-radius:50px !important; 
    
}

.wrapper {
    max-width: 50em;
    margin: auto;
}

#carouselBottom2 {
    margin-top: 4em;
    margin-bottom: 2em;
}

.separateDiv {
    width: 90%;
    border: 2px solid #4E80FF;
}

.headingTop {
    margin-top: 1em;
    text-align: center;
    color: #4E80FF;
    text-transform: uppercase;
}

#secondHr {
    margin-top: 4em !important;
}

.img-carousel {
    display: flex !important;
    object-fit: fill;
    vertical-align: middle;
}

#cards .enclosing-div:hover span {
    color: white !important;  
}

#blackcard:hover {
    color: black !important;  
}

#OnHover1{

  background-color: white !important;
  color: black;
  /*z-index: 19999;*/
  /*opacity: ;*/
}

#OnHover2{

  background-color: white !important;
  color: black;
}


#OnHover3{

  background-color: white !important;
  color: black;
}

#OnHover4{

  background-color: white !important;
  color: black;
  /*z-index: 19999;*/
  /*opacity: ;*/
}

#OnHover5{

  background-color: white !important;
  color: black;
}


#OnHover6{

  background-color: white !important;
  color: black;
}


#OnHover1:hover {

  background-color:#27a2f9 !important;
  color: white;
}

#OnHover2:hover {

  background-color:#27a2f9 !important;
  color: white;
}

#OnHover3:hover {

  background-color:#27a2f9 !important;
  color: white;
}

#OnHover4:hover {

  background-color:#27a2f9 !important;
  color: white;
}

#OnHover5:hover {

  background-color:#27a2f9 !important;
  color: white;
}

#OnHover6:hover {

  background-color:#27a2f9 !important;
  color: white;
}


#InsideContent{
  color: black;
}

#footerContainer{
  max-width: 1500px;
}

#prdtsandsolns{
    margin-top: 2em;
    color: white;
}

#whoheis{
  color: black;
}

#header{
  margin-top: -2.4em;
  /*background-image: url(../images/new-york-by-water_4460x4460.jpg) !important;*/
}

#header1{
  margin-top: -3em;
  /*background-image: url(../images/new-york-by-water_4460x4460.jpg) !important;*/
}

#aboutUsImage{
  background-size: cover !important;
}

#whatwedopara{
  color: black;
  text-align: center;
  font-family:Raleway-SemiBold;
  
}

#whatwedo{
  color: black;
  text-align: center;
  font-family:Raleway-SemiBold;
  font-size: 1.5em;
  
}

#whatwedo1{
  color: black;
  text-align: center;
 /* font-family:Raleway-SemiBold;*/
  font-size: 1.25em;
  
}

#Motto{
  margin-left: 2em;
  margin-right: 2em;

}

#ourMotto{

  font-weight: 800;
  color: black;
  font-size: 1.5em;
  text-decoration: underline;

}

#MottoContent{
  color: black;
  /*margin-left: 2em;*/
}

#WhatWeDo{
  margin-left: 2em;
  margin-right: 2em;

}

#WhatWeDoHeading{
  font-weight: 800;
  color: black;
  font-size: 1.5em;
  text-decoration: underline;
}

#WhatWeDoPara{
  color: black;
}