.request-free-trial {
    position: relative;
}

.request-free-trial__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.request-free-trial__image img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.request-free-trial__image:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.65;
    background: rgba(0,0,0,.7);
}

.request-free-trial__container {
    position: relative;
    z-index: 2;
}

.request-free-trial__wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.request-free-trial__content {
    padding-bottom: 32px;
    text-align: center;
}

.request-free-trial__content p:last-child{
    margin-bottom:0px;
}

@media (min-width: 768px) {
    .request-free-trial__content {
        text-align: center;
    }
}


.request-free-trial__content :where(h1, h2, h3, h4, h5, h6, p) {
    color: var(--color-white);
}

.request-free-trial__float {
    font-size: 0;
    position: relative;
    text-align: center;
    padding: 32px;
}

.request-free-trial__float:not(.no-bg) {
    background-color: var(--color-primary);
}

.request-free-trial__float__inner {
    text-align: center;
}



.request-free-trial__float .h4 {
    margin: 0 0 18px;
    color: #fff;
}

.request-free-trial__float .h3 {
    margin: 0;
    color: #fff;
    margin-bottom: 16px;
    font-size: 16px;
    font-family: var(--font-secondary);
    font-weight: 400;
}

@media (min-width: 768px) {
    .request-free-trial__float {
        /* width: calc(100% - 188px); */
        /* margin: -110px auto 0; */
    }
}

@media (min-width: 1025px) {
    .request-free-trial__wrapper {
        justify-content: space-between;
    }
    .request-free-trial__float {
        width: calc(40% - 16px);

    }

    .request-free-trial__float .h3 {
        color: var(--color-white);
    }

     .request-free-trial__content {
        width: calc(50% - 16px);
        text-align: left;
    } 
}

