﻿/*-------------------------------------------------------------------------------------------------------------------------
    COLECCIONES
-------------------------------------------------------------------------------------------------------------------------*/

.collection-rectangular-container {
    background-color: #0A2240;
    height: 34vw;
    position: relative;
    width: calc(200%/3);
}

.collection-rectangular-img {
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    height: 100%;
    opacity: 1;
    position: absolute;
    transition: 0.5s;
    width: 100%;
}

.collection-rectangular-title {
    color: #FFFFFF;
    cursor: pointer;
    font-size: 5.2vw;
    font-weight: 700;
    letter-spacing: 0.3vw;
    line-height: 6.4vw;
    pointer-events: none;
    text-align: center;
    text-shadow: 0.1vw 0.1vw 0.8vw rgba(0,0,0,0.5);
}

.collection-square-container {
    background-color: #0A2240;
    height: 34vw;
    position: relative;
    width: calc(100%/3);
}

.collection-square-img {
    background-position: top center;
    background-size: cover;
    cursor: pointer;
    height: 100%;
    opacity: 1;
    position: absolute;
    transition: 0.5s;
    width: 100%;
}

.collection-square-title {
    color: #FFFFFF;
    cursor: pointer;
    font-size: 3.6vw;
    font-weight: 700;
    letter-spacing: 0.3vw;
    line-height: 4.2vw;
    pointer-events: none;
    text-align: center;
    text-shadow: 0.1vw 0.1vw 0.8vw rgba(0,0,0,0.5);
}

/*-------------------------------------------------------------------------------------------------------------------------
    MEDIAS PARA RESPONSIVIDAD
-------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 991px) {

    /*-------------------------------------------------------------------------------------------------------------------------
        COLECCIONES
    -------------------------------------------------------------------------------------------------------------------------*/

    .collection-rectangular-container {
        height: 0;
        padding-bottom: 100%;
        width: 100%;
    }

    .collection-rectangular-title {
        font-size: 11vw;
        line-height: 13vw;
    }

    .collection-square-container {
        height: 0;
        padding-bottom: 50%;
        width: 50%;
    }

    .collection-square-title {
        font-size: 5.6vw;
        line-height: 6.8vw;
    }
}