/* ==============================
        Global variables
============================== */

:root {
    /* Design colors */
    --purple-900: #3E1C96;
    --purple-800: #4A1FB8;
    --purple-700: #5925DC;
    --purple-600: #6D2FFD;
    --purple-500: #7A5AF8;
    --purple-400: #9B8AFB;
    --purple-300: #BDB4FE;
    --purple-200: #D9D6FE;
    --purple-100: #EBE9FE;
    --purple-50: #F4F3FF;
    --purple-25: #FAFAFF;

    --soft-purple-200: #ECE3FF;
    --soft-purple-150: #F4EBFF;
    --soft-purple-100: #F2EDFF;
    --soft-purple-50: #F9F5FF;
    --soft-purple-25: #FAF8FE;

    --rose-900: #89123E;
    --rose-800: #A11043;
    --rose-700: #C01048;
    --rose-600: #E31B54;
    --rose-500: #FF3D71;
    --rose-400: #FD6F8E;
    --rose-300: #FEA3B4;
    --rose-200: #FECDD6;
    --rose-100: #FFE4E8;
    --rose-50: #FFF1F3;
    --rose-25: #FFF5F6;

    /* Secondary colors */
    --yellow-400: #FFDE56;
    --white: #FFFFFF;
    --green: #3CCB7F;
    --green-bg: rgba(38, 208, 144, 0.06);

    /* Basic colors */
    --gray-900: #101828;
    --gray-800: #1D2939;
    --gray-700: #2E3A59;
    --gray-650: #344054;
    --gray-600: #475467;
    --gray-500: #667085;
    --gray-400: #98A2B3;
    --gray-300: #D0D5DD;
    --gray-200: #EAECF0;
    --gray-100: #F2F4F7;
    --gray-150: #F0F0F0;
    --gray-50: #F9FAFB;
    --gray-25: #FCFCFD;

    /* Font family */
    --primary-font-family: 'Inter', sans-serif;
    --secondary-font-family: 'Mulish', sans-serif;

    /* Font size - Heading */
    --fs-h1: 60px;
    --fs-h2: 36px;
    --fs-h3: 30px;
    --fs-h4: 20px;
    --fs-h5: 18px;

    /* Line height - Heading */
    --lh-h1: 72px;
    --lh-h2: 44px;
    --lh-h3: 38px;
    --lh-h4: 30px;
    --lh-h5: 28px;

    /* Font size - Basic */
    --fs-b1: 20px;
    --fs-b2: 18px;
    --fs-b3: 16px;
    --fs-b4: 14px;

    /* Line height - Basic */
    --lh-b1: 30px;
    --lh-b2: 28px;
    --lh-b3: 24px;
    --lh-b4: 20px;

    /* Font weight */
    --fw-semi-bold: 600;
    --fw-medium: 500;
    --fw-regular: 400;

    /* Border radius */
    --br-2: 2px;
    --br-4: 4px;
    --br-6: 6px;
    --br-8: 8px;
    --br-10: 10px;
    --br-12: 12px;
    --br-16: 16px;
    --br-20: 20px;

    /* Box shadow */
    --box-shadow-xs: 0px 1px 2px rgba(16, 24, 40, 0.05);
    --box-shadow-md: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
    --box-shadow-lg: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    --box-shadow-xl: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

/* ==============================
        Basics
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font-family);
    font-size: var(--fs-b3);
    font-weight: var(--fw-regular);
    line-height: var(--lh-b3);
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: var(--fw-semi-bold);
}

h1 {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
}

h2 {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
}

h3 {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
}

h4 {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
}

h5 {
    font-size: var(--fs-h5);
    line-height: var(--lh-h5);
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

img {
    user-select: none;
}

input {
    outline: none;
}

::selection {
    background: var(--purple-200);
    color: var(--gray-700);
    -webkit-text-fill-color: var(--gray-700);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    padding: 2px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-thumb {
    background: var(--purple-600);
    border-radius: var(--br-4);
    border: 2px solid var(--purple-50);
}

::-webkit-scrollbar-track {
    background: var(--purple-50);
    border-radius: var(--br-4);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

html {
    scrollbar-color: var(--purple-600) var(--purple-50);
    scrollbar-width: thin;
}

.btn-general {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--primary-font-family);
    font-size: var(--fs-b3);
    line-height: var(--lh-b3);
    font-weight: var(--fw-semi-bold);
    color: var(--gray-650);
    background-color: var(--white);
    padding: 12px 20px;
    border: 1px solid var(--gray-300);
    height: 48px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: var(--br-8);
    transition: all 250ms ease-in-out;
    box-shadow: var(--box-shadow-xs);
}

.btn-general:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-general > *:not(:last-child) {
    margin-right: 8px;
}

.btn-general svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.btn-general svg path {
    stroke: var(--gray-650);
}

.btn-general:hover {
    background-color: var(--gray-50);
    color: var(--gray-650);
}

.btn-general.primary {
    background-color: var(--purple-600);
    border-color: var(--purple-600);
    color: var(--white);
}

.btn-general.primary svg path {
    stroke: var(--white);
}

.btn-general.primary.btn-general:hover {
    background-color: var(--purple-700);
    border-color: var(--purple-700);
}

.btn-general.secondary {
    background-color: transparent;
    border-color: transparent;
    color: var(--gray-600);
    box-shadow: none;
}

.btn-general.secondary svg path {
    stroke: var(--gray-600);
}

.btn-general.secondary:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-50);
    color: var(--gray-650);
    box-shadow: var(--box-shadow-xs);
}

.btn-general.small {
    height: 44px;
    padding: 10px 18px;
}

.btn-general.large {
    height: 60px;
    min-width: 140px;
    padding: 16px 28px;
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
}

.btn-general.large > *:not(:last-child) {
    margin-right: 12px;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    font-size: var(--fs-b3);
    line-height: var(--lh-b3);
    font-weight: var(--fw-semi-bold);
    color: var(--gray-600);
    border: none;
    background: none;
    transition: all 250ms ease-in-out;
}

.btn-text.underline {
    border-bottom: 2px solid var(--purple-500);
}

.btn-text svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 8px;
}

.btn-text svg path {
    stroke: var(--gray-600);
    transition: stroke 250ms ease-in-out;
}

.btn-text:hover {
    color: var(--gray-700);
}

.btn-text:hover svg path {
    stroke: var(--gray-700);
}

.btn-text.primary {
    color: var(--purple-500);
}

.btn-text.primary svg path {
    stroke: var(--purple-500);
}

.btn-text.primary:hover {
    color: var(--purple-600);
}

.btn-text.primary:hover svg path {
    stroke: var(--purple-600);
}

.btn-text.underline:hover {
    border-color: var(--purple-600);
}

.btns-wrapper {
    display: flex;
    align-items: center;
}

.btns-wrapper > *:not(:last-child) {
    margin-right: 12px;
}

.monster {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    padding: 10px 0;
    transform: translateY(100vh);
    animation: slideIn 1s 3s 1 forwards;
}

.monster-image {
    position: relative;
}

.monster-image a {
    display: block;
}

.monster-image img {
    width: 100%;
    height: auto;
}

.monster-image .close-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    background-image: url("../../img/icons/x.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

@keyframes slideIn {
    0% {
        transform: translateY(100vh); /* Start off the viewport */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* Move it to its original position */
        opacity: 1;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 775px;
    margin: 0 auto 64px;
}

.section-header .label {
    margin-bottom: 12px;
    color: var(--purple-600);
    font-weight: var(--fw-semi-bold);
}

.section-header p {
    margin-top: 20px;
    color: var(--gray-500);
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
}

.section-header .btns-wrapper {
    margin-top: 40px;
}

.section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.welcome-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.welcome-section-content .section-header {
    margin-bottom: 40px;
    max-width: none;
}

.bg-secondary {
    background-color: var(--soft-purple-50);
}

.bg-primary {
    background-color: var(--white);
}

.content-box-sm {
    padding-top: 48px;
    padding-bottom: 48px;
}

.content-box-md {
    padding-top: 64px;
    padding-bottom: 64px;
}

.content-box-lg {
    padding-top: 96px;
    padding-bottom: 96px;
}

.overflow-hidden {
    overflow: hidden;
}

.lazyload {
    opacity: 0;
    visibility: hidden;
}

/* Swiper */
.swiper-wrapper {
    height: auto;
}

.swiper-btn-next, .swiper-btn-prev {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    transition: all 250ms ease-in-out;
}

.swiper-btn-next.swiper-button-disabled, .swiper-btn-prev.swiper-button-disabled {
    opacity: 0.3;
    cursor: auto;
}

.swiper-btn-prev {
    left: -48px;
    right: auto;
}

.swiper-btn-next {
    left: auto;
    right: -48px;
}

.swiper-btn-prev img, .swiper-btn-next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-lazy-preloader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    background-image: url('../../img/preloader.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: var(--soft-purple-25);
    border: none;
    border-radius: 0;
    animation: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination-bullet {
    background: var(--gray-200);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gray-700);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 64, 84, 0.7);
    backdrop-filter: blur(8px);
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
    display: none;
}

.modal.show {
    display: block;
}

.modal.fade-in {
    visibility: visible;
    opacity: 1;
}

.modal-dialog {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100% - 48px);
    pointer-events: none;
    max-width: 564px;
    margin: 24px auto;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    padding: 16px;
    pointer-events: auto;
    background-color: var(--white);
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--br-12);
    overflow: hidden;
    transform: translateY(-100px);
    transition: transform 250ms ease-in-out;
}

.modal.fade-in .modal-content {
    transform: translateY(0);
}

.modal-header, .modal-body, .modal-footer {
    padding: 16px;
}

.modal-header {
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-header .btn-close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    outline: none;
}

.modal-header .btn-close-modal svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.modal-header .btn-close-modal svg path {
    stroke: var(--gray-500);
}

.modal-body {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#try-demo-modal .modal-header > span {
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    padding-right: 32px;
}

#try-demo-modal .modal-header > p {
    margin-top: 8px;
    color: var(--gray-500);
}

#try-demo-modal .modal-body {
    padding-top: 4px;
}

#try-demo-modal .modal-footer {
    justify-content: flex-start;
}

#try-demo-modal .modal-footer a {
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    text-decoration-line: underline;
    color: var(--purple-500);
    transition: color 250ms ease-in-out;
}

#try-demo-modal .modal-footer a:hover {
    color: var(--purple-600);
}

#image-zoom-modal .modal-dialog {
    max-width: 800px;
}

#image-zoom-modal .modal-content {
    padding: 0;
    height: 100%;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

#image-zoom-modal .modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-out;
}


/* Toaster */
.toaster-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 24px 12px;
    z-index: 99999;
}

.toaster {
    position: relative;
    display: flex;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--box-shadow-lg);
    border-radius: 8px;
    width: 350px;
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 400ms ease-in-out;
}

.toaster.show {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.toaster:not(:last-child) {
    margin-bottom: 12px;
}

.toaster .toaster-icon {
    width: 38px;
    height: 38px;
    background: var(--gray-150);
    border: 6px solid var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.toaster.danger .toaster-icon {
    background: #FEE4E2;
    border-color: #FEF3F2;
}

.toaster.success .toaster-icon {
    background: #D1FADF;
    border-color: #ECFDF3;
}

.toaster.warning .toaster-icon {
    background: #FEF0C7;
    border-color: #FFFAEB;
}

.toaster .toaster-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.toaster .toaster-icon svg path {
    stroke: var(--gray-600);
}

.toaster.danger .toaster-icon svg path {
    stroke: #D92D20;
}

.toaster.success .toaster-icon svg path {
    stroke: #039855;
}

.toaster.warning .toaster-icon svg path {
    stroke: #DC6803;
}

.toaster .toaster-content {
    padding-right: 32px;
}

.toaster .btn-toaster-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    outline: none;
    background: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toaster .btn-toaster-close svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.toaster .btn-toaster-close svg path {
    stroke: var(--gray-500);
}

/* Cookies */
.no-border {
    border: none !important;
}

.cookie-bar {
    position: fixed;
    bottom: -70px;
    left: 0;
    width: 100%;
    z-index: 9999999;
    background: var(--gray-25);
    border-top: 1px solid var(--gray-300);
    box-shadow: var(--box-shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
}

.cookie-bar.show {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}

.cookie-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-bar-text {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.cookie-bar-text > img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-right: 16px;
}

.cookie-bar-text > p {
    color: var(--gray-500);
}

.cookie-bar-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-bar-buttons .btn-close {
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.cookie-bar-buttons .btn-close > svg path {
    stroke: var(--gray-500);
}

/* New Feature */

.new-feature-banner {
    background: var(--purple-700);
    padding: 12px 0;
    display: none;
    border-bottom: 3px solid var(--orange)
}

.new-feature-banner.show {
    display: block;
}

.new-feature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    gap: 24px;
}

.new-feature-content .new-feature-title {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    font-weight: var(--fw-semi-bold);
    flex-shrink: 0;
}

.btn-close-new-feature-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

.btn-close-new-feature-banner svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn-close-new-feature-banner svg path {
    stroke: var(--white);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    padding: 40px 0;
}

.breadcrumbs .seperator {
    color: var(--gray-300);
    margin: 0 14px;
}

.breadcrumbs .active-page {
    font-weight: var(--fw-semi-bold);
    color: var(--purple-600);
}

.breadcrumbs a {
    font-weight: var(--fw-medium);
    color: var(--gray-600);
    transition: color 250ms ease-in-out;
}

.breadcrumbs a:hover {
    color: var(--purple-600);
}

/* Discount Banner */
body.show-discount .discount-banner {
    display: block;
}

.summer-1 .discount-btn,
.summer-2 .discount-btn,
.spring .discount-btn,
.autumn-1 .discount-btn,
.autumn-2 .discount-btn,
.winter-1 .discount-btn {
    border-radius: 12px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.9px;
}

.summer-1 .discount-btn:hover,
.summer-2 .discount-btn:hover,
.spring .discount-btn:hover,
.autumn-1 .discount-btn:hover,
.autumn-2 .discount-btn:hover,
.winter-1 .discount-btn:hover {
    filter: brightness(90%);
}

.summer-1 .discount-btn img,
.summer-2 .discount-btn img,
.spring .discount-btn img,
.autumn-2 .discount-btn img,
.autumn-1 .discount-btn img,
.winter-1 .discount-btn img {
    display: none;
}


.summer-1 .discount-btn svg,
.summer-2 .discount-btn svg,
.spring .discount-btn svg,
.autumn-2 .discount-btn svg,
.autumn-1 .discount-btn svg,
.winter-1 .discount-btn svg {
    display: block;
}

.summer-1 .countdown .countdown-item,
.summer-2 .countdown .countdown-item {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    backdrop-filter: blur(2.5px);
}

.autumn-1 .countdown .countdown-item,
.autumn-2 .countdown .countdown-item {
    border-radius: 2px 32px;
    background: #FFD9A0;
    backdrop-filter: blur(2.5px);
    padding-inline: 22px;
}

.autumn-1 .countdown-separator,
.autumn-2 .countdown-separator {
    display: none;
}

.discount-banner.summer-1 {
    background: #016DFE;
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
}

.summer-1 .discount-info {
    gap: 10px;
}

.summer-1 .countdown .countdown-item {
    font-weight: 600;
    padding-block: 4px;
}

.summer-1 .discount-info span {
    position: relative;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 4px 4px rgba(1, 109, 254, 0.3) inset,
    0 -4px 4px rgba(255, 255, 255, 0.25) inset;
    color: #FFF;
}

.summer-1 .discount-info span:before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: url("../../img/icons/mouse-icon.svg");
    display: block;
}

.summer-1 .discount-btn {
    background: #FFF;
    color: #016DFE;
    box-shadow: -5px 4px 10px rgba(21, 0, 160, 0.29);
}

.summer-1 .discount-btn:hover {
    color: #016DFE;
}

.discount-banner.summer-2 {
    background: url("../../img/summer-banner-bg.svg") no-repeat center center;
    background-size: cover;
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1.4px;
}

.summer-2 .discount-info {
    gap: 10px;
}

.summer-2 .discount-info span {
    border-radius: 12px;
    background: #FEFA99;
    color: #2474A3;
}

.summer-2 .countdown .countdown-item {
    font-weight: 600;
    padding-block: 4px;
}

.summer-2 .discount-btn {
    background: #FFF;
    color: #2474A3;
    box-shadow: -5px 4px 10px rgba(21, 0, 160, 0.29);
}

.summer-2 .discount-btn:hover {
    color: #2474A3;
}

.summer-2 .discount-btn svg path {
    stroke: #2474A3;
}

.discount-banner.spring {
    background: #44B58B;
    color: #FFF;
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
}

.spring .countdown .countdown-item {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #6ECBA4;
    backdrop-filter: blur(2.5px);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.spring .discount-info {
    position: relative;
    gap: 5px;
}

.spring .discount-info span {
    font-size: 50px;
    color: #FFF;
    background: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
    0 -2px 4px rgba(255, 255, 255, 0.2),
    1px 1px 2px rgba(0, 0, 0, 0.3),
    -1px -1px 2px rgba(255, 255, 255, 0.2);
}

.spring .up-to-text {
    position: absolute;
    left: -20px;
    transform: rotate(-90deg);
    font-size: 16px;
    font-weight: 800;
    line-height: 17px;
    letter-spacing: -0.64px;
    color: #FFF;
}

.spring .discount-btn {
    background: #FFF;
    color: #000;
}

.spring .discount-btn:hover {
    color: #000;
}

.spring .discount-btn svg path {
    stroke: #000;
}

.discount-banner.autumn-1 {
    background: #FFF2E1;
}

.autumn-1 .discount-text {
    color: #AB2218 !important;
    font-size: 26px;
    font-weight: 800;
    line-height: 28px;
}

.autumn-1 .discount-info {
    position: relative;
}

.autumn-1 .up-to-text {
    position: absolute;
    width: 50px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #AB2218;
    font-size: 27px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -1.08px;
    left: 20px;
}

.autumn-1 .discount-info span {
    font-size: 50px;
    margin-inline: 48px 32px;
    color: #AB2218;
    background: transparent;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
    0 -2px 4px rgba(255, 255, 255, 0.1),
    1px 1px 2px rgba(0, 0, 0, 0.3),
    -1px -1px 2px rgba(255, 255, 255, 0.1);
}

.autumn-1 .discount-info span:before {
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: -60px;
    width: 31px;
    height: 46px;
    display: block;
    position: absolute;
    background-image: url('../../img/icons/autumn-left-1.svg');
}

.autumn-1 .discount-info span:after {
    content: "";
    width: 31px;
    height: 46px;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: -25px;
    background-image: url('../../img/icons/autumn-right-1.svg');
}

.autumn-1 .discount-btn {
    background: #AB2218;
}

.autumn-1 .discount-btn svg path {
    stroke: #fff;
    fill: #fff;
}

.discount-banner.autumn-2 {
    background: url("../../img/autumn-bg.svg") no-repeat center center;
    background-size: cover;
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1.4px;
}

.autumn-2 .discount-text {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
}

.autumn-2 .discount-info {
    position: relative;
}

.autumn-2 .up-to-text {
    position: absolute;
    width: 50px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -1.08px;
    left: 20px;
}

.autumn-2 .discount-info span {
    font-size: 50px;
    margin-inline: 48px 32px;
    color: #fff;
    background: transparent;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
    0 -2px 4px rgba(255, 255, 255, 0.1),
    1px 1px 2px rgba(0, 0, 0, 0.3),
    -1px -1px 2px rgba(255, 255, 255, 0.1);
}

.autumn-2 .discount-info span:before {
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: -60px;
    width: 31px;
    height: 46px;
    display: block;
    position: absolute;
    background-image: url('../../img/icons/autumn-left-2.svg');
}

.autumn-2 .discount-info span:after {
    content: "";
    width: 31px;
    height: 46px;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: -25px;
    background-image: url('../../img/icons/autumn-right-2.svg');
}

.autumn-2 .discount-btn {
    background: #fff;
    color: #000;
}

.autumn-2 .discount-btn:hover {
    color: #000;
}

.autumn-2 .discount-btn svg path {
    stroke: #000;
    fill: #000;
}

.discount-banner.winter-1 {
    background: url("../../img/winter-banner-1.svg") no-repeat center center;
    background-size: cover;
    color: #FFF;
    font-size: 28px;
    font-weight: 800;
}

.winter-1 .discount-text {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 28px;
}

.winter-1 .discount-info {
    gap: 10px;
}

.winter-1 .discount-info span {
    color: #FFF;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    border-radius: 100px;
    border: 3px solid #FFF;
    background: linear-gradient(134deg, #3690EE 2.7%, #4FC0F1 97.3%);
}

.winter-1 .countdown .countdown-item {
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 2px 5px 0px #43A7F0 inset;
    backdrop-filter: blur(2.5px);
    padding-block: 8px;
    line-height: normal;
}

.winter-1 .discount-btn {
    background: #FFF;
    color: #000;
    border: 1px solid #fff;
    box-shadow: 0px 2px 5px 0px #43A7F0 inset;
}

.winter-1 .discount-btn:hover {
    color: #000;
}

.winter-1 .discount-btn svg path {
    stroke: #000;
    fill: #000;
}

.discount-banner.winter-2 {
    background: url("../../img/winter-banner-2.svg") no-repeat center center;
    background-size: cover;
    color: #F6C758;
    font-size: 28px;
    font-weight: 800;
}

.winter-2 .up-to-text {
    display: none;
}

.winter-2 .discount-text {
    color: #F6C758 !important;
}

.winter-2 .discount-btn {
    border-radius: 12px;
    border: 1px solid #FFD36A;
    background: #F6C758;
    box-shadow: 0px 2px 5px 0px #985D00 inset;
    color: #000;
}

.winter-2 .countdown .countdown-item {
    background: #FFD9A0;
    backdrop-filter: blur(2.5px);
    border-radius: 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.8px;
    padding: 4px 22px;
}

.winter-2 .countdown .countdown-item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.winter-2 .countdown .countdown-item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.winter-2 .countdown-separator {
    color: #FFD9A0;
    font-size: 16px;
}

.winter-2 .discount-info span {
    background: none;
    color: #F6C758;
    font-size: 50px;
    padding-left: 0;
}

.winter-2 .discount-btn img {
    display: none;
}

.winter-2 .discount-btn:hover {
    color: #000;
}

.winter-2 .discount-btn svg path {
    stroke: #000;
    fill: #000;
}

.discount-banner {
    padding-block: 15px;
    background-image: url('../../img/patterns/booknetic-webbanner-1_5x.webp');
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Manrope", serif;
    display: none;
    text-wrap: nowrap;
    text-transform: uppercase;
}

.discount-info span {
    color: #09133B;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -1.202px;
    padding: 5px 10px;
    border-radius: 10px;
    background: #FFE358;
}

.discount-info {
    gap: 10px;
}

.discount-info .discount-text, .up-to-text {
    line-height: 28px;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1.402px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #09133B;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.countdown .countdown-item {
    padding: 4px 10px;
    background-color: var(--white);
    border-radius: 10px;
}

.countdown .count {
    display: inline-block;
    width: 20px;
}

.countdown-separator {
    color: #FFF;
    font-size: 26px;
    font-weight: 800;
    line-height: 26px;
    letter-spacing: -1.3px;
}

.discount-btn {
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid #6C70DC;
    background: #6C70DC;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Poppins, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.discount-btn svg {
    display: none;
}

.discount-btn:hover {
    color: #fff;
    filter: brightness(90%);
}

.discount-bf {
    background-image: url('../../img/black-friday.png');
    background-position: center;
}

.discount-banner [class^="bf-"] {
    display: none;
}

.discount-bf .discount-info .discount-text {
    display: none;
}

.discount-bf .discount-info .bf-outline {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 23px;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 4px rgba(255,255,255,0.4);
    letter-spacing: -1.4px;
}

.discount-bf .discount-info span {
    border-radius: 12px;
    border: 1px solid #9E74FF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -8px 16px 0 rgba(85, 0, 255, 0.20) inset, 0 8px 16px 0 rgba(180, 174, 247, 0.20) inset;
    backdrop-filter: blur(10px);

    padding: 8px 12px;
    color: #FFF;
    position: relative;
}

.discount-bf .discount-info span:after {
    position: absolute;
    content: url("../../img/banner-arrow.png");
    left: auto;
    top: calc(100% - 8px);
    width: fit-content;
    height: fit-content;
}

.discount-bf .discount-info .bf-text {
    display: block;
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.discount-bf .countdown {
    position: relative;
}

.discount-bf .countdown:after {
    position: absolute;
    content: url("../../img/bf-banner-pulse.png");
    right: calc(100% + 20px);
    top: 4px;
    width: fit-content;
    height: fit-content;
}

.discount-bf .countdown-item {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.10);
    color: #FFF;

    display: flex;
    align-items: center;
    gap: 2px;
}

.discount-bf .countdown-item .label {
    font-size: 0;
    height: 20px;
}

.discount-bf .countdown-item .label:first-letter {
    font-size: 16px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
}

.discount-bf .discount-btn {
    border-radius: 12px;
    background: #FFF;
    box-shadow: -5px 4px 10px 0 rgba(21, 0, 160, 0.29);
    color: #6D2FFD;
    padding: 12px 16px;
    position: relative;
}

.discount-bf .discount-btn:after {
    content: url("../../img/bf-btn-arrow.png");
    position: absolute;
    top: -12px;
    right: calc(100% + 20px);
    width: fit-content;
    height: fit-content;
}

.discount-bf .discount-btn img {
    display: none;
}

.discount-bf .discount-btn svg {
    display: block;
    stroke: #6D2FFD;
}

.discount-bf .discount-btn svg path {
    fill: #6D2FFD;
}

/* Fetured icon */
.featured-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    font-weight: var(--fw-semi-bold);
    font-size: 24px;
    line-height: 32px;
    color: var(--purple-600);
    background-color: var(--soft-purple-150);
    border: 8px solid var(--soft-purple-50);
    box-sizing: content-box;
    border-radius: 50%;
    margin-bottom: 20px;
}

.featured-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.featured-icon svg path {
    stroke: var(--purple-600);
}

.featured-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.featured-list li {
    display: flex;
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-500);
}

.featured-list li:not(:last-child) {
    margin-bottom: 20px;
}

.featured-list li img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: 12px;
}

/* Content */
.content {
    --fs-h1: 33px;
    --fs-h2: 28px;
    --fs-h3: 23px;
    font-family: var(--secondary-font-family);
    font-size: 16px;
    color: #454545;
    max-width: 680px;
    margin: 0 auto;
}

.content h1, .content h2, .content h3, .content h4, .content h5 {
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: var(--fw-regular);
}

.content > :first-child {
    margin-top: 0;
}

.content h1 {
    font-size: 33px;
    margin-top: 55px;
}

.content h2 {
    font-size: 28px;
    margin-top: 45px;
}

.content h3 {
    font-size: 23px;
    margin-top: 35px;
}

.content p, .content iframe, .content ol, .content ul, .content table, .content p img {
    margin-top: 0;
    margin-bottom: 25px;
}

.content iframe {
    width: 100%;
    height: 500px;
}

.content ul {
    padding-left: 32px;
}

.content p {
    line-height: 1.6;
}

.content img {
    max-width: 100%;
    max-height: 65vh;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.content.with-image-zoom img {
    cursor: zoom-in;
}

.post-content ul, .post-content ol {
    margin-right: 0;
    margin-left: 15px;
}

.content ol {
    padding-left: 20px;
}

.content li, .post-content li {
    list-style: unset;
}

.content li {
    margin-bottom: 10px;
}

.content li img {
    margin-top: 24px;
}

.content li:not(:last-child) {
    margin-bottom: 12px;
}

.content a {
    color: var(--purple-500);
    transition: all 250ms ease-in-out;
    border-bottom: 1px solid var(--purple-500);
    text-decoration: none;
}

.content a:hover {
    border-bottom-color: var(--purple-600);
    color: var(--purple-600);
}

.content table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-style: hidden;
    box-shadow: 0 0 0 1px var(--gray-500);
    border-radius: var(--br-8);
    overflow: hidden;
}

.content table th {
    font-weight: var(--fw-semi-bold);
    background-color: var(--purple-100);
}

.content table td, .content table th {
    padding: 12px;
    overflow: auto;
}

.content table tr {
    border-bottom: 1px solid var(--gray-500);
}

.content table tr > *:not(:last-child) {
    border-right: 1px solid var(--gray-500);
}

.content hr {
    background-color: var(--gray-500);
    opacity: 1;
    height: 1px;
}

.content .custom-cart {
    background-color: var(--purple-100);
    padding: 24px;
    border-radius: var(--br-16);
}

.content .custom-cart > * {
    margin-bottom: 0;
}

.content .custom-cart > *:not(:last-child) {
    margin-bottom: 24px;
}

.content .custom-cart a {
    font-weight: var(--fw-semi-bold);
    text-decoration: underline;
    color: var(--gray-700);
}

/*=====  New Update Notification ====== */
.new-update-notification {
    padding-block: 16px;
    background-color: var(--purple-500);
    font-size: var(--fs-b2);
    font-weight: 400 !important;
    line-height: 20px !important;
    color: #fff;
}

.new-update-notification > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.new-update-notification a {
    padding: 10px 16px;
    border-radius: var(--br-8);
    font-size: var(--fs-b3);
    line-height: var(--lh-b4);
    text-wrap: nowrap;
}

.new-update-notification a:hover {
    filter: brightness(90%);
}

.new-update-notification a img {
    width: 20px;
}

/* ==============================
        Header
============================== */

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header {
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-100);
    background-color: var(--white);
    transition: all 250ms ease-in-out;
}

.label-color {
    background-color: var(--green) !important;
    color: #fff;
    align-items: center;
    padding-bottom: 4px !important;
}

/* Fixed header on scroll */
.scroll-up .header-container {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.scroll-down .header-container {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    margin-right: 40px;
}

.header-logo-saas {
    font-size: 12px;
    color: var(--purple-700);
    font-weight: 500;
    padding: 5px 10px;
    margin-left: 5px;
    height: 26px;
    line-height: 15px;
    border-radius: 10px;
    margin-top: 5px;
    background: var(--gray-200);
}

.header-logo img {
    height: 32px;
    width: auto;
}

.header-menu > ul {
    display: flex;
    align-items: center;
}

.header-menu > ul > li {
    position: relative;
    display: flex;
    flex-direction: column;
}

.header-menu > ul > li:not(:last-child) {
    margin-right: 32px;
}

.header-menu > ul > li .header-menu-item {
    display: flex;
    align-items: center;
    cursor: default;
}

.header-menu > ul > li a.header-menu-item {
    cursor: pointer;
}

.header-menu > ul > li .header-menu-item span {
    font-weight: var(--fw-semi-bold);
    color: var(--gray-600);
    transition: color 250ms ease-in-out;
}

.header-menu > ul > li .header-menu-item svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 8px;
    transition: transform 250ms ease-in-out;
    box-sizing: content-box;
}

.header-menu > ul > li .header-menu-item svg path {
    stroke: var(--gray-600);
    transition: stroke 250ms ease-in-out;
}

.header-menu > ul > li:hover .header-menu-item span {
    color: var(--purple-600);
}

.header-menu:not(.mobile) > ul > li:hover .header-menu-item svg {
    transform: rotate(180deg);
}

.header-menu > ul > li:hover .header-menu-item svg path {
    stroke: var(--purple-600);
}

.header-menu > ul > li:hover .header-menu-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-menu > ul > li .header-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 336px;
    padding-top: 12px;
    margin-top: 24px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
}

.dropdown-menu {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--br-12);
    overflow: hidden;
}

.dropdown-menu-list {
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.dropdown-menu-list li:not(:last-child) {
    margin-bottom: 8px;
}

.dropdown-menu-list li a {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    border-radius: var(--br-8);
    transition: background-color 250ms ease-in-out;
}

.dropdown-menu-list li.disabled a {
    pointer-events: none;
}

.dropdown-menu-list li a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 16px;
}

.dropdown-menu-list li a {
    color: var(--gray-700);
    font-weight: var(--fw-semi-bold);
}

.dropdown-menu-list li a div.label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    text-align: center;
    background-color: var(--gray-100);
    border-radius: var(--br-16);
    margin-left: 8px;
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    font-weight: var(--fw-medium);
}

.header-menu:not(.mobile) .dropdown-menu-list li a:hover {
    background-color: var(--soft-purple-25);
}

.dropdown-menu-footer a {
    background-color: var(--gray-50);
    font-weight: var(--fw-semi-bold);
    padding: 20px;
}

.dropdown-menu-footer a svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 8px;
}

.dropdown-menu-footer a svg path {
    color: var(--purple-500);
    transition: stroke 250ms ease-in-out;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right > *:not(:first-child) {
    margin-left: 12px;
}

/* Mobile menu */
#btn-mobile-menu-show, #btn-mobile-menu-close {
    border: none;
    background: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-mobile-menu-show svg, #btn-mobile-menu-close svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

#btn-mobile-menu-show svg path, #btn-mobile-menu-close svg path {
    stroke: var(--gray-600);
}

.mobile-menu {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 80%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    margin-right: auto;
    transition: all 250ms ease-in-out;
}

.mobile-menu.show .mobile-menu-content {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-body {
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
    padding: 24px;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column-reverse;
    padding: 18px 24px;
    border-top: 1px solid var(--gray-100);
}

.mobile-menu-footer > *:not(:last-child) {
    margin-top: 12px;
}

.header-menu.mobile > ul {
    flex-direction: column;
    align-items: stretch;
}

.header-menu.mobile > ul > li {
    padding: 4px 0;
}

.header-menu.mobile > ul > li:not(:last-child) {
    margin-right: 0;
}

.header-menu.mobile > ul > li .header-menu-item {
    justify-content: space-between;
    cursor: pointer;
}

.header-menu.mobile > ul > li .header-menu-item > * {
    padding: 12px 0;
}

.header-menu.mobile > ul > li .header-menu-dropdown {
    position: static;
    visibility: visible;
    opacity: 1;
    display: none;
    margin-top: 0;
    padding-top: 8px;
    width: 100%;
}

.header-menu.mobile > ul > li.active .header-menu-item span {
    color: var(--purple-600);
}

.header-menu.mobile > ul > li.active .header-menu-item svg {
    transform: rotate(180deg);
}

.header-menu.mobile > ul > li.active .header-menu-item svg path {
    stroke: var(--purple-600);
}

/* ==============================
        Home Welcome
============================== */
#home-page {
    background-image: url('../../img/patterns/welcome.svg');
    background-position: top right;
    background-repeat: no-repeat;
}

.announce {
    display:     flex;
    gap:         5px;
    align-items: center;
}

.announce div {
    font-size: 13px;
}

.announce .badge {
    padding:             3px 6px;
    background-color:    #FFE358;
    border-radius:       5px;
    text-transform:      uppercase;
    font-weight:         500;
}

.home-welcome-content {
    display: flex;
    justify-content: space-between;
}

.home-welcome-text {
    display: flex;
    flex-direction: column;
    margin-right: 24px;
}

.envanto {
    border-radius: 6px;
    border: 1px solid var(--gray-100);
    padding: 16px 10px;
    gap: 8px;
    margin-top: 32px;
    background-color: #fff;
    width: 280px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.social-proof-container {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.social-proof:last-child {
    grid-column: 1/-1;
}

.social-proof {
    gap: 12px;
    color: var(--gray-700);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

@media (width <= 768px) {
    .social-proof-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.envanto span {
    color: var(--gray-400);
}

.envanto p {
    color: var(--gray-800);
}

.envanto img {
    width: 100%;
}

.envanto-review {
    width: 100px;
}

.gradient-keyword {
    background: linear-gradient(45deg, #9E74FF, #FF3D71);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-welcome-text > p {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    margin-top: 24px;
    max-width: 463px;
    width: 100%;
}

.home-welcome-text .form-general {
    margin-top: 48px;
}

.home-welcome-image {
    flex-shrink: 0;
    max-width: 676px;
}

.home-welcome-image img {
    width: 100%;
    height: auto;
    transform: translateX(56px);
    margin-bottom: 10px;

}

.form-general {
    display: flex;
}

.form-general > div {
    max-width: 360px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.form-general > div input {
    width: 100%;
    height: 60px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--box-shadow-xs);
    border-radius: var(--br-8);
    padding: 14px 18px;
}

.form-general.small > div input {
    height: 48px;
    padding: 12px 14px;
}

.form-general > div input::placeholder {
    color: var(--gray-500);
}

.form-general p {
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    color: var(--gray-500);
    margin-top: 6px;
}

.form-general p a {
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-500);
    transition: all 250ms ease-in-out;
}

.form-general > div p a:hover {
    color: var(--purple-600);
    border-color: var(--purple-600);
}

.form-general > .btn-general {
    margin-left: 16px;
}

/* ==============================
        Partners
============================== */

.partners {
    background-color: #F2F4F7;
}

.partners-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 62px 0;
}

.partners-content div {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 190px;
    height: 36px;
    margin: 18px 32px;
}

.partners-content div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==============================
        How it works
============================== */

.steps-graphics {
    max-width: 1078px;
    width: 100%;
    margin: 0 auto;
}

.steps-graphics img {
    width: 100%;
    height: auto;
}

.steps-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.steps-labels span {
    flex: 1;
    text-align: center;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    flex-shrink: 0;
}

/* ==============================
        Features
============================== */
.features-text-wrapper {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
}

.feature-text-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 16px 24px;
    border-left: 4px solid var(--gray-100);
    cursor: pointer;
}

.feature-text-item.active {
    border-color: var(--purple-500);
    cursor: default;
}

.feature-text-item-header h3 {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
}

.feature-text-item img {
    width: 100%;
    height: auto;
}

.feature-text-item p {
    color: var(--gray-500);
}

.feature-text-item .btn-text {
    margin-top: 20px;
    display: inline-flex;
}

.feature-text-item-body {
    display: none;
    padding-top: 8px;
}

.features-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
}

.feature-image-item {
    display: none;
}

.feature-image-item img {
    width: 100%;
    height: auto;
}

.features-text-footer {
    display: flex;
    justify-content: flex-start;
    padding-left: 24px;
    margin-top: 32px;
}

.feature-inner-text-content img, .documentation-single-content img, .blog-content-container img{
    cursor: zoom-in;
}

/* ==============================
        Interfaces
============================== */

.interfaces-content .section-header {
    margin-bottom: 48px;
}

.tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs .btn-tab {
    border: none;
    background: none;
    padding: 10px 14px;
    height: 44px;
    border-radius: var(--br-6);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b3);
    line-height: var(--lh-b3);
    color: var(--gray-500);
    transition: all 250ms ease-in-out;
}

.tabs .btn-tab:not(:last-child) {
    margin-right: 8px;
}

.tabs .btn-tab.active, .tabs button:hover {
    background: var(--purple-100);
    color: var(--purple-600);
}

.tabs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tab-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    display: none;
}

.tab-item.active {
    display: flex;
}

.tab-item p {
    margin: 0 auto 32px;
    max-width: 775px;
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    color: var(--gray-500);
}

.tab-item img {
    width: auto;
    max-width: 100%;
    height: 490px;
}

.tab-item .btn-general {
    margin-top: 24px;
}

/* ==============================
        Business
============================== */

.business-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.business-item > div {
    border-radius: var(--br-16);
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
}

.business-item > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-item > span {
    font-size: var(--fs-h5);
    line-height: var(--lh-h5);
    font-weight: var(--fw-semi-bold);
}

.business-item > span > a {
    color: var(--gray-700);
}

/* ==============================
        Add-ons
============================== */

.addons-item {
    display: flex;
    flex-direction: column;
    padding: 32px;
    min-height: 256px;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-150);
    border-radius: var(--br-16);
    flex-grow: 1;
    overflow: hidden;
    transition: all 250ms ease-in-out;
}

.addons-item:hover {
    color: var(--gray-700);
    box-shadow: 0 0 10px rgba(109, 47, 253, 0.2);
}

.addons-item .addons-item-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addons-item .addons-item-header .addons-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    box-shadow: 6px 6px 15px -2px rgba(249, 245, 255, 0.25);
    border-radius: var(--br-12);
    overflow: hidden;
}

.addons-item .addons-item-header .addons-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.addons-item .addons-item-header .addons-item-label {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4px 12px;
    background: var(--purple-50);
    border-radius: var(--br-16);
    font-weight: var(--fw-medium);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    color: var(--purple-600);
}

.addons-item .addons-item-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.addons-item .addons-item-body p {
    color: var(--gray-500);
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.addons-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.addons-item-footer .addons-item-info {
    display: flex;
    align-items: center;
}

.addons-item-footer .addons-item-info > *:not(:last-child) {
    margin-right: 10px;
}

.addons-item-footer .addons-item-info .price-old {
    color: var(--gray-500);
    text-decoration: line-through;
}

.addons-item-footer .addons-item-info .price-new {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    font-weight: var(--fw-semi-bold);
    color: var(--rose-500);
}

.addons-item-footer .addons-item-info .price-free {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4px 12px;
    background: var(--rose-50);
    border-radius: var(--br-16);
    font-weight: var(--fw-medium);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    color: var(--rose-500);
}

.tooltip {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.tooltip-box {
    position: absolute;
    bottom: 100%;
    right: -20px;
    width: 200px;
    padding-bottom: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
    cursor: default;
}

.tooltip-box:after {
    position: absolute;
    content: '';
    top: calc(100% - 12px);
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--gray-900);
    z-index: 1;
    border-bottom-right-radius: var(--br-2);
    transform: translateY(-50%) rotate(45deg);
}

.tooltip-box-content {
    padding: 12px;
    background-color: var(--gray-900);
    color: var(--white);
    border-radius: var(--br-8);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    text-align: center;
}

.tooltip:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
}

/* ==============================
        Bussines
============================== */
.advantages-wrapper .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.advantages-wrapper .row:not(:last-child) {
    margin-bottom: 96px;
}

.advantage-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
}

.advantage-text > p {
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-500);
    margin-top: 16px;
}

.advantage-image {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.advantage-image img {
    width: 100%;
    height: auto;
}

/* ==============================
        Hots news
============================== */

.news-text .bknt-info {
    display: flex;
    align-items: center;
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.news-text .bknt-info .bknt-version {
    font-weight: var(--fw-semi-bold);
}

.news-text .bknt-info .bknt-date {
    color: var(--gray-400);
    margin-left: 20px;
}

.news-image {
    padding-left: 24px;
    display: flex;
    align-items: center;
    height: 100%;
}

.news-image img {
    width: 100%;
    height: auto;
}

.news-item {
    display: flex;
}

.news-item:not(:last-child) {
    margin-bottom: 32px;
}

.news-item > span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.news-item > span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.news-item > div {
    display: flex;
    flex-direction: column;
}

.news-item > div > span {
    display: block;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    margin-bottom: 8px;
}

.news-item > div > ul li {
    list-style-type: disc;
    color: var(--gray-500);
    margin-left: 20px;
}

.news-item > div > ul li:not(:last-child) {
    margin-bottom: 8px;
}

/* ==============================
        Roadmap
============================== */
.roadmap-info {
    padding: 64px;
    background: var(--soft-purple-50);
    border-radius: var(--br-16);
}

.roadmap-info-item {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.roadmap-info-item > div {
    display: flex;
    flex-direction: column;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    margin-right: 16px;
}

.roadmap-info-item > span {
    font-weight: var(--fw-semi-bold);
    font-size: 60px;
    line-height: 72px;
    color: var(--rose-500);
}

.roadmap-info-item.right {
    justify-content: flex-end;
}

.roadmap-info-item.center {
    justify-content: center;
}

.roadmap-wrapper {
    position: relative;
}

.roadmap-wrapper .swiper-btn-next, .roadmap-wrapper .swiper-btn-prev {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    background: var(--soft-purple-50);
    border-radius: 50%;
}

.roadmap-wrapper .swiper-btn-next svg, .roadmap-wrapper .swiper-btn-prev svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.roadmap-wrapper .swiper-btn-next svg path, .roadmap-wrapper .swiper-btn-prev svg path {
    fill: var(--purple-700);
}

.roadmap-wrapper .swiper-btn-next {
    right: calc(50% - 30px);
    transform: translateX(50%);
}

.roadmap-wrapper .swiper-btn-prev {
    left: calc(50% - 30px);
    transform: translateX(-50%);
}

.roadmapSwiper:not(.even) .swiper-slide:nth-child(2n) .roadmap-box .v-line {
    bottom: auto;
    top: calc(50% + 2px);
}

.roadmapSwiper:not(.even) .swiper-slide:nth-child(2n) .roadmap-box .message {
    bottom: auto;
    top: calc(50% + 52px);
}

.roadmapSwiper.even .swiper-slide:nth-child(2n + 1) .roadmap-box .v-line {
    bottom: auto;
    top: calc(50% + 2px);
}

.roadmapSwiper.even .swiper-slide:nth-child(2n + 1) .roadmap-box .message {
    bottom: auto;
    top: calc(50% + 52px);
}

.roadmap-box {
    position: relative;
    /* border: 1px solid; */
    height: 420px;
}

.roadmap-box:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gray-150);
    transform: translateY(-50%);
    z-index: 1;
}

.swiper-slide.done .roadmap-box:before {
    background-color: var(--green);
}

.swiper-slide.current .roadmap-box:before {
    background-color: var(--green);
}

.swiper-slide.current:not(.start) .roadmap-box:before {
    background-color: var(--purple-700);
}

.roadmap-box .circle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border: 8px solid var(--gray-100);
    border-radius: 50%;
    box-sizing: content-box;
    z-index: 2;
}

.swiper-slide.done .roadmap-box .circle {
    background: var(--green);
    border-color: var(--green);
    box-shadow: none;
}

.swiper-slide.current .roadmap-box .circle {
    border-color: var(--purple-500);
    box-shadow: 0 0 0 4px var(--gray-150);
}

.roadmap-box .v-line {
    position: absolute;
    bottom: calc(50% + 2px);
    right: 0;
    height: 52px;
    border-right: 2px dashed var(--gray-150);
    transform: translateX(50%);
    z-index: 1;
}

.swiper-slide.done .roadmap-box .v-line {
    border-color: var(--green);
}

.swiper-slide.current .roadmap-box .v-line {
    border-color: var(--purple-500);
}

.roadmap-box .message {
    position: absolute;
    right: 0;
    bottom: calc(50% + 52px);
    padding: 24px;
    width: 296px;
    min-height: 162px;
    background-color: var(--gray-100);
    border-radius: var(--br-16);
    transform: translateX(50%);
}

.swiper-slide.done .roadmap-box .message {
    background-color: var(--green);
}

.swiper-slide.current .roadmap-box .message {
    background-color: var(--purple-500);
}

.roadmap-box .message > span {
    display: block;
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    font-weight: var(--fw-semi-bold);
    margin-bottom: 12px;
}

.swiper-slide.done .roadmap-box .message > span, .swiper-slide.current .roadmap-box .message > span {
    color: var(--white);
}

.roadmap-box .message > p {
    color: var(--gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-slide.done .roadmap-box .message > p, .swiper-slide.current .roadmap-box .message > p {
    color: var(--white);
}

/* ==============================
         References
============================== */

.references-wrapper {
    position: relative;
}

.references-content {
    padding-bottom: 76px;
}

.references-content .section-header {
    margin-bottom: 24px;
}

.referencesSwiper {
    padding: 40px 0;
}

.referencesSwiper .swiper-slide {
    display: flex;
    background: none;
    height: auto;
}

.referencesSwiper .swiper-lazy-preloader {
    background-size: 120px;
}

.reference-box {
    display: block;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--br-16);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 5px 4px 11px rgba(196, 196, 196, 0.15);
}

.reference-box-img {
    position: relative;
    height: 264px;
    overflow: hidden;
}

.reference-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-box-img .overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
}

.reference-box-img .overlay span {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    transform: translateY(50px);
    transition: all 250ms ease-in-out;
}

.reference-box-img .overlay span svg {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.reference-box-text {
    padding: 32px 20px;
    color: var(--gray-700);
}

.reference-box-text p {
    margin-top: 16px;
    color: var(--gray-500)
}

.reference-box:hover .reference-box-img .overlay {
    opacity: 1;
    visibility: visible;
}

.reference-box:hover .reference-box-img .overlay span {
    transform: translateY(0);
}

/* ==============================
         Testimonials
============================== */
.new-testimonials {
    background-color: var(--soft-purple-50);
    position: relative;
}

.new-testimonials-data {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat( auto-fit, minmax(350px, 1fr) );
    font-family: Inter, sans-serif;
}

.new-testimonials:after {
    content: "";
    display: block;
    width: 100%;
    height: 370px;
    position: absolute;
    bottom: 80px;
    background: linear-gradient(to top, var(--soft-purple-50), transparent);
    z-index: 2;
}

.new-testimonial {
    border-radius: 8px;
    background-color: var(--white);
    padding: 24px;
    gap: 12px;
    z-index: 1;
}

.new-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--gray-700);
}

.five-star {
    width: 160px;
}

.done-logo {
    width: 20px;
    margin-right: 7px;
}

.new-testimonial img {
    width: 100%;
}

.new-testimonial-message {
    color: var(--gray-500);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.new-testimonials-footer {
    padding-bottom: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    bottom: 0;
    gap: 1rem;
}

.new-testimonials-footer a {
    padding: 12px 20px;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.buy-booknetic-btn {
    background-color: var(--purple-600);
    color: var(--white);
    text-align: center;
}

.buy-booknetic-btn:hover {
    color: var(--white);
    background-color: var(--purple-700);
}

.all-testimonials-btn {
    background-color: var(--white);
    border: 1px solid #DEE0E3;
    color: #14151A;
}

.all-testimonials-btn:hover {
    color: #14151A;
    background-color: var(--gray-100);
}

@media (width <= 768px) {
    .new-testimonials-footer {
        flex-direction: column;
        padding-bottom: 1.5rem;
    }

    .new-testimonials:after {
        bottom: 0;
    }

    .new-testimonials-data {
        grid-template-columns: repeat( auto-fit, minmax(280px, 1fr) );
    }
}

.testimonials-wrapper {
    position: relative;
}

.testimonialsSwiper {
    position: relative;
    padding-bottom: 48px;
}

.testimonialsSwiper .swiper-slide {
    display: flex;
    background: none;
    height: auto;
    padding-top: 48px;
}

.testimonialsSwiper .swiper-lazy-preloader {
    background-size: 64px;
}

.testimonial-box {
    position: relative;
    display: flex;
    background-color: var(--soft-purple-50);
    padding: 64px 32px 40px;
    border-radius: var(--br-16);
    width: 100%;
}

.testimonial-box-img {
    position: absolute;
    top: 0;
    left: 32px;
    width: 92px;
    height: 92px;
    box-shadow: 0 0 0 8px var(--white);
    border-radius: 50%;
    background-color: var(--soft-purple-25);
    border: 1px solid var(--soft-purple-50);
    overflow: hidden;
    transform: translateY(-50%);
}

.testimonial-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-box-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-box-text > span {
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    margin-bottom: 8px;
}

.testimonial-box-text > p {
    color: var(--gray-500);
    flex-grow: 1;
}

.testimonial-box-text .testimonial-rate {
    display: flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 24px;
}

.testimonial-box-text .testimonial-rate img:not(:last-child) {
    margin-right: 8px;
}

/* ==============================
         Subscribe
============================== */
.subscribe-content .section-header {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0;
}

.subscribe-content .form-general {
    justify-content: flex-end;
}

/* ==============================
         Call to action
============================== */
.call-to-action {
    background-color: var(--white);
}

.call-to-action-content .section-header {
    margin-bottom: 40px;
}

.call-to-action-content .section-header > span {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    font-weight: var(--fw-semi-bold);
}

.call-to-action-content .btns-wrapper {
    justify-content: center;
}

/* ==============================
         Footer
============================== */

.footer {
    background-color: var(--gray-700);
}

.footer .footer-content {
    padding-bottom: 48px;
}

.grid {
    display: column;
    columns: 4;
    gap: 48px;
}

.grid > * {
    break-inside: avoid;
    margin-bottom: 48px;
}

@supports (grid-template-rows: masonry) {
    .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: masonry;
        grid-auto-flow: dense;
        align-tracks: start;
    }

    .grid > * {
        margin-bottom: 0;
    }
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-item > span {
    color: var(--purple-300);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-item > ul li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-item > ul li a, .footer-item > ul li button {
    color: var(--gray-200);
    display: flex;
    align-items: center;
    transition: color 250ms ease-in-out;
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
}

.footer-item > ul li a span {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--br-16);
    font-weight: var(--fw-medium);
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: var(--white);
    margin-left: 12px;
}

.footer-item > ul li a:hover, .footer-item > ul li button:hover {
    color: var(--purple-300);
}

.copyright {
    margin: 64px 0 86px;
}

.copyright-primary, .copyright-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-primary {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--gray-500);
}

.footer-logo {
    display: block;
    width: 120px;
    height: auto;
}

.site-langs {
    position: relative;
}

.site-langs .selected-lang {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: color 250ms ease-in-out;
}

.site-langs .selected-lang img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 8px;
}

.site-langs .selected-lang svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-left: 2px;
    transition: transform 250ms ease-in-out;
}

.site-langs .selected-lang svg path {
    stroke: var(--white);
    transition: stroke 250ms ease-in-out;
}

.site-langs .selected-lang:hover,
.site-langs.active .selected-lang {
    color: var(--purple-300);
}

.site-langs .selected-lang:hover svg path,
.site-langs.active .selected-lang svg path {
    stroke: var(--purple-300);
}

.site-langs .lang-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    min-width: 100%;
    padding-bottom: 12px;
    margin-bottom: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease-in-out;
}

.site-langs .lang-dropdown ul {
    padding: 12px;
    background: var(--white);
    border-radius: var(--br-16);
}

.site-langs .lang-dropdown ul li a {
    color: var(--gray-700);
    font-weight: var(--fw-medium);
    display: flex;
    padding: 12px;
    border-radius: var(--br-8);
    transition: background-color 250ms ease-in-out;
}

.site-langs .lang-dropdown ul li a img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 8px;
}

.site-langs.active .selected-lang svg {
    transform: rotate(180deg);
}

.site-langs.active .lang-dropdown {
    margin-bottom: 0;
    opacity: 1;
    visibility: visible;
}

.site-langs .lang-dropdown ul li a:hover {
    background-color: var(--soft-purple-25);
}

.social-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-list li a {
    color: var(--gray-200);
    transition: color 250ms ease-in-out;
}

.social-list li a svg, .social-list li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-list li a svg path {
    fill: var(--gray-200);
    transition: all 250ms ease-in-out;
}

.social-list li a:hover {
    color: var(--purple-300);
}

.social-list li a:hover svg path {
    fill: var(--purple-300);
}

.copyright-secondary > p {
    color: var(--gray-300);
}

/* ==============================
        Features Welcome
============================== */
.features-welcome {
    background-image: url('../../img/patterns/features.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}

.features-welcome-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.features-welcome-text {
    display: flex;
    flex-direction: column;
    margin-right: 32px;
}

.features-welcome-text > p {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    max-width: 462px;
    margin-top: 24px;
}

.features-welcome-text .btns-wrapper {
    margin-top: 48px;
}

.features-welcome-text .btns-wrapper > *:not(:last-child) {
    margin-right: 24px;
}

.features-welcome-image {
    max-width: 678px;
}

.features-welcome-image img {
    width: 100%;
    height: auto;
}

/* ==============================
        Interests
============================== */
.interests-content {
    padding-bottom: 0 !important;
}

.interests-content .section-header {
    margin-bottom: 32px;
}

.filters-button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 24px;
}

.filters-button-group .btn-general.primary {
    pointer-events: none;
}

.filters-button-group .btn-general {
    min-width: auto;
    user-select: none;
}

.tags-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tags-wrapper .btn-tag {
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: var(--br-16);
    font-weight: var(--fw-medium);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    text-align: center;
    color: var(--gray-700);
    margin: 4px 8px;
    cursor: pointer;
    user-select: none;
}

.tag-holder {
    display: inline-flex;
    background: var(--gray-100);
    border-radius: var(--br-16);
    margin: 4px 8px;
}

.tag-holder .btn-tag-name, .tag-holder .btn-tag-clear {
    font-weight: var(--fw-medium);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    text-align: center;
    color: var(--gray-700);
    padding: 4px 12px;
}

.tag-holder .btn-tag-clear {
    align-items: center;
    justify-content: center;
    display: none;
}

.tag-holder .btn-tag-clear svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.tag-holder .btn-tag-clear svg path {
    stroke: var(--gray-700);
}

.tag-holder.active {
    background: #EFF8FF;
}

.tag-holder.active .btn-tag-name {
    color: #175CD3;
    padding-right: 0;
    pointer-events: none;
}

.tag-holder.active .btn-tag-clear {
    display: flex;
    padding-left: 8px;
}

.tags-wrapper .btn-tag.active {
    background: #EFF8FF;
    color: #175CD3;
}

.search {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--box-shadow-xs);
    border-radius: var(--br-8);
    padding: 10px 12px;
    height: 44px;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
}

.search button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
}

.search button svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.search button svg path {
    stroke: var(--gray-500);
}

.search button.search-loupe {
    margin-right: 8px;
    cursor: default;
}

.search button.clear-filter {
    margin-left: 8px;
    display: none;
}

.search.active button.clear-filter {
    display: flex;
}

.search input {
    flex-grow: 1;
    border: none;
}

.search input::placeholder {
    color: var(--gray-500);
}

.header-search-result {
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    padding: 12px;
    margin-top: 24px;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--box-shadow-xs);
    transition: all 250ms ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.header-search-result.show {
    visibility: visible;
    opacity: 1;
    margin-top: 4px;
}

.header-search-result-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 220px;
    padding: 0 12px;
    overflow: auto;
    overscroll-behavior: contain;
}

.header-search-result-content > ul {
    margin-bottom: 12px;
    text-align: left;
}

.header-search-result-content > *:last-child {
    margin-bottom: 0;
}

.header-search-result-content > span {
    display: block;
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    color: var(--purple-600);
    font-weight: var(--fw-medium);
    margin-bottom: 12px;
}

.header-search-result-content > ul li:not(:last-child) {
    margin-bottom: 12px;
}

.header-search-result-content > ul li a {
    display: block;
    color: var(--gray-700);
}

.header-search-result-content > ul li a span {
    display: inline-block;
    font-weight: var(--fw-semi-bold);
    background-color: var(--purple-200);
}

.interests-wrapper {
    padding-top: 64px;
}

.isotope-grid-item {
    display: flex;
}

.isotope-grid-item .addons-item .addons-item-body {
    height: 110px;
    overflow: hidden;
}

.isotope-grid-item .addons-item .addons-item-body > h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.isotope-grid-item .addons-item .addons-item-body > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gnext, .gprev {
    display: none !important;
}

/* ==============================
        Features inner
============================== */
.feature-inner-welcome .container {
    max-width: 960px;
}

.feature-inner-welcome-content.content-box-lg {
    padding-top: 0;
}

.feature-inner-text-content.content {
    max-width: none;
}

.feature-info-wrapper {
    display: flex;
}

.helper-text {
    color: var(--gray-500);
    font-weight: var(--fw-medium);
    font-size: var(--fs-b3);
}

.feature-info-wrapper .feature-icon {
    overflow: hidden;
    margin-right: 40px;
    flex-shrink: 0;
}

.feature-info-wrapper .feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-info-wrapper .feature-title {
    display: block;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
}

.feature-info-wrapper .feature-info {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.feature-info-wrapper .feature-info > *:not(:last-child) {
    margin-right: 10px;
}

.feature-info-wrapper .feature-info .feature-type {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    flex-shrink: 0;
}

.feature-info-wrapper .feature-info .price-old {
    color: var(--gray-500);
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    text-decoration: line-through;
}

.feature-info-wrapper .feature-info .price-new {
    font-weight: var(--fw-semi-bold);
    font-size: 24px;
    line-height: 32px;
    color: var(--rose-500);
    display: flex;
    align-items: center;
    gap: 5px;
}

.buy-addon-btn {
    margin-top: 12px;
    width: 157px;
    padding: 16px 28px !important;
}

/* buy addon modal */
.addon-flex {
    display: flex;
    gap: 32px;
}

.addon-installation-container div:nth-child(2) {
    flex-direction: row-reverse;
}

.addon-installation-container > div {
    align-items: center;
}

.addon-installation-container {
    flex-direction: column;
}

.addon-installation-container img {
    width: 409px;
}

.addon-modal-dialog {
    max-width: 814px;
    position: relative;
    height: initial !important;
}

.addon-modal-content .modal-header, .modal-body {
    padding: 0;
}

.modal-body {
    margin-top: 32px;
}

.modal-header {
    text-align: center;
    position: relative;
}

.modal-header p {
    line-height: normal;
    margin-top: 12px;
}

.addon-modal-header {
    color: #000;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b1);
    line-height: 30px;
}

.addon-modal-content {
    padding: 32px !important;
}

.addon-modal-content:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 165px;
    width: 100%;
    background: linear-gradient(180deg, rgba(108, 112, 220, 0.27) 0%, rgba(108, 112, 220, 0.00) 100%);
}

.step-info h3 {
    color: #000;
    margin-bottom: 16px;
    font-size: var(--fs-b2);
}

.addon-modal-content p {
    color: #6D7496;
}

#buy-addon-modal::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#buy-addon-modal {
    scrollbar-width: thin;
}

.modal-dismiss {
    border-radius: 30px;
    width: 36px;
    height: 36px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: -10px !important;
    right: 0 !important;
    background-color: rgba(108, 112, 220, 0.10) !important;
}

.feature-info-wrapper .feature-info .price-free {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    padding: 5px 14px;
    background: var(--rose-50);
    border-radius: var(--br-16);
    font-weight: var(--fw-medium);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    color: var(--rose-500);
}

.feature-inner-welcome-content .price-countdown {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    align-self: flex-start;
    padding: 3px 12px;
    background: var(--rose-50);
    border-radius: var(--br-16);
    font-weight: var(--fw-medium);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    margin-top: 24px;
}

.feature-inner-welcome-content .price-countdown > img {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-right: 4px;
}

.feature-inner-welcome-content .price-countdown > span {
    margin: 1px 4px 1px 0;
}

.feature-inner-welcome-content .price-countdown > div {
    display: flex;
    align-items: center;
    color: var(--rose-500);
    min-width: 120px;
    margin: 1px 0;
}

.feature-inner-welcome-content .price-countdown > div div:not(:last-child) {
    margin-right: 4px;
}

.feature-inner-welcome-content .feature-desc {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    color: var(--gray-500);
    margin-top: 24px;
}

.feature-inner-welcome-content .btns-wrapper {
    margin-top: 48px;
}

/* ==============================
        Pricing
============================== */

.feature-info-wrapper .feature-info .original-addon-price {
    color: #ff3d71;
    text-decoration: line-through;
    font-size: 18px;
}

.feature-info-wrapper .feature-info .discounted-addon-price {
    color: var(--gray-700);
}

.pricing-welcome {
    padding-top: 70px;
    background: url('../../img/pricing-welcome.svg') no-repeat top center;
    background-size: cover;
    margin-bottom: 85px;
}

body:has(.discount-bf) .pricing-welcome {
    background: url('../../img/bf-pricing-welcome.png') no-repeat bottom;
    background-size: cover;
}

body:has(.discount-bf) .pricing-welcome header h1,
body:has(.discount-bf) .pricing-welcome header h2{
    color: #fff;
}

.pricing-badges {
    margin-block: 24px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pricing-badges .badge {
    border-radius: 50px;
    background: #F4EBFF;
    padding: 6px 12px 6px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

#pricing-page button:hover {
    filter: brightness(90%);
}

.pricing-welcome header {
    text-align: center;
}

.saas-pricing-page .pricing-welcome header {
    padding-bottom: 35px;
}

.saas-pricing-page .pricing-welcome {
    margin-bottom: 170px;
}

.pricing-welcome header h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 10px;
}

.pricing-welcome header h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
}

.pricing-container.saas {
    padding: 15px;
}

.price-cart {
    border-radius: 16px;
    position: relative;
    flex: 0 0 289px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--gray-200);
    padding: 4px;
    box-sizing: border-box;
}

.saas-pricing-page .price-cart.standard .price-cart-feature-list svg {
    fill: #26D090;
}

.saas-pricing-page .price-cart.ultimate .price-cart-feature-list svg {
    fill: #E8B32C;
}

.saas-pricing-page .price-cart.infinity .price-cart-feature-list svg {
    fill: #9161FF;
}

.saas-pricing-page .price-cart {
    flex: 1 0 300px;
}

.saas-pricing-page .price-cart-feature-list:not(.saas) {
    min-height: 144px;
}

.price-cart.premium {
    border: none;
    padding: 5px;
    background: linear-gradient(90deg, #9E74FF 0.46%, #FF3D71 89.68%);
}

.price-cart.infinity {
    border: none;
    padding: 5px;
    border-radius: 16px;
    box-shadow: 0 0 10px 6px rgba(108, 112, 220, 0.70);
    background: url(../../img/patterns/infinity-bg.png) center center;
}

.price-cart.infinity .price-cart-type,
.price-cart.infinity .price-cart-description-saas,
.price-cart.infinity .one-time-payment,
.price-cart.infinity .price-cart-feature-list li,
.price-cart.infinity .tenant-features {
    color: #fff;
}

.price-cart.infinity .see-all-features {
    background-color: var(--white);
}

.price-cart.infinity .inner-price-cart {
    background: url(../../img/patterns/infinity-bg.png) center center;
}

.price-cart.elite, .price-cart.ultimate {
    border: none;
    padding: 5px;
    background: linear-gradient(215deg, #F3D76A 6.13%, #ECB72D 76.46%, #B17811 100%);
}

.price-cart.ultimate {
    box-shadow: 0 0 16px 4px rgba(255, 235, 116, 0.50);
}

.inner-price-cart {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}

.price-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #2E3A59;
    border-radius: 0 16px 0 40px;
    padding: 13px 14px 18px 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    text-transform: uppercase;
}

.price-cart.premium .price-cart-badge {
    background: linear-gradient(266deg, #F9417B 0.46%, #DD51A3 89.68%);
}

.price-cart.elite .price-cart-badge {
    color: #2E3A59;
    background: linear-gradient(264deg, #F3D566 6.13%, #F3D464 76.46%);
}

.price-cart.ultimate .price-cart-badge {
    color: #2E3A59;
    background: linear-gradient(87deg, #E0B13D 0%, #F6D763 51.5%, #EFDA8B 100%);
}

.price-cart.infinity .price-cart-badge {
    border-radius: 0 16px 0 40px;
    background: linear-gradient(87deg, rgba(113, 53, 253, 0.70) 0%, rgba(118, 59, 253, 0.86) 51.5%, #814BFE 100%);
}

.price-cart-icon {
    margin-bottom: 20px;
}

.price-cart-icon img {
    width: 40px;
}

.price-cart-type {
    color: var(--gray-500);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.price-cart-name {
    color: var(--gray-700);
    font-size: 24px;
    font-weight: 700 !important;
    line-height: 44px;
    letter-spacing: -0.48px;
}

.price-cart-description {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding-bottom: 10px;
}

.one-time-payment {
    color: var(--gray-700);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 14px;
}

.domain-count {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-cart-feature-list {
    padding-block: 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.price-cart-feature-list.saas {
    padding-block: 10px 24px;
}

.price-cart-feature-list li {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-cart-feature-list hr{
    margin-top: auto;
}

.price-cart-feature-list li > .price-cart-feature-list-colored {
    color: var(--gray-700);
    font-weight: 600;
    text-decoration: underline;
}

.price-cart-feature-list li img {
    width: 24px;
}

.price-cart-feature-list-separator {
    margin-top: auto;
    margin-bottom: 15px;
}

.see-all-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--gray-300);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    color: var(--gray-650) !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: auto;
    margin-bottom: 20px;
}

.see-all-features img {
    width: 20px;
    height: 20px;
}

.package-total-price {
    margin-top: auto;
    color: var(--gray-700);
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.64px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 54px;
}

.price-cart.infinity .package-total-price {
    color: #FFE67B;
}

#pricing-page .price-cart.infinity .old-price {
    color: #fff;
}

#pricing-page .price-cart.infinity .old-price::before {
    background: #fff;
}


.buy-now-btn {
    padding: 12px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 8px;
    background: var(--gray-700);
    width: 100%;
    border: none;
}

.domain-badge {
    padding: 4px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    background-color: #FD9B78;
    border-radius: 30px;
    text-wrap: nowrap;
}

.pricing-table-header.premium .domain-badge {
    background-color: var(--gray-700);
}

.price-cart.premium .buy-now-btn, .pricing-table-header.premium .buy-now-btn {
    background: linear-gradient(83deg, #9F75FF 8.5%, #DE51A2 88.56%);
}

.pricing-table-header.ultimate .price-cart-name {
    background: linear-gradient(87deg, #E0B13D 0%, #F6D763 51.5%, #EFDA8B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-cart.infinity .buy-now-btn, .pricing-table-header.infinity .buy-now-btn {
    background: linear-gradient(87deg, #6D2FFD 0%, #8E5DFF 100%);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.price-cart.premium .price-cart-name, .pricing-table-header.premium .price-cart-name {
    background: linear-gradient(87deg, #9E74FF -7.29%, #FF3D71 74.22%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-cart.ultimate .price-cart-name {
    background: linear-gradient(87deg, #E0B13D 0%, #F6D763 51.5%, #EFDA8B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-cart.infinity .price-cart-name {
    color: #FFE67B;
}

.price-cart-description {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding-bottom: 10px;
    height: 90px;
}

.tenant-features {
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 6px;
}

.pricing-table-header.elite .domain-badge,
.price-cart.elite .buy-now-btn,
.pricing-table-header.elite .buy-now-btn,
.price-cart.ultimate .buy-now-btn,
.pricing-table-header.ultimate .buy-now-btn {
    background: linear-gradient(87deg, #E0B13D 0%, #F6D763 51.5%, #EFDA8B 100%);
    color: var(--gray-700);
}

#pricing-page .old-price {
    padding-top: 10px;
    color: #FF0000;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.44px;
}

.old-price:before {
    height: 2px;
    background: #FF0000;
    position: absolute;
    transform: rotate(-15deg);
    content: '';
    top: 59%;
    left: -4px;
    width: 120%;
    transform-origin: center center;
}

.detailed-price-info {
    margin-bottom: 77px;
}

.detailed-price-info .container {
    overflow-x: auto;
}

.addon-name-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.detailed-price-info tbody tr:nth-child(odd) {
    background-color: var(--gray-50);
}

.detailed-price-info table {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.detailed-price-info tbody td, .detailed-price-info th {
    padding: 24px 28px;
    border-right: thin solid #E3EAF3;
    width: 238px;
}

.detailed-price-info tbody td:first-child {
    padding: 24px;
    width: 288px;
}

.saas-pricing-page .detailed-price-info tbody td:first-child, .saas-pricing-page .detailed-price-info tbody td, .detailed-price-info th {
    width: 311px;
}

.detailed-price-info th {
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: 20px;
}

.pricing-table-heading-text {
    font-weight: 700;
    line-height: 32px;
    font-size: 22px;
    color: var(--gray-700);
    text-transform: uppercase;
    position: relative;
    bottom: 45px;
}

.pricing-table-header .price-cart-icon {
    width: 24px;
    margin-bottom: 0;
}

.pricing-table-header .price-cart-name {
    font-size: 22px;
    letter-spacing: -0.48px;
    margin-bottom: 0;
    line-height: 35px;
}

.pricing-table-header .package-total-price {
    margin-bottom: 5px;
    line-height: 34px;
}

.saas-pricing-page .pricing-table-header .package-total-price {
    width: 265px;
}

.pricing-table-header .domain-count {
    margin-bottom: 33px;
}

.pricing-table-header .buy-now-btn {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 47px;
}

.detailed-price-info .old-price {
    font-size: 14px !important;
    line-height: 36px;
    letter-spacing: -0.28px;
}

.detailed-price-info .old-price:before {
    height: 1px;
    line-height: 36px;
    left: 0;
    top: 62%;
    letter-spacing: -0.28px;
}

#pricing-page .hidden {
    position: relative;
    visibility: hidden;
    user-select: none;
    opacity: 0;
    z-index: -1;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    margin-bottom: 24px;
}

.rating-point span:first-child {
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
}

.rating-point span:last-child {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
}

.rating-stars {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.rating-stars > img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.rating-stars > img:not(:last-child) {
    margin-right: 8px;
}

/* ==============================
            FAQ
============================== */

.faq-items-wrapper {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    padding-bottom: 32px;
}

.faq-item:not(:last-child) {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.faq-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    cursor: pointer;
}

.faq-item-header > span {
    font-size: var(--fs-h5);
    line-height: var(--lh-h5);
    font-weight: var(--fw-medium);
}

.faq-item-header .btn-collapse {
    width: 24px;
    height: 24px;
    margin-left: 24px;
    flex-shrink: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.faq-item-header .btn-collapse img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-item .faq-item-header .btn-collapse img.minus {
    display: none;
}

.faq-item.active .faq-item-header .btn-collapse img.plus {
    display: none;
}

.faq-item.active .faq-item-header .btn-collapse img.minus {
    display: block;
}

.faq-item-body {
    display: none;
    color: var(--gray-500);
}

.faq-item-body a {
    color: var(--purple-600);
    font-weight: var(--fw-medium);
}

.faq-item-body p {
    font-size: var(--fs-b3);
    line-height: var(--lh-b3);
}

.faq-item-body p, .faq-item-body ol, .faq-item-body ul, .faq-item-body table, .faq-item-body p img {
    padding-bottom: 24px;
}

.faq-item-body ul {
    padding-left: 24px;
}

.faq-item-body li {
    list-style: unset;
}

.faq-item-body li:not(:last-child) {
    margin-bottom: 8px;
}

.faq-item-body img {
    width: 100%;
    height: auto;
}

.live-chat {
    padding: 32px;
    background: var(--soft-purple-50);
    border-radius: var(--br-16);
    margin-top: 32px;
}

.live-chat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.live-chat-content > span {
    font-size: var(--fs-h5);
    line-height: var(--lh-h5);
    font-weight: var(--fw-semi-bold);
}

.live-chat-content > img {
    width: 120px;
    height: auto;
    margin-bottom: 32px;
}

.live-chat-content > p {
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-500);
    margin-top: 8px;
}

.live-chat-content > .btns-wrapper {
    margin-top: 32px;
}

/* ==============================
        Payments
============================== */
.payments-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 78px;
}

.payments-wrapper > div {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    height: 44px;
    margin: 0 36px 18px;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
}

.payments-wrapper > div img {
    width: auto;
    height: 100%;
    object-fit: contain;
    margin-right: 12px;
}

/* ==============================
        Saas welcome
============================== */

.saas-welcome {
    background-image: url('../../img/patterns/saas.svg');
    background-position: left 0 bottom 0;
    background-repeat: no-repeat;
}

.saas-welcome-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.saas-welcome-text {
    display: flex;
    flex-direction: column;
    margin-right: 32px;
    max-width: 506px;
}

.saas-welcome-text > p {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    max-width: 462px;
    margin-top: 24px;
}

.saas-welcome-text .btns-wrapper {
    margin-top: 48px;
}

.saas-welcome-text .btns-wrapper > *:not(:last-child) {
    margin-right: 24px;
}

.saas-welcome-image {
    max-width: 678px;
    min-height: 200px;
}

.saas-welcome-image img {
    width: 100%;
    height: 100%;
}

/*#saas-page .faq-content {*/
/*    padding-top: 48px;*/
/*}*/

#saas-page .addons-wrapper .addons-row:not(:last-child) {
    margin-bottom: 48px;
}

#saas-page .addons-wrapper .addons-row.hidden {
    display: none;
}

/* ==============================
        What is saas
============================== */

.whats-saas .section-header {
    margin-bottom: 96px;
}

.whats-saas-text, .whats-saas-image {
    display: flex;
    flex-direction: column;
    max-width: 560px;
    min-height: 200px;
}

.whats-saas-text > p {
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-500);
    margin-top: 16px;
}

.whats-saas-image {
    margin-left: auto;
}

.whats-saas-image img {
    width: 100%;
    height: 100%;
}

/* ==============================
        How it works - saas
============================== */
.how-it-works-content {
    padding-bottom: 64px;
}

.how-it-works-wrapper {
    padding: 32px 0;
}

.how-it-works .featured-icon {
    background-color: var(--soft-purple-200);
    border-color: var(--soft-purple-150);
}

.how-it-works-box {
    transition: all 500ms ease-out;
}

.how-it-works-box p {
    margin-top: 16px;
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-500);
}

/* IMage comparison slider */
#image-comparison-slider {
    position: relative;
    width: 592px;
    cursor: col-resize;
    border-radius: var(--br-16);
    transition: transform 500ms ease-out;
    z-index: 2;
    box-shadow: var(--box-shadow-lg);
}

#image-comparison-slider img {
    display: block;
    width: 592px;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    border-radius: var(--br-16);
}

#image-comparison-slider .img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transition: width 500ms ease-out;
}

#image-comparison-slider .img-wrapper img {
    position: absolute;
    top: 0;
    right: 0;
}

#image-comparison-slider .handle {
    position: absolute;
    top: -32px;
    left: 50%;
    height: calc(100% + 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    z-index: 2;
    transition: all 500ms ease-out;
}

#image-comparison-slider .handle-line {
    width: 2px;
    flex-grow: 1;
    background-color: var(--purple-600);
}

@keyframes move-handle {
    0% {
        left: 50%;
    }

    25% {
        left: 60%;
    }

    75% {
        left: 40%;
    }

    100% {
        left: 50%;
    }
}

@keyframes move-slider-wrapper {
    0% {
        width: 50%;
    }

    25% {
        width: 40%;
    }

    75% {
        width: 60%;
    }

    100% {
        width: 50%;
    }
}

@media (prefers-reduced-motion: no-preference) {
    #image-comparison-slider.move-animation .img-wrapper {
        animation: move-slider-wrapper 2s ease-in-out 1;
    }

    #image-comparison-slider.move-animation .handle {
        animation: move-handle 2s ease-in-out 1;
    }
}


/* ==============================
       Saas business
============================== */
.saas-business .section-header {
    margin-bottom: 96px;
}

.saas-business-wrapper .row:not(:last-child) {
    margin-bottom: 96px;
}

.saas-business-text, .saas-business-image {
    display: flex;
    flex-direction: column;
    max-width: 560px;
}

.saas-business-image {
    margin-left: auto;
}

.saas-business-text > p {
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-500);
    margin-top: 16px;
}

.saas-business-image img {
    width: 100%;
    height: auto;
}

.saas-business-wrapper .row.part-1 {
    position: relative;
    margin-bottom: 0 !important;
}

.saas-business-wrapper .row.part-1:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: calc(100% - 24px);
    height: 2px;
    /*border-top: 2px dashed var(--gray-300);*/
    transform: translate(-50%, -50%);
}

.saas-business-wrapper .row.part-1 .saas-business-text,
.saas-business-wrapper .row.part-1 .saas-business-image {
    justify-content: flex-end;
}

.saas-business-wrapper .row.part-1 .saas-business-text {
    padding-bottom: 32px;
}

.saas-business-wrapper .row.part-2 .saas-business-text,
.saas-business-wrapper .row.part-2 .saas-business-image {
    justify-content: flex-start;
}

.saas-business-wrapper .row.part-2 .saas-business-text {
    padding-top: 32px;
}

/* ==============================
       Saas setup
============================== */

.saas-setup .section-header {
    margin-bottom: 96px;
}

.saas-setup-wrapper .row:not(:last-child) {
    margin-bottom: 96px;
}

.saas-setup-text {
    display: flex;
    flex-direction: column;
}

.saas-setup-text > p {
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-500);
    margin-top: 16px;
}

.saas-setup-image img {
    width: 100%;
    height: auto;
}

.saas-setup-image, .saas-setup-text {
    max-width: 560px;
}

.saas-setup-text {
    margin-left: auto;
}

.saas-setup .featured-icon {
    background-color: var(--soft-purple-200);
    border-color: var(--soft-purple-150);
}

/* ==============================
       Saas pricing
============================== */

.market-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
}

.market-rating > img {
    width: 124px;
    height: auto;
}

.market-rating > div {
    display: flex;
    justify-content: space-between;
}

.market-rating-point {
    margin-right: 16px;
}

.market-rating-point span:first-child {
    font-weight: var(--fw-medium);
    font-size: 24px;
    line-height: 32px;
}

.market-rating-point span:last-child {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
}

.market-rating-stars {
    display: flex;
    align-items: center;
}

.market-rating-stars > img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.market-rating-stars > img:not(:last-child) {
    margin-right: 8px;
}

/*SAAS Pricing Card*/
.saas-pricing-wrapper {
    background-color: var(--white);
    max-width: 608px;
    margin: auto;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.saas-pricing-wrapper .pricing-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
}

.saas-pricing-wrapper .pricing-card-header .price {
    color: var(--gray-700);
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.saas-pricing-wrapper .pricing-card-header .price-desc {
    color: var(--gray-500);
}

.saas-pricing-wrapper .pricing-card-footer {
    padding: 32px;
    margin: auto;
    background-color: var(--gray-50);
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.saas-pricing-wrapper .pricing-card-footer button {
    width: 60%;
    margin: auto;
}

.saas-pricing-wrapper .featured-icon {
    margin-bottom: 8px;
}

.saas-pricing-wrapper .featured-list {
    display: block;
    column-count: 2;
    column-gap: 32px;
    padding: 0 32px 32px 32px;
    margin: 0;
}

/* ==============================
         Case studies
============================== */

.case-study-wrapper {
    position: relative;
}

.case-study-content {
    padding-bottom: 0;
}

.case-study-content .section-header {
    margin-bottom: 24px;
}

.caseStudySwiper {
    padding-top: 40px;
}

.caseStudySwiper .swiper-slide {
    display: flex;
    background: none;
    height: auto;
}

.caseStudySwiper .swiper-lazy-preloader {
    background-size: 120px;
}

.case-study-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--br-16);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--gray-200);
    box-shadow: 0 0 16px 1px rgba(196, 196, 196, 0.15);
}

.case-study-box-img {
    position: relative;
    height: 330px;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.case-study-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-box-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    padding: 32px 20px;
    color: var(--gray-700);
}

.case-study-box-text p {
    margin-top: 16px;
    color: var(--gray-500);
    flex-grow: 1;
}

.case-study-box-text .btn-text {
    margin-top: 16px;
}

.case-study-box-text > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.case-study-box-text .label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-box-text .label-wrapper span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 4px 12px;
    text-align: center;
    background-color: #FFFAEB;
    color: #B54708;
    border-radius: var(--br-16);
    margin-left: 8px;
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    font-weight: var(--fw-medium);
}

/* ==============================
         Faq page
============================== */
#faq-page .call-to-action-content {
    padding-top: 48px;
}

mark {
    padding: 0;
    background: var(--purple-200);
    color: var(--gray-700);
    -webkit-text-fill-color: var(--gray-700);
}

/* ==============================
         Blogs page
============================== */
.summary {
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.summary:hover {
    border-color: #c4b5fd;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.summary.highlighted {
    border-color: #c4b5fd;
    background-color: rgba(243, 232, 255, 0.3);
}

.accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
    border-radius: 0.375rem 0.375rem 0 0;
}

.title-section {
    display: flex;
    align-items: center;
}

.title-indicator {
    width: 4px;
    height: 1.5rem;
    background-color: #8b5cf6;
    border-radius: 9999px;
    margin-right: 0.75rem;
}

.title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.section-header.blogs {
    flex-direction: row;
    justify-content: space-between;
    max-width: none;
    margin: 0 0 32px;
    font-weight: var(--fw-semi-bold);
    font-size: 24px;
    line-height: 32px;
}

.section-footer.blogs {
    margin-top: 48px;
}

.all-blogs-content {
    border-bottom: 1px solid var(--gray-200);
}

.blog-card {
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--br-16);
    background-color: var(--white);
    overflow: hidden;
}

.blog-card.md {
    box-shadow: var(--box-shadow-xl);
}

.blog-card.lg {
    flex-direction: row;
    padding: 24px;
}

.blog-card .blog-card-img {
    position: relative;
    width: 100%;
    height: 200px;
}

.blog-card.md .blog-card-img {
    height: 308px;
}

.blog-card.lg .blog-card-img {
    height: 302px;
    border-radius: var(--br-16);
    overflow: hidden;
    flex: 1;
}

.blog-card .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .blog-card-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card.lg .blog-card-content {
    flex: 1;
    padding: 0 0 0 32px;
}

.blog-card .blog-title {
    font-weight: var(--fw-semi-bold);
    font-size: 24px;
    color: var(--gray-700);
    line-height: 32px;
    margin-bottom: 8px;
    transition: all 250ms ease-in-out;
}

.blog-card .blog-title:hover {
    color: var(--purple-700);
}

.blog-card.md .blog-title,
.blog-card.lg .blog-title {
    margin-bottom: 12px;
}

.blog-card .blog-desc {
    color: var(--gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px;
}

.blog-card.lg .blog-desc {
    -webkit-line-clamp: 5;
}

.blog-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.blog-author .author-img {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-right: 12px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-author .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author .author-info {
    display: flex;
    flex-direction: column;
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    text-align: left;
}

.blog-author .author-info .author-name {
    font-weight: var(--fw-semi-bold);
}

.blog-author .author-info .date {
    color: var(--gray-500);
}

/* blog pagination */
.main-pagination-elements, .blog-pagination-btn, .blog-pagination-element {
    display: flex;
    align-items: center;
}

.blog-pagination-btn, .blog-pagination-element {
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.blog-pagination-element {
    justify-content: center;
    width: 40px;
    height: 40px;
}

.blog-pagination-element, .blog-pagination-element a {
    color: var(--gray-600);
}

.blog-pagination-btn.disabled {
    color: var(--gray-400);
}

.blog-pagination-btn.disabled path {
    stroke: var(--gray-400);
}

.blog-pagination-element a:hover {
    color: var(--purple-500);
}

.blog-pagination-element.active {
    border-radius: 50%;
    background-color: var(--white);
}

.blog-pagination-btn:not(.disabled) {
    color: var(--gray-500);
}

.blog-pagination-btn:not(.disabled) {
    stroke: var(--gray-500);
}

.blog-pagination-btn:not(.disabled):hover {
    color: var(--purple-500);
}

.blog-pagination-btn:not(.disabled):hover path {
    stroke: var(--purple-500);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b4);
    line-height: var(--lh-b4);
    width: 88px;
    flex-shrink: 0;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn.btn-next {
    justify-content: flex-end;
}

.pagination-btn svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.pagination-btn span {
    color: var(--gray-600);
    transition: all 250ms ease-in-out;
}

.pagination-btn.btn-prev span {
    margin-left: 8px;
}

.pagination-btn.btn-next span {
    margin-right: 8px;
}

.pagination-btn svg path {
    stroke: var(--gray-600);
    transition: all 250ms ease-in-out;
}

.pagination-btn:not(.disabled):hover span {
    color: var(--purple-600);
}

.pagination-btn:not(.disabled):hover svg path {
    stroke: var(--purple-600);
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.pagination-bullet {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    color: var(--gray-600);
    font-weight: var(--fw-medium);
    transition: all 250ms ease-in-out;
    overflow: hidden;
    margin: 0 3px;
}

.pagination-bullet.active {
    background-color: var(--white);
    color: var(--gray-800);
}

.pagination-bullet:not(.active):hover {
    color: var(--purple-600);
}

/* ==============================
         Blog inner page
============================== */
.blog-welcome {
    padding-bottom: 96px;
}

.blog-welcome-content .section-header {
    max-width: 880px;
}

.blog-welcome-content .section-header h1 {
    font-size: 48px;
    line-height: 60px;
}

.blog-details {
    background-color: var(--white);
}

.blog-details-content .blog-img {
    max-width: 680px;
    margin: 0 auto;
}

.blog-img {
    transform: translateY(-96px);
}

.blog-img img {
    width: 100%;
    height: auto;
    border-radius: var(--br-16);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog-share span {
    font-weight: var(--fw-medium);
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-600);
    margin-bottom: 16px;
}

.blog-share ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-share ul li:not(:last-child) {
    margin-bottom: 12px;
}

.blog-share ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    box-shadow: var(--box-shadow-xs);
    border-radius: 50%;
    transition: all 250ms ease-in-out;
}

.blog-share ul li a svg, .blog-share ul li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.blog-share ul li a svg path {
    transition: all 250ms ease-in-out;
}

.blog-share ul li a svg path {
    fill: var(--gray-400);
}

.blog-share ul li:hover a {
    border-color: var(--gray-500);
}

.blog-share ul li:hover a svg path {
    fill: var(--gray-600);
}


/* Similar Blogs */
.similar-blogs-content .section-header.blogs {
    margin-bottom: 0;
}

.similar-blogs-content {
    padding-bottom: 72px;
    border-bottom: 1px solid var(--gray-200);
}

.similar-blogs-wrapper {
    position: relative;
}

.similarBlogsSwiper {
    padding-bottom: 72px;
}

.similarBlogsSwiper {
    padding: 24px 0;
}

.similarBlogsSwiper .swiper-slide {
    display: flex;
    background: none;
    height: auto;
    max-width: 384px;
    width: 100%;
}

.similarBlogsSwiper .blog-card .swiper-lazy-preloader {
    background-size: 120px;
}

.similarBlogsSwiper .blog-author .swiper-lazy-preloader {
    background-size: 30px;
}

/* ==============================
         Documentation page
============================== */

.doc-general-links a, .doc-version > ul > li svg, .doc-version .doc-version-dropdown, .doc-version .doc-version-dropdown li a, .doc-quick-link-cart a {
    transition: all 250ms ease-in-out;
}

.doc-version {
    display: flex;
    align-items: center;
    margin: 24px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.doc-version > span {
    margin-right: 6px;
    display: block;
}

.doc-version > ul > li svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.doc-version > ul > li {
    position: relative;
    padding: 4px 0;
}

.doc-version > ul > li > div {
    cursor: pointer;
}

.doc-version > ul > li > div span {
    margin-right: 2px;
    font-weight: var(--fw-medium);
}

.doc-version > ul > li:hover svg {
    transform: rotate(180deg);
}

.doc-version a {
    color: var(--gray-700);
}

.doc-version .doc-version-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 120px;
    background-color: var(--white);
    padding: 12px;
    margin-top: 25px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.doc-version > ul > li:hover .doc-version-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.doc-version .doc-version-dropdown li {
    padding: 6px 12px;
    display: flex;
}

.doc-version .doc-version-dropdown li a {
    flex-grow: 1;
}

.doc-version .doc-version-dropdown li:hover a {
    color: var(--purple-600);
}

.doc-general-links:not(:last-child) {
    margin-bottom: 30px;
}

.doc-general-links h2 {
    margin-bottom: 18px;
}

.doc-quick-links h2 {
    margin-bottom: 24px;
}

.doc-quick-links .doc-quick-link-cart {
    padding: 20px;
    background-color: var(--purple-50);
    border-radius: 8px;
}

.doc-quick-links .doc-quick-link-cart:not(:last-child) {
    margin-bottom: 24px;
}

.doc-quick-links .doc-quick-link-cart h3 {
    margin-bottom: 12px;
}

.doc-general-links a {
    display: block;
    font-size: var(--fs-b2);
    line-height: var(--lh-b2);
    color: var(--gray-700);
}

.doc-quick-link-cart a {
    display: block;
    color: var(--gray-700);
}

.doc-general-links a:hover, .doc-quick-link-cart a:hover {
    color: var(--purple-600);
}

.doc-general-links a {
    padding: 6px 0;
}

/* ==============================
    Documentation inner
============================== */
.documentation-sidebar-wrapper,
.documentation-single-sidebar,
.documentation-single-sidebar > ul > li > ul li a,
.documentation-single-sidebar > ul > li > div svg {
    transition: all 250ms ease-in-out;
}

.documentation-single .content-header {
    margin-bottom: 32px;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    text-align: left;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.documentation-single .content-header svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 8px;
}

.documentation-single .content-header svg path {
    stroke: var(--gray-600);
}

.documentation-sidebar-wrapper {
    padding-right: 12px;
    height: calc(100vh - 200px);
    overflow: auto;
    position: sticky;
    top: 100px;
}

.documentation-single-sidebar > ul > li:not(:last-child) {
    margin-bottom: 24px;
}

.documentation-single-sidebar > ul > li > div {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    font-weight: var(--fw-semi-bold);
    cursor: pointer;
}

.documentation-single-sidebar > ul > li > div svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 4px;
}

.documentation-single-sidebar > ul > li > div svg path {
    stroke: var(--gray-700);
}

.documentation-single-sidebar > ul > li > ul {
    padding-left: 32px;
    padding-top: 16px;
    display: none;
}

.documentation-single-sidebar > ul > li.active > div svg {
    transform: rotate(-180deg);
}

.documentation-single-sidebar > ul > li > ul li a {
    color: var(--gray-700);
    display: block;
    padding: 6px 0;
}

.documentation-single-sidebar > ul > li > ul li:hover a,
.documentation-single-sidebar > ul > li > ul li a.active {
    color: var(--purple-600);
}

/* ==============================
        Find a Developer page
============================== */
#find-a-developer-page section {
    margin-bottom: 96px;
}

section.find-developer-welcome {
    background: var(--soft-purple-50, #F9F5FF);
    background-image: url('../../img/patterns/developers-welcome.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
}

.find-developer-welcome-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 64px 0 26px;
}

.find-developer-welcome-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.find-developer-welcome-text .badge {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 4px;
    border-radius: 100px;
    background: #F9F9FF;
    mix-blend-mode: multiply;
}

.find-developer-welcome-text .badge p {
    color: var(--purple-600, #6D2FFD);
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-b4);
    font-weight: var(--fw-medium);
    line-height: 18px;
}

.find-developer-welcome-text h1 {
    color: var(--gray-700, #2E3A59);
    font-weight: var(--fw-semi-bold);
    font-family: var(--primary-font-family);
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    margin: 10px 0 24px;
}

.find-developer-welcome-text h1 span {
    background: linear-gradient(90deg, #9E74FF 0.05%, #FF3D71 60.85%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.find-developer-welcome-text p {
    color: var(--gray-700, #2E3A59);
    font-family: var(--primary-font-family);
    font-size: var(--fs-h4);
    font-weight: var(--fw-regular);
    line-height: var(--lh-h4);
}

.find-developer-welcome-image {
    flex-shrink: 0;
    max-width: 678px;
}

.find-developer-welcome-image img {
    width: 100%;
    height: auto;
}

.badge-descriptions {
    display: flex;
    gap: 10px;
}

.badge-description-item {
    width: 50%;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
}

.badge-description-item-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 34px 0 38px 41px;
    font-family: var(--primary-font-family);
    font-weight: var(--fw-semi-bold);
}

.badge-description-item-text h2 {
    color: var(--gray-700, #2E3A59);
    font-size: 48px;
    line-height: 60px;
}

.badge-description-item-text .badge-ranks-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700, #2E3A59);
    font-size: var(--fs-b3);
    line-height: 32px;
    white-space: nowrap;
}

.badge-description-item-text .badge-ranks-item::before {
    content: '';
    background: url('../../img/icons/check.svg') center/cover;
    width: 21px;
    height: 21px;
    margin-right: 6px;
}

.badge-description-item-text .badge-ranks-item span {
    font-weight: var(--fw-regular);
}

.booknetic-installer * {
    color: #fff !important;
}

.badge-description-item-image {
    width: 50%;
    min-height: 420px;
}

.bug-hunter {
    background: url('../../img/find-a-developer/bug-hunter-bg.svg') center/cover;
}

.booknetic-installer {
    background: url('../../img/find-a-developer/booknetic-installer-bg.svg') center/cover;
}

.bug-hunter .badge-description-item-image {
    background: url('../../img/find-a-developer/bug-hunter-badges.png') center/contain no-repeat;
}

.booknetic-installer .badge-description-item-image {
    background: url('../../img/find-a-developer/booknetic-installer-badges.png') center/contain no-repeat;
}

.badge-types {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.badge-type-item {
    flex-grow: 1;
    border-radius: 15px;
    background: #FAFAFA;
    height: 141px;
    position: relative;
    overflow: hidden;
}

.badge-type-item h6 {
    padding: 34px 0 0 36px;
    color: #000;
    font-family: var(--primary-font-family);
    font-size: 24px;
    font-weight: var(--fw-medium);
    line-height: normal;
}

.badge-type-item img {
    width: 164px;
    position: absolute;
    right: -23px;
    bottom: -25px;
    transform: rotate(-25deg);
}

.developers-content h2 {
    color: var(--gray-700, #2E3A59);
    text-align: center;
    font-family: var(--primary-font-family);
    font-size: var(--fs-h2);
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-h2);
    margin-bottom: 80px;
}

.developers-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 32px;
}

.developer {
    flex-grow: 1;
    max-width: 380px;
    padding: 0 32px 20px 32px;
    box-sizing: border-box;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 4px 14px 0 rgba(195, 195, 195, 0.14);
}

.developer-avatar {
    display: flex;
    position: relative;
    width: 76px;
    height: 76px;
    box-shadow: 0 4px 14px 0 rgba(195, 195, 195, 0.08);
}

.developer-avatar.rank-rookie .developer-img {
    border: 2px solid #5F4123;
}

.developer-avatar.rank-bronze .developer-img {
    border: 2px solid #8E4115;
}

.developer-avatar.rank-silver .developer-img {
    border: 2px solid #4C5683;
}

.developer-avatar.rank-gold .developer-img {
    border: 2px solid #F8AF2D;
}

.developer-avatar.rank-ultimate .developer-img {
    border: 2px solid #E050FE;
}

.developer-img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.developer-avatar .developer-rank-badge {
    position: absolute;
    right: -6.8px;
    bottom: -6.6px;
}

.developer-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 8px;
}

.developer-info-text {
    color: var(--gray-500, #667085);
    font-family: var(--primary-font-family);
    font-size: var(--fs-b3);
    font-weight: var(--fw-regular);
    line-height: var(--lh-b3);
}

.developer-info-text .developer-name {
    color: var(--gray-700, #2E3A59);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-h5);
}

.developer-info-text .developer-summary {
    height: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.developer-info-badges {
    display: flex;
    gap: 16px;
}

.developer-info-badges .badge img {
    height: 29px;
}

.developer-info-contact {
    display: flex;
    gap: 16px;
}

.developer-info-contact .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 13px;
    background: var(--gray-100, #F2F4F7);
}

.developer-info-download span {
    color: var(--purple-500, #7A5AF8);
    font-family: var(--primary-font-family);
    font-size: var(--fs-b3);
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-b3);
}

.application-content {
    display: flex;
    gap: 16px;
}

.application-content div {
    flex-grow: 1;
    width: 50%;
}

.application-image {
    border-radius: 15px;
    background: linear-gradient(296deg, #6D2FFD 0%, rgba(109, 47, 253, 0.86) 34.69%);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.application-image > div {
    background: url('../../img/patterns/developers-application.svg') left bottom no-repeat;
    padding: 150px 60px;
    width: 100%;
}

.application-image h2 {
    color: var(--white);
    font-family: var(--primary-font-family);
    font-size: 52px;
    font-weight: var(--fw-semi-bold);
    line-height: normal;
}

.application-image .decors {
    font-family: var(--primary-font-family);
    font-weight: var(--fw-semi-bold);
    font-style: normal;
    line-height: normal;
}

.application-image .pill-bugH {
    display: inline-block;
    transform: rotate(-15deg);
    padding: 11px 14px;
    position: absolute;
    left: 31px;
    top: 29px;
    border-radius: 60px;
    background: #FAF6FF;
    color: #814CFD;
    font-size: var(--fs-b4);
}

.application-image .pill-bookneticI {
    display: inline-block;
    transform: rotate(13deg);
    padding: 9px 12px;
    position: absolute;
    right: 35px;
    top: 39px;
    border-radius: 49px;
    background: #996DFF;
    color: var(--white);
    font-size: 12px;
}

.application-image .pill-bookneticS {
    display: inline-block;
    transform: rotate(-19deg);
    padding: 9px 12px;
    position: absolute;
    left: 414px;
    top: 190px;
    border-radius: 51px;
    background: #FAFAFA;
    color: var(--gray-700, #2E3A59);;
    font-size: 12px;
}

.application-image .badge-left {
    position: absolute;
    left: -61px;
    bottom: -43px;
    width: 273px;
    transform: rotate(17deg);
}

.application-image .badge-right {
    width: 171px;
    transform: rotate(-28deg);
    position: absolute;
    right: -44px;
    bottom: -18px;
}

.application-form {
    padding: 40px;
}

.application-form form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    font-family: 'Poppins', 'sans-serif';
}

.application-form form div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.application-form label {
    color: var(--gray-700, #344054);
    font-size: var(--fs-b4);
    font-style: normal;
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-b4);
}

.application-form label span {
    color: #EE271A;
}

.application-form input {
    border-radius: var(--br-8);
    border: 1px solid #F5F5F5;
    background: var(--white);
    padding: 15px 14px;
    box-shadow: var(--box-shadow-xs);
    color: #B0B3B9;
    font-family: 'Poppins', 'sans-serif';
    font-size: var(--fs-b3);
    font-style: normal;
    font-weight: var(--fw-regular);
    line-height: var(--lh-b3);
}

.application-form button {
    height: 48px;
    padding: 0 20px;
    border-radius: 15px;
    background: linear-gradient(296deg, #6D2FFD 0%, rgba(109, 47, 253, 0.86) 34.69%);
    color: var(--white);
    font-family: var(--primary-font-family);
    font-size: var(--fs-b3);
    font-style: normal;
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-b3);
    border: none;
}

.application-form p {
    color: #A0A6B1;
    font-family: var(--primary-font-family);
    font-size: var(--fs-b4);
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: var(--lh-b3);
}


/* ==============================
        Error pages
============================== */
.error-welcome .section-header p {
    margin-top: 24px;
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
}

.error-welcome .section-header .btns-wrapper {
    margin-top: 48px;
}

.error-welcome .section-header .btns-wrapper > *:not(:last-child) {
    margin-right: 24px;
}

.error-card {
    border-radius: var(--br-16);
    background: var(--soft-purple-50);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    padding: 24px;
    min-height: 226px;
    margin: 0 auto;
}

.error-card > img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 48px;
}

.error-card > span {
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    color: var(--gray-700);
}

.error-card > p {
    color: var(--gray-500);
    margin-top: 8px;
}

.error-card > .btn-text {
    margin-top: 20px;
    /*font-weight: ;*/
}

/*================ Piracy Page ==================== */

/* Hero section */
.hero-section {
    padding-block: 112px;
    background-color: var(--green-bg);
    text-align: center;
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-section header {
    max-width: 1024px;
    margin: auto;
    padding-inline: var(--bs-gutter-x, .75rem);
}

.hero-header img {
    width: 42px;
}

.green-text {
    color: var(--green);
}

.hero-description {
    font-size: var(--fs-b1);
    font-weight: var(--fw-regular);
    line-height: 34px;
    margin-top: 24px;
}

/* understanding piracy */
.understanding-piracy {
    text-align: left;
    margin-top: 62px;
    padding: 62px 60px 62px 42px;
    background-color: var(--purple-600);
    border-radius: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.understanding-piracy img {
    width: 186px;
}

.understanding-piracy h2 {
    margin-bottom: 24px;
    font-size: 32px;
}

.understanding-piracy p {
    line-height: 34px;
    font-size: var(--fs-b1);
}

/* Why choose booknetic */
.why-choose-booknetic header {
    text-align: center;
    max-width: 788px;
    padding-inline: var(--bs-gutter-x, .75rem);
    margin-top: 80px;
    margin-inline: auto;
}

.why-choose-booknetic header h1 {
    font-size: var(--lh-h3);
    margin-bottom: 16px;
    line-height: initial;
}

.why-choose-booknetic header p {
    line-height: 30px;
}

.purple-text {
    color: #6C70DC;
}

.why-booknetic-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    gap: 32px;
}

.why-booknetic-cart {
    border-radius: 16px;
    border: 1px solid var(--gray-150);
    padding: 32px;
}

.why-booknetic-cart img {
    width: 60px;
    margin-bottom: 20px;
}

.why-booknetic-cart h3 {
    font-size: var(--fs-b1);
    line-height: var(--lh-b1);
    margin-bottom: 8px;
}

.why-booknetic-cart p {
    color: var(--gray-500);
    line-height: var(--lh-b3);
}

/* Risks of piracy */

.risk-of-pirated-plugins {
    background-color: #F6F3FF;
    margin-top: 80px;
    padding-block: 80px 110px;
}

.risk-of-pirated-plugins > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-top: 80px;
}

.risk-of-pirated-plugins > div > div {
    flex: 1;
}

.risk-of-pirated-plugins img {
    width: 100%;
}

.risk-description h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.risks-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.risks-container h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.risks-container p {
    line-height: var(--lh-h4);
}

/* Important note */

.important-note {
    text-align: center;
    padding-block: 80px;
    background-color: var(--purple-600);
    color: #fff;
}

.important-note .badge {
    display: inline-block;
    padding: 5px 24px;
    background-color: #FBBB5B;
    border-radius: 60px;
    text-transform: uppercase;
    color: #000;
    font-size: var(--fs-b3);
    font-weight: 500;
    line-height: var(--lh-b1);
}

.important-note .badge img {
    width: 24px;
    margin-right: 8px;
}

.important-note h2 {
    padding-block: 16px;
    font-size: 38px;
    line-height: 44px;
}

.important-note p {
    line-height: var(--lh-h4);
}

.important-note p:last-child {
    margin-top: 24px;
}

/* Industries styles*/

/*gym styles*/
#gym-integrations {
    text-align: center;
    padding-block: 80px;
}

#gym-integrations header {
    margin-inline: auto;
    margin-bottom: 62px;
}

#gym-integrations header h2 {
    max-width: 560px;
    margin-inline: auto;
}

#gym-integrations header p {
    max-width: 760px;
    margin-inline: auto;
    color: #2E3A59;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.integrations {
    max-width: 674px;
    margin-inline: auto;
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    grid-template-rows: repeat(auto-fit, 1fr);
    justify-items: center;
}

.integration-card {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 12px;
    background-color: #F5F6F7;
}

.integration-card img {
    width: 48px;
    height: 48px;
}

.gym #industries-info {
    gap: 64px;
    margin-block: 80px 0;
}

.gym #industries-hero {
    padding-block: 62px 98px;
}

.gym .industries-description {
    color: var(--gray-700);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.gym .social-proof-container {
    margin-top: 0;
    gap: 22px;
}

.gym .general-info {
    padding-block: 80px 62px;
}

.gym .general-info header {
    max-width: 530px;
    margin-inline: auto;
    text-align: center;
}

.gym .general-info header h2 {
    padding-bottom: 16px;
}

.gym .info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 62px;
}

.gym .general-info-card {
    flex: 1 1 300px;
    max-width: 100%;
    text-align: center;
    padding: 32px 26px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #F5F6F7;
}

.gym .general-info-card img {
    width: 45px;
    height: 45px;
    margin-bottom: 24px;
}

.gym .general-info-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.gym .general-info-card p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.gym-features {
    padding-block: 80px;
    background: #F5F6F7;
}

.gym-features header {
    text-align: center;
    margin-bottom: 42px;
}

.gym-features .features-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gym-features .features-card {
    flex: 1 1 300px;
    max-width: 100%;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    background: #fff;
    color: var(--gray-700);
}

.gym-features .features-card:hover {
    box-shadow: 0 0 10px rgba(109, 47, 253, 0.2);
}

.gym-features .features-card img {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
}

.gym-features .features-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gym-features .features-card p {
    font-size: 16px;
    font-weight: 400;
}

.industries-heading {
    color: var(--gray-700);
    font-size: 44px;
    font-weight: 700;
    line-height: 62px;
}

.industries-description {
    color: var(--gray-700);
    font-size: var(--fs-b3);
    font-weight: var(--fw-regular);
    line-height: var(--lh-h5);
}

.industries-btn {
    padding: 8px 32px !important;
    border-radius: 60px;
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-h4);
    border: 1px solid transparent !important;
}

.industries-btn.secondary, .industries-btn.primary:hover {
    background-color: transparent !important;
}

/*repair page styles*/

.repair-center .industries-btn.primary {
    background-color: #2A47AC;
    color: #FFF;
}

.repair-center .industries-hero-badge {
    background: #2A47AC26;
}

.repair-center .industries-btn.primary:hover {
    border-color: #2A47AC !important;
    color: #000;
}

.repair-center .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #2A47AC !important;
    color: #000;
}

.repair-center .industries-btn.secondary:hover {
    background-color: #2A47AC !important;
    color: white;
}

.repair-center .industries-heading span {
    color: #2A47AC
}

/*gym page styles*/

.gym .industries-btn.primary {
    background-color: #FBBB5B;
    color: #000;
}

.gym .industries-hero-badge {
    background: #FBBB5B26;
}

.gym .industries-btn.primary:hover {
    border-color: #FBBB5B !important;
    color: #000;
}

.gym .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #FBBB5B !important;
    color: #000;
}

.gym .industries-btn.secondary:hover {
    background-color: #FBBB5B !important;
    color: white;
}

.gym .industries-heading span {
    color: #FBBB5B
}

/*tutoring page styles*/

.tutoring .industries-btn.primary {
    background-color: #A22AAC;
    color: #fff;
}

.tutoring .industries-hero-badge {
    background: #A22AAC26;
}

.tutoring .industries-btn.primary:hover {
    border-color: #A22AAC !important;
    color: #000;
}

.tutoring .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #A22AAC !important;
    color: #000;
}

.tutoring .industries-btn.secondary:hover {
    background-color: #A22AAC !important;
    color: white;
}

.tutoring .industries-heading span {
    color: #A22AAC
}

/*health and medicine page styles*/

.healthAndMedical .industries-btn.primary {
    background-color: #2AAC9C;
    color: #fff;
}

.healthAndMedical .industries-hero-badge {
    background: #2AAC9C26;
}

.healthAndMedical .industries-btn.primary:hover {
    border-color: #2AAC9C !important;
    color: #000;
}

.healthAndMedical .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #2AAC9C !important;
    color: #000;
}

.healthAndMedical .industries-btn.secondary:hover {
    background-color: #2AAC9C !important;
    color: white;
}

.healthAndMedical .industries-heading span {
    color: #2AAC9C
}

/*legal consultants page styles*/

.legalConsultants .industries-btn.primary {
    background-color: #001329;
    color: #fff;
}

.legalConsultants .industries-hero-badge {
    background: #0013291A;
}

.legalConsultants .industries-btn.primary:hover {
    border-color: #001329 !important;
    color: #000;
}

.legalConsultants .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #001329 !important;
    color: #000;
}

.legalConsultants .industries-btn.secondary:hover {
    background-color: #001329 !important;
    color: white;
}

.legalConsultants .industries-heading span {
    color: #001329
}

/*spa salons page styles*/

.spaSalons .industries-btn.primary {
    background-color: #015699;
    color: #fff;
}

.spaSalons .industries-hero-badge {
    background: #0156991A;
}

.spaSalons .industries-btn.primary:hover {
    border-color: #015699 !important;
    color: #000;
}

.spaSalons .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #015699 !important;
    color: #000;
}

.spaSalons .industries-btn.secondary:hover {
    background-color: #015699 !important;
    color: white;
}

.spaSalons .industries-heading span {
    color: #015699
}

/*nutritionist page styles*/

.nutritionist .industries-btn.primary {
    background-color: #019950;
    color: #fff;
}

.nutritionist .industries-hero-badge {
    background: #0156991A;
}

.nutritionist .industries-btn.primary:hover {
    border-color: #019950 !important;
    color: #000;
}

.nutritionist .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #019950 !important;
    color: #000;
}

.nutritionist .industries-btn.secondary:hover {
    background-color: #019950 !important;
    color: white;
}

.nutritionist .industries-heading span {
    color: #019950
}

/*hairDresser page styles*/

.hairDresser .industries-btn.primary {
    background-color: #995001;
    color: #fff;
}

.hairDresser .industries-hero-badge {
    background: #0156991A;
}

.hairDresser .industries-btn.primary:hover {
    border-color: #995001 !important;
    color: #000;
}

.hairDresser .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #995001 !important;
    color: #000;
}

.hairDresser .industries-btn.secondary:hover {
    background-color: #995001 !important;
    color: white;
}

.hairDresser .industries-heading span {
    color: #995001
}

/*massage therapist page styles*/

.massageTherapist .industries-btn.primary {
    background-color: #01998C;
    color: #fff;
}

.massageTherapist .industries-hero-badge {
    background: #0156991A;
}

.massageTherapist .industries-btn.primary:hover {
    border-color: #01998C !important;
    color: #000;
}

.massageTherapist .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #01998C !important;
    color: #000;
}

.massageTherapist .industries-btn.secondary:hover {
    background-color: #01998C !important;
    color: white;
}

.massageTherapist .industries-heading span {
    color: #01998C
}

/*photographers page styles*/

.photographers .industries-btn.primary {
    background-color: #000;
    color: #fff;
}

.photographers .industries-hero-badge {
    background: #0156991A;
}

.photographers .industries-btn.primary:hover {
    border-color: #000 !important;
    color: #000;
}

.photographers .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #000 !important;
    color: #000;
}

.photographers .industries-btn.secondary:hover {
    background-color: #000 !important;
    color: white;
}

.photographers .industries-heading span {
    color: #000
}

/*weddingPlanners page styles*/

.weddingPlanners .industries-btn.primary {
    background-color: #6D2FFD;
    color: #fff;
}

.weddingPlanners .industries-hero-badge {
    background: #0156991A;
}

.weddingPlanners .industries-btn.primary:hover {
    border-color: #6D2FFD !important;
    color: #000;
}

.weddingPlanners .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #6D2FFD !important;
    color: #000;
}

.weddingPlanners .industries-btn.secondary:hover {
    background-color: #6D2FFD !important;
    color: white;
}

.weddingPlanners .industries-heading span {
    color: #6D2FFD
}

/*eventCoordinators page styles*/

.eventCoordinators .industries-btn.primary {
    background-color: #FD2F2F;
    color: #fff;
}

.eventCoordinators .industries-hero-badge {
    background: #0156991A;
}

.eventCoordinators .industries-btn.primary:hover {
    border-color: #FD2F2F !important;
    color: #000;
}

.eventCoordinators .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #FD2F2F !important;
    color: #000;
}

.eventCoordinators .industries-btn.secondary:hover {
    background-color: #FD2F2F !important;
    color: white;
}

.eventCoordinators .industries-heading span {
    color: #FD2F2F
}


/*interiorDesigners page styles*/

.interiorDesigners .industries-btn.primary {
    background-color: #BB7900;
    color: #fff;
}

.interiorDesigners .industries-hero-badge {
    background: #0156991A;
}

.interiorDesigners .industries-btn.primary:hover {
    border-color: #BB7900 !important;
    color: #000;
}

.interiorDesigners .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #BB7900 !important;
    color: #000;
}

.interiorDesigners .industries-btn.secondary:hover {
    background-color: #BB7900 !important;
    color: white;
}

.interiorDesigners .industries-heading span {
    color: #BB7900
}

/*accountants page styles*/

.accountants .industries-btn.primary {
    background-color: #002FBB;
    color: #fff;
}

.accountants .industries-hero-badge {
    background: #0156991A;
}

.accountants .industries-btn.primary:hover {
    border-color: #002FBB !important;
    color: #000;
}

.accountants .industries-btn.secondary {
    background-color: transparent;
    border: 1px solid #002FBB !important;
    color: #000;
}

.accountants .industries-btn.secondary:hover {
    background-color: #002FBB !important;
    color: white;
}

.accountants .industries-heading span {
    color: #002FBB
}

#industries-hero {
    padding-block: 62px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 84px;
}

.industries-hero-info {
    display: grid;
    gap: 24px;
    flex: 1;
}

.industries-hero-img {
    flex: 1.2;
}

#industries-hero img {
    width: 100%;
}

.industries-hero-badge {
    border-radius: 60px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    padding: 8px 24px;
    width: fit-content;
    display: flex;
    gap: 12px;
}

.industries-hero-badge img {
    width: 22px !important;
}

.industries-buttons {
    display: flex;
    gap: 24px;
}

#why-choose-us {
    background-color: #F5F6F7;
    text-align: center;
    padding-block: 120px;
}

#why-choose-us header {
    display: grid;
    gap: 16px;
    margin-bottom: 62px;
    max-width: 530px;
    margin-inline: auto;
}

.reason-of-booknetic {
    display: flex;
    justify-content: space-between;
    gap: 17px;
}

.reason-card {
    padding: 32px 26px;
    border: thin solid rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.30);
    border-radius: var(--br-16);
    flex: 1;
}

.reason-card-header {
    color: var(--gray-700);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-h5);
    margin-block: 24px 16px;
}

#industries-info {
    display: grid;
    gap: 82px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin-block: 120px 82px;
}

.industries-info-card {
    display: grid;
    gap: 24px;
}

.industries-info-card img {
    width: 100%;
}

#simplify-industries {
    border-radius: 24px;
    padding-block: 62px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    background-color: #F5F6F7;
    margin-bottom: 84px;
}

#simplify-industries p {
    max-width: 720px;
    text-align: center;
}
