@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

body {
  display: grid;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.contact-wrap {
  width: auto;
  height: 350px;
  margin: auto;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.contact-in {
  padding: 50px 50px;
}

.contact-in:nth-child(1) {
  flex: 45%;
  background-color: transparent;
  color: #fff;
}

.contact-in:nth-child(2) {
  flex: 45%;
  padding: 0;
}

.contact-in h1 {
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.contact-in h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: left;
  color: goldenrod;
}

.contact-in h2 i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #f5f5f5;
  color: #000;
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
}

.contact-in p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left;
}

.contact-in iframe {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 13px;
}

/* MOBILE */
@media (max-width: 575.98px) {
  .contact-wrap {
    margin-top: -50px;
  }
}
