/* Global Styles */

:root {
    --say9-primary-blue: #031D3D;
    --say9-secondary-blue: #077DFD;
    --say9-brand-text-blue: #181F35;
}

.os-mac.browser-safari {
    --say9-primary-blue: #022047;
}

.os-mac.browser-chrome {
    --say9-primary-blue: #021f46;
}

.os-ios {
    --say9-primary-blue: #031D3E;
}


body {
    background-color: var(--say9-primary-blue);
}

/* Brand Hero */

#brand_hero {
    background-color: #021D3D;
    padding: 40px 120px 80px;
    position: relative;
    z-index: 10;
}

.os-mac.browser-chrome #brand_hero {
    background-color: #021f46;
}

html.os-mac.browser-safari #brand_hero {
    background-color: #022047;
}

.brand_hero_wrapper {
    display: grid;
    grid-template-columns: 620px minmax(0, 800px);
    justify-content: space-between;
    gap: 24px 60px;
    overflow: hidden;
}

.brand_hero_anim {
    grid-row: 1 / 4;
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand_hero_anim video {
    max-height: 600px;
    height: 100%;
}

.brand_hero_title {
    grid-row: 1;
    grid-column: 1;
    margin-top: 80px;
    font-size: 82px;
    line-height: 1.1em;
    color: #FFFFFF;
    max-width: 620px;
}

.brand_hero_txt {
    grid-row: 2;
    grid-column: 1;
    max-width: 540px;
    font-size: 22px;
    line-height: 1.4em;
    color: #EFF1F5;
    margin-bottom: 56px;
}

.brand_hero_btns {
    grid-row: 3;
    grid-column: 1;
    display: flex;
    gap: 14px;
}

.brand_hero_btn {
    display: flex;
    align-items: center;
    background-color: var(--say9-secondary-blue);
    border-radius: 200px;
    padding: 10px 10px 10px 20px;
    gap: 18px;
}

.brand_hero_btn span {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    padding-top: 4px;
}

.brand_hero_btn img {
    width: 32px;
    height: 32px;
}

.brand_hero_btn_secondary {
    border: 2px solid #FFFFFF;
    background-color: transparent;
    padding: 13px 20px;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

html.os-ios .brand_hero_btn_secondary {
    transition: none;
}

.brand_hero_btn_secondary span {
    transition: color 0.3s ease-in-out;
}

html.os-ios .brand_hero_btn_secondary span {
    transition: none;
}

.brand_hero_btn_secondary:hover {
    background-color: #FFFFFF;
}

.brand_hero_btn_secondary:hover span {
    color: var(--say9-primary-blue);
}

.brand_hero_btn_secondary:active {
    padding: 11px 8px;
}

/* About mention */

#about_mention {
    background-color: #FFFFFF;
    padding: 140px 120px 120px;
    border-radius: 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#about_mention_inner {
    position: relative;
    z-index: 1;
}

.about_mention_web {
    position: absolute;
    width: 1950px;
    height: 1175px;
    z-index: -1;
}

.about_mention_web1 {
    left: -680px;
    top: -595px;
}

.about_mention_web2 {
    right: -1518px;
    top: -180px;
}

.about_mention_web3 {
    bottom: -500px;
    left: -355px;
}

.about_mention_wrapper {
    margin-bottom: 160px;
}

.about_mention_subtitle {
    background-color: var(--say9-primary-blue);
    padding: 6px 14px 4px;
    border-radius: 200px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1em;
    margin-bottom: 14px;
    display: inline-block;
}

.about_mention_txt {
    color: var(--say9-brand-text-blue);
    font-size: 82px;
    line-height: 1.1em;
    font-weight: 700;
    margin-bottom: 160px;
}

.about_mention_txt img {
    width: 116px;
    height: 70px;
    display: inline;
    vertical-align: middle;
}

.about_mention_cta {
    background-color: var(--say9-secondary-blue);
    display: flex;
    border-radius: 400px;
    padding: 24px;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.about_mention_cta_left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about_mention_right {
    flex-shrink: 0;
}

.about_mention_logo {
    width: 52px;
    height: 52px;
}

.about_mention_cta_txt {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2em;
    padding-top: 4px;
}

.about_mention_btn {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 200px;
    padding: 12px 10px 12px 18px;
    gap: 18px;
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.about_mention_btn,
.about_mention_btn *,
.about_mention_btn::before,
.about_mention_btn::after {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.about_mention_btn:active {
    background: transparent;
    padding: 12px 10px 12px 18px;
    border-color: #10335F;
}

.about_mention_btn span {
    color: var(--say9-secondary-blue);
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    padding-top: 4px;
}

@media (hover: none) and (pointer: coarse),
(any-hover: none) and (any-pointer: coarse) {

    .about_mention_btn:hover,
    .about_mention_btn:active {
        background-color: #10335F !important;
    }

    .about_mention_btn:hover span,
    .about_mention_btn:active span {
        color: #FFFFFF !important;
    }
}

.about_mention_btn img {
    width: 32px;
    height: 32px;
}

.mention_work_subtitle {
    margin: 0 auto 14px;
    display: block;
    width: fit-content;
}

.mention_work_title {
    font-weight: 700;
    font-size: 82px;
    line-height: 1.1em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--say9-brand-text-blue);
}

/* Timeline */

.timeline_wrapper {
    width: 100%;
}

.timeline {
    width: 100%;
    position: relative;
}

.timeline_steps {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.timeline_step {
    padding: 36px 32px;
    position: relative;
    border-radius: 24px;
    box-sizing: border-box;
    margin-right: 24px;
    display: grid;
    width: calc((100% - (24px * 2)) / 3);
    justify-content: space-between;
    grid-template-columns: 1fr;
    gap: 14px 40px;
}

.timeline_step:first-child {
    background-color: #DCF6FF;
}

.timeline_step:nth-child(2) {
    background-color: #AAE9FF;
}

.timeline_step:last-child {
    background-color: #74D8FA;
}

.timeline_step_num {
    background-color: #10335F;
    border-radius: 200px;
    padding: 6px 14px 4px;
    margin-bottom: 22px;
    color: #FFFFFF;
    font-weight: 500;
    max-height: 30px;
    font-size: 18px;
    line-height: 1.1em;
    width: fit-content;
}

.timeline_step_title {
    color: var(--say9-brand-text-blue);
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2em;
}

.timeline_step_right {
    max-width: 467px;
    width: 100%;
}

.timeline_step_txt {
    color: #30374F;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4em;
}

.timeline_pagination {
    top: unset !important;
    bottom: 0 !important;
    display: flex;
    justify-content: center;
}

.timeline_pagination .swiper-pagination-bullet {
    background-color: #10335F;
    width: 12px;
    height: 8px;
    border-radius: 50px;
    margin: 0 2px !important;
    opacity: 1;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.timeline_pagination .swiper-pagination-bullet-active {
    background-color: var(--say9-secondary-blue);
    width: 14px;
}


/* Benefits */

#benefits {
    margin-top: -70px;
    padding: 250px 120px 125px;
    border-radius: 0 0 60px 60px;
    background-color: #C6E1FF;
    position: relative;
    overflow: hidden;
}

.benefits_web {
    position: absolute;
    width: 1703px;
    height: 1027px;
    right: -440px;
    top: -350px;
}

#benefits_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.benefits_content {
    max-width: 330px;
    width: 100%;
    position: relative;
}

.benefits_question {
    position: absolute;
    width: 62px;
    height: 106px;
    transform: rotate(20deg);
    bottom: -30px;
    right: 50px;
}

.benefits_subtitle {
    background-color: var(--say9-primary-blue);
    padding: 6px 14px 4px;
    border-radius: 200px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1em;
    margin-bottom: 18px;
    display: inline-block;
}

.benefits_title {
    color: var(--say9-brand-text-blue);
    font-size: 82px;
    font-weight: 700;
    line-height: 1.1em;
}

.benefits_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 10px;
    max-width: 1220px;
    width: 100%;
}

.benefits_card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
}

.benefits_card_icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.benefits_card:first-child .benefits_card_icon {
    background-color: #FFF6B4;
}

.benefits_card:nth-child(2) .benefits_card_icon {
    background-color: #AAE9FF;
}

.benefits_card:last-child .benefits_card_icon {
    background-color: #CBE389;
}

.benefits_card_icon img {
    width: 42px;
    height: 42px;
}

.benefits_card_title {
    color: var(--say9-brand-text-blue);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 14px;
}

.benefits_card_txt {
    color: #4A5578;
    font-size: 24px;
    line-height: 1.6em;
}

/* Mention Price */

#mention_price {
    padding: 120px 120px 135px;
    margin-bottom: 200px;
    background-color: #FFFFFF;
    border-radius: 60px;
    position: relative;
    background-image: url("../assets/images/brand_mention/pricing_web1.svg");
    background-repeat: no-repeat;
    background-size: 805px 588px;
    background-position: top right;
}

.mention_price_web {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/brand_mention/pricing_web2.svg");
    background-repeat: no-repeat;
    background-size: 924px 223px;
    background-position: left bottom;
}

#mention_price_inner {
    max-width: 1640px;
}

#mention_price h4.subtitle {
    background-color: var(--say9-primary-blue);
    border-radius: 200px;
    padding: 6px 14px 4px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1em;
    width: fit-content;
    margin: 0 auto 14px;
}

#mention_price h1.title {
    font-size: 82px;
    line-height: 1.1em;
    margin-bottom: 70px;
    text-align: center;
    color: var(--say9-brand-text-blue);
}

.mention_price_package>div {
    border-radius: 24px;
    box-sizing: border-box;
    background-color: var(--say9-secondary-blue);
    overflow: hidden;
}

.mention_price_package.custom_price_package>div {
    background-color: #BDB4FE;
}

.mention_price_package:last-child {
    margin-right: 0 !important;
}

.mention_price_package {
    max-width: 392px;
    width: 100%;
    margin-right: 24px;
}

#mention_price .name {
    line-height: 1.4em;
    padding: 18px 32px 40px 26px;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    color: #FFFFFF;
}

#mention_price .custom_price_package .name {
    color: var(--say9-brand-text-blue);
}

.package_inner {
    margin-top: -26px;
    padding: 48px 14px 40px 32px;
    border-radius: 24px 24px 0 0;
    height: 100%;
    background-color: #10335F;
}

.mention_price_quarterly .package_inner {
    padding-top: 15px;
    background-color: var(--say9-secondary-blue);
}

.custom_price_package .package_inner {
    padding: 48px 32px 40px;
    background-color: #D9D6FE;
}

#mention_price .custom_price_package .price_desc {
    margin-bottom: 24px;
    color: var(--say9-brand-text-blue);
}

.custom_price_package .package_desc {
    margin-bottom: 24px;
    color: var(--say9-brand-text-blue);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4em;
}

.best_value {
    background-color: #10335F;
    border-radius: 200px;
    padding: 6px 14px 4px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1em;
    width: fit-content;
    margin: 0 18px 0 auto;
}

#mention_price .amount {
    font-size: 60px;
    line-height: 1.16em;
    margin-bottom: 4px;
    font-weight: 700;
    color: #FFFFFF;
}

#mention_price .resulting_price {
    font-size: 60px;
    line-height: 1.16em;
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--say9-brand-text-blue);
}

#mention_price .custom_price_package .amount {
    color: var(--say9-brand-text-blue);
}

#mention_price .price_desc {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 40px;
}

.best_value_mark {
    position: absolute;
    right: -9px;
    top: -8px;
}

.best_value_mark path {
    transition: fill 0.3s ease-in-out;
}

.best_value_mark linearGradient * {
    transition: stop-color 0.3s ease-in-out;
}

#mention_price .amount span:not(.resulting_price) {
    font-size: 18px;
    line-height: 1.1em;
    margin-left: 8px;
    font-weight: 500;
    color: #ffffff;
}

#mention_price .custom_price_package .amount span:not(.resulting_price) {
    color: var(--say9-brand-text-blue);
}

#mention_price .get_started {
    text-align: center;
    border-radius: 40px;
    line-height: 1em;
    font-size: 22px;
    margin-right: 18px;
    color: #fff;
    font-weight: 600;
    padding: 17px 20px 13px;
    background-color: var(--say9-secondary-blue);
    margin-top: 65px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out;
}

#mention_price .custom_price_package .get_started {
    margin-top: 150px;
    background-color: var(--say9-primary-blue);
    transition: background-color 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out;
}

#mention_price .get_started:hover {
    background-color: #63AEFF;
}

#mention_price .custom_price_package .get_started:hover,
#mention_price .custom_price_package .get_started:active {
    background-color: #10335F;
    border-color: transparent;
}

#mention_price .mention_price_quarterly .get_started {
    margin-top: 69px;
    background-color: #FFFFFF;
    border: none;
    color: var(--say9-secondary-blue);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

#mention_price .mention_price_quarterly .get_started:hover,
#mention_price .mention_price_quarterly .get_started:active {
    background-color: #10335F;
    color: #FFFFFF;
}

#mention_price .keypoint {
    margin-bottom: 14px;
    column-gap: 14px;
    display: flex;
    align-items: center;
}

#mention_price .keypoint img {
    width: 24px;
    height: 24px;
}

#mention_price .mention_price_quarterly .keypoint {
    border-color: #fcfcfc;
}

#mention_price .mention_price_quarterly .keypoint svg path {
    stroke: var(--say9-main-blue);
}

#mention_price .keypoint span {
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 400;
    color: #B9C0D4;
}

#mention_price .mention_price_quarterly .keypoint span {
    color: #E5F1FF;
}

#mention_price .keypoint:last-of-type {
    margin-bottom: 0;
}

html .mention_price_package.mention_price_quarterly>div {
    background-color: #10335F;
}

.mention_price_quarterly * {
    color: #fff;
}

.get_started {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

/* Pricing Pop Up */

#exit_form svg {
    top: 10px;
}

#exit_form .custom_offer_service label span {
    padding-top: 2px;
}

#purchase_popup_brand_mention {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.001);
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    contain: layout paint;
    /* -webkit-transform: translateZ(0); */
    /* transform: translateZ(0); */
    /* overscroll-behavior: none; */
    padding: 0 24px;
    z-index: 10000000000;
    pointer-events: none;
    /* position: absolute; */
    top: var(--top-offset, 0);
    left: 0;
}

#purchase_popup_brand_mention.active {
    pointer-events: auto;
    height: 100vh;     /* fallback */
    height: 100dvh;    /* correct when bars/keyboard change viewport */
}

#purchase_filter {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(46.6px);
    -webkit-backdrop-filter: blur(46.6px);
    opacity: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-color: #50a2c81a;
    z-index: 100;
    transition: backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, opacity 0.4s ease;
    -webkit-transition: backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, opacity 0.4s ease;
}

#purchase_popup_brand_mention.active #purchase_filter {
    opacity: 1;
}

#popup_inner {
    width: 100%;
    max-width: 587px;
    border-radius: 32px;
    background-color: #C6E1FF;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 60px 60px 40px;
    overflow: hidden;
    z-index: 150;
    transform: translateY(20px) scale(0.8);
    -webkit-transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 1.3s ease-in-out;
    -webkit-transition: transform 0.4s ease, opacity 0.4s ease, background-color 1.3s ease-in-out;
}

#purchase_popup_brand_mention.active #popup_inner {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    opacity: 1;
}

#popup_inner .ff-el-group.ff-custom_html {
    margin-bottom: 40px;
}

#popup_inner .title {
    font-size: 48px;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--say9-brand-text-blue);
    margin-bottom: 4px;
    text-align: left;
    font-family: "League Spartan", "Helvetica Neue", Arial, sans-serif;
    transition: color 0.3s ease-in-out;
}

#popup_inner .title+p,
#popup_inner .title+p * {
    font-size: 24px;
    color: #4A5578;
    font-weight: 400;
    text-align: left;
    transition: color 0.3s ease-in-out;
}

#popup_inner .description,
#popup_inner .description * {
    font-size: 14px;
    line-height: 17px;
}

#popup_inner>p {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 40px;
}

#popup_inner>p span {
    font-weight: 600;
}

#popup_inner>.form {
    z-index: 2;
}

#popup_inner>.form label {
    color: #7F88A2;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

#popup_inner>.form label:after {
    content: none;
}

#popup_inner>.form input {
    position: relative;
    color: #4A5578;
    border-radius: 12px;
    border: 2px solid transparent !important;
    padding: 11px 12px 8px 40px;
    font-size: 19px;
    background-color: #F6FAFF;
    line-height: 1.4em;
    font-family: "League Spartan", "Helvetica Neue", Arial, sans-serif;
    transition: border-color 0.3s ease-in-out;
}

#popup_inner>.form input:active,
#popup_inner>.form input:focus {
    border-color: #99CAFF !important;
}

#popup_inner .form input:-webkit-autofill {
    -webkit-text-fill-color: #4A5578 !important;
    color: #4A5578 !important;
    background-color: #F6FAFF !important;
    background-clip: content-box !important;
    box-shadow: 0 0 0 1000px #F6FAFF inset !important;
    /* border: none !important; */
    appearance: none;
    -webkit-appearance: none;
}

#popup_inner>.form input::placeholder {
    color: #B9C0D4;
    transition: color 0.3s ease-in-out;
}

#popup_inner>.form .ff-el-input--content {
    position: relative;
}

#popup_inner>.form svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    z-index: 1;
    pointer-events: none;
}

#popup_inner>.form svg path {
    transition: stroke-opacity 0.15s ease-in-out;
}

#popup_inner>.form svg.active path {
    stroke-opacity: 1;
}

#popup_inner>.form button[type="submit"] {
    background-color: var(--say9-primary-blue);
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    border-radius: 200px;
    text-align: center;
    padding: 17px 20px 13px;
    width: 100%;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

#popup_inner>.form button[type="submit"]:hover,
#popup_inner>.form button[type="submit"]:focus {
    opacity: 1;
    background-color: #10335F;
}

#popup_inner>.form button[type="submit"]:active {
    padding: 15px 20px 11px;
}

#popup_inner .ff_submit_btn_wrapper {
    margin: 60px 0 0;
    height: 54px;
}

#popup_inner:has(.ff-el-is-error) .ff_submit_btn_wrapper button[type="submit"]:active,
#popup_inner:has(.ff-el-is-error) .ff_submit_btn_wrapper button[type="submit"]:focus {
    padding: 17px 20px 13px;
}

#popup_inner .mention_form_input {
    margin-bottom: 24px;
}

#popup_inner .mention_form_input:not(.ff-el-is-error) .text-danger.error {
    display: none;
}

#popup_inner .ff-el-group.ff-el-is-error input {
    border-color: #F22B1D !important;
}

.mention_form_website.ff-el-is-error .ff-el-input--content::before {
    border-color: #F22B1D !important;
}

#popup_inner .ff-el-group.ff-el-is-error .text-danger {
    margin: 6px 0 0;
    color: #D92D20;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    line-height: 1.1em;
}

#popup_inner .ff-el-group.ff-el-is-error svg path {
    /* stroke: #F22B1D; */
}

#popup_inner.thank_you {
    padding: 60px 60px 40px;
}

#popup_inner .ff-message-success {
    border: none;
    box-shadow: none;
    margin: 0 auto;
    max-width: 480px;
    text-align: center;
    width: 100%;
    padding: 0;
}

#popup_inner .ff-message-success .thank_you {
    text-transform: none;
}

#popup_inner .ff-message-success p {
    margin-bottom: 26px;
}

#popup_inner .ff-message-success button {
    width: 100%;
    max-width: 264px;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 40px;
    margin: auto;
    padding: 12px 0;
    background-color: var(--say9-main-orange);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: box-shadow 0.3s ease-out, background-color 0.3s ease-in-out;
}

#popup_inner .ff-message-success button:hover {
    box-shadow: 0 0 5.2px #ff8a3b;
}

#popup_inner .ff-message-success button:active {
    box-shadow: 0 0 7.5px #ff8a3bb2;
}

#popup_inner .ff-message-success .thank_you_bottom {
    margin-top: 100px;
    transition: color 0.3s ease-in-out;
}

#popup_inner .ff-message-success .thank_you_bottom,
#popup_inner .ff-message-success .thank_you_bottom span {
    font-size: 14px;
    line-height: 1.5em;
}

#popup_inner .ff-message-success .thank_you_bottom_content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

#popup_inner .ff-message-success .thank_you_bottom_content p {
    margin-bottom: 0;
    color: var(--say9-brand-text-blue);
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 600;
}

#popup_inner .ff-message-success .thank_you_links {
    margin-top: 14px;
    display: flex;
    column-gap: 14px;
    align-items: center;
    justify-content: center;
}

#popup_inner .ff-message-success .thank_you_img {
    width: 236px;
    height: 204px;
    position: absolute;
    bottom: -60px;
    right: -30px;
    z-index: -1;
}

#purchase_close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

#purchase_close svg path {
    transition: stroke 0.3s ease-in-out;
}

#purchase_close svg:hover path {
    stroke: #4A5578;
}

#purchase_popup .fluentform .ff-el-input--label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

#popup_inner .thank_you_icon {
    width: 36px;
    height: 36px;
    background-image: none;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
}

#popup_inner .thank_you_icon:hover {
    background-color: #FFFFFF;
}

#popup_inner .thank_you_icon img {
    display: block;
}

.mention_form_website .ff-el-input--content::before {
    content: "http://";
    position: absolute;
    height: 100%;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4em;
    padding: 12px 12px 8px;
    color: #7F88A2;
    z-index: 1;
    border-right: 1px solid #D0D5DD;
}

#popup_inner .mention_form_input .ff-el-input--content::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background-image: url('../assets/images/brand_mention/input-alert-icon.svg');
    display: none;
}

#popup_inner .mention_form_input.ff-el-is-error .ff-el-input--content::after {
    display: block;
}

#popup_inner .mention_form_website input {
    padding-left: 90px;
}

/* Pricing New Calculator */

/* Chrome, Safari, Edge, Opera */
#custom_per_month input::-webkit-outer-spin-button,
#custom_per_month input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
#custom_per_month input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.custom_pricing {
    padding: 45px 34px 40px 34px;
}

.custom_pricing .heading {
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 4px;
}

.need_custom {
    color: rgb(7, 72, 98);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 34px;
}

.link_amount_input {
    display: flex;
}

.link_amount_input .button {
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px !important;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    outline: 0;
    border: none;
}

.link_amount_input input {
    padding: 4.5px 14px 2.5px;
    border-radius: 60px;
    border: none;
    outline: none;
    flex-grow: 1;
    margin: 0 8px;
    box-sizing: border-box;
    width: 100%;
    max-width: 215px;
    color: var(--say9-brand-text-blue);
    font-size: 22px;
    line-height: 1.4em;
    font-weight: 400;
}

.link_amount_input input::placeholder {
    color: #4A5578;
}

.custom_pricing .notice {
    margin-bottom: 54px;
}

/* FAQ */

#faq {
    margin-bottom: 200px;
    padding: 0 120px;
}

#faq_inner {
    max-width: 1360px;
}

.faq_title {
    color: #FFFFFF;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 60px;
    text-align: center;
}

.faq_wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq_item {
    background-color: #10335F;
    border-radius: 24px;
    padding: 32px 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq_item_icon {
    width: 42px;
    height: 42px;
}

.faq_item_content {
    display: grid;
    grid-template-columns: minmax(0, 650px) 500px;
    justify-content: space-between;
    gap: 30px;
}

.faq_item_title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2em;
}

.faq_item_txt {
    color: #B9C0D4;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6em;
}

/* Result */


/* Media */

@media screen and (max-width: 1880px) {
    /* Mention Pricing */

    #mention_price .name {
        padding: 18px 20px 40px;
        font-size: 23px;
    }

    .package_inner,
    .custom_price_package .package_inner {
        padding: 48px 20px 26px;
    }

    .mention_price_quarterly .package_inner {
        padding-top: 15px;
    }

    #mention_price .keypoint span {
        font-size: 21px;
    }

    #mention_price .get_started {
        margin-right: 0;
    }

    #mention_price .custom_price_package .get_started {
        margin-top: 130px;
    }
}

@media screen and (max-width: 1720px) {
    #mention_price {
        padding: 100px 60px;
    }
}

@media screen and (max-width: 1600px) {
    .about_mention_txt {
        font-size: 66px;
        margin-bottom: 120px;
    }

    .about_mention_txt img {
        width: 110px;
        height: 66px;
    }

    .mention_work_title,
    .benefits_title,
    #mention_price h1.title,
    .faq_title {
        font-size: 66px;
    }
}

@media screen and (max-width: 1580px) {
    /* Mention Pricing */

    #mention_price .name {
        font-size: 21px;
    }

    #mention_price .amount,
    #mention_price .resulting_price {
        font-size: 50px;
    }

    #mention_price .keypoint span {
        font-size: 18px;
    }

    #mention_price .custom_price_package .get_started {
        margin-top: 110px;
    }
}

@media screen and (max-width: 1520px) {
    /* Brand Hero */

    .brand_hero_wrapper {
        grid-template-columns: 565px minmax(0, 700px);
    }

    .brand_hero_anim video {
        max-height: 520px;
    }
}

@media screen and (max-width: 1440px) {
    /* Brand Hero */

    #brand_hero {
        padding: 40px 120px;
    }

    .brand_hero_title {
        font-size: 64px;
    }

    .brand_hero_txt {
        margin-bottom: 30px;
    }

    /* About Mention */

    .about_mention_cta {
        padding: 18px 24px;
    }

    .about_mention_cta_left {
        gap: 12px;
    }

    .about_mention_cta_txt {
        font-size: 32px;
    }

    .timeline_step {
        padding: 36px 24px;
    }

    .timeline_step_title {
        font-size: 28px;
    }

    .timeline_step_txt {
        font-size: 18px;
    }

    /* Benefits */

    #benefits_inner {
        flex-direction: column;
        gap: 48px;
    }

    .benefits_content {
        max-width: 100%;
    }

    .benefits_question {
        bottom: unset;
        top: -56px;
        right: -16px;
    }

    /* Mention Pricing */

    #mention_price {
        padding: 70px 0;
        margin-bottom: 160px;
    }

    #mention_price h1.title {
        margin: 0 120px 70px;
    }

    #mention_price_inner {
        max-width: 100%;
    }

    .package_inner,
    .custom_price_package .package_inner {
        padding: 48px 18px 26px;
    }

    #mention_price .name {
        padding: 18px 14px 40px 18px;
    }

    .mention_price_packages {
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media screen and (max-width: 1350px) {
    /* Brand Hero */

    .brand_hero_wrapper {
        grid-template-columns: 480px minmax(0, 700px);
    }

    .brand_hero_title {
        font-size: 56px;
        margin-top: 60px;
    }

    .brand_hero_anim video {
        max-height: 470px;
    }
}

@media screen and (max-width: 1280px) {
    .about_mention_txt {
        font-size: 60px;
    }

    .about_mention_txt img {
        width: 100px;
        height: 60px;
    }

    .mention_work_title,
    .benefits_title,
    #mention_price h1.title,
    .faq_title {
        font-size: 60px;
    }
}

@media screen and (max-width: 1200px) {
    /* Brand Hero */

    #brand_hero {
        padding: 40px 70px;
    }

    /* About Mention */

    #about_mention {
        padding: 100px 70px 70px;
        isolation: isolate;
    }

    .about_mention_web {
        display: none;
    }

    #about_mention::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../assets/images/brand_mention/web_mobile.svg");
        background-size: contain;
        background-repeat: repeat-y;
        z-index: 0;
        pointer-events: none;
    }

    .about_mention_wrapper {
        margin-bottom: 100px;
    }

    .about_mention_txt {
        margin-bottom: 100px;
    }

    .about_mention_cta {
        padding: 26px 36px;
    }

    .about_mention_cta_txt {
        font-size: 26px;
    }

    .about_mention_btn {
        padding: 12px 6px 12px 16px;
    }

    .about_mention_btn:active {
        padding: 12px 6px 12px 16px;
    }

    /* Timeline */

    .timeline {
        max-width: 750px;
    }

    .timeline_steps {
        padding-bottom: 28px;
    }

    .timeline_step {
        padding: 60px 32px;
        gap: 24px;
        grid-template-columns: 210px minmax(0, 430px);
        width: 100%;
    }

    .timeline_step_right {
        max-width: 100%;
        grid-row: 2;
        grid-column: 2;
    }

    .timeline_step_num {
        grid-row: 1;
        grid-column: 1;
    }

    .timeline_step_title {
        max-width: 210px;
        grid-row: 2;
        grid-column: 1;
        font-size: 34px;
    }

    .timeline_step_txt {
        font-size: 22px;
    }

    /* Benefits */

    #benefits {
        padding: 175px 70px 100px;
    }

    /* FAQ */

    #faq {
        margin-bottom: 160px;
        padding: 0 70px;
    }

    .faq_item_content {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
}

@media screen and (max-width: 1024px) {
    /* Brand Hero */

    #brand_hero {
        padding: 40px 70px 100px;
    }

    .brand_hero_wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .brand_hero_anim {
        grid-row: 1;
        grid-column: 1;
        margin-bottom: 80px;
    }

    .brand_hero_title {
        grid-row: 2;
        margin-top: 0;
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 82px;
    }

    .brand_hero_txt {
        grid-row: 3;
        max-width: 100%;
        margin-bottom: 60px;
    }

    .brand_hero_btns {
        grid-row: 4;
    }

    .brand_hero_anim video {
        max-height: 600px;
        max-width: 100%;
    }

    /* About Mention */

    .about_mention_txt {
        font-size: 48px;
    }

    .about_mention_txt img {
        width: 83px;
        height: 48px;
    }

    .about_mention_cta {
        padding: 20px;
    }

    /* Benefits */

    .benefits_cards {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
    }

    /* Mention Pricing */

    #mention_price {
        padding: 140px 0;
    }

    #mention_price h1.title {
        margin: 0 70px 40px;
    }

    .mention_price_wrapper {
        justify-content: flex-start;
    }

    .mention_price_packages {
        padding-left: 70px;
        padding-right: 70px;
    }

    .mention_work_title,
    .benefits_title,
    #mention_price h1.title,
    .faq_title {
        font-size: 48px;
    }
}

@media screen and (max-width: 850px) {
    /* Mention Pricing */

    #mention_price h1.title {
        font-size: 60px;
    }
}

@media screen and (max-width: 768px) {
    /* Brand Hero */

    #brand_hero {
        padding: 34px 24px 70px;
    }

    .brand_hero_anim {
        min-height: 253px;
        margin-bottom: 40px;
    }

    .brand_hero_title {
        font-size: 60px;
    }

    .brand_hero_txt {
        margin-bottom: 40px;
    }

    .brand_hero_btn {
        padding: 4px 4px 4px 14px;
    }

    .brand_hero_btn:active {
        padding: 2px 2px 2px 12px;
    }

    .brand_hero_btn span {
        font-size: 18px;
    }

    .brand_hero_btn_secondary {
        padding: 9px 14px;
    }

    .brand_hero_btn_secondary:active {
        padding: 7px 12px;
    }

    /* About Mention */

    #about_mention {
        border-radius: 32px;
        padding: 40px 16px;
    }

    .about_mention_txt {
        font-size: 40px;
        margin-bottom: 60px;
    }

    .about_mention_txt img {
        width: 67px;
        height: 40px;
    }

    .about_mention_wrapper {
        margin-bottom: 80px;
    }

    .about_mention_cta {
        flex-direction: column;
        padding: 24px 16px;
        border-radius: 24px;
        gap: 36px;
    }

    .about_mention_cta_left {
        flex-direction: column;
        gap: 14px;
    }

    .about_mention_logo {
        width: 42px;
        height: 42px;
    }

    .about_mention_cta_txt {
        font-size: 34px;
        text-align: center;
    }

    .about_mention_right {
        max-width: 310px;
        width: 100%;
    }

    .about_mention_btn {
        width: 100%;
        justify-content: center;
        padding: 9px 20px;
    }

    .about_mention_btn:active {
        padding: 9px 20px;
    }

    .about_mention_btn span {
        font-size: 18px;
    }

    .about_mention_btn img {
        display: none;
    }

    .mention_work_title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    /* Timeline */

    .timeline_steps {
        padding-bottom: 22px;
    }

    .timeline_step {
        padding: 40px 24px;
        display: block;
    }

    .timeline_step:nth-child(odd)::before,
    .timeline_step:nth-child(even)::before {
        left: -21px;
    }

    .timeline_step_right {
        grid-column: 1;
        grid-row: 3;
    }

    .timeline_step_title {
        font-size: 30px;
        margin-bottom: 4px;
        max-width: 100%;
    }

    .timeline_step_num {
        margin-bottom: 24px;
    }

    .timeline_step_txt {
        font-size: 19px;
    }

    /* Benefits */

    #benefits {
        margin-top: -55px;
        padding: 125px 16px 48px;
        border-radius: 0 0 32px 32px;
    }

    .benefits_title {
        font-size: 60px;
    }

    .benefits_question {
        right: 16px;
    }

    .benefits_card_icon {
        width: 60px;
        height: 60px;
    }

    .benefits_card_icon img {
        width: 34px;
        height: 34px;
    }

    /* Mention Pricing */

    #mention_price {
        padding: 80px 16px;
        margin-bottom: 110px;
        border-radius: 24px;
    }

    .mention_price_packages {
        padding: 0;
    }

    .mention_price_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        transform: translate3d(0, 0px, 0px);
    }

    #mention_price h1.title {
        margin: 0 0 40px 0;
    }

    .mention_price_package {
        margin-right: 0;
    }

    #mention_price .name {
        font-size: 22px;
        padding: 18px 30px 40px 16px;
    }

    .package_inner,
    .custom_price_package .package_inner {
        padding: 28px 16px 20px;
    }

    #mention_price .amount,
    #mention_price .resulting_price {
        font-size: 48px;
    }

    #mention_price .keypoint img {
        width: 18px;
        height: 18px;
    }

    #mention_price .price_desc {
        margin-bottom: 30px;
    }

    #mention_price .keypoint {
        column-gap: 8px;
    }

    #mention_price .keypoint span {
        font-size: 19px;
        line-height: 1.4em;
        padding-top: 4px;
    }

    #mention_price .get_started {
        padding: 13px 20px 9px;
        font-size: 18px;
        margin-top: 34px;
        margin-right: 0;
    }

    #mention_price .mention_price_quarterly .get_started {
        margin-top: 34px;
    }

    .best_value {
        margin-bottom: -20px;
        margin-right: 0;
    }

    #mention_price .custom_price_package .price_desc {
        margin-bottom: 20px;
    }

    #mention_price .custom_price_package .get_started {
        margin-top: 85px;
    }

    #mention_price h1.title {
        font-size: 34px;
        line-height: 1.18;
    }

    /* FAQ */

    #faq {
        margin-bottom: 70px;
        padding: 0 16px;
    }

    .faq_title {
        font-size: 60px;
        margin-bottom: 40px;
    }

    .faq_item {
        padding: 32px 16px;
    }

    /* Pricing pop up */

    #popup_inner {
        padding: 40px 24px;
    }
}

@media screen and (max-width: 600px) {
    
    #popup_inner.thank_you {
        padding: 80px 24px;
    }
    
    .thank_you_bottom_content {
        /* max-width: 60%; */
    }

    #popup_inner .ff-message-success .thank_you_bottom {
        margin: 24px 0 100px 0;
    }

    #popup_inner .ff-message-success .thank_you_img {
        width: 67%;
        aspect-ratio: 236 / 204;
        bottom: -180px;
        right: -20px;
        max-height: 200px;
    }

    .thank_you_img img {
        object-position: bottom right;
        position: absolute;
        right: 0;
    }
}

@media screen and (max-width: 500px) and (max-height: 800px) {
    #popup_inner {
        padding: 40px 16px;
    }

    #popup_inner .title {
        font-size: 30px;
    }

    #popup_inner .title+p, #popup_inner .title+p * {
        font-size: 20px;
    }

    #popup_inner .ff-el-group.ff-custom_html {
        margin: 6px 0 16px 0;
    }

    #popup_inner .ff_submit_btn_wrapper {
        margin: 30px 0 0;
    }
}