@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');


:root {
    --bs-body-line-height: 1.5;
}

* {
    font-family: Roboto Flex, sans-serif;
}
/* file: styles/root.css */
/* Centralized design tokens for learn4lead.org */

/*:root {*/
    /* Brand Colors */
    /*--color-primary-navy: #0f234f;*/ /* book / text */
    /*--color-primary-orange: #ff8c1a;*/ /* bars / accents */
    /*--color-accent-green: #8bc34a;*/ /* growth arrow */
    /* Neutrals */
    /*--color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f5;
    --color-gray-300: #d1d5db;
    --color-gray-600: #4b5563;
    --color-gray-900: #111827;*/
    /* Backgrounds */
    /*--bg-page: var(--color-white);
    --bg-dark: var(--color-black);
    --bg-primary: var(--color-primary-navy);*/
    /* Text */
    /*--text-primary: var(--color-primary-navy);
    --text-secondary: var(--color-gray-600);
    --text-inverse: var(--color-white);*/
    /* Borders */
    /*--border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;*/
    /* Spacing */
    /*--space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;*/
    /* Typography */
    /*--font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;*/
    /* Transitions */
    /*--transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;*/
    /* Shadows */
    /*--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}*/

:root {
    /* Brand Colors */
    --color-primary-navy: #0E9ADF; /* book / text */
    --color-primary-orange: #1F2E5A; /* bars / accents */
    --color-accent-green: #2F7E9E; /* growth arrow */
    /* Neutrals */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f5;
    --color-gray-300: #d1d5db;
    --color-gray-600: #4b5563;
    --color-gray-900: #111827;
    /* Backgrounds */
    --bg-page: var(--color-white);
    --bg-dark: var(--color-black);
    --bg-primary: var(--color-primary-navy);
    /* Text */
    --text-primary: var(--color-primary-navy);
    --text-secondary: var(--color-gray-600);
    --text-inverse: var(--color-white);
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    /* Typography */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}


*,
::after,
::before {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
    /*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}

/* web-kit part */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
    border-radius: 9px;
    background: #1e2d5ad1;
    /*    background-image: linear-gradient(45deg, rgb(139 59 167), #5959ae);*/
}

/* web-kit part end*/

body {
    line-height: var(--bs-body-line-height);
    /* font-family: 'Inter', sans-serif; */
    overflow-x: hidden;
}

.card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    /* margin-bottom: .5rem; */
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {

    .h1,
    h1 {
        font-size: 2.5rem
    }
}

.h2,
h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {

    .h2,
    h2 {
        font-size: 2rem
    }
}

.h3,
h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {

    .h3,
    h3 {
        font-size: 1.75rem
    }
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {

    .h4,
    h4 {
        font-size: 1.5rem
    }
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.9;
    color: #030303;
}

.container,
.container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y)
    }

.col {
    flex: 1 0 0%
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }

    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:768px) {
    .container {
        max-width: 95%;
    }

    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:992px) {
    .container {
        max-width: 90%;
    }

    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }

    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 85%;
    }

    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

.container {
    width: 85%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 0 0.75rem;
    }

    .grid-cols-2,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .container {
        width: 100%;
                padding: 0 0.5rem;
    }
}

.d-flex {
    display: flex !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.align-items-center {
    align-items: center !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.gap {
    gap: 12px;
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1,
.pb-1 {
    margin-bottom: .25rem !important
}

.mb-2,
.pb-2 {
    margin-bottom: .5rem !important
}

.mb-3,
.pb-3 {
    margin-bottom: 1rem !important
}

.mb-4,
.pb-4 {
    margin-bottom: 1.5rem !important
}

.p-0,
.m-0 {
    padding: 0 !important
}

.p-1,
.m-1 {
    padding: .25rem !important
}

.p-2,
.m-2 {
    padding: .5rem !important
}

.p-3,
.m-3 {
    padding: 1rem !important
}

.p-4,
.m-4 {
    padding: 1.5rem !important
}

.p-5,
.m-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1,
.mx-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2,
.mx-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3,
.mx-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4,
.mx-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5,
.mx-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1,
.my-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2,
.my-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3,
.my-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4,
.my-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5,
.my-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1,
.mt-1 {
    padding-top: .25rem !important
}

.pt-2,
.mt-2 {
    padding-top: .5rem !important
}

.pt-3,
.mt-3 {
    padding-top: 1rem !important
}

.pt-4,
.mt-4 {
    padding-top: 1.5rem !important
}
.mt-6{
    margin-top:2rem;
}

.pt-5,
.mt-5 {
    padding-top: 3rem !important
}

.bg-dark {
    background-color: #212529 !important;
}

a {
    text-decoration: none;
}

svg {
    width: 18px;
    height: 16px;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

input[type='text']::placeholder {
    color: rgb(63, 61, 61);
    opacity: 1; /* Firefox */
}

input[type=submit] {
    color: #ffffff !important;
    background: #8b3ba7 !important;
}
/*my style start*/
.p {
    padding: 70px 0px;
}

.txt-col-white {
    color: #fff;
}

/*breadcrumbs start*/
.breadcrumb {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 0px;
    margin-top: -2px;
}


.bg {
    background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
}

.trainings-card-head a {
    color: #8b3ba7;
    font-weight: 600;
    font-size: 15px;
}

.trainings-card-para {
    color: #000;
    line-height: 1.75;
}

.underline {
    border-bottom: 1px solid #828282;
}

.training-btn {
    display: flex;
    justify-content: space-between;
}



    .training-btn .btn2 {
        background: #8b3ba7;
        text-align: center;
        padding: 8px 0px;
        font-weight: 500;
        color: #fff;
        border-radius: 4px;
        padding: 10px 14px;
    }

    .training-btn .btn {
        /*background: #8b3ba7;*/
        text-align: center;
        padding: 8px 0px;
        font-weight: 500;
        color: #fff;
        border-radius: 4px;
        padding: 10px 14px;
        cursor: pointer;
        border: none;
    }

.btn {
    background: var(--color-accent-green);
    border: none;
}

    .btn:hover {
        background: linear-gradient(281deg, rgb(46 56 165) 0%, rgba(125, 94, 183, 1) 35%, rgb(139 59 167) 100%);
    }

.training-cards .cards-wrap {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 30px 30px;
    border-top: 6px solid #8b3ba7;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
}

    .training-cards .cards-wrap p {
        flex-grow: 1;
    }

    .training-cards .cards-wrap:hover {
        transition: .5s;
        transform: translateY(-5px);
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

.mbanner {
    line-height: normal;
    position: relative;
}

    .mbanner img {
        max-width: 100%;
        min-height: 125px;
    }

.vou_form {
    position: absolute;
    right: 2rem;
    bottom: -50%;
    max-width: 450px;
    width: 100%;
    z-index: 2;
}

@media (min-width: 901px) and (max-width: 1099px) {
    .vou_form {
        right: 2rem;
        bottom: -102%;
    }
}

@media (min-width: 1100px) and (max-width: 1299px) {
    .vou_form {
        right: 2rem;
        bottom: -55%;
    }
}

@media (min-width: 1300px) and (max-width: 1500px) {
    .vou_form {
        right: 2rem;
        bottom: -48%;
    }
}

@media (min-width: 1500px) {
    .vou_form {
        right: 5rem;
        bottom: -10%;
    }
}

@media (max-width: 900px) {
    .vou_form {
        position: static;
        margin-block-end: 1rem;
        width: 100%;
        padding-inline: 1rem;
        max-width: 100%;
        margin-inline: auto;
    }
}

.breadcrumb a {
    color: #8b3ba7;
    text-decoration: none;
    margin: 0px 4px;
    font-size: 13px;
    font-weight: 900;
}

.breadclr {
    color: #8b3ba7;
}

    .breadclr .brdArw {
        font-size: 17px;
    }

.crd-m {
    margin-bottom: 29px;
}

.bt-ln {
    border-top: 1px solid #b9b9b9;
}

.under-p {
    margin: 7% 0px;
}

/*breadcrumbs end*/


.aws-voucher-detail-banner {
    background-image: url(../images/banner/aws-voucher-detail.webp);
}

/*banner end*/
/*certified solutions architect associate banner start*/

.voucher-banners {
    padding: 3rem 11rem;
    background-size: 100% 100%;
}

.banner-head {
    color: #fff;
    text-align: left;
    line-height: 4rem;
    font-weight: 600;
    font-size: 38px;
}

.banner-para {
    color: #fff;
}

.detail-para {
    color: #000;
}

.voucher-right-side {
    position: sticky;
    top: 0;
    padding-left: 12%;
}

.aws-img {
    text-align: center;
}

.trgthd {
    color: #8b3ba7;
    /* font-size: 31px; */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    /* text-align: center; */
}

.training-detail-partition .icn-one {
    fill: #8b3ba7;
    margin-right: 8px;
    margin-top: 5px;
}

.icn-li {
    display: flex;
    margin-bottom: 9px;
}

    .icn-li p {
        line-height: 1.2;
    }

.learn-wrapper {
    border: 2px solid #C6C6C6;
    border-radius: 8px;
    padding: 20px 30px;
}

.learn-svgs {
    width: 35px;
}

.certification-img {
    text-align: center;
}

.frm-head {
    text-align: center;
    font-size: 31px;
    margin-bottom: 8%;
}

.frm-clr {
    font-weight: bold;
}

.frm input,
textarea {
    width: 100%;
    outline: none;
    border: 1px solid #acacac;
    padding: 9px;
    border-radius: 4px;
    color: #8b3ba7;
    margin-bottom: 24px;
}

.frm .mapinput {
    width: 20%;
}

.frmbtn {
    background: #8b3ba7;
    color: #fff !important;
    text-align: center;
    padding: 9px 36px;
    border-radius: 24px;
}

.myinput-img {
    position: absolute;
}

.us-map {
    width: 31%;
    outline: none;
    border: 1px solid #acacac;
    border-radius: 4px;
    color: #8b3ba7;
    padding: 0px 10px;
    margin: 0px 10px 0px 0px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
}

textarea {
    font-family: unset;
    font-size: 13px;
    height: 6rem;
}

    textarea::placeholder {
        color: #444444;
    }

.languages-wrapper {
    background: #8b3ba7;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    padding: 30px 30px;
}

.languages .para {
    color: #fff;
    margin-top: 11%;
}

.languages span {
    font-weight: bold;
}

.social-icons .heading {
    font-weight: bold;
    font-size: 30px;
}

.social-icons .social-svgs {
    background: #8b3ba7;
    fill: #fff;
    width: 35px;
    height: 35px;
    border-radius: 21px;
    padding: 8px;
    margin-right: 10px;
}

/*certified solutions architect associate banner end*/

/* aws voucher start*/
.voucher-card-para {
    color: #8b3ba7;
}

.form_content_order h4,
.form_content_order ul li {
    color: #8b3ba7;
}

.form_content_order ul li {
    padding-left: 0 !important;
}

.voucher-cards .cards-wrap {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 30px 30px;
    border-top: 6px solid #8b3ba7;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
}

    /* .voucher-cards p {
        line-height: 1.25;
    } */

    .voucher-cards.cards-wrap:hover {
        transition: .5s;
        transform: translateY(-5px);
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

.voucher-cards span.voucher-sc {
    /* text-decoration: line-through; */
    color: #8b3ba7;
    font-weight: bold;
}

.line-over-text {
    position: relative;
    display: inline-block;
    padding-top: 10px;
}

    .line-over-text::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: rgb(201, 5, 5);
    }

.voucher-price {
    font-size: 16px;
    font-weight: bold;
    color: #8b3ba7;
}

.voucher-frm {
    background: #fff;
    border-radius: 10px;
    padding: 24px 27px;
}

.voucher-contss .head,
.voucher-information .head,
.faqs .head,
.faqs .head {
    color: #8b3ba7;
    font-weight: 600;
}

.bg-gray {
    background: rgba(50, 50, 93, 0.25)
}

.themecolor {
    color: rgba(0, 0, 0, 0.73);
}

.voucher-para {
    color: #000;
}

.voucher-information .information-wrapper {
    background: #e5f2ff;
    border: 2px solid #8b3ba7;
    padding: 43px 45px;
    border-radius: 10px;
    color: #8b3ba7;
}

.voucher-information ul li {
    margin-bottom: 8px;
}

.voucher-information svg {
    fill: #8b3ba7;
    width: 10px;
    margin-right: 5px;
}

.faq-img {
    text-align: center
}

.faqs .accordion-title {
    border: 2px solid #8b3ba7;
    padding: 8px 21px;
    color: #8b3ba7;
}

.accordion-conts {
    /* padding: 16px 21px;
    display: none;
    background: #8b3ba7;
    color: #fff; */
    /* -webkit-transition: .7s ease;
    -moz-transition: .7s ease;
    -o-transition: .7s ease;
    transition: .7s ease; */
}

.accordion-items {
    position: relative;
    padding-bottom: 19px;
    cursor: pointer;
    transition: .10s;
}


    .accordion-items.active .accordion-conts {
        display: block;
        margin-top: 1px;
    }

/* aws voucher end*/

/* contact page start */

.cnct-banner {
    background-image: url(../images/banner/cantact__banner.webp);
}


.contact-part {
    /* background: #8b3ba7; */
}

    .contact-part .left {
        box-shadow: rgb(0 0 92 / 25%) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
        text-align: center;
        border-radius: 8px;
        padding: 33px 0px;
    }

.icnss {
    fill: #ffffff;
    border-radius: 25px;
    border: 3px dotted #ffffff;
    width: 58px;
    height: 55px;
    padding: 11px;
}

.name-para {
    color: #ffffff;
}

.name-head {
    color: #ffffff;
    font-weight: 600;
    font-size: 29px;
}

.cntct-pgr {
    margin-left: 10%;
}

.space {
    padding-bottom: 60px;
}

.contact-part .maial {
    color: #ffffff;
}
/* contact page end */



/* blog start*/
.blog-wrapper {
    margin: 0px 15px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 31px 30px;
    border-radius: 10px;
}

.blog .blg-head {
    font-size: 22px;
    height: 108px;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

.blog .border {
    border: 1px solid #8b3ba7;
    margin-bottom: 19px;
}

.blog .para {
    margin-left: 15px;
    color: #8b3ba7;
    font-weight: 600;
}

.blog-wrapper .paragraphs {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blg-abt-btn {
    background: #8b3ba7;
    color: #fff;
    display: block;
    text-align: center;
    padding: 8px 0px;
    border-radius: 4px;
}
/*blog end*/

/* author start */
.autortab {
    background-color: #dde9fb;
}

.auth-backgrnd {
    padding: 20px 20px;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mst-pplr {
    background: #8b3ba7;
    padding: 22px 26px;
    color: #fff;
    margin-bottom: 5%;
    border-radius: 7px;
}

    .mst-pplr svg {
        fill: #fff;
        margin-right: 10px;
    }

    .mst-pplr ul li {
        margin-bottom: 9px;
        display: flex;
    }

        .mst-pplr ul li a {
            color: #fff;
        }

.authss-img img {
    box-shadow: rgb(0 0 0 / 50%) 0px 3px 8px;
    border-radius: 77px;
    padding: 6px;
    width: unset;
}

.auth-head {
    font-size: 35px;
    color: #8b3ba7;
    font-weight: bold;
}

.blog-wrapper {
    margin: 12px 15px;
}

.art-para {
    font-weight: 600;
    font-size: 20px;
}

.auth-paras {
    color: #000;
}
/* author end */

/*media query start*/
@media(max-width:1400px) {

    .banner-head {
        font-size: 31px;
    }

    .voucher-banners {
        padding: 1rem 3rem;
    }

        .voucher-banners .frm {
            border: 1px solid #8b3ba7;
            padding: 13px 24px;
            border-radius: 5px;
            max-width: 324px;
        }

            .voucher-banners .frm input, textarea, select {
                width: 100%;
                outline: none;
                border: 1px solid #8b3ba7;
                padding: 9px;
                border-radius: 4px;
                color: #8b3ba7;
                margin-bottom: 12px;
                letter-spacing: 1.2;
                font-size: 16px;
                padding-inline-start: 3rem;
            }

        .voucher-banners textarea {
            font-family: unset;
            font-size: 13px;
            height: 4rem;
            resize: none;
        }
}

@media(max-width:1100px) {
    .trainings-card-head {
        font-size: 18px;
    }

    .banner-head {
        font-size: 22px;
        line-height: 3rem;
    }

    .trainings-card-head a {
        font-size: 18px;
    }

    .training-btn .btn {
        padding: 10px 16px;
    }

    .training-btn .btn2 {
        padding: 10px 9px;
    }

    .voucher-frm {
        padding: 17px 15px;
    }

    .blog .blg-head {
        font-size: 17px;
    }

    .blog-wrapper {
        padding: 13px 16px;
    }
}

@media(max-width:1200px) {
    .tcp {
        padding: 0px 14px;
    }

    .voucher-price {
        font-size: 18px;
    }

    .voucher-frm {
        padding: 17px 17px;
    }
}

@media(max-width:992px) {

    .voucher-right-side .aws-img img {
        width: 100%;
    }

    .voucher-frm {
        padding: 17px 18px;
    }

    .voucher-banner-head {
        font-size: 31px;
    }

    .blg-mrgn {
        margin-bottom: 38px;
    }

    .authss-img img {
        width: unset;
    }
}

@media(max-width:768px) {
    .p {
        padding: 40px 0px;
    }

    .breadcrumb {
        padding: 5px 0px;
    }

    .mrgn {
        margin-top: 7%;
    }


    .banner-head {
        font-size: 19px;
        line-height: 2rem;
    }

    .breadcrumb a {
        margin: 0px 5px;
        font-size: 12px;
    }

    .voucher-right-side {
        padding-left: unset;
    }

        .voucher-right-side .aws-img img {
            width: unset;
        }

    .trainings-m {
        margin-top: 7%;
    }

    .banner-head {
        font-size: 22px;
        padding-block-end: 1rem;
    }

    .leftmrgn {
        margin-bottom: 20px;
    }

    .cntct-head {
        font-size: 36px;
    }

    .cntct-pgr {
        margin-left: unset;
    }
}

@media(max-width:575px) {
}

/*media query end*/
/*my style end*/


/*vikas  css*/

li:hover {
    animation-duration: 0.3s;
    animation-delay: 0.3s;
}


/* HEADER */

.header {
    box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.25);
}

/* Top Header */

.top_header {
    background-color: #8b3ba7;
    background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
}

.top_header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .top_header_wrapper a {
        color: #7f5fb8 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.top_header ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
}

.callus {
    padding: 3px 13px;
    background: #fff;
    border-radius: 4px;
}

.topcall {
    display: flex;
    gap: 0.5rem;
}

.top_header svg {
    fill: #7f5fb8 !important;
}

.email span {
    margin-inline-start: 0.5rem;
    display: none;
}

@media (max-width:550px) {
    .logo_img {
        width: 145px;
    }
}
/* NAVBAR */

.navmenu {
    /* border: 0px solid #514F96; */
    background: #FFF;
    /* box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.25); */
    background-color: white;
    z-index: 9;
    position: sticky;
    top: 0px;
    border-bottom: 0.5px solid #ddd;

}

.navbar {
    background-color: #f4ebf7;
    position: fixed;
    top: 0;
    z-index: 1;
    left: -500px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: 0.2s;
    opacity: 0;
/*    background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);*/
}

.navbar_wrapper {
    padding-top: 20px;
}

    .navbar_wrapper li {
        padding: 12px 0 12px 24px;
        border-bottom: 1px solid rgb(139 59 167);
    }

.border_bottom {
    border-bottom: none !important;
}

/*.navbar_wrapper li a {
    color: #ffffff;
}*/

.navbar_wrapper .call {
    padding: 16px;
    border-bottom: none;
}

    .navbar_wrapper .call a {
        background-color: #ffffff;
        color: #8b3ba7;
        padding: 12px;
        border-radius: 5px;
    }

.navmenu .arrow {
    fill: rgb(139 59 167);
    width: 12px;
}

/*  */

.mob_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:12%;
}

.toggle-bar {
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 33px;
    height: 2px;
    margin: 7px 0px;
    padding: 0px;
    background-color: #8b3ba7;
    color: #8b3ba7;
}

.change .bar1 {
    color: black;
    transform: rotate(45deg) translate(7px, 7px);
    z-index: 9;
}

.change .bar2 {
    opacity: 0;
    z-index: 9;
}

.change .bar3 {
    color: black;
    transform: rotate(-45deg) translate(6px, -6px);
}

.show-mynav {
    /* display: block; */
    visibility: visible;
    transition: 0.5s;
    left: 0px;
    opacity: 1;
}

    .show-mynav main {
        opacity: .1;
        background-color: #212529;
    }

/* dropdown */

.res {
    text-align: right;
    position: absolute;
    top: 15px;
    right: 18px;
}

.dropnav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropnav > div {
    gap: 5px;
}

.dropnav .drop_ov {
    max-height: 450px;
    overflow-y: auto;
}

    .dropnav .drop_ov::-webkit-scrollbar-thumb {
        border-radius: 9px;
        background-image: linear-gradient(45deg, rgb(213 173 228), #eaeaea)
    }

.dropnav span {
    padding: 0 10px;
    cursor: pointer;
}

.dropmynav {
    display: block !important;
}


.head {
    font-weight: 700;
}



/* HERO */

.hero {
    background-image: url(../images/banner/hero__banner.webp);
    background-size: 100% 100%;
    height: 140px;
    display: flex;
    align-items: center;
}

    .hero h1 {
        font-size: 18px;
        font-weight: 700;
        color: #8b3ba7;
        width: 220px;
        padding-block-start: 3.5rem;
    }

.hero__desc {
    width: 48%;
}

.hero p {
    line-height: 1.25;
    font-size: 10px;
}
/* about us */
.about__wrapper {
    gap: 32px;
}

.about__img__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about__lsec img {
    width: 100%;
}

.first-img {
    position: absolute;
    left: 14px;
    top: 24px;
    width: 120px;
}

.second-img {
    width: 100%;
}

.pnt-img {
    background: #8b3ba7;
    padding: 14px;
    border-radius: 15px;
}

.abt {
    font-weight: 700;
    font-size: 22px;
}


/* FEATURES */


.features .head {
    text-align: center;
    font-weight: 600;
}


.feature-cont {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 99px 42px 16px 42px;
    border-radius: 20px;
    border-top: 3px solid #8b3ba7;
    height: -webkit-fit-content
}

.f-p {
    padding-top: 65px;
}

.feature-all {
    position: relative;
    margin-bottom: 24px;
    /* margin-inline-end: 24px; */
}


.features-img {
    position: absolute;
    top: -40px;
    left: 40px;
}

.features .f-head {
    font-weight: 600;
    font-size: 24px;
}

/* VOUCHERS */

/* .vouchers h2,
.training h2, */
.roadmap__success h2 {
    text-align: center;
}

.vouchers,
.training {
    padding: 45px 0;
}

    .vouchers h2,
    .training h2 {
        padding-block-end: 1.5rem;
    }

.imge img {
    width: 120px;
}
/* SWIPER */
.swiper {
    /* padding: 45px 0; */
}


.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
    }

/* SWIPER CLOSE */



/* discount__support */

.discount__support {
    /* background: #8b3ba7; */
    background-image: linear-gradient(to bottom, #8352de8a, #48105f4a), url(../images/banner/prfts.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 45px 0;
}

.discount__support__wrapper {
    gap: 8px;
    flex-wrap: wrap;
    flex-basis: 1;
}

.dis {
    background: #fff;
    padding: 10px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin-bottom: 12px;
}

    .dis h3 {
        font-size: 21px;
        font-weight: 600;
    }

/* roadmap__success */

.roadmap__success__wrapper {
    gap: 5px;
    justify-content: center;
}

.roadmap__success__content {
    padding: 16px;
    margin-bottom: 24px;
}

    .roadmap__success__content h4 {
        padding: 8px 0;
        font-weight: 600;
    }


/* three__points__program */
.three__points__program {
    background-color: #8b3ba7;
}

.three__points__program__wrapper {
    place-content: center;
    padding: 2rem 0;
}

.point-sideline {
    border-right: unset;
    padding-block-end: 3rem;
}

.pointshd,
.pointsp {
    color: #ffffff;
}

.pointshd {
    font-size: 2.5rem;
    font-weight: 600;
}

.pointsp {
    font-size: 20px;
}

.point-bck {
    text-align: center;
}


/*  */


.why-us-card {
    padding: 40px;
    color: #8b3ba7;
    border-radius: 12px;
    display: grid;
    grid-template-rows: 1fr 2fr;
    transition: all ease-in-out 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}


.con {
    gap: 10px;
}

.why-us-card p {
    color: #8b3ba7;
}

.why-us-head {
    font-size: 1.25rem;
    font-weight: 700;
}

/*  */

.partners__logo__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}


.prtlgwrp {
    background-color: #ffffff;
    padding: 8px;
    width: 160px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border: 1px solid #b9b9b9;
}

    .prtlgwrp img {
        width: 100%;
        height: -webkit-fill-available;
    }

.rel img {
    width: 100%;
}

.rel {
    background-color: #ffffff;
    padding: 8px;
    width: 160px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border: 1px solid #b9b9b9;
    height: 130px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
}

.cert {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .cert a {
        font-size: 14px;
        color: #063e79;
    }

/*  */

.joinwithus {
    background-image: linear-gradient(to bottom, #8352de8a, #48105f4a), url(../images/banner/join.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    height: 285px;
    display: flex;
    align-items: center;
}

.joinwithus__content {
    padding: 48px 0;
    /*max-width: 305px;*/
}

    .joinwithus__content p {
        color: #ffffff;
        line-height: 1.25;
        padding-block-start: 0.5rem;
        font-size: 1.2rem;
        font-weight: 700;
    }

.partner-head {
    text-align: center;
}

.partners__content p {
    letter-spacing: 0.5px;
    line-height: 32px;
}


.joinwithus a {
    padding: 16px;
    color: #ffffff;
    background-color: #8b3ba7;
    border-radius: 8px;
    margin-top: 24px;
    display: inline-block;
}


/* ENQUIRY */

/*  */
.enquire__lft {
    text-align: center;
    margin-block-end: 3rem;
}

    .enquire__lft img {
        width: 100%;
    }



.frm {
    border: 1px solid rgb(139 59 167);
    padding: 24px 24px;
    border-radius: 5px;
    max-width: 450px;
}
/* .frm_wrap{
    display: flex;
    justify-content: center;
} */
.frm-head {
    text-align: center;
    font-size: 31px;
    margin-bottom: 8%;
}

.frm-clr {
    font-weight: bold;
    color: #021f3d;
}

.frm input,
textarea,
select {
    width: 100%;
    outline: none;
    padding: 9px;
    border-radius: 4px;
    color: #1c1c1c;
    margin-bottom: 14px;
    letter-spacing: 1.2;
    font-size: 16px;
}

.frm .mapinput {
    width: 20%;
}

.frmbtn {
    background: #8b3ba7;
    color: #fff;
    text-align: center;
    padding: 9px 36px;
    border-radius: 24px;
}

.myinput-img {
    position: absolute;
}

.us-map {
    width: 31%;
    outline: none;
    border: 1px solid #acacac;
    border-radius: 4px;
    color: #444444;
    padding: 0px 10px;
    margin: 0px 10px 0px 0px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
}

textarea {
    font-family: unset;
    font-size: 13px;
    height: 3rem;
    resize: none;
}

    textarea::placeholder {
        color: #8b3ba7;
    }

/* testimonial */

.testimonial {
    margin: 24px 0;
    padding: 45px 0;
    background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
}

    .testimonial h3, .testimonial h4 {
        margin-block: 1rem;
        color: #ffffff;
        font-weight: 700;
    }

    .testimonial p {
        color: #ffffff;
    }

.say p {
    color: #8b3ba7;
}

.testimonial__Wrapper {
    gap: 24px;
}

.test__wrapper {
    padding: 0 24px;
}

.testimonial__content h3 {
    font-weight: 700;
}



.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #8b3ba7;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    top: 40px;
    left: auto;
}

.swiper-button-prev {
    right: 50px;
}

.swiper-button-next {
    right: 18px;
}


.profile {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 32px;
    border-radius: 4px;
    height: 100%;
}

    .profile img {
        width: 90px;
        height: 90px;
    }

    .profile p {
        padding-top: 24px;
        line-height: 1.5;
    }

.rating {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    padding-top: 24px;
    gap: 2rem;
}

    .rating h2 {
        color: rgb(212 167 12);
    }


/* FAQ */

.faq__home__wrapper {
    padding-top: 2rem;
}

.fq__hd {
    text-align: center;
}

.faq__img {
    text-align: center;
}

.faq__home__wrapper img {
    width: 100%;
}

.faqs__home .accordion-title {
    padding: 8px 21px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: normal;
    /* background: #8b3ba7; */
    background: linear-gradient(281deg, rgb(46 56 165) 0%, rgba(125, 94, 183, 1) 35%, rgb(139 59 167) 100%);
}

.faqs__home .accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 4px;
}

.accordion__home {
    padding-top: 48px;
}

.accordion-conts {
    padding: 16px 21px;
    display: none;
    border: 1px solid #e5eef7;
    border-radius: 4px;
    -webkit-transition: .7s ease;
    -moz-transition: .7s ease;
    -o-transition: .7s ease;
    transition: .7s ease;
    transform: translateY(-314px) !important;
    transition: transform 1s linear !important;
}

.accordion-items {
    position: relative;
    padding-bottom: 8px;
    cursor: pointer;
    transition: .10s;
}

.accordion-title p {
    margin-bottom: 0;
    color: #fff;
    line-height: 1.2;
}

.accord__icon svg {
    fill: #fff;
}

.active .accordion-title .accord__icon svg {
    transform: rotate(180deg);
}

.accordion-items.active .accordion-conts {
    display: block;
    margin-top: 1px;
    transform: translateY(0) !important;
}







/* FOOTER */
.footer {
    /* background-image: url(../images/banner/footer.webp); */
    background: #1e2d5a;
    /* background-image: linear-gradient(45deg, rgb(179 179 179 / 75%), rgb(92 131 169 / 75%)),url(../images/banner/footer.webp); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    border-top: 1px solid #e6b9f8;
    border-bottom: 1px solid #e6b9f8;
    padding: 50px 0 0px 0;
}

.footer__logo {
    width: 100px;
    margin-bottom: 1.5rem;
}

.footer svg {
    fill: #ffffff !important;
}

.footer p,
.footer a {
    color: #f8f8f8;
}

.footer__sec__wrapper {
    padding-top: 1rem;
}

.footer__wrapper_sec {
    padding-bottom: 1rem;
}

.mail__wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__wrapper_sec h5 {
    font-weight: 700;
}

.location__icons {
    color: #8b3ba7;
}

.footer__bottom {
    border-top: 1px solid #8b3ba7;
    padding: 12px 0;
}

.social__icons__wrapper {
    display: flex;
    gap: 12px;
    margin-block-start: 1rem;
}

.social__icons {
    background-color: #06a0e5;
    border-radius: 50%;
    padding: 7px;
    width: 40px;
    height: 40px;
    display: flex;
    place-items: center;
    place-content: center;
    cursor: pointer;
    /*    border: 1px solid;*/
}

    .social__icons i {
        font-size: 20px;
    }

.fa-twitter {
    fill: #1DA1F2;
}

.fa-facebook {
    fill: #1877F2;
}

.fa-instagram {
    fill: #CD486B;
}

.fa-linkedin {
    fill: #0A66C2;
}

.footer .location,
.mail {
    fill: #8b3ba7;
}

.location__wrapper address {
    padding: 5px 0;
    font-style: normal;
}



/* inner banner */

.inner__banner {
    background-image: url(../images/banner/inner__banner.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    height: 150px;
}

.inner__banner__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner__txt {
    width: 45%;
}

.banner__img {
    text-align: end;
}

    .banner__img img {
        width: 77%;
    }

.inner__banner h1 {
    font-size: 16px;
    font-weight: 700;
    color: #8b3ba7;
}

/* Inner banner compelete */

/* About */

.about__banner {
    background-image: url(../images/banner/about_banner.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    /* padding: 86px 0; */
    display: flex;
    align-items: center;
    height: 150px;
}

.privacy__banner {
    background-image: url(../images/banner/privacy.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    /* padding: 86px 0; */
    display: flex;
    align-items: center;
    height: 150px;
}

.terms__banner {
    background-image: url(../images/banner/terms.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    /* padding: 86px 0; */
    display: flex;
    align-items: center;
    height: 150px;
}

.refund__banner {
    background-image: url(../images/banner/refund.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    /* padding: 86px 0; */
    display: flex;
    align-items: center;
    height: 150px;
}

.faq_banner {
    background-image: url(../images/banner/faq-banner.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    /* padding: 86px 0; */
    display: flex;
    align-items: center;
    height: 150px;
}

.banner__head {
    font-size: 34px;
    font-weight: 700;
    color: #8b3ba7;
}


.about__sec {
    padding: 45px 0 0;
}

    .about__sec h2 {
        text-align: center;
        font-weight: 700;
    }

        .about__sec h2 span {
            /* color: #8b3ba7; */
            color: rgba(125, 94, 183, 1);
        }

.about__rsec h3 {
    font-weight: 700;
}

/*  */
.about__vouchers {
    /* background-color: #e7f3ff; */
    background: linear-gradient(281deg, rgb(195 199 237) 0%, rgb(205 194 229) 35%, rgb(197 166 208) 100%);
}

    .about__vouchers h3 {
        font-weight: 700;
        position: relative;
        display: inline-block;
        color: rgb(71 37 134);
    }

        .about__vouchers h3::after {
            position: absolute;
            content: "";
            height: 2px;
            background-color: rgb(71 37 134);
            width: 55%;
            left: 50%;
            margin-left: 15px;
            top: 114%;
        }

.about__vouchers__wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.abt__img__vou {
    /*margin-bottom: 15px;
    margin-top: 15px;*/
    border-radius: 5px;
    width: 125px;
}

    .abt__img__vou a img {
        background-color: #fff;
        border-radius: 5px;
        transition: .3s;
        width: 100%;
        height: auto;
        border: 1px solid #b9b9b9;
        padding: 6px;
    }

        .abt__img__vou a img:hover {
            transform: scale(1.1);
        }

/* contact page start */
.banner {
    padding: 10% 0px;
    background-repeat: no-repeat;
    color: #8b3ba7;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    height: 150px;
}

.cnct-banner {
    background-image: url(../images/banner/cantact__banner.webp);
}

/* BLOG */


.blog__banner {
    background-image: url(../images/banner/blog-banner.webp);
    background-position: center;
}


/* blogdetails */
.blog_details {
    padding: 45px 0;
}

.blog__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
}

    .blog__author a {
        display: flex;
        color: #042f5c;
    }

        .blog__author a span {
            display: inline-block;
            padding-block-start: 4px;
            margin-inline-start: 4px;
        }


    .blog__author img {
        width: 30px;
        width: 30px;
    }

.auth-img a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #021f3d;
}

.update__date {
    color: #8b3ba7;
    font-weight: 600;
}

.blog__title h2 {
    font-weight: 700;
    font-size: 24px;
    color: #8b3ba7;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.blog_details h3 {
    font-weight: 700;
    font-size: 20px;
    color: #8b3ba7;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.25;
}

.blog_details h4 {
    font-weight: 700;
    font-size: 18px;
    color: #8b3ba7;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.25;
}

.blog_details p {
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #212529;
    text-align: left;
}

.blog_details b {
    font-weight: 900;
    color: #8b3ba7;
    letter-spacing: 1px;
}

.blog__comment {
    padding-inline: 2rem;
    padding-block-end: 2rem;
    border: 1px solid #8b3ba7;
    border-radius: 7px;
}

.frminput {
    margin: 24px 0;
}

    .frminput input {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        background: 0 0;
        outline: 0;
        border: 0;
        transition: all .3s;
        border-bottom: 1px solid #bebed2;
    }

    .frminput textarea {
        resize: none;
        border-bottom: 1px solid #bebed2;
    }

.post__cmnt a {
    padding: 15px;
    font-size: 18px;
    background-color: #8b3ba7;
    border-radius: 4px;
    color: #fff
}


.blog__media a {
    font-size: 24px;
    border: 1px solid #8b3ba7;
    padding: 3px 13px;
    margin-right: 12px;
    text-align: center;
    display: inline;
    background: aliceblue;
    border-radius: 4px;
}

.popvoucher {
    background-color: #ffffff;
    padding: 8px;
    width: 160px;
}

.mst-pplr-logos img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 29px 20px;
    border-radius: 11px;
    margin: 0px 16px 0px -1px;
}

.mst-pplr-logos .heading {
    color: #8b3ba7;
    font-weight: bold;
    margin-bottom: 7%;
}

.right-side-pplr {
    margin-left: 29px;
}

.right-side-pplr {
    padding-top: 45px;
    margin-left: unset;
}

.blg-bg-img {
    border: 1px solid #b7b7b7;
}


/* blogdetails */

/*  */
.cen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}


/* VOuchers */

.vouchers__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vouchers__card {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    gap: 1.5rem;
}

    .vouchers__card .card-img {
        padding-block: 1rem;
        text-align: center;
        background: #8b60ba0f;
    }

.dsc_crd {
    padding-inline: 1rem;
}

.vouchers__card p {
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 15px;
}

.voucher-sc {
    /* color: #444444; */
    /* text-decoration: line-through; */
    margin-inline-start: 0.5rem;
}
/*  */

.card-img img {
    width: unset !important;
}

.trainings-card-head {
    max-height: 87px;
    margin-block-end: 1rem;
}

.vouchers__inner__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vou__wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .vou__wrap > div {
        flex-grow: 1;
    }


/*  */
.voucher-contss {
    margin-top: 1.5rem;
}


/*guidelines*/

.guidelines h2 {
    font-weight: 600;
    color: #8b3ba7;
    text-decoration: underline;
}

.guidelines h3 {
    font-weight: 400;
    color: #8b3ba7;
}

.guidelines p {
    text-align: justify;
    line-height: 1.5;
    padding-block: 0.5rem;
}

.guidelines a {
    color: #8b3ba7
}

.guidelines ul {
    padding-block: 1rem;
    padding-left: 2rem
}

    .guidelines ul li {
        list-style: disc
    }
/* mediaQuery */
@media (max-width:1100px) {
    .mob_head {
        background-color: #f7f7f7;
        border-bottom: 2px solid #021f3d
    }

        .mob_head img {
            width: 145px;
        }

        .mob_head .logo {
            display: inline-block;
            padding-inline-start: 1rem;
        }

    .toggle-bar img {
        width: 30px;
    }

    .dropdown {
        background: #f0dcf8;
        margin-block-start: 12px;
        /* background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgb(112 91 152) 35%, rgb(78 35 94) 100%); */
    }

    /* .dropnav span {
            padding: 5px 16px;
            border-left: 2px solid #fff;
        } */

    .toggle-bar svg {
        width: 35px;
        height: 28px;
    }

    .navbar {
        overflow: auto;
        transition: 0.5s !important;
    }

    .navbar_wrapper li a {
        display: block;
        width: 100%;
    }

    .show-mynav {
        transition: 0.5s !important;
        /* transform: translateX(0) !important; */
        /* transform: translateX(-314px) !important; */
        /* transition: transform 1s linear !important; */
    }

    .dropdown {
        display: none;
    }
}

@media (min-width:576px) {
    .container {
        max-width: 90%;
    }

    .email span {
        margin-inline-start: 0.5rem;
        display: block;
    }

    .hero h1 {
        font-size: 21px;
        width: unset;
    }

    .hero p {
        line-height: 1.25;
        font-size: 13px;
    }


    /* ABOUT */
    .first-img {
        left: 124px;
        top: 3px;
    }


    .second-img {
        width: unset;
    }

    .voucher-img {
        display: block;
        width: 150px;
        height: 90px;
    }
    /* PROFILE */

    .profile {
        height: 338px;
    }

    /* discount__support */

    .discount__support__wrapper {
        gap: 0px;
    }

    .faq__home__wrapper img, .enquire__lft img {
        width: 100%;
        max-width: 450px;
    }

    .faqs__home .accordion-title {
        padding: 8px 21px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: normal;
    }


    /* VOuchers */

    .vouchers__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /*  */
    .vouchers__inner__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 95%;
    }


    .hero {
        height: 300px !important;
    }

        .hero h1 {
            font-size: 24px;
        }

    .con {
        gap: 0px;
    }

    /*  */

    .joinwithus {
        /* padding: 52px 0; */
        height: 285px;
    }

    /* test */
    .profile {
        height: unset;
    }


    .form__wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .my-input {
        font-size: 17px;
    }



    /* FOOTER */

    .footer__wrapper {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
        gap: 12px;
        align-items: flex-start;
        padding-block-end: 2rem;
    }

    .footer__sec__wrapper li {
        padding: 4px 0;
    }

    /* inner banner */
    .about__banner, .inner__banner, .blog__banner, .banner {
        height: 200px;
    }

    /* banner */

    .banner__head {
        font-size: 42px;
    }

    /* BLOG */

    .blog__title h2 {
        font-size: 32px;
    }

    .blog_details h3 {
        font-size: 24px;
    }

    .blog_details h4 {
        font-size: 22px;
    }

    .blog_details p {
        font-size: 16px;
    }

    /* VOUCHERS */
    .vouchers__wrapper {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 24px;
    }

    /*  */
    .vouchers__inner__wrapper {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 24px;
    }

    /*  */
    .voucher-contss {
        margin-top: 0;
    }

    .profile {
        margin-inline: 0.5rem;
    }

    .inner__banner h1 {
        font-size: 24px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 90%;
    }

    /* HERO */

    .hero {
        height: 400px !important;
    }

        .hero h1 {
            font-size: 32px;
            width: unset;
        }

        .hero p {
            line-height: 1.25;
            font-size: 13px;
        }

    /*  */
    .about__wrapper {
        gap: 0;
    }
    /*  */

    .point-sideline {
        border-right: 1px solid #fff;
        padding-block-end: 0rem;
    }
    /* join with us */
    /*.joinwithus__content {
        max-width: 482px;
    }*/

    /* testimonial */
    .testimonial__Wrapper {
        gap: 0;
        align-items: center;
    }

    /*faq  */


    .faqs__home .accordion-title {
        padding: 10px 9px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
    }

    .accordion-conts {
        padding: 16px 21px;
    }
}

@media (min-width: 1100px) {

    /* header */
    .toggle-bar {
        display: none;
    }

    .navbar {
        display: block;
        background-color: transparent;
        position: static;
        width: 100%;
        transform: none !important;
        background: #ffffff !important;
    }

    .navbar {
        visibility: visible;
        opacity: 1;
    }

    .header_wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
    }

    .navbar_wrapper {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 0;
        background-color: transparent;
        padding-top: 0;
    }

        .navbar_wrapper li a {
            color: rgba(125, 94, 183, 1);
        }

        .navbar_wrapper .call a {
            background-color: #8b3ba7;
            color: #ffffff;
            padding: 12px;
            border-radius: 22px;
        }

        .navbar_wrapper li {
            padding: 10px 12px;
            border-bottom: none;
        }

    .dropnav span {
        padding: 0 0;
        border-left: none;
    }

    .mob_head {
        display: none;
    }

    /* dropdown */
    .dropnav {
        position: relative;
    }

        .dropnav > div {
            padding-right: 0px;
        }

    .dropdown {
        position: absolute;
        left: 0px;
        /* background-color: #8b3ba7; */
        background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
        width: 250px;
        top: 77px;
        opacity: 0;
        transition: all 0.25s ease;
        /* Add smooth transition for opacity */
    }


        .dropdown ul li {
            border-bottom: 1px solid #ffffff;
            padding: 0px;
        }

            .dropdown ul li a {
                color: #ffffff;
                padding: 10px;
            }

    .navmenu #blue-arrow {
        fill: rgba(125, 94, 183, 1);
        width: 12px;
    }

    .dropnav:hover .dropdown {
        opacity: 1;
        display: block !important;
    }

    .dropdown {
        visibility: hidden;
        opacity: 0;
        top: 120px;
        transition: 0.5s;
    }

    .dropnav:hover .dropdown {
        opacity: 1;
        visibility: visible;
        top: 47px;
        transition: 0.5s;
    }

    /* HERO */


    .hero h1 {
        font-size: 42px;
        padding-block-start: 2rem;
    }

    .hero p {
        line-height: 1.75;
        font-size: 17px;
    }

    /* about */
    .about__banner, .inner__banner, .blog__banner, .banner {
        height: 300px;
    }

    .about {
        padding-top: 24px;
    }

    .about__wrapper {
        gap: 0px;
    }

    .second-img {
        width: auto;
    }

    /*  */
    .discount__support__wrapper .dis {
        margin-bottom: 0px;
    }

    /*  */
    .partners__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    /*  */

    .roadmap__success__wrapper {
        gap: 0px;
    }

    .joinwithus {
        height: 250px;
    }
    /*  */
    /* footer */

    .footerlogo {
        padding-right: 24px;
    }

    .footer__bottom {
        padding: 0;
        padding-top: 12px;
    }

    .footer__bottom__wrapper {
        display: flex;
        align-items:center;
        justify-content: center;
    }

    /* inner banner */
    .banner__img img {
        width: unset;
    }

    .banner__head {
        font-size: 52px;
    }


    /* BLOG */

    /* .blog__title h2 {
        font-size: 42px;
    } */

    .blog_details h3 {
        font-size: 32px;
    }

    .blog_details h4 {
        font-size: 24px;
    }

    .right-side-pplr {
        margin-left: 10%;
    }

    .inner__banner h1 {
        font-size: 32px;
    }


    /* VOUCHERS */
    .vouchers__wrapper {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 24px;
    }

    /* contact*/

}

@media (min-width:1325px) {
    .vouchers__inner__wrapper {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 24px;
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 85%;
    }


    /* HERO */
    /* .hero {
        padding: 160px 0px;
    }*/

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 20px;
    }

    .about__banner, .inner__banner, .blog__banner, .banner {
        height: 350px;
    }

        .inner__banner h1 {
            font-size: 38px;
        }
}


/*vikas css*/



/*modal css*/
/* The Modal (background) */
.modals {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modals__flx {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    animation-name: popup;
    animation-duration: 1s;
    animation-fill-mode: both;
    /* width: 61%; */
    margin: auto;
    border-radius: 10px;
    /* background: radial-gradient(black, transparent); */
}

@keyframes popup {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

/* Modal Content */
.modal-contents {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 40%;
    border-radius: 10px;
}

.modal__top {
    padding: 12px 10px;
    color: white;
    /* background: #8b3ba7; */
    background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
    display: flex;
    justify-content: space-between;
    padding-inline: 5%;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.pop__title h3 {
    font-weight: 400;
    font-size: 1rem;
}

.pop__frm {
    padding: 20px 5%;
}

.frm__field {
    margin-bottom: 0.5rem;
}

    .frm__field input,
    .frm__field textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #042f5c;
        height: 45px;
        color: #333;
        outline: #82b6eb;
        font-size: 16px;
        letter-spacing: 0.5px;
        border-radius: 2px;
        line-height: 1.5;
        background-color: #f7f7f7;
        background-clip: padding-box;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        border-radius: 5px;
    }

    .frm__field select {
        padding: 14px;
        border: 1px solid #dadada;
        height: 45px;
        color: #333;
        font-size: 13px;
        border-radius: 0;
        line-height: 1.5;
        outline: none;
        background-color: #c8d4df75;
        width: 33%;
    }


    .frm__field textarea {
        height: unset !important;
    }

    .frm__field button .mybtn-1 {
        text-align: center;
        border: none;
        background: #07294d !important;
        color: #fff !important;
        padding: 0.5rem;
        font-size: 1rem;
        transition: all .5s ease 0s;
        width: 100%;
        border-radius: 5px;
    }

    .frm__field button:hover {
        background-color: #013f81;
    }

.slct__wrap {
    display: flex;
    gap: 5px;
}

.frm__field textarea {
    resize: none;
}

/* The Close Button */
.closes {
    color: #042f5c;
    border-radius: 50%;
    font-weight: 400;
    background-color: #fefefe;
    width: 26px;
    height: 22px;
    text-align: center;
    line-height: 19px;
    font-size: 22px;
}

    .closes:hover,
    .closes:focus {
        background-color: #c7c7c7;
        text-decoration: none;
        cursor: pointer;
    }

input::placeholder {
    font-size: 14px;
    color: #042f5ce0;
}




.vou_sec_desc {
    padding: 2rem;
    background: aliceblue;
    border-radius: 4px;
    box-shadow: 2px 2px 2px #ddd;
    margin-block-start: 2rem;
}

    .vou_sec_desc h2 {
        color: #8b3ba7;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-block-end: 1rem;
    }

    .vou_sec_desc h3 {
        font-weight: 700;
        letter-spacing: 0.5px;
        font-size: 24px;
        margin-block-end: 0.75rem;
    }

    .vou_sec_desc p {
        line-height: 1.75;
    }

    .vou_sec_desc a {
        font-weight: 700;
        color: #063e79;
    }

@media(max-width:500px) {
    .vou_sec_desc p {
        line-height: 1.5;
        font-size: 14px;
    }

    .vou_sec_desc h3 {
        font-size: 20px;
        margin-block-end: 0.75rem;
    }
}

@media(min-width:1200px) {
    .modal-contents {
        width: 450px;
    }

    .voucher-price {
        margin-top: 1rem;
    }

    .feature-cont {
        height: 312px;
    }
}

@media(max-width:1200px) {
    .modal-contents {
        width: 90%;
    }

    .feature-cont {
        height: auto,
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    .hero {
        height: 250px !important;
    }

        .hero h1 {
            font-size: 22px;
            padding-block-start: 2rem;
        }
}

@media (min-width: 1400px) {
    .hero {
        height: 500px !important;
    }

        .hero h1 {
            font-size: 42px;
            padding-block-start: 2rem;
            width: unset;
        }
}
/*modal css*/

.voucher-left-side ol, .voucher-left-side ul {
    margin-inline-start: 1rem;
}

.voucher-left-side li {
    list-style: disc;
    margin-block: 0.5rem;
}




/*NEW CHANGES*/


.count_in {
    padding-left: 80px !important;
}

.modal__top {
    border-radius: 9px 9px 0 0;
}

.pop__title h3 {
    font-size: 1.75rem;
}

.frm__field input {
    line-height: 1;
}

.mt {
    margin-block-start: 1.25rem;
}

.it_vou_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    align-items: stretch;
    gap: 2rem;
}

.it_vou_card {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

/* Mobile first - 1 column */
@media (max-width: 599px) {
    .it_vou_wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        padding: 0 1.5rem;
    }
}
/* Tablets - 2 columns */
@media (min-width: 600px) and (max-width: 899px) {
    .it_vou_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Small desktops - 3 columns */
@media (min-width: 900px) and (max-width: 1249px) {
    .it_vou_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large screens - 4 columns (above 1250px) */
@media (min-width: 1250px) {
    .it_vou_wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Common styles */
.w {
    width: 100%;
    padding-inline: 1rem;
    padding-block-end: 1rem;
}

    .w a {
        display: block;
        width: 100% !important;
    }

.trainings-card-head {
    flex: 1;
    /* Takes up remaining space equally */
    min-height: 87px;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1rem;
    margin: 0;
    box-sizing: border-box;
    color: #8b3ba7;
    font-weight: 700;
    font-size: 15px;
}

.cd_img {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    position: relative;
    border-bottom: 0.5px solid #ddd;
    filter: drop-shadow(1px -3px 4px black);
}

    .cd_img img,
    .disc_img img {
        max-width: 100%;
        height: auto;
        width: 145px;
    }




.frm__field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #042f5c;
    height: 45px;
    color: #333;
    outline: #82b6eb;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 2px;
    line-height: 1.5;
    background-color: #f7f7f7;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 5px;
}

.iti {
    display: block !important;
}

.modals {
    z-index: 999;
}


@media (min-width: 1200px) and (max-width: 1200px) {
    .modal-contents {
        /* width: 463px; */
        max-width: 445px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .iti__country-list {
        width: 400px !important;
    }
}

@media (max-width: 500px) {
    .modal-contents {
        /* width: 463px; */
        max-width: 400px;
        width: 100%;
    }

    .iti__country-list {
        width: 360px !important;
    }
}

.txt_col {
    color: #8b3ba7;
}

.pt2 {
    padding-top: 2rem;
}


.vou_ds p {
    line-height: 1.5;
}

.disc_badge {
    position: relative;
    width: 180px;
    height: 36px;
    margin: 0px auto 7px;
    background: linear-gradient(90deg, #8b3ba7 0%, #021f3dbf 100%);
    filter: drop-shadow(-6px 1px 3px #333);
    color: #fff;
    font-weight: bold;
    padding-left: 38px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 5px;
    text-shadow: -2px -2px 2px #333;
    display: flex;
    align-items: center;
    font-size: 19px;
}

    .disc_badge::before,
    .disc_badge::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .disc_badge::before {
        width: 10px;
        background-image: radial-gradient(circle at -5px 10px, transparent 12px, #fff 13px, #fff 0px);
        background-size: 20px 20px;
        background-position: 0 15px;
    }

    .disc_badge::after {
        width: 15px;
        background-image: radial-gradient(circle at 15px 10px, #fff 12px, transparent 13px, transparent 0px);
        background-size: 20px 40px;
        background-position: 0 15px;
    }

.training-btn {
    padding: 1rem;
}



/*30th june*/
.hero_home {
    background: #a664c0;
}

.myUniqueSwiper .swiper-slide {
    background: #a664c0 !important;
    /* background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%) !important; */
}

/* General styling for the layout */

.hero_home_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 1rem;
}

@media(max-width:650px) {
    .hero_home_wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        padding: 1rem;
    }
}

.hero_lsec {
    width: 100%;
}

.hero_rsec {
    width: 100%;
    margin-inline-start: 0;
    margin-inline-end: 0;
    position: relative;
}

#enquire {
    position: absolute;
    top: -7rem;
}

/* Swiper specific styles */
.myUniqueSwiper {
    width: 100%;
    height: 400px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

    .myUniqueSwiper .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .myUniqueSwiper .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

@media(min-width:1200px) {
    .myUniqueSwiper .swiper-slide img {
        margin-inline-start: 2rem;
    }
}

@media(min-width:1400px) {
    .myUniqueSwiper .swiper-slide img {
        margin-inline-start: 6rem;
        width: 80%;
    }
}

/* Enquiry form styles */
.myform-2 {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    top: 0;
    z-index: 0;
    margin-block: 1rem;
    max-height: fit-content;
}

    .myform-2 select {
        border: 1px solid #8b3ba7;
    }

@media(max-width:989px) {
    .frm {
        max-width: 100%;
    }
}

.input1,
.input2 {
    height: 45px;
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

    .input1 svg,
    .input2 svg {
        position: absolute;
        left: 11px;
        top: 50%;
        /* Center vertically */
        transform: translateY(-50%);
        fill: var(--color-primary-navy);
        width: 20px;
        height: 20px;
    }

    .input2 input,
    .input1 input,
    .input1 select {
        width: 100%;
        height: 100%;
        padding-left: 2.8rem;
        border-radius: 5px;
        border: 1px solid #8b3ba7;
        outline: none;
        font-size: 15px;
        box-sizing: border-box;
        padding-left: 3rem;
        color: #8b3ba7;
    }


    .input1 select {
        padding-left: 3rem;
    }

.inp {
    display: block;
    width: 100%;
    padding: 0.625rem;
    font-size: 0.875rem;
    color: #8b3ba7;
    background-color: #f9fafb;
    border: 1px solid #8b3ba7;
    border-radius: 0.5rem;
    box-sizing: border-box;
    /* height: 45px; */
}
.dropdown-checkbox button{
    height: 37px;
}
.mybtn-1 {
    background-color: #8b3ba7;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.3s ease;
}

    .mybtn-1:hover {
        background-color: #8b3ba7;
    }

/* Responsive adjustments */
@media (min-width: 992px) {
    .hero_home_wrapper {
        flex-direction: row;
        padding: 0 1rem;
    }

    .hero_lsec {
        width: 60%;
    }

    .hero_rsec {
        width: 40%;
    }
}

@media (min-width: 992px) {
    .hero_home_wrapper {
        gap: 2rem;
    }

    .hero_lsec {
        width: 65%;
    }

    .hero_rsec {
        width: 35%;
    }
}

/* Existing styles from your original code (kept for completeness if they are used elsewhere) */
@media (max-width: 991px) {
    .first-img {
        display: none;
    }

    .second-img {
        width: 55%;
    }

    .feature-all {
        margin-bottom: 45px;
    }
}

@media (max-width: 768px) {
    .input1 {
        height: 45px;
    }

    .myform-2 {
        padding: 1.5rem 1rem;
    }

    .kr-form {
        margin-top: 0px;
    }
}

@media (min-width: 1200px) {
    .hero_lsec {
        width: 73% !important;
    }
}

.ind_df {
    background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
    box-shadow: rgb(168 168 238 / 25%) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.ss {
    display: block;
    padding: 0.5rem 0.75rem;
    background: #1f2c5c;
    /*    background: linear-gradient(320deg, rgb(74 186 236) 0%, rgb(6 160 229) 35%, rgb(190 212 222) 100%);*/
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s ease;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.gp {
    margin-block: 2rem
}

.bt_cen {
    display: flex;
    justify-content: start;
}

.div_cen {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
}

.txbooking {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
}

.ind_df {
    padding-block: 20px;
}


.wrapper_btb {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

    .wrapper_btb h2 {
        color: #8b3ba7;
        margin-bottom: 30px;
        font-size: 28px;
    }

.wrap_lsec,
.wrap_rsec {
    display: inline-block;
    vertical-align: top;
    /*width: 48%;*/
    margin: 0 1%;
}

.audience-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: left;
    height: 100%;
    border-top: 4px solid rgba(125, 94, 183, 1);
}

    .audience-card h3 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .audience-card ul {
        padding-left: 0;
        list-style: none;
    }

    .audience-card li {
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
    }

        .audience-card li i {
            position: absolute;
            left: 0;
            top: 4px;
        }

@media (max-width: 768px) {

    .wrap_lsec,
    .wrap_rsec {
        width: 100%;
        margin-bottom: 20px;
    }
}

.wrapper_btb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Medium screens adjustment */
@media (max-width: 900px) {
    .wrapper_btb {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Mobile breakpoint - switch to single column */
@media (max-width: 768px) {
    .wrapper_btb {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
}

/* Small mobile adjustment */
@media (max-width: 480px) {
    .wrapper_btb {
        padding: 15px;
        gap: 1.5rem;
    }
}

.vou_ds {
    padding-top: 4rem;
}

.txt_cen {
    text-align: center;
}

.txt_bld {
    font-weight: 600;
}

.cl {
    /* color: #8b3ba7; */
    color: var(--color-primary-navy);
}

.cl-2 {
    /* color: #8b3ba7; */
    color: rgb(46 56 165);
}

.tick {
    color: #8b3ba7;
}


.wrap {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .wrap {
        grid-template-columns: 1fr;
    }
}

.po_img img {
    width: 100%;
    border-radius: 8px;
    filter: drop-shadow(2px 4px 6px black);
}


.wt_icon svg {
    fill: green;
    width: 48px;
    height: 48px;
}


.swiper-slide-active {
    outline: none;
}

    .swiper-slide-active .my-element {
        outline: none;
    }

.hidden {
    display: none;
}


/*text slider*/

.sliders-wrapper {
    font-size: 24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-wrap: wrap;
    text-align: center;
}

.sliderss {
    height: 45px;
    /* Height of one text item */
    overflow: hidden;
    padding: 0 10px;
}

    .sliderss > div {
        box-sizing: border-box;
        color: #FFF;
        height: 45px;
        /* Each text item's height */
        padding: 0 10px;
        text-align: center;
        line-height: 45px;
        margin-block-end: 0.25rem;
        border-radius: 6px;
    }

.text1 {
    background-color: #ffffff;
    animation: slide 4s linear infinite;
    color: #7f5fb8 !important;
}

.text2 {
    background-color: #ffffff;
    color: #7f5fb8 !important;
}

@keyframes slide {
    0% {
        margin-top: 0;
    }
    /* Show HTML */
    25% {
        margin-top: 0;
    }
    /* Hold HTML */
    50% {
        margin-top: -50px;
    }
    /* Slide to CSS */
    75% {
        margin-top: -50px;
    }
    /* Hold CSS */
    100% {
        margin-top: 0;
    }
}







.bl {
    font-weight: 700
}

.wt_icon {
    position: fixed;
    bottom: 28px;
    left: 84%;
    right: 26px;
    top: 7;
    display: inline;
}

    .wt_icon svg {
        fill: green;
        width: 48px;
        height: 48px;
    }

@media(min-width:650px) {
    .wt_icon {
        left: 94%;
    }
}

#btnSave {
    color: #ffffff !important;
}

#SuccessMessage {
    font-size: 11px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 20px;
    color: #257705 !important;
}

/*NEW CHANGES 15th july*/
:root {
    --primary-color: #0f234f;
    --secondary-color: #202123;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --white-color: #ffffff;
}

.voucher-section {
    background-color: hsl(261.57deg 43.45% 56.3% / 18%);
    padding: 3rem 0 0 0;
    border-radius: var(--border-radius);
    /* Bottom fade mask */
    /*  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);*/
}



.voucher-content {
    padding-right: 2rem;
}

.voucher-heading {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.card-certification-list {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

    .card-certification-list li {
        background-color: #e2d5f9;
        color: var(--primary-color);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
    }

        .card-certification-list li:before {
            content: "✓";
            margin-right: 0.5rem;
            font-weight: bold;
        }

.voucher-description {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.voucher-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

@media (max-width: 991.98px) {
    .voucher-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .voucher-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .voucher-section {
        padding: 2rem 0;
    }

    .voucher-heading {
        font-size: 1.75rem;
    }

    .card-certification-list {
        gap: 0.75rem;
    }

        .card-certification-list li {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
        }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

    .form-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: var(--primary-color);
    }













.vouchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 1.5rem;
}

@media(max-width:768px) {
    .voucher-card {
        max-width: 100%;
    }
}

.voucher-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

    .voucher-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.card-img {
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #11224e0d;
    border-bottom: 1px solid #e9ecef;
}

    .card-img img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        padding: 1rem;
    }

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    min-height: 75px;
}

    .card-title a {
        color: inherit;
        text-decoration: none;
    }

        .card-title a:hover {
            text-decoration: underline;
        }

.exam-valid {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.exam-series {
    font-weight: bold;
    color: var(--primary-color);
}

.cards-certification-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex: 1;
    padding-left:1.2rem;
}

    .cards-certification-list li {
        position: relative;
        padding-left: 0.25rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        line-height: 1.4;
        list-style: disc;
        color: var(--color-primary-navy);
    }

       /* .cards-certification-list li:before {
            content: "✓";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
*/
.vid_pg {
    text-decoration: underline;
    color: var(--primary-color);
}

.card-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* line-height: 16px; */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.price-section {
    margin-bottom: 1.5rem;
}

.price-display {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.original-price {
    /* text-decoration: line-through; */
    color: var(--secondary-color);
    margin-left: 0.5rem;
    /* font-size: 0.9rem; */
}

.price-selector {
    margin-top: 0.5rem;
}

.country-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-primary-navy);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--color-primary-navy);
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-primary {
    background-color: var(--color-accent-green);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: var( --color-primary-navy);
        color: white;
    }

.btn-outline {
    background-color: white;
    border: 1px solid var( --color-primary-navy);
    color: var( --color-primary-navy);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .btn-outline:hover {
        background-color: #06a0e51c;
    }

/* Utility classes for hiding elements */
.hide-price {
    display: none;
}

.hide-selector {
    display: none;
}

.hide-certifications {
    display: none;
}

@media (max-width: 767px) {
    .vouchers-grid {
        grid-template-columns: 1fr;
    }
}


.benefits-list {
    margin: 0.15rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.benefit-icon-container {
    background: #e2d5f9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon {
    fill: #8b3ba7;
    width: 20px;
    height: 20px;
}

.benefit-text h4 {
    margin: 0 0 0.3rem 0;
    color: #333;
    font-size: 1rem;
}

.benefit-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}





/* slider */
/* slider */
@media (max-width: 1000px) {
    .scroller_wrapper {
        display: none;
    }
}

.scroller {
    max-width: 100%;
    overflow: hidden;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: linear-gradient(281deg, #0f234f 0%, #0f234f 35%, #0f234f 100%);
}

.scroller[data-animated="true"] {
    --mask-color-start: hsl(193, 9%, 5%);
    --mask-color-end: hsl(170, 5%, 7%);
    -webkit-mask: linear-gradient(90deg, transparent, var(--mask-color-start) 12%, var(--mask-color-end) 98%, transparent);
    mask: linear-gradient(90deg, transparent, var(--mask-color-start) 12%, var(--mask-color-end) 98%, transparent);
}

    .scroller[data-animated="true"] .scroller__inner {
        width: max-content;
        flex-wrap: nowrap !important;
        animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
        will-change: transform;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }

/* Scroll direction controls */
.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

/* Speed controls */
.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

/* Scroller animation keyframes */
@keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(calc(-50% - 0.5rem));
        transform: translateX(calc(-50% - 0.5rem));
    }
}

/* Box styling */
.ab_bx {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: #009ccd;
    background: var(--add);
    padding: 1rem;
}

    .ab_bx h6 {
        color: var(--secondary);
        font-weight: 600;
        letter-spacing: 1.2px;
    }

/* Slide Image */
.slide .sc_v_box img {
    width: 100%;
    height: -webkit-fill-available;
}

/* Card-style box in slider */
.sc_v_box {
    background-color: #ffffff;
    padding: 4px;
    width: 160px;
    height: 70px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border: 1px solid #b9b9b9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 4px;
}

    .sc_v_box a {
        display: block;
    }

    .sc_v_box img {
        width: 100%;
        color: transparent;
    }

/* Tools box (general layout) */
.tools_box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--primary) / 0.2);
    background: #fff;
    border: 1px solid #dedede;
}

/* Icon inside tools box */
.tools_box_icon {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 5rem;
    height: 1.5rem;
}

    .tools_box_icon img {
        width: 100%;
    }


.flx-cen-gap-sm {
    display: flex;
    justify-content: space-between;
}

.price-display p {
    margin-bottom: 0.25rem !important;
}

.price-display .acutal_price {
    font-size: 1.12rem;
}

.price-display .offer_price {
    color: var(--color-accent-green);
    font-size: 1.12rem;
}

.price_tag_name {
    font-size: 0.85rem;
}















/* POP UP */
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .modal-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

/* Modal Container */
.modal-container {
    width: 30%;
    max-width: 900px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 100%;
}

/* Left Side - Offer Section */
.modal-offer {
    width: 50%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-content: flex-start; */
    max-height: 100%;
}

.offer-header {
    position: relative;
    text-align: center;
}

.offer-tag {
    position: absolute;
    top: 0px;
    left: 14%;
    transform: translateX(-50%);
    background-color: #a664c0;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.offer-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
}

.offer-highlight {
    color: #a664c0;
    font-weight: bold;
}

.offer-image {
    width: 100%;
    margin: 10px 0;
    border-radius: 8px;
    filter: drop-shadow(1px 1px 2px black);
}

.offer-benefits {
    margin-top: 4px;
}

.benefits-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .benefits-title:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #a664c0;
    }

.benefits-list {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    list-style: none;
}

.wr {
    flex-wrap: wrap;
}

.benefits-list li {
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 14px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-block-end: 0.5rem;
}

.bnft img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.bnft li {
    /* width: 50%; */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Right Side - Form Section */
.modal-form {
    width: 100%;
    padding: 30px;
    overflow-y: scroll;
    max-height: 75vh;
}
    /* changes */
    .modal-form .iti {
        width: 100% !important;
    }

.form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 9px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 10px;
    display: none;
}

.required:after {
    content: '*';
    color: #a664c0;
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 9px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
}

    .form-control:focus {
        outline: none;
        border-color: #a664c0;
    }

.phone-group {
    display: flex;
}

.phone-prefix {
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

/* .phone-input {
            border-radius: 0 6px 6px 0;
        } */

.submit-btn {
    background-color: var(--color-accent-green);
    color: white;
    border: none;
    padding: 8px 5px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .submit-btn:hover {
        background-color: var(--color-primary-navy);
    }

.form-group .input1, .form-group .input2 {
    height: unset;
}

    .form-group .input2 input, .form-group .input1 input {
        padding-left: 15px !important;
    }

.terms {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

    .terms a {
        color: var(--color-primary-navy);
        text-decoration: none;
        font-weight: 500;
    }

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7f5fb8;
    ;
    z-index: 10;
}

    .close-btn:hover {
        color: #634597;
    }
/* Error States */
.error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-container {
        flex-direction: column;
        max-height: 95vh;
    }

    .modal-offer {
        width: 100%;
        display: none; /* Hide offer section on mobile */
    }

    .modal-form {
        width: 100%;
        padding: 20px;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.hidden {
    display: none;
}

.select-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.buyer-select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

    .buyer-select:focus {
        outline: none;
        border-color: #a664c0;
    }

.hidden {
    display: none;
}

.conditional-input {
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#book_now {
    position: relative;
    top: -75px;
}

/* VOUCHER DETAIL */

.det_enq_btn {
    color: #ffffff !important;
    padding-inline-start: 0 !important;
    border: none;
}

.inp {
    color: #8b3ba7 !important;
}

.ban_vo {
    color: #ffffff;
}

    .ban_vo p {
        color: #ffffff;
    }

.inn_det_banner {
    background: #1e2d5a;
    background-color: #1e2d5a;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
}

.inn_det_banner_container {
    max-width: 93%;
    margin-inline: auto;
}

.top_con h4, .top_con p {
    color: #ffffff;
}

.content {
    padding: 20px;
    color: var(--secondary-color);
}

.content-title {
    color: var(--color-primary-navy);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.intro-section {
    margin-bottom: 30px;
    line-height: 1.6;
}

.section-title {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 22px;
    border-bottom: 2px solid var(--color-primary-navy);
    padding-bottom: 5px;
    display: inline-block;
}

.prerequisites-list,
.audience-list,
.benefits-list,
.voucher-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

    .prerequisites-list li,
    .audience-list li,
    .benefits-list li,
    .voucher-list li {
        margin-bottom: 8px;
        line-height: 1.5;
        list-style: disc;
    }

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-weight: bold;
    color: var(--primary-color);
}

.detail-value {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .content {
        padding: 15px;
    }

    .content-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}

.voucher-container {
    max-width: 250px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.voucher-header {
    background-color: #1e2d5a;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.voucher-item {
    display: flex;
    justify-content: space-between;
    padding: 0.15rem 1rem;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

    .voucher-item:hover {
        background-color: #f1eaf6;
    }

.voucher-name {
    font-weight: 500;
    color: #000;
}

.vou-price {
    color: #d10b52;
    font-weight: bold;
}

.voucher-item.active {
    background-color: #e5d2ef;
    font-weight: bold;
}

.det_card {
    max-height: fit-content;
    max-width: 378px;
}

/* Exam Details Styling */
.exam-details-container {
    max-width: 800px;
    padding: 2rem;
    border-left: 6px solid #8b3ba7;
}

.exam-title {
    font-size: 1.6rem;
    color: var(--color-primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.exam-item {
    background: #06a0e51a;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #e0c2ed;
    transition: transform 0.2s ease;
}

    .exam-item:hover {
        transform: translateY(-2px);
    }

.exam-label {
    font-weight: bold;
    color: #6a1a91;
    margin-bottom: 0.3rem;
    display: block;
}

.exam-value {
    color: #333;
}

.featured_prod {
    margin-block: 2rem;
}

    .featured_prod h4 {
        margin-block-end: 0.5rem;
        font-size: 16px;
        margin-inline-start: 1rem;
    }

.sidebar-promo {
    padding: 8px;
    text-align: center;
    position: relative;
    height: 124px;
    overflow: hidden;
    width: 256px;
    margin: auto;
}

.promo-slider {
    position: relative;
    height: 100%;
}

.promo-slide {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

    .promo-slide.active {
        opacity: 1;
    }



/* .original-price {
            color: #ffffff;
            text-decoration: line-through;
            opacity: 0.7;
            font-size: 0.9rem;
        } */

.discounted-price {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0px 0 2px;
}

.buy-now-btn {
    background-color: #ffffff;
    color: var(--theme-color);
    color: #233d89;
    border: none;
    padding: 6px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    position: relative;
    z-index: 8;
}

    .buy-now-btn:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
    }

.promo-dots {
    display: flex;
    justify-content: center;
    margin-top: -7px;
    position: relative;
    z-index: 2;
}

.dot {
    height: 4px;
    width: 4px;
    margin: 0 3px;
    background-color: rgb(194 147 210);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .dot.active {
        background-color: #8b3ba7;
    }


.promo h3 {
    color: #444;
    font-weight: bold;
    line-height: 1.5;
}

.promo span {
    color: #e93631;
}

.promo-btn {
    background-color: #006C76;
    color: #8b3ba7;
}

    .promo-btn:hover {
        background-color: #052a2e;
        color: #8b3ba7;
    }

.promo {
    border-bottom: 0.5px solid #ddd;
}

.tag_vou {
    font-size: 12px;
    margin-bottom: 4px;
}

    .tag_vou::hover {
        color: #8b3ba7
    }

.side_sec {
    background: #7f5fb80f;
    padding-block: 2rem;
    border-radius: 6px;
}



.tools_box_icon {
    width: 6rem;
    height: 2rem;
}

.cr {
    display: flex;
    justify-content: flex-end;
}

.in_flx {
    display: inline-flex;
    gap: 2rem;
}

@media(max-width: 768px) {
    .in_flx {
        flex-direction: column;
    }

    .cen_flx {
        display: flex;
        justify-content: center;
    }
}

.det_card {
    max-height: fit-content;
    max-width: 378px;
    min-width: 320px;
}

.card-certification-list li {
    background-color: #ffffff;
}

.voucher-description {
    color: #ffffff;
    font-size: 1.15rem;
}

.benefit-icon-container {
    background: #e6e6e6;
}

.rg_bod {
    position: relative;
}

@media(min-width: 1420px) {
    .rg_bod::after {
        content: "";
        position: absolute;
        right: -60px;
        top: 50%;
        transform: translateY(-50%); /* Center vertically */
        height: 400px;
        width: 1px; /* Line thickness */
        background-color: #ffffff; /* Line color (change as needed) */
    }
}



/* whtsapp pop */

.whatsapp-popup {
    display: inline-block;
    width: 100%;
    text-decoration: none;
}

.pop_whats_up {
    border: 1px solid #2e8b57;
    border-radius: 8px;
    padding: 1rem;
    background-color: #67d77c;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.whatsapp-popup:hover .pop_whats_up {
    background-color: #4aba60;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pop_wt_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pop_whats_up p {
    color: #07502c;
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}

.pop_whats_up svg {
    width: 40px;
    height: 40px;
    animation: float 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Animation keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.rgt_wt_pop_icons {
    position: relative;
}

    .rgt_wt_pop_icons svg {
        width: 40px;
        height: 40px;
    }

.wt_mob {
    position: absolute;
    left: 89%;
    bottom: -15px;
}

@media (min-width:900px) {
    .rgt_wt_pop_icons {
        display: none;
    }
}


.dis_none {
    display: none;
}
/* For WebKit browsers (Chrome, Edge, Safari) */
.modal-form::-webkit-scrollbar {
    width: 10px; /* Adjust this to make the scrollbar thicker or thinner */
}

.modal-form::-webkit-scrollbar-track {
    background: #faf8fa;
}

.modal-form::-webkit-scrollbar-thumb {
    background-color: #7215af;
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

    .modal-form::-webkit-scrollbar-thumb:hover {
        background-color: #390557;
    }

     .modal-form {
        width: 100%;
        padding: 30px;
        overflow-y: scroll;
        max-height: 90vh;
    }
/*  */
@media(max-width:1450px) {
    .pop_whats_up p {
        color: #07502c;
        margin: 0;
        font-weight: 500;
        font-size: 1rem;
        text-align: center;
    }

    .bnft li {
        /* width: 50%; */
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .offer-image {
        width: 100%;
        margin: 10px 0;
        border-radius: 8px;
        filter: drop-shadow(1px 1px 2px black);
        max-width: 250px;
    }

    .offer-title {
        font-size: 14px;
        font-weight: 600;
        margin-top: 24px;
        margin-bottom: 7px;
        position: relative;
    }

    .offer-tag {
        position: absolute;
        top: -17px;
        left: 14%;
        transform: translateX(-50%);
        background-color: #a664c0;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 10px;
    }

   
}
@media(min-width:1150px){
         .modal-form {
        width: 100%;
    }
}
.prom {
    font-size: 10px;
    line-height: 16px;
    color: var(--color-primary-navy);
}

.in_fx {
    display: inline-flex;
    gap: 0.5rem;
    align-items: self-start;
}

input[type="checkbox"] {
    cursor: pointer;
    margin-bottom: 0;
    accent-color: var(--color-primary-navy);
}


picture {
    width: 100%;
    max-height: 100%;
}

    picture img {
        height: 100%;
        object-fit: contain;
        width: 100%;
    }

.voucher-header {
    width: 100%;
    border-radius: 12px;
    margin: 9px 0 0 0;
}

.voucher-container {
    margin: 0 auto;
    height: fit-content;
    width: 100%;
}

.banner-form {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background-color: #22315d;
    box-shadow: 0px 0px 13px #000;
}

    .banner-form form {
        border: 2px solid black;
        height: 100wvh;
        margin: 20px 20px 20px 0px;
        width: 30%;
    }



.myform-2 {
    padding: 1rem 2rem;
    margin-right: 20px;
}

/*.frm {
    max-width: 380px;
}
*/
.main-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 8rem;
}

.mycontainer {
    margin: 0 4rem;
}

.right-side {
    width: 100%;
    display: flex;
    justify-content: end;
    height: 100%;
    flex-direction: column;
}

.image-container {
    height: 100%;
    width: 55vh;
    margin-top: 4rem;
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: auto 0;
    position: relative;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    border-radius: 12px;
}

.carousel img {
    width: 100%;
    height: 400px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 12px;
}


.carousel-dots {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

    .carousel-dots .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .carousel-dots .dot.active {
            background-color: #fff;
        }

.last-line {
    border: none;
    font-weight: bold;
    color: black;
}


/* ---------------- */
.sidebar-promo-vid {
    padding: 0px;
    text-align: center;
    position: relative;
    width: 40vh;
    margin: 20px auto;
    height: 40vh;
}

.promo-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.promo-slide-vid {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.promo-slide img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.promo-dots-vid {
    margin-top: -10px;
    z-index: 2;
}

/* -------- */


@media (min-width:320px) and (max-width:768px) {
    .banner-form {
        flex-direction: column;
        justify-content: center;
        gap: 0rem;
        background-color: #22315d;
        width: 100%;
    }

    picture {
        height: 100%;
    }

    .banner-form form {
        height: fit-content;
        margin: 0px;
        width: 100%;
    }

    .myform-2 {
        padding: 1rem 1rem;
        margin-right: 10px;
        margin-left: 10px;
    }

    .cr {
        display: flex;
        justify-content: center;
    }

    .main-container {
        display: block;
    }

    .mycontainer {
        margin: 0;
    }

    .voucher-container {
        margin: 0 auto;
    }

    .image-container {
        margin: 0 auto;
        width: 45vh;
    }

    .carousel-dots {
        bottom: 55px;
    }

    /* .sidebar-promo {
        width: 45vh;
        height: 45vh;
    } */
}

@media (min-width:1990px) {
    picture {
        padding: 50px 0;
        height: 700px;
        width: 100%;
    }

    .cr {
        margin: auto 0;
    }
}

@media (min-width:1024px) {
    .image-container {
        width: 55vh;
    }

    .carousel-dots {
        bottom: 25px;
    }
}

@media (min-width:1280px) {

    .carousel-dots {
        bottom: 0px;
    }
}


/*Saurabh*/

.servingBoth {
    margin-top: 20px;
    color: black;
    background: linear-gradient(white);
}

.textColor {
    color: black;
}

.textColorText1 {
    background-color: #7f5fb8 !important;
    color: #ffffff !important;
}

.textColorText2 {
    background-color: #7f5fb8 !important;
    color: #ffffff !important;
}
.smarterContent {
    padding-left: 12rem;
    padding-right: 12rem;
}

.smarterContent .imageHeight{
    height: 100%;
}
    .smarterContent .imageHeight img {
        height: 100%;
    }

.contentPlaceHolderCards {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}
.detailsFlex{
    gap:5rem;
    display:flex;
}






.carousel {
    width: 100%;
    height: 90%;
    overflow: hidden;
    margin: auto 0;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}





.carousel-dots {
    position: absolute;
    width: 100%;
    text-align: center;
}

    .carousel-dots .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .carousel-dots .dot.active {
            background-color: #fff;
        }

.hero_lsec {
    height: 430px;
/*    width: 100% !important;*/
}

.w-40 {
    width: 40%;
}

.nameCountry {
    display: flex;
    gap: 0.3rem;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.formflex {
    display: flex;
}

.formGap {
    gap: 0.3rem;
}


/*-------*/
/*.sidebar-promo {
    padding: 0px;
    text-align: center;
    position: relative;
    width: 55vh;
    margin: 20px auto;
    height: 55vh;
}*/

.promo-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.promo-slide {
    position: absolute;
    top: 0rem;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

    .promo-slide img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
/*-------*/
.bookBtn {
    margin: 0 auto;
    padding: 14px 15px 10px 15px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: #8244a5;
    color: white;
    cursor: pointer;
}

    .bookBtn:hover {
        transition: all 0.3s;
        background: #a26fbe;
    }

.back_banner {
    height: 70vh;
}

/*---------*/


/*   CISA, CISM, CRISC -----*/
.collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    display: flex; /* keep flex layout for children */
}

    .collapsible.open {
        max-height: 500px; /* adjust based on content */
    }

.letter-spacing {
    letter-spacing: 0;
}

.headerParagraph {
    line-height: normal;
    font-size: 1.2rem;
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.fontSize {
    font-size: 1.1rem;
}

.domainPoints {
    font-size: 1rem;
    letter-spacing: normal;
}

.marginTop-1 {
    margin-top: 1rem;
}

.marginTop-2 {
    margin-top: 2rem;
}

.marginBottom-0-2 {
    margin-bottom: 0.2rem;
}

.domainHeader {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    background-color: #1f2c5c;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: start;
}

.padding-18 {
    padding: 18px 18px 0px 18px;
}

.padding-0 {
    padding: 0px 18px 0px 18px;
}

.text-white {
    color: white;
}

.innerRightDomain1 {
    width: 50%;
    padding: 10px 0 0 14px;
    border-right: 1px solid black;
}

.innerLeftDomain1 {
    width: 50%;
    padding: 10px 0 0 14px;
    border-left: 1px solid black;
}
/*   CISA, CISM, CRISC -----*/


.wrapper_isl{
    display: inline-flex;
    gap: 1rem;
    margin-block-start: 1rem;
    margin-block-end: 2rem;
    width: 100%;
}
@media (min-width:320px) {
    .contentPlaceHolderCards {
        flex-direction: column;
        gap: 2rem;
        /*        margin-bottom: 4rem;*/
    }

    .hero_lsec {
        height: 100%;
        width: 100%;
    }

    .formflex {
        display: block;
    }

    .w-50, .w-40, .w-60 {
        width: 100%;
    }

    .back_banner {
        height: unset;
    }

    .carousel-track {
        margin-top: 0;
    }

    .carousel-dots {
        bottom: 0;
    }

    .headerParagraph {
        font-size: 1rem;
    }

    .collapsible {
        display: block;
    }

    .innerRightDomain1 {
        width: 100%;
        border: none;
    }

    .innerLeftDomain1 {
        width: 100%;
        border: none;
    }
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}
@media (max-width: 768px) {

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }


    .carousel {
        width: 100%;
        height: 250px;
    }


        .carousel img {
            height: 250px;
        }

        .wrapper_isl{
flex-direction: column;
}
}

@media (min-width:768px) {

    .w-40 {
        width: 40%;
    }

    .nameCountry {
        display: flex;
        gap: 0.3rem;
    }

    .w-50 {
        width: 50%;
    }

    .w-60 {
        width: 60%;
    }

    .formflex {
        display: flex;
    }

    .formGap {
        gap: 0.3rem;
    }

    .carousel-track {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

@media (min-width: 1280px) {
    .voucherCard {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom:4rem;
        gap: 4rem;
    }
    .contentPlaceHolderCards {
        flex-direction: row;
        gap: 2rem;
        /*        margin-bottom: 4rem;*/
    }
    .contentPlaceHolderCards {
        flex-direction: row;
        gap: 1rem;
    }

    .back_banner {
        height: 100%;
    }

    .carousel-track {
        margin-top: 0rem;
    }

    .carousel-dots {
        bottom: 25px;
    }

    .headerParagraph {
        font-size: 1.2rem;
    }

    .collapsible {
        display: flex;
    }

    .innerRightDomain1 {
        width: 50%;
        border-right: 1px solid black;
    }

    .innerLeftDomain1 {
        width: 50%;
        border-left: 1px solid black;
    }
}

@media (min-width:1990px) {
    .carousel-dots {
        bottom: 100px;
    }
}




.mainPage-slider-container {
    position: relative;
    width: 100%;
/*    max-width: 1000px;*/
/*    margin: auto;*/
    overflow: hidden;
/*    border-radius: 10px;*/
/*    box-shadow: 0 4px 15px rgba(0,0,0,0.2);*/
}

.mainPage-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mainPage-slide {
    min-width: 100%;
    box-sizing: border-box;
}

    .mainPage-slide img {
        width: 100%;
        display: block;
    }

/* Buttons */
.mainPage-prev, .mainPage-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(94 120 165 / 50%);
    color: #fff;
    border: none;
    padding: 6px 19px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 1.5rem;
    transition:all 0.3s ease-in-out;
}

.mainPage-prev {
    left: 10px;
}

    .mainPage-prev:hover {
        background: rgb(94 120 165);
    }

.mainPage-next {
    right: 10px;
}

    .mainPage-next:hover {
        background: rgb(94 120 165);
    }

/* Dots */
.mainPage-dots {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.mainPage-dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.mainPage-active {
    background-color: #054f98;
}

/* Default: desktop visible */
.mobile-banners {
    display: none;
}


@media (max-width: 767px) {
    .desktop-banners {
        display: none;
    }

    .mobile-banners {
        display: flex;
    }
}

.whatsappIcons {
    padding: 0.5rem;
    border: 2px solid #128528;
    margin-left: 4rem;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .whatsappIcons a {
        color: #128528 !important;
    }
    .wt-num {
        color: #128528;
        padding-left: 5px;
        font-size: 0.9rem
    }

@media (max-width:768px){
    .mainPage-prev, .mainPage-next, .mainPage-dots {
        display: none;
    }
    .mt-6{
        margin-top:1rem;
    }
    .cd_img {
        padding: 0.2rem 1.5rem;
    }
    .training-btn {
        margin: auto;
        align-items: center;
    }
        .training-btn .btn{
            margin:auto;
            width:80% !important;
        }
    .whatsappIcons {
        width: 60%;
        /* margin-top: 1rem; */
        border: 1px solid #128528;
        justify-content: unset;
        margin-left: 0.1rem;
    }
    
    .navbar_wrapper li a {
        color: rgb(139 59 167);
    }
}


/* Start ISACA Landing Page*/
 
.voucher-disc {
    font-size: 1.3rem;
    line-height: 1.2;
}
.voucher-disc-inner {
    font-size: 0.9rem;
    line-height: 1.2;
}
.innerPlaceHolder {
    background: #ebc6f91f;
    padding: 0rem 0 1rem 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.placeHolderHeader {
    text-align: center;
    font-family: Roboto Flex, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
}
.placeHolderPara {
    text-align: center;
    font-family: Roboto Flex, sans-serif;
    font-size: 1rem;
    text-decoration: underline;
    font-weight: 700;
    color: #E01332;
    margin-top: 0.5rem;
    letter-spacing: 0;
}
.placeHolderPoints {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 0.1rem;
    font-family: Roboto Flex, sans-serif;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    font-weight: 600
}
.discount-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}
.isaca-banner {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}
.isaca-banner img {
    width: 95%;
    border-radius: 15px;
}
 
/* EndISACA Landing Page*/

/* Saurabh End */