/* -----------------------------------BANNER------------------------ */

.banner {
  position: relative;
  overflow: hidden;
  height: 15vh;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.banner video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.banner-content-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.banner-text {
  color: var(--tertiary-color);
}

.page-title {
  color: var(--quaternary-color);
}
.product-cards {
  padding-top: 50px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.card-title {
  color: var(--quaternary-text-color);
  font-size: 20px;
  font-weight: 500px;
  padding-left: 30px;
  margin-top: 12px;
}

.product-image-container {
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 50px 0px;
}

.product-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.card-body-title {
  font-weight: 600;
  color: var(--primary-color);
  padding-left: 10px;
  font-size: 14px;
}
.product-cards ul {
  line-height: 30px;
  margin-bottom: 30px;
}
.product-cards li {
  font-size: 14px;
  color: #585858;
}
/* ------------------ENQUIRE FORM-----------------*/
.enquire-btn {
  background-color: rgba(13, 160, 46, 1);
  border-color: rgba(13, 160, 46, 1);
  border-radius: 0.75px;
  color: rgba(255, 255, 255, 1);
  width: 90%;
}

.enquire-btn:hover {
  background-color: rgba(13, 160, 46, 1);
  border-color: rgba(13, 160, 46, 1);
  border-radius: 0.75px;
  color: rgba(255, 255, 255, 1);
}

.custom-modal-content {
  height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close-button {
  z-index: 1051;
  position: absolute;
  background-color: #ffffff;
  top: 10px;
  right: 10px;
  
}


.enquire-grid-container {
  width: 100%;
  height: 100%;
}

.modal-body {
  padding: 0;
}

.modal-text-container {
  background-image: url("/assets/images/portrait-person-doing-arts-crafts.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-text-container .overlay {
  background-color: rgba(0, 0, 0, 0.712);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay h3 {
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
  text-align: left;
  padding: 0px 25px;
}

.enquire-form-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.enquiry-form-title {
  border-left: 6px solid #0da02e;
  padding-left: 20px;
  font-weight: 600;
  font-size: 20px;
  width: 80%;
}

.enquire-form {
  width: 80%;
}

.form-control {
  width: 100%;
  border: 1px solid #a1a1a14d;
  color: black;
  opacity: 1;
  padding: 15px;
  font-weight: 400;
  font-size: 15px;
}
.form-control::placeholder {
  color: #a1a1a1 !important;
  opacity: 1 !important;
}

.is-invalid {
  color: #f00;
  font-size: 12px;
}

.enquiry-submit-button,
.enquiry-submit-button:hover {
  width: 100%;
  background-color: #0da02e;
  color: white;
}

@media (max-width: 600px) {
  .modal-dialog.modal-xl {
    max-width: 100% !important;
    margin: 0 !important;
  }
  .enquire-form,
  .enquiry-form-title {
    width: 85%;
  }

  .enquire-grid-container {
    margin: 0;
    padding: 0;
  }
  .overlay h3 {
    font-size: 24px;
  }
  .modal-text-container {
    height: 300px;
    padding: 0;
    width: 100%;
  }
  .enquire-form-container {
    margin-bottom: 40px;
  }

  .enquiry-submit-button {
    margin-top: 10px;
  }
}
