/* line 7, style.scss */
.projects-grid {
  margin: 0 auto;
}

/* line 10, style.scss */
.project-item {
  overflow: hidden;
  margin-bottom: 20px;
}
/* line 13, style.scss */
.project-item:hover {
  cursor: pointer;
}
/* line 15, style.scss */
.project-item:hover .project-content {
  opacity: 1;
  visibility: visible;
}

/* line 21, style.scss */
.project-content {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding: 10% 10% 50px;
  transition: all .3s ease-in-out;
  backdrop-filter: blur(5px);
  background: #003e7e;
  background: rgba(0, 62, 126, 0.7);
  width: 100%;
  height: 100%;
}
/* line 33, style.scss */
.project-content h2 {
  color: #fff;
  font-size: 25px;
  margin: 0 0 15px 0;
}
/* line 37, style.scss */
.project-content h2:after {
  content: "";
  display: block;
  margin: 15px 0;
  width: 20px;
  height: 3px;
  background: #fff;
}
/* line 46, style.scss */
.project-content .excerpt {
  color: #fff;
}
/* line 49, style.scss */
.project-content a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* line 59, style.scss */
.tax-city {
  background: #ee3124;
  display: inline-block;
  padding: 2px 10px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  width: unset !important;
}

/* line 72, style.scss */
.project-filter-container h2 {
  color: #003e7e;
  font-size: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 850px;
  margin: auto;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* line 83, style.scss */
.project-filter-container h2 span {
  display: block;
  height: 3px;
  margin-bottom: 3px;
  width: 20px;
  background: #003e7e;
}
/* line 90, style.scss */
.project-filter-container h2 a {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  background: #003e7e;
  color: white;
  text-decoration: none !important;
  line-height: initial;
  padding: 5px 10px;
}

/* line 102, style.scss */
#project-filter {
  width: 100%;
  max-width: 850px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* line 110, style.scss */
#project-filter .filter-group {
  flex-basis: 265px;
}

/* line 115, style.scss */
.project-info {
  font-size: 14px;
  font-weight: 300;
}

/* line 120, style.scss */
.project-contact-info {
  width: unset !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
/* line 126, style.scss */
.project-contact-info img {
  max-width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-right: 10px;
  border: solid 3px transparent;
  transition: 0.5s ease-in-out;
}
/* line 133, style.scss */
.project-contact-info img:hover {
  border-color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.2);
}
/* line 139, style.scss */
.project-contact-info span {
  color: #003e7e;
  font-size: 14px;
  font-weight: 500;
  line-height: initial;
}

/* line 147, style.scss */
body #contact-window {
  position: fixed;
  z-index: 99999;
  width: 0;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  top: 0;
  right: -30px;
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  transform: translateZ(0px);
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.3);
  transition: 0.5s ease-in-out;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
}
/* line 170, style.scss */
body #contact-window .close {
  position: absolute;
  top: 0;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
/* line 178, style.scss */
body #contact-window span {
  display: block;
  margin-bottom: 0px;
}
/* line 182, style.scss */
body #contact-window .cname {
  font-size: 21px;
  font-weight: 500;
}
/* line 186, style.scss */
body #contact-window .cimg {
  margin-bottom: 30px;
}
/* line 188, style.scss */
body #contact-window .cimg img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  margin: auto;
}
/* line 195, style.scss */
body #contact-window .cdesc {
  margin-bottom: 10px;
}
/* line 198, style.scss */
body #contact-window .cphone {
  border-bottom: solid 1px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
/* line 202, style.scss */
body #contact-window .cphone img {
  width: 18px;
  margin-right: 5px;
  transform: scaleX(-1);
}
/* line 208, style.scss */
body #contact-window .cmail {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #ecf0f1;
}
/* line 216, style.scss */
body #contact-window .cmail img {
  width: 21px;
}
/* line 219, style.scss */
body #contact-window .cmail:hover {
  background: transparent;
}

/* line 225, style.scss */
body #contact-window.open {
  width: 298px;
  right: 0;
}

/* Related Project */
/* line 232, style.scss */
.related-project .related-project-img, .related-project .mask:after, .related-project .image-links {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
/* line 236, style.scss */
.related-project .image-frame {
  margin-left: 30px;
  margin-bottom: 15px;
}
/* line 239, style.scss */
.related-project .image-frame .image-wrapper {
  position: relative;
  max-height: 220px;
  overflow: hidden;
}
/* line 243, style.scss */
.related-project .image-frame .image-wrapper .related-project-img {
  width: 100%;
  height: 220px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
/* line 250, style.scss */
.related-project .image-frame .image-wrapper > a {
  display: block;
}
/* line 253, style.scss */
.related-project .image-frame .image-wrapper .image-links {
  background: rgba(0, 62, 126, 0.8);
  width: 0;
  height: 0px;
  position: absolute;
  left: 0;
  bottom: -60px;
  z-index: 4;
  overflow: hidden;
  opacity: 0;
  font-size: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 268, style.scss */
.related-project .image-frame .image-wrapper .image-links a {
  color: #fff;
}
/* line 277, style.scss */
.related-project .image-frame .mask:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 0 transparent;
}
/* line 291, style.scss */
.related-project .image-frame:hover .mask:after, .related-project .image-frame:hover .image-links {
  opacity: 1;
}
/* line 294, style.scss */
.related-project .image-frame:hover .image-links {
  bottom: auto;
  top: 50%;
  height: 60px;
  width: 100%;
  z-index: 4;
  margin-top: -30px;
}
/* line 301, style.scss */
.related-project .image-frame:hover .image-links:hover {
  background: #fff;
}
/* line 303, style.scss */
.related-project .image-frame:hover .image-links:hover a {
  color: #003e7e;
}
/* line 308, style.scss */
.related-project .image-frame:hover .related-project-img {
  top: 0;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
/* line 317, style.scss */
.related-project .city-label {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 20;
  background: #123;
  border-radius: 0;
  color: #fff;
  line-height: initial;
  padding: 2px 5px;
  font-size: 12px;
}
/* line 328, style.scss */
.related-project .city-label:after {
  content: "";
  display: block;
  position: absolute;
  right: -4px;
  top: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent;
  border-left-color: #123;
}
/* line 342, style.scss */
.related-project h3 {
  color: #003e7e;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* line 348, style.scss */
.related-project ul {
  list-style-type: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
/* line 356, style.scss */
.related-project ul li {
  width: 23%;
  margin: 0 1% 40px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 479px) {
  /* line 364, style.scss */
  .related-project ul {
    flex-direction: column;
  }
  /* line 366, style.scss */
  .related-project ul li {
    width: 100%;
  }
}
/* line 371, style.scss */
.related-project h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 15px;
}
/* line 377, style.scss */
.related-project .hr-color {
  margin-left: 30px;
  width: 40%;
  color: #003e7e;
  background: #003e7e;
}

@media screen and (max-width: 479px) {
  /* line 386, style.scss */
  #project-filter {
    flex-direction: column;
    row-gap: 10px;
  }
  /* line 389, style.scss */
  #project-filter .filter-group {
    flex-basis: auto;
  }

  /* line 394, style.scss */
  .project-content .excerpt {
    display: none;
  }
}
