.full-gallery-section {
    background-image: url("../images/team/gal_back.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.white-head {
    color: #ffffff;
    font-weight: bolder;
}

.wave {
    float: left;
    margin: 20px;
    animation: wave ease-in-out 0.9s infinite alternate;
    transform-origin: center -36px;
}

.wave:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.wave img {
    border: 5px solid #ffffff;
    display: block;
    width: 200px;
    height: 250px;
}

.wave figcaption {
    text-align: center;
    background-color: #ffffff;
    color: #b96148;
    font-size: 10px;
}

.wave:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1.5px solid #b96148;
    top: -10px;
    left: 50%;
    border-bottom: none;
    border-right: none;
    transform: rotate(35deg);
}

.wave:before {
    content: "";
    position: absolute;
    top: -23px;
    left: 50%;
    display: block;
    height: 44px;
    width: 47px;
    background-image: url("../images/team/pin.png");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    z-index: 16;
}

@keyframes wave {
    0% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

/*========================================*/
/* Full gallery listing styles */
.clrd-font {
    background: #ff512f;
    background: -webkit-linear-gradient(to right, #f09819, #ff512f);
    background: linear-gradient(to right, #f09819, #ff512f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-primary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 0px;
}
.btn-primary:hover {
    background-color: transparent;
    border-color: #d6962c;
    color: #d6962c;
    border-radius: 20px;
}

.single_portfolio_text {
    display: inline-block;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.single_portfolio_text img {
    width: 100%;
    padding: 5px 5px 5px 5px;
}

.single_portfolio_text:hover .portfolio_images_overlay {
    top: 5%;
    left: 5%;
}

.portfolio_images_overlay {
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    margin: 0 auto;
    top: -100%;
    left: 5%;
    position: absolute;
    transition: 0.6s;
    overflow: hidden;
}
.portfolio_images_overlay h6 {
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    /* border: 2px solid #fff; */
    padding-top: 10px;
    padding-bottom: 10px;
}

.portfolio_images_overlay .product_price {
    font-size: 35px;
    color: #fff;
    font-weight: 800;
    line-height: 30px;
}
.portfolio_images_overlay .product_description {
    font-size: 12px;
    color: #fff;
    font-weight: 800;
    line-height: 30px;
}
.portfolio_images_overlay .product_price i {
    margin-right: -10px;
}
.zoom {
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -100px;
    right: -100px;
    border-radius: 50%;

    background: #ff512f;
    background: -webkit-linear-gradient(to right, #f09819, #ff512f);
    background: linear-gradient(to right, #f09819, #ff512f);
    box-shadow: 0px 0px 0px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}
.zoom:before {
    /* content: "\f00e"; */
    font-family: FontAwesome;
    color: rgba(255, 255, 255, 0.5);
    font-size: 70px;
    padding-right: 20px;
    position: absolute;
    top: 10px;
    left: 30px;
}
@media (min-width: 769px) and (max-width: 991px) {
    .portfolio_images_overlay {
        padding: 0px;
    }
}

@media (max-width: 575px) and (max-width: 768px) {
    .portfolio_images_overlay {
        padding: 0px;
    }
}

@media (max-width: 480px) {
    .portfolio_images_overlay {
        padding: 40px 20px;
    }
}
@media (max-width: 320px) {
    .portfolio_images_overlay {
        padding: 20px;
    }
}
