* {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* ************************************************************************************
    ***********************Start of Header**********************************************  */

.box {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(./images/bc5.jpeg);
  opacity: 0.95;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: grid;
  grid-template-columns: 30% 40% 30%;
  grid-template-rows: 70px;
  grid-template-areas: "menu1 header icon1";
}
.heading {
  grid-area: header;
}
.h11 {
  color: black;
  letter-spacing: 0.2rem;
  margin-top: 10px;
  margin-left: 10px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
}
.span1 {
  border: solid;
  border-radius: 2rem;
  color: white;
}
.menu {
  grid-area: menu1;
}
.ul1 {
  width: 100%;
  height: 100%;
}
.li1 {
  color: white;
  display: inline-block;
  margin-top: 2px;
  padding: 12px;
  font-size: 1.3rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}
.li1:hover {
  color: black;
  cursor: pointer;
}
.icon {
  grid-area: icon1;
}
.ul2 {
  margin-top: 4%;
  margin-left: 40%;
}
.a1 {
  color: black;
  font-size: 2rem;
  padding: 10px;
}
.a1:hover {
  color: white;
}

/* ************************************************************************************
    ***********************End of Header**********************************************  */

/* ************************************************************************************
    ***********************Start of Box2**********************************************  */

.box2 {
  width: 100%;
  height: 500px;
  border-top: solid rgba(21, 207, 167, 0.658);
  box-sizing: border-box;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("./images/Beach.jpeg") center/cover no-repeat fixed;
  display: grid;
  grid-template-rows: 20% 80%;
  grid-template-areas:
    "menu1"
    "menu2";
}
.menu1 {
  grid-area: menu1;
}
.h12 {
  color: blanchedalmond;
}
.btn {
  border: solid;
  font-size: 30px;
  padding: 10px;
  margin-top: 30px;
  background-color: chartreuse;
  outline: 0.125rem solid white;
  outline-offset: 5px;
}
.btn:hover {
  background-color: green;
  color: white;
}
.h12 {
  text-align: center;
  font-size: 3rem;
  margin-top: 15px;
  font-family: "Pacifico", cursive;
  letter-spacing: 0.2rem;
}
.menu2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  color: wheat;
  text-align: center;
  grid-area: menu2;
}

/* ************************************************************************************
    ***********************End of Box2**********************************************  */

/* ************************************************************************************
    ***********************Start of Box3**********************************************  */

.box3 {
  width: 100%;
  height: 600px;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-gap: 4%;
  grid-template-areas: "screen1 sediment coagulation";
}
.img {
  width: 100%;
  height: 300px;
}
.p2 {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 10px;
  letter-spacing: 0.1rem;
  padding: 2%;
}
.screen {
  margin: 30px;
  box-shadow: 1px 1px 10px 1px black;
  background-color: #e6f2ff;
  grid-area: screen1;
  border-radius: 30px;
}
.sediment {
  margin: 30px;
  box-shadow: 1px 1px 10px 1px black;
  background-color: #e6f2ff;
  grid-area: sediment;
  border-radius: 30px;
}
.coagulation {
  margin: 30px;
  box-shadow: 1px 1px 10px 1px black;
  background-color: #e6f2ff;
  grid-area: coagulation;
  border-radius: 30px;
}

.screen:hover {
  transform: translateY(-10px);
}
.sediment:hover {
  transform: translateY(-10px);
}
.coagulation:hover {
  transform: translateY(-10px);
}
/* ************************************************************************************
    ***********************End of Box3**********************************************  */

/* ************************************************************************************
    ***********************Start of Box4**********************************************  */

.box4 {
  width: 100%;
  height: 600px;
  display: grid;
  grid-template-columns: 30% 30%;
  grid-template-areas: "filteration chlorination";
  margin-top: 20px;
  margin-left: 17%;
  padding: 30px;
}
.filteration {
  margin: 30px;
  box-shadow: 1px 1px 10px 1px black;
  background-color: #e6f2ff;
  grid-area: filteration;
  border-radius: 30px;
}

.chlorination {
  margin: 30px;
  box-shadow: 1px 1px 10px 1px black;
  background-color: #e6f2ff;
  grid-area: chlorination;
  border-radius: 30px;
}
.chlorination:hover {
  transform: translateY(-10px);
}
.filteration:hover {
  transform: translateY(-10px);
}

/* ************************************************************************************
    ***********************End of Box4**********************************************  */

.contact {
  background-color: #e0e0eb;
  width: 100%;
  height: 400px;
  display: grid;
  grid-template-columns: 35% 35%;
  grid-template-areas: "address form";
  grid-gap: 20%;
}
.address {
  margin-left: 10%;
  grid-area: address;
}
.h14 {
  font-family: "Courier New", Courier, monospace;
  color: green;
  font-size: 22px;
  margin-top: 20px;
  margin-left: 20px;
}
.h15 {
  margin-top: 12px;
  margin-left: 20px;
  color: #33334d;
  font-size: 18px;
  word-spacing: 2.5px;
  letter-spacing: 2.5px;
  font-family: "Pacifico", cursive;
}
.form {
  grid-area: form;
  width: 100%;
}
.input {
  display: block;
  margin: 30px;
  font-size: 1.5rem;
  border-radius: 10px;
}
.h16 {
  color: darkblue;
  font-size: 3.5rem;
  margin: 10px;
}
.btn1 {
  font-size: 2rem;
  padding: 10px;
  margin-left: 8rem;
  background-color: chartreuse;
  outline: 0.125rem solid black;
  outline-offset: 5px;
}
.btn1:hover {
  background-color: green;
  color: white;
}

.footer {
  background: black;
  height: 150px;
  text-align: center;
}
.section-center {
  background-color: black;
}
.social-icon {
  margin-top: 20px;
  color: wheat;

  font-size: 2rem;
  padding-left: 20px;
}
.footer-text {
  font-family: cursive;
  color: white;
  font-size: 2rem;
  margin-top: 15px;
  letter-spacing: 0.2rem;
}
.fa {
  margin-top: 20px;
}
