/***
=============================================
Cta One
=============================================
***/
.cta-one {
    position: relative;
    display: block;
    background: var(--danaher-base);
    border-bottom: 1px solid rgba(var(--danaher-white-rgb), 0.2);
    padding: 20px 0px;
    z-index: 1;
}

.cta-one .shape1 {
    position: absolute;
    top: -40px;
    left: 481px;
    border-bottom: 40px solid var(--danaher-base);
    border-left: 19px solid transparent;
    border-right: 23px solid transparent;
    content: "";
}

.cta-one__bg {
    position: absolute;
    top: -40px;
    left: 0;
    bottom: 0;
    width: 500px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
}

.cta-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--danaher-black);
    content: "";
    opacity: 0.15;
}

.cta-one__inner {
    position: relative;
    display: block;
}

.cta-one__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    float: right;
}

.cta-one__content .text-box {
    position: relative;
    display: block;
}

.cta-one__content .text-box p {
    color: var(--danaher-white);
    max-width: 700px;
    letter-spacing: 0.2em;
}

.cta-one__content .text-box h2 {
    color: var(--danaher-white);
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 4px;
}

.cta-one__content .btn-box {
    position: relative;
    display: block;
    width: 350px;
    line-height: 0;
    text-align: center;
}
.cta-one__content .btn-box .thm-btn{
        background: var(--danaher-black);
}
.cta-one__content .btn-box .thm-btn:hover {
    color: var(--danaher-black);
}

.cta-one__content .btn-box .hover-btn {
    background-color: var(--danaher-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta-one__bg::before {
        opacity: 0.85;
    }
}
@media (max-width: 767px) {
    .cta-one__bg::before {
        opacity: 0.85;
    }
}