.photo-gallery {
    position: relative;
    padding: 0 0 45px;
    color: #4E4444;
    z-index: 2;
}

.photo-gallery:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 305px;
    background-color: var(--bg-color);
    z-index: -1;
}

.photo-gallery__wrap {
    padding: 0 22px;
}

.photo-gallery__gallery {
    padding: 10px 0 30px;
}

.photo-gallery__gallery .slick-arrow {
    background: #fff;
    width: 48px;
    height: 48px;
    bottom: -17px;
}

.photo-gallery__gallery .slick-prev {
    left: auto;
    right: 80px;
    margin-left:0px;
}

.photo-gallery__gallery .slick-next {
    right: 20px;
    margin-right: 0px;
}

.photo-gallery__gallery .slick-arrow::before {
    font-size: 20px;
}

.photo-gallery__sub-text .btn {
    margin-bottom: 15px;
}

.photo-gallery__btn {
    padding-top: 30px;
}

.photo-gallery__btn .btn {
    font-weight: 500;
}

.photo-gallery-item {
    position: relative;
}

.photo-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    padding: 0 100px;
}

.photo-gallery__overlay h2 {
    color: #FFFFFF;
}

@media (min-width: 768px) {
    
    .photo-gallery:after {
        height: 350px;
    }
    
    .photo-gallery__wrap {
        padding: 0 52px;
    }

    .photo-gallery__gallery .slick-arrow {
        background: transparent;
        width: 58px;
        height: 58px;
        bottom: 24px;
        border: 2px solid #fff;
        color: #fff;
    }

    .photo-gallery__gallery .slick-prev:hover, 
    .photo-gallery__gallery .slick-next:hover, 
    .photo-gallery__gallery .slick-prev:focus, 
    .photo-gallery__gallery .slick-next:focus {
        background: #fff;
        color: #7F0007;
        border-color: #fff;
    }
    
    .photo-gallery__gallery .slick-prev {
        right: 90px;
    }
    
    .photo-gallery__gallery .slick-next {
        right: 20px;
    }
    
    .photo-gallery__gallery .slick-arrow::before {
        font-size: 22px;
    }

}

@media (min-width: 1200px) {
    
    .photo-gallery:after {
        height: 210px;
    }
    
    .photo-gallery__wrap {
        padding: 0 16px;
    }

    .photo-gallery__content {
        width: 45%;
        float: left;
    }

    .photo-gallery__gallery {
        width: 55%;
        float: right;
        padding: 0;
    }

    .photo-gallery__image {
        height: 640px;
    }     

    .photo-gallery__text {
        padding-right: 40px;
    }

    .photo-gallery__text h4 {
        padding-top: 40px;
    }

    .photo-gallery__gallery .slick-prev {
        right: auto;
        left: 35px;
    }
    
    .photo-gallery__gallery .slick-next {
        right: auto;
        left: 100px;
    }

    .photo-gallery__gallery .slick-arrow {
        width: 52px;
        height: 52px;
        bottom: 35px;
    }

    .photo-gallery {
        padding: 0 0 100px;
    }

}



@media (min-width: 1366px) {
    .photo-gallery__text h4 {
        padding-top: 100px;
    }

    .photo-gallery__text .btn {
        margin-top: 15px;
    }

    .photo-gallery__text {
        max-width: 562px;
        float: right;
    }


}












