@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');



:root {

  --yellow: #e6af5d;

  --blue-gray-400: #42485a;

  --blue-gray-300: #3b4151;

  --blue-gray-200: #2e323f;

  --blue-gray-100: #21242d;

  --blue-gray-50: #1a1d24;

}



body {

  font-size: 14px;

  font-family: 'Montserrat', sans-serif;

  font-weight: 400;

}



main {

  font-size: 1rem;

  background-color: white;

}



/*** Text & Fonts ***/



h1 {

  font-size: clamp(3rem, 4.5vw, 6rem);

  font-weight: 800;

  line-height: 1;

  padding: 1rem 0;

  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);

}



h2 {

  font-size: clamp(2rem, 3vw, 4rem);

  font-weight: 700;

  line-height: 1;

  padding: 0.5rem 0;

}



h3 {

  font-size: clamp(1.75rem, 2.5vw, 3rem);

}



h4 {

  font-size: clamp(1rem, 2vw, 2rem);

}



h5 {

  font-size: clamp(.8rem, 1.6vw, 1.7rem);

}



.text-yellow, a.text-yellow {

  color: var(--yellow);

  text-decoration: none;

}



a.text-yellow:hover {

  color: white;

}


/* Home Page Video Header */

.home-header, .home-header video, .home-header .overlay {
  width: 100%;
  height: 100vh;
  min-height: 50rem;
}

.home-header video, .home-header .overlay {
  position: absolute;
  inset: 0;
}

.home-header {
  position: relative;
  background-color: black;
}

.home-header video {
  object-fit: cover;
  object-position: top;
  z-index: 0;
}

.home-header .overlay {
  background-color: var(--blue-gray-400);
  opacity: 0.5;
  z-index: 1;
}

.home-header .container {
  position: relative;
  z-index: 2;
}

.home-header .container .row {
  height: 80vh;
}

.home-header .container .row .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/***** Header, Footer, & Navigation *****/


.primary-header {

  position: inherit;

  align-items: end;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: linear-gradient(to bottom, var(--blue-gray-100), var(--blue-gray-300));

  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);

  z-index: 5;

}



#home .primary-header {

  background: initial;

}


.primary-header a {

  color: white;

}



.primary-header .row {

  display: flex;

  flex-direction: row;

  justify-content: space-between;

  width: 100%;

}



.primary-navigation {

  list-style: none;

}



.primary-navigation a {

  white-space: nowrap;

  text-decoration: none;

  color: white;

  font-size: 1.1rem;

}



.primary-navigation a:hover, .primary-navigation a:active, .primary-navigation a:focus, .primary-footer a:hover {

  color: var(--yellow);

}



.secondary-header {

  text-align: center;

}



.secondary-header h1 {

  font-size: clamp(2rem, 3vw, 4rem);

  font-weight: 700;

  color: var(--yellow);

  text-shadow: none;

  padding: 3rem 0 0 0;

}



.navbar {

  height: 90px;

  display: flex;

}



.navbar-toggler {

  width: 100%;

  background-color: white;

  border-radius: 0%;

}



.navbar-toggler:focus {

  box-shadow: none;

}



.brand-section img {

  position: relative;

  z-index: 10;

  width: 100%;

}



@media screen and (max-width: 576px) {

  .primary-navigation {

    background-color: var(--blue-gray-400);

    opacity: .8;

  }

}



@media screen and (max-width: 992px) {

  .navbar {

    height: auto;

    display: flex;

    flex-direction: column;

  }

}



.button-cta {

  color: var(--yellow);

  white-space: nowrap;

  font-size: 2rem;

  font-weight: 800;

  line-height: 1;

  text-decoration: none;

  opacity: .9;

}



.button-cta:hover {

  opacity: 1;

}



.primary-footer {

  color: white;

}



.primary-footer .heading {

  font-weight: bold;

  text-transform: uppercase;

}



.primary-footer a {

  color: white;

}



.primary-footer .social-icons {

  vertical-align: middle;

}



.primary-footer .social-icons i {

  opacity: 0.9;

  display: inline-block;

  text-align: center;

  margin: 0 5px;

  width: 40px;

  height: 40px;

  line-height: 40px;

  font-size: 30px;

}



.primary-footer .social-icons i:hover {

  opacity: 1;

}



.primary-footer .hr-yellow {

  margin: 0.5rem 0;

  width: 40px;

  color: var(--yellow);

  border: 0;

  border-top: 4px solid;

  opacity: 1;

}



.contact-icons i {

  color: var(--yellow);

  font-size: 1.4rem;

  line-height: 1;

  text-align: center;

}


/***** Custom List Styles *****/



.nav-link {

  display: inline;

}



dl, ol, ul {

  list-style-position: inside;

  padding: .5rem 0;

}



li {

  padding: .25rem 0;

}



.custom-list-checkmark {

  list-style-position: inside;

  padding: 0 0 1rem 0;

}



.custom-list-checkmark li {

  list-style-type: none;

  padding: 0 0 1rem 0;

}



.custom-list-checkmark li:before {

  content: "";

  background-image: url('/media/checkmark.png');

  background-repeat: no-repeat;

  background-position: center;

  vertical-align: middle;

  padding: 10px 24px 0 0;

  margin-right: 10px;

}



.custom-list-checkmark p {

  padding-left: 45px;

  margin-top: -45px;

}



.custom-list-heading {

  font-weight: bold;

  line-height: 32px;

}



.custom-list-arrows {

  list-style-position: inside;

}



.custom-list-arrows li::marker {

  content: '» ';

  color: var(--yellow);

}



/***** Backgrounds *****/



.bg-yellow {

  background: var(--yellow);

  text-shadow: 0px 0px 2px #00000099;

}



.bg-blue-gray-400 {

  background: var(--blue-gray-400);

}



.bg-blue-gray-300 {

  background: var(--blue-gray-300);

}



.bg-blue-gray-200 {

  background: var(--blue-gray-200);

}



.bg-blue-gray-100 {

  background: var(--blue-gray-100);

}



.bg-blue-gray-50 {

  background: var(--blue-gray-50);

}







/******* Highlights *********/



.block-highlight-1 {

  background-color: #f3f3f3;

  padding: 20px;

  border-left: solid 7px var(--yellow);

}



.block-highlight-1 p {

  margin: 0;

}



.block-highlight-2 {

  background-color: #f6f6f6;

  padding: 20px;

  margin: 20px 0;

  border: solid 1px var(--yellow);

  border-left: solid 10px var(--yellow);

  box-shadow: 2px 2px 4px #0003;

}



.block-highlight-2 h2 {

  margin-bottom: 20px;

}



.shadow {

  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;

  transition: box-shadow .4s ease-in-out !important;

}



.shadow:hover {

  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;

  transition: box-shadow .3s ease-in-out !important;

}



/***** Forms and Buttons *****/



#quote-form {

  text-align: center;

  background: #fff;

}



.form-control:focus {

  border-color: var(--yellow) !important;

  box-shadow: none !important;

}



.cta-banner {

  display: flex;

  justify-content: space-between;

  align-content: space-between;

}

.cta-phone, .cta-phone a, .cta-phone a:hover {
  color: white;
  text-decoration: none;
  font-weight: bold;
}


.cta-heading {

  font-size: clamp(2rem, 3.5vw, 3.5rem);

  font-weight: 700;

}



.button-dark, .button-yellow {

  display: inline-block;

  height: fit-content;

  padding: 1rem 1.25rem;

  border: none;

  color: white;

  font-size: 1.25rem;

  font-weight: bold;

  text-decoration: none;

  text-transform: uppercase;

  text-align: center;

  box-shadow: 0px 0px 2px #00000033;

}



.button-dark:hover, .button-yellow:hover {

  color: white;

  box-shadow: 0px 0px 4px #00000066;

}



.button-dark {

  background-color: var(--blue-gray-200);

}



.button-dark:hover {

  background-color: #222;

}



.button-yellow {

  background-color: var(--yellow);

  text-shadow: 0px 0px 2px #00000099;

}



.button-yellow:hover {

  text-shadow: 0px 0px 3px #00000099;

  box-shadow: 0px 0px 3px #00000099;

}



@media screen and (max-width: 992px) {

  .cta-banner {

    display: block;

  }

}



.button-small {

  padding: .65rem .85rem;

  font-size: .75rem;

}



/****************/

/***** Misc *****/

/****************/



/* Custom styling for BS5 accordion */

.accordion-button.collapsed, .accordion-button:not(.collapsed) {

  color: initial;

  background-color: initial;

}



.accordion-item:first-of-type .accordion-button {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}



.accordion-button:focus {

  box-shadow: initial;

  border-color: initial;

}



.accordion-button.collapsed::after {

  display: inline-block;

  content: "";

  vertical-align: -.125em;

  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z' clip-rule='evenodd'/></svg>");

  background-repeat: no-repeat;

  background-size: 1rem 1rem;



}



.accordion-button:not(.collapsed)::after {

  display: inline-block;

  content: "";

  vertical-align: -.125em;

  background-position-x: 5px;

  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z' clip-rule='evenodd'/></svg>");

  background-repeat: no-repeat;

  background-size: 1rem 1rem;

}



.accordion-button {

  font-weight: bold;

}



.accordion-item {

  border: none;

  border-bottom: 1px solid #ddd;

}



.image-container {

  display: flex;

  justify-content: center;

}



.img-shift-left {

  position: relative;

  left: -50%;

  width: 150%;

  height: 100%;

}



.img-shift-right {

  position: relative;

  max-width: 37vw;

  width: 150%;

  height: 100%;

}



.project-gallery img {

  transition: transform .5s;

  -webkit-transition: transform .5s;

  -moz-transition: transform .5s;

  -ms-transition: transform .5s;

  -o-transition: transform .5s;

}



.project-gallery img:hover {

  cursor: zoom-in;

  transform: scale(1.1);

  -webkit-transform: scale(1.1);

  -moz-transform: scale(1.1);

  -ms-transform: scale(1.1);

  -o-transform: scale(1.1);

}



.hr-yellow {

  width: 70px;

  color: var(--yellow);

  border: 0;

  border-top: 4px solid;

  opacity: 1;

}



ul.two-column-list {

  -webkit-column-count: 2;

  -moz-column-count: 2;

  column-count: 2;

}



@media screen and (max-width: 768px) {

  ul.two-column-list {

    -webkit-column-count: 1;

    -moz-column-count: 1;

    column-count: 1;

  }

}



.arched-shadow {

  position: relative;

}



.arched-shadow:after {

  content: '';

  display: block;

  position: relative;

  bottom: -1rem;

  background: radial-gradient(farthest-side at center bottom, transparent 50%, grey 100%);

  height: 1rem;

}



.filter-faded {

  filter: brightness(150%) contrast(50%) saturate(0%);

}



.image-container {

  position: relative;

  width: 100%;

  height: 0;

  padding-bottom: 75%;

  /* Adjust as needed for the desired aspect ratio */

}



.image-container img {

  position: absolute;

  width: 100%;

  height: 100%;

  object-fit: contain;

}



.float-left-small {

  margin: .25rem .5rem .25rem 0;

  float: left;

  width: auto;

  height: 10rem;

}



.float-left-large {

  margin: .25rem 1rem .25rem 0;

  float: left;

  width: auto;

  height: 20rem;

}



@media screen and (max-width: 576px) {

  .float-left-small, .float-left-large {

    margin: .25rem 0;

    float: none;

    width: 100%;

    height: auto;

  }

}



.card {

  position: relative;

  overflow: hidden;

  height: 600px;

}



.card-title {

  font-size: medium;

  font-weight: bold;

}



.card::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));

  z-index: 2;

}



.card-img-top {

  object-fit: cover;

  height: 100%;

  width: 100%;

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1;

}



.card-body {

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: center;

  height: 100%;

  width: 100%;

  padding: 1rem;

  color: #fff;

  z-index: 3;

}



/*****************************/

/***** Carousel Sliders ******/

/*****************************/



.carousel-control-prev,

.carousel-control-next {

  top: auto;

  bottom: 0;

  transform: translateY(50%);

}



#review-carousel .carousel-item {

  padding: 1.5rem;

}



#review-carousel .quote-container {

  border: 1px solid #ddd;

  padding: 1rem;

}



#review-carousel .carousel-inner {

  margin: 2rem auto;

  max-width: 992px;

  min-height: 400px;

}



#review-carousel .carousel-inner p {

  color: var(--gray-600);

}



#review-carousel .carousel-control-prev,

#review-carousel .carousel-control-next {

  border: 2px solid var(--yellow);

  color: var(--yellow);

  width: 3rem;

  height: 3rem;

  border-radius: 100%;

  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}



@media screen and (max-width: 768px) {



  #review-carousel .carousel-inner {

    padding: 20px 5px 30px 5px;

  }



  #review-carousel .carousel-control-prev,

  #review-carousel .carousel-control-next {

    display: none;

  }



}



#review-carousel .carousel-control-prev-icon {

  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6af5d'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") no-repeat center center / cover;

  background-size: 50%;

}



#review-carousel .carousel-control-next-icon {

  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6af5d'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat center center / cover;

  background-size: 50%;

}



#review-carousel .carousel-indicators {

  color: var(--yellow);

  margin-top: 50px;

}



#review-carousel .stars, #review-carousel .quote {

  margin-bottom: 1rem;


}



#review-carousel .stars {

  max-width: 100%;
  margin-right: auto;

}


#review-carousel .quote {
  max-width: 100%;

  margin-left: auto;

}



.reviewer {

  margin: 1rem 0;

  display: inline-flex;

  align-items: center;

  vertical-align: middle;

  font-weight: bold;

}



.round-letter {

  display: inline-block;

  text-align: center;

  margin: 0 5px;

  width: 50px;

  height: 50px;

  line-height: 50px;

  font-size: 20px;

  color: white;

  background-color: var(--yellow);

  border-radius: 90%;

}



.carousel-indicators [data-bs-target] {

  width: 10px;

  height: 10px;

  border-radius: 100%;

  background-color: var(--yellow);

}



#project-carousel {

  margin-bottom: -10rem;

}





#project-carousel .carousel-control-prev,

#project-carousel .carousel-control-next {

  background-color: var(--yellow);

  color: white;

  width: 50px;

  height: 50px;

  top: 50%;

  margin: 0 1.5rem;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  z-index: 5;

}



#project-carousel .carousel-control-prev-icon {

  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") no-repeat center center / cover;

  background-size: 70%;

}



#project-carousel .carousel-control-next-icon {

  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat center center / cover;

  background-size: 70%;

}



/* =====================*/

/* Multi Slide Carousel */

/* =====================*/



@media (max-width: 767px) {

  .multislide-carousel .carousel-inner .carousel-item>div {

    display: none;

  }



  .multislide-carousel .carousel-inner .carousel-item>div:first-child {

    display: block;

  }

}



.multislide-carousel .carousel-inner .carousel-item.active,

.multislide-carousel .carousel-inner .carousel-item-next,

.multislide-carousel .carousel-inner .carousel-item-prev {

  display: flex;

}



/* medium and up screens */

@media (min-width: 768px) {



  .multislide-carousel .carousel-inner .carousel-item-end.active,

  .multislide-carousel .carousel-inner .carousel-item-next {

    transform: translateX(25%);

  }



  .multislide-carousel .carousel-inner .carousel-item-start.active,

  .multislide-carousel .carousel-inner .carousel-item-prev {

    transform: translateX(-25%);

  }

}



.multislide-carousel .carousel-inner .carousel-item-end,

.multislide-carousel .carousel-inner .carousel-item-start {

  transform: translateX(0);

}