/*================base-photography=================*/
.base-photography-sample-content {
    position: relative;
    width: 95%;
    height: 700px;
    margin-top: 150px;
    margin-bottom: 200px;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(to bottom,  #6f00ff, #2c0061);
}

.base-photography-sample-post-gallery {
    position: relative;
    width: 80%;
    height: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;

}

.base-photography-sample-post-slideshow {
    position: absolute;
    width: 65%;
    height: 85%;
    border-radius: 10px;
    display: flex;
    top: 20%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: loadPSlideShow 1s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
    overflow: hidden;
}

@keyframes loadPSlideShow {
    0% {
        left: -20%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}

.base-photography-slideshow-view {
    position: absolute;
    width: inherit;
    height: initial;
    background-size: contain;
    background-position: center;
    border-radius: 10px;
    opacity: 0;
}

.base-photography-title {
    position: absolute;
    top: 100%;
    right: 0;
    font-family: 'KalamehRegular';
    font-size: .8rem;
}
/*================base-photography=================*/