/* #region subnav */
.header-top-custom {
    display: none;
}

.aw-subnav {
    font-family: Inter;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    box-shadow: none;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s, box-shadow 0.35s;
}

body.aw-subnav-active .aw-subnav,
.aw-subnav.aw-mobile-open {
    background: #fff;
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

.aw-subnav-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 72px;
}

.aw-subnav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.aw-subnav-logo span {
    font-family: Inter SemiBold;
    font-size: 24px;
    color: #181D27;
    white-space: nowrap;
}

.aw-subnav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.aw-subnav-item {
    position: relative;
}

.aw-subnav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-family: Inter;
    font-size: 14px;
    color: #181D27;
    text-decoration: none;
    white-space: nowrap;
}

.aw-subnav-link:hover {
    color: #181D27;
}

a.aw-subnav-link:focus {
    color: #2563EB;
}

.aw-subnav-link-group {
    display: flex;
    align-items: center;
}

.aw-subnav-link-group .aw-subnav-link {
    padding-right: 4px;
}

.aw-dropdown-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px 8px 0;
}

.aw-subnav-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.aw-subnav-item.is-open .aw-subnav-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.aw-dropdown {
    position: absolute;
    top: 100%;
    left: -300px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
    min-width: 860px;
}

.aw-subnav-item.is-open .aw-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.aw-dropdown-inner {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #EAECF0;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(180deg, #F8FAFF 42.49%, #D9E6FF 109.34%) border-box;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 12px;
}

.aw-dropdown-col-title {
    font-family: Inter SemiBold;
    color: #252B37;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    padding-left: 12px;
    padding-bottom: 4px;
}

.aw-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #252B37;
    text-decoration: none;
    transition: background 0.18s ease;
    white-space: nowrap;
}

.aw-dropdown-item:hover {
    background: #DDEBFF;
    color: #2A3AD8;
}

/* Hide site main header when scrolled */
body.aw-subnav-active header.header {
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile */
.aw-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
}

.aw-overlay.is-visible {
    display: block;
}

body.aw-menu-open {
    overflow: hidden;
}

.aw-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.aw-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.aw-mobile-menu.is-open {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.aw-mobile-menu-inner {
    padding: 8px 16px 16px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #EAECF0;
}

.aw-mobile-link {
    display: block;
    padding: 12px;
    font-size: 15px;
    color: #181D27;
    text-decoration: none;
    border-radius: 8px;
}

.aw-mobile-link:hover {
    background: #F5F5F5;
}

.aw-mobile-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Inter;
    font-size: 15px;
    color: #181D27;
    border-radius: 8px;
    text-align: left;
}

.aw-mobile-accordion-btn:hover {
    background: #F5F5F5;
}

.aw-mobile-accordion-btn .aw-subnav-chevron {
    flex-shrink: 0;
}

.aw-mobile-accordion.is-open .aw-subnav-chevron {
    transform: rotate(180deg);
}

.aw-mobile-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 8px;
}

.aw-mobile-accordion.is-open .aw-mobile-accordion-body {
    max-height: 800px;
}

.aw-mobile-group-title {
    font-family: Inter SemiBold;
    font-size: 11px;
    color: #717680;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px 4px;
}

@media (max-width: 979px) {
    .aw-subnav {
        top: 0 !important;
        transform: translateY(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s, box-shadow 0.35s;
    }

    body.aw-subnav-active .aw-subnav,
    .aw-subnav.aw-mobile-open {
        transform: translateY(0);
    }

    .aw-subnav-menu {
        display: none;
    }

    .aw-menu-btn {
        display: flex;
    }
}

/* #endregion */

/* #region common */
.household-page {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
    padding-top: 60px;
}

.household-page .container {
    width: 100%;
    max-width: 1310px;
}

.section-p {
    padding: 50px 0;
}

.p-title {
    padding-bottom: 12px;
}

.text-center {
    text-align: center;
}

.text-semibold {
    font-family: Inter SemiBold;
}

.text-bold {
    font-family: Inter Bold;
}

.default-title {
    font-family: Inter Bold;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.default-subtitle {
    font-size: 20px;
    color: #414651;
}

.default-desc {
    background: url(/sites/amis/images/pages/agentwork-household/ic-check.svg) no-repeat top left;
    background-size: 24px;
    padding-left: 32px;
    text-align: start;
}

.gradient-text {
    background: linear-gradient(62.39deg, #F969B7 -4.29%, #875BF7 29.11%, #1B49F5 96.36%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-group {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.justify-center {
    justify-content: center;
}

a.base-btn {
    position: relative;
    font-family: Inter SemiBold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 12px;
    transition: all ease 0.5s;
    box-shadow: 0 6px 20px 3px rgba(116, 135, 255, 0.03), 0 3px 6px -6px rgba(10, 27, 137, 0.03);
}

a.primary-btn {
    background: linear-gradient(90deg, #5576FF 0%, #759AFF 101.67%), linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%);
    padding: 14px 26px;
    color: #FFF;
}

a.second-btn {
    border: 2px solid transparent;
    padding: 12px 24px;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(90deg, #5576FF 0%, #759AFF 101.67%), linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%) border-box;
    /* color: #1B49F5; */
}

a.second-btn span {
    background:
        linear-gradient(90deg, #5576FF 0%, #759AFF 101.67%),
        linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

a.third-btn {
    background-color: #FFF;
    padding: 14px 26px;
    color: #1B49F5;
}

a.arrow-btn:hover img {
    transform: translateX(4px);
}

a.shadow-btn {
    opacity: 1 !important;
}

.shadow-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(90deg,
            #ff6ec4,
            #7873f5,
            #22d3ee,
            #4ade80,
            #ff6ec4);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.shadow-btn:hover::before {
    opacity: 1;
    animation: shadowMove 4s linear infinite;
}

.border-btn:hover {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,
            #ff6ec4,
            #7873f5,
            #4ade80,
            #22d3ee,
            #ff6ec4) border-box;
    background-size: 200% 200%;
    animation: borderMove 3s linear infinite;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.bg-play-btn {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #2662FF;
}

.play-video-item:hover .bg-play-btn {
    animation: pulse 1.2s ease infinite;
}

.household-page form[lz-id='bad0cecd-5b74-4838-9b2e-b3a11f21f9f4'].private-form .submit-wrapper .btn-form-submit {
    border-radius: 12px !important;
    background: linear-gradient(90deg, #4155F5 0%, #5576FF 101.67%) !important;
    height: 52px !important;
    font-family: Inter SemiBold !important;
    font-size: 16px !important;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes shadowMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@media (max-width: 979px) {
    .default-title {
        font-size: 28px;
    }

    .default-subtitle {
        font-size: 18px;
    }

    .section-p {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .default-title {
        font-size: 24px;
    }

    .default-subtitle {
        font-size: 16px;
    }

    .cta-group {
        display: grid;
    }

    .play-btn {
        width: 36px;
        height: 36px;
    }

    .section-p {
        padding: 30px 0;
    }
}

/* #endregion */

/* #region hero */
.hero {
    position: relative;
    background: linear-gradient(0deg, rgba(89, 147, 255, 0.35) -25.64%, rgba(255, 255, 255, 0.00) 58.21%);
}

.hero-bg-hl {
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 4;
}

.hero-title {
    font-family: Inter Bold;
    font-size: 52px;
    font-weight: normal;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #252B37;
    padding: 16px 0 32px;
}

.hero-wrap {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-top: 64px;
}

.hero-image {
    width: 733px;
    height: 509px;
    position: relative;
}

.hero-image-main {
    position: absolute;
    width: 111%;
    max-width: 807px;
    top: -12%;
    left: -6%;
    z-index: 2;
}

.hero-image-shadow {
    position: absolute;
    z-index: 1;
    top: -26%;
    left: -14%;
}

.hero-register {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 515px;
    border: 3px solid transparent;
    background:
        linear-gradient(#FFF, #FFF) padding-box,
        linear-gradient(43.36deg, rgba(89, 147, 255, 0.4) 31.77%, rgba(188, 212, 255, 0.4) 100.81%) border-box;
    border-radius: 24px;
    overflow: hidden;
}

.hero-register-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-align: center;
    color: #252B37;
    padding: 24px 24px 0;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-title br {
        display: none;
    }

    .hero-wrap {
        flex-direction: column;
        align-items: center;
        padding-top: 32px;
    }

    .hero-desc {
        justify-content: start;
        margin: 24px auto;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-desc {
        gap: 12px;
        justify-content: start;
    }

    .hero-register-title {
        font-size: 18px;
    }

    .hero-image {
        width: 100%;
        aspect-ratio: 733/509;
        height: auto;
    }
}

/* #endregion */

/* #region industry */
.industry-wrap {
    padding-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

a.industry-item {
    width: 230px;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border: 2px solid #EDEDED;
}

.industry-item-title {
    font-family: Inter SemiBold;
    color: #181D27;
    text-align: center;
}

.industry-item:hover {
    border: 2px solid transparent;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(90deg, #5576FF 0%, #759AFF 101.67%) border-box;
    box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03), 0px 8px 30px -6px rgba(116, 135, 255, 0.05);
}

@media (max-width: 767px) {
    .industry-wrap {
        padding-top: 32px;
        gap: 16px;
    }

    a.industry-item {
        width: calc(50% - 8px);
        padding: 16px;
    }
}

@media (max-width: 350px) {
    a.industry-item {
        width: 100%;
    }
}

/* #endregion */

/* #region feature */
.feature-list {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 64px;
}

.feature-row-reverse {
    flex-direction: row-reverse;
}

.feature-video {
    position: relative;
    flex-shrink: 0;
    width: 48%;
    max-width: 608px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.feature-image img {
    width: 100%;
    display: block;
}

.feature-content {
    flex: 1;
}

.feature-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

@media (max-width: 979px) {
    .feature-list {
        gap: 50px;
    }

    .feature-row {
        flex-direction: column;
        gap: 32px;
    }

    .feature-video {
        width: 100%;
    }

    .feature .default-title {
        text-align: center;
    }

    .feature-cta {
        justify-content: center;
    }

    .feature-desc {
        margin: 24px 0;
        gap: 16px;
    }
}

/* #endregion feature */

/* #region channel */
.channel-wrap {
    margin: 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

@media (max-width: 979px) {
    .channel .default-subtitle br {
        display: none;
    }
}

@media (max-width: 767px) {
    .channel-wrap {
        margin: 24px 0;
        gap: 16px;
        flex-direction: column;
    }
}

/* #endregion */

/* #region deploy */
.deploy-panel {
    display: flex;
    gap: 64px;
}

.deploy-panel .tab-panel-videos {
    min-width: 0;
    width: 100%;
    max-width: 732px;
}

.deploy-panel .tab-panel-video {
    display: none;
    position: relative;
    border-radius: 24px;
    cursor: pointer;
    overflow: hidden;
}

.deploy-panel .tab-panel-video.active {
    display: block;
    animation: deployVideoIn 0.4s ease forwards;
}

@keyframes deployVideoIn {
    from {
        /* opacity: 0; */
        transform: translateX(24px);
    }

    to {
        /* opacity: 1; */
        transform: translateX(0);
    }
}

.deploy-thumb {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.deploy-panel .tab-panel-list {
    flex: 1;
    min-width: 0;
}

.deploy-title {
    margin-bottom: 40px;
}

.deploy-panel .tab-panel-item {
    border-radius: 16px;
    border: 1px solid transparent;
    padding: 16px 20px;
    cursor: pointer;
    transition: background ease 0.3s;
}

.deploy-panel .tab-panel-item.active {
    border: 1px solid #ECE9FE;
    background: #FFF;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.deploy-panel .tab-panel-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deploy-step-icon {
    flex-shrink: 0;
}

.deploy-panel .tab-panel-title span {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #181D27;
}

.deploy-panel .tab-panel-desc {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 0 0 40px;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.deploy-panel .tab-panel-item.active .tab-panel-desc {
    max-height: 300px;
    opacity: 1;
    padding: 16px 0 0 40px;
}

@media (max-width: 1200px) {
    .tab-panel-videos {
        width: unset;
        flex: 1;
    }

    .deploy-panel {
        align-items: center;
    }
}

@media (max-width: 979px) {
    .deploy-panel {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .deploy-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .deploy-panel .tab-panel-videos {
        width: 100%;
    }

    .deploy-panel .tab-panel-title span {
        font-size: 16px;
    }

    .deploy-panel .tab-panel-desc {
        padding-left: 0;
    }

    .deploy-panel .tab-panel-item.active .tab-panel-desc {
        padding: 16px 0 0 0;
    }
}

/* #endregion */

/* #region statistic */
.statistic-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.statistic-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border-radius: 16px;
    border: 3px solid #FFF;
    background: #FFF;
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.statistic-item-desc {
    color: #535862;
    font-size: 18px;
}

@media (max-width: 979px) {
    .statistic-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .statistic-wrap {
        grid-template-columns: 1fr;
    }
}

/* #endregion */

/* #region customer */
.customer-main {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.customer-left {
    flex: 1;
    min-width: 0;
}

.customer-title {
    margin-bottom: 40px;
}

.customer-item {
    display: none;
    animation: customerFadeIn 0.35s ease forwards;
}

.customer-item.active {
    display: block;
}

@keyframes customerFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-name {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-transform: uppercase;
    padding: 16px 0 16px 20px;
    line-height: 1.4;
    border-left: 4px solid #5576FF;
}

.customer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 16px 0 16px 20px;
    border-left: 4px solid #E9EAEB;
}

.customer-stat-num {
    font-family: Inter Bold;
    font-size: 32px;
    line-height: 1.25;
    color: #181D27;
    margin-bottom: 12px;
}

.customer-stat-desc {
    color: #535862;
    font-size: 18px;
    line-height: 1.333;
}

.customer-channels {
    padding: 16px 24px;
    border-left: 4px solid #E9EAEB;
}

.customer-channels-label {
    color: #535862;
    font-size: 18px;
    line-height: 1.333;
    margin-bottom: 20px;
}

.customer-channels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 32px;
}

.customer-channel {
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Inter SemiBold;
    font-size: 16px;
    color: #181D27;
}

/* Right side */
.customer-right {
    flex: 0 0 auto;
    width: 58%;
    max-width: 732px;
}

.customer-img {
    display: none;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    animation: customerFadeIn 0.35s ease forwards;
}

.customer-img.active {
    display: block;
}

.customer-img>img {
    width: 100%;
    display: block;
    aspect-ratio: 732/488;
    object-fit: cover;
}

.customer-img-overlay {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(188, 212, 255, 0.16) 79.18%, #759AFF 104.44%);
}

.customer-img-desc {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 24px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.customer-img-name {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
}

a.customer-case-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter SemiBold;
    color: #FFF;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Logo navigation */
.customer-logos {
    padding-top: 32px;
}

.customer-logos .owl-stage {
    display: flex;
}

.customer-logos .owl-item+.owl-item .customer-logo {
    border-left: 1px solid #D7D7D7;
}

.customer-logo {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    filter: grayscale(1) opacity(0.4);
    transition: filter ease 0.3s;
}

.customer-logo.active {
    filter: none;
}

.customer-logo img {
    max-width: unset;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

@media (max-width: 1200px) {
    .customer-main {
        gap: 40px;
    }

    .customer-right {
        width: 50%;
    }
}

@media (max-width: 979px) {
    .customer-main {
        flex-direction: column;
        gap: 32px;
    }

    .customer-right {
        width: 100%;
        max-width: 100%;
    }

    .customer-title {
        margin-bottom: 28px;
    }

    .customer-stat-num {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .customer-stat-num {
        font-size: 28px;
    }

    .customer-logos {
        margin-top: 28px;
        padding-top: 20px;
    }

    .customer-logo {
        padding: 12px 16px;
    }

    .customer-img-desc {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 16px 16px;
    }

    .customer-img-name {
        font-size: 16px;
    }

    .customer-name,
    .customer-stat-desc {
        font-size: 16px;
    }

    .customer-stats {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .customer-name,
    .customer-stats,
    .customer-channels {
        padding: 8px 0 8px 16px;
    }
}

/* #endregion */

/* #region advice */
.advice-wrap {
    background: url(/sites/amis/images/pages/agentwork/bg-cta-section.webp) no-repeat center;
    background-size: cover;
    padding: 48px;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    border-radius: 24px;
}

.advice-title {
    font-family: Inter Bold;
    font-size: 32px;
    line-height: 1.67;
    max-width: 490px;
}

.advice-cta {
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .advice-title {
        max-width: 300px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .advice-wrap {
        padding: 16px 24px;
        flex-direction: column;
        background-position: -40px;
    }

    .advice-title {
        text-align: center;
        font-size: 20px;
    }
}

/* #endregion */