body {
  margin: 0;
  padding: 0;
}

.flexOrtala, div.slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
}

div.kategori {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #333;
  z-index: 1100;
  background-color: #333;
  position: relative;
  cursor: pointer;
}
div.kategori > img {
  width: 50px;
}
div.kategori > ul {
  position: absolute;
  width: 30%;
  background-color: orange;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
div.kategori > ul > li > a {
  display: block;
  padding: 0.5rem;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
}
div.kategori:hover > ul {
  display: block;
}
@media (max-width: 600px) {
  div.kategori {
    display: block;
  }
}

nav {
  background-color: orange;
}
nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav > ul > li > a {
  display: block;
  padding: 0.5rem;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
}
nav > ul > li > a:hover {
  background-color: #333;
  color: white;
}
@media (max-width: 600px) {
  nav {
    display: none;
  }
}

div.slide {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url(img/developer.jpg);
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
div.slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}
div.slide > h1 {
  color: white;
  z-index: 1;
  font-size: 5rem;
}
@media (max-width: 900px) {
  div.slide {
    text-align: center;
  }
  div.slide > h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  div.slide {
    text-align: center;
  }
  div.slide > h1 {
    font-size: 1.5rem;
  }
}

div.services {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 80%;
  margin: 3rem auto;
}
@media (max-width: 990px) {
  div.services {
    flex-direction: column;
  }
}
div.services > div {
  margin: 0.5rem;
  border-radius: 0.3rem;
  overflow: hidden;
  transition: box-shadow 0.3s linear;
  border: 1px solid gray;
  cursor: pointer;
}
div.services > div:hover {
  box-shadow: 0 0 10px #333;
}
div.services > div > div {
  text-align: center;
  padding: 0.5rem;
}
div.services > div > div:nth-child(1) > img {
  height: 60px;
}
div.services > div > div:nth-child(2) > h5 {
  margin: 0;
  padding: 0;
  font-size: 26px;
  font-weight: bold;
}
div.services > div > div:nth-child(3) > p {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}

div.portfolio {
  width: 80%;
  margin: 5rem auto;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: 500px 500px 500px;
}
div.portfolio > div {
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem;
}
div.portfolio > div > div:nth-child(1) {
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: transform 0.3s linear, filter 0.3s cubic-bezier(0, 0.94, 0.58, 1);
}
div.portfolio > div > div:nth-child(2) {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  right: -100%;
  top: 1vh;
  width: calc(100% - 2vh);
  height: calc(100% - 2vh);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  padding: 0.6rem;
  box-sizing: border-box;
}
div.portfolio > div > div:nth-child(2) > h4 {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  position: relative;
}
div.portfolio > div > div:nth-child(2) > h4::after {
  content: "";
  transition: width 0.5s linear;
  border-bottom: 2px solid white;
  width: 10%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}
div.portfolio > div > div:nth-child(2) > p {
  color: white;
  font-size: 1.2rem;
  text-align: justify;
}
div.portfolio > div:hover > div:nth-child(1) {
  filter: blur(10px);
  transform: scale(1.2);
}
div.portfolio > div:hover > div:nth-child(2) {
  right: 1vh;
}
div.portfolio > div:hover > div:nth-child(2) > h4::after {
  width: 100%;
}
@media (max-width: 990px) {
  div.portfolio {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: auto auto;
    grid-template-rows: 500px 500px 500px 500px 500px 500px;
  }
}
@media (max-width: 600px) {
  div.portfolio {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: auto;
    grid-template-rows: 500px 500px 500px 500px 500px 500px 500px 500px 500px 500px 500px 500px;
  }
}

footer {
  width: 100%;
  background-color: orange;
  color: white;
}
footer > div {
  width: 80%;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: bold;
}
footer > div > p {
  margin: 0;
  padding: 0;
  text-align: center;
  padding: 0.5rem;
}/*# sourceMappingURL=main.css.map */