/*------------------------------------*\

    Quotes + Text Block Customizations - Global Styling

    The styles you add to this file will be applied to the 'Full-Width Image + Text' block.
    If there is any reasons why you would need to style this separately,
    please create a block-specific stylesheet for it (don't forget to register that block-specific stylesheet in acf-starter-blocks.php)

\*------------------------------------*/

.quotes {
    position: relative;
    background: rgb(0,59,93);
    background: -moz-linear-gradient(-45deg,  rgba(0,59,93,1) 0%, rgba(0,29,46,1) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(0,59,93,1) 0%,rgba(0,29,46,1) 100%);
    background: linear-gradient(135deg,  rgba(0,59,93,1) 0%,rgba(0,29,46,1) 100%);
    padding: 60px 0;
    width: 100%;
    display: block;
}

.quotes-image-text__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
}

.quotes .quotes-image-text__content {
    padding: 0;
    position: relative;
    z-index: 2;
}

.quotes .quotes-image-text__headline p{
    margin-top: 0;
    font-size: 25px;
    color: white;
}

.quotes .quotes-image-text__description :last-child {
    margin-bottom: 0;
}

.quotes .quotes-image-text__description ul li::before { content: none; }

.quotes.quotes-image-text--direct-overlay .quotes-image-text__headline,
.quotes.quotes-image-text--direct-overlay .quotes-image-text__description p,
.quotes .quotes-image-text__description {
    color: #fff;
}

.quotes.quotes-image-text--direct-overlay .quotes-image-text__description p {
    margin: 0;
}

.quotes .quotes-image-text__content .slick-dots{
    justify-content: center;
    margin-top: 30px;
}

.cta-left,
.cta-right {
    display: none;
    position: absolute;
    height: 100%;
    bottom: 0;
}

.cta-right {
    right: 0;
}

.cta-left img,
.cta-right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 768px) {
    .quotes-image-text {
        padding: 70px 0;
    }

    .quotes .quotes-image-text__headline p{
        font-size: 30px;
        color: white;
    }
}


@media (min-width: 1200px) {
    .quotes.quotes-image-text {
        padding: 100px 0;
    }

    .quotes .quotes-image-text__headline p{
        font-size: 35px;
        color: white;
    }
    .cta-left,
    .cta-right {
        display: block;
    }
}

