/*==============================================
   Two Section
===============================================*/
.two-section {
    position: relative;
    display: block;
}

.two-section__wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.two-section__left {
    position: relative;
    display: block;
    float: left;
	 width: 90%;
    /* width: 50%;
   background-color: var(--tedlife-base);*/
   background-color: var(--tedlife-black);
    z-index: 1;
}

.two-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* mix-blend-mode: luminosity; */
    opacity: .19;
    z-index: -1;
}

.two-section__content-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 92px 20px 100px;
}
.two-section__sub-title {
    font-size: 32px;
    color: var(--tedlife-white);
    line-height: 40px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 20px !important;
}


.two-section__title {
    color: var(--tedlife-white);
    font-size: 60px;
    line-height: 65px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 25px 0 5px;
}

.two-section__right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    background-color: var(--tedlife-black);
    z-index: 1;
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/