@import "general.css";

.header {
  min-height: 100vh;
  position: relative;
  max-width: 100%;
  background-image: url(../img/products/background.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
}

.header-text {
  min-width: 52.44%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 3rem;
}

.header-text-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

#title {
  margin-top: 2rem;
  font-size: var(--fs-50);
  font-weight: var(--fw-bold-2);
}

#text {
  margin-top: 3rem;
  font-size: var(--fs-19);
  font-weight: var(--fw-regular-1);
}

.header-img {
  min-width: 47.56%;
  min-height: 100vh;
  position: relative;
}

.header-img > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.8s opacity ease-in-out;
  transition-delay: 0.8s;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.slide[data-active] {
  opacity: 1;
  z-index: 0.3;
  transition-delay: 0s;
}

.content-block {
  font-size: var(--fs-24);
  min-width: 31.6875rem;
  min-height: 6.625rem;
  background-color: white;
  position: absolute;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: space-between;
  top: 75%;
  left: 10%;
}

.content a {
  text-decoration: none;
}

.content-info {
  top: 90%;
  position: absolute;
  left: 9%;
  display: flex;
  justify-content: space-between;
  min-width: 31.6875rem;
}

.content-info-numbers {
  font-size: var(--fs-19);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 14rem;
}

.line {
  min-width: 7.6875rem;
  background-color: black;
  position: absolute;
  padding: 0.0625rem;
  left: 3rem;
}

.number {
  padding: 1rem;
}

.arrows {
  display: flex;
  justify-content: space-between;
}

.arrow > button {
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

.arrow > button:hover,
.arrow > button:focus {
  color: white;
  background: rgba(0, 0, 0, 0.2);
}

.circle {
  margin-top: 2rem;
}

.circle img {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.header-video {
  max-width: 16.0625rem;
  max-height: 10.9375rem;
  position: absolute;
  top: 70%;
  left: 37%;
  filter: brightness(50%);
}

.header-video img {
  border-radius: 0.94rem;
}
