/* #region common */
.home-page {
    position: relative;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.home-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: #535862;
}

.default-desc {
    background: url(/sites/sme/images/pages/home-page/ic-check.svg) no-repeat top left;
    background-size: 24px;
    padding-left: 32px;
    color: #535862;
    letter-spacing: -0.2px;
}

.gradient-text {
    background: linear-gradient(68.25deg, #1B49F5 0%, #5993FF 131.14%);
    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, .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);
    cursor: pointer;
}

a.primary-btn, .primary-btn {
    background: linear-gradient(68.25deg, #1B49F5 0%, #5993FF 131.14%);
    padding: 14px 26px;
    color: #FFF;
}

a.second-btn, .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, .third-btn {
    background-color: #FFF;
    border: 2px solid transparent;
    padding: 12px 24px;
    color: #1B49F5;
}

a.arrow-btn img, .arrow-btn img {
    transform: translateX(0px);
    transition: transform 0.3s ease;
}

a.arrow-btn:hover img, .arrow-btn:hover img {
    transform: translateX(4px);
}

a.shadow-btn, .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;
}

.home-page form[lz-id='a4fa6fb7-417c-4868-93d5-27dfb08f8575'].private-form .submit-wrapper .btn-form-submit,
.home-page form[lz-id='8a239a18-c78a-4076-8606-6c59a246057b'].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) {
    .home-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-section {
    background: url(/sites/sme/images/pages/home-page/bg-hero.webp) no-repeat center;
    background-size: cover;
    padding: 64px 0 96px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: Inter Bold;
    font-size: 52px;
    line-height: 60px;
    margin: 0;
}

.hero-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
    padding: 32px 0;
    max-width: 990px;
    margin: 0 auto;
}

.hero-wrap {
    display: flex;
    gap: 32px;
    padding-top: 64px;
}

.hero-image {
    position: relative;
    width: 733px;
    aspect-ratio: 733/542;
    max-width: 100%;
}

.hero-image img {
    position: absolute;
    max-width: 1178px;
    width: 161%;
    left: -32%;
}

.hero-register {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 515px;
    height: fit-content;
    border: 3px solid transparent;
    background:
        linear-gradient(#FFF, #FFF) padding-box,
        linear-gradient(43.36deg, rgba(39, 87, 247, 0.2) -0.05%, rgba(38, 98, 255, 0.4) 65.64%, rgba(105, 39, 218, 0.4) 100.81%) border-box;
    border-radius: 24px;
    overflow: hidden;
    padding: 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-title {
        font-size: 36px;
        line-height: 1.2;
    }
}

@media (max-width: 979px) {
    .hero-section {
        padding: 32px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        padding: 20px 0 32px;
        gap: 12px;
    }

    .hero-wrap {
        flex-direction: column;
        align-items: center;
        padding-top: 32px;
    }
}

@media (max-width: 767px) {
    .hero-desc {
        grid-template-columns: 1fr;
    }

    .hero-register {
        padding: 0;
    }
}

/* #endregion */

/* #region advantage */
.advantage-bg {
    background: url(/sites/sme/images/pages/home-page/bg-advantage.webp) no-repeat center;
    background-size: cover;
    max-width: 1472px;
    margin: 0 auto;
    border-radius: 24px;
}

.advantage .default-subtitle {
    max-width: 1152px;
    margin: 0 auto;
}

.advantage-cta {
    padding-top: 40px;
}

.advantage-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 40px 0;
}

.advantage-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 24px 20px;
}

.advantage-item-icon {
    flex-shrink: 0;
}

.advantage-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.advantage-item-title {
    font-family: Inter SemiBold;
    font-size: 18px;
    letter-spacing: -0.2px;
    line-height: 24px;
    margin: 0;
    color: #181D27 !important;
}

.advantage-item-desc {
    font-size: 16px;
    color: #535862;
    letter-spacing: -0.2px;
    line-height: 24px;
}

.advantage-video {
    position: relative;
    border: 3.555px solid #FFF;
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    padding: 16px 16px 0;
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.advantage-video-thumb {
    width: 100%;
    display: block;
}

@media (max-width: 979px) {
    .advantage-bg {
        border-radius: 16px;
    }

    .advantage-wrap {
        gap: 16px;
        padding: 32px 0;
    }

    .advantage-item-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .advantage-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0 32px;
    }

    .advantage-cta {
        padding-top: 24px;
    }

    .advantage-video {
        padding: 12px;
    }
}

/* #endregion */

/* #region circular */
.circular-wrap {
    display: flex;
    gap: 64px;
    align-items: center;
}

.circular-visual {
    flex: 0 0 48%;
    border-radius: 24px;
    overflow: hidden;
    max-width: 609px;
}

.circular-img {
    width: 100%;
    display: block;
}

.circular-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.circular-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.circular-subtitle {
    font-size: 20px;
    color: #535862;
    line-height: 28px;
}

.circular-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 979px) {
    .circular-wrap {
        flex-direction: column;
        gap: 24px;
    }

    .circular-visual {
        width: 100%;
    }

    .circular-title-prefix {
        display: none;
    }

    .circular-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .circular-subtitle {
        font-size: 18px;
    }

    .circular-content {
        gap: 20px;
    }

    .circular-list {
        gap: 12px;
    }
}

/* #endregion */

/* #region feature */
.feature {
    background: url(/sites/sme/images/pages/home-page/bg-feature.webp) no-repeat center;
}

.feature-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-cta {
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    background: #FFF;
    border: 1px solid #D9E6FF;
    border-radius: 24px;
    padding: 24px 23px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    line-height: 28px;
    color: #101828;
    letter-spacing: -0.5px;
}

.feature-item-desc {
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    letter-spacing: -0.2px;
}

@media (max-width: 979px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-item-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* #endregion */

/* #region ecosystem */
.ecosystem-bg {
    background: url(/sites/sme/images/pages/home-page/bg-ecosystem.webp) no-repeat center;
    background-size: cover;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1472px;
    margin: 0 auto;
}

.ecosystem-wrap {
    display: flex;
    align-items: center;
    gap: 64px;
}

.ecosystem-cta {
    padding-top: 32px;
}

.ecosystem-image {
    position: relative;
    width: 60%;
    max-width: 608px;
    aspect-ratio: 608/442;
}

.ecosystem-image img {
    position: absolute;
    max-width: 709px;
    width: 117%;
    left: -14%;
    top: -4%;
}

@media (max-width: 1100px) {
    .ecosystem-wrap {
        gap: 32px;
    }
}

@media (max-width: 979px) {
    .ecosystem-wrap {
        flex-direction: column;
        text-align: center;
    }

    .ecosystem-image {
        margin-top: 32px;
        width: 100%;
    }

    .ecosystem-cta {
        justify-content: center;
    }
}

/* #endregion */

/* #region pricing */
.pricing {
    background: url(/sites/sme/images/pages/home-page/bg-feature.webp) no-repeat center 140px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-tabs {
    display: flex;
    background: #F5F5F5;
    border-radius: 9999px;
    padding: 8px;
}

.pricing-tab {
    font-family: Inter SemiBold;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: #181D27;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
    line-height: 24px;
}

.pricing-tab.active {
    background: #FFF;
    color: #1B49F5;
    box-shadow: 0px 6px 20px 3px rgba(116, 135, 255, 0.03), 0px 3px 6px -6px rgba(10, 27, 137, 0.03);
}

a.pricing-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Inter SemiBold;
    font-size: 16px;
    color: #535862;
    text-decoration: none;
    letter-spacing: -0.2px;
}

.pricing-link:first-child {
    visibility: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    border-radius: 24px;
    box-shadow: 0px 6px 20px 0px rgba(116, 135, 255, 0.03), 0px 3px 6px 0px rgba(10, 27, 137, 0.03);
}

.pricing-card-content {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #D9E6FF;
    height: 100%;
}

.pricing-card--featured .pricing-card-content {
    border-color: #1B49F5;
}

.pricing-card-tag {
    position: absolute;
    top: -4px;
    right: -5px;
    width: 108px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.pricing-card-tag img {
    width: 100%;
    height: 100%;
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.8);
}

.pricing-card-header--blue {
    background: #2662FF;
}

.pricing-card-icon-box {
    background: #EEF4FF;
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.pricing-card-name {
    font-family: Inter SemiBold;
    font-size: 20px;
    line-height: 28px;
    color: #252B37;
}

/* #region pricing-popup */
.pricing-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.pricing-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.pricing-popup-modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #FFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 24px 48px rgba(10, 27, 137, 0.16);
}

.pricing-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pricing-popup-close:hover {
    background: #FFF;
}

.pricing-popup-graphic {
    height: 180px;
    background: #EEF4FF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-popup-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-popup-content {
    padding: 24px 32px 0;
}

.pricing-popup-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    line-height: 28px;
    color: #181D27;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pricing-popup-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-popup-carousel .owl-dots {
    text-align: center;
    padding-bottom: 24px;
    margin-top: 20px;
}

.pricing-popup-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E9EAEB;
    display: inline-block;
    margin: 0 4px;
    transition: background 0.2s;
}

.pricing-popup-carousel .owl-dot.active span {
    background: #5993FF;
}

/* #endregion */

.pricing-card-header--blue .pricing-card-name,
.pricing-card-header--blue .pricing-card-desc,
.pricing-card-header--blue .pricing-card-price,
.pricing-card-header--blue .pricing-card-subtext {
    color: #FFF;
}

.pricing-card-desc {
    font-size: 16px;
    color: #535862;
    text-align: center;
    line-height: 24px;
    letter-spacing: -0.2px;
}

.pricing-card-price {
    font-family: Inter Bold;
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
    color: #252B37;
    letter-spacing: -0.2px;
}

.pricing-card-subtext {
    font-family: Inter Italic;
    font-size: 16px;
    color: #535862;
    text-align: center;
    line-height: 24px;
    letter-spacing: -0.2px;
}

.pricing-card-subtext span {
    font-family: Inter SemiBoldItalic;
}

a.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 12px 24px;
    border: 2px solid #1B49F5;
    border-radius: 12px;
    background: #FFF;
    color: #1B49F5;
    font-family: Inter SemiBold;
    font-size: 16px;
    letter-spacing: -0.2px;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.pricing-btn img {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.pricing-btn:hover img {
    transform: translateX(4px);
}

.pricing-btn--white {
    border-color: rgba(255, 255, 255, 0.6);
}

.pricing-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 24px 32px;
    background: rgba(255, 255, 255, 0.8);
}

.tag-new {
    display: inline-block;
    background: #D3F8DF;
    color: #099250;
    font-family: Inter Medium;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.2px;
    padding: 2px 12px;
    border-radius: 9999px;
    vertical-align: middle;
    margin-left: 4px;
}

@media (max-width: 979px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-controls {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-link:first-child {
        display: none;
    }
}

@media (max-width: 767px) {
    .pricing-card-price {
        font-size: 28px;
    }

    .pricing-popup-content {
        padding: 16px;
    }

    .pricing-popup-title {
        font-size: 18px;
    }

    .pricing-popup-carousel .owl-dots {
        margin-top: 12px;
        padding-bottom: 16px;
    }
}

/* #endregion */

/* #region online-version */
.online-version-bg {
    background: url(/sites/sme/images/pages/home-page/bg-online-version.webp) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.online-version-wrap {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-top: 40px;
}

.online-version-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.online-version-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.online-version-list .default-desc {
    padding-left: 32px;
    background: url(/sites/sme/images/pages/home-page/ic-check.svg) no-repeat left top 4px;
    background-size: 20px 20px;
}

.online-version-image {
    position: relative;
    width: 55%;
    aspect-ratio: 702/458;
    max-width: 702px;
}

.online-version-image img {
    position: absolute;
    max-width: 985px;
    width: 141%;
    top: -29%;
    left: -37%;
}

.online-version-cta {
    margin-top: 8px;
}

@media (max-width: 979px) {
    .online-version-wrap {
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
    }

    .online-version-image {
        width: 100%;
        max-width: 100%;
    }

    .online-version-content {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .online-version-content {
        gap: 20px;
    }

    .online-version-list {
        gap: 12px;
    }
}

/* #endregion */

/* #region testimonial */
.testimonial .default-title {
    margin-bottom: 40px;
}

.testimonial-wrap {
    padding: 0 4px;
}

/* 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;
    letter-spacing: -0.2px;
}

/* 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: #1451E1;
}

.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 .default-title {
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .testimonial .default-title {
        margin-bottom: 20px;
    }

    .testimonial-item {
        padding: 24px 12px;
        min-height: 440px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-content {
        font-size: 14px;
    }
}

/* #endregion */

/* #region Prize */
.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/sme/images/pages/home-page/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 {
    margin-top: 40px;
}

.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: #1B49F5;
}

.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 .default-subtitle br,
    .prize-title br {
        display: none;
    }

    .prize-wrap {
        padding: 32px 0 0;
    }
}

@media (max-width: 767px) {
    .prize-wrap {
        padding: 24px 0 0;
    }

    .prize-wrap.owl-theme .owl-dots {
        margin-top: 24px;
    }
}

/* #endregion */

/* #region register */
.register-page {
    background: url(/sites/sme/images/pages/home-page/bg-register.webp) no-repeat center;
    background-size: cover;
}

.register-page-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.register-page .default-title,
.register-page .default-subtitle {
    color: #FFF;
}

.register-page-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
    margin-top: 40px;
}

.rp-desc-item-text {
    color: #FFF;
    letter-spacing: -0.2px;
    padding-top: 12px;
    max-width: 245px;
}

.register-page-form {
    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 0;
}

.register-page-agent {
    position: absolute;
    left: 44%;
    bottom: -96px;
}

@media (max-width: 1100px) {
    .register-page-agent {
        display: none;
    }

    .register-page-wrap {
        gap: 24px;
    }
}

@media (max-width: 979px) {
    .register-page br {
        display: none;
    }

    .register-page {
        padding: 48px 0;
    }

    .register-page-wrap {
        flex-direction: column;
    }

    .register-page-desc {
        gap: 16px;
        font-size: 14px;
    }

    .rp-desc-item-text br {
        display: none;
    }
}

/* #endregion */

/*#region Question */
.question-wrap {
    margin-top: 40px;
}

.question .panel-group .panel {
    border-radius: 16px;
    border-color: #E9EAEB;
}

.question .panel-group .panel:not(:first-child) {
    margin-top: 20px;
}

.question .panel-default>.panel-heading {
    padding: 24px 64px 12px 24px;
    background-color: #fff;
    border-radius: 24px;
    cursor: pointer;
    background: url(/sites/sme/images/pages/home-page/ic-minus.svg) no-repeat right 24px top 24px;
    background-size: 24px;
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #1B49F5;
}

.question .panel-default>.panel-heading h2 {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    color: #1B49F5;
}

.question .panel-default>.panel-heading.collapsed {
    padding-bottom: 24px;
    background: url(/sites/sme/images/pages/home-page/ic-plus.svg) no-repeat right 24px top 24px;
    background-size: 24px;
    color: #181D27;
}

.question .panel-default>.panel-heading.collapsed h2 {
    color: #181D27;
}

.answer-text {
    padding: 0 64px 24px 24px;
    color: #414651;
    letter-spacing: -0.2px;
}

.answer-text p {
    display: block;
}

h3.heading-mau {
    color: #000;
    font-size: 16px;
    font-family: Inter Bold, Arial, sans-serif;
}

h4.heading-mau {
    color: #0924f0;
}

@media (max-width: 979px) {
    .question-wrap {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .question-wrap {
        margin-top: 24px;
    }

    .question .panel-group .panel:not(:first-child) {
        margin-top: 16px;
    }

    .question .panel-default>.panel-heading {
        font-size: 14px;
        padding: 16px 24px 8px 16px;
        background-position: top 16px right 0;
    }

    .question .panel-default>.panel-heading h2 {
        font-size: 16px;
    }

    .question .panel-default>.panel-heading.collapsed {
        background-position: top 16px right 0;
        padding-bottom: 16px;
    }

    .answer-text {
        font-size: 14px;
        padding: 0 24px 16px 16px;
    }
}

/*#endregion */