* {
  margin: 0;
  padding: 0;
  font-family: 'Barlow', sans-serif;
}
.header {
  width: 100%;
}
nav {
  padding: 4% 6%;
  display: flex;
  justify-content: space-between;
}
nav a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}
.nav-menu {
  text-align: left;
}
.nav-menu ul li {
  list-style: none;
  display: inline-block;
  padding-left: 12px;
}
.nav-menu ul li a:hover {
  text-underline-offset: 4px;
  text-decoration:underline wavy 2px gold;
}
.nav-menu .fa-brands {
  color: black;
}
.nav-menu .fa-brands:hover {
  color: gold;
}
.nav-menu .fa-solid {
  color: black;
}
.nav-menu .fa-solid:hover {
  color: gold;
}
.workimage {
  width: 88%;
  margin: auto;
  text-align: center;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.workimage-col {
  flex-basis: 19%;
  margin-bottom: 1%;
  position: relative;
  overflow: hidden;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}
.workimage-layer {
  position: absolute;
  background: rgb(255, 217, 0);
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  text-align: left;
}
.workimage-layer:hover {
  opacity: 1;
  transition: 1s;
  cursor: pointer;
}
.workimage-layer p {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 100%;
  padding: 5%;
  overflow-wrap: break-word;
}
.workimage-layer span {
  font-weight: 300;
}
.workimage-col img {
  width: 100%;
  display: block;
}
.footer {
  text-align: center;
  padding: 40px 0 20px;
}
.workimage-col img {
  filter: grayscale(100%);
}
.workimage-col img:hover {
  filter: grayscale(0%);
}

/* about */
.about {
  width: 88%;
  margin: auto;
}
.about-col-01 h3 {
  font-size: 18px;
  font-weight: 400;
}
.about-col-01 h3 span {
  font-size: 13px;
  line-height: 16px;
}
.about-col-01 {
  flex-basis: 60%;
}
.about-col-01 h4 {
  font-size: 16px;
  font-weight: 400;
}
.about-col-01 h4 span {
  font-weight: 500;
}
.about-col-01 p {
  font-size: 16px;
}
.about-col-01 p span {
  font-size: 12px;
}
.about-col-02 {
  flex-basis: 30%;
  background-color: #fff;
  opacity: 0.8;
  background-image:  linear-gradient(gold 1.2000000000000002px, transparent 1.2000000000000002px), linear-gradient(90deg, gold 1.2000000000000002px, transparent 1.2000000000000002px), linear-gradient(gold 0.6000000000000001px, transparent 0.6000000000000001px), linear-gradient(90deg, gold 0.6000000000000001px, #fff 0.6000000000000001px);
  background-size: 30px 30px, 30px 30px, 6px 6px, 6px 6px;
  background-position: -1.2000000000000002px -1.2000000000000002px, -1.2000000000000002px -1.2000000000000002px, -0.6000000000000001px -0.6000000000000001px, -0.6000000000000001px -0.6000000000000001px;
}
hr {
  height: 1px;
  background-color: gold;
  border: none;
}
.workindividual {
  width: 88%;
  margin: auto;
}
h2 {
  font-size: 16px;
  font-weight: 400;
}
h2 span {
  font-weight: 500;
}
.workindividual a {
  text-decoration: none;
  color: black;
}
.workindividual img {
  width: 100%;
}
.workindividual-col {
  flex-basis: 50%;
}
.workindividual-col-2 {
  flex-basis: 25%;
}

#container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  pointer-events: none;
}
#container div {
  flex-grow: 1;
  padding: 10px;
  color: #fff;
  background:#fff ;
}

/* making response */
nav .fa-xmark {
  display: none;
}
nav .fa-bars {
  display: none;
}

@media(max-width:700px){
  .header-text h1{
    font-size: 20px;
  }
  .nav-menu ul li{
    display:block;
  }
  .nav-menu{
    position: fixed;
    background: gold;
    height: 100vh;
    width:200px;
    top:0;
    right:-200px;
    text-align: left;
    line-height: 32px;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-xmark{
    display: block;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
}
nav .fa-bars{
  display: block;
  color: gold;
  margin: 10px;
  font-size: 22px;
  cursor: pointer;
}
.nav-menu ul li a {
  font-size: 20px;
}
.nav-menu ul li a:hover {
  text-decoration:underline wavy 2px white;
}
.nav-menu .fa-solid:hover {
  color: white;
}
.nav-menu .fa-instagram:hover {
  color: white;
}
.nav-menu ul{
  padding: 30px;
}
.row {
  flex-direction: column;
  gap: 20px;
}
#container {
  flex-direction: column;
}
}

