* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /*1rem=10px */
}

body {
  font-size: 1.7rem;
  overflow-x: hidden;
  width: 100vw;
  height: 1.1;
}

a {
  text-decoration: none;
}

.text-primary {
  color: blue;
}

#navbar {
  display: flex;
  background-color: black;
  color: aliceblue;
  justify-content: space-between;
  padding: 2rem;
}

#navbar a {
  color: aliceblue;
}

#navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#navbar ul li a {
  padding: 2rem;
  margin: 0.5rem;
}

#navbar ul li a:hover {
  background-color: darkgrey;
  border-radius: 0.5rem;
}

/* Header */
#header {
  background: linear-gradient(rgba(85, 88, 90, 0.6), rgba(168, 168, 185, 0.4)),
    url("House.jpg") center center/cover;
  height: 88.8vh;
  background-repeat: no-repeat;
  text-align: center;
}

.container {
  max-width: 110rem;
  margin: 0%;
  overflow: hidden;
  padding: 2rem;
  margin: auto;
}

.h1-content {
  display: flex;
  flex-direction: column;
  height: 73vh;
  align-items: center;
  justify-content: center;
  color: whitesmoke;
}

.heading {
  font-size: 5rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.para {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.btn {
  color: white;
  background-color: black;
  border: none;
  padding: 1.3rem 1.9rem;
  border-radius: 0.5rem;
}

.btn:hover {
  background-color: darkgrey;
  border-radius: 0.5rem;
}

/* What */
#what .m-heading {
  font-size: 3.7rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-align: center;
}

#what .container {
  background-color: lightgrey;
}

.boxes {
  display: flex;
  text-align: center;
}

.box {
  padding: 2rem 2rem;
  flex: 1;
}

#what {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 76%);
  padding-top: 3rem;
  padding-bottom: 4.5rem;
  background-color: lightgrey;
}

.boxes i {
  background-color: mediumblue;
  color: black;
  padding: 2rem;
  border-radius: 50%;
}

.boxes h3 {
  padding: 2rem;
}

/* Who */

#who {
  display: flex;
  height: 80vh;
  margin-top: -12.2rem;
}

#who.container {
  padding: 10%;
}

#who div {
  flex: 1;
}

#who div:first-child {
  flex: 2;
  padding: 2rem;
}

.color {
  background-color: rgb(151, 167, 167);
}

#who .para {
  color: black;
}

#who .img {
  background-image: url("Team.jpg");
  background-repeat: no-repeat;
  background-position: center/stretch;
  margin-right: -20%;
}

#who .m-heading {
  padding-top: 3rem;
  justify-content: center;
}

#who h3 {
  padding: 2rem;
}

/* Client */

#Client {
  padding: 5rem;
}

/* #Client .container {
  display: flex;
  height: 93vh;
} */

#Client .client {
  display: flex;
  justify-content: center;
  align-items: center;
}

#Client .client img {
  height: 15rem;
}

#Client div {
  flex: 1;
  margin: 2rem;
}

#Client h1 {
  text-align: center;
  font-size: 4rem;
}

/* Contact */

#contact {
  display: flex;
  height: 90vh;
  background-color: burlywood;
  color: aliceblue;
  padding: 2rem;
}

.msg {
  width: 200px;
  height: 90px;
}

#contact .cont-form,
#contact .map {
  flex: 1;
}

#contact .cont-form {
  padding: 3rem;
}

#contact .cont-form label,
#contact .cont-form input {
  display: block;
}

#contact .cont-form input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  margin-bottom: 1rem;
}

#contact .cont-form label {
  padding: 1rem;
}

#contact .map {
  background-color: antiquewhite;
}

#contact .map iframe {
  height: 100%;
  width: 100%;
}

/* footer */

#footer {
  text-align: center;
  background-color: teal;
  color: white;
  padding: 0.5rem;
}
