html{
  width:100%;
  overflow-x:hidden;
}


.fixed-header  {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 9999;
  text-align: center;
  top:0%;
}

body
{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}
.main{
  padding-top:150px;
  padding-bottom: 60px;
}
/*hovering overnav bar*/
.navbar-nav{
  gap:20px;
}
.navbar-nav .nav-item a{
font-size: 1.2rem;
}
.navbar-nav .nav-item.current-item a {
  color : rgb(135, 188, 29);
  font-weight: 700;

}
.navbar-nav a:hover {
  color:black;
}
.nav-link.button{
  background-color: rgb(135, 188, 29);
  padding-left: 15px !important;
  padding-right: 15px !important;
  border-radius: 6px;
}
h1{
  font-weight: bold;
}
.row{
  --bs-gutter-y: 1.5rem;
}
.card {
  border:0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.card.home{
  box-shadow: 0 2px 8px 1px #bdbdbd;
    padding: 20px;
}
.card-body{
  border: solid 2px #87bc1d;
    box-shadow: 0 2px 8px 3px #87bc1d3d;
    border-radius: 3px;
    padding: 30px;
}
.card-text-head{
  text-align: center;
}    
.card-text {
  align-items:center;
  justify-content: justify;
}

.card-img-top   {
  align-items:center;
  height: 170px;
  width:180px;
} 

.grid-square  {
  display: flex;
  justify-content: center;
  align-items: center;
 
}

.square {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background-color: #fff;
  border: 1px solid black;
  margin: 10px;
  text-align: center;
}

iframe {
  border: 1px solid #ccc;
  background-color: #f6f6f6;
}


.page-footer{
  background-color: rgb(26, 25, 25); 
  color: #fff;
  bottom:0;
  padding-top: 60px;
  padding-bottom: 60px;
  
}
.navbar-toggler{
  border:0;
}
.navbar-toggler:focus{
  box-shadow: none;
}
.form-section{
  padding-top:20px;
}
#contact-form{
  max-width: 800px;
  margin:auto;
}
.btn{
 background-color:rgb(135, 188, 29);;
 border-color: rgb(135, 188, 29);;
}

.btn:hover {
 background-color: rgb(115, 156, 32);
 border-color: rgb(115, 156, 32);
}
.btn[type=submit]{
  width:200px;
}
@media (max-width:768px){
  .main{
    padding-top:90px;
  }
}
@media (max-width:570px){
  .page-footer{
    padding:35px 0;
  }
  .contact{
    padding:30px;
  }
}


