body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0eff4;
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
}
.coming-soon {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  max-width: 120rem;
}
.btn {
      background-color: aqua;
      padding: 10px 30px;
      text-decoration: none;
      font-size: 16px;
      color: #091d3e;
  }
      
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.4rem;
}
.header img {
  width: 120px;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact,
.msg {
  width: 50%;
  padding: 1rem 3.2rem;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.contact-item h3 {
  list-style: none;
  padding: 0;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  margin-top: 0;
}
.contact-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-item ul li.contact-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  color: #444444;
}
.contact-item ul p {
  margin: 0;
  padding: 0;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #091d3e;
}

.msg {
  background: url(msg.png);
  height: 488px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.msg .msg-box {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.msg .msg-box h5,
.msg .msg-box h3,
.msg .msg-box h4 {
  text-align: center;
  margin: 0;
}

.msg .msg-box h5 {
  font-size: 1.8rem;
  font-weight: 200;
  color: #add8e2;
  margin-bottom: 0.3rem;
  width: 90%;
}
.msg h3 {
  font-size: 3.2rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.6rem !important;
}
.msg h4 {
  color: #dce8eb;
  font-size: 2rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  body {
    padding: 0 1.6rem;
  }
  .coming-soon {
    max-width: 100%;
  }
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header {
    justify-content: center;
    margin-bottom: 0rem;
  }
  .contact,
  .msg {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  .contact-item h3 {
    font-size: 2.4rem;
  }
  .contact-item ul li.contact-info {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 568px) {
  body {
    padding: 0 1.6rem;
  }
  .coming-soon {
    max-width: 100%;
  }
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header {
    justify-content: center;
    margin-bottom: 0rem;
  }
  .contact,
  .msg {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
  .contact-item h3 {
    font-size: 2.4rem;
  }
  .contact-item ul li.contact-info {
    font-size: 1.4rem;
  }
  .msg .msg-box h5 {
    font-size: 1.2rem;
    font-weight: 200;
    color: #add8e2;
    margin-bottom: 0.3rem;
    width: 90%;
  }
  .msg h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.6rem !important;
  }
  .msg h4 {
    color: #dce8eb;
    font-size: 1.6rem;
    font-weight: 400;
  }
}
