/* subpages style */
header.header02 {
    height: 50vh;
    background-image: url('../images/background/slider-1.jpg');
    position: relative;
}

header.header02::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.644);
    z-index: 0;
}

header .subHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 150px 0 0 0;
    z-index: 3;
    position: relative;
}

header .subHeader h1 {
    color: #fff;
    font-family: 'Crimson Text';
    text-transform: capitalize;
}

/* shop */
.shop {
    padding: 100px 0 100px 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid whitesmoke;
}

.shop h1 {
    text-align: center;
    margin-bottom: 50px;
}

.shop .child {
    width: 100%;
    margin: auto;
    height: auto;
    border: 1px solid transparent;
    transition: .2s ease;
}

.shop .child:hover {
    border: 1px solid rgb(182, 182, 182);
}

.shop .child .image {
    /* height: 45vh; */
    height: 50vh;
    width: 100%;
}

.shop .child .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.shop .child .details {
    padding: 30px;
}

.shop .child .details a {
    color: #A8741A;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}


.shop .child .details h6 {
    font-size: 1.3em;
    text-transform: capitalize;
    color: #262626;
}

.shop .child .details span {
    color: grey;
}