:root {
  --brand: #ff4f00;
  --brand-dark: #131313;
  --brand-hover: #e64600;
  --text: #1f1f1f;
  --muted: #6c757d;
  --bg-soft: #f7f7f7;
  --radius: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
}

/* Buttons */

.btn-black {
  background: none;
  border-color: #000;
  color: #000;
  border-radius: 999px;
  padding: .75rem 1.1rem;
  font-weight: 400;
}

.btn-black:hover {
  background: #000000;
  color: #fff;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: .75rem 1.1rem;
  font-weight: 400;
}

.btn-brand:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

/* Hero */

.hero {
  background-size: cover;
  background-position: center;
  /*transform: scale(1.02);*/
  background-image: url("/assets/img/4.jpg?h=65b8f92ff6d2cee17d14427737b9541b");
}

/* Sections */

section {
  scroll-margin-top: 90px;
}

.section-pad {
  padding: 4.5rem 0;
}

.section-title {
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.soft {
  background: var(--bg-soft);
}

/* Cards */

.project-card {
  overflow: hidden;
  background: #fff;
}

/* Parallax */

.parallax {
  position: relative;
  min-height: 55vh;
  display: grid;
  align-items: center;
  background-image: url("/assets/img/2353166.jpg?h=4ac0c259f95e8177009513142b6716c1");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19,19,19,.62);
}

.parallax .inner {
  position: relative;
  z-index: 1;
}

.parallax-2 {
  position: relative;
  min-height: 55vh;
  display: grid;
  align-items: center;
  background-image: url("/assets/img/13622.jpg?h=f4b55fe6cfe4b13fd8dec1a009065534");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.parallax-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19,19,19,.72);
}

.parallax-2 .inner {
  position: relative;
  z-index: 1;
}

/* Gallery */

.project-thumb {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Contact */

.form-group {
  padding-top: 30px;
}

.form-control {
  min-height: 50px;
  border-radius: 0;
  background: var(--bs-body-color);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.45);
}

.form-control::placeholder {
  color: var(--bs-secondary);
  opacity: 1;
}

.form-control:focus {
  background: var(--bs-dark);
  color: #ffffff;
  border: 0.5px solid var(--bs-primary);
  box-shadow: 0 0 0 .25rem rgba(255,79,0,.25);
}

/* Footer */

footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.85);
}

footer a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Reduce parallax on iOS/low power */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-2 {
    background-attachment: scroll;
  }
}

label {
  color: #ffffff;
}

.icon-1 {
  color: var(--bs-primary);
  margin-right: 15px;
  margin-bottom: 7px;
}

#article .p {
  padding-bottom: 30px;
}

.modal {
  --bs-modal-width: 100%;
}

