<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* COLLECTIONS */
.collection-outer{
    display: block;
    margin-bottom: 30px;
    transition: opacity .3s ease;
}

.collection-outer:hover{
    opacity: 0.8;
}

.collection-inner{
    position: relative;

    /* height: 250px; */
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;

    transition: all .3s ease;
}

.collection-image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: all .3s ease;
}

.collection-inner:hover .collection-name{
    transform: translateY(0);
}
.collection-name{
    width: 100%;
    padding: 15px 10px;
    font-size: 18px;
    font-family: 'BPG Nateli Mtavruli', sans-serif;
    text-align: center;

    font-weight: 300;

    color: black;

    transition: all .3s ease;
}

.collection-view-btn{
    font-weight: 300;
    font-size: 14px;
    color: rgb(145, 145, 145);
    text-align: center;
}

.section-title{
    font-family: 'BPG Nateli Mtavruli', serif;
    font-size: 35px;
    font-weight: 300;
    padding-top: 40px;
    padding-bottom: 40px;
}


.section-title-sm{
    font-family: "BPG Nateli Mtavruli", sans-serif; 
    font-size: 30px;
    font-weight: 300;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media(min-width: 992px){
    .section-title{
        font-size: 35px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}



/* /. */</pre></body></html>