/*headings for each section*/
.description_title{
  font-weight: bold;
  padding: 10px 20px 10px 20px;
}


/*value for each section*/
.description_value{
  padding: 4px 8px;
}

/*text area for the description*/
.description_comment{
  margin: 4px 20px 10px 20px
}

/*error messages*/
.error_message{
  color: rgb(255, 71, 26);
  padding: 4px 20px;
}



/*title for the contacts*/
.contacts_title_box{
  padding: 40px 20px;
  background-color: rgb(255, 102, 0);
  text-align: center;
}

.contacts_title{
  color: rgb(255,255,255);
  font-weight: bold;
  font-size: 50px;
}


/*description for the comment section*/
.comment_description{
  color: rgb(0, 51, 102);
  font-weight: bold;
  font-size: 18px;
}

.comment_description_center{
  text-align:center;
}


/*background image for the page*/
.background{
  /* The Background Image */
  background-image:url("../images/contacts/contacts_bg.png");

  /* Height of Image */
  height: 100%;

  /* Setting The location Of The Image */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 550px;
 }

/*background cover for the background image*/
.background_cover{
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: rgba(255, 217, 179, 0.3);
   min-height:550px;
   padding: 40px 0;
 }
 
 


/*box division for the form*/
.box{
  width: 400px;
  height: 100%;
  background-color: rgb(100, 211, 252);
  border: 3px solid White;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(0,0,0);
  color: rgb(0, 51, 102);
  padding: 10px 30px;
 }


 /*group for each form*/
 .form_group{
   padding-top: 20px;
 }
 
 
 /*submit button to change the forms*/
 .send{
  background-color: rgb(100, 211, 252);
  color: rgb(0, 51, 102);
  padding: 2px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgb(0, 51, 102);
  border-radius: 20px;
  margin-top: 40px;
  margin: 15px;
  transition: background-color 0.5s ease, border-color 0.5s ease;

  -ms-transition: background-color 0.5s ease, border-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease, border-color 0.5s ease;
  -moz-transition: background-color 0.5s ease, border-color 0.5s ease;
  -o-transition: background-color 0.5s ease, border-color 0.5s ease;
}


/*hovering over the change button*/
.send:hover{
  background-color:rgb(255, 153, 102);
  border-color: rgb(255, 153, 102);
  cursor: pointer;
  transition: background-color 0.5s ease, border-color 0.5s ease;

  -ms-transition: background-color 0.5s ease, border-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease, border-color 0.5s ease;
  -moz-transition: background-color 0.5s ease, border-color 0.5s ease;
  -o-transition: background-color 0.5s ease, border-color 0.5s ease;
}



/*the text input for the forms*/
.form_control{
  border-radius: 5px;
  color: rgb(255, 153, 102);
  background-color: rgb(0, 51, 102);
  padding: 3px 10px;
  border-color: rgb(255, 153, 102);
}


/*focusing on the text input form*/
.form_control:focus{
  background-color:rgb(255, 153, 102);
  border-color: rgb(0, 51, 102);
  color: rgb(0, 51, 102);
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;

  -ms-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  -webkit-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  -moz-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  -o-transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}



/*notification to tell user that they have sent an email*/
.notification_box{
  background-color:rgb(102, 255, 153);
  color:rgb(0, 102, 0);
  border-top: 2px solid rgb(0, 102, 0);
  border-bottom: 2px solid rgb(0, 102, 0);
  text-align: center;
  padding: 20px 0;
  position:absolute;
  width:100%;
  display:none;
}


.email_notification{
  font-size:24px;
}
