:root {
  --primary: #3b82f6;
  --bg: #010101;
  --box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.1);
  --border: 0.1rem solid rgba(255, 255, 255, 0.2);
  --white: #fff;
  --bg-card: rgba(255, 255, 255, 0.1);
  --gray: #808080;
  --header-height: 3.5rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  height: 100%;
}

.hero .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "container gambar";
  width: 100%;
  height: 110vh;
  mask-image: linear-gradient(rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0));
}

.hero-container {
  grid-area: container;
}

.hero-img {
  grid-area: gambar;
}

.hero .row .hero-container,
.hero .row .hero-img {
  position: relative;
}

.hero .row .hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .row .hero-text {
  position: fixed;
  top: 200px;
  width: 65%;
  height: 60%;
  background-color: rgb(60, 131, 246);
  border: var(--border);
  /* border-radius: 0rem 3rem 3rem 0rem; */
}

.hero .row .hero-text .hero-text-data {
  display: flex;
  flex-direction: column;
  padding: 4rem 20%;
}

.hero .row .hero-text .hero-text-data h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: start;
  margin-top: 20px;
}

.hero .row .hero-text .hero-text-data span {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: start;
}

.hero .row .hero-text .hero-text-data .hero-paragraph {
  display: flex;
  height: 20rem;
  margin-top: 1rem;
  align-items: end;
  /* background-color: #fff; */
}

.hero .row .hero-text .hero-text-data p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: start;
}

.hero .row .hero-img {
  background-image: url("../img/kmtbaru.jfif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -9999;
}

.hero .row .hero-img .overlay {
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1600px) {
  html {
      font-size: 75%;
  }

  .hero .row .hero-text .hero-text-data .hero-paragraph {
      height: 14rem;
  }

  .hero .row .hero-text {
      height: 60%;
  }
}

@media screen and (max-width: 1366px) {
  html {
      font-size: 70%;
  }

  .hero .row .hero-text .hero-text-data .hero-paragraph {
      height: 14rem;
  }
  .hero .row .hero-text {
      height: 58%;
  }
}

@media screen and (max-width: 1024px) {
  html {
      font-size: 65%;
  }

  .hero .row .hero-text .hero-text-data h1 {
      font-size: 3.5rem;
      margin-top: -100px;
  }

  .hero .row .hero-text .hero-text-data p {
      font-size: 1.8rem;
  }

  .hero .row .hero-text .hero-text-data .hero-paragraph {
      height: 14rem;
  }

  .hero .row .hero-text {
      height: 55%;
  }
}

@media screen and (max-width: 768px) {
  html {
      font-size: 60%;
  }

  .hero {
      /* padding: 4rem 0; */
      /* margin: 4rem 0 8%; */
      height: 100vh;
  }

  .hero .row {
      grid-template-columns: 1fr;
      grid-template-areas:
          "container"
          "gambar";
  }

  .hero-container {
      /* min-height: 28rem; */
      height: 0%;
      display: none;
      top: 0;
      /* background-color: #fff; */
  }

  .hero-img {
      height: 100%;
      margin-bottom: 100%;
  }

  .hero .row .hero-text {
      position: fixed;
      height: 50%;
      top: 100px;
      width: 90%;
      padding: 8% 5% 2rem;
      box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      background-color: var(--primary);
  }

  .hero .row .hero-text.hero-box {
      background-color: rgb(60, 131, 246, 0.5);
      transition: all 0.3s;
  }

  .hero .row .hero-text .hero-text-data {
      padding: 20% 3%;
  }

  .hero .row .hero-img {
      height: 100%;
      top: 0;
  }

  .hero .row .hero-text .hero-text-data h1 {
      font-size: 4rem;
  }
  .hero .row .hero-text .hero-text-data .hero-paragraph {
      height: 14rem;
  }

  .hero-text-data{
    margin-top: 100px;
    
  }
}

@media screen and (max-width: 425px) {
  html {
      font-size: 55%;
  }

  .hero-container {
      min-height: 18rem;
      height: 100%;
  }

  .hero .row .hero-text {
      padding: 3% 1% 2rem;
  }

  .hero .row .hero-text .hero-text-data h1 {
      font-size: 2.5rem;
  }

  .hero .row .hero-text .hero-text-data p {
      font-size: 1.4rem;
  }
}