@import url("https://fonts.googleapis.com/css2?family=Noticia+Text:wght@700&family=Varela&display=swap");
@font-face {
  font-family: "Durbank";
  src: url("/assets/fonts/Durbank.otf");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Uniform";
  src: url("/assets/fonts/uniformpro-reg-webfont.woff") format("woff2"), url("/assets/fonts/uniformpro-reg-webfont.woff") format("woff");
}
:root {
  --content-width: 75ch;
  --side-padding: max(calc((100vw - var(--content-width)) / 2), 10px);
  --title-font: "Durbank", serif;
  --secondary-font: "Durbank";
  font-family: "Uniform";
  line-height: 1.5;
  font-size: 24px;
  --text-color: #111;
  --background-color: white;
  --accent-color: #830708;
  --kaki: #c3b091;
  --cobalt: #4F5F6D;
  color: var(--text-color);
}

html {
  background: lightgray;
}

body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  --text-color: white;
  --background-color: black;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/background_1920x1080.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: top center;
  clip-path: polygon(0% 0, 100% 0%, 100% 100%, 50% calc(100% - 5vw), 0 100%);
  padding-bottom: 2rem;
}
header #tagline-container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: end;
  padding-bottom: 3rem;
}
header #tagline p.slogan {
  text-align: center;
  font-family: var(--title-font);
  font-weight: bold;
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-transform: uppercase;
}
header #tagline h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
  color: white;
  opacity: 0.5;
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 5rem;
}
header #tagline .cta {
  text-align: center;
  margin-top: 0;
}
header #tagline .cta a {
  font-family: var(--title-font);
  font-size: 1.5rem;
  color: var(--text-color);
  text-transform: uppercase;
  text-shadow: none;
  border: 1px solid var(--text-color);
}
header #tagline a:hover {
  background-color: var(--text-color);
  color: var(--accent-color);
}
@media screen and (max-width: 1200px) {
  header #tagline {
    padding-top: 170px;
    box-sizing: border-box;
  }
  header #tagline h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  header {
    justify-content: start;
    background-attachment: scroll;
    background-position: top;
  }
}
@media screen and (max-width: 540px) {
  header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/background_540x960.jpg");
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  padding-left: 5%;
  --background-color: black;
  --text-color: white;
  background-color: var(--background-color);
  width: 100%;
  box-sizing: border-box;
}
nav #logo img {
  display: block;
  width: 150px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  nav ul {
    justify-content: center;
  }
}
nav ul li a {
  font-family: var(--title-font);
  font-size: 1.25rem;
  color: var(--text-color);
  text-transform: uppercase;
}
nav .phone {
  font-family: var(--title-font);
  font-size: 1.25rem;
  color: var(--text-color);
  text-transform: uppercase;
  color: white;
  text-align: center;
}
nav .icon-button {
  display: none;
}
@media screen and (max-width: 1200px) {
  nav {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 10px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
  }
  nav #menu-buttons {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
  }
  nav .icon-button {
    display: block;
    padding-right: 4rem;
  }
  nav ul {
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 2rem;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  nav.open ul {
    height: auto;
    padding: 2rem 0;
  }
}

@media screen and (max-width: 1200px) {
  main {
    padding-top: 170px;
  }
}

.standard-width {
  padding: 0 var(--side-padding);
}

footer {
  background-color: black;
  --text-color: white;
  padding: 20px var(--side-padding) 0 var(--side-padding);
  margin-top: auto;
  font-weight: bold;
}
footer a {
  color: white;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 2rem;
  min-height: 250px;
}
@media screen and (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    align-items: center;
    font-size: 16px;
  }
}
footer .social-icons-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

h1 {
  font-family: var(--title-font);
  font-size: 5rem;
  color: var(--accent-color);
  text-align: center;
  padding: 2rem 0;
  margin: 0;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--text-color);
  border-top: 2px solid var(--text-color);
  text-transform: uppercase;
}

h2 {
  font-family: var(--title-font);
  font-size: 3.5rem;
  color: var(--text-color);
  text-align: center;
  margin: 0;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
}

h3 {
  font-family: var(--title-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-transform: uppercase;
}

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

.keyword {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  :root {
    font-size: 18px;
  }
  h2 {
    font-size: 2rem;
  }
}
a {
  color: lightcoral;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  color: var(--text-color);
  list-style-type: disc;
}

button, input[type=submit] {
  background-color: lightgray;
  border: none;
  padding: 10px 20px;
  font-family: inherit;
  font-size: inherit;
  display: block;
  width: 200px;
  border-radius: 5px;
  margin: 2rem auto;
  cursor: pointer;
}

.icon-button {
  background-color: transparent;
  border: none;
  padding: 0;
  display: block;
  width: 32px;
  margin: 0;
  cursor: pointer;
}
.icon-button img {
  display: block;
  width: 24px;
  margin: auto;
}

.inline-icon {
  height: 1em;
  vertical-align: middle;
}

.link-button {
  background-color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 1s;
  border: 1px solid var(--text-color);
}
.link-button:hover {
  text-decoration: none;
  background-color: var(--text-color);
  color: var(--accent-color);
}

form .form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
form .form-field label {
  font-weight: bold;
}
form .form-field input, form .form-field textarea {
  border: 1px solid lightgray;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  max-width: 100%;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0 var(--side-padding);
}
@media screen and (max-width: 768px) {
  .columns {
    flex-direction: column;
  }
}

.grid {
  padding: 0 max((100vw - 125ch - 2rem) / 2, 10px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .grid {
    display: block;
  }
}

.chevron-gray-white, .chevron-white-gray {
  background-color: white;
  height: calc(5vw + 4rem);
  z-index: 1;
  transform: scaleY(1.01);
}

.chevron-gray-white::before, .chevron-white-gray::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #d3d3d3;
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 50% calc(100% - 5vw), 0 100%);
}

.chevron-white-gray {
  background-color: lightgray;
}

.chevron-white-gray::before {
  background-color: white;
}

.chevron-line::before {
  content: "";
  background-color: currentColor;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 100%, 50% calc(100% - 5vw + 10px), 100% 100%, 100% calc(100% - 10px), 50% calc(100% - 5vw), 0% calc(100% - 10px));
}

.chevron-line {
  height: calc(5vw + 4rem);
}

.projects {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .projects {
    flex-direction: column;
  }
  .projects .project {
    margin: auto;
  }
}
.projects .project h3 {
  margin: 0;
  padding: 0.5rem 0 0 0;
}
.projects .project p {
  margin: 0;
  padding: 0;
}

#slogan {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

#our-customers {
  background-color: var(--background-color);
  min-height: 200px;
  padding: 1px;
}
#our-customers div {
  display: flex;
  width: auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 3rem;
  padding-left: 10px;
  padding-right: 10px;
}
#our-customers div img {
  max-width: 100%;
  max-height: 200px;
  height: auto;
}

#our-mission {
  padding: 1px;
}

#what-we-do {
  background-color: white;
  padding-bottom: 5vw;
}
#what-we-do .standard-width {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.service-item-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 350px);
  justify-content: center;
  width: 100%;
  grid-gap: 1rem;
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.service-item-container .service-item {
  background-color: #333130;
  --text-color: white;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  height: fit-content;
  border-style: double;
  border-width: 8px;
  border-color: var(--cobalt);
  border-radius: 10px;
  position: relative;
  max-height: 430px;
  min-height: 430px;
  transition: max-height 1s ease-in-out;
  overflow: hidden;
}
.service-item-container .service-item h3 {
  font-size: 1.5rem;
  margin-top: 0;
  color: var(--kaki);
}
.service-item-container .service-item ul {
  padding-left: 20px;
}
.service-item-container .service-item .service-short {
  display: none;
}
.service-item-container .service-item .service-long {
  height: 100%;
}
.service-item-container .service-item .inline-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  scale: 1.5;
  display: none;
}
.service-item-container .service-item:hover {
  max-height: 1000px;
}
.service-item-container .service-item:not(:hover)::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background-image: linear-gradient(rgba(51, 49, 48, 0), rgb(51, 49, 48));
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .service-item-container {
    display: flex;
    flex-direction: column;
  }
  .service-item-container .service-item::before {
    display: none;
  }
  .service-item-container .service-item {
    max-height: none;
    min-height: none;
  }
  .service-item-container .service-item .service-short {
    display: none;
  }
  .service-item-container .service-item .service-long {
    display: block;
  }
}

.projects-list-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.projects-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  box-sizing: border-box;
  justify-content: center;
  margin: 0;
  gap: 2rem;
  margin-top: 50px;
  padding: 10px;
  padding-bottom: 2rem;
  padding-top: calc(50px + 2rem);
  background-color: var(--background-color);
}
@media screen and (max-width: 768px) {
  .projects-list {
    display: flex;
    flex-direction: column;
  }
}
.projects-list li {
  display: block;
  position: relative;
  max-width: 400px;
  margin: auto;
}
.projects-list li h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0;
  padding: 0.5rem 0;
}
.projects-list li p {
  margin: 0;
  padding: 0;
}
.projects-list li .icon-button {
  background-color: rgba(255, 255, 255, 0.3);
  aspect-ratio: 1;
}
.projects-list li .slide {
  display: none;
  max-width: 400px;
  aspect-ratio: 1;
}
.projects-list li .slide img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
}
.projects-list li .slide.current {
  display: block;
}
.projects-list li .slide-left {
  position: absolute;
  left: 10px;
  top: 50%;
}
.projects-list li .slide-right {
  position: absolute;
  right: 10px;
  top: 50%;
}
.projects-list li .slide-right:hover, .projects-list li .slide-left:hover {
  scale: 1.25;
}

.project-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .project-container {
    flex-direction: column;
    align-items: center;
  }
}

.project {
  position: relative;
  width: 400px;
  height: 400px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 10px;
  --text-color: white;
  transition: background-color 500ms;
}
.project h3 {
  margin: 0;
  color: var(--kaki);
  text-align: center;
  transform: translateX(0) translateY(-2rem);
  opacity: 0;
  transition: transform 500ms, opacity 500ms;
}
.project span {
  display: block;
  margin: 0;
  color: white;
  text-align: center;
  transform: translateX(0) translateY(-2rem);
  opacity: 0;
  transition: transform 500ms, opacity 500ms;
}
.project p {
  transform: translateX(-2rem) translateY(0);
  opacity: 0;
  transition: transform 500ms, opacity 500ms;
  transition-delay: 100ms;
}
@media screen and (max-width: 400px) {
  .project {
    width: calc(100% - 10px);
    height: fit-content;
  }
}
@media (pointer: coarse) {
  .project {
    background-color: black;
  }
  .project .project-image {
    opacity: 0.2;
  }
  .project h3, .project p, .project span {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

.project:hover {
  background-color: black;
}
.project:hover .project-image {
  opacity: 0.2;
}
.project:hover h3, .project:hover p, .project:hover span {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

.project-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
  transition: opacity 500ms;
  border-radius: 10px;
}

/*# sourceMappingURL=main.css.map */