html {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
}

main {
  background: #ffffff;
  flex: 1;
}

p {
  color: #231a1a;
}

h1 {
  font-family: "Copperplate", "Copperplate Gothic", serif;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-text-stroke: 0.5px;
  text-stroke: 0.5px;
  letter-spacing: 0.5px;
}

h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  text-transform: none;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

ul {
  text-align: center;
  font-size: 2rem;
  display: inline-block;
}

li {
  text-decoration: none;
  font-size: 1rem;
}

.active-nav {
  color: #c49528;
}
.active-nav:hover {
  color: #a27b20;
}

.non-active-nav {
  color: #84641c;
}
.non-active-nav:hover {
  color: #a27b20;
}

.footer-div {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 1000 !important;
}
@media (min-width: 640px) {
  .footer-div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  flex: 1;
}

@media (min-width: 640px) {
  .footer-wording {
    padding-left: 5%;
    width: 40%;
    flex: 1;
  }
}

@media (min-width: 640px) {
  .logo-footer-link {
    margin-left: auto;
    margin-right: 7%;
  }
}
@media (max-width: 639px) {
  .logo-footer-link {
    margin: auto;
  }
}

@media (min-width: 992px) {
  .logo-spacing {
    margin-left: 50px;
  }
}

@media (min-width: 768px) {
  #slideshow {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  #slideshow {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}

.overlay {
  background: linear-gradient(to top, rgba(20, 24, 28, 0.95), rgba(20, 24, 28, 0.88));
  width: 100%;
  z-index: 1;
  padding: 1.5rem 1rem 1.25rem;
}
@media (min-width: 768px) {
  .overlay {
    padding: 2rem 1rem 1.75rem;
  }
}
.overlay img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .overlay img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
}
.overlay h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 16px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

#about-banner p {
  font-size: 1.3rem;
}

.about {
  background: linear-gradient(to bottom, #d3b886, #ffffff);
  padding-top: 3vh;
}
@media (min-width: 768px) {
  .about p {
    font-size: 2rem;
  }
}

.about-header {
  font-size: 2.9rem;
  font-family: "Copperplate", "Copperplate Gothic", serif;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-text-stroke: 0.5px;
  text-stroke: 0.5px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .about-header {
    font-size: 2rem;
  }
}

.contact-btn {
  background-color: #000000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-bottom: 3vh;
}

.contact-project {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(211, 184, 134, 0.3647058824) 15%, #ffffff 90%);
  background-position: center;
  background-repeat: no-repeat;
  padding: 1%;
  width: 100%;
  margin: 0 auto;
}

.service-headers {
  margin-bottom: 0vh;
  margin-top: 2vh;
  font-size: 2rem;
  text-decoration: underline;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: none;
}

.services-description {
  font-size: 1rem;
  width: 80%;
  margin: auto;
  color: rgb(116, 116, 114);
  margin-bottom: 2vh;
}

.service-section {
  text-align: center;
  z-index: 12;
  background: #ffffff;
}

.contact-section {
  margin-top: 5vh;
  margin-bottom: 5vh;
}
.contact-section h2 {
  margin-bottom: 3vh;
}
.contact-section form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-section label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  text-align: left;
  font-weight: bold;
}
.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-section textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-section button {
  margin-top: 20px;
}

form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 20px;
}
form * {
  flex: 0 0 auto;
}

.navtogcustom {
  --style: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-image: var(--style) !important;
}

#vert-line-assitance {
  display: none;
  position: fixed;
  top: 0%;
  left: 50%;
  width: 4px;
  height: 100vh;
  background-color: black;
  z-index: 10;
  margin: auto;
  transform: translateX(-50%);
}

.owner-info-link {
  all: unset;
  display: block;
}
.owner-info-link h3 {
  all: unset;
  display: block;
  font-size: calc(1.3rem + 0.6vw);
  color: #49524c;
  padding-bottom: 1vh;
  margin-top: 3vh;
  cursor: pointer;
}

#about-banner {
  border-top-width: 2px !important;
}

.project-title {
  font-weight: 600;
}

.textclamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  word-break: break-word;
  max-height: 4.5rem;
  min-height: 0;
  flex-shrink: 1;
  flex-basis: auto;
}

#project-scope,
#project-materials,
#project-team,
#project-highlights {
  text-align: left !important;
}
#project-scope li,
#project-materials li,
#project-team li,
#project-highlights li {
  text-align: left !important;
}
#project-scope li:not(#project-team li),
#project-materials li:not(#project-team li),
#project-team li:not(#project-team li),
#project-highlights li:not(#project-team li) {
  padding-left: 1.8em;
  position: relative;
}
#project-scope li:not(#project-team li) > span,
#project-materials li:not(#project-team li) > span,
#project-team li:not(#project-team li) > span,
#project-highlights li:not(#project-team li) > span {
  position: absolute;
  left: 0;
}/*# sourceMappingURL=custom.css.map */