.columHero {
  position: relative;
  width: 100%;
  min-height: 630px;
  overflow: hidden;
}

.columHero_Background {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  height: 100%;
}

.columHero_BackgroundCol {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100%;
  position: relative;
}
.columHero_BackgroundCol::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}

.columHero_BackgroundImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.columHero_Content {
  position: absolute;
  inset: 0;
}

.columHero_Container {
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.columHero_Inner {
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.columHero_Title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 900;
  line-height: 22.747px;
  letter-spacing: 3.75px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 24px;
}

.columHero .button {
  display: inline-block;
  padding: 18px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f0f0f;
  font-family: "DM Sans";
  font-size: 22.725px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.747px;
  letter-spacing: 3.75px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}
.columHero .button:hover {
  background: #fff;
}

@media (max-width: 1024px) {
  .columHero_Title {
    font-size: 42px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 768px) {
  .columHero_Background {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .columHero_Container {
    grid-template-columns: 1fr;
  }
  .columHero_Title {
    font-size: 36px;
  }
}
