/*============= portfolio area css ============*/
.portfolio_area {
    overflow: hidden;
}

.portfolio_area .price_btn {
    border-color: #5f51fb;
    color: #5f51fb;
    background: transparent;
    margin-top: 50px;
    line-height: 48px;
    padding: 0 30px;
}

.portfolio_area .price_btn:hover {
    background: #5f51fb;
    color: #fff;
}

.portfolio_filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

.portfolio_filter .work_portfolio_item {
    font: 400 16px/22px "Poppins", sans-serif;
    color: #677294;
    display: inline-block;
    border-radius: 3px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative;
    cursor: pointer;
}

.work_portfolio_item span {
    color: #5e2ced;
    padding: 0;
    border-radius: 25px;
    position: absolute;
    font-weight: 400;
    top: -12px;
    right: -18px;
    font-size: 14px;
    text-align: center;
}

.portfolio_filter .work_portfolio_item:before {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    background: transparent;
    position: absolute;
    left: auto;
    right: 0;
    -webkit-transition: width 0.3s linear;
    -o-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.portfolio_filter .work_portfolio_item.active, .portfolio_filter .work_portfolio_item:hover {
    color: #5e2ced;
}

.portfolio_filter .work_portfolio_item.active:before, .portfolio_filter .work_portfolio_item:hover:before {
    width: 100%;
    background: #5e2ced;
    right: auto;
    left: 0;
}

.portfolio_filter .work_portfolio_item + .work_portfolio_item {
    margin-left: 60px;
}

.portfolio_filter_blue .work_portfolio_item.active, .portfolio_filter_blue .work_portfolio_item:hover {
    color: #26c4e5;
}

.portfolio_filter_blue .work_portfolio_item.active:before, .portfolio_filter_blue .work_portfolio_item:hover:before {
    width: 100%;
    background: #26c4e5;
}

.pr_btn {
    margin-top: 70px;
    background: transparent;
    color: #26c4e5;
    border-color: #26c4e5;
}

.pr_btn:hover {
    background: #26c4e5;
    color: #fff;
}

.portfolio_gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    /*min-height: 290px;*/
}
.portfolio_gallery .portfolio_item .portfolio_img {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0 30px;
}

.portfolio_gallery .portfolio_item .portfolio_img img {
    max-width: 100%;

}

.portfolio_gallery .portfolio_item .portfolio_img .img_rounded {
    border-radius: 6px;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(44, 44, 57, 0.7);
    opacity: 0;
    -webkit-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content .img_popup {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    right: 50px;
    top: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content .img_popup:hover {
    background: #fff;
    color: #282835;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description {
    bottom: 0;
    padding: 25px;
    width: 100%;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description h3 {
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    color: #fff;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links {
    overflow: hidden;
	display: flex;
    justify-content: space-between;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links a {
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
    color: #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links a:before {
    background: #fff;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .img_popup {
    right: 30px;
    top: 30px;
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .portfolio-description {
	padding: 0 30px 30px
}

.portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .portfolio-description .links a {
    font-size: 14px;
}

.portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content {
    opacity: 1;
}

.portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .img_popup {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .portfolio-description h3, .portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .portfolio-description a {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.portfolio-description .portfolio-title {
    overflow: hidden;
    display: inline-block;
}

.portfolio-description h3 {
    margin-top: 22px;
    margin-bottom: 0;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #282835;
}

.portfolio-description h3:hover {
    color: #5e2ced;
}

.portfolio-description .links {
    overflow: hidden;
}

.portfolio-description .links a {
    font-size: 15px;
    color: #677294;
    font-weight: 300;
    position: relative;
    display: inline-block;
    margin-right: 8px;
    -webkit-transition: color 0.01s linear;
    -o-transition: color 0.01s linear;
    transition: color 0.01s linear;
}

.portfolio-description .links a:before {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    background: #5e2ced;
    position: absolute;
    left: auto;
    right: 0;
    -webkit-transition: width 0.3s linear;
    -o-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.portfolio-description .links a:hover {
    color: #5e2ced;
}

.portfolio-description .links a:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}


/*Portfolio hover icon ---------------------------*/
.portfolio_gallery .portfolio_item:hover .hover_content {
    opacity: 1 !important;
}
.portfolio-description{
    position: absolute;
}
.img_popup.leaf {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    right: 25px;
    top: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.img_popup.leaf:hover {
    background: #fff;
    color: #282835;
}
.portfolio_gallery .portfolio_item:hover .img_popup.leaf{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.portfolio_gallery .portfolio_item:hover .hover_content .portfolio-description .links a, .portfolio_gallery .portfolio_item:hover .hover_content .portfolio-description h3 {
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

.portfolio_item {
    height: 270px;
    background: #fff;
    position: relative;
    margin-bottom: 20px;
}

button#more_posts {
    display: block;
    margin: 30px auto 0;
}


    /*====================================================*/

/*========================Google Map============================*/
#map,
#map_canvas {
    height: 700px;
    width: 100%;
}

.single_location {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.single_location span {
    position: absolute;
    left: 0;
    font-size: 24px;
    background: -webkit-linear-gradient(235.46deg, #44DA64 8.9%, #1BB2E8 108.03%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gm-style-iw.gm-style-iw-c {
    min-width: 300px !important;
    overflow: hidden;
    padding: 20px;
}

.single_location h2 {
    margin: 0 0 5px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #2B3332;
}

.single_location p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #7C8887;
    line-height: 1.7;
}

.gm-style .gm-style-iw-c {
    border-radius: 0;
    box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.2);
}

.gm-ui-hover-effect {
    font-size: 20px;
    top: 0 !important;
    right: 0 !important;
}

/*========================End Google Map============================*/
.elementor-heading-title {
    font-family: 'Apercu Pro' !important;
}

/*Page Titlebar*/
.partner_page_titlebar {
    text-align: center;
    padding: 100px 0;
    background: #F6F9F9;
}

.partner_page_titlebar h1 {
    font-size: 48px;
    font-family: 'Apercu Pro';
    color: #2B3332;
    font-weight: 700;
}

.partner_page_titlebar a {
    color: #5A6362;
    font-size: 20px;
    font-family: 'Apercu Pro';
    margin-bottom: 10px;
    display: inline-block;
}

.partner_page_titlebar a:hover {
    color: #3D9FB7;
}

/*==============================================*/

.loader_wrapper .preview-loader{
    height: 290px;
    width: 100%;
    background: #00000020;
    display: block;
    text-align: center;
    padding: 115px;
}
.ajax_portfolio_wrap{

}

.preview-loader:before {
    content: '';
    width: 10px;
    height: 10px;
    margin: 0 auto;
    padding: 10px;
    border: 7px dashed #4b9cdb;
    border-radius: 100%;
    animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
    display: block;
}
@keyframes loadingD {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
