.image-quote {
    position: relative;
    background-image: url('https://shop.theidentityhub.com/img/quotes.jpg');
    background-position-x: center;
    background-position-y: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0.6em 0em;
}

.layer {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.containerQuote {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quoteContent {
    width: 50%;
    text-align: center;
}

.quoteContent p {
    color: #fff;
    display: inline-block;
    font-size: 1.6em;
    width: 50%;
}

.quoteContent p:before {
    content: "❝\00a0\00a0" !important;
}

.quoteContent p:after {
    content: "\00a0\00a0❞" !important;
}

.quoteImage {
    width: 50%;
}

.quoteImage img {
    width: 70%;
}

/* -------------------- Responsive design media queries -------------------- */

/* everything smaller than 1250px */

@media (max-width: 1250px) {
    .quoteContent p {
        font-size: 1.4em;
        width: 70%;
    }
}

/* everything smaller than 1039px */

@media (max-width: 1039px) {
    .quoteContent {
        width: 100%;
    }

    .quoteContent p {
        width: 80%;
    }

    .quoteImage {
        width: 100%;
    }

    .quoteImage img {
        width: 100%;
    }
}

/* everything smaller than 767px */

@media (max-width: 767px) {
    .image-quote {
        background-attachment: scroll !important;
    }
}

/* everything smaller than 750px */

@media (max-width: 750px) {
    .containerQuote {
        display: block;
    }

    .quoteContent p {
        padding: 1em;
    }
}

/* everything smaller than 550px */

@media (max-width: 550px) {
    .quoteContent p {
        font-size: 1.2em;
        padding: 0.4em 0em;
        width: 90%;
    }
}