@import url("https://fonts.googleapis.com/css?family=Montserrat");

:root {
  --primary: #b6895b;
  --bg: #010101;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: #fff;
  min-height: 2000px;
}

.navbar {
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(1, 1, 1, 0.8);
  border-bottom: 1px solid #926d48;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

/* .cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.8rem;
  background-color: var(--primary);
  border-radius: 4rem;
  box-shadow: 0 0 1.3rem #b6895b;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
}

.cta:hover {
  box-shadow: none;
} */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0));
}

/* .hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 50%
  );
} */

.hero .content {
  padding: 1.4rem 7%;
  /* max-width: 60rem; */
  text-align: center;
  position: fixed;
}

.hero .content h1 {
  font-size: 5em;
  color: #fff;
  text-shadow: 3px 3px 0px rgba(1, 1, 3, 0.5);
}

.hero .content h1 span {
  color: var(--primary);
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

.hero .content p {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-weight: 100;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.about {
  padding: 8rem 7% 1.4rem;
}

.about h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.about h2 span {
  color: var(--primary);
}

.about .row .about-img {
  flex: 1 1 35rem;
}

.about .row .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
}

.about .row .content h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about .row .content p {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.6;
}

.hukum {
  padding: 8rem 7% 1.4rem;
}

.hukum h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.hukum h2 span {
  color: var(--primary);
}

.about-img {
  text-align: center;
}

.hukum .row .about-img {
  flex: 1 1 35rem;
}

.hukum .row .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
}

.hukum .row .content h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hukum .row .content p {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.6;
  margin-top: 10px;
}

.web {
  padding: 8rem 7% 1.4rem;
}

.web h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.web h2 span {
  color: var(--primary);
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

@media (max-width: 1366px) {
  html {
    font-size: 75%;
    scroll-behavior: smooth;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
    scroll-behavior: smooth;
  }

  .about .row {
    flex-wrap: wrap;
  }

  .about .row .about-img img {
    width: 100%;
  }

  .about .row .about-img {
    flex: 1 1 35rem;
  }

  .about .row .content {
    padding: 0;
  }

  .about .row .content h3 {
    margin-top: 1rem;
    font-size: 3rem;
  }

  .about .row .content p {
    font-size: 1.6rem;
  }

  .hukum .row {
    flex-wrap: wrap;
  }

  .hukum .row .about-img img {
    width: 100%;
  }

  .hukum .row .about-img {
    flex: 1 1 35rem;
  }

  .hukum .row .content {
    padding: 0;
  }

  .hukum .row .content h3 {
    margin-top: 1rem;
    font-size: 2.5rem;
  }

  .hukum .row .content p {
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
    scroll-behavior: smooth;
  }
}
