/*#region common */
.vcb-page {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #0F172A;
}

.nowrap {
    white-space: nowrap;
}

.text-bold {
    font-family: Inter Bold, Arial, sans-serif;
}

.text-semibold {
    font-family: Inter Semibold, Arial, sans-serif;
}

.section-padding {
    padding: 80px 0;
}

.btn-base {
    display: inline-block;
    border-radius: 8px;
    padding: 14px 36px;
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 18px;
    text-align: center;
}

.cta-btn {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.default-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 32px;
    line-height: 1.25;
    text-align: center;
    color: #074C31;
}
@media (min-width: 1100px) {
.vcb-page .container {
    width: 1310px;
}

}


@media (max-width: 979px) {
    .section-padding {
        padding: 40px 0;
    }

    .default-title {
        font-size: 24px;
    }

    .cta-btn {
        justify-items: center;
    }
}

/*#endregion */

/*#region banner */
.banner {
    background: url('/eSign/images/pages/scb-hkd/bg-banner.webp') no-repeat center center;
    background-size: cover;
    padding: 48px 0 56px;
    min-height: 644px;
}

.banner-text {
    margin: 30px 0 80px 0;
    width: 43%;
}

.banner-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    width: fit-content;
}

.btn-register,
.btn-consult {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter Bold', Arial, sans-serif;
    font-size: 18px;
    text-align: center;
}

.btn-register {
    background: #155FA7;
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.10), 0 0 4px rgba(0, 0, 0, 0.10);
    color: #FFD17B !important;
    opacity: 1 !important;
    width: fit-content;
    padding: 14px 36px;
}

.btn-consult {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 0 4px rgba(0, 0, 0, 0.10);
    color: #035FA7 !important;
    font-family: 'Inter SemiBold', Arial, sans-serif;
    opacity: 1 !important;
    width: fit-content;
    padding: 14px 36px;
}

@media (max-width: 979px) {
    .banner-text{
        width:100%;
    }
    .banner {
        background-position: 10% center;
    }

    .banner-logo img,
    .banner-text img {
        max-width: 100%;
        height: auto;
        width: 100%;
    }

    .banner-btn {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .btn-register,
    .btn-consult {
        width: 100%;
    }
}

/*#endregion */

/*#region core-values */
.core-values-section {
    background: #ffffff;
    padding: 96px 0;
}
@media (min-width: 1100px) {
    .core-values-section .container {
        width: 1450px;
    }
}
.core-values-header {
    display: grid;
    gap: 16px;
    margin-bottom: 64px;
}

.core-values-label {
    color: #5E220A;
    font-size: 20px;
    font-family: 'Inter SemiBold', Arial, sans-serif;
    text-transform: uppercase;
    line-height: 20px;
}

.core-values-title {
    color: #155FA7;
    font-size: 48px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 60px;
}

.core-values-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #F3F4F6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10), 0 0 2px rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    outline: 1px solid #E9EAEB;
    overflow: hidden;
}

.core-values-card {
    background: #ffffff;
    border-right: 1px solid #E9EAEB;
    padding: 48px 32px;
    display: grid;
    gap: 32px;
    align-content: start;
}

.core-values-card:last-child {
    border-right: none;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: #E5F2FF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-title {
    color: #111827;
    font-size: 20px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 32px;
}

.card-desc {
    color: #000000;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 28px;
}

.card-body {
    display: grid;
    gap: 16px;
}

.core-values-cta {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 20px;
    margin-top: 64px;
    justify-content: center;
}

@media (max-width: 979px) {
    .core-values-section {
        padding: 48px 0;
    }

    .core-values-title {
        font-size: 28px;
        line-height: 38px;
    }

    .core-values-header {
        margin-bottom: 32px;
    }

    .core-values-cards {
        grid-template-columns: 1fr 1fr;
    }

    .core-values-card:nth-child(1),
    .core-values-card:nth-child(2) {
        border-bottom: 1px solid #E9EAEB;
    }

    .core-values-card:nth-child(2) {
        border-right: none;
    }

    .core-values-cta {
        margin-top: 32px;
        grid-template-columns: 1fr 1fr;
    }

    .core-values-cta .btn-register,
    .core-values-cta .btn-consult {
        width: 100%;
    }
}

/*#endregion */

/*#region loan-package */
.loan-package-section {
    background: #ffffff;
    padding: 96px 0;
}
@media (min-width: 1100px) {
.loan-package-section .container {
    width: 1450px;
}
}

.loan-package-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.loan-package-image {
    position: relative;
}

.loan-package-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 82, 156, 0.10);
    display: block;
}

.loan-package-badge {
    position: absolute;
    bottom: -28px;
    right: -48px;
    max-width: 384px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 0 4px rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    outline: 1px solid #F3F4F6;
    padding: 36px 48px;
    display: grid;
    gap: 24px;
}

.badge-header {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 8px;
}

.badge-title {
    color: #155FA7;
    font-size: 24px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 32px;
}

.badge-desc {
    color: #6B7280;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 26px;
}

.loan-package-content {
    display: grid;
    gap: 64px;
    padding-top: 70px;
}

.loan-package-header {
    display: grid;
    gap: 16px;
}

.loan-package-label {
    color: #5E220A;
    font-size: 20px;
    font-family: 'Inter SemiBold', Arial, sans-serif;
    text-transform: uppercase;
    line-height: 20px;
}

.loan-package-title {
    color: #155FA7;
    font-size: 32px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 40px;
}

.loan-package-items {
    display: grid;
    gap: 40px;
}

.loan-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    align-items: start;
}

.loan-item-num {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    outline: 1px solid #E5E7EB;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5E220A;
    font-size: 20px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 32px;
    flex-shrink: 0;
}

.loan-item-body {
    display: grid;
    gap: 8px;
}

.loan-item-title {
    color: #111827;
    font-size: 24px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 32px;
}

.loan-item-desc {
    color: #101828;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 28px;
}

.text-highlight {
    color: #155FA7;
    font-family: 'Inter SemiBold', Arial, sans-serif;
}

.loan-highlight-card {
    background: #155FA7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 0 4px rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    align-items: center;
    gap: 32px;
    overflow: hidden;
}

.loan-highlight-item {
    display: grid;
    gap: 8px;
}

.loan-highlight-item--right {
    justify-items: end;
    text-align: right;
}

.loan-highlight-label {
    color: #BFDBFE;
    font-size: 12px;
    font-family: 'Inter Bold', Arial, sans-serif;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 1.2px;
}

.loan-highlight-value {
    color: #F4B742;
    font-size: 36px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 40px;
}

.loan-highlight-divider {
    width: 1px;
    height: 48px;
    background: #1D4ED8;
}

@media (max-width: 979px) {
    .loan-package-section {
        padding: 48px 0;
    }

    .loan-package-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .loan-package-badge {
        position: static;
        max-width: 100%;
        padding: 24px;
        margin-top: 16px;
    }

    .loan-package-content {
        padding-top: 0;
        gap: 40px;
    }

    .loan-package-title {
        font-size: 24px;
        line-height: 32px;
    }

    .loan-highlight-card {
        padding: 24px;
        gap: 16px;
    }

    .loan-highlight-value {
        font-size: 28px;
        line-height: 36px;
    }
}

/*#endregion */

/*#region use-cases */
.use-cases-section {
    background: #ffffff;
    padding: 96px 0;
}
@media (min-width: 1100px) {
.use-cases-section .container {
    width: 1450px;
}
}
.use-cases-header {
    display: grid;
    gap: 16px;
    text-align: center;
    margin-bottom: 64px;
}

.use-cases-label {
    color: #5E220A;
    font-size: 20px;
    font-family: 'Inter SemiBold', Arial, sans-serif;
    text-transform: uppercase;
    line-height: 20px;
}

.use-cases-title {
    color: #00529C;
    font-size: 32px;
    font-family: 'Inter Bold', Arial, sans-serif;
    line-height: 40px;
}

.use-cases-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.use-cases-card {
    position: relative;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.use-cases-img,
.use-cases-img-ac {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

.use-cases-img-ac {
    opacity: 0;
}

.use-cases-card:hover .use-cases-img-ac {
    opacity: 1;
}

.use-cases-cta {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 20px;
    margin-top: 64px;
    justify-content: center;
}

@media (max-width: 979px) {
    .use-cases-section {
        padding: 48px 0;
    }

    .use-cases-header {
        margin-bottom: 32px;
    }

    .use-cases-label {
        font-size: 16px;
    }

    .use-cases-title {
        font-size: 24px;
        line-height: 32px;
    }

    .use-cases-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .use-cases-card {
        height: 360px;
    }

    .use-cases-cta {
        margin-top: 32px;
        grid-template-columns: 1fr 1fr;
    }

    .use-cases-cta .btn-register,
    .use-cases-cta .btn-consult {
        width: 100%;
    }
}

/*#endregion */

/*#region loan-process */
.loan-process-section {
    background-color: #F8FAFC;
}

.loan-process-section .default-title {
    color: #181D27;
}

.loan-process-section .cta-btn {
    margin-top: 60px;
}

.process-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

.video-container {
    border-radius: 24px;
    background: #FFF;
    padding: 100px 40px;
    position: relative;
    height: 626px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.10), 0px 0px 4px rgba(0, 0, 0, 0.10);
}

.process-steps {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
}

.step-indicators {
    display: grid;
    justify-items: center;
    padding: 0 20px;
    height: fit-content;
}

.step-indicator {
    background-color: unset;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 6px 0;
    cursor: pointer;
}

.step-indicator.active {
    opacity: 1;
    border: 1px solid #155FA7;
    padding: 6px;
    margin: 10px 0;
    color: #0F172A;
}

.step-indicator .step-number {
    width: 48px;
    height: 48px;
    background-color: #FAE4E6;
    border-radius: 50%;
    display: grid;
    place-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background: #155FA7;
    opacity: 1;
    color: #fff;
}

.step-number {
    font-size: 22px;
    font-weight: 600;
    color: #58595B;
}

.step-line {
    width: 5px;
    height: 35px;
    background-color: #FAE4E6;
    position: relative;
    z-index: 1;
    opacity: 0.5;
    transition: all 0.3s ease;
    border-radius: 119px;
}

.step-line.completed,
.step-line.active {
    background-color: #155FA7;
    opacity: 1;
}

.steps-content {
    padding-top: 17px;
    gap: 30px;
    display: grid;
}

.step-item {
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
} 

.step-item.active {
    opacity: 1;
}

.step-item-title {
    font-size: 20px;
    font-family: Inter Semibold, Arial, sans-serif;
    color: #58595B;
    margin-bottom: 12px;
    line-height: 1.1;
}

.step-item-desc {
    font-size: 16px;
    line-height: 20px;
    color: #2A384D;
    margin-bottom: 33px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Process Slider Styles */
.process-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.process-slider .slider-item {
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
    border-radius: 10px;
    overflow: hidden;
}

.process-slider .slider-item.active {
    opacity: 1;
    display: block;
    z-index: 1;
}

.process-slider .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slider-dots {
    display: grid;
    grid-template-columns: repeat(5, 12px);
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 19px;
    left: 42%;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: #FAE4E6;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #155FA7;
    opacity: 1;
}

/* Auto-slide animation */
@keyframes autoSlide {

    0%,
    16% {
        opacity: 1;
    }

    20%,
    96% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.auto-slide .slider-item {
    animation: autoSlide 15s infinite;
    animation-play-state: running;
}

.auto-slide .slider-item:nth-child(1) {
    animation-delay: 0s;
}

.auto-slide .slider-item:nth-child(2) {
    animation-delay: 3s;
}

.auto-slide .slider-item:nth-child(3) {
    animation-delay: 6s;
}

.auto-slide .slider-item:nth-child(4) {
    animation-delay: 9s;
}

.auto-slide .slider-item:nth-child(5) {
    animation-delay: 12s;
}

.auto-slide:hover .slider-item {
    animation-play-state: paused;
}

@media (max-width: 979px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-container {
        height: auto;
        padding: 40px 20px;
    }

    .slider-dots {
        left: 0;
        right: 0;
    }

    .steps-content {
        padding-left: 0;
    }

    .step-item-title {
        font-size: 18px;
    }

    .step-item-desc {
        margin-bottom: 24px;
    }

    .loan-process-section .cta-btn {
        margin-top: 24px;
    }
}

/*#endregion */

/*#region faq */
.faq .default-title {
    color: #181D27;
}

.faq-wrap {
    margin-top: 40px;
    border: 2px solid #155FA7;
    border-radius: 12px;
    overflow: hidden;
}

.faq-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 2px solid #F0F2F4;
}

.faq-tab {
    height: 80px;
    display: flex;
    grid-template-columns: 24px 1fr;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    gap: 8px;
    background: #fff;
    cursor: pointer;
    font-family: 'Inter SemiBold', Arial, sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    transition: background 0.2s;
    border-right: 2px solid #F0F2F4;
}

.faq-tab:last-child {
    border-right: unset;
}

.faq-tab.active {
    background:#155FA7;
    color:#F4B742;
}

.faq-tab-icon,
.faq-tab-icon-ac {
    width: 24px;
    height: 24px;
}

.faq-tab-icon-ac {
    display: none;
}

.faq-tab.active .faq-tab-icon {
    display: none;
}

.faq-tab.active .faq-tab-icon-ac {
    display: block;
}

.faq-panels {
    padding: 40px 48px;
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: grid;
    gap: 20px;
}

.faq-item {
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    outline: 1px solid #E9EAEB;
    outline-offset: -1px;
    display: grid;
    grid-template-columns: 1fr 24px;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.faq-item.open {
    border-radius: 24px;
    outline: 1px solid #155FA7;
}

.faq-item-body {
    display: grid;
    gap: 8px;
}

.faq-item.open .faq-item-body {
    gap: 12px;
}

.faq-question {
    font-family: 'Inter SemiBold', Arial, sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #181D27;
}

.faq-item.open .faq-question {
    color: #155FA7;
}

.faq-answer {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #414651;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-icon {
    width: 24px;
    height: 24px;
}

.faq-icon img {
    width: 24px;
    height: 24px;
}

.faq-item .faq-icon .ic-minus {
    display: none;
}

.faq-item .faq-icon .ic-plus {
    display: block;
}

.faq-item.open .faq-icon .ic-minus {
    display: block;
}

.faq-item.open .faq-icon .ic-plus {
    display: none;
}

@media (max-width: 979px) {
    .faq-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    .faq-tab {
        height: auto;
        min-height: 60px;
        padding: 12px;
        font-size: 16px;
        border-right: unset;
    }

    .faq-panels {
        padding: 24px 20px;
    }

    .faq-panel.active {
        gap: 12px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/*#endregion*/

/*#region register */
.register {
    background:url('/eSign/images/pages/scb-hkd/bg-register.webp') no-repeat center center;
    background-size: cover;
    padding: 96px 0;
    position: relative;
}
img.reg-ava {
    position: absolute;
    width: 452px;
    bottom: 0;
    left: 39%;
    z-index: 0;
}
.register-inner {
    display: grid;
    grid-template-columns: 1fr 515px;
    gap: 64px;
    align-items: start;
}

.register-left {
    display: grid;
    gap: 32px;
    padding-top: 24px;
}

.register-heading {
    display: grid;
    gap: 12px;
}

.register-title {
    font-family: 'Inter Bold', Arial, sans-serif;
    font-size: 32px;
    line-height: 40px;
    color: #fff;
}

.register-subtitle {
    font-family: 'Inter SemiBold', Arial, sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}

.register-checks {
    display: grid;
    gap: 20px;
    max-width: 500px;
}

.register-check-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: flex-start;
}

.register-check-icon {
    width: 24px;
    height: 24px;
}

.register-check-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.register-check-text strong {
    font-family: 'Inter Bold', Arial, sans-serif;
}

.register-right {
    padding: 24px;
    background: rgba(255, 255, 255, 0.40);
    border-radius: 24px;
    outline: 2px rgba(255, 255, 255, 0.40) solid;
    outline-offset: -2px;
    backdrop-filter: blur(8px);
}

.register-form-card {
    /* padding: 32px; */
    /* background: #fff; */
    border-radius: 16px;
    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);
    /* min-height: 500px; */
}

@media (max-width: 979px) {
    .register-check-text br{
        display: none;
    }
    .register {
        padding: 48px 0;
    }

    img.reg-ava {
        display: none;
    }

    .register-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .register-title {
        font-size: 24px;
        line-height: 32px;
    }

    .register-subtitle {
        font-size: 18px;
    }
}
/*#endregion */

/*#region popup huong dan vay von */

.register-guide-popup {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    font-size: 16px;
    line-height: 1.42857143;
    color: #393a3d;
}

.guide-wrapper {
    position: absolute;
    width: 90%;
    max-width: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    z-index: 2;
    background: #FFF;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.btn-close-guide-register {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 15px;
    cursor: pointer;
    z-index: 100;
}

.guide-gif {
    position: relative;
}

    .guide-gif img {
        border: solid 7px #5C9FF6;
        border-radius: 15px;
    }

.guide-text {
    position: relative;
}

.guide-title {
    text-align: center;
    font-family: GoogleSans Bold, Arial, sans-serif;
    color: #000;
}

.guide-content {
    margin-top: 30px;
    background: #EDF5FF;
    border-radius: 12px;
    padding: 15px;
}

.guide-step {
    position: relative;
    padding-left: 17px;
}

    .guide-step:first-child {
        margin-bottom: 10px;
    }

    .guide-step:before {
        content: '';
        position: absolute;
        background: #1877F2;
        border-radius: 50%;
        width: 6px;
        height: 6px;
        left: 0;
        top: 10px;
    }

    .guide-step img {
        height: 40px;
        margin-left: 10px;
    }

    .guide-step img:first-child{
        margin: unset;
        margin-right: 10px;
    }

    .guide-step span {
        font-family: GoogleSans Bold, Arial, sans-serif;
        color: #1877F2;
        padding: 0 5px;
    }

.guide-step-custom {
    display: flex;
    flex-direction: column;
}
.guide-step-custom .product{
    display: flex;
    align-items: center;
    padding: 10px 0px;
}
.guide-step-custom .product div{
    font-size: 14px;
}

.cls-button-login {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    flex-direction: column;
    text-align: center;
}


    .cls-button-login a {
        display: block;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 24px;
        background: linear-gradient(0deg, #FF7C17, #FFA42D);
        width: 260px;
        margin: auto;
        margin-bottom: 10px;
        box-shadow: 0px 3px 6px rgb(0 0 0 /16%);
    }
@media (min-width: 980px) {
    .guide-gif {
        width: 60%;
        float: left;
    }

    .guide-text {
        width: 40%;
        float: left;
        padding-left: 20px;
        padding-top: 10px;
    }

    .cubes-guide-register {
        position: absolute;
        right: 70px;
        height: 380px;
    }
}

@media (max-width: 979px) {
    .guide-wrapper {
        max-width: 600px;
        padding: 40px 20px 20px;
    }

    .cubes-guide-register {
        display: none;
    }

    .guide-gif {
        display: none;
    }
}

@media (max-width: 360px) {
    .guide-step img {
        height: 30px;
    }
}

/*#endregion */