﻿/* ===== Let's Talk (light band) ===== */
:root {
    --ltl-bg: #eaf4fb;
    /* light band */
    --ltl-fg: #0c233d;
    /* heading text */
    --ltl-lead: #2d6ea8;
    /* paragraph blue */
    --ltl-bar: #1d6fbf;
    /* eyebrow bar & buttons */
    --ltl-bar-hover: #165c9b;
    --ltl-max: 1200px;
}

.lets-talk-light {
    position: relative;
    padding: 50px 50px 50px 50px;
}

.aspenMission__container {
    margin: 0;
    padding-left: 80px;
    padding-right: 80px;
}

.aspenMission {
    background-image: url(/-/media/aspentech/home/resources/interactive-infographic/images/fy25/lets_chat_embossed_leaf_gray_at_home.png);
    background-color: #F4FFFF;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding: unset !important;
}

/* right-side faint decorative graphic (inline SVG).
                If you have a file, replace the background with: url('/media/lets-talk-mark.svg') center/contain no-repeat; */
.lets-talk-light::after {
    content: "";
    position: absolute;
    right: -8vw;
    bottom: -12vw;
    width: min(60vw, 720px);
    height: min(60vw, 720px);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="640" height="640" viewBox="0 0 640 640"><g fill="none" stroke="%239cc8e6" stroke-opacity="0.35" stroke-width="22" stroke-linecap="round"><path d="M540 120c-55 70-95 120-165 185"/><path d="M590 245c-90 105-170 165-280 235"/><path d="M470 100c-45 70-85 110-135 155"/><circle cx="420" cy="360" r="275"/></g></svg>') center/contain no-repeat;
    pointer-events: none;
}

.ltl__container {
    margin: 0 auto;
    max-width: var(--ltl-max);
    padding: 6rem;
}

/* eyebrow bar */
.ltl__eyebrow {
    display: inline-block;
    width: 200px;
    height: 12px;
    background: var(--ltl-bar);
    margin-bottom: 18px;
}

.ltl__title {
    font-family: "Lato", sans-serif !important;
    font-size: 80px;
    line-height: 1.06;
    margin: 0 0 63px;
    font-weight: 850;
    text-transform: none;
    color: #000;
}

@media (max-width: 500px) {
    .ltl__title {
        font-size: 60px;
    }
}

.ltl__lead {
    font-family: "Lato", sans-serif !important;
    margin: 0 0 63px;
    font-size: clamp(40px, 2vw, 22px);
    line-height: 1.5;
    color: #0078C9;
    max-width: 60ch;
    font-weight: normal;
}

@media (max-width: 500px) {
    .ltl__lead {
        font-size: 30px;
    }
}

.ltl__actions {
    text-align: left;
}

@media (max-width:1083px) {
    .ltl__actions {
        text-align: center;
    }
}

@media (min-width:1083px) {
    .ltl__actions {
        display: flex;
    }
}

.lets-talk_button_wrapper {
    padding-right: 116px;
}

@media (max-width:1082px) {
    .lets-talk_button_wrapper {
        padding-right: 0;
    }
}


.lets-talk_button {
    width: 450px;
    font-weight: 800;
    font-family: "Lato", sans-serif !important;
    height: 60px;
}

.lets-talk_button:hover {
    cursor: pointer;
}

@media (max-width: 500px) {
    .lets-talk_button {
        width: 100%;
    }
}

.ltl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background-color .2s ease, border-color .2s ease, transform .06s ease;
}

.ltl-btn:active {
    transform: translateY(1px);
}

.ltl-btn--primary {
    background: var(--ltl-bar);
    color: #fff;
    border-color: var(--ltl-bar);
}

.ltl-btn--primary:hover {
    background: var(--ltl-bar-hover);
    border-color: var(--ltl-bar-hover);
}

/* info row */
.ltl__info {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: clamp(16px, 3vw, 28px);
    margin-top: clamp(59.5px, 2vw, 20px);
    max-width: 900px;
}

.ltl__divider {
    width: 1px;
    height: 58px;
    background: rgba(0, 0, 0, .12);
}

.ltl__info-block {
    display: flex;
}

.ltl__info-block p {
    font-family: "Lato", sans-serif !important;
    margin: 0;
    color: #0078C9;
    font-size: clamp(32px, 1.6vw, 17px);
    line-height: 1.6;
    padding-bottom: 26px;
}

@media (max-width: 500px) {
    .ltl__info-block p {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .ltl__info-block {
        flex-direction: column;
    }
}

.ltl__info a {
    color: #0e65b3;
    font-weight: 700;
    text-decoration: none;
}

.ltl__info a:hover {
    text-decoration: underline;
}

.ltl__phone {
    white-space: nowrap;
}

@media (max-width:720px) {
    .ltl__info {
        grid-template-columns: 1fr;
    }

    .ltl__divider {
        display: none;
    }
}

@media (max-width:1083px) {
    .lets-talk_button {
        margin-bottom: 50px !important;
    }

    .ltl__info {
        margin-top: clamp(20.3px, 2vw, 20px);
    }
}

.unbold-txt {
    font-weight: normal;
    padding-right: 10px;
}

.clr-cge {
    color: #0078c9 !important;
}