
.grid__items {
    margin: -10px
}

@media (min-width:992px) {
    .grid__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .grid__items .grid__item {
        display: block
    }

    .grid__items .grid__item:first-child {
        grid-row-end: span 2
    }
}

.grid__item {
    padding: 10px
}

.grid__item .inner {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden
}

.grid__item .image-box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background-size: cover;
    background-position: center;
    transition: transform .9s cubic-bezier(.215, .61, .355, 1)
}

.heart { color: red; font-size: 1.2em}

.grid__item .image-box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%)
}

.small-text {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.small-text.pink-text {
    color: #e52d87;
}
.grid__item .content-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;/*xxxx*/
    z-index: 1;
    padding: 60px 40px 40px;
    color: #fff
}

.grid__item .content-box .h3 {
    margin: 0
}

.grid__item .content-box p:last-child {
    margin: 0
}

@media (min-width:768px) {
    .grid__item:first-child .image-box {
        right: 0
    }

    .grid__item:not(:first-child) .inner {
        padding-bottom: calc(50% - 10px)
    }
}

@media (min-width:992px) {
    .grid__item:not(:first-child) .image-box {
        right: 40%
    }

    .grid__item:not(:first-child) .image-box::after {
        display: none
    }

    .grid__item:not(:first-child) .content-box {
        left: 40%;
        top: -10px; /*xxxx*/
        background: url(bg-feature.png) no-repeat left bottom;
        background-size: auto 100%;
        padding: 20px 20px 20px 15%;
        display: flex;        align-items: center
    }
}

a.grid__item:hover .image-box {
    transform: scale(1.2);
    transition: transform 2s cubic-bezier(.215, .61, .355, 1)
}

.section--row {
    padding: 0
}

@media (min-width:992px) {
    .section--row .container {
        max-width: none
    }
}

.row__items {
    margin: -15px;
    padding: 60px 15px
}

@media (min-width:768px) {
    .row__items {
        display: flex;
        flex-wrap: wrap
    }
}

@media (min-width:992px) {
    .row__items {
        margin: 0;
        padding: 0
    }
}

.row__item {
    padding: 15px
}

.row__item .image-box {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden
}

.row__item .image-box span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform .9s cubic-bezier(.215, .61, .355, 1)
}

.row__item .content-box {
    background: #322b2b;
    color: #fff;
    padding: 50px 40px
}

@media (min-width:768px) {
    .row__item {
        width: 50%
    }
}

@media (min-width:992px) {
    .row__item {
        display: flex;
        flex-wrap: wrap;
        padding: 0
    }

    .row__item .image-box {
        width: 40%;
        padding: 0
    }

    .row__item .content-box {
        width: 60%
    }
}

a.row__item:hover {
    text-decoration: none
}

a.row__item:hover .image-box span {
    transform: scale(1.2);
    transition: transform 2s cubic-bezier(.215, .61, .355, 1)
}


html.magnifying > body {
    overflow-x: hidden !important;
}
.magnify,
.magnify > .magnify-lens,
.magnify-mobile,
.lens-mobile { /* Reset */
    min-width: 0;
    min-height: 0;
    animation: none;
    border: none;
    float: none;
    margin: 0;
    opacity: 1;
    outline: none;
    overflow: visible;
    padding: 0;
    text-indent: 0;
    transform: none;
    transition: none;
}
.magnify {
    position: relative;
    width: auto;
    height: auto;
    box-shadow: none;
    display: inline-block;
    z-index: inherit;
}
.magnify > .magnify-lens { /* Magnifying lens */
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    /* Multiple box shadows to achieve the glass lens effect */
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
    0 0 7px 7px rgba(0, 0, 0, 0.25),
    inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    cursor: none;
    display: none;
    z-index: 99;
}
.magnify > .magnify-lens.loading {
    background: #333 !important;
    opacity: 0.8;
}
.magnify > .magnify-lens.loading:after { /* Loading text */
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #fff;
    content: 'Loading...';
    font: italic normal 16px/1 Calibri, sans-serif;
    letter-spacing: 1px;
    margin-top: -8px;
    text-align: center;
    text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
    text-transform: none;
}
.complete{
    display:none;
}

.more{
    background:lightblue;
    color:navy;
    font-size:13px;
    padding:3px;
    cursor:pointer;
}