

.Body-Page {
  margin: 0px;
  background-color: #F58220;
}

.NavBar {
  background-color: #333;
  overflow: hidden;
}

.NavBar a {
  float: Right;
  display: block;
  text-align: center;
  padding: 23px 50px;
  text-decoration: none;
  font-size: 20px;
  border-bottom: 3px solid transparent;
  color: white;
  font-weight: bold;
  opacity: 0.6;
  transition: 0.3s;
}

/* Change the color of links on hover */
.NavBar a:hover {
  opacity: 1;
  background-color: #3e8e41;
 }

.logo {
  position: absolute;
  height: 35px;
  margin-left: 75px;
  padding-top: 18px ;
  width: 170px;

}

.MainHead h1 {
  text-align: center;
  color: white;
}

.MainHead p {
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 20px;
}




*, *:before, *:after {
  box-sizing: inherit;
}

.column {
  margin-top: 70px;
  box-sizing: border-box;
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
  
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background-color: #333;

}

.container {
  padding: 0 px;

}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;

}


.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px;
  color: white;
  background-color: #333;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 50px;
  font-weight: bold;
}

.button:hover {
  background-color: #3e8e41;
}