@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --red: #E12454;
    --red-dark: #c01840;
    --navy: #0f1f2e;
    --mint: #f1f8f7;
    --mint-mid: #d6ecea;
    --text: #1a2a38;
    --muted: #5a7080;
    --white: #ffffff;
    --gold: #FFD875;
    --border: #dce8e6;
    --shadow: 0 4px 24px rgba(15, 31, 46, .09);
    --shadow-lg: 0 12px 48px rgba(15, 31, 46, .14);
    --r: 14px;
    --r-sm: 8px;
    --grid-max: 1170px;
}

html {
    scroll-behavior: smooth
}

.page-template-template-refer-clinician {
    :where(main) {
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        line-height: 1.65;
        color: var(--text);
        background: var(--white);
        overflow-x: hidden;

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'DM Serif Display', serif;
            line-height: 1.18;
            color: var(--navy)
        }

        img {
            display: block;
            max-width: 100%
        }
    }
}

a {
    color: inherit;
    text-decoration: none
}

.g {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 0 24px
}

.accent {
    color: var(--red)
}

.lbl {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    text-align: center
}

.lbl--l {
    text-align: left
}

.sec-copy {
    h2 {
        font-size: clamp(1.9rem, 3.2vw, 2.6rem);
        margin-bottom: 14px;
        text-align: center;
    }

    p {
        text-align: center;
        color: var(--muted);
        font-size: 1rem;
        max-width: 560px;
        margin: 0 auto 50px;
        line-height: 1.7
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all .22s ease;
    text-decoration: none
}

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(225, 36, 84, .28)
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(225, 36, 84, .36)
}

.btn-ghost {
    background: rgba(255, 255, 255, .09);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .24)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .52);
    transform: translateY(-2px)
}

.btn:hover,
.btn:focus {
    color: var(--white);
}

/* HEADER */
.hdr {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(15, 31, 46, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.hdr__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 70px;
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 0 1rem;

    @media (width > 767px) {
        padding: 0 24px
    }
}

.hdr__logo {
    @media (width < 641px) {
        flex: 1;
    }
}

.hdr__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hdr__cta {
    display: inline-flex;
    align-items: center;
    font-size: .88rem;
    font-weight: 600;
    color: var(--white);
    background: var(--red);
    padding: 10px 24px;
    border-radius: 50px;
    transition: background .2s, transform .2s;
    box-shadow: 0 3px 14px rgba(225, 36, 84, .28)
}

.hdr__cta:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px)
}

.hdr__cta:focus {
    color: var(--white);
}

/* HERO */
.hero {
    background: var(--navy);
    padding: 100px 0 88px;
    position: relative;
    overflow: hidden
}

.hero__tx {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none
}

.hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -160px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(225, 36, 84, .16) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 248, 247, .04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none
}

.hero__in {
    position: relative;
    z-index: 1;
    text-align: center
}

.hero__ey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(225, 36, 84, .11);
    border: 1px solid rgba(225, 36, 84, .22);
    border-radius: 50px;
    padding: 7px 18px;
    margin-bottom: 24px
}

.hero__dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pd 2s ease infinite
}

@keyframes pd {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: .65
    }
}

.hero__in h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    color: var(--white);
    max-width: 820px;
    margin: 0 auto 18px;
    line-height: 1.12;
    text-wrap: balance;
}

.hero__in h1 em {
    font-style: italic;
    color: var(--red)
}

.hero__in p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .68);
    max-width: 580px;
    margin: 0 auto 40px;
    text-wrap: pretty;
}

.hero__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* HOW IT WORKS */
.how {
    background: var(--mint);
    padding: 88px 0
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.step {
    background: var(--white);
    border-radius: var(--r);
    padding: 34px 26px 28px;
    border: 1px solid var(--border);
    transition: box-shadow .22s, transform .22s
}

.step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px)
}

.step__n {
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(225, 36, 84, .28)
}

.step h4 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: var(--navy)
}

.step p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.65
}

/* FORM SECTION */
.frm-sec {
    background: var(--white);
    padding: 92px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.frm-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start
}

.frm-l h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    margin-bottom: 14px
}

.frm-l>p {
    color: var(--muted);
    font-size: .97rem;
    margin-bottom: 26px;
    line-height: 1.72
}

.who-lbl {
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy);
    margin-bottom: 10px
}

.who-list {
    margin-left: 0;
    list-style: none;
    margin-bottom: 28px
}

.who-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .9rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
    color: var(--text)
}

.who-list li:last-child {
    border-bottom: none
}

.chk {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px
}

.chk::after {
    content: '✓';
    color: white;
    font-size: .65rem;
    font-weight: 700
}

.note {
    background: var(--mint);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 14px 18px;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.62
}

/* FORM CARD */
.frm-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--r);
    padding: 38px 34px;
    box-shadow: var(--shadow-lg)
}

.frm-card__hd {
    text-align: center;
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--border)
}

.frm-card__hd h3 {
    font-size: 1.4rem;
    margin-bottom: 5px
}

.frm-card__hd p {
    font-size: .83rem;
    color: var(--muted)
}

.frm-card .gravity-theme.gform_wrapper.gform-theme--no-framework {
    --field-y-gap: 1.125rem;
    --field-x-gap: 0.875rem;
}

.frm-card .gform_wrapper.gravity-theme .gfield_label {
    display: block;
    font-size: .83rem;
    line-height: 1.65;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px
}

.frm-card {

    [type=text],
    [type=password],
    [type=date],
    [type=datetime],
    [type=datetime-local],
    [type=month],
    [type=week],
    [type=email],
    [type=number],
    [type=search],
    [type=tel],
    [type=time],
    [type=url],
    [type=color],
    textarea {
        width: 100%;
        font-family: 'DM Sans', sans-serif;
        font-size: .93rem;
        line-height: normal;
        color: var(--text);
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: var(--r-sm);
        padding: 11px 14px !important;
        outline: none;
        transition: border-color .18s, box-shadow .18s;
        appearance: none;
        -webkit-appearance: none;
        height: auto;

        &:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(225, 36, 84, .11)
        }
    }
}

.frm-card .gform_wrapper.gravity-theme .gfield select {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    line-height: normal;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%235a7080' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 38px;
    cursor: pointer;
    height: auto;
}

.frm-card .gform_wrapper.gravity-theme .gfield textarea.small {
    height: 108px;
    resize: vertical;
}

/* FORM FIELDS */
.fg {
    margin-bottom: 18px
}

.fg label {
    display: block;
    font-size: .83rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px
}

.fg label .req {
    color: var(--red);
    margin-left: 2px
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
    appearance: none;
    -webkit-appearance: none
}

.fg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%235a7080' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 38px;
    cursor: pointer;

    &:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(225, 36, 84, .11)
    }
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 36, 84, .11)
}

.fg textarea {
    min-height: 108px;
    resize: vertical
}

.fg--err input,
.fg--err select,
.fg--err textarea {
    border-color: var(--red) !important
}

.fg__err {
    display: none;
    font-size: .76rem;
    color: var(--red);
    margin-top: 4px
}

.fg--err .fg__err {
    display: block
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.fdiv {
    border: none;
    border-top: 1px solid var(--border);
    margin: 22px 0
}

.frm-card .gfield:has(+.gsection) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 22px;
}

.frm-card .gform_wrapper.gravity-theme {
    .gsection {
        display: flex;
        align-items: center;
        gap: 9px;
        border-bottom: 0;
        padding: 0;
    }

    .gsection:before {
        content: '';
        display: inline-block;
        width: 3px;
        height: 17px;
        background: var(--red);
        border-radius: 2px;
        flex-shrink: 0
    }

    .gsection .gsection_title {
        font-family: 'DM Serif Display', serif;
        font-size: 1rem;
        color: var(--navy);
        font-weight: 400;
    }
}

.frm-card .gform_wrapper.gravity-theme .gform_footer {
    margin-top: 0;
    padding-top: 1.125rem;
    padding-bottom: 0;

    [type="submit"] {
        width: 100%;
        padding: 16px;
        font-family: 'DM Sans', sans-serif;
        font-size: 1.02rem;
        font-weight: 700;
        background: var(--red);
        color: var(--white);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        margin-top: 6px;

        margin-bottom: 0;
        box-shadow: 0 4px 18px rgba(225, 36, 84, .30);
        transition: all .22s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        &:after {
            display: none;
        }

        &:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(225, 36, 84, .38)
        }

        &:disabled {
            opacity: .6;
            cursor: not-allowed;
            transform: none
        }
    }
}

.frm-card .gform_validation_errors {
    display: none;
}

.frm-card {

    .gravity-theme.gform_wrapper.gform-theme--no-framework .validation_message,
    .gform_wrapper.gravity-theme div.validation_message,
    .gform_wrapper.gform-theme div.validation_message {
        position: static;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        font-size: .76rem;
        line-height: normal;
        color: var(--red);
        margin-top: 4px;
        max-width: none;

        &:before,
        &:after {
            display: none;
        }
    }
}

.frm-card {

    .gform_wrapper.gravity-theme .gfield.gfield_error [aria-invalid=true],
    .gform_wrapper.gravity-theme .gfield.gfield_error .select2-selection,
    .gform_wrapper.gform-theme .gfield.gfield_error [aria-invalid=true],
    .gform_wrapper.gform-theme .gfield.gfield_error .select2-selection {
        border-color: var(--red);
    }
}

.frm-card {

    .gform_wrapper.gravity-theme .gfield.gfield_error label,
    .gform_wrapper.gravity-theme .gfield.gfield_error legend,
    .gform_wrapper.gform-theme .gfield.gfield_error label,
    .gform_wrapper.gform-theme .gfield.gfield_error legend {
        color: inherit;
    }
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 4px 18px rgba(225, 36, 84, .30);
    transition: all .22s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.submit-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(225, 36, 84, .38)
}

.submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.form-legal {
    text-align: center;
    font-size: .75rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5
}

.frm-card .gform-loader {
    position: static !important;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, .35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.frm-card .gform_confirmation_message {
    text-align: center;
    padding: 48px 24px;

    &:before {
        content: '\1F389';
        font-size: 3.6rem;
        display: block;
        margin-bottom: 18px
    }

    h3 {
        font-size: 1.65rem;
        margin-bottom: 12px
    }

    p {
        color: var(--muted);
        font-size: .93rem;
        line-height: 1.7
    }
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px
}

.form-success__icon {
    font-size: 3.6rem;
    display: block;
    margin-bottom: 18px
}

.form-success h3 {
    font-size: 1.65rem;
    margin-bottom: 12px
}

.form-success p {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.7
}

/* WHY ANTHROMED */
.why {
    background: var(--white);
    padding: 88px 0
}

.perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px
}

.perk {
    background: var(--mint);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    transition: box-shadow .22s, transform .22s
}

.perk:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.perk__ic {
    font-size: 1.65rem;
    margin-bottom: 13px;
    display: block
}

.perk h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--navy)
}

.perk p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.65
}

/* TESTIMONIALS */
.quotes {
    background: var(--navy);
    padding: 88px 0
}

.quotes .lbl {
    color: rgba(225, 36, 84, .9)
}

.quotes .sec-copy h2 {
    color: var(--white)
}

.quotes .sec-copy p {
    color: rgba(255, 255, 255, .55)
}

.q-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px
}

.qcard {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r);
    padding: 28px 24px;
    backdrop-filter: blur(6px)
}

.qcard__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px
}

.qcard__stars span {
    color: var(--gold);
    font-size: .9rem
}

.qcard__body {
    font-size: .92rem;
    color: rgba(255, 255, 255, .82);
    font-style: italic;
    line-height: 1.72;
    margin-bottom: 20px
}

.qcard__auth {
    display: flex;
    align-items: center;
    gap: 11px
}

.qcard__av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: .92rem;
    color: white;
    flex-shrink: 0
}

.qcard__name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--white)
}

.qcard__role {
    font-size: .78rem;
    color: rgba(255, 255, 255, .44)
}

/* FAQ */
.faq {
    background: var(--mint);
    padding: 88px 0
}

.acc {
    max-width: 720px;
    margin: 0 auto
}

.acc-item {
    background: var(--white);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    margin-bottom: 9px;
    overflow: hidden
}

.acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: .94rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 12px;
    transition: color .15s;
    border-radius: 0 !important;

    &:after {
        display: none;
    }
}

.acc-btn:hover,
.acc-btn:focus {
    color: var(--red);
    background-color: transparent;
    border-bottom: 0;
}

.acc-ic {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--red);
    transition: all .2s;
    flex-shrink: 0
}

.acc-item.open .acc-ic {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: rotate(45deg)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease
}

.acc-body p {
    padding: 0 22px 18px;
    font-size: .89rem;
    color: var(--muted);
    line-height: 1.72
}

.acc-item.open .acc-body {
    max-height: 280px
}

/* CTA BAND */
.cta-band {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(225, 36, 84, .13) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none
}

.cta-band__in {
    position: relative;
    z-index: 1
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    max-width: 660px;
    margin: 0 auto 14px;

    em {
        color: var(--red);
    }
}

.cta-band p {
    color: rgba(255, 255, 255, .60);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 34px
}

/* FOOTER */
.ftr {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 24px;
    text-align: center
}

.ftr p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .36)
}

.ftr a {
    color: rgba(255, 255, 255, .54);
    text-decoration: underline;
    text-underline-offset: 3px
}

.ftr a:hover {
    color: var(--white)
}

.ftr a:focus {
    color: var(--white)
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rv.d1 {
    transition-delay: .08s
}

.rv.d2 {
    transition-delay: .16s
}

.rv.d3 {
    transition-delay: .24s
}

.rv.d4 {
    transition-delay: .32s
}

.rv.d5 {
    transition-delay: .40s
}

.rv.d6 {
    transition-delay: .48s
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .frm-layout {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .frow {
        grid-template-columns: 1fr
    }
}

@media(max-width:640px) {
    .hero {
        padding: 76px 0 68px
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center
    }

    .frm-card {
        padding: 26px 18px
    }

    .g {
        padding: 0 18px
    }
}