:root {
  --bg-color: #f0f0f0;
  --txt-color: #221e22;
  --yellow: #e29f01;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Dosis", sans-serif;
  font-family: "Fira Sans", sans-serif;
  box-sizing: border-box;
  scroll-padding-top: 2rem;
  scroll-behavior: smooth;
  text-decoration: none;
}

html {
  position: relative;
  /* overflow: hidden; */
  background-color: var(--bg-color);
}

body {
  height: 1000px;
  overflow-x: hidden;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: #5c8ba9;
  z-index: 999999;
}

#header .logo img {
  width: 2rem;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.5s ease;
}

#navbar li a:hover {
  color: #ffff;
}

#page-header {
  max-width: 100%;
  max-height: 550px;
  overflow: hidden;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  color: white;
  position: relative;
}

#page-header img {
  width: 151%;
  margin-left: -20%;
  margin-top: -24%;
}

#page-header h1 {
  position: absolute;
  font-family: "Fira Sans", sans-serif;
  font-family: "Neuton", serif;
  font-weight: 800;
  font-size: 100px;
  z-index: 99;
  left: 40%;
  top: 18%;
}

#page-header2 h1 {
  font-family: "Fira Sans", sans-serif;
  font-family: "Neuton", serif;
}

#featured {
  text-align: center;
}

#featured p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

#featured .f-container {
  position: relative;
  width: 60vw;
  left: 15%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, auto));
  padding: 20px;
  gap: 1.5rem;
}

#featured .f-product {
  position: relative;
  width: 23%;
  min-width: 250px;
  min-height: 402px;
  padding: 10px 12px;
  margin: 15px 0;
  margin-left: 40%;
  overflow: hidden;
}

#featured .f-product img {
  width: 100%;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  margin: 50px auto;
  justify-content: center;
}

#gallery .column {
  max-width: 25%;
  height: 15%;
  padding: 0 4px;
}

#gallery .column img {
  width: 100%;
}

#portofolio {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  margin: 50px auto;
  justify-content: center;
}
#portofolio .column {
  max-width: 25%;
  height: 15%;
  padding: 0 4px;
  align-content: stretch;
}

#portofolio .column img {
  width: 100%;
}

#about {
  padding: 80px 10%;
}

#about .about-wrapper {
  display: flex;
  flex-wrap: wrap;
}

#about h2 {
  font-size: 3rem;
  color: #555;
  font-family: "Fira Sans", sans-serif;
  font-family: "Neuton", serif;
}

#about p {
  font-family: "Dosis", sans-serif;
  font-family: "Fira Sans", sans-serif;
  font-size: 1.5rem;
}

#about .small {
  width: 100%;
  margin: 1px;
  border-radius: 10px;
  background-color: #a5bfb6;
}

.about-img {
  flex: 1 1 400px;
  padding: 30px;
}

.about-text {
  flex: 1 1 400px;
  padding: 30px;
  margin: auto;
  margin-left: -15%;
  margin-top: -1%;
}

.about-img img {
  display: block;
  height: 400px;
  margin-left: 20%;
  max-width: 100%;
  margin: auto;
  object-fit: cover;
  object-position: right;
}

footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #b4d3d5;
  margin-top: 50%;
}

footer .col {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 40%;
  margin-left: 33%;
}

footer .col img {
  margin-left: 100px;
}
