.image {
    background-color: #490D40;
    background: url(../images/bg2.jpg) no-repeat center center;
    background-size: cover;
    height: 570px;
    margin-top: 0px;
  }
  .image .heading {
    color: white;
    text-align: Left;
    padding-top: 200px;
  }
  .image .heading-image {
    color: white;
    text-align: center;
    padding-top: 150px;
  }

  .image p {
    --text-align: center;
    padding: 20px 5px;
  }
  .image p .btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px;
    font-size: 1.2em;
  }
  .image p .btn:hover {
    color: rgb(247, 173, 104);
    border-color: rgb(223, 146, 102);
  }
  
  .navbar {
    min-height: 60px;
    background-color: transparent;
    border: none;
    color: white;
    z-index: 100;
    transition: background-color 1s ease 0s;
  }
  
  
  
  /* Solid class attached on scroll past first section */
  .navbar.solid {
    background-color: rgb(44, 44, 44);
    transition: background-color 1s ease 0s;
    box-shadow: 0 0 4px grey;
  }
  .navbar.solid .navbar-brand {
    color: rgb(177, 177, 177);
    transition: color 1s ease 0s;
  }
  .navbar.solid .navbar-nav > li > a {
    color: rgb(177, 177, 177);
    transition: color 1s ease 0s;
  }
  .box {
    -webkit-box-shadow: 0 0 0 0 #ffffff;
    box-shadow: 0 0 0 0 #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

  .box:hover {
    -webkit-box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

.web {
  background-color: rgb(44, 44, 44);
  color: rgb(177, 177, 177);

}

.web h2 {
  color:white;
}
  .about {
    color: rgb(177, 177, 177);
    height: 600px;
    text-align: center;
    padding-top:30px;
  }
  .about h2 {
    color:white;
  }
  .about p {
    padding: 20px 80px;
  }

  .footer
  {
    background-color: rgb(44, 44, 44);
    color: rgb(177, 177, 177);
  }