/* Elementor widget defaults. Every value can be overridden in Elementor controls. */
.be-widget {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    font-family: Poppins, sans-serif
}

.be-widget::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none
}

.be-inner {
    position: relative;
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto
}

.be-section {
    padding: 96px 0;
    background: var(--background)
}

.be-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 42px
}

.be-heading {
    margin: 0 0 14px;
    color: var(--text);
    font-family: Poppins, sans-serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.035em
}

.be-copy {
    color: var(--muted);
    font-family: Poppins, sans-serif;
    font-weight: 400
}

.be-section-heading .be-copy {
    max-width: 640px;
    margin: 0
}

.be-eyebrow {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase
}

.be-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    transition: transform .2s, background-color .2s, box-shadow .2s
}

.be-button:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
    color: #fff;
    box-shadow: 0 12px 30px rgba(13, 71, 161, .18)
}

.be-button--ghost {
    background: transparent;
    color: var(--primary)
}

.be-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px
}

.be-hero {
    min-height: 780px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--section-bg), #e9f2ff)
}

.be-hero__inner {
    display: flex;
    align-items: center;
    gap: 7%;
    min-height: 600px
}

.be-hero__content {
    width: 55%
}

.be-hero__title {
    max-width: 760px;
    font-size: clamp(3rem, 6.2vw, 6.4rem)
}

.be-hero__content .be-copy {
    max-width: 620px;
    font-size: 1.08rem
}

.be-hero__visual {
    display: flex;
    width: 38%;
    align-items: center;
    justify-content: center
}

.be-hero__visual img {
    width: min(100%, 470px);
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(31, 41, 55, .16))
}

.be-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px
}

.be-collection-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--section-bg);
    box-shadow: 0 12px 36px rgba(31, 41, 55, .07)
}

.be-collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    object-fit: contain;
    transition: transform .35s
}

.be-collection-card:hover img {
    transform: scale(1.04)
}

.be-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(13, 71, 161, .82))
}

.be-collection-card__content {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    color: #fff
}

.be-collection-card__content small,
.be-collection-card__content strong {
    display: block
}

.be-collection-card__content small {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase
}

.be-collection-card__content strong {
    font-size: 1.5rem;
    font-weight: 500
}

.be-products ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 20px
}

.be-benefits {
    background: var(--primary)
}

.be-benefits .be-eyebrow {
    color: #bbdefb
}

.be-benefits .be-heading,
.be-benefits h3 {
    color: #fff
}

.be-benefits .be-copy {
    color: rgba(255, 255, 255, .75)
}

.be-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .18)
}

.be-benefit-grid article {
    padding: 42px;
    background: var(--primary)
}

.be-benefit-grid h3 {
    margin: 22px 0 10px;
    font-size: 1.28rem
}

.be-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 1.3rem
}

.be-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor
}

.be-testimonials {
    background: var(--section-bg)
}

.be-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
}

.be-testimonial-grid blockquote {
    margin: 0;
    padding: 38px;
    border: 1px solid rgba(31, 41, 55, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(31, 41, 55, .05)
}

.be-testimonial-grid blockquote>p {
    color: var(--text);
    font-size: 1.1rem
}

.be-stars {
    margin-bottom: 18px;
    color: var(--accent);
    letter-spacing: .12em
}

.be-testimonial-grid cite {
    display: flex;
    flex-direction: column;
    font-style: normal
}

.be-testimonial-grid cite span {
    color: var(--muted);
    font-size: .82rem
}

.be-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin-inline: auto;
}

.be-faq-list details {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background: #FAF9F6;
    transition: var(--transition);
    overflow: hidden;
}

.be-faq-list details:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 108, 0, 0.15);
    background: #ffffff;
}

.be-faq-list details[open] {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 108, 0, 0.05);
}

.be-faq-list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    color: var(--text);
    font-size: 1.12rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    transition: var(--transition);
    user-select: none;
}

.be-faq-list summary::-webkit-details-marker {
    display: none;
}

.be-faq-list summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 20px;
}

.be-faq-list details:hover summary span {
    background: rgba(255, 108, 0, 0.1);
    color: var(--primary);
}

.be-faq-list details[open] summary span {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(45deg);
}

.be-faq-list details[open] summary {
    color: var(--primary);
}

.be-faq-list details>div {
    padding: 0 24px 20px 24px;
    animation: slideDown 0.3s ease-out;
}

.be-faq-list details>div p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--muted);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.be-newsletter {
    padding: 78px 0;
    background: var(--section-bg)
}

.be-newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 8%
}

.be-newsletter-form {
    display: flex;
    gap: 10px
}

.be-newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 13px 16px;
    border: 1px solid #d7dee8;
    border-radius: 10px;
    background: #fff
}

.be-cta {
    padding: 76px 0;
    background: var(--primary);
    color: #fff
}

.be-cta .be-eyebrow {
    color: #bbdefb
}

.be-cta .be-heading,
.be-cta .be-copy {
    color: #fff
}

.be-cta__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 8%
}

.be-cta__image {
    text-align: center
}

.be-cta__image img {
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .18))
}

.be-cta .be-button {
    border-color: #fff;
    background: #fff;
    color: var(--primary)
}

.be-site-header {
    z-index: 100;
    background: #fff;
    overflow: visible
}

.be-announcement {
    padding: 9px 20px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    font-size: .78rem
}

.be-site-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 36px
}

.be-header-logo img {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 58px
}

.be-site-header nav {
    margin-left: auto
}

.be-site-header nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none
}

.be-site-header nav a {
    color: var(--text);
    font-weight: 500
}

.be-header-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.be-header-actions a {
    position: relative;
    color: var(--text);
    font-weight: 500
}

.be-site-footer {
    padding: 76px 0 24px;
    background: #102a56;
    color: #fff
}

.be-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr .7fr;
    gap: 56px
}

.be-footer-logo {
    width: auto;
    max-width: 210px;
    max-height: 60px;
    object-fit: contain
}

.be-site-footer h3 {
    color: #fff;
    font-size: .9rem
}

.be-site-footer .be-copy,
.be-site-footer p {
    color: rgba(255, 255, 255, .72)
}

.be-site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.be-site-footer li {
    margin-bottom: 8px
}

.be-site-footer a {
    color: #fff
}

.be-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.be-footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .62);
    font-size: .78rem
}

@media(max-width:1024px) {
    .be-inner {
        width: min(760px, calc(100% - 32px))
    }

    .be-section {
        padding: 76px 0
    }

    .be-hero__inner {
        gap: 4%
    }

    .be-hero__content {
        width: 58%
    }

    .be-hero__visual {
        width: 38%
    }

    .be-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .be-benefit-grid {
        grid-template-columns: 1fr
    }

    .be-newsletter__inner {
        grid-template-columns: 1fr
    }

    .be-site-header nav {
        display: none
    }

    .be-footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .be-footer-grid>div:first-child {
        grid-column: 1/-1
    }
}

@media(max-width:767px) {
    .be-inner {
        width: calc(100% - 24px)
    }

    .be-section {
        padding: 60px 0
    }

    .be-section-heading {
        align-items: flex-start;
        flex-direction: column
    }

    .be-hero {
        min-height: 0;
        padding: 64px 0 44px
    }

    .be-hero__inner {
        flex-direction: column
    }

    .be-hero__content,
    .be-hero__visual {
        width: 100%
    }

    .be-hero__title {
        font-size: 2.8rem
    }

    .be-hero__visual {
        margin-top: 38px
    }

    .be-hero__visual img {
        max-height: 320px
    }

    .be-collection-grid {
        grid-template-columns: 1fr
    }

    .be-collection-card {
        min-height: 360px
    }

    .be-products ul.products {
        gap: 26px 10px
    }

    .be-benefit-grid article {
        padding: 32px 24px
    }

    .be-testimonial-grid {
        grid-template-columns: 1fr
    }

    .be-newsletter-form {
        flex-direction: column
    }

    .be-cta__inner {
        grid-template-columns: 1fr
    }

    .be-cta__image {
        margin-top: 34px
    }

    .be-site-header__inner {
        min-height: 70px
    }

    .be-header-logo img {
        max-width: 170px
    }

    .be-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .be-footer-grid>div:first-child {
        grid-column: auto
    }
}

/* Bornler corporate reference: black, white and orange. */
.be-button {
    border-radius: 2px
}

.be-hero {
    min-height: 560px;
    background-color: #FAF9F6;
    background-image: radial-gradient(circle at 75% 30%, rgba(255, 108, 0, 0.05) 0%, rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, #fdfdfd 0%, #faf8f5 100%);
    border-bottom: 1px solid var(--line);
    padding: 60px 0 60px 0 !important;
}

.be-hero__inner {
    min-height: 440px
}

.be-hero__visual {
    position: relative !important;
}

.be-hero__content {
    width: min(76%, 900px)
}

.be-hero__title {
    color: var(--text);
    font-size: clamp(2rem, 4.1vw, 4.2rem);
    line-height: 1.25;
    letter-spacing: -.03em
}

.be-hero__title span {
    color: var(--primary)
}

.be-hero__content .be-copy {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.be-hero .be-button {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.be-hero .be-button:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 108, 0, 0.2);
}

.be-hero .be-button--ghost {
    border-color: var(--line);
    background: transparent;
    color: var(--text);
}

.be-hero .be-button--ghost:hover {
    background: var(--cream);
    border-color: var(--line);
    transform: translateY(-2px);
}

.be-corporate-story {
    background: #fff;
    padding: 80px 0;
}

.be-about-block {
    padding-bottom: 40px;
    padding-left: 24px !important;
    border-left: 3px solid var(--primary) !important;
}

.be-story-title {
    position: relative;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.be-story-title:after,
.be-vision-grid .be-heading:after {
    display: none;
}

.be-about-block .be-copy {
    max-width: 1120px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--muted);
}

.be-story-divider {
    height: 1px;
    margin: 40px 0 70px;
    background: var(--line);
    box-shadow: none;
}

.be-story-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 8%;
    margin-bottom: 80px;
}

.be-story-row--reverse {
    grid-template-columns: .8fr 1.2fr
}

.be-story-row>div {
    padding-left: 24px !important;
    border-left: 3px solid var(--primary) !important;
}

.be-story-row img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 16px !important;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    filter: grayscale(1) !important;
    transition: filter 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}

.be-story-row img:hover {
    filter: grayscale(0) !important;
}

.be-story-row:hover img {
    transform: scale(1.015);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.be-story-row h3 {
    margin: 18px 0 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
}

.be-stats {
    padding: 66px 0;
    background: #33373e;
    color: #fff
}

.be-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    text-align: center
}

.be-stats-grid strong,
.be-stats-grid span {
    display: block
}

.be-stats-grid strong {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 500
}

.be-stats-grid span {
    max-width: 190px;
    margin: 6px auto 0;
    font-size: .78rem
}

.be-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.be-vision-grid article {
    background-color: #FAF9F6;
    background-image: radial-gradient(circle at 75% 30%, rgba(255, 108, 0, 0.05) 0%, rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, #fdfdfd 0%, #faf8f5 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 38px;
    transition: var(--transition);
}

.be-vision-grid article:hover {
    background: #fff;
    border-color: rgba(255, 108, 0, 0.25);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.be-vision-grid .be-heading {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
    margin-bottom: 18px;
}

.be-benefits {
    background-color: #FAF9F6;
    background-image: radial-gradient(circle at 75% 30%, rgba(255, 108, 0, 0.05) 0%, rgba(255, 255, 255, 0) 55%), linear-gradient(135deg, #fdfdfd 0%, #faf8f5 100%) !important;
    padding: 90px 0;
}

.be-benefits .be-eyebrow {
    color: var(--primary)
}

.be-benefits .be-heading,
.be-benefits h3 {
    color: var(--text)
}

.be-benefits .be-copy {
    color: var(--muted)
}

.be-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background: transparent;
    margin-top: 48px;
}

.be-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.015);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.be-benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 108, 0, 0.06);
    border-color: rgba(255, 108, 0, 0.2);
}

.be-benefit-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 108, 0, 0.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.be-benefit-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.be-benefit-item:hover .be-benefit-icon-wrapper {
    background: var(--primary);
    color: #ffffff;
}

.be-benefit-item:hover .be-benefit-icon-wrapper svg {
    transform: scale(1.1) rotate(6deg);
}

.be-benefit-content {
    flex-grow: 1;
}

.be-benefit-content h3 {
    margin: 0 0 10px 0 !important;
    font-size: 1.32rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    letter-spacing: -0.015em;
}

.be-benefit-content p.be-copy {
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: var(--muted) !important;
}

@media(max-width:900px) {
    .be-benefit-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .be-benefit-item {
        padding: 24px;
        gap: 18px;
    }

    .be-benefit-icon-wrapper {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .be-benefit-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
}

.be-benefit-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    border-radius: 12px !important;
    margin-bottom: 20px;
    filter: grayscale(1) !important;
    transition: filter 0.5s ease, transform 0.5s ease;
}

.be-benefit-grid article:hover .be-benefit-image {
    transform: scale(1.02);
    filter: grayscale(0) !important;
}

.be-benefit-grid h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 500;
}

.be-benefit-grid h3:after {
    display: none;
}

.be-benefit-grid .be-copy {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.be-collection-card {
    border-radius: 0
}

.be-card-overlay {
    background: linear-gradient(transparent 48%, rgba(0, 0, 0, .78))
}

.be-testimonials {
    background: #f7f7f7
}

.be-newsletter {
    background: #000000
}

.be-newsletter .be-heading {
    color: #fff
}

.be-newsletter .be-copy {
    color: rgba(255, 255, 255, .7)
}

.be-cta {
    background: #05060d
}

.be-site-header {
    background: #05060d
}

.be-site-header nav a,
.be-header-actions a {
    color: #fff
}

.be-announcement {
    background: var(--primary)
}

.be-site-footer {
    background: #050505
}

.be-site-footer h3:after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 12px;
    background: var(--primary)
}

@media(max-width:1024px) {
    .be-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .be-story-row,
    .be-story-row--reverse {
        gap: 7%
    }

    .be-stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .be-hero__content {
        width: 100%
    }

    .be-hero__title {
        font-size: 1.9rem
    }

    .be-story-row,
    .be-story-row--reverse {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .be-story-row--reverse img {
        order: 2
    }

    .be-story-divider {
        margin-bottom: 50px
    }

    .be-vision-grid {
        grid-template-columns: 1fr
    }

    .be-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 34px 15px !important;
    }

    .be-benefit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 12px
    }

    .be-benefit-grid .be-copy {
        font-size: .75rem
    }
}

.be-site-footer .ssc-contact-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent
}

.be-site-footer .ssc-contact-form p {
    margin-bottom: 10px
}

.be-site-footer .ssc-contact-form label {
    color: rgba(255, 255, 255, .68);
    font-size: .72rem;
    font-weight: 400
}

.be-site-footer .ssc-contact-form input,
.be-site-footer .ssc-contact-form textarea {
    margin-top: 4px;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff
}

.be-site-footer .ssc-contact-form .button {
    min-height: 42px;
    border-radius: 0;
    background: var(--primary)
}

.be-hero {
    min-height: 520px;
    padding: 64px 0
}

.be-hero__inner {
    min-height: 390px
}

.be-hero__content {
    width: min(70%, 800px)
}

.be-hero__title {
    font-size: clamp(1.8rem, 2.8vw, 2.75rem);
    line-height: 1.42
}

.be-hero__content .be-copy {
    max-width: 720px
}

.be-hero .be-actions {
    margin-top: 24px
}

@media(max-width:767px) {
    .be-hero {
        min-height: 0;
        padding: 60px 0 80px 0 !important;
    }

    .be-hero__inner {
        min-height: 360px;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .be-hero__content {
        width: 100% !important;
        text-align: center !important;
    }

    .be-hero__title {
        font-size: 1.7rem;
        line-height: 1.35;
        margin-inline: auto !important;
    }

    .be-hero .be-actions {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .be-hero .be-button {
        width: 100% !important;
        justify-content: center !important;
    }

    .be-hero__visual {
        width: 100% !important;
        margin-top: 20px !important;
    }
}

/* Center align "Shop" / "Featured Products" heading and description */
.be-products .be-section-heading {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.be-products .be-section-heading>div {
    margin-inline: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.be-products .be-section-heading .be-copy {
    margin-inline: auto !important;
}