@import url('./style.css');

.p-0 {
  padding: 0px !important;
}

.p-10 {
  padding: 10px !important;
}

.m-auto {
  margin: auto !important;
}

.d-flex {
  display: flex !important;
}

.justyfy-space-between {
  justify-content: space-between !important;
}

.banner-bg-color {
  width: 100% !important;
  height: 100% !important;
  padding: 100px 40px 100px 40px;
  background-color: var(--siteprimary);
  text-align: center;

  .col-md-6 {
    margin: auto;
  }

  h1 {
    font-family: "Mulish", Sans-serif;
    font-size: 66px;
    font-weight: 700;
    line-height: 69px;
    letter-spacing: 0px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
  }

  .banner-desc {
    margin-bottom: 30px;

    P {
      text-align: center;
      color: var(--white);
      font-family: "Mulish", Sans-serif;
      font-size: 16px;
      font-weight: 400;
      margin-bottom: .9rem;
    }
  }

  button,
  a {
    padding: 10px 50px;
    background-color: #ffffff;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--siteprimary);
    border-radius: 5px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--siteprimary);
    text-decoration: none !important;
  }

}

.bannerImage {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;

  img {
    width: 70%;
  }
}

#priceRange {
  border-radius: 8px;
  height: 4px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  background-color: rgb(222, 226, 230);
}

input[type='range']::-webkit-slider-thumb {
  width: 6px;
  -webkit-appearance: none;
  height: 12px;
  background: black;
  border-radius: 2px;
}


// Custom SCSS to style the contact form

// Container and card styling
.container {
  margin-top: 50px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f9fa;
}

.card h2 {
  color: var(--siteprimary);
  font-family: var(--sitefontfamily);
  font-weight: 600;
  text-transform: uppercase;
}

.card-body {
  padding: 2rem;
}

// Custom form input field styling
input.form-control,
textarea.form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}

input.form-control:focus,
textarea.form-control:focus {
  border-color: var(--siteprimary);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.25);
}

// Button Styling
button.btn-primary {
  background-color: var(--siteprimary) !important;
  border-color: var(--siteprimary) !important;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

button.btn-primary:hover {
  background-color: var(--siteprimary) !important;
  border-color: var(--siteprimary);
}