  /* Conversion Module */
.conversion-module {
    position: relative;
    overflow: hidden;
}

.conversion-module-image {
    display: block;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    object-position: top;
    z-index: 1;
}

.conversion-module::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #96a9a7 25%, #96a9a700);
    z-index: 2;
    display: block;
}

.conversion-module-content {
    position: relative;
    padding: 50px 32px;
    z-index: 2;
}

.conversion-module-text {
    color: #000000;
    text-align: left;
    width: 50%;
    line-height: 1.2;
}

.conversion-module-button {
    background-color: #000000;
    margin: 10px 0px 0px 0px;
}

.conversion-module-button:hover {
    background-color: #232e29;
}

.conversion-module-text h2 {
    color: #000000;
}

.conversion-module-text h3 {
    color: #000000;
    line-height: 1.2;
}

.conversion-module-text::before {
    content: '';
    display: block;
    height: 2px;
    width: 20%;
    background-color: #ffffff;
    margin: 0 0 20px 0;
}

@media screen and (max-width: 500px) {
    .conversion-module::before {
        background: #96a9a7cc;
    }

    .conversion-module-text {
        width: 100%;
    }
}


/*
** 2 Images w/ Centered Content
*/
.custom-modules__wrapper.style__two-imgs-center-content {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(169, 169, 169, 0.25);
}

@media (min-width: 768px) {
    .custom-modules__wrapper.style__two-imgs-center-content {
        flex-direction: row;
    }
}

.style__two-imgs-center-content .side-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .style__two-imgs-center-content .side-img {
        width: 250px;
        height: initial;
    }
}

.style__two-imgs-center-content .custom-modules-content {
    background-color: #fff;
    padding: 35px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.style__two-imgs-center-content .custom-modules-content h3 {
    line-height: 1.3;
}

.style__two-imgs-center-content .custom-modules-content p {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6em;
}

.style__two-imgs-center-content .custom-modules__btn-grp {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10px;
    row-gap: 20px;
}

.style__two-imgs-center-content .custom-modules__btn-grp .btn {
    margin: 0;
}

.style__two-imgs-center-content .btn-primary {
    background-color: #90A9A6;
}

.style__two-imgs-center-content .btn-primary:hover {
    background-color: #7A7A7A;
}

.module__outer-pulse {
    animation: pulse-animation 4s infinite;
    border-radius: 5px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(169, 169, 169, 0.25);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(169, 169, 169, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(169, 169, 169, 0.25);
    }
}

@media (max-width: 1024px) {
    .style__two-imgs-center-content .hidden-sm-down {
        display: none !important;
    }
}