/* banner
---------------------------------------------------------- */
/* css for this is in the /css/patterns/banner-and-stats.css file */
.banner-half-holder {
    justify-content: space-around;
    gap: 40px;
}

@media (max-width: 1025px) {
    .banner-right {
        margin-bottom: 120px;
    }
}

/* secure-marketing-tools-section
---------------------------------------------------------- */
/* css for this is in the /css/patterns/half-section.css file */
.secure-marketing-tools-section {
    position: relative;
    z-index: 0;
}
.secure-marketing-tools-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -1px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: transparent;
}
.half-section-title-holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 9px;
}
.half-section-title-holder h3 {
    font-size: var(--h2-font-size);
    line-height: 1.5;
    color: var(--secondary-color);
    max-width: 500px;
}
.half-section-content-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.half-section-image-holder {
    position: relative;
    z-index: 0;
}
.half-section-image-holder::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(149.7%, 1075px);
    height: min(158.1%, 732px);
    background: url('../../images/page-hipaa/secure-tools-gradient.svg');
    background-size: cover;
    background-position: center;
}

.gradient-smudge.secure-marketing-tools-smudge .smudge {
    border-radius: 1497px;
    width: 1497px;
    height: 1021px;
    transform: translate(-30%, -70%);
    top: 50%;
    left: 100%;
}
.gradient-smudge.secure-marketing-tools-smudge .smudge::before {
    background: linear-gradient(280deg, rgba(213, 241, 161, 0.50) 4.67%, rgba(48, 191, 255, 0.50) 44.99%, rgba(76, 90, 112, 0.50) 85.31%);
    transform: rotate(103deg);
}

@media (max-width: 900px) {
    .half-section-inner, .half-section-inner.image-left {
        flex-direction: column;
        gap: 50px;
    }

    .gradient-smudge.secure-marketing-tools-smudge .smudge {
        transform: translate(-20%, -90%);
        top: 50%;
        left: 100%;
    }
}

/* safeguard-patient-info-section
---------------------------------------------------------- */
.safeguard-patient-info-section {
    position: relative;
    z-index: 0;
    padding: 100px 40px;
}
.safeguard-patient-info-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -1px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: transparent;
}
.safeguard-patient-info-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.safeguard-patient-info-title-holder {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.safeguard-patient-info-title-holder h2 {
    font-size: var(--h1-font-size);
    color: var(--main-color);
    line-height: 1.12;
    font-weight: var(--font-weight-bold);
    letter-spacing: .48px;
}
.safeguard-patient-info-title-holder h3 {
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: .36px;
    text-transform: uppercase;
}
.safeguard-patient-info-content-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}
.safeguard-patient-info-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    width: min(100%, 425px);
}
.safeguard-patient-info-content h3 {
    font-size: var(--h2-font-size);
    line-height: 1.5;
    font-weight: var(--font-weight-bold);
}
.safeguard-patient-info-content p {
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .safeguard-patient-info-content-box {
        align-items: center;
        flex-direction: column;
    }
}
@media (max-width: 700px) {
    .safeguard-patient-info-section {
        padding: 50px 25px;
    }
}