/*==============================================
   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: 50%;
    background-color: var(--tedlife-base);
    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: normal;
    opacity: .05;
    z-index: -1;
}

.two-section__content-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 92px 0 100px;
}

.two-section__sub-title {
    font-size: 20px;
    color: var(--tedlife-white);
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.two-section__title {
    color: var(--tedlife-white);
    font-size: 60px;
    line-height: 65px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 25px 0 31px;
}

.two-section__right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    background-color: var(--tedlife-black);
    z-index: 1;
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/