﻿.section-title-Button {
    max-width: 1920px;
    margin: auto;
    background-color: var(--brand-white);
    padding: 3.13rem;
    margin-top: 1rem;
}

.section-title-Button .section-title-Button__content {
    width: 90%;
    max-width: 73rem;
    margin: auto;
    text-align: center;
}

.section-title-Button .section-title-Button__content h4 {
    font-family: var(--font-family-2);
    color: var(--gray-dark-11);
    font-size: var(--text-sl);
    font-weight: var(--weight-normal);
    line-height: 1.614rem;
    letter-spacing: 4px;
    padding: 1rem 0;
}

.section-title-Button .section-title-Button__content h3 {
    font-family: var(--font-family-3);
    color: var(--gray-dark);
    font-size: var(--text-3xl);
    font-weight: var(--weight-extra-bold);
    line-height: 2.716rem;
    margin-bottom: 1.5rem;
}

.section-title-Button .section-title-Button__content p {
    font-family: var(--font-family-2);
    color: var(--gray-dark-11);
    font-size: var(--text-lg);
    font-weight: var(--weight-normal);
    line-height: 1.453rem;
    padding: .2rem 0;
}
.section-title-Button .section-title-Button__content p:empty {
    display: none;
}

.section-title-Button .section-title-Button__content .section-title-Button__content-CTA a {
    text-decoration: none;
}

.section-title-Button .section-title-Button__content .section-title-Button__content-CTA button {
    font-family: var(--font-family-2);
    color: var(--brand-white);
    background-color: var(--gray-dark);
    font-size: var(--text-sl);
    font-weight: var(--weight-normal);
    display: flex;
    margin: auto;
    justify-content: space-around;
    align-items: center;
    width: auto;
    max-width: 20rem;
    min-width: 153px;
    height: 48px;
    padding: 0 2rem;
    border-radius: 4px;
    border-color: transparent;
    gap: 1rem;
}

.section-title-Button .section-title-Button__content .section-title-Button__content-CTA button:hover {
    font-family: var(--font-family-2);
    color: var(--brand-white);
    background-color: var(--brand);
    transition: .5s;
}
.section-title-Button__content-CTA {
    margin-top: 2.5rem;
}

@media (max-width:768px) {
    .section-title-Button .section-title-Button__content {
        margin: 0;
        width: 100%;
    }
    .section-title-Button .section-title-Button__content h4 {
        font-size: .75rem;
        line-height: normal;
        padding: 0;
        margin-bottom: 1rem;
    }
    .section-title-Button {
        padding: 2rem 1rem;
    }

    .section-title-Button h4 {
        margin-top: 3rem;
    }

    .section-title-Button .section-title-Button__content h3 {
        font-size: 1.625rem;
        line-height: 2.207rem;
        margin-bottom: 1rem;
    }
    .section-title-Button .section-title-Button__content p {
        font-size: .875rem;
        line-height: normal;
        padding: 0;
        margin-bottom: 2.5rem;
    }
    .section-title-Button .section-title-Button__content .section-title-Button__content-CTA button {
        font-size: .875rem;
    }
}