:root {
  --color1: black;
  --color2: white;
  --color3: aqua;
  --color4: maroon;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color2);
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.container-navbar {
  display: flex;
  width: 100%;
  padding: 0.2 rem;
  justify-content: center;
  background-color: var(--color4);
  box-shadow: 0 4px 12px rgb(red, green, blue);
  z-index: 1000;
  color: var(--color2);
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 200px;
  height: 80px;
}

.navbar {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 60%;
}

.navbar ul {
  margin: auto;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  list-style: none;
  gap: 3rem;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--color2);
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}

.navbar ul li a:hover {
  color: var(--color3);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.home {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 86.6vh;
}

.container-home1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.container-home1 .title {
  margin-top: 3.1rem;
  letter-spacing: 1px;
}

.container-home1 .title h1 {
  font-size: 58px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 700ms ease;
  font-variation-settings: "wght" 311;
  margin-bottom: -0.4rem;
  color: var(--color1);
  outline: none;
  text-decoration: none;
}

.container-home1 h1:hover {
  font-variation-settings: "wght" 582;
  letter-spacing: 6px;
}

.brgbng {
  color: var(--color4) !important;
}

.container-home1 .subtittle {
  padding: 1.5rem 0;
  width: 63%;
  color: var(--color4);
}

.container-home1 .subtittle p {
  text-align: justify;
  font-size: 17px;
  font-weight: 500;
}

.container-home1 button {
  transform: scale(1);
  border-radius: 999px;
  box-shadow: var(--color1) 0 0px 15px 1px;
  box-sizing: border-box;
  color: var(--color4);
  background: var(--color1);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  padding: 12px 24px;
  touch-action: manipulation;
  border: 0;
  transition: 100ms ease;
}

.container-home1 button:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
  transition: 300ms ease;
  color: var(--color1);
  background: #fff;
}

.data-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 55%;
  height: 20%;
  margin-top: 2.5rem;
}

.data-container h3 {
  font-family: "Fredericka the Great";
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-align: center;
  color: var(--color1);
}

.data-container p {
  color: var(--color4);
  text-align: center;
  letter-spacing: 0.1rem;
  font-size: 17px;
}

.data-container .jenisfeature {
  width: 33%;
  height: 100%;
}

.data-container .produkmotor {
  width: 33%;
}

.data-container .jenismotor {
  width: 33%;
}

.container-home2 {
  width: 100%;
  display: flex;
}

.container-home2.video-container {
  display: flex;
  justify-content: center;
  height: 100%;
}

.video {
  margin: auto;
  width: 740px;
  height: 700px;
  display: flex;
  justify-content: left;
  padding: 2rem 0;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8%;
}

.usu {
  display: flex;
  flex-direction: row;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.usu h1 {
  font-weight: 1000;
  font-size: 50px;
  font-style: italic;
  color: var(--color2);
  text-shadow: 0 0.1em 0.1em var(--color3);
  padding: 0 0.5rem;
}

.usu h3 {
  font-weight: 200;
  font-size: 15.5px;
  font-style: italic;
  color: var(--color2);
  text-shadow: 0 0.1em 0.1em var(--color2);
}

.container-feature {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 1250px;
  margin-top: 5rem;
}

.container-feature h4 {
  font-family: "Fredericka the Great";
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 700ms ease;
  font-variation-settings: "wght" 311;
  color: var(--color1);
  outline: none;
}

.card {
  color: var(--color4);
  background-color: var(--color4);
  border-radius: 16px;
  box-shadow: black 0px 0px 15px 1px;
}

.card img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card-body h5 {
  font-family: "Fredericka the Great";
  color: var(--color3);
  font-size: 35px;
  font-weight: 500;
}

.card-body p {
  color: var(--color2);
}

.container-top {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 1400px;
}

.container-top h4 {
  font-family: "Fredericka the Great";
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 700ms ease;
  font-variation-settings: "wght" 311;
  color: var(--color1);
  outline: none;
}

.footer-dark {
  padding: 50px 0;
  color: #f0f9ff;
  background-color: #282d32;
}

.footer-dark h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-dark ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.footer-dark ul a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .footer-dark .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }
}

.footer-dark .item.text {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .footer-dark .item.text {
    margin-bottom: 0;
  }
}

.footer-dark .item.text p {
  opacity: 0.6;
  margin-bottom: 0;
}

.footer-dark .item.social {
  text-align: center;
}

@media (max-width: 991px) {
  .footer-dark .item.social {
    text-align: center;
    margin-top: 20px;
  }
}

.footer-dark .item.social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
}

.footer-dark .item.social > a:hover {
  opacity: 0.9;
}

.footer-dark .copyright {
  text-align: center;
  padding-top: 24px;
  opacity: 0.3;
  font-size: 13px;
  margin-bottom: 0;
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #fff;
  max-width: 60%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.popup-content img {
  width: 100px;
  height: 100px;
}

.close-popup-button {
  background-color: #ff4444;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.container-yes {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 1250px;
  margin-top: 5rem;
}

.container-yes h4 {
  font-family: "Fredericka the Great";
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 700ms ease;
  font-variation-settings: "wght" 311;
  color: var(--color1);
  outline: none;
}