.under-construction {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 80px 120px;
  gap: 20px;
}
.under-construction-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 60px;
  color: white;
  max-width: 500px;
  text-align: center;
}
.under-construction-img {
  padding: 50px;
  background-color: rgba(255, 255, 255, 1) !important;
  border-radius: 10%;
  height: fit-content;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.under-construction-img img {
  height: auto;
  width: 350px;
  max-width: 100%;
}
.btn {
  width: auto;
  height: 50px;
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: 2px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  padding: 0px 18px;
}
.btn.btn-submit:hover {
  background-color: #ffffff !important;
  color: #000000;
  transition: ease-in-out 0.3s;
}
@media (max-width: 1199px) {
  .under-construction {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .under-construction-content {
    padding: 0px 20px 20px;
  }

  .under-construction-img img {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .under-construction-content span {
    font-size: 16px !important;
  }
  .under-construction-content {
    padding: 15px 20px !important;
  }
  .under-construction-img img {
    width: 100%;
    max-width: 180px;
  }
  .under-construction {
    gap: 10px;
  }

  .btn {
    height: fit-content;
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}
