:root {
  --primary--color: #34349965;
  --secondry--color: #62354565;
  --font: #252545;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 62%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
nav {
  position: fixed;
  top: 0;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  width: 100vw;
  /* background: url("./assets/nav.jpg");

  background-position: center;
  background-size: contain; */
}
nav .logo {
  font-size: 3rem;
  padding-left: 3rem;
}

.logo-img {
  height: 80px;
  width: auto;
}
nav .menu {
  font-size: 3rem;
  margin: 3rem;

  background-color: transparent;
  width: 60px;
  height: 15px;
  border: 5px solid white;
}
.hero {
  position: relative;
  height: 100vh;
  max-width: 100vw;
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  /* transition: scroll 3s ease-in-out; */
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
html {
  overflow-x: hidden;
}
html ::-webkit-scrollbar {
  display: none;
}
.br {
  display: flex;
  flex-direction: row;
}

.overlay-imgs {
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
@keyframes roter {
  /* 0% {
    transform: scale(0.5);
  } */
  0% {
    transform: scale(1) translateX(0%);
  }
  100% {
    transform: scale(1.1) translateX(-100%);
  }
}
.overlay-imgs > div > img {
  width: 100vw;
  height: 100vh;

  animation: roter 9s linear infinite alternate;
}
.background-imgs {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.background-imgs > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.background-imgs > div > img {
  width: auto;
  height: 100vh;
  animation: drop 9s linear infinite alternate;
}
@keyframes drop {
  0% {
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(1.1) rotate(1.5turn);
  }
}
.clr-img {
  width: 500vw;
  height: auto;
  object-fit: contain;

  animation: roter 9s linear infinite alternate;
}
.section-2 {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
}
.section-2 > .col-1,
.col-2 {
  width: fit-content;
  min-height: 100vh;
  background-color: green;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.cl2-img {
  height: 35vh;
}
.cl2-img:hover {
  transform: scale(2) rotate(1turn);
  transition: all 2s linear;
}
.section-2 > .col-1 > h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  color: white;
}

.red-box {
  background-color: #960620;
  width: 30vw;
  padding: 1rem;
  transform: rotate(-10deg);
  box-shadow: 5px 5px 5px 5px #960620;
}
.col-2 h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  color: white;
}
.col-2 p {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  color: white;
}
footer {
  display: flex;
  max-width: 100vw;
  align-items: center;
  justify-content: center;
}
.image-fluid {
  width: 100%;
  height: fit-content;
}
@media only screen and (max-width: 749px) {
  .hero {
    max-width: 100vw;
    overflow: hidden;
    margin: 0;
  }
  .section-2 {
    flex-wrap: wrap;
    max-width: 100vw;
    margin: 0;
  }
  .col-1,
  .col-2 {
    width: 100vw;
    margin: 0;
  }
}
