﻿
.gallery-box-container {
    display: flex;
    justify-content: space-between;
    flex: 0 1 90%;
    flex-wrap: wrap;
    padding: 1rem;
    margin-bottom: 1rem;
}

.gallery-box {
    display: block;
    color: #fff;
    flex: 0 1 calc(25% - 15px);
    height: 400px;
    background: #7C5453;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1200px) {
    .gallery-box {
        flex: 0 1 calc(50% - 15px);
        margin: 15px 0;
    }
}
@media screen and (max-width: 640px) {
    .gallery-box {
        flex: 0 1 calc(100% - 15px);
    }
}
.gallery-box__img-container {
    display: block;
    width: 135%;
    height: 350px;
    background: #fff;
    border-radius: 0 0 40px 40px;
    border: 2px solid #fffff8;
    transform: rotate(25deg);
    position: absolute;
    left: -15%;
    top: -75px;
    transition: all 0.4s ease;
    overflow: hidden;
}
@media screen and (max-width: 1200px) {
    .gallery-box__img-container {
        height: 420px;
        top: -180px;
    }
}
@media screen and (max-width: 900px) {
    .gallery-box__img-container {
        height: 420px;
        top: -120px;
    }
}
@media screen and (max-width: 640px) {
    .gallery-box__img-container {
        height: 450px;
        top: -190px;
    }
}
.gallery-box__img {
    display: block;
    width: 100%;
    transform: rotate(-25deg) scale(1.1);
    transition: all 0.4s ease;
}
.gallery-box__text-wrapper {
    transition: all 0.4s ease;
    position: absolute;
    left: 15px;
    top: 340px;
    width: 80%;
}


.gallery-box__text-wrappers {
    transition: all 0.4s ease;
    position: absolute;
    left: 15px;
    top: 300px;
    width: 80%;
}

.gallery-box__text {
    font-weight: 500;
    font-size: 12px;
    padding: 8px 0;
    box-shadow: 8px 0 0 rgba(0, 0, 0, 0.7), -8px 0 0 rgba(0, 0, 0, 0.7);
    -webkit-box-decoration-break: clone;
                    box-decoration-break: clone;
    line-height: 2;
    background: rgba(0, 0, 0, 0.7);
}

.gallery-box__texts {
    font-weight: 500;
    font-size: 12px;
    padding: 8px 0;
    box-shadow: 8px 0 0 rgba(0, 0, 0, 0.7), -8px 0 0 rgba(0, 0, 0, 0.7);
    -webkit-box-decoration-break: clone;
                    box-decoration-break: clone;
    line-height: 2;
    background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 900px) {
    .gallery-box__text {
        font-size: 20px;
    }
}
.gallery-box:hover .gallery-box__img-container {
    width: 110%;
    height: 450px;
    border-radius: 0;
    transform: rotate(0);
    left: -2px;
    top: -120px;
}
.gallery-box:hover .gallery-box__img {
    display: block;
    width: 100%;
    transform: rotate(0deg) scale(1);
}
