*{
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial;
  margin: 0;
}

/* main heading */
.main_heading_bg {
  background: #f1f1f1;  
  color: #555555;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  text-align: center;
  padding: 0px;
}

h1 { 
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-style: normal; 
  font-variant: normal; 
  font-weight: 700; 
  line-height: 25px;
}


/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  background-color: #f1f1f1; 
}

/* Create two columns that sits next to each other */
/* Sideshow/left column */
.side {
  flex: 50%;
  background-color: #f1f1f1;
  padding: 0px 0px 0px 40px;
}

/* Main column */
.main {
  flex: 50%;
  background-color: #f1f1f1;
  padding: 10px;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  color: #555555;
}

/* Style the centre Image */
   img {
    border-radius: 5%;
    width: 525px;
    height: 525px;
 }

/* style for useful contacts div */
.use_contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #DCDCDC;
  padding: 0px;
  font-family: Helvetica, sans-serif;
  color: black;
}

/* Style the Useful Contacts */
.font_style_a { 
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-style: normal; 
  font-variant: normal; 
  font-weight: 800; 
  line-height: 0px;
  font-size: 40px
}

.dial-link {
            text-decoration: none;
            font-size: 20px;
        }



#contacts {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 60%;
  margin-bottom: 60px;"
}

#contacts td, #contacts th {
  border: 2px solid white;
  font-size: 15px;
  padding: 12px;
  background-color: ;
  text-align: left;
}


#contacts th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #000087;
  color: white;
}


/* style of button */
 .button {
  border: 2px solid white;
  color: white;
  padding: 47px 35px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 50p 10px 5px 10px;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.5s;
}

  .buttonsubmit {
   background-color: #86af00;
}
  .buttontrack {
   background-color: #0087fd;
}
  .buttonupdate {
   background-color: #980095;
}
.buttonall_req {
   background-color: #000087;
}  
.buttonhome {
   background-color: #000087;    
}
  .buttonimp {
   background-color: #000087;
}

  .buttonh:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 12px 16px 0 rgba(0,0,0,0.19);
  opacity: 0.5;
}
.button a {
  text-decoration: none;
}


}
/* Responsive layout - when the screen is less than 1000px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1000px) {
  .row, .navbar {   
    flex-direction: column;
  }
}

