/* Statement Element Base Styles */
.statement-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.statement-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 1;
}

.statement-title-area {
    position: absolute;
    top: 8rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.statement-title {
    padding-left: 60px;
    position: relative;
}

.statement-title::before {
    content: "\f101";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    display: inline-block;
    color: #fff;
    font-weight: 400;
}



/* Media Queries */
@media (max-width: 1599.98px) {
    .statement-title-area {
        top: 6rem;
    }
}

@media (max-width: 1199.98px) {
    .statement-title-area {
        top: 4rem;
    }
}

@media (max-width: 991.98px) {
    .statement-title {
        padding-left: 50px;
    }
}

@media (max-width: 767.98px) {
    .statement-title-area {
        top: 2rem;
    }

    .statement-title {
        padding-left: 40px;
    }
}
