.projects-main {
  margin-top: 20px;
}

.projects-main .filter-bar-contain {
  width:1280px;
  height:60px;
  display:flex;

  position:relative;
  left:50%;
  transform:translateX(-50%);
  -ms-transform:translateX(-50%);
  -webkit-transform:translateX(-50%);
}
.projects-main .filter-bar {
  width: 100%;
  height: 100%;
  display: flex;
}
.projects-main .filter-bar .item {
  cursor: pointer;
  position:relative;
  flex:1;
  text-align: center;
  height:100%;
  margin-right:20px;
}
.projects-main .filter-bar .item.active {
  background-color:#e0e0e0;
}
.projects-main .filter-bar .item:last-of-type {
  margin-right:0;
}
.filter-bar-expand {
  display:none;
  cursor: pointer;
  position:relative;
  width:100%;
  height:40px;
  background-color:black;
  color:white;
}
.filter-bar-expand div {
  text-align: center;
  text-transform: uppercase;
}
.filter-bar-expand div:after {
  font-family: 'FontAwesome';
  content:'\f078';
  margin-left:10px;
}
.filter-bar-expand.active div:after {
  content:'\f077';
}

.row[data-padding='mini-pad'].projects-style {
  padding-top:0;
}
.projects-style h1 {
  text-transform: none;
}


.projects-main select {
	display:block;
}
.projects-main .select-cont {
  box-sizing: border-box;
  position:relative;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
  background-color:transparent;
  border:0;
}
.projects-main .select-cont:after {
  pointer-events: none;
  position:absolute;
  content:'\f078';
  font-family: 'FontAwesome';
  color:white;
  top:50%;
  right:10px;
  transform:translateY(-50%);
  -ms-transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
}
.projects-main .select-cont select {
  background: transparent;
  border: none;
  font-size: 14px;
  height: 60px;
  padding: 0 20px;
  /* width: 100%; */
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  color:#777777;
  outline: none;
}
.projects-main .select-cont select option {
  text-transform: none;
}

.clear-input {
  display:none;
  cursor:pointer;
  position:absolute;
  width:30px;
  height:30px;
  right:50px;
  color:white;
}
.clear-input:before {
  margin-top:-1px;
  content:'\f057';
}

#project-list {
  min-height: 100px;
  width:calc(100% + 40px);
  float:left;
  list-style-type: none;
  padding:0;
  margin:0;
  padding: 0px 40px 40px 40px;
  box-sizing: border-box;
}
#project-list li {
  box-sizing: border-box;
  float:left;
  width:33.333333%;
  margin:0;
  padding:0 40px 40px 0;
}
#project-list li a {
  display:block;
}
#project-list li.double {
  width: 66.666666%;
}

#project-list li.trophy {
  position:relative;
}
.trophy-icon {
  position:absolute;
  top:15px;
  left:15px;
  max-height: 100px;
  max-width: 100px;
}


#project-list li.double .inner:after {
  padding-bottom:calc(50% - 15px);
}
#project-list li .inner {
  position:relative;
  float:left;
  width:100%;
  background-position:center center;
  background-size:cover;
  text-align: center;
}
#project-list li .inner:after {
  content:'';
  display:block;
  padding-bottom:68%;
}

#project-list li .hot-link {
  pointer-events: none;
  opacity:0;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.5);
  display:flex;
  align-items: center;
  justify-content: center;
  color:white;
  font-size: 30px;
  text-transform: uppercase;

  transition:all .25s ease-in-out;
  -moz-transition:all .25s ease-in-out;
  -webkit-transition:all .25s ease-in-out;
}
#project-list li .hot-link div:after {
  content:'+';
  font-size: 30px;
  display:block;
  clear:both;
  text-align: center;
}
#project-list li .inner:hover > .hot-link {
  opacity:1;
}

#project-list .status-message {
  box-sizing: border-box;
  width:calc(100% - 30px);
  text-align: center;
  padding:20px;
  background-color:#f0f0f0;
  border-radius: 10px;
}
.status-message span {
  cursor: pointer;
  font-weight:700;
  color:black;
  text-decoration: underline;
}

.loader-contain {
  height:100px;
  display:none;
}
.loader-contain.active {
  display:block;
}
.loader {
  color:#000000;
  display:block;
  position:relative;
  width:100%;
  height:100%;
  font-size:30px;
}
.loader:before {
  content:'\f021'!important;
  margin: -1px -1px 0 0 !important;
}

.spin {animation: spin 2s linear infinite;}
@keyframes spin {
  from {
    transform:rotate(0deg);
    -ms-transform:rotate(0deg);
    -webkit-transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform:rotate(0deg);
    -ms-transform:rotate(0deg);
    -webkit-transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    transform:rotate(0deg);
    -ms-transform:rotate(0deg);
    -webkit-transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
    -ms-transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
  }
}


/* ---Single */
.gallery-single {
  padding:20px;
  box-sizing: border-box;
}
.page.projects-single .button-outer .button div:before {
  content: "<";
  margin-right:10px;
}
.gallery-top-contain {
  width:100%;
  padding:40px 0;
  float:left;
}
.gallery-left {
  width:30%;
  float:left;
}
.gallery-right {
  box-sizing: border-box;
  padding-left:20px;
  width:70%;
  float:left;
}

.gallery-left ul {
  list-style-type: none;
  margin-top:5px;
  padding:0;
}
.gallery-left li {
  color:#616161;
}
.gallery-left li:before {
  content:"-";
  margin-right:10px;
}
.grid-sizer {
  width:50%;
}
#gallery-list {
  min-height: 100px;
  width:calc(100% + 20px);
  float:left;
  list-style-type: none;
  padding:0;
  margin:0;
  box-sizing: border-box;
}
#gallery-list li {
  box-sizing: border-box;
  float:left;
  width:50%;
  margin:0;
  padding:0 20px 20px 0;
}
#gallery-list li a {
  display:block;
}
#gallery-list li.double {
  width: 100%;
}
#gallery-list li .inner {
  position:relative;
  float:left;
  width:100%;
  background-position:center center;
  background-size:cover;
}
#gallery-list li img {
  width:100%;
  display:block;
}
/* --- */

.related-projects {
  box-sizing: border-box;
  width:100%;
  float:left;
  background-color:#e0e0e0;
  padding:30px 30px 70px 30px;
}
.related-projects ul {
  width:calc(100% + 30px);
  margin:0;
  padding:0;
  list-style-type: none;
}
.related-projects ul li {
  box-sizing: border-box;
  width:33.333333%;
  float:left;
  padding: 0 30px 0 0;
}
.related-projects ul li a {
  display:block;
}
.related-projects ul li .inner {
  position:relative;
  background-position:center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.related-projects ul li .inner:after {
  content:'';
  padding-bottom:60%;
  display:block;
}
.related-projects ul li .inner:before {
  content:'\f061';
  font-family: 'FontAwesome';
  color:white;
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
  position:absolute;
  z-index:99;
  top:20px;
  right:20px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}
.related-projects ul li .inner:hover::before {
  right:15px;
}
.related-projects ul li .inner:hover > .wash {
  opacity:1;
}
.related-projects ul li .inner .wash {
  opacity:0;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.5);
  box-sizing: border-box;
  padding: 30px;
  display:flex;
  align-items: center;
  justify-content: center;
  color:white;
  font-weight: 700;
  font-size:25px;
  text-align:center;

  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}
.related-projects h2 {
  color:#97999B;
  width: 100%;
  text-align: center;
  margin-bottom:20px;
}

.project-slider-contain a {
  display:block;
}
.project-slider-contain .label-block {
  float:left;
  height:60px;
  background-color:#243746;
  padding:0 20px;
  color:white;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;

  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}
.project-slider-contain .label-block.label-button {
  float:right;
  background-color:#006272;
}
.project-slider-contain .label-block.label-button:hover {
  background-color: #243746;
}

/* Projects Cell Module */

.projects_cell {
  width:100%;
}
.projects_cell ul {
  list-style-type: none;
  padding:0;
  margin:0;
}
.projects_cell li {
  width:50%;
  float:left;
}
.projects_cell li a {
  display:block;
}
.projects_cell li .inner {
  position:relative;
  width:100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.projects_cell li .inner:after {
  content:'';
  padding-bottom:60%;
  display:block;
}
.projects_cell ul li .inner:hover > .wash {
  opacity:1;
}
.projects_cell ul li .inner .wash {
  opacity:0;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.5);
  box-sizing: border-box;
  padding: 30px;
  display:flex;
  align-items: center;
  justify-content: center;
  color:white;
  font-weight: 300;
  text-transform: uppercase;
  font-size:35px;
  text-align:center;

  -webkit-text-stroke: 1px;


  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

/*  */

@media screen and (max-width: 1280px) {

  .projects-main .filter-bar-contain {
    width:calc(100% - 80px);
  }

  .projects-main .select-cont {
    width:auto;
  }
  #project-list li {
    width:50%;
  }
  #project-list li.double {
    width:100%;
  }

  .trophy-icon {
    max-width: 75px;
    max-height: 75px;
  }

}
@media screen and (max-width: 800px) {

  .gallery-left {
    width:100%;
    padding:0 0 25px 0;
  }
  .gallery-right {
    width:100%;
    padding:0;
  }
  .gallery-top-contain {
    padding:20px 0;
  }

  .filter-bar-expand {
    display:block;
  }
  .projects-main .filter-bar-contain {
    height:auto;
    margin-bottom:40px;
    flex-direction: column;
  }
  .projects-main .filter-bar {
    display:none;
  }
  .projects-main .filter-bar .item {
    height:40px;
    margin:0;
  }

  .related-projects {
    padding: 30px 30px 0px 30px;
  }
  .page.projects-single .related-projects {
    margin-top:0;
  }
  .related-projects ul li {
    width:100%;
    padding-bottom:30px;
  }

  .projects-main {
    float: left;
    width: 100%;
  }

  #project-list li {
    width:100%;
    padding:0 30px 10px 0;
  }
  #project-list li.double {
    width:100%;
  }
  #project-list li.double .inner:after {
    padding-bottom:100%;
  }
  #project-list li.double .inner {
    box-sizing: border-box;
    /* border:solid 10px #68C7C6; */
  }

  /* ---Single */
  .project-slider {
    width:100%;
  }
  .project-content {
    width:100%;
    padding:20px 0 0 0;
  }
  .trophy-icon {
    max-width: 75px;
    max-height: 75px;
  }

}











/*  */
