.header-container[data-astro-cid-hb4bk5ha] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 60vh;
}
.header-container[data-astro-cid-hb4bk5ha]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--low-opacity-black);
  z-index: 1;
}
.header-content[data-astro-cid-hb4bk5ha] {
  display: flex;
  position: relative;
  color: var(--backgroundColor);
  gap: 5rem;
  z-index: 2;
  height: 100%;
  align-items: center;
  justify-content: start;
}
.content-container[data-astro-cid-hb4bk5ha],
.image-container[data-astro-cid-hb4bk5ha] {
  width: 60%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
.image-container[data-astro-cid-hb4bk5ha] {
  align-items: center;
  justify-content: center;
}
.header-content[data-astro-cid-hb4bk5ha] h1[data-astro-cid-hb4bk5ha] {
  font-size: 60px;
  line-height: 62px;
  font-weight: 800;
  letter-spacing: 2px;
  padding-top: 0.5rem;
  text-align: left;
}
.line[data-astro-cid-hb4bk5ha] {
  width: 100%;
  height: 3px;
  background-color: var(--primaryColor);
  margin: 1rem 0;
  animation: grow-line 1s ease forwards;
}
@keyframes grow-line {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.header-content[data-astro-cid-hb4bk5ha] h2[data-astro-cid-hb4bk5ha],
.header-content[data-astro-cid-hb4bk5ha] p[data-astro-cid-hb4bk5ha] {
  font-weight: lighter;
}
.text-image-header-container {
  background:
    linear-gradient(
      180deg,
      var(--high-opacity-primaryColor) 0%,
      var(--primaryColor) 100%
    ),
    #d3d3d3 0% 0% / 100px 100px repeat;
  min-height: min-content;
  padding-top: calc(4em + 20px);
}
.text-image-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  line-height: normal;
}
.left-container {
  display: flex;
  height: 100%;
  justify-content: space-around;
  flex-direction: column;
  align-items: start;
}
.left-up h1 {
  color: var(--backgroundColor);
  font-size: 60px;
  font-weight: 700;
}
.left-up p {
  color: var(--backgroundColor);
  font-size: 12px;
  font-weight: 400;
}
.left-bottom {
  color: var(--backgroundColor);
  font-size: 46px;
  font-weight: 700;
}
.left-bottom p:nth-child(2) {
  font-size: 16px;
}
.right-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.think-text {
  display: flex;
  justify-content: end;
  gap: 5px;
}
.think-text p {
  color: var(--backgroundColor);
  text-align: right;
  font-size: 14px;
  width: 50%;
}
.line {
  width: 2px;
  height: auto;
  background: var(--backgroundColor);
}
.right-container .header-img {
  width: 200px;
}
@media (max-width: 768px) {
  .text-image-header {
    grid-template-columns: 1fr;
    padding-top: calc(2em + 20px);
  }
  .left-up h1 {
    font-size: 48px;
  }
  .left-up p {
    font-size: 10px;
  }
  .left-bottom {
    font-size: 36px;
  }
  .left-bottom p:nth-child(2) {
    font-size: 14px;
  }
  .think-text {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .think-text p {
    width: 100%;
    font-size: 12px;
  }
  .line {
    display: none;
  }
  .right-container .header-img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .text-image-header {
    padding-top: calc(1.5em + 20px);
  }
  .left-up h1 {
    font-size: 36px;
  }
  .left-up p {
    font-size: 8px;
  }
  .left-bottom {
    font-size: 28px;
  }
  .left-bottom p:nth-child(2) {
    font-size: 12px;
  }
  .right-container .header-img {
    width: 100px;
  }
}
.cta-mouse {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--backgroundColor);
  padding: 20px 10px;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 20px;
}
.cta-mouse:hover {
  background-color: var(--backgroundColor);
}
.cta-mouse:hover .cta-circle {
  background-color: transparent;
}
.cta-circle {
  background-color: var(--backgroundColor);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  animation: cta-circle 1.5s infinite;
}
@keyframes cta-circle {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}
.minimal-image-header[data-astro-cid-idiea7gn] {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  gap: 34px;
  overflow: hidden;
}
.picture-component[data-astro-cid-idiea7gn] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.overlay[data-astro-cid-idiea7gn] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--low-opacity-black);
  z-index: 0;
}
.minimal-image-header[data-astro-cid-idiea7gn] h1[data-astro-cid-idiea7gn] {
  color: var(--backgroundColor);
  font-size: 25px;
  font-weight: 200;
  letter-spacing: 17px;
  text-indent: 17px;
  line-height: 179%;
  text-transform: uppercase;
  z-index: 1;
}
.minimal-image-header[data-astro-cid-idiea7gn] p[data-astro-cid-idiea7gn] {
  color: var(--backgroundColor);
  font-size: 1em;
  font-weight: 200;
  line-height: 90%;
  z-index: 1;
}
