/*--------------------------------------------------------------
# RFQ
--------------------------------------------------------------*/
.rfq {
  background: linear-gradient(to right, rgb(86, 23, 75), rgb(185, 48, 159));
  width: 80%;
  text-align: center;
  border-radius: 30px;
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 40px;
  font-size: 14px;
}

.rfq .ctm-section-title {
  text-align: center;
  color: white;
  position: relative;
}

.rfq .ctm-section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: white;
}

.rfq .rfq-desc {
  color: white;
  font-weight: 400;
}

#rfq-form .form-control {
  font-size: 12px;
  padding: 8px;
  height: 35px;
}

#rfq-form textarea.form-control {
  height: 100px;
}

@media (max-width: 575px) {
  .rfq {
    top: 350px;
  }
  .contact .send-rfq {
    padding: 20px;
  }
}

.rfq .send-rfq input[type="text"],
.rfq .send-rfq input[type="email"],
.rfq .send-rfq input[type="file"],
.rfq .send-rfq textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.rfq .send-rfq input[type="text"]:focus,
.rfq .send-rfq input[type="email"]:focus,
.rfq .send-rfq input[type="file"]:focus,
.rfq .send-rfq textarea:focus {
  border-color: var(--accent-color);
}

.rfq .send-rfq input[type="text"]::placeholder,
.rfq .send-rfq input[type="email"]::placeholder,
.rfq .send-rfq input[type="file"]::placeholder,
.rfq .send-rfq textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 700;
}

.rfq .send-rfq button[type="button"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 700;
}

.rfq .send-rfq button[type="button"]:hover {
  background: white;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
  height: 500px;
  z-index: 1;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 40%
  );
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 10px;
}

.page-title h1 span {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #521648;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
