﻿.lb-talk-about {
    text-align: center;
}

.lb-talk-about-wrapper {
    width: 100%;
    max-width: 1200px;    
    z-index: 1;
    position: relative;
    overflow: auto;
    display: inline-block;
    min-height: 120px;
}

    .lb-talk-about-wrapper:before {
        position: absolute;
        content: '';
        width: calc(100% - 50px);
        height: 50%;
        z-index: -1;
        left: 50px;
        top: 15%;
        border-radius: 0 50px 50px 0;
        background: rgb(var(--smash-red-2-rgb));
        background: linear-gradient( 270deg, rgb(var(--smash-red-1-rgb)) 0%, rgb(var(--smash-yellow-3-rgb)) 100%);
    }

.lb-talk-about-image {
    float: left;
}

.lb-talk-about-image img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    position: relative;
}

.lb-talk-about-content {
    position: absolute;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 25%;
}

    .lb-talk-about-content p {
        display: inline-block;
        color: white;
        font-size: 1.5rem;
        max-width: 300px;
        padding-right: 2rem;
    }

.lb-talk-about-btn {
    background: white;
    border: none;
    border-radius: 5rem;
    padding: 0.5rem 2rem;
    color: rgb(var(--smash-red-1-rgb));
    font-size: 1.5rem;
    position: relative;
}