:root {
  --color-1: #d75324;
  --color-2: white;
  --color-3: #d75324;
  --color-4: white;
  --color-5: #d75324;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
}

body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

.ParallaxVideo {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.ParallaxVideo video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-left: 4px solid #d75324;
  border-bottom: 4px solid #d75324;
  transform: rotate(-45deg) translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-45deg);
  }

  50% {
    transform: translateX(-50%) translateY(10px) rotate(-45deg);
  }
}

.ParallaxVideo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 500px;
  /* Adjust height as needed */
  background: linear-gradient(to bottom, transparent, rgba(44, 42, 40, 0.95));
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 1921px) {
  .ParallaxVideo video {
    top: 0;
    left: 0;
    min-width: 100vw;
  }
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #2c2a28f1;
  filter: drop-shadow(0px 1px 1px #000);
  z-index: 998;
}

.cert {
  width: 60px;
  float: right;
}

.logo {
  width: 350px;
  float: left;
}

.topnav .icon {
  display: none;
}

.topnavOptions {
  padding-top: 2px;
  font-size: larger;
  margin-left: 41%;
}

.topnavOptions a {
  float: left;
  padding: 14px 16px;
  color: #d75324;
  text-decoration: none;
}

.topnavOptions a:hover {
  background-color: #d75324;
  color: black;
}

.logoTop {
  background-color: #2c2a28f1;
  overflow: hidden;
}

.mainContent {
  background-color: #2c2a28f1;
  padding-top: 5%;
}

.mainContentMobile {
  background-color: #2c2a28f1;
  display: none;
}

.leftBlock {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  margin-right: 10%;
  width: 30vw;
  margin-left: 10%;
  margin-top: 2%;
}

.leftBlock img {
  float: right;
}

.rightBlock {
  display: inline-block;
  width: 35%;
  height: 100%;
}

.rightBlock img {
  width: 100%;
  height: auto;
  display: block;
}

.youtubeVid {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 35vw;
  height: 20vw;
  margin-bottom: 6%;
}

.center {
  text-align: center;
  padding: 5%;
}

.container {
  padding-top: 5%;
  padding-bottom: 2%;
  text-align: center;
}

.fullPageContainer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(44, 42, 41);
}

.rowFullWidth {
  display: flex;
  justify-content: space-evenly;
  flex-grow: 1;
  padding-top: 3%;
  background: rgb(44, 42, 41)
}

.indexContainer {
  display: flex;
  flex-direction: column;
}

/*____________ PRODUCTS ____________*/
.productHeading {
  text-align: center;
  margin: auto;
  text-transform: uppercase;
  color: #d75324;
  padding-top: 2%;
  padding-bottom: 1%;
}

.Productcontainer {
  align-items: center;
  display: flex;
  position: relative;
  width: 25vw;
  max-width: 100%;
  opacity: 0.9;
}

.image {
  opacity: 0.9;
  width: 100%;
  transition: .5s ease;
  backface-visibility: hidden;
  overflow: auto;
}

.Productcontainer:hover .image {
  opacity: 0.3;
}

.Productcontainer:hover .middle {
  opacity: 0.9;
}

.productButtons {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  display: block;
}

.productButtons img {
  width: 100%;
  height: auto;
  display: block;
}

.middle {
  opacity: 0;
  position: absolute;
  height: auto;
  width: 60%;
  left: 20%;
  text-align: center;
  cursor: pointer;
  background-color: #2c2a28;
  transition: 0.6s;
  pointer-events: none;
}

.middle h2 {
  font-size: 1.5vw;
  color: #d75324;
}

.middle:hover {
  background-color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 20vw;
  top: 17vh;
  width: 60vw;
  overflow: auto;
  background: rgb(44, 42, 40);
  box-shadow: 1px 1px 50px 1px rgba(0, 0, 0, 0.82);
}

.close {
  color: #d75324;
  float: right;
  font-size: 4vh;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-header h1 {
  padding-left: 10px;
  padding-top: 20px;
  text-align: center;
}

.modal-body {
  background-color: rgba(44, 42, 40, 1);
}

.productImg img {
  width: 100%;
}

.modal-footer {
  padding: 2vh 2vw;
  background: rgb(44, 42, 40);
  text-align: center;
}

.modal-content {
  position: relative;
  background-color: rgba(44, 42, 40, 1);
  margin: auto;
  padding: 0;
  width: 100%;
  box-shadow: 10px 4px 8px 10px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 2s
}

.modal-body .row {
  margin: auto;
  width: 100%;
}

/*____________ COLLUMN TYPES ____________*/

.products {
  flex: 0 0 25%;
}

.footerBox {
  width: 20%;
}

.modalText {
  width: 50%;
  overflow: hidden;
  float: left;
  padding: 15px;
}

.productImg {
  width: 50%;
  overflow: hidden;
  text-align: center;
  float: right;
  padding: 15px;
}

[class*="products"] {
  padding: 15px;
}

.row::after {
  content: "";
  clear: both;
  display: table;

}

.row {
  padding-top: 3%;
  margin: auto;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.preFooter {
  min-height: 15vh;
  background: rgb(44, 42, 40);
  background: linear-gradient(360deg, rgba(44, 42, 40, 1) 0%, #2c2a28f1 45%);
}

.footer {
  min-height: 20vh;
  background: rgba(44, 42, 40, 1);
}

.emailLink {
  text-decoration: none;
  color: aliceblue;
}

.emailLink:hover {
  text-decoration: underline;
}

.productLine {
  background-color: #d75324;
  color: antiquewhite;
  padding: 30px 60px;
  text-align: center;
  border-radius: 20px;
  font-size: 1.5vw;
  cursor: pointer;
  height: 10vh;
}

.productLine:hover {
  color: #d75324;
  background-color: white;
}


h1 {
  color: #d75324;
}

h2 {
  color: antiquewhite
}

p {
  color: antiquewhite;
  font-size: 110%;
}

.modalText p {
  font-size: large;
}

.productPage {
  background: rgba(44, 42, 40, 1);
  padding-top: 2vh;
  display: inline-block;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #d75324;
  color: antiquewhite;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

#myBtn:hover {
  background-color: #726969;
}

.map {
  display: flex;
  justify-content: space-evenly;
  padding-top: 4%;
}

.map-item {
  width: 600px;
  height: 450px;
  object-fit: cover;
}

.building {
  width: 600px;
  height: 450px;
}

@media screen and (max-width: 900px) {
  .building {
    display: none;
  }

  .cert {
    width: 7%;
  }

  .productImg {
    width: 100%;
  }

  .modalText {
    width: 100%;
    padding: 0%;
    text-align: center;
  }

  .rowFullWidth {
    padding: 5%;
  }

  .leftBlock {
  width: 80%;
  }

  .rightBlock {
    width: 100%;
    text-align: center;
  }

  .rightBlock img {
    width: auto; 
    padding-top: 5%;
    max-width: 50%;
    height: auto;
    display: inline-block;
  }

  .scroll-indicator {
    bottom: 250px;
  }

  .ParallaxVideo {
    height: 900px;
  }
}

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

  .ParallaxVideo video {
    width: 100%;
    height: auto;
  }

  .scroll-indicator {
    bottom: 25px;
  }

  .icon {
    float: left;
    display: block;
    color: #d75324;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.2vw;
  }

  .icon:hover {
    background-color: #d75324;
    color: black;
  }

  .cert {
    width: 12%;
  }

  .topnavOptions {
    display: block;
    justify-content: center;
    margin-left: 11%;
  }

  .topnavOptions a {
    display: none;
  }

  .topnav a.icon {
    display: block;
    font-size: 4vw;
  }

  .topnav.responsive a {
    display: block;
    font-size: 4vw;
  }

  .logo {
    margin-top: 3px;
    width: 75%;
  }

  .mainContent {
    display: none;
  }

  .mainContentMobile {
    display: block;
    background-color: #2c2a28f1;
  }

  .products {
    flex: 100%
  }

  .Productcontainer {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0.9;
  }

  .middle {
    opacity: 0.9;
    position: absolute;
    width: 75%;
    left: 12.5%;
    height: 30%;
    cursor: pointer;
    background-color: #2c2a28;
    transition: 0.6s;
  }

  .middle h2 {
    font-size: 4.5vw;
  }

  .rightBlock {
    width: 49%;
    margin: 0;
  }

  .leftBlock {
    width: 49%;
    margin: 0;
  }

  .footerBox {
    width: 100%;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 10vw;
    top: 17vh;
    width: 80vw;
    overflow: auto;
    background: rgb(44, 42, 40);
    box-shadow: 1px 1px 50px 1px rgb(0 0 0 / 82%);
  }

  .modal p {
    font-size: 1.6vh;
    text-align: center;
  }

  .modalText {
    width: 100%;
    text-align: center;
    padding: 5px;
  }

  .productImg {
    width: 100%;
    text-align: center;
  }

  h1 {
    letter-spacing: 0.3vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: auto;
    text-transform: uppercase;
    color: #d75324;
    text-align: center;
    font-size: large;
  }

  h5 {
    letter-spacing: 0.3vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 3vw;
    margin: auto;
    text-transform: uppercase;
    color: #d75324;
  }

  h2 {
    font-size: 5vw;
    text-align: center;
  }

  p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: antiquewhite;
    font-size: 1.5vh;
    text-align: center;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    letter-spacing: 0.3vw;
  }

  .modalText p {
    font-size: 3vw;
  }

  .modal-footer {
    padding: 10px;
  }

  .map {
    padding: 2%;
  }

  .map-item {
    width: 300px;
    height: 250px;
    object-fit: scale-down;
  }

  .building {
    display: none;
  }

  .rowFullWidth {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
}