.main-menu.menu-light>ul>li>a {
  color: var(--black);
}

.sticky .main-menu.menu-light>ul>li>a {
  color: var(--white);
}

.header-area.style-2 .open-offcanvas span {
  color: var(--black);
}

.sticky.header-area.style-2 .open-offcanvas span {
  color: var(--white);
}

.project_gallery_grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
}

@media only screen and (max-width:992px) {
  .project_gallery_grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/*
--------------------------
feature Style
--------------------------
*/
.feature-area.style-3 .text span {
  text-decoration: underline;
  font-weight: 600;
}

.feature-area.style-3 .title-top-text {
  padding-left: 90px;
}

@media only screen and (max-width: 1199px) {
  .feature-area.style-3 .title-top-text {
    padding-left: 0;
  }
}

.feature-wrapper.style-3 {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .feature-wrapper.style-3 {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* Masonary Layout */

.grid--content .column--wrapper {
  display: column;
  columns: 3;
  gap: 20;
  break-inside: avoid;
}

.post--item {
  break-inside: avoid;
  padding-bottom: 20px;
}

.post--masonry {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-top: 100px;
  margin-bottom: 30px;
}

.grid--content .column--wrapper .post--item img {
  box-shadow: 0 0 3px 2px #00000021;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 10px;
}

.grid--content .post--title {
  font-weight: bold;
  color: #1d2327;
}

.grid--content .post-user {
  margin: 10px 0;
}

.grid--content .post-user a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.grid--content .post-user img {
  border-radius: 100% !important;
  max-width: 35px;
  max-height: 35px;
  margin: 0;
  margin-bottom: 0 !important;
}

.grid--content .post-user span {
  margin-left: 10px;
  color: #949494;
  font-size: 14px;
}

.grid--content .post-user a:hover {
  background-color: #f0f0f0;
  border-radius: 50px;
}

.grid--content {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  /* padding: 40px; */
  /* box-shadow: 0 0 30px 10px #00000017; */
}

@supports (grid-template-rows: masonry) {
  .grid--content .column--wrapper {
    display: grid;
    grid-template-columns: (repeat(4), 1fr);
    grid-template-rows: masonry;
    grid-auto-flow: dense;
    align-tracks: stretch;
  }
}

@media screen and (max-width: 768px) {
  .grid--content .post-user img {
    max-width: 20px;
    max-height: 20px;
  }

  .grid--content .post-user span {
    font-size: 11px;
  }

  .grid--content .post--title {
    font-size: 12px;
  }

  .grid--content .column--wrapper {
    columns: 1;
  }
}