* {
  /* border: 1px solid red !important; */
  border: none;
}
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

.contact {
  height: 95vh;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact > div {
  height: 100%;
}

.contact-section-left {
  width: 40%;
  padding-left: 5%;
  padding-top: 9.5%;
}

.contact-section-left > h1 {
  padding-left: 5%;
}

.contact-section-left > p {
  width: 60%;
  padding: 3% 7%;
  color: rgb(93, 93, 93);
  font-size: 20px;
}

.contact-section-right {
  display: flex;
  padding: 7% 5%;
  flex-wrap: wrap;
  width: 60%;
}

.contact-detail-card {
  height: 30%;
  width: 50%;
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

iframe {
  margin-left: 20px;
}

.contact-detail-desc {
  font-size: 20px;
  color: rgb(93, 93, 93);
}

@media screen and (max-width: 480px) {
  body{
    height: auto;
  }
  .contact {
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 15%;
  }
  .contact > div {
    width: 100%;
  }
  .contact-section-left>h1{
    font-size: 40px;
    padding-left: 7%;
  }
  .contact-section-left>p{
    font-size: 20px;
  }
  .contact-section-left > p,
  .contact-section-left > h1 {
    width: 90%;
  }
  .contact-section-right > div {
    width: 90%;
  }
  .contact-detail-desc{
    font-size: 15px;
    width: 60%;
  }
  iframe {
    margin-left: 0;
    height: 200px;
    width: 600px;
    margin-top: 20px;
  }
}
