.row.text_module{
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.row.text_module.with-bg-img{
    min-height: unset;
        padding-left: 0;
    padding-right: 0;
}
.row.text_module .bg-img-container{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.row.text_module .bg-img-container::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.text-module-container{
    margin: 0 auto;
    width: 60%;
        position: relative; 
    z-index: 1;
}
.row.text_module p {
  color: var(--text-color);
}

.row.text_module h1,
.row.text_module h2,
.row.text_module h3,
.row.text_module h4,
.row.text_module h5,
.row.text_module h6 {
  color: var(--heading-color);
}

h2.text-title,h3.text-subtitle{
    margin: 0 !important;
}
h3.text-subtitle{
    font-weight: 100;
}

.row.text_module .bg-img-container{
    display: flex;
    width: 100%;
    padding: 100px 0;
    min-height: 350px;
    align-items: center;
}



@media only screen and (max-width: 475px){
    .text-module-container {
        width: 80%;
    }
}