@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');

/*
932 = my style start  
*/
:root {
    --bs-body-line-height: 1.5;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

/* web-kit part */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
    background: #063e79;
    border-radius: 9px;
}

/* 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
}

.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
}

input[type='text']::placeholder {
    color: rgb(63, 61, 61);
    opacity: 1; /* Firefox */
}

input[type=submit] {
    color: #ffffff !important;
    background: #064F9A !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;
}

.trainings-card-head a {
    color: #064F9A;
    font-weight: 600;
    font-size: 17px;
}

.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 .btn {
        background: #064F9A;
        text-align: center;
        padding: 8px 0px;
        font-weight: 500;
        color: #fff;
        border-radius: 4px;
        padding: 10px 24px;
        cursor: pointer;
    }

    .training-btn .btn2 {
        background: #064F9A;
        text-align: center;
        padding: 8px 0px;
        font-weight: 500;
        color: #fff;
        border-radius: 4px;
        padding: 10px 14px;
    }

.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 #064f9a;
    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;
}

    .mbanner img {
        max-width: 100%;
        min-height: 125px;
    }

.breadcrumb a {
    color: #064f9a;
    text-decoration: none;
    margin: 0px 4px;
    font-size: 13px;
    font-weight: 900;
}

.breadclr {
    color: #064f9a;
}

    .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: #064F9A;
    /* font-size: 31px; */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    /* text-align: center; */
}

.training-detail-partition .icn-one {
    fill: #064F9A;
    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: #444444;
    margin-bottom: 24px;
}

.frm .mapinput {
    width: 20%;
}

.frmbtn {
    background: #064f9a;
    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: #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: 6rem;
}

    textarea::placeholder {
        color: #444444;
    }

.languages-wrapper {
    background: #064f9a;
    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: #064f9a;
    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: #000;
}

.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 #064f9a;
    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: #000;
    font-weight: bold;
}

.voucher-price {
    font-size: 16px;
    font-weight: bold;
    color: #064F9A;
}

.voucher-frm {
    background: #fff;
    border-radius: 10px;
    padding: 24px 27px;
}

.voucher-contss .head,
.voucher-information .head,
.faqs .head,
.faqs .head {
    color: #0b4784;
    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 #064F9A;
    padding: 43px 45px;
    border-radius: 10px;
    color: #064F9A;
}

.voucher-information ul li {
    margin-bottom: 8px;
}

.voucher-information svg {
    fill: #064F9A;
    width: 10px;
    margin-right: 5px;
}

.faq-img {
    text-align: center
}

.faqs .accordion-title {
    border: 2px solid #064F9A;
    padding: 8px 21px;
    color: #064F9A;
}

.accordion-conts {
    /* padding: 16px 21px;
    display: none;
    background: #064f9a;
    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: #064F9A;
}

    .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: #fff;
        text-align: center;
        border-radius: 8px;
        padding: 33px 0px;
    }

.icnss {
    fill: #064f9a;
    border-radius: 25px;
    border: 3px dotted #064f9a;
    width: 58px;
    height: 55px;
    padding: 11px;
}

.name-head {
    color: #064f9a;
    font-weight: 600;
    font-size: 29px;
}

.cntct-pgr {
    margin-left: 10%;
}

.space {
    padding-bottom: 60px;
}

.contact-part .maial {
    color: #444444;
}
/* 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 #999999;
    margin-bottom: 19px;
}

.blog .para {
    margin-left: 15px;
    color: #064f9a;
    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: #07559f;
    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: #064f9a;
    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: #064f9a;
    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 #021f3d;
            padding: 13px 24px;
            border-radius: 5px;
            max-width: 324px;
        }

            .voucher-banners .frm input, textarea, select {
                width: 100%;
                outline: none;
                border: 1px solid #021f3d;
                padding: 9px;
                border-radius: 4px;
                color: #444444;
                margin-bottom: 12px;
                letter-spacing: 1.2;
                font-size: 16px;
            }

        .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: #064F9A;
    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;
}

.navbar {
    background-color: #064F9A;
    position: fixed;
    top: 0;
    z-index: 1;
    left: -500px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: 0.2s;
    opacity: 0;
}

.navbar_wrapper {
    padding-top: 20px;
}

    .navbar_wrapper li {
        padding: 12px 0 12px 24px;
        border-bottom: 1px solid #acacac;
    }

.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: #064F9A;
        padding: 12px;
        border-radius: 5px;
    }

.navmenu .arrow {
    fill: #fff;
    width: 12px;
}

/*  */

.mob_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-bar {
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 33px;
    height: 2px;
    margin: 7px 0px;
    padding: 0px;
    background-color: #064F9A;
    color: #064F9A;
}

.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 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: #064F9A;
        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: #064F9A;
    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 #064F9A;
    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: #064f9a; */
    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;
        color: #064F9A;
        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: #064F9A;
}

.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: #064F9A;
    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: #064F9A;
}

.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: #064F9A;
    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 #021f3d;
    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;
    border: 1px solid #021f3d;
    padding: 9px;
    border-radius: 4px;
    color: #444444;
    margin-bottom: 14px;
    letter-spacing: 1.2;
    font-size: 16px;
}

.frm .mapinput {
    width: 20%;
}

.frmbtn {
    background: #064f9a;
    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: 5rem;
    resize: none;
}

    textarea::placeholder {
        color: #444444;
    }

/* testimonial */

.testimonial {
    background-color: #cfcfcf;
    margin: 24px 0;
    padding: 45px 0;
}

    .testimonial h3 {
        margin-block: 1rem;
    }

.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: #064F9A;
    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: 482px;
}

    .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: #FF4500;
    }


/* 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: #064F9A;
}

.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-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: #064F9A;
    border-top: 1px solid #064F9A;
    border-bottom: 1px solid #064F9A;
    padding: 50px 0 0px 0;
}

    .footer p,
    .footer a {
        color: #064F9A;
    }

.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: #064F9A;
}

.footer__bottom {
    border-top: 1px solid #064F9A;
    padding: 12px 0;
    
}

.social__icons__wrapper {
    display: flex;
    gap: 12px;
    margin-block-start: 1rem;
}

.social__icons {
    background-color: #ffffff;
    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: #064f9a;
}

.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: #064F9A;
}

/* 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: #064F9A;
}


.about__sec {
    padding: 45px 0 0;
}

    .about__sec h2 {
        text-align: center;
        font-weight: 700;
    }

        .about__sec h2 span {
            color: #064F9A;
        }

.about__rsec h3 {
    font-weight: 700;
}

/*  */
.about__vouchers {
    background-color: #e7f3ff;
}

    .about__vouchers h3 {
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

        .about__vouchers h3::after {
            position: absolute;
            content: "";
            height: 2px;
            background-color: #1e63a3;
            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;
}

    .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: #064f9a;
    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: #064F9A;
    font-weight: 600;
}

.blog__title h2 {
    font-weight: 700;
    font-size: 24px;
    color: #064F9A;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.blog_details h3 {
    font-weight: 700;
    font-size: 20px;
    color: #064F9A;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 1.25;
}

.blog_details h4 {
    font-weight: 700;
    font-size: 18px;
    color: #064F9A;
    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: #064F9A;
    letter-spacing: 1px;
}

.blog__comment {
    padding-inline: 2rem;
    padding-block-end: 2rem;
    border: 1px solid #064f9a;
    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: #064F9A;
    border-radius: 4px;
    color: #fff
}


.blog__media a {
    font-size: 24px;
    border: 1px solid #064f9a;
    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: #064f9a;
    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;
    padding: 1rem;
    gap: 1.5rem;
}

    .vouchers__card .card-img {
        margin-block: 1rem;
        /* text-align: center; */
    }

    .vouchers__card p {
        line-height: 1.25;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

.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: #064F9A;
    text-decoration: underline;
}

.guidelines h3 {
    font-weight: 400;
    color: #064F9A;
}

.guidelines p {
    text-align: justify;
    line-height: 1.5;
    padding-block: 0.5rem;
}

.guidelines a {
    color: #064F9A
}

.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: #0e447b;
        margin-block-start: 12px;
    }

    .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%;
    }

    .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: 2fr 1fr 1fr 1fr;
        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;
    }

    .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: #064F9A;
        }

        .navbar_wrapper .call a {
            background-color: #064F9A;
            color: #ffffff;
            padding: 12px;
            border-radius: 22px;
        }

        .navbar_wrapper li {
            padding: 27px 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: -50px;
        background-color: #064F9A;
        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: #064F9A;
        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: 77px;
        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;
        justify-content: space-between;
    }

    /* 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: #064F9A;
    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: 20px;
    height: 20px;
    text-align: center;
    line-height: 19px;
}

    .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: #064F9A;
    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(2, 1fr);
    }
}
/* 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;
}

.trainings-card-head {
    flex: 1;
    /* Takes up remaining space equally */
    min-height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    margin: 0;
    box-sizing: border-box;
    color: #064f9a;
    font-weight: 700;
}

.cd_img {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 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;
    }

.btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #064f9a;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.training-btn .btn {
    padding: 5px 21px;
    background: linear-gradient(281deg, rgba(79, 87, 171, 1) 0%, rgba(125, 94, 183, 1) 35%, rgba(168, 100, 192, 1) 100%);
}

.btn:hover {
    background: #053a73;
}

.frm__field select {
    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;
}

.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: #064f9a;
}

.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, #064f9a 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-block-start: 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;
}

@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: #5558ad;
        width: 20px;
        height: 20px;
    }

    .input2 input,
    .input1 input,
    .input1 select {
        width: 100%;
        height: 100%;
        padding-left: 2.8rem;
        border-radius: 5px;
        border: 1px solid #064f9a;
        /* Consistent border */
        outline: none;
        font-size: 15px;
        box-sizing: border-box;
        padding-inline-start: 3rem;
    }

    .input1 select {
        padding-left: 3rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23064f9a" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 0.7em top 50%, 0 0;
        background-size: 1.5em auto;
    }

.inp {
    display: block;
    width: 100%;
    padding: 0.625rem;
    font-size: 0.875rem;
    color: #064f9a;
    background-color: #f9fafb;
    border: 1px solid #064f9a;
    border-radius: 0.5rem;
    box-sizing: border-box;
    height: 45px;
}

.mybtn-1 {
    background-color: #064f9a;
    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: #043a75;
    }

/* 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.75rem;
    background: linear-gradient(320deg, rgba(196, 67, 140, 1) 0%, rgba(246, 61, 94, 1) 35%, rgba(255, 102, 0, 1) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s ease;
    border: none;
    font-size: 20px;
}

.gp {
    margin-block: 2rem
}

.bt_cen {
    display: flex;
    justify-content: center;
}

.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: #064f9a;
        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;
}

.cl {
    color: #064f9a;
}

.tick {
    color: #064f9a;
}


.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;
        }