.contact-body-bottom-container {
  background-image: url(../images/bg-images/paper-machine.jpg);
  width: 100%;
  height: auto;
  background-color: rgb(77, 77, 77);
  background-blend-mode: multiply;
}

.contact-blur-bg-container {
  background-color: #ffffff47;
  backdrop-filter: blur(7px);
  width: 100%;
  position: relative;
  border: 1px solid lightgrey;
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  padding: 28px;
  filter: blur(-5px);
  border-radius: 7px;
}

.contact-blur-bg-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 15%; /* Adjust the width to control the size of the highlight */
  height: 30%; /* Adjust the height to control the size of the highlight */
  border-left: 2px solid #ffffff; /* Adjust the color and thickness of the border */
  border-top: 2px solid #ffffff;
  border-top-left-radius: 10px; /* top-left corner rounded */
  opacity: 0.8;
  z-index: -1;
}

.contact-blur-bg-container::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 15%; /* Adjust the width to control the size of the highlight */
  height: 30%; /* Adjust the height to control the size of the highlight */
  border-right: 2px solid #ffffff; /* Adjust the color and thickness of the border */
  border-bottom: 2px solid #ffffff; /* Adjust the color and thickness of the border */
  border-bottom-right-radius: 10px; /* top-left corner rounded */
  opacity: 0.8;
}

.list-item-border-container {
  border-bottom: 0.5px solid #ffffff;
}

.description-container {
  width: 48%;
}

.contact-body-bottom-container .form-container {
  width: 48%;
}

.description-container-heading {
  font-size: 33px;
  font-weight: 500;
  color: #ffffff;
}

.description-container-paragraph {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.location-container {
  border: 1px solid #ffffff;
  overflow: hidden;
  border-radius: 5px;
  height: 55%;
}

.location {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  padding: 10px;
  margin-bottom: 0px;
  width: 95%;
}

.form-heading {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
}

.form-description {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.label-element {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.bg-no-input {
  background-color: transparent;
  padding: 6px;
  outline: none;
  border: 1px solid #ffffff;
  border-radius: 5px;
  color: #fff;
}

.bg-no-input::placeholder {
  color: #ffffff;
  font-size: 13px;
}

.send-btn {
  background-color: var(--theme-color-1);
  width: 100%;
  border-width: 0px;
  color: #ffffff;
  margin-top: 8px;
  padding: 6px;
  border-radius: 6px;
}

/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width: 1400px) {
}
/* Small laptop */
@media screen and (max-width: 1200px) {
}
/* Tablet */
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
/* Large mobile */
@media screen and (max-width: 576px) {
  .contact-blur-bg-container{
    flex-direction: column;
    flex-wrap: wrap;
    padding: 15px;
  }

  .contact-body-bottom-container .form-container {
    width: 100%;
  }

  .description-container{
    width: 100%;
  }
}
/* Small mobile */
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 320px) {
}