:root{
    --cube-width: 300px;
    --translateZ: 150px;
}
.wrapper{
    display: block;
    background-color: transparent;
}

.heroImage{
    background-image: linear-gradient(rgba(14, 14, 110, 0.2), 
                                      rgba(203, 37, 93, 0.2)), 
                                      url("../img/heroImage.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heroTitle{
    text-align: center;
    font-size: 4rem;
    color:#fff;
}
.heroSubtitle{
    color: #fff;
    font-size: 1em;
    text-align: center;
}
.heroSubtitle a{
    color: #fff;
    text-align: center;
}
/*---------Beggining of Quotation Section------------*/
.sectionQuote{
    display: flex;
    margin: 100px 0;
    justify-content: center;
    background-color: transparent;
}
.blockquoteSection{
    width: 40%;
    display: inline-block;
    padding: 20px;
    border: solid #e91e63;
    border-width: 0 0 0 5px;
}
.blockquoteText{
    margin: 0;
    /* font-size: 1.2em;
    line-height: 2.5;
    font-style: italic; */
    text-align: justify;
    line-height: 2.5;
    font-size:medium;
}
.blockquoteText:not(:last-child){
    margin-bottom: 2.5em;
}
.blockquoteCredit{
    /* font-size: 1.8em; */
    text-align: right;
    color:#e91e63;
}
.blockquoteCredit::before{
    content: "\2014\0020"; /* \2014 for the dash \0020 space between author and dash*/
}
.cube-container{
    display: flow-root;
    translate: 0 20%;
    margin: 5% 10%;
 }
 .cube-container .cube{
    width: var(--cube-width);/*width heigth 300px*/
    height: var(--cube-width);
    transform-style: preserve-3d;
 }
 .cube-container .cube-face{
    width: var(--cube-width);
    height: var(--cube-width);
    background: #000;
    display: flex;
    position: absolute;
 }
.cube-container .front{
    background-image: url("../img/001.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateZ(var(--translateZ));/*translateZ(150px)*/
}
.cube-container .back{
    background-image: url("../img/002.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateY(180deg) translateZ(var(--translateZ));
}
.cube-container .left{
    background-image: url("../img/003.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateY(-90deg) translateZ(var(--translateZ));
}
.cube-container .right{
    background-image: url("../img/004.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateY(90deg) translateZ(var(--translateZ));
}
.cube-container .top{
    background-image: url("../img/005.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateX(90deg) translateZ(var(--translateZ));
}
.cube-container .botton{
    background-image: url("../img/006.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateX(-90deg) translateZ(var(--translateZ));
}
@media screen and (max-width: 900px){
    .heroImage{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 35vh;
    }
    .heroTitle{
        font-size: 1.5em;
    }
    .heroSubtitle{
        font-size: 1rem;
    }
    .sectionQuote{
        background-image: url("../img/blockquoteImage.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        margin: 0;
    }
    .blockquoteSection {
        border: none;
        background-color: rgba(0, 0, 0, 0.6);
        font-size: 1rem;
        display: block;
        width: auto;
        height: auto;
    }
    .blockquoteText{
        color: #fff;
        text-align: justify;
        font-family: 'Poppins', sans-serif;
        font-weight: 1rem;
    }
    .blockquoteCredit{
        font-size: 1rem;
        text-align: right;
        color:#e91e63;
        margin-bottom: 10px;
    }
    .cube-container{
        display: none;
    }
}
