
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader.hidden {
    display: none;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 7px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.7s linear infinite;
}

@keyframes spinner {
    from {}

    to {
        transform: rotate(360deg);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* This color palletes from Tailwind CSS */
    --white: #fff;
    --black: #000;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --zinc-950: #09090b;

    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;

    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --stone-950: #0c0a09;

    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    --red-950: #450a0a;

    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;
    --orange-950: #431407;

    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --amber-950: #451a03;

    --yellow-50: #fefce8;
    --yellow-100: #fef9c3;
    --yellow-200: #fef08a;
    --yellow-300: #fde047;
    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --yellow-600: #ca8a04;
    --yellow-700: #a16207;
    --yellow-800: #854d0e;
    --yellow-900: #713f12;
    --yellow-950: #422006;

    --lime-50: #f7fee7;
    --lime-100: #ecfccb;
    --lime-200: #d9f99d;
    --lime-300: #bef264;
    --lime-400: #a3e635;
    --lime-500: #84cc16;
    --lime-600: #65a30d;
    --lime-700: #4d7c0f;
    --lime-800: #3f6212;
    --lime-900: #365314;
    --lime-950: #1a2e05;

    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --green-950: #052e16;

    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;

    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;

    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-200: #a5f3fc;
    --cyan-300: #67e8f9;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-700: #0e7490;
    --cyan-800: #155e75;
    --cyan-900: #164e63;
    --cyan-950: #083344;

    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --sky-800: #075985;
    --sky-900: #0c4a6e;
    --sky-950: #082f49;
    --blue: #2196F3;

    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-950: #172554;

    --indigo-50: #eef2ff;
    --indigo-100: #e0e7ff;
    --indigo-200: #c7d2fe;
    --indigo-300: #a5b4fc;
    --indigo-400: #818cf8;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --indigo-700: #4338ca;
    --indigo-800: #3730a3;
    --indigo-900: #312e81;
    --indigo-950: #1e1b4b;

    --violet-50: #f5f3ff;
    --violet-100: #ede9fe;
    --violet-200: #ddd6fe;
    --violet-300: #c4b5fd;
    --violet-400: #a78bfa;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    --violet-700: #6d28d9;
    --violet-800: #5b21b6;
    --violet-900: #4c1d95;
    --violet-950: #2e1065;

    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    --purple-950: #3b0764;

    --fuchsia-50: #fdf4ff;
    --fuchsia-100: #fae8ff;
    --fuchsia-200: #f5d0fe;
    --fuchsia-300: #f0abfc;
    --fuchsia-400: #e879f9;
    --fuchsia-500: #d946ef;
    --fuchsia-600: #c026d3;
    --fuchsia-700: #a21caf;
    --fuchsia-800: #86198f;
    --fuchsia-900: #701a75;
    --fuchsia-950: #4a044e;

    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;
    --pink-800: #9d174d;
    --pink-900: #831843;
    --pink-950: #500724;

    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --rose-800: #9f1239;
    --rose-900: #881337;
    --rose-950: #4c0519;
}

/* start: Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.pay-container {
    max-width: 940px;
    margin: 0 auto;
}


.responsive-image {
    max-width: 190px;
    height: auto;
}

.img_div {
    display: flex;
    justify-content: center;
}

.super-underline {
    position: relative;
    font-size: 16px;
    color: var(--blue);
    font-weight: bold;
}

.super-underline-mojo {
    position: relative;
    margin-top: 55px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--blue);
    font-weight: bold;
}




/* Responsive styles */
@media (max-width: 768px) {
    .payment-details {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .payment-details {
        padding: 10px;
    }
}

/* start: Payment */
.payment-section {
    padding-bottom: 48px;
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.payment-header {
    padding: 24px;
    background-color: #0264b3;
    border-top-left-radius: 10px;
    border-top-right-radius: 12px;
    padding-bottom: 25px;
}

.payment-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--blue);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.payment-header-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 4px;
}

.payment-header-description {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 600;
}

.payment-content {
    background-color: var(--white);
    border-radius: 0 0 8px 8px;
    border: 1px solid #bcbec1;
    position: relative;
    padding: 24px;
    overflow: hidden;
}


.payment-plan {
    display: flex;
    align-items: center;
    padding: 10px;
    text-align: end;
}

.payment-plan-type {
    width: 50%;
    height: 40px;
    background-color: #0264b3;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 8px;
}

.payment-plan-info {
    width: 100%;
    margin-right: 8px;
    display: grid;
}

.payment-plan-info-name {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.payment-plan-info-price {
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.payment-plan-change {
    color: var(--blue-500);
    font-size: 12px;
    font-weight: 600;
    text-underline-offset: 2px;
}

.payment-plan-change:hover {
    color: var(--blue-600);
}

.payment-summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
}

.payment-summary-name {
    font-size: 14px;
    color: #000000;
}

.payment-summary-price {
    font-weight: 500;
    font-size: 15px;
}

.payment-summary-divider {
    width: calc(100% - 16px);
    height: 0;
    margin: 12px auto;
    border-bottom: 1px dashed var(--gray-200);
    position: relative;
}

.payment-summary-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--gray-50);
    box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--gray-50);
    box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-total {
    padding-bottom: 16px;
}

.payment-summary-total .payment-summary-name {
    color: var(--gray-900);
}

.payment-summary-total .payment-summary-price {
    font-size: 16px;
    color: var(--blue);
    font-weight: 600;
}

.payment-right {
    min-width: 0;
}

.payment-form {
    padding: 24px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}

.payment-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.upi_dtls {
    text-align: center;
    margin-top: 60px;
}

.payment-method {
    display: flex;
    align-items: center;
    overflow-x: auto;
    justify-content: center;
    padding: 6px 0;
    width: 100%;
}

.payment-method input {
    display: none;
}

.payment-method-item {
    width: 30%;
    height: 80px;
    padding: 8px;
    border: 1px solid #bcbec1;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 5px;

}

input:checked+.payment-method-item {
    border-color: var(--blue);
}

input:checked+.payment-method-item::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--blue);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEwLjAwMDcgMTUuMTcwOUwxOS4xOTMxIDUuOTc4NTJMMjAuNjA3MyA3LjM5MjczTDEwLjAwMDcgMTcuOTk5M0wzLjYzNjcyIDExLjYzNTRMNS4wNTA5MyAxMC4yMjEyTDEwLjAwMDcgMTUuMTcwOVoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMSkiPjwvcGF0aD48L3N2Zz4=");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.payment-method-item>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.payment-form-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    color: var(--gray-400);
    pointer-events: none;
    transition: all .1s ease-in-out;
}

.payment-form-label-required::after {
    content: ' *';
    color: var(--red-500);
}

.payment-form-submit-button {
    background-color: var(--indigo-500);
    border-radius: 8px;
    outline: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    padding: 16px;
    transition: all .15s ease-in-out;
}

.payment-form-submit-button:hover {
    background-color: var(--indigo-600);
}

.payment-form-submit-button>i {
    margin-right: 8px;
}

/* end: Payment */

/* start: Breakpoints */
@media screen and (max-width: 768px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
    }

    .payment-content {
        padding: 16px;
    }

    .payment-content::before {
        top: 16px;
        width: calc(100% - 20px);
    }

    .unwant_col {
        flex-direction: column;
    }

}

/* end: Breakpoints */


.main_cls {
    background: #2196F3;
}

.container {
    max-width: 1300px;
    width: 100%;
}


.sem_page {
    padding-bottom: 40px;
}

.img_center {
    text-align: right;
}

.buttons {
    display: flex;
    margin-top: 25px;
    gap: 10px;
}

.btn {
    padding: 14px 26px;
    background: #fff;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:last-child {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.btn:last-child:hover {
    background-color: #fff;
    color: #2196F3;
}

.hero_img {
    width: 175px;
    position: relative;
}

#menu_toggle {
    display: none;
}

/* Add media queries for responsiveness */
@media screen and (max-width: 866px) {

    .content .list {
        width: 100%;
        margin: 0;
    }

    .content .text-content {
        width: 100%;
        margin-top: 20px;
    }
}

.imp_button {
    color: #fff;
    padding: 12px 25px;
    border-radius: 100px;
    background-color: #d11a1a;
    background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 87% at 26% 20%, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 16px;
    border: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    cursor: pointer;

}

.imp_div {
    text-align: center;
}

/* end of payment */

/* .tab1 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.main_div {
    background: #0264b3;
    margin-top: 65px;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 50vh;
    width: 100%;
    background: url(../assets/bg-dot.webp), url(../assets/bg-dot.webp), url(../assets/bg-round.webp);
    background-position: 10px 10px, bottom 100px right 10px, left 46% top 0%, left 44% bottom -7px;
    background-repeat: no-repeat;
}

.curveImg {
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

.hero .row {
    display: flex;
    align-items: center;
    min-height: 50vh;
    height: 100%;
    width: 100%;
    padding: 0 60px;
    gap: 30px;
    justify-content: space-between;
}

.hero .row h2,
.hero .row p {
    color: #fff;
    font-size: 18px;
}

.hero .row h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.div1 {
    width: 60%;
    padding: 25px;
}

.div2 {
    width: 40%;
    text-align:center;
}

.buttons {
    display: flex;
    margin-top: 25px;
    gap: 10px;
}

.btn:last-child {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.btn:last-child:hover {
    background-color: #fff;
    color: #333;
}

#menu_toggle {
    display: none;
}

/* Style tab links */
.tablink {
    background-color: #0264b3;
    border: 0.5px solid #fff;
    color: #fff;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 25%;
    font-weight: 600;
}

.tablink:hover {
    background-color: #1d6cab;
    color: white;
}

.tabcontent {
    color: black;
    display: none;
    padding: 100px 20px;
    height: 100%;
    font-size: 18px;
}

.tablink.active {
    background-color: #fff;
    color: #0264b3;
}

.buyer-supporth4 {
    font-size: 25px;
    color: #53a583;
}

.pricelist_p {
    text-align: center;
    color: #004dfb;
    font-weight: 500;
    font-size: 16px;
}

.abt_p {
    margin-top: 35px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.abt_p:hover {
    cursor: pointer;
    color: #0049f3;
}


.pricelist_p1 {
    text-align: center;
    color: #000000;
    font-size: 16px;
    margin-top: 10px;
}

.buyer-supportp {
    margin-top: 25px;
    font-size: 16px;
    margin-top: 35px;
    font-weight: 500;
}

.abt_software {
    font-size: 20px;
    color: #53a583;

}

.pricedetails_ttl {
    text-align: center;
    color: #53a583;
    font-size: 31px;
}


.tab1 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 15px;
}


.tab2 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}


.description {
    text-align: left;
    max-width: 50%;
    animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.description h2 {
    text-align: center;
}

.product_video {
    margin-left: 10px;
}

.product_video iframe,
.product_price {
    animation: slideIn 1s ease-in-out;
}

.screenshot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image {
    max-width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 10px;
    animation: slideBottomToTop 1s ease-in-out;
}

@keyframes slideBottomToTop {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.buyerimage,
.productimage {
    width: 287px;
    height: auto;
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}


.product_price {
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.product_logo img {
    display: flex;
    align-items: center;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    object-fit: cover;
}

.pay_main_div {
    padding: 10px;
}

.description_1 {
    animation: slideIn 1s ease-in-out;
}

.content_div {
    margin-top: 20px;
    padding: 10px;
}

.content_p {
    font-size: 17px;
    margin-bottom: 7px;
    font-weight: 600;
}

.content_h4 {
    margin-bottom: 10px;
}

.soft_img {
    animation: slideInLeft 1s ease-in-out;
}

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

.support_p {
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.links_p {
    text-decoration: none;
    color: #0d2f8d;
}

.content_h4 {
    margin-top: 10px;
}

.course_slider #emphasisPicture,
.smallImg .slide_img img {
    border: 1px solid;
}

.course_row {
    align-items: center;
}

.smallImg {
    margin-top: 15px;
}

.screenshots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image {
    max-width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 10px;
    animation: slideBottomToTop 1s ease-in-out;
}

@media (min-width: 700px) {
    .image {
        max-width: 240px;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
        height: auto;
        margin-bottom: 10px;
    }
}

.btn-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-email {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-email:hover {
    background-color: #0056b3;
}

.icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
}

.div_inter {
    margin-bottom: 20px;
}

.inter_buyer_div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Reponsive */
@media (width < 860px) {
    #menu_toggle {
        display: block;
    }

    .nav {
        padding: 0 20px;
        background-color: #fff;
    }

    .menu_items {
        position: fixed;
        top: 0;
        width: 260px;
        background-color: #fff;
        height: 100%;
        left: -100%;
        padding: 50px 30px 30px;
        flex-direction: column;
        transition: all 0.5s ease;
    }

    .showMenu .menu_items {
        left: 0;
    }

    a {
        color: #333;
    }

    #menu_toggle {
        width: 20px;
        cursor: pointer;
    }

    .menu_items #menu_toggle {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 30px;
    }

    .hero .row {
        flex-direction: column;
        padding: 0 20px;
        justify-content: center;
    }

    .hero .row .column {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .hero .row h2 {
        font-size: 27px;
    }

    .hero .row p {
        font-size: 22px;
    }

    .hero_img {
        width: 175px;
    }
}

@media (width < 600px) {
    .hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero .row h2 {
        font-size: 22px;
    }

    .hero .row p {
        font-size: 19px;
    }

    .buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 16px;
    }

    .hero_img {
        width: 175px;
    }
}

@media (max-width:425px) {
    .product_logo img {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 700px) {
    .screenshot {
        flex-direction: row;
    }

    .image {
        max-width: 240px;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
        height: auto;
        margin-bottom: 10px;
    }

    .buyerimage {
        width: 350px;
        height: auto;
    }

    .productimage {
        width: 375px;
        height: auto;
    }
}

@media (min-width: 1024px) {
    .screenshot {
        flex-direction: row;
    }
}

@media screen and (min-width: 320px) and (max-width: 340px) {
    .product_video iframe {
        width: 255px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        padding: 50px 15px;
        font-size: 16px;
    }
}

@media screen and (min-width: 340px) and (max-width: 370px) {
    .product_video iframe {
        width: 275px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        padding: 50px 15px;
        font-size: 15px;
    }
}

@media screen and (min-width: 370px) and (max-width: 440px) {
    .product_video iframe {
        width: 297px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        padding: 50px 15px;
        font-size: 17px;
    }
}

@media screen and (min-width: 440px) and (max-width: 600px) {
    .product_video iframe {
        width: 350px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        font-size: 17px;
    }
}

@media screen and (min-width:600px) and (max-width: 747px) {
    .tablink {
        font-size: 11.3px;
    }
}

@media screen and (min-width:747px) and (max-width: 787px) {
    .tablink {
        font-size: 13px;
    }
}

@media screen and (min-width:600px) and (max-width: 680px) {
    .product_video iframe {
        width: 500px;
    }
}

@media screen and (max-width: 900px) {

    .tab1,
    .tab2 {
        flex-direction: column-reverse;
    }

    .description,
    .product_price {
        max-width: 100%;
        margin-top: 30px;
    }

    .product_video {
        margin-left: 0px;
        margin-top: 30px;
    }

    .pro_img_div {
        margin-top: 30px;
    }
}

@media screen and (min-width:900px) and (max-width: 1065px) {

    .description,
    .product_price {
        max-width: 100%;
        padding: 10px;
    }

    .product_video {
        margin-left: 0px;
        margin-top: 30px;
    }
}

@media screen and (min-width:1024px) {
    .tabcontent {
        font-size: 17px;
    }

    .description,
    .product_price {
        max-width: 100%;
        padding: 10px;
    }

    .product_video iframe {
        width: 550px;
    }
}

@media screen and (min-width:1440px) {
    .tabcontent {
        font-size: 20px;
    }

    .product_video iframe {
        width: 550px;
    }

    .description,
    .product_price {
        max-width: 100%;
        padding: 10px;
    }
}

.imp_button {
    background: #e14444;
    border-radius: 999px;
    box-shadow: #ff4040 0 10px 17px -10px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 8px 18px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
    border: 0;
}

.imp_div {
    text-align: center;
}

.imp_notes {
    color: #d11a1a;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

.links_p:hover {
    text-decoration: underline;
    color: #000;
}

