/*
Theme Name: Salient Child
Theme URI: http://example.com/your-child-theme/
Description: Child for Salient Scheibel theme
Author: Brien Patterson
Author URI: https://white64.com
Template: salient
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: your-child-theme-text-domain
*/

/* Import parent theme styles */
@import url('../salient/style.css');

/* Add your custom styles below */

/* projdcts block styles temp */

.custom-cursor {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #e4f95e;
    pointer-events: none;
	z-index: 1000;
	text-align: center;
	padding-top: 25px;
	font-size: 13px;
	transition: width .3s, height .3s;
	overflow: hidden;
}

.custom-cursor.active{
	width: 80px;
	height: 80px;
}


.facetwp-counter {
  display: none;
}

section.projects-block{
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 70px;
}

section.projects-block .project-filters{
	width: 25%;
    min-width: 215px;
    max-width: 275px;
    padding-right: 40px;
	position: relative;
	box-sizing: border-box;
}

section.projects-block .project-filters-inner{
	position: sticky;
	top: 0;
}

section.projects-block .project-filters-inner.sticky-bottom{
	position: absolute;
	bottom: 0;
	top: unset;
	z-index: 100000;
    transition: all .5s;
}

section.projects-block .project-filters-inner.sticky-top{
	position: fixed;
	top: 108px;
	bottom: unset;
	z-index: 100000;
}

section.projects-block .project-filters-inner h4{
    padding: 15px 0;
    position: relative;
}

@media screen and (max-width: 1000px){
    section.projects-block{
        flex-direction: column;
    }
    
    section.projects-block .project-filters{
        margin: 0px auto;
        padding-right: 0;
        width: 100%;
        min-width: unset;
        max-width: unset;
    }
    
    section.projects-block .project-filters-inner.sticky-top{
	    position: relative;
	    top: unset;
	    z-index: 1;
    }
    
    section.projects-block .project-filters-inner.sticky-bottom{
	    position: relative;
	    bottom: unset;
	    z-index: 1;
    }    
    
    section.projects-block .project-filters-inner .filter-items{
        display: none;
    }
    
    section.projects-block .project-filters-inner h4{
        text-align: center;
        padding: 5px;
        margin-bottom: 30px;
    }
    
    section.projects-block .project-filters-inner h5{
        width: 100%;
        text-align: center;
        border-bottom-width: 1px;
    }
    
    section.projects-block .project-filters-inner h4 span{
        position: relative;
        padding: 10px 50px 10px 75px;
        border: 1px solid #bbb;
        border-radius: 30px;
    }
    
    section.projects-block .project-filters-inner h4 span:before{
        content: '+';
        position: absolute;
        left: 50px;
        font-size: 30px;
    }
    
     section.projects-block .project-filters-inner .open:before{
         content: '-';
         top: 6.5px;
         font-size: 36px;
     }
    
    section.projects-block .project-filters-inner .facetwp-type-radio{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    section.projects-block .project-filters-inner .facetwp-type-radio .facetwp-radio{
        margin: 0 15px;
    }
}

section.projects-block .facetwp-template{
	flex-grow: 1;
}

section.projects-block .facetwp-template .project-grid{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}



section.projects-block .facetwp-template .project-grid .project-grid-item{
	opacity: 0;
    -webkit-transform: 	        
    translateY(80px);
    transform: translateY(80px);
    padding: 15px;
	width: 33%;
	
}

@media screen and (max-width: 1000px){
    section.projects-block .facetwp-template .project-grid .project-grid-item{
        width: 50%;
    }
}

@media screen and (max-width: 690px){
    section.projects-block .facetwp-template .project-grid .project-grid-item{
        width: 100%;
    } 
}

section.projects-block .facetwp-template .project-grid .project-grid-item.animate-in{
	opacity: 1;
    transform: translateY(0);
    transition: transform .75s cubic-bezier(.22,.61,.36,1), opacity .75s cubic-bezier(.22,.61,.36,1);
}

section.projects-block .facetwp-template .project-grid .project-grid-item .inner .image-wrap{
	border-top-left-radius: 25px;
	overflow: hidden;
}

section.projects-block .facetwp-template .project-grid .project-grid-item .inner .image-wrap .project-image{
	height: 270px;
	position: relative;
	overflow: hidden;
}

section.projects-block .facetwp-template .project-grid .project-grid-item .inner .image-wrap .project-image img{
	width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform 0.5s ease;
}

section.projects-block .facetwp-template .project-grid .project-grid-item .inner:hover .image-wrap .project-image img{
	transform: scale(1.1);
	transform-origin: center center;
}

section.projects-block .facetwp-template .project-grid .project-grid-item .inner .content{
    padding: 25px 0;
}

.project-grid-item .inner .content .market-terms span, .project-grid-item .inner .content .service-terms span{
    padding-right: 10px;
}

section.projects-block .facetwp-template .project-grid .project-grid-item .inner .content .item-main{
	position: relative;
    display: inline-block; 
    overflow: hidden;
}

section.projects-block .facetwp-template .project-grid .project-grid-item .inner .content .item-main:before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.5s ease;
}
	
section.projects-block .facetwp-template .project-grid .project-grid-item .inner:hover .content .item-main:before{
	width: 100%;
}

/* end projects block styles */

/* Map blokc styles  */



.acf-map {
    width: 100%;
    height: 70vh;
    margin: 0;
}


.acf-map img {
   max-width: inherit !important;
}

.gm-style-iw{
    max-height: none  !important;
    border-radius:0  !important;
    padding:7px   !important;
}

.gm-style-iw-d{
    max-height: none  !important;
    padding:0   !important;
    width:100%  !important;
    overflow:hidden !important;
}
.gm-style-iw-d a,
.gm-style-iw-d img{
    display:block;
    width:100%  !important;
    max-width:100%  !important;
    margin:0 !important;
}
.gm-style-iw-d h3{
    font-size:1rem !important;
    margin:5px 0 0 0 !important;
    
}

.gm-style-iw-d p{
    font-size:.8rem !important;
    margin:0 0 5px 0 !important;
    
}

.gm-style-iw button[title="Close"] {
 
  background:#fff !important;
  padding:2px !important;
}


.gm-style-iw-d a{
    text-decoration:none !important;
    color:#000;
    
    
}

/* End Map block styles */
