body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  height: 80vh;
}
.contact-container {
  width: 30%;
  height: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.page-three {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 5%;
}
.contact-container {
  width: 90%;
  height: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.addresss-container {
  padding: 0 0 0 2%;
  width: 100%;
}
.box1 {
  width: 40%;
}
.box2 {
  width: 40%;
  height: fit-content;
  border-radius: 20px;
  padding: 2%;
  background-color: #F2F7FD;
}
.box2 input {
  width: 100%;
  margin: 0 0 0 2%;
  padding: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}
.box2 svg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.name-input {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: white;
  padding: 1% 4%;
  border-radius: 50px;
}
.contact-input {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: white;
  padding: 1% 4%;
  margin: 3% 0 0 0;
  border-radius: 50px;
}
.address,
.contact-number,
.email-container {
  border-bottom: 2px solid #F2F7FD;
  margin: 0 0 10% 0;
  width: 100%;
}
.message-input {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: white;
  padding: 1% 4%;
  margin: 3% 0 0 0;
  border-radius: 20px;
  height: 100%;
  width: 100%;
}
.message-input textarea {
  height: 20vh;
  width: 100%;
  resize: none;
  border: none;
  outline: none;
  padding: 2%;
}
.box2 button {
  padding: 1% 5%;
  margin: 3% 0 0 0;
  border-radius: 50px;
  border: none;
  background-color: blue;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid blue;
}
.box2 button:hover {
  scale: 1.1;
  background-color: white;
  border: 2px solid blue;
  color: blue;
}

@media (max-width: 767px) {
  .page-three{
    height: fit-content;
    flex-direction: row;
  }
  .contact-container{
    flex-direction: column;
    width: 100%;
  }
  .box1{
    width: 100%;
  }
  .box2{
    width: 100%;
    padding: 5%;
    margin: 5% 0;
    background-color: #F2F7FD;
  }
}
