.two-col-animated {
    overflow: hidden;
    background-image: var(--bg-img-1), var(--bg-img-2);
    background-repeat: no-repeat, no-repeat;
    background-size: 50% auto;
    background-position:left center, right center;
}
.two-col-animated--container {
    padding-top: 0;
    padding-bottom: 0;
}
.two-col-animated--single {
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 40px 10px;
}

.two-col-animated--single::before {
    content: '';
    position: absolute;
    top:0;
    left:-100%;
    bottom:0;
    right:0;
    height: 100%;
    width: 200%;
    /*background-image: var(--background-img);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
}
.two-col-animated--single:last-child::before {
    left:0;
    right:-100%;
}

.two-col-animated--single::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    right: 0;
    width: 200%;
    height: 200px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(102,102,102,0) 100%);
}
.two-col-animated--single:last-child::after {
    left: 0;
    right: -100%;
}

@media screen and (max-width: 768px) {
    .two-col-animated--single::before, .two-col-animated--single::after {
        left:0;
        right: 0;
        width: 100%;
    }
}
.two-col-animated--single-inner {
    height: 100%;
    align-items: flex-end;
	width:100%;
}
.two-col-animated--single-col {
    display: flex;
}
.two-col-animated--single img {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.two-col--animated--single-content-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    color: var(--e-global-color-text);
    padding:40px 20px 0px;
    pointer-events: none;
    text-decoration: none;
    width: 80%;
    height: auto;
    aspect-ratio: 1;
}

.two-col-animated--single-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-text-font-weight);
    font-size: 25px;
    opacity: 0;
    transition: all ease-in-out 0.1s;
    transition-delay: 0s;
    font-style: italic;
    font-weight: 300;
}

@media screen and (max-width: 1100px) {
    .two-col-animated--single-content {
        padding-bottom: 40px;
        font-size: 20px;
        line-height: 25px;
    }
}

.two-col-animated--single-title {
    position: relative;
    z-index: 2;
    color: var(--e-global-color-secondary);
    font-size: 40px;
    margin-bottom: 0px;
    padding-bottom: 20px;
    pointer-events: auto;
    cursor: pointer;
}

.two-col-animated--underline {
    position: absolute;
    bottom:0;
    left:0;
    min-height: 8px;
    width: 60px;
    z-index: 0;
    transition: all linear 0.2s;
}

.two-col--animated--single-content-wrapper:hover .two-col-animated--underline {
    height: auto;
    min-height: 100%;
    width: 100%;
    aspect-ratio: 1;
}
.two-col--animated--single-content-wrapper:hover .two-col-animated--single-content {
    opacity: 1;
    transition: all ease-in-out 0.2s;
    transition-delay: 0.2s;
}
@media screen and (max-width: 1800px){
    .two-col--animated--single-content-wrapper{
        width: 100%;
    }
    .two-col-animated--single-content{
        padding-bottom: 40px;
        font-size: 20px;
    }
    .two-col-animated--single-inner{
        width: 70%;
    }
}
@media screen and (max-width: 1550px){

    .two-col-animated--single-content{
        padding-bottom: 20px;
        font-size: 18px;
        line-height: 24px;
    }
    .two-col--animated--single-content-wrapper{
        padding-top: 20px;
    }
}
@media screen and (max-width: 1299px){

    .two-col-animated--single-content{
        padding-bottom: 10px;
        font-size: 16px;
        line-height: 20px;
    }

}
@media screen and (max-width: 1199px){
    .two-col--animated--single-content-wrapper{
        
    }
    .two-col-animated--single-inner{
        width: 80%;
    }
    .two-col-animated--single-title{
        font-size: 30px;
    }
    .two-col-animated--single{
        padding: 20px 10px;
    }
}
@media screen and (max-width: 991px){
    .two-col-animated--single-inner{
        width: 100%;
    }
    .two-col-animated--single::before {
        background-image: var(--background-img);
    }
}
@media screen and (max-width: 768px){
  
    .two-col-animated--container{
        padding: 0;
    }
}

@media screen and (max-width: 575px){ 
    .two-col-animated--single {
        max-height: 300px;
    }
    .two-col--animated--single-content-wrapper {
        width: auto;
    }    
}
