/* .contact-container {
  padding: 3.125rem;
  background-color: #1e1e1e;
  background-image: url("../img/bg_landingpage_lg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top:200px;
} */

.contact-container {
  position: relative;
  padding: 3.125rem;
  background-color: #1e1e1e;
  padding-top: 200px;
  overflow: hidden;
}

.contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_landingpage_lg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  transform-origin: center;
  z-index: 0;
}

.contact-container__form {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.contact-container__input {
  all: unset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: 80%;
  margin-block: 1.875rem;
}

.contact-container__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

.contact-container__textarea {
  width: 80%;
  border: none;
  outline: none;
  padding: 10px;
  background-color: transparent;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  resize: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  color: #fff;
}

.contact-container__btn {
  padding: 0.5rem 2rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  background-color: #fff;
  color: #000;
  transition: all 0.5s ease;
  &:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.5s ease;
  }
}

.contact-container__btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  border: 1px solid #ccc;
}

.contact-container__contact-details-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: fit-content;
  padding: 1.875rem 5.125rem 4.125rem 1.875rem;
  background: rgba(255, 254, 254, 0.2);
  backdrop-filter: blur(16.8px);
  border-radius: 30px 30px 0 30px;
  border: 1px solid #fff;
  margin-inline: auto;
}

.contact-container__contact-detail .opacity-04 {
  opacity: 0.4;
}

.width-80 {
  width: 80%;
}

.pl-100 {
  padding-left: 6.25rem;
}

.fs-96 {
  line-height: 100px;
  margin-bottom: 1.875rem;
}

@media (max-width: 991.98px) {
  .pl-100 {
    padding-left: 0;
  }
  .width-80 {
    width: 100%;
    margin-bottom: 100px;
  }
  .contact-container__input {
    width: 100%;
  }

  .fs-60 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
  }
}
