/* #region common */
.recruitment-page {
    position: relative;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
}

.recruitment-page .container {
    width: 100%;
    max-width: 1310px;
}

.nowrap {
    white-space: nowrap;
}

.section-p {
    padding: 96px 0;
}

.text-center {
    text-align: center;
}

.text-medium {
    font-family: Inter Medium;
}

.text-semibold {
    font-family: Inter SemiBold;
}

.text-bold {
    font-family: Inter Bold;
}

.default-title {
    font-family: Inter Bold;
    font-weight: normal;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin: 0;
}

.pb-title {
    padding-bottom: 12px;
}

.default-subtitle {
    font-size: 20px;
    color: #414651;
}

.default-desc {
    background: url(/sites/amis/images/pages/recruitment/ic-check.svg) no-repeat top left;
    background-size: 24px;
    padding-left: 32px;
    color: #535862;
    letter-spacing: -0.2px;
}

.gradient-text {
    background: linear-gradient(92.03deg, #476AFF -1.5%, #7159FF 47.85%, #D966FF 99.13%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

.play-video-item {
    cursor: pointer;
}

.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;
    letter-spacing: -0.2px;
    border-radius: 12px;
    transition: all ease 0.5s;
    box-shadow: 0px 3px 3px -1.5px rgba(10, 27, 137, 0.02), 0px 8px 8px -4px rgba(10, 27, 137, 0.01), 0px 20px 24px -4px rgba(10, 27, 137, 0.04);
}

a.primary-btn {
    background: linear-gradient(68.25deg, #1B49F5 0%, #5993FF 131.14%);
    padding: 14px 26px;
    color: #FFF;
}

a.second-btn {
    border: 2px solid transparent;
    padding: 12px 24px;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(68.25deg, #1B49F5 0%, #5993FF 131.14%) border-box;
    color: #1B49F5;
}

a.third-btn {
    background-color: #FFF;
    border: 2px solid transparent;
    padding: 12px 24px;
    color: #1B49F5;
}

a.arrow-btn img {
    transform: translateX(0px);
    transition: transform 0.3s ease;
}

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: 68px;
    height: 68px;
    border-radius: 100%;
}

.bg-play-btn {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #1B49F5;
    animation: pulse 1.2s ease infinite;
}

.recruitment-page form[lz-id='5b2882de-e86a-4a22-9963-ce16a5cc5b7f'].private-form .submit-wrapper .btn-form-submit {
    background: linear-gradient(68.25deg, #1B49F5 0%, #5993FF 131.14%);
    padding: 14px 20px !important;
    height: 52px !important;
    font-family: Inter SemiBold !important;
    font-size: 16px !important;
    border-radius: 12px !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%;
    }
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 979px) {
    .recruitment-page {
        gap: 60px;
    }

    .default-title {
        font-size: 28px;
    }

    .default-subtitle {
        font-size: 18px;
    }

    .section-p {
        padding: 40px 0;
    }

    .play-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 767px) {
    .default-title {
        font-size: 24px;
    }

    .cta-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-group:has(> :nth-child(3))> :first-child {
        width: 100%;
        justify-content: center;
        max-width: 332px;
        margin: 0 auto;
    }

    .play-btn {
        width: 36px;
        height: 36px;
    }

    .section-p {
        padding: 30px 0;
    }
}

/* #endregion */

/* #region hero */
.hero {
    background: radial-gradient(89.27% 93.08% at 50.94% 108.5%, rgba(253, 240, 246, 0.90) 0%, rgba(184, 209, 255, 0.63) 35.97%, rgba(194, 215, 255, 0.36) 61.09%, rgba(255, 255, 255, 0.00) 100%),
        radial-gradient(83.95% 47.48% at 51.77% 60.12%, #FDF0F6 0%, rgba(253, 240, 246, 0.00) 100%),
        linear-gradient(0deg, rgba(242, 246, 255, 0.40) 0%, rgba(242, 246, 255, 0.40) 100%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
    padding: 120px 0 96px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: Inter Bold;
    font-size: 52px;
    line-height: 60px;
    padding-bottom: 16px;
}

.hero-desc {
    font-size: 20px;
    color: #000;
}

.hero-cta {
    padding: 32px 0 48px;
}

.hero-wrap {
    display: flex;
    gap: 32px;
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 733px;
    aspect-ratio: 733/576;
    max-width: 100%;
}

.hero-image img {
    position: absolute;
    max-width: unset;
    left: -10%;
    width: 118%;
}

.hero-register {
    position: relative;
    z-index: 2;
    width: 100%;
    height: fit-content;
    max-width: 515px;
    border: 3px solid transparent;
    background:
        linear-gradient(#FFF, #FFF) padding-box,
        linear-gradient(43.36deg, rgba(255, 172, 112, 0.4) -0.05%, rgba(188, 212, 255, 0.4) 35.11%, rgba(89, 147, 255, 0.4) 100.81%) border-box;
    border-radius: 24px;
    overflow: hidden;
    padding: 8px 16px 16px;
}

.hero-register-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-align: center;
    color: #252B37;
    padding: 24px 24px 0;
}

@media (max-width: 1024px) {
    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        padding-bottom: 12px;
        display: block;
    }

    .hero-title br {
        display: none;
    }

    .hero-wrap {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .hero-cta {
        padding: 16px 0 24px;
    }

    .hero-register {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-register-title {
        font-size: 18px;
    }
}

/* #endregion */

/* #region statistic */
.statistic {
    padding: 96px 0 48px;
}

.business-logo-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    padding-bottom: 24px;
}

.business-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.statistic-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.statistic-item {
    border-radius: 16px;
    border: 3px solid transparent;
    padding: 20px;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.23) 100.03%) border-box;
    box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03), 0px 8px 30px -6px rgba(116, 135, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.statistic-item-desc {
    color: #535862;
    font-size: 18px;
}

@media (max-width: 979px) {
    .statistic {
        padding: 60px 0 30px;
    }

    .business-logo-wrap {
        flex-wrap: wrap;
        gap: 24px;
    }

    .business-logo-item {
        max-width: 28%;
    }

    .statistic-wrap {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .statistic-wrap {
        grid-template-columns: 1fr;
    }
}

/* #endregion */

/* #region ai agent */
.ai-agent {
    padding: 48px 0;
}

.ai-agent-bg {
    max-width: 1472px;
    margin: 0 auto;
    border-radius: 24px;
    background: linear-gradient(180deg, #DEE8FF 26.55%, #FDF0F6 100%);
}

.agent-wrap {
    display: flex;
    gap: 64px;
    justify-content: space-between;
    padding-top: 40px;
}

.agent-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
}

.agent-desc .default-desc {
    background: url(/sites/amis/images/pages/recruitment/ic-check-gradient.svg) no-repeat top left;
}

.agent-cta {
    position: relative;
    z-index: 1;
}

.agent-video {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    max-width: 732px;
    width: 59%;
    padding: 14px;
    border: 2px solid var(--Border-White, #FFFFFF);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.60);
    position: relative;
    cursor: pointer;
}

@media (max-width: 1300px) {
    .ai-agent br {
        display: none;
    }
}

@media (max-width: 979px) {
    .ai-agent {
        padding: 30px 0;
    }

    .agent-wrap {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-top: 0;
    }

    .agent-desc {
        gap: 12px;
        padding: 24px 0;
    }

    .agent-video {
        padding: 12px;
        width: 100%;
    }
}

/* #endregion */

/* #region benefit */
.benefit {
    padding: 48px 0;
}

.benefit-wrap {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    padding-top: 40px;
}

.benefit-content {
    width: 484px;
    flex: 0 0 auto;
}

.benefit-tabs {
    display: flex;
    flex-direction: column;
}

.benefit-tab {
    display: flex;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.benefit-tab:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 54px;
    bottom: 6px;
    width: 4px;
    background: #F5F5F5;
    border-radius: 9999px;
}

.benefit-tab.active:not(:last-child)::after {
    background: #2662FF;
}

.tab-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--Neutral-Gray-100, #F5F5F5);
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter SemiBold;
    font-size: 16px;
    color: #717680;
    transition: all 0.3s ease;
}

.benefit-tab.active .tab-number {
    background: #2662FF;
    border-color: transparent;
    color: #fff;
}

.tab-body {
    flex: 1;
    padding: 16px 20px 24px;
    margin-bottom: 20px;
}

.benefit-tab.active .tab-body {
    border-radius: 24px;
    border: 1px solid var(--Border-Blue, #D9E6FF);
    box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03), 0px 8px 30px -6px rgba(116, 135, 255, 0.05);
}

.tab-title {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #252B37;
}

.tab-desc {
    color: #535862;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
    opacity: 0;
    display: none;
}

.benefit-tab.active .tab-desc {
    display: block;
    max-height: unset;
    opacity: 1;
    padding-top: 8px;
}

a.tab-link {
    display: none;
    align-items: center;
    gap: 4px;
    font-family: Inter SemiBold;
    color: #2662FF;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.benefit-tab.active .tab-link {
    display: inline-flex;
    max-height: 40px;
    opacity: 1;
    margin-top: 12px;
}

.benefit-cta {

    padding-top: 32px;
    flex-wrap: wrap;
}

.benefit-images {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.benefit-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(8px);
    pointer-events: none;
}

.benefit-image.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.benefit-image img {
    width: 100%;
    border-radius: 16px;
}

@media (max-width: 979px) {
    .benefit {
        padding: 30px 0;
    }

    .benefit .default-title br {
        display: none;
    }

    .benefit-wrap {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .benefit-content {
        width: 100%;
    }

    .benefit-images {
        width: 100%;
        min-height: unset;
    }

    .benefit-image {
        position: absolute;
    }

    .benefit-image.active {
        position: relative;
    }
}

@media (max-width: 767px) {
    .benefit-wrap {
        padding-top: 24px;
        gap: 24px;
    }

    .tab-title {
        font-size: 16px;
    }

    .tab-title br {
        display: none;
    }

    .benefit-tab {
        gap: 8px;
    }

    .tab-body {
        padding: 8px 8px 12px;
    }
}

/* #endregion */

/* #region automation */
.automation {
    padding: 48px 0;
}

.auto-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 40px;
}

.auto-tabs-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.auto-tab-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #EDEDED;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    font-family: Inter SemiBold;
    font-size: 16px;
    letter-spacing: -0.2px;
    color: #181D27;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.auto-tab-pill img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.auto-tab-pill.active {
    border: 2px solid #2662FF;
    box-shadow: 0px 8px 30px 0px rgba(116, 135, 255, 0.05), 0px 8px 30px 0px rgba(10, 27, 137, 0.03);
}

.auto-panels {
    position: relative;
}

.auto-panel {
    display: none;
    gap: 64px;
    align-items: center;
}

.auto-panel.active {
    display: flex;
}

.auto-panel-content {
    width: 608px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.auto-panel-content h3 {
    font-family: Inter Bold;
    font-size: 24px;
    letter-spacing: -0.2px;
    color: #181D27;
    margin: 0;
    line-height: 1.3;
}

.auto-panel-content .auto-desc {
    color: #535862;
    margin: 0;
    line-height: 1.5;
    padding-top: 12px;
}

.auto-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0 32px;
}

.auto-panel-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    background: #E8EFFF;
}

.auto-panel-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

@media (max-width: 979px) {
    .automation {
        padding: 30px 0;
    }

    .automation .default-title br {
        display: none;
    }

    .auto-tab-pill {
        font-size: 14px;
        padding: 12px;
        gap: 8px;
    }

    .auto-tab-pill img {
        width: 24px;
        height: 24px;
    }

    .auto-panel.active {
        flex-direction: column;
        gap: 24px;
    }

    .auto-panel-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .auto-tabs-nav {
        padding-top: 24px;
        padding-bottom: 24px;
        gap: 12px;
    }

    .auto-tabs-row {
        gap: 12px;
    }

    .auto-tab-pill {
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .auto-panel-content h3 {
        font-size: 20px;
    }

    .auto-checklist {
        padding: 24px 0;
        gap: 12px;
    }

}

/* #endregion */

.bg-group {
    margin: 48px 0;
    background: radial-gradient(50.81% 22.61% at 50% 99.97%, rgba(253, 240, 246, 0.9) 0%, rgba(184, 209, 255, 0.18) 57.38%, rgba(194, 215, 255, 0.09) 76.87%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(228, 236, 255, 0) 0%, rgba(228, 236, 255, 0.2) 100%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
    display: flex;
    flex-direction: column;
    gap: 96px;
    padding-bottom: 96px;
}

@media (max-width: 979px) {
    .bg-group {
        margin: 30px 0;
        gap: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .bg-group {
        padding-bottom: 40px;
    }
}

/* #endregion */

/* #region report */
.report-bg {
    background: linear-gradient(180deg, #DEE8FF 26.55%, #FDF0F6 100%);
    max-width: 1538px;
    margin: 0 auto;
    border-radius: 24px;
}

.report-wrap {
    display: flex;
    gap: 64px;
}

.report-images {
    flex: 1;
    position: relative;
    min-height: 360px;
}

.report-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.report-image.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.report-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.report-content {
    width: 484px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.report-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-tab {
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
}

.report-tab.active {
    background: #fff;
    border-color: #ECE9FE;
    box-shadow: 0px 8px 30px 0px rgba(116, 135, 255, 0.05), 0px 8px 30px 0px rgba(10, 27, 137, 0.03);
}

.report-tab-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-tab-header img {
    flex-shrink: 0;
}

.report-tab-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #181D27;
    line-height: 1.4;
    letter-spacing: 0;
}

.report-tab-body {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.report-tab.active .report-tab-body {
    max-height: 300px;
    opacity: 1;
    padding: 16px 20px 0;
}

@media (max-width: 979px) {
    .report .default-title {
        text-align: center;
    }

    .report-wrap {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .report-content {
        width: 100%;
    }

    .report-images {
        width: 100%;
        min-height: unset;
    }

    .report-image {
        position: absolute;
    }

    .report-image.active {
        position: relative;
    }
}

@media (max-width: 767px) {
    .report-tab-title {
        font-size: 17px;
    }

    .report-tab {
        padding: 12px;
    }
}

/* #endregion */

/* #region feature */
.feature-wrap {
    display: flex;
    gap: 64px;
    align-items: center;
}

.feature-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.feature-content {
    width: 500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 979px) {
    .feature .default-title {
        text-align: center;
    }

    .feature-wrap {
        flex-direction: column;
    }

    .feature-content {
        width: 100%;
    }
}

/* #endregion */

/* #region ecosystem */
.ecosystem {
    padding: 48px 0;
}

.eco-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.eco-content {
    position: relative;
    z-index: 3;
}

.eco-subtitle {
    font-family: Inter SemiBold;
    font-size: 20px;
    color: #2662FF;
}

.eco-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
}

.eco-desc .default-desc {
    color: #000;
}

.eco-image {
    position: relative;
    flex-shrink: 0;
    max-width: 678px;
    aspect-ratio: 678/464;
    width: 53%;
}

.eco-image-main {
    position: relative;
    z-index: 2;
}

.eco-image-bg {
    position: absolute;
    z-index: 1;
    left: -16%;
    top: -16%;
    max-width: unset;
    width: 142%;
}

@media (max-width: 979px) {
    .ecosystem {
        padding: 30px 0;
    }

    .eco-wrap {
        flex-direction: column;
        gap: 24px;
    }

    .eco-image {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .eco-subtitle {
        font-size: 18px;
    }

    .eco-desc {
        padding: 24px 0;
        gap: 12px;
    }
}

/* #endregion */

/* #region testimonial */
.testimonial  {
    position: relative;
    z-index: 3;
    display: none;
}

.testimonial-wrap {
    padding-top: 40px;
}

/* Center (2nd) owl item is featured */
.testimonial-wrap.owl-carousel .owl-stage {
    display: flex;
}

.testimonial-item {
    background: #FFF;
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: box-shadow 0.3s ease;
    margin: 12px 12px 20px;
    min-height: 526px;
}

.testimonial-item-featured {
    box-shadow: 0 8px 30px -6px rgba(116, 135, 255, 0.05), 0 8px 30px -4px rgba(10, 27, 137, 0.03);
}

.testimonial-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.testimonial-avatar>img:first-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.testimonial-item img.testimonial-quote {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
}

.testimonial-name {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #181D27;
    padding-bottom: 4px;
}

.testimonial-position {
    color: #535862;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.testimonial-content {
    font-size: 18px;
}

/* Owl carousel overrides for testimonial */
.testimonial-wrap.owl-theme .owl-dots {
    margin-top: 32px;
}

.testimonial-wrap.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #E9EAEB;
}

.testimonial-wrap.owl-theme .owl-dots .owl-dot.active span,
.testimonial-wrap.owl-theme .owl-dots .owl-dot:hover span {
    background: #5993FF;
}

.testimonial-wrap.owl-theme .owl-nav {
    margin: 0;
}

.testimonial-wrap.owl-theme .owl-nav [class*='owl-'] {
    display: none;
}

.testimonial-wrap:hover .owl-nav [class*='owl-'] {
    display: block;
}

.testimonial-wrap.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: transparent;
}

.testimonial-wrap.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    right: -48px;
    transform: translateY(-50%);
}

.testimonial-wrap.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    left: -48px;
    transform: translateY(-50%);
}

@media (max-width: 979px) {
    .testimonial-wrap {
        padding-top: 32px;
    }
}

@media (max-width: 767px) {
    .testimonial-wrap {
        padding-top: 24px;
    }

    .testimonial-item {
        padding: 16px 12px;
        min-height: 440px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-content {
        font-size: 14px;
    }
}

/* #endregion */

/* #region certificate */
.certificate {
    background-color: #EEF4FF;
    margin: 48px 0;
}

.cert-wrap {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    flex: 1;
    background-color: #FFF;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 24px 50px -8px rgba(10, 27, 137, 0.03), 0 4px 8.7px 4px rgba(10, 27, 137, 0.02);
}

.cert-item img {
    max-height: 100%;
}

@media (max-width: 979px) {
    .certificate {
        margin: 30px 0;
    }

    .cert-wrap {
        padding-top: 28px;
        gap: 24px;
    }

    .cert-item {
        flex: unset;
        width: calc(33.33% - 24px);
    }
}

@media (max-width: 767px) {
    .cert-wrap {
        padding-top: 24px;
        gap: 16px;
    }

    .cert-item {
        width: calc(50% - 16px);
    }
}

/* #endregion */

/* #region Prize */
.prize {
    padding: 48px 0;
}

.prize-wrap {
    padding: 40px 60px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.prize-item {
    max-width: 268px;
    margin: 0 auto;
}

.prize-cup {
    aspect-ratio: 267/245;
    max-width: 267px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.prize-item:hover .prize-cup {
    background: url(/sites/amis/images/pages/recruitment/bg-circle.png) no-repeat center;
    background-size: cover;
}

.prize-title {
    font-family: Inter Medium;
    font-size: 18px;
    text-align: center;
}

.prize-wrap.owl-carousel .owl-item img {
    object-fit: contain;
    width: auto;
}

.prize-wrap.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #E9EAEB;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #5993FF;
}

.prize-wrap.owl-theme .owl-nav {
    margin: 0;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-'] {
    display: none;
    margin: 0;
}

.prize-wrap:hover .owl-nav [class*='owl-'] {
    display: block;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: transparent;
}

.prize-wrap.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
}

.prize-wrap.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

@media (max-width: 979px) {
    .prize {
        padding: 30px 0;
    }

    .prize .default-subtitle br,
    .prize-title br {
        display: none;
    }

    .prize-wrap {
        padding: 32px 0 0;
    }
}

@media (max-width: 767px) {
    .prize-wrap {
        padding: 24px 0 0;
    }
}

/* #endregion */

/* #region Customer */
.customer {
    padding: 48px 0;
}

.customer-wrap {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.customer-item {
    width: 296px;
    box-shadow: 0 2px 20px -6px rgba(116, 135, 255, 0.12), 0 12px 46px -4px rgba(10, 27, 137, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.customer-item-head {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #2662FF;
    text-align: center;
}

.customer-item-content {
    padding: 16px 16px 36px;
}

@media (max-width: 979px) {
    .customer {
        padding: 30px 0;
    }

    .customer-wrap {
        padding-top: 30px;
        gap: 16px;
    }

    .customer .default-subtitle br {
        display: none;
    }
}

@media (max-width: 767px) {
    .customer-wrap {
        padding-top: 24px;
    }

    .customer-item-head {
        font-size: 16px;
    }
}

/* #endregion */

/* #region register */
.register-page {
    margin-top: 48px;
    background: url(/sites/amis/images/pages/recruitment/bg-register.webp) no-repeat center;
    background-size: cover;
}

.register-page .default-title {
    color: #FFF;
}

.register-page-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.register-page-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.register-page-desc .default-desc {
    color: #FFF;
    background: url(/sites/amis/images/pages/recruitment/ic-check-white.svg) no-repeat top left;
}

.register-page-form {
    padding: 8px;
    width: 100%;
    max-width: 515px;
    border-radius: 16px;
    background: #FFF;
    overflow: hidden;
    box-shadow: 0 20px 24px -4px rgba(10, 27, 137, 0.04), 0 8px 8px -4px rgba(10, 27, 137, 0.01), 0 3px 3px -1.5px rgba(10, 27, 137, 0.02);
}

.register-page-form-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-align: center;
    padding: 24px 24px 4px;
    color: #000;
}

.register-page-form-subtitle {
    color: #000;
    text-align: center;
}

.register-page-agent {
    position: absolute;
    left: 40%;
    bottom: -96px;
    width: 234px;
}

.register-page-extend {
    border-radius: 12px;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}

.register-page-extend::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;

    background: linear-gradient(76.63deg, #8EB9FF 1.78%, #D9E6FF 100%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.rp-extend-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #FFF;
}

@media (max-width: 1100px) {
    .register-page-agent {
        display: none;
    }

    .register-page-wrap {
        gap: 24px;
    }
}

@media (max-width: 979px) {
    .register-page {
        margin-top: 30px;
    }

    .register-page-wrap {
        flex-direction: column;
    }

    .register-page-desc {
        gap: 12px;
    }

    .register-page-desc br {
        display: none;
    }

    .register-page .default-title br {
        display: none;
    }

    .register-page-form {
        padding: 0;
    }
}

/* #endregion */