@font-face {
  font-family: "AgencyFB";
  src: url("/assets/fonts/agencyfb-light.woff2") format("woff2"), url("/assets/fonts/agencyfb-light.woff") format("woff"), url("/assets/fonts/agencyfb-regular.woff2") format("woff2"), url("/assets/fonts/agencyfb-regular.woff") format("woff");
}
@font-face {
  font-family: "AgencyFB-Regular";
  src: url("/assets/fonts/agencyfb-regular.woff2") format("woff2"), url("/assets/fonts/agencyfb-regular.woff") format("woff");
}
body {
  font-family: "AgencyFB", sans-serif;
  font-weight: 200 !important;
  margin: 0;
  padding: 0;
  color: #333;
  text-transform: uppercase !important;
}

.section {
  width: 100vw;
  height: 100vh;
}
.section .navbar {
  display: flex;
  z-index: 500;
}

h1 {
  margin: 0px;
  padding: 0px;
}

.content-section {
  padding: 5px 1vw;
}

.service-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80%;
}

.font-agency-regular {
  font-family: "AgencyFB-Regular", sans-serif;
  font-weight: 400;
}

.font-agency-light {
  font-family: "AgencyFB", sans-serif;
  font-weight: 100;
}

.service-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dotted gray;
  border-radius: 50%;
  text-align: center;
}

@media only screen and (max-width: 550px) {
  .service-circle {
    width: 11rem !important;
    height: 11rem !important;
  }
}
.circle-content {
  padding: 20px;
  font-family: "AgencyFB", sans-serif;
  letter-spacing: 1px;
  font-weight: 100;
}

.detail-section {
  justify-content: center;
  align-items: center;
  height: 100%;
}

.detail-content h2 {
  margin-top: 0;
}

.checkerboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 15rem;
  height: 15rem;
}

.cell {
  width: 50px;
  height: 50px;
  background-color: #4D4D4D; /* Dark grey */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cell:nth-child(odd) {
  background-color: #2D2D2D; /* Slightly darker grey */
}

.container {
  width: 80%;
  margin: auto;
}

header nav a {
  text-decoration: none;
  color: #333;
}

/* styles.css */
.image-list img {
  display: none;
  width: 100%; /* Adjust as needed */
  height: auto;
}

.image-section {
  position: relative;
}

.service-list {
  width: 100%;
  display: grid;
  place-items: center;
}

/* styles.css */
.service-list .detail-service {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 66%;
  height: 100%;
  flex-direction: column;
}

.service-list .detail-service p {
  text-align: center !important;
  justify-self: center !important;
}

.service-section {
  position: relative;
}

p, h1, h2, h3, h4, h5, h6 {
  font-family: "AgencyFB", sans-serif;
  font-weight: 100;
}

.detail-service h2 {
  font-family: "AgencyFB-Regular", sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.projects-btn {
  background-color: #f5f5f5;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 1s ease-in-out;
}
.projects-btn:hover {
  background-color: rgba(88, 101, 88, 0.4666666667);
  color: #fff;
}

.project-image {
  width: 100%;
  height: 65vh !important;
}

@media only screen and (max-width: 768px) {
  .project-image {
    width: 100%;
    height: auto !important;
  }
}
.checkered-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0;
}

.box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.green {
  background-color: #586558;
}

.white {
  background-color: white;
}/*# sourceMappingURL=main.css.map */