@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Optic", sans-serif;
}

/* Fullscreen background video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background-image: url(/imgs/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
}

/* Optional: darken video for better text contrast */
.bg-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* adjustable */
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  border-radius: 0;
  transition: border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  will-change: transform, border-radius, width, height, top, left;
  transform: translateZ(0); /* Force hardware acceleration */
}
.video-wrapper hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid #fff;
  width: 22.8vw;
}
.video-wrapper h1 {
  font-weight: 900;
  color: white;
  font-size: 6vw;
  line-height: 0.9;
}
.video-wrapper h1 span {
  color: black;
  -webkit-text-stroke: 2px white;
}
.video-wrapper h2 {
  font-weight: 900;
  color: white;
  font-size: 2.43vw;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 0;
}
.video-wrapper p {
  font-weight: 400;
  color: white;
  font-size: 1.46vw;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .video-wrapper h1 {
    font-weight: 900;
    color: white;
    font-size: 12vw;
    line-height: 0.9;
  }
  .video-wrapper hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-top: 1px solid #fff;
    width: 44.8vw;
  }
  .video-wrapper h2 {
    font-size: 4.83vw;
  }
  .video-wrapper p {
    font-size: 2.9vw;
  }
  .video-wrapper .scrolldown {
    position: absolute;
    color: #fff;
    bottom: 80px;
    font-weight: 400;
  }
}

/* Scroll-based transformations */
.video-wrapper.scrolling {
  position: fixed;
  top: 3rem;
  left: 3rem;
  width: calc(100vw - 6rem);
  height: calc(100vh - 6rem);
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
@media (max-width: 992px) {
  .video-wrapper.scrolling {
    top: 1rem;
    left: 1rem;
    width: calc(100vw - 2rem);
    height: calc(100vh - 2rem);
  }
}
.video-wrapper.scrolling .scrolldown {
  display: none;
}

.video-wrapper.scrolled {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100vw - 6rem);
  height: calc(100vh - 6rem);
  border-radius: 3rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}
@media (max-width: 992px) {
  .video-wrapper.scrolled {
    top: 1rem;
    left: 1rem;
    width: calc(100vw - 2rem);
    height: calc(100vh - 2rem);
  }
}
.video-wrapper.scrolled .scrolldown {
  display: none;
}

header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  text-align: left;
  flex-direction: column;
}

.scrolldown {
  position: absolute;
  color: #fff;
  bottom: 44px;
  font-weight: 400;
}

.breadcrumb {
  margin: 0 3em 1.5em;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  background-color: #fff;
}
.breadcrumb a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
  margin: 0 5px;
}

body#home main {
  margin-top: 85vh;
}

main {
  position: relative;
  z-index: 1;
  background: white;
  margin-top: 10vh;
  margin-bottom: 0;
  padding-bottom: 0;
}
main.no-video {
  margin-top: 0;
  padding-top: 100px;
}

main a {
  color: #020202;
  border-bottom: 1px dashed #fff;
}
main a:hover {
  text-decoration: dashed;
  color: #000;
  border-bottom: 1px dashed #000;
}
main .button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .button {
  display: inline-block !important;
  padding: 1rem 2rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  border: 1px dashed #000;
  transition: all 0.3s ease;
}
main .button:hover {
  background-color: #ccc;
  color: #000;
  border: 1px solid #aaa;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
main .button.super {
  font-size: 1rem;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
main h1 {
  font-size: 6rem;
  line-height: 0.9;
  margin-bottom: 0;
  font-weight: 900;
  color: #000;
}
main h1 span {
  display: block;
  margin: 2rem 0;
  font-size: 1rem !important;
}
main h2 {
  font-size: 3rem;
  line-height: 1.1em;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  color: #000;
}
main h2.bold {
  font-weight: 900;
  font-family: "Optic", sans-serif;
}
main h3 {
  font-size: 2.1rem;
  line-height: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 900;
  color: #000;
}
main p {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 1em;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #000;
}
main p.lead {
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  line-height: 1.8rem;
  margin-bottom: 1em;
  font-weight: 200;
}
main p.small {
  font-size: 0.8rem;
  line-height: 1rem;
  margin-bottom: 1em;
  font-weight: 200;
}
main blockquote {
  font-size: 26px;
  line-height: 36px;
  padding: 40px 60px;
  border-left: solid 10px #ddd;
  margin: 20px 0;
  position: relative;
}
main blockquote:before {
  content: "“";
  display: block;
  position: absolute;
  top: 84px;
  left: -40px;
  font-size: 190px;
  font-family: "Optic";
}
main blockquote:after {
  content: "”";
  display: block;
  position: absolute;
  bottom: -54px;
  right: 0px;
  font-size: 190px;
  font-family: "Optic";
}
main .bigCTA {
  background-color: #000;
  color: #fff !important;
  padding: 2rem 3rem 2rem;
  border-radius: 10px;
  text-align: left;
  margin-bottom: -150px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
main .bigCTA h3 {
  color: #fff;
}
main .bigCTA p {
  color: #fff;
}
main .bigCTA .button {
  margin: 0;
}
main .bigCTA .bigCTAimg {
  width: 100%;
  height: auto;
}
main .quotehead {
  width: 100px;
  border-radius: 50px;
  float: left;
  margin-right: 20px;
}

.featServices a {
  padding: 1rem;
  display: block;
}
.featServices a:hover {
  background-color: #fff;
  box-shadow: 0 20px 20px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.featServices a:hover h5 {
  color: #000;
}
.feat-img {
  width: 65%;
  mix-blend-mode: multiply;
  margin: 1rem auto;
}

.tophat {
  width: 20%;
  margin-top: -200px;
}
@media (max-width: 992px) {
  .tophat {
    width: 50%;
    margin-top: -70px;
  }
}

.mainIMG {
  width: 20%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .mainIMG {
    width: 50%;
  }
}

.spacer {
  display: block;
  width: 100%;
}
.spacer.s50 {
  height: 50px;
}
.spacer.s100 {
  height: 100px;
}
.spacer.s200 {
  height: 200px;
}
.spacer.s300 {
  height: 300px;
}
.spacer.s400 {
  height: 400px;
}

.contactform {
  padding: 2em;
  border: 1px dashed #999;
  border-radius: 20px;
}
.contactform label {
  font-size: 12px;
}
.contactform input, .contactform select, .contactform textarea {
  width: 100%;
  padding: 0.5em;
}
.contactform input.checkbox, .contactform select.checkbox, .contactform textarea.checkbox {
  width: inherit;
}
.contactform hr {
  border-top: 1px dashed #999;
  margin: 1em -2em;
}
.contactform button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin: 0.5em 0 0;
  width: 100%;
  border-radius: 10px;
  border: 1px dashed #fff;
  transition: all 0.3s ease;
}
.contactform button:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/*  Navigation and Footer Styles ---------------------- ------------------------------------------------------------ */
body.interior nav {
  visibility: visible !important;
  transform: translateY(0%);
  opacity: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 3em;
  width: calc(100% - 6em);
  background: rgba(0, 0, 0, 0.9);
  background-image: url(/imgs/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 0.5rem 1rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 20px 20px;
  display: flex;
  font-weight: 200;
  font-size: 18px;
  justify-content: space-between;
  align-items: center;
}
nav .nav-mobile {
  display: none;
}
@media (max-width: 992px) {
  nav {
    left: 1rem;
    width: calc(100vw - 2rem);
  }
  nav .nav-desktop {
    display: none;
  }
  nav .nav-mobile {
    display: block;
  }
}
nav #logo {
  font-weight: 900;
  font-size: 30px;
  font-family: "Optic", sans-serif;
  color: #fff;
  text-decoration: none;
}
nav #logo span {
  color: #000;
  -webkit-text-stroke: 1px white;
}
nav #logo:hover {
  text-decoration: none !important;
}
nav menu {
  margin: 0;
  padding: 0;
}
nav menu .nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}
nav menu .nav-link:hover {
  color: #ccc;
}
nav .dropdown-menu {
  min-width: 16em;
  padding: 1em;
  background-color: #000;
  border-radius: 0 0 1em 1em;
  color: #fff;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  flex-direction: column;
  gap: 0.5em;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
nav .dropdown-menu.show {
  display: flex;
}
nav .dropdown-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  font-size: 14px;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5em;
  margin: 0.15em 0;
  transition: background-color 0.3s ease;
}
nav .dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

nav.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

footer {
  background: #000;
  color: white;
  padding: 2rem 0 0 0;
  text-align: left;
  opacity: 1;
  visibility: visible;
  transform: translateY(50px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: -50px;
}
footer a {
  color: #fff;
}
footer hr {
  border-top: 1px dashed #999;
}
footer .smallprint {
  font-size: 12px;
  color: #999;
  text-align: left;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}
footer .logo {
  font-family: "Optic", sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  text-align: right;
}
footer .logo span {
  color: #000;
  -webkit-text-stroke: 1px white;
}

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