.project-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.project-row .elementor-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.project {
    border-top: 8px solid #334C6D;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    background-color: #fff;
}
.project .image {
    position: relative;
    height: 0;
    padding-bottom: 56%;
    background-color: #ddd
}
.project .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project .content {
    padding: 25px;
}
.project .heading-text {
    font-size: 21px;
    margin-bottom: 10px;
}
.project .elementor-post__read-more {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
.project .tax-labels {
    line-height: 1.5em;
    font-size: 15px;
    margin: 0.5em 0;
}
.project .excerpt {
    line-height: 1.5em;
    font-size: 14px;
    color: #777;
}

.hidden-project {
  display: none;
}

.filters {
    margin-bottom: 1em;
}
.project-filter {
  padding: 0;
  margin: 0;
  text-align: left;
}
.project-filter li {
  list-style: none;
  display: block;
}
.project-filter li a {
  color: #777;
  margin-bottom: 3px;
  border-bottom: 1px solid transparent;
  display: block;
}
.project-filter li a.active, .project-filter li a:hover  {
  color: #334C6D;
  border-color: #334C6D;
}


.dropdown {
    display: inline-block;
    margin-right: 1em;
    position: relative;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);

}
@media (max-width: 767px) {
    .dropdown {
        width: 100%;
        margin-right: 0em;
        margin-bottom: 1em;
    }
}
.dropdown-title {
    z-index: 2;
    background: #fff;
    border-bottom: 1px solid #334c6d;
    padding: 0.75em 3em 0.75em 1em;
    line-height: 1;
    cursor: pointer;
    min-width: 168px;
}
.dropdown-title:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    right: 1em;
    top: 1.2em;
    font-size: 0.8em;
    transition: 0.3s transform ease;
    transform: rotate(0deg);
}
.dropdown.active .dropdown-title:after {
    transform: rotate(180deg);
}
.dropdown.active .dropdown-content {
    opacity: 1;
    pointer-events: all;
}
.dropdown-content {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    background: #fff;
    padding: 0.75em 1em;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    transition: 0.3s opacity ease;
}
