@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

body {
    background: #f4f6f9;
}

.checkbox-label {
    background: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lexend Deca", sans-serif !important;
}

:root {
    --btn-bg-pink: #e964a9;
    --primary-bg: #dd398e;
    --primary-bg-gradient: linear-gradient(180deg, #ff659e 0%, #d5307a 100%);
    --primary-bg-gradient-transparent: linear-gradient(180deg, #D11A5E 0%, #AC1458 100%);
    --color-blue5: #0A0032;
    --color-gray: #f7f7fd;
    --color-gray1: #f4f9ff;
    --color-gray2: #495059;
    --color-gray3: #EBEBEB;
    --color-gray4: #9690A2;
    --color-gray5: #7E838B;
    --color-gray6: #EEEEEE;
    --color-light-gray: #f4f1fe;
    --color-light-gray2: #F8F8F8;
    --color-light-gray3: #dadde1;
    --color-white: #fff;
    --color-black: #000;
    --color-black1: #222;
    --color-black2: #383838;
    --color-black3: #161519;
    --color-black4: #151515;
    --color-black5: rgba(45, 42, 52);
    --color-black6: #111013;
    --color-black7: #373737;
    --color-black8: #555555;
    --color-black9: #292c35;
    --color-black10: rgb(51 55 66);
    --color-black11: #212121;
    --color-yellow: #FFC701;
    --bs-body-font-family: system-ui, -apple-system, Segoe UI, Noto Sans, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji !important;
}

.btn-primary-railway {
    display: inline-flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background-color: #FFC234;
    font-weight: 500;
}

body.dark {
    background-color: var(--color-black9);
}

/* #9b59b6 */
.light_mode {
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.light_dark_icon .fa-moon {
    color: #f1c40f;
    display: none;
}

.light_dark_icon .fa-sun {
    color: #f39c12;
}

button {
    cursor: pointer;
}

a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    a:focus,
    .button:focus {
        text-decoration: none;
        outline: none;
    }

a,
button {
    outline: medium none;
}

    button:focus,
    input:focus,
    input:focus,
    textarea,
    textarea:focus {
        outline: 0;
    }

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 40px;
    font-weight: 500;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 16px;
}

li {
    list-style: none;
}

p {
    font-size: 15px;
}

hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

html {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

img {
    max-width: 100%;
    height: auto;
}

button,
select {
    background: none;
}

pre {
    margin: 0px;
    border: 0px;
    background: none;
    box-sizing: inherit;
    display: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-variant-ligatures: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    tab-size: inherit;
    text-indent: inherit;
    text-rendering: inherit;
    text-transform: inherit;
    white-space: pre-wrap;
    word-break: keep-all;
    overflow-wrap: break-word;
    position: relative;
    pointer-events: none;
    padding: 10px;
    color: var(--color-black);
}

.left_side::-webkit-scrollbar,
body::-webkit-scrollbar,
.right_side::-webkit-scrollbar {
    background-color: var(--color-white);
    width: 4px;
}

.left_side::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.right_side::-webkit-scrollbar-track {
    background-color: var(--color-gray3);
}

    .left_side::-webkit-scrollbar-track:hover,
    body::-webkit-scrollbar-track:hover,
    .right_side::-webkit-scrollbar-track {
        background-color: var(--color-gray3);
    }

/* scrollbar itself */
.left_side::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.right_side::-webkit-scrollbar-thumb {
    background-color: var(--color-gray5);
    border-radius: 10px;
}

/* Deafult Margin & Padding */
/*-- Margin Top --*/
.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

/*--margin right--*/
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.v-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

/*--margin left--*/
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

/*-- padding --*/
.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-25 {
    padding: 25px;
}

.p-30 {
    padding: 30px;
}

.p-35 {
    padding: 35px;
}

.p-40 {
    padding: 40px;
}

.p-45 {
    padding: 45px;
}

.p-50 {
    padding: 50px;
}

.p-55 {
    padding: 55px;
}

.p-60 {
    padding: 60px;
}

.p-65 {
    padding: 65px;
}

.p-70 {
    padding: 70px;
}

.p-75 {
    padding: 75px;
}

.p-80 {
    padding: 80px;
}

.p-85 {
    padding: 85px;
}

.p-90 {
    padding: 90px;
}

.p-95 {
    padding: 95px;
}

.p-100 {
    padding: 100px;
}

.p-105 {
    padding: 105px;
}

.p-110 {
    padding: 110px;
}

.p-115 {
    padding: 115px;
}

.p-120 {
    padding: 120px;
}

.p-125 {
    padding: 125px;
}

.p-130 {
    padding: 130px;
}

.p-135 {
    padding: 135px;
}

.p-140 {
    padding: 140px;
}

.p-145 {
    padding: 145px;
}

.p-150 {
    padding: 150px;
}

.pt-155 {
    padding: 155px;
}

.p-160 {
    padding: 160px;
}

.p-165 {
    padding: 165px;
}

.p-170 {
    padding: 170px;
}

.p-175 {
    padding: 175px;
}

.p-180 {
    padding: 180px;
}

.p-185 {
    padding: 185px;
}

.p-190 {
    padding: 190px;
}

.p-195 {
    padding: 195px;
}

.p-200 {
    padding: 200px;
}

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pb-220 {
    padding-bottom: 220px;
}

/*-- Padding Left --*/
.pl-0 {
    padding-left: 0px !important;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 80px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

/*-- Padding Right --*/
.pr-0 {
    padding-right: 0px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 35px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 80px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

/* font weight */
.f-800 {
    font-weight: 800;
}

.f-700 {
    font-weight: 700;
}

.f-600 {
    font-weight: 600;
}

.f-500 {
    font-weight: 500;
}

.f-400 {
    font-weight: 400;
}

.f-300 {
    font-weight: 300;
}

.f-200 {
    font-weight: 300;
}

.f-100 {
    font-weight: 300;
}

.f-b {
    font-weight: bold;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 10px;
}

.opacity-15 {
    opacity: 0.05;
}

.mt-n1 {
    margin-top: -0.25rem !important;
}

.mt-n2 {
    margin-top: -2.5rem !important;
}

.mt-n3 {
    margin-top: -50px;
}

.mt-n4 {
    margin-top: -60px;
}

.mt-n5 {
    margin-top: -70px;
}

.mt-n6 {
    margin-top: -80px;
}

.position-t-n40 {
    top: -40px !important;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.main-menu ul li {
    display: inline-block;
    margin: 0px 8px;
    position: relative;
}

.NonEdit {
    border: 0;
    background: transparent;
    border-style: none;
    pointer-events: none;
}

.required-field {
    color: red;
}

.header-area .dropdown-menu {
    width: auto !important;
}

.header-top {
    background: var(--primary-bg);
    border-bottom: 1px solid #d2d2d2;
    position: relative;
}

    .header-top .goi {
        line-height: 40px;
        font-style: normal;
        font-weight: 500;
    }

        .header-top .goi a {
            line-height: 40px;
            color: var(--color-white);
            font-size: 12px;
        }

        .header-top .goi img {
            margin-right: 15px;
        }

    .header-top .skip01 {
        color: var(--color-white);
        font-size: 12px;
        line-height: 32px;
        padding-right: 15px;
        font-weight: 500;
    }

    .header-top .partition {
        color: var(--color-gray3);
        opacity: 0.4;
    }

    .header-top .font01 {
        font-size: 16px;
        height: 40px;
        width: 40px;
        color: var(--color-white);
        transition: all 1s ease-out;
    }

        .header-top .font01:hover {
            border-radius: 4px;
            opacity: 1;
            background: rgba(255, 255, 255, 0.15);
            transition: all 1s ease-out;
        }

    .header-top .language01 {
        font-size: 14px;
        color: var(--color-white);
        height: 40px;
        display: inline-block;
        padding: 10px 0 10px 14px;
        /* margin-right: 8px; */
    }

        .header-top .language01 select {
            color: #fff;
            background-color: var(--color-blue5);
            cursor: pointer;
        }

.header-area {
    background-size: cover;
}

.transparent-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.header-white {
    background: var(--color-white);
}

.light_dark_icon {
    padding-left: 10px;
}

.nav_custom {
    display: grid;
    grid-template-columns: repeat(2, 1fr auto);
}

    .nav_custom .collapse {
        display: flex;
        gap: 0 50px;
        justify-content: flex-start;
    }

.dropdown-menu {
    border: none !important;
    width: 100%;
}

.header_white_space {
    min-height: 75px;
}

.icon_hamburger {
    width: 28px;
    height: 28px;
    stroke: var(--color-black3);
}

.show_hide {
    display: none;
}

nav {
    flex-grow: 1;
}

header nav.navbar ul li.nav-item.active a {
    color: var(--bs-link-color);
}

@media (max-width: 768px) {
    .header-design-system-btn {
        position: absolute;
        right: 0;
        top: 51px;
    }

    .left_side_mobile button {
        position: fixed;
        right: 0;
        border-bottom: solid 1px #ddd;
        width: 100%;
        text-align: right;
        padding: 10px 15px;
        background: var(--color-white);
        z-index: 99999;
        top: 0;
    }

    .left_side_mobile {
        position: fixed !important;
        background: var(--color-white);
        z-index: 9;
        width: 100% !important;
        border-right: 0 !important;
        top: 0 !important;
        bottom: 0;
        min-height: 100%;
    }

        .left_side_mobile .close_left_menu {
            width: 24px;
            height: 24px;
            fill: red;
            stroke: red;
        }

    .header_white_space {
        height: 90px;
    }

    .menu_icon_ellipsis {
        width: 24px;
        height: 24px;
    }

    .body_raper {
        width: 100% !important;
    }

    .logo .ux-logo-header {
        width: 200px;
    }

    .goi a {
        font-size: 11px !important;
    }

    /*    .banner {
        max-width: 100%;
        padding: 5px;
        font-size: 14px;
    }

    .banner .banner_inner {
        padding-block: 7px;
    }

    .banner .banner_logo h3 {
        font-size: 10px !important;
    }*/
}


.search_results {
    margin: 0;
    padding: 10px 15px;
    border: solid 1px var(--color-gray3);
    background-color: var(--color-white);
    display: none;
    max-height: 300px;
    overflow: auto;
    width: 100%;
}

    .search_results li {
        border-bottom: solid 1px var(--color-gray3);
        padding: 10px;
        cursor: pointer;
    }

        .search_results li:hover {
            background-color: #ddd;
            transition: all 1s;
        }

.search_btn {
    margin-right: 10px;
}

.m-search {
    background: var(--color-black3);
    padding: 5px;
    border-radius: 50%;
    color: var(--color-white);
    margin-right: 5px;
}

@media (max-width: 400px) {
    .logo .ux-logo-header {
        width: 187px;
    }

    .light_dark_icon {
        padding-left: 0;
    }
}

@media (max-width: 360px) {
    .logo .ux-logo-header {
        width: 177px;
    }
}

@media (max-width: 991px) {
    .nav_custom .navbar-collapse {
        position: absolute;
        left: 0px;
        padding: 0px 20px 30px;
        top: 60px;
        background: rgb(255, 255, 255);
        width: 100%;
        min-height: 100vh;
    }

    .nav_custom .collapse {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav {
        margin-top: 5px;
        padding: 20px 15px 10px 0px;
        background: #fff;
        width: 100%;
    }

    .navbar-toggler {
        border: none !important;
    }
}

.body_content h1,
.body_content h2,
.body_content h3,
.body_content h4,
.body_content h5,
.body_raper h1,
.body_raper h2,
.body_raper h3,
.body_raper h4,
.body_raper h5 {
    padding-top: 20px;
}

    .body_content h1 a,
    .body_content h2 a,
    .body_content h3 a,
    .body_content h4 a,
    .body_content h5 a,
    .body_raper h1 a,
    .body_raper h2 a,
    .body_raper h3 a,
    .body_raper h4 a,
    .body_raper h5 a {
        position: relative;
        margin-top: -10px;
        padding-top: 8rem;
    }

.footer_terms .footer_terms_link {
    text-align: center;
}

    .footer_terms .footer_terms_link a {
        color: var(--color-black7);
        font-size: 12px;
    }

.footer_terms .footer_social {
    gap: 20px;
}

.copy-write {
    border-top: solid 1px var(--color-light-gray3);
    padding: 10px 10px 15px 10px;
    color: var(--color-black7);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: var(--bs-body-bg);
}

    .copy-write .copy-write-content p {
        font-size: 12px;
        line-height: 18px;
    }

.slider {
    background: linear-gradient(90deg, #FBF0F1 0%, #F7ECFF 100%);
    position: relative;
    overflow: hidden;
}

    .slider .slider_circle_transparent {
        position: absolute;
        right: 0;
    }

    .slider .slider_content {
        min-height: 741px;
        position: relative;
    }

        .slider .slider_content h1 {
            font-weight: 700;
            font-size: 64px;
            line-height: 68px;
            margin-bottom: 20px;
        }

            .slider .slider_content h1 .engaging {
                background-image: linear-gradient(to right bottom, #da4453, #ca355c, #b72a63, #a12468, #89216b);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                width: 21%;
                display: inline-block;
                text-align: left;
            }

                .slider .slider_content h1 .engaging .wrap {
                    border-color: #c592b7;
                    border-right: 0;
                }

        .slider .slider_content p {
            max-width: 517px;
            margin: 0 auto;
        }

@media (max-width: 767px) {
    .slider_content {
        min-height: 600px !important;
    }

        .slider_content .engaging {
            display: block !important;
            width: 100% !important;
            text-align: center !important;
            height: 80px;
        }
}

main {
    margin-bottom: 0;
}

.list-style li {
    list-style-type: decimal !important;
}

.single-features-area-down-unordered li {
    list-style-type: disc !important;
}

.single-features-area-down-roman li {
    list-style-type: lower-roman !important;
}

.para {
    text-indent: 50px;
}

/* scrollUp */
#scrollUp:hover {
    background: #86c7ed;
}

#scrollUp {
    background: #a066cc;
    height: 60px;
    width: 60px;
    right: 50px;
    bottom: 25px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    line-height: 58px;
}

    #scrollUp:hover {
        background: rgba(160, 102, 204, 0.431372549);
    }

.max-width-70 {
    max-width: 70%;
}

.max-width-80 {
    max-width: 80%;
}

.code_bg {
    background: #f6f8fa;
}

    .code_bg > .btn {
        padding: 5px 8px;
    }

    .code_bg.rounded {
        border-radius: 0 !important;
    }

.order-list {
    padding-left: 15px;
}

    .order-list li {
        list-style: auto !important;
    }

.un_order_list li {
    list-style: disc !important;
}

.un_order_list_circle li {
    list-style: circle !important;
}

.right_side ul li {
    margin-bottom: 2px;
}

    .right_side ul li a {
        color: #7E838B;
        font-size: 14px;
    }

        .right_side ul li a:hover {
            text-decoration: underline;
        }

    .right_side ul li.active a {
        color: var(--color-black);
    }

.product-tab nav {
    border-bottom: solid 1px #dee2e6;
}

.product-tab .nav-tabs .nav-item.show .nav-link,
.product-tab .nav-tabs .nav-link {
    color: var(--color-black);
    position: relative;
}

    .product-tab .nav-tabs .nav-link svg {
        width: 20px;
        height: 20px;
    }

    .product-tab .nav-tabs .nav-link:focus,
    .product-tab .nav-tabs .nav-link {
        padding: 15px 44px;
    }

        .product-tab .nav-tabs .nav-item.show .nav-link,
        .product-tab .nav-tabs .nav-link.active {
            color: var(--bs-blue);
        }

.product-tab .nav-tabs {
    border: none;
    margin-bottom: 0 !important;
    flex-wrap: nowrap;
}

.product-tab .custom-tab-sticky {
    top: 112px;
    z-index: 1;
}

.code_btn_main code,
.code_btn {
    font-size: 12px;
    color: var(--bs-code-color);
    word-wrap: break-word;
    border: solid 1px var(--color-gray4);
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 5px;
    background-color: rgb(246, 247, 248);
    padding: 0 1px;
}

.result {
    background-color: #ebedf0;
    padding: 10px;
}

.left_side .dropdown-menu li a.active {
    background: #D1ECFD !important;
    border-radius: 4px;
    color: #1C1D1F !important;
}

h1:hover a.hover-1,
h2:hover a.hover-1,
h3:hover a.hover-1 {
    opacity: 1 !important;
    color: #a1d5fc;
    text-decoration: underline;
}

.blockquote {
    border-left: solid 4px rgba(0, 170, 255, 0.5);
    background-color: rgba(0, 170, 255, 0.08);
    padding: 15px;
    font-size: 16px !important;
}

.blockquote_danger {
    border-left: solid 4px rgba(179, 38, 29, 0.5);
    background-color: rgba(179, 38, 29, 0.08);
    padding: 15px;
}

.blockquote_warning {
    border-left: solid 4px rgba(255, 170, 1, 0.5);
    background-color: rgba(255, 170, 1, 0.08);
    padding: 15px;
}

.blockquote_danger {
    border-left: solid 4px rgba(199, 46, 93, 0.5);
    background-color: rgba(194, 120, 140, 0.08);
    padding: 15px;
}

.width_20 {
    width: 20px;
}

.height_20 {
    height: 20px;
}

code .btn {
    margin-right: 10px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #1C1D1F !important;
    background: #D1ECFD !important;
    border-radius: 4px;
}

.left_side .dropdown-menu li {
    margin-bottom: 0px !important;
}

.min_hight130 {
    min-height: 130px;
}

.pagination_custom span {
    display: block;
    color: var(--color-black);
}

.pagination_custom a:hover {
    background: none;
}

.left_side #navbarNav {
    width: 100%;
}

    .left_side #navbarNav #navbarDropdown {
        float: right;
    }

.left_side .navbar-nav .nav-link.active,
.left_side .navbar-nav .show > .nav-link {
    color: #1C1D1F !important;
}

.left_side .dropdown-item {
    color: #7E838B;
    font-size: 14px !important;
}

.product {
    padding-top: 0px !important;
    padding-bottom: 10px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

    .product a.card {
        color: var(--color-black3) !important;
    }

        .product a.card:hover {
            color: var(--color-gray5) !important;
        }

@media (max-width: 767px) {
    .body_raper_content nav {
        margin-top: 7px !important;
    }
}

.btn-main {
    background: var(--color-magenta);
    border: medium none;
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    padding: 15px 31px;
    text-align: center;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
}

    .btn-main:hover {
        background: #86C7ED;
        color: #fff;
    }

.bd-example > .btn,
.bd-example > .btn-group {
    margin: 0.25rem 0.125rem;
}

.accordion-button {
    font-weight: 700;
}

.left_side .dropdown-toggle::after {
    display: none !important;
}

.left_side .dropdown-toggle::before {
    content: "";
    box-sizing: border-box;
    height: 9px;
    width: 9px;
    border-style: solid;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    display: inline-block;
}

.left_side #navbarNav #navbarDropdown.show .dropdown-toggle::before {
    transform: rotate(226deg);
}

.bd-example-border-utils [class^=border] {
    display: inline-block;
    width: 5rem;
    height: 5rem;
    margin: 0.25rem;
    background-color: #f5f5f5;
}

.main_raper {
    display: flex;
    align-items: flex-start;
}

.left_side {
    padding: 15px 15px 15px 6px;
    border-right: solid 1px var(--color-light-gray3);
    margin-right: 20px;
    height: calc(100vh - 100px);
    overflow: auto;
    top: calc(13vh - 16px);
    position: sticky;
    width: 16%;
    padding-top: 33px;
}

.body_raper {
    width: 80%;
}

.right_side {
    padding: 30px 15px;
    border-left: solid 1px var(--color-light-gray3);
    margin-left: 30px;
    overflow-y: auto;
    position: sticky;
    top: calc(25vh - 16px);
    right: 50px;
    height: calc(100vh - 174px);
}

.progress {
    margin-bottom: 15px;
}

.bd-example-row-flex-cols .row {
    min-height: 10rem;
    background-color: rgba(26, 115, 233, 0.26);
}

.bd-example-row [class^=col],
.bd-example-cssgrid .grid > * {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: rgba(26, 115, 233, 0.26);
    border: 1px solid rgba(26, 115, 233, 0.26);
}

.bd-example-row .row + .row,
.bd-example-cssgrid .grid + .grid {
    margin-top: 1rem;
}

.list-group-item.active {
    z-index: 0 !important;
}

.bd-example-ratios .ratio > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-example-ratios .ratio {
    display: inline-block;
    width: 10rem;
    color: var(--bs-secondary-color);
    background-color: var(--bs-tertiary-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.bd-placeholder-img {
    font-size: 1.125rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-anchor: middle;
}

.bd-example-zindex-levels > div {
    color: var(--bs-body-bg);
    background-color: rgb(26, 115, 233);
    border: 1px solid rgb(44, 93, 158);
}

    .bd-example-zindex-levels > div > span {
        position: absolute;
        right: 5px;
        bottom: 0;
    }

.bd-example-zindex-levels {
    min-height: 15rem;
}

    .bd-example-zindex-levels > :nth-child(2) {
        top: 3rem;
        left: 3rem;
    }

    .bd-example-zindex-levels > :nth-child(3) {
        top: 4.5rem;
        left: 4.5rem;
    }

    .bd-example-zindex-levels > :nth-child(4) {
        top: 6rem;
        left: 6rem;
    }

    .bd-example-zindex-levels > :nth-child(5) {
        top: 7.5rem;
        left: 7.5rem;
    }

.z-3 {
    z-index: 3 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-n1 {
    z-index: -1 !important;
}

.ux4g-themed-grid-col {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: rgba(26, 115, 233, 0.26);
    border: 1px solid rgba(26, 115, 233, 0.26);
}

.ux4g-themed-container {
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    background-color: rgba(26, 115, 233, 0.26);
    border: 1px solid rgba(26, 115, 233, 0.26);
}

.bd-example-flex div {
    background-color: rgba(26, 115, 233, 0.26);
    border: 1px solid rgba(26, 115, 233, 0.26);
}

.bd-example-position-utils .position-absolute {
    width: 2rem;
    height: 2rem;
    background-color: #212529;
    border-radius: 0.375rem;
}

.bd-example-position-utils .position-relative {
    height: 200px;
    background-color: #ebedf0;
}

/* custom css */
.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
}

/* Template 5 css */
.navbar .search span {
    font-weight: 800;
}

.navbar .login-btn {
    background: var(--primary-bg-gradient);
    color: var(--color-white);
    border: none;
}

/*.banner {
  padding: 0 25px;
}
.banner .banner_inner {
  background-image: url("/assets/images/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;*/
/*min-height: 700px;*/
/*border-radius: 23px;
  padding: 80px 25px;
}
    .banner .banner_content {*/
/*max-width: 950px;*/
/*max-width: 1200px;
    }*/

.banner {
    padding: 0 25px;
}

    .banner .banner_inner {
        background-image: url("/assets/images/banner.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        border-radius: 23px;
        padding: 107px 25px;
    }

    .banner .banner_content {
        max-width: 1200px;
    }

        /*@media (max-width: 1024px) {
    .banner {
        max-width: 95%;
        padding: 10px;
        padding-block: 30px;
    }

    .banner .banner_inner {
        padding-block: 23px;
    }

    .banner .banner_logo h3 {
        font-size: 25px !important;
    }
}

@media (max-width: 768px) {
    .banner {
        max-width: 100%;
        padding: 5px;
        font-size: 14px;
    }

    .banner .banner_inner {
        padding-block: 0px;
    }

    .banner .banner_logo h3 {
        font-size: 10px !important;
    }
}*/

        .banner .banner_content .banner_logo {
            color: var(--color-white);
        }

            .banner .banner_content .banner_logo h3 {
                font-size: 36px;
                padding-top: 32px;
                padding-bottom: 8px;
            }

    .banner .banner_search {
        padding-top: 25px;
    }

        .banner .banner_search .banner_search_input {
            border: solid 2px var(--color-white);
            height: 65px;
            padding: 0 12px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(2.5499999523px);
            display: flex;
            align-items: center;
        }

            .banner .banner_search .banner_search_input input[type=text] {
                padding: 0 12px;
                width: calc(100% - 137px);
                height: 62px;
                background: none;
                font-size: 18px;
                color: var(--color-white);
                font-weight: 500;
            }

                .banner .banner_search .banner_search_input input[type=text]::placeholder {
                    color: var(--color-white);
                }

            .banner .banner_search .banner_search_input .btn {
                background-color: var(--color-blue5);
                color: var(--color-white);
                padding: 10px 35px;
                border-radius: 40px;
                font-weight: 500;
            }

        .banner .banner_search .banner-chip {
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 24px;
            padding-left: 100px;
            padding-right: 100px;
            padding-bottom: 75px;
        }

            .banner .banner_search .banner-chip a {
                padding: 6px 12px;
                background-color: #F0ECFF;
                font-weight: 400;
                color: var(--color-black11);
                display: flex;
                gap: 5px;
                transition: all 0.5s ease-in-out;
            }

                .banner .banner_search .banner-chip a:hover {
                    background-color: var(--color-white);
                }

                .banner .banner_search .banner-chip a span {
                    font-weight: 600;
                }

            .banner .banner_search .banner-chip p a {
                color: var(--color-white);
            }

        .banner .banner_search .banner_find p {
            color: var(--color-white);
            font-size: 14px;
        }

            .banner .banner_search .banner_find p a {
                font-size: 16px;
                color: var(--color-white);
            }

                .banner .banner_search .banner_find p a span {
                    margin-left: 10px;
                    position: absolute;
                    top: 3px;
                    font-size: 30px;
                }

.explore_head span {
    background-color: var(--color-yellow);
    font-weight: 500;
    padding: 8px 16px;
}

.explore_head h3 {
    padding-top: 16px;
    font-size: 36px;
    font-weight: 700;
}

.explore {
    background-color: #fffef8;
    padding: 80px 0;
}

    .explore .explore-effect {
        border-radius: 569.539px;
        opacity: 0.3;
        background: #FFC701;
        filter: blur(142.1499938965px);
        width: 570px;
        height: 570px;
        left: -600px;
        top: 70px;
    }

    .explore .explore-effect2 {
        border-radius: 405.494px;
        opacity: 0.3;
        background: rgba(104, 32, 255, 0.39);
        filter: blur(157.5500030518px);
        width: 400px;
        height: 400px;
        right: -100px;
        top: -180px;
        flex-shrink: 0;
    }

    .explore .explore_inner {
        border-bottom: solid 1px #C0C0C0;
    }

        .explore .explore_inner .services_chip {
            gap: 24px 16px;
            padding-top: 40px;
        }

            .explore .explore_inner .services_chip a {
                border-radius: 10px;
                border: 1px solid #E7E7F1;
                background: #FFF;
                box-shadow: 0px 6px 12px 0px rgba(30, 10, 58, 0.04);
                padding: 16px;
                gap: 12px;
                transition: all 0.5s ease-in-out;
            }

                .explore .explore_inner .services_chip a:hover {
                    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2), 0px 2px 8px -2px rgba(33, 33, 33, 0.04);
                }

                .explore .explore_inner .services_chip a i {
                    width: 38px;
                    height: 38px;
                    padding: 8px;
                }

                .explore .explore_inner .services_chip a span {
                    color: #717B9E;
                    font-weight: 700;
                    font-size: 28px;
                }

                .explore .explore_inner .services_chip a .icon_1 {
                    background-color: #F7F8FF;
                }

                    .explore .explore_inner .services_chip a .icon_1 span {
                        color: #0019C4;
                    }

                .explore .explore_inner .services_chip a .icon_2 {
                    background-color: #FEFBEF;
                }

                    .explore .explore_inner .services_chip a .icon_2 span {
                        color: #8E7200;
                    }

                .explore .explore_inner .services_chip a .icon_3 {
                    background-color: #F2FCFF;
                }

                    .explore .explore_inner .services_chip a .icon_3 span {
                        color: #1782A2;
                    }

                .explore .explore_inner .services_chip a .icon_4 {
                    background-color: #FEEFF6;
                }

                    .explore .explore_inner .services_chip a .icon_4 span {
                        color: #A7396C;
                    }

                .explore .explore_inner .services_chip a .icon_5 {
                    background-color: #FEF7FF;
                }

                    .explore .explore_inner .services_chip a .icon_5 span {
                        color: #9020A0;
                    }

                .explore .explore_inner .services_chip a .icon_6 {
                    background-color: #FFF7F7;
                }

                    .explore .explore_inner .services_chip a .icon_6 span {
                        color: #802222;
                    }

                .explore .explore_inner .services_chip a .icon_7 {
                    background-color: #F7FFF8;
                }

                    .explore .explore_inner .services_chip a .icon_7 span {
                        color: #1E882C;
                    }

                .explore .explore_inner .services_chip a .icon_8 {
                    background-color: #F7FDFF;
                }

                    .explore .explore_inner .services_chip a .icon_8 span {
                        color: #176079;
                    }

                .explore .explore_inner .services_chip a strong {
                    color: var(--color-black11);
                    font-weight: 600;
                    flex: 1;
                }

                .explore .explore_inner .services_chip a img {
                    width: 20px;
                    height: 20px;
                }

        .explore .explore_inner .view-all-category {
            padding-bottom: 50px;
            padding-top: 32px;
            font-weight: 500;
        }

            .explore .explore_inner .view-all-category p a {
                color: var(--color-black11);
            }

                .explore .explore_inner .view-all-category p a:hover {
                    text-decoration: underline;
                }

.view-all-btn {
    border-radius: 6px;
    color: var(--color-blue5);
    border: 1px solid var(--color-blue5);
    padding: 10px 24px;
    opacity: 0.6;
    font-weight: 500;
    font-size: 14px;
}

.services {
    background-color: #fffef8;
    padding-bottom: 80px;
}

    .services .explore_head h3 {
        padding-bottom: 0;
    }

    .services .services_card .services_card_inner {
        border-radius: 16px;
        border: 1px solid #E3E3E3;
        background: var(--color-white);
        padding: 20px;
    }

        .services .services_card .services_card_inner:hover .effect {
            filter: blur(60.3499984741px);
            opacity: 1;
            width: 120px;
            height: 120px;
        }

        .services .services_card .services_card_inner:hover .none-visible {
            opacity: 0 !important;
        }

        .services .services_card .services_card_inner:hover .services_card_content.hover-visible {
            opacity: 1 !important;
        }

            .services .services_card .services_card_inner:hover .services_card_content.hover-visible h3 {
                transform: translateY(-35px);
            }

    .services .services_card .effect {
        width: 100px;
        height: 100px;
        right: -30px;
        top: -50px;
        filter: blur(72.3499984741px);
        opacity: 0.7;
        transition: 200ms;
    }

    .services .services_card .effect-1 {
        background-color: #1782A2;
    }

    .services .services_card .effect-2 {
        background-color: #A7396C;
    }

    .services .services_card .effect-3 {
        background-color: #0019C4;
    }

    .services .services_card .effect-4 {
        background-color: #B28F00;
    }

    .services .services_card i.icon {
        width: 57px;
        height: 57px;
        padding: 8px;
        background-color: #FFF;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
        right: 20px;
        top: -26px;
        z-index: 1;
    }

        .services .services_card i.icon span {
            font-weight: 700;
            font-size: 32px;
        }

    .services .services_card i.icon_1 span {
        color: #1782A2;
    }

    .services .services_card i.icon_2 span {
        color: #A7396C;
    }

    .services .services_card i.icon_3 span {
        color: #0019C4;
    }

    .services .services_card i.icon_4 span {
        color: #8E7200;
    }

    .services .services_card .services_card_content {
        min-height: 167px;
    }

        .services .services_card .services_card_content.none-visible {
            transition: 200ms;
        }

        .services .services_card .services_card_content.hover-visible {
            opacity: 0 !important;
            position: absolute !important;
            bottom: 25px;
            min-height: auto;
            width: 100%;
            left: 0;
            padding: 20px;
            transition: 200ms;
        }

            .services .services_card .services_card_content.hover-visible h3 {
                position: relative;
                transform: translateY(0px);
                transition: all 200ms;
            }

            .services .services_card .services_card_content.hover-visible button {
                background-color: var(--color-blue5);
                color: var(--color-white);
                width: 100%;
                padding: 6px;
            }

        .services .services_card .services_card_content span {
            padding: 6px 16px;
            border-radius: 40px;
            border: 1px solid #E3E3E3;
            backdrop-filter: blur(2px);
            font-size: 12px;
        }

        .services .services_card .services_card_content h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 8px 0;
        }

        .services .services_card .services_card_content h5 {
            font-size: 14px;
            color: #535353;
            font-weight: normal;
        }

            .services .services_card .services_card_content h5 i {
                background-color: #535353;
                width: 5px;
                height: 5px;
                display: inline-block;
                margin: 0 7px;
            }

.find-map .find-map-content {
    background-color: #120F74;
    background-image: url("../images/map-half.png");
    background-repeat: no-repeat;
    background-position: right center;
    padding: 5px 10px; /*padding: 32px 80px;*/
    border-radius: 16px;
    color: var(--color-white);
    overflow: hidden;
    position: relative;
    text-align: center;
}

    .find-map .find-map-content h3 {
        font-size: 32px;
    }

    .find-map .find-map-content p {
        margin-bottom: 24px;
    }

    .find-map .find-map-content button.btn {
        font-weight: 500;
    }

        .find-map .find-map-content button.btn:hover {
            color: var(--color-blue5);
        }

.application {
    padding: 80px 0;
}

    .application .application-effect {
        border-radius: 405.494px;
        opacity: 0.3;
        background: rgba(104, 32, 255, 0.39);
        filter: blur(157.5500030518px);
        flex-shrink: 0;
        width: 405px;
        height: 405px;
        left: -260px;
        top: 0;
    }

    .application .application-content {
        gap: 40px;
        padding-top: 40px;
    }

        .application .application-content .application-card {
            border-radius: 16px;
            border: 1px solid #E4E4E4;
            background: var(--color-white);
            box-shadow: 0px 10px 20px 0px rgba(50, 50, 50, 0.15);
            padding: 32px;
            gap: 24px;
            overflow: hidden;
            position: relative;
        }

            .application .application-content .application-card:hover i::after {
                opacity: 1 !important;
                transform: scale(15);
            }

            .application .application-content .application-card:hover .application-content-inner p {
                opacity: 0;
            }

            .application .application-content .application-card:hover .application-content-inner > a {
                transform: translateY(-30px);
            }

            .application .application-content .application-card:hover .application-content-inner > strong {
                transform: translateY(30px);
            }

            .application .application-content .application-card i {
                padding: 22px;
                background-color: #FFF8E1;
                position: relative;
                z-index: 1;
            }

                .application .application-content .application-card i::after {
                    content: "";
                    width: 100px;
                    height: 100px;
                    background-color: #FFF8E1;
                    position: absolute;
                    border-radius: 50%;
                    transition: all 0.6s;
                    z-index: -1;
                }

                .application .application-content .application-card i span {
                    font-size: 56px;
                    font-weight: 800;
                }

            .application .application-content .application-card .application-content-inner {
                position: relative;
                z-index: 1;
            }

                .application .application-content .application-card .application-content-inner strong {
                    transition: 300ms;
                    display: block;
                }

                .application .application-content .application-card .application-content-inner a {
                    color: var(--color-black);
                    font-weight: 500;
                    gap: 5px;
                }

                    .application .application-content .application-card .application-content-inner a span.material-symbols-outlined {
                        font-weight: 800;
                        font-size: 30px;
                    }

.waw .waw-effect {
    border-radius: 376.891px;
    opacity: 0.36;
    background: #FFC701;
    filter: blur(140.1999969482px);
    flex-shrink: 0;
    width: 370px;
    height: 370px;
    right: -90px;
    top: 0;
}

.waw .waw-inner {
    padding: 80px 0;
    border-top: solid 1px #C0C0C0;
}

.waw .waw-inner {
    gap: 50px;
}

    .waw .waw-inner .waw-left {
        flex: 1;
    }

        .waw .waw-inner .waw-left .explore_head h3 {
            padding-bottom: 16px;
            margin-bottom: 0;
        }

        .waw .waw-inner .waw-left .explore_head button {
            border-color: var(--color-blue5);
            font-weight: 500;
            color: var(--color-blue5);
        }

    .waw .waw-inner .counter {
        grid-template-columns: repeat(3, 1fr);
        padding: 35px 55px;
        background-color: var(--color-blue5);
        border-radius: 12px;
        position: absolute;
        bottom: 120px;
    }

        .waw .waw-inner .counter .counter-box {
            color: var(--color-white);
            padding-left: 40px;
            padding-right: 40px;
        }

            .waw .waw-inner .counter .counter-box:not(:last-child) {
                border-right: solid 1px rgba(255, 255, 255, 0.48);
            }

            .waw .waw-inner .counter .counter-box h3 {
                font-size: 24px;
                font-weight: 500;
                margin-bottom: 5px;
            }

            .waw .waw-inner .counter .counter-box p {
                margin-bottom: 0;
            }

    .waw .waw-inner .waw-right {
        padding-top: 56px;
    }

.news {
    padding-bottom: 80px;
}

    .news .news-inner {
        padding: 70px 60px 40px 60px;
        border-radius: 16px;
        border: 2px solid #FFECA8;
        background: #FFF7DC;
    }

    .news .news-card {
        border-radius: 12px;
        background: var(--color-white);
        padding: 24px;
    }

        .news .news-card h5 {
            font-size: 18px;
            margin-bottom: 16px;
        }

        .news .news-card a {
            font-weight: 500;
        }

.faq {
    padding-bottom: 80px;
}

    .faq .accordion-item {
        border-bottom: 1px solid #DEDEDE !important;
        border-left: none;
        border-right: none;
        border-radius: 0;
        background: none !important;
    }

        .faq .accordion-item h5 .accordion-button {
            margin-bottom: 0;
            color: #555555;
            font-size: 20px;
            font-weight: normal;
            padding: 24px;
            border-radius: 0;
            background: none !important;
        }

            .faq .accordion-item h5 .accordion-button:focus {
                box-shadow: 0 0 0 0 rgba(255, 236, 168, 0.25);
            }

            .faq .accordion-item h5 .accordion-button::after {
                content: "+";
                width: 0;
                height: 0;
                transform: translateY(-20px);
                background: none !important;
                font-size: 25px;
                color: #555555;
                font-weight: 300;
            }

            .faq .accordion-item h5 .accordion-button:not(.collapsed)::after {
                content: "-";
            }

    .faq .accordion-button:not(.collapsed) {
        background-color: rgba(250, 243, 218, 0.2823529412);
    }

/* footer */
.footer_need_support {
    background-color: var(--color-blue5);
    padding: 50px 0;
}

    .footer_need_support h3 {
        font-size: 43px;
        color: var(--color-white);
        margin-bottom: 15px;
    }

footer {
    background-color: #fff9fc;
    padding: 30px 0 0;
}

    footer .footer-row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 80px;
    }

    footer .col-list {
        color: var(--color-black);
    }

        footer .col-list h3 {
            font-size: 14px;
            font-weight: 600px;
        }

        footer .col-list ul {
            padding: 0;
        }

            footer .col-list ul li a {
                font-size: 13px;
                color: var(--color-black);
            }

            footer .col-list ul li {
                margin-bottom: 8px;
            }

    footer .footer-logo-col {
        gap: 15px;
        flex-direction: column;
    }

    footer .col-list .btn-group .btn {
        color: var(--color-white);
        border-color: var(--color-white);
    }

/* footer social */
.btn-last-update {
    border-color: var(--color-white) !important;
    color: var(--color-white) !important;
    margin-top: 15px;
    padding: 10px 7px !important;
    font-size: 13px !important;
}

.footer_social {
    width: 160px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer_social a {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer_social a svg {
            width: 14px;
            height: 14px;
            fill: var(--color-white);
        }

.btn-last-update {
    color: var(--color-white) !important;
    margin-top: 0px;
    padding: 10px 15px !important;
    font-size: 13px !important;
    background-color: #3B335B;
}

.terms {
    background: #fff9fc;
    font-size: 14px;
}

    .terms ul {
        padding: 16px 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
        align-items: center;
        margin-bottom: 0;
    }

    .terms li a {
        color: var(--color-white);
    }

/* footer end */
.lion {
    position: fixed;
    bottom: 19px;
    right: 30px;
    cursor: pointer;
    z-index: 1;
}

    .lion:hover .lion_tooltip {
        opacity: 1;
        transform: translateY(-15px);
    }

    .lion .lion_tooltip {
        background-color: #191919;
        border-radius: 5px;
        color: var(--color-white);
        padding: 10px 20px;
        font-size: 14px;
        margin: 0 auto;
        width: 152px;
        position: absolute;
        left: -41px;
        text-align: center;
        opacity: 0;
        position: relative;
        transition: 200ms;
    }

        .lion .lion_tooltip::after {
            border-top: 10px solid #191919;
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            vertical-align: middle;
            left: 50%;
            content: "";
            position: absolute;
            bottom: -10px;
            transform: translateX(-50%);
        }

        .lion .lion_tooltip span {
            color: #ffc701;
        }

.emergency {
    border-radius: 50px;
    bottom: 36px;
    cursor: pointer;
    height: 70px;
    padding: 13px;
    position: fixed;
    left: 20px;
    display: flex;
    overflow: hidden;
    align-items: center;
    width: auto;
    max-width: 70px;
    transition: all 400ms;
    color: var(--color-white);
    background-color: #ed4040;
    text-align: left;
    z-index: 99;
}

    .emergency:hover {
        max-width: 300px;
    }

        .emergency:hover a {
            opacity: 1;
        }

    .emergency span {
        font-size: 40px;
    }

    .emergency a {
        white-space: nowrap;
        padding-left: 5px;
        font-size: 16px;
        opacity: 0;
        color: var(--color-white);
    }









/*@media (max-width: 1024px) {
    .banner {
        max-width: 95%;
        padding: 10px;
        padding-block: 30px;
    }

    .banner .banner_inner {
        padding-block: 23px;
    }

    .banner .banner_logo h3 {
        font-size: 25px !important;
    }
}*/

@media (min-width: 1024px) {
    .sticky-bar {
        transition: all 200ms;
        background: none;
        position: fixed;
        top: 20px;
        left: 0;
        right: 0;
        z-index: 99;
    }

        .sticky-bar nav {
            background: #fff;
            box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
            border-radius: 50px;
            padding-left: 30px;
            padding-right: 30px;
        }
}

@media (min-width: 576px) {
    header .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .services .view-all-btn {
        max-width: 160px;
    }

    .find-map .find-map-content {
        background-image: none;
        padding: 32px 40px;
    }

    .application .application-content {
        flex-direction: column;
    }

    .waw .waw-effect {
        display: none;
    }

    .waw .waw-inner {
        flex-direction: column;
    }

        .waw .waw-inner .counter {
            position: relative;
            bottom: 0;
            grid-template-columns: repeat(1, 1fr);
            padding: 35px;
            gap: 15px;
        }

            .waw .waw-inner .counter .counter-box:not(:last-child) {
                border: none;
                align-items: flex-start !important;
            }

    .banner .banner_search .banner-chip {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* footer */
    .footer-row {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 15px !important;
    }

    .terms {
        padding: 20px 0;
    }


    /*  .banner .banner_inner {
    padding-block: 30px;
  }
  .banner .banner_logo h3 {
    font-size: 25px !important;
  }*/


    .banner .banner_search_input input[type=text] {
        width: calc(100% - 0px) !important;
    }

    .banner .banner_search_input .btn {
        display: none;
    }

    .banner .banner_find p a {
        display: block;
    }

        .banner .banner_find p a span {
            display: none;
        }

    .explore .explore-effect, .explore .explore-effect2 {
        display: none;
    }

    .explore .explore_inner .services_chip a {
        width: 100%;
    }

    .application .application-content .application-card {
        padding: 18px;
    }

    .news .news-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

        .news .news-inner .owl-dots {
            display: none;
        }

    .faq .explore_head h3 {
        font-size: 33px;
    }

    .services .owl-dots {
        display: none;
    }

    .emergency {
        display: none;
    }
}
/* Template 5 css end here */


@media (max-width: 1024px) {
    .banner {
        max-width: 95%;
        padding: 10px;
        padding-block: 30px;
    }

        .banner .banner_inner {
            padding-block: 23px;
        }

        .banner .banner_logo h3 {
            font-size: 25px !important;
        }
}


@media (max-width: 768px) {
    .banner {
        max-width: 100%;
        padding: 5px;
        font-size: 14px;
    }

        .banner .banner_inner {
            padding-block: 0px;
        }

        .banner .banner_logo h3 {
            font-size: 10px !important;
        }
}



/*# sourceMappingURL=stylesheet.css.map */



.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-header {
    /*background: linear-gradient(135deg, #0062cc, #0096ff);*/
    /*background: linear-gradient(135deg, #103f72, #0096ff);*/
    background: linear-gradient(135deg, #0A0032, #0096ff);
    padding: 20px;
    background: var(--primary-bg);
    border: none;
    color: white;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #0062cc;
        box-shadow: none;
    }

.input-group-text {
    border: none;
    background: transparent;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    color: #666;
}

.input-group {
    position: relative;
}

.btn-login {
    padding: 12px 20px;
    background: linear-gradient(135deg, #0062cc, #0096ff);
    border: none;
    border-radius: 10px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
    }

.social-login {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #eee;
    background: white;
    transition: all 0.3s ease;
}

    .btn-social:hover {
        background: #f8f9fa;
        transform: translateY(-2px);
    }

    .btn-social i {
        margin-right: 10px;
    }

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #eee;
    }

    .divider::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #eee;
    }

    .divider span {
        background: white;
        padding: 0 10px;
        color: #666;
        font-size: 0.9rem;
    }

.form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.password-toggle {
    cursor: pointer;
}

.register-link {
    text-align: center;
}


.vertical {
    border-left: 2px solid rgb(104 133 172 / 0.26);
    height: 115px;
    position: absolute;
    left: 51%;
}

.RequiredField {
    margin-left: 3px;
    font-size: 14px;
    color: #FF0000;
}


/*For Character Counter - 10/03/2025*/
.wrap {
    position: relative;
    display: inline-block;
}

    .wrap span {
        position: absolute;
        bottom: 5px;
        right: 0px;
    }

.counter {
    /*background-color: #5dc991;*/
    background-color: #ff6a00;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    line-height: 12px;
    height: 14px;
    text-align: center;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    font-weight: 400;
}
/*End Character Counter.*/


/* Loader Start */
.loader {
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 99999;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.loader-container {
    background: #FFF;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
}



    .loader-container img {
        width: 100px;
    }

.loader {
    vertical-align: top;
}

/* Loader End */

.dashboard-header {
    background: #ffe0ed;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgb(255, 255, 255);
    color: #dd398e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.profile-card,
.eligibility-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    border: 1px solid #edf0f5;
}

.section-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 22px;
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-item {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid #edf0f5;
}

    .profile-item label {
        display: block;
        font-size: 12px;
        color: #6c757d;
        margin-bottom: 5px;
    }

    .profile-item span {
        font-size: 14px;
        font-weight: 600;
        color: #212529;
        word-break: break-word;
    }

.instruction-alert {
    background: rgba(220,53,69,.08);
    border: 1px solid rgba(220,53,69,.15);
    color: var(--primary-bg);
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.question-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.question-item {
    display: flex;
    gap: 16px;
    background: #f8f9fb;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #edf0f5;
    transition: .2s ease;
}

    .question-item:hover {
        transform: translateY(-2px);
        background: #fff5f5;
    }

.question-number {
    min-width: 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.question-content {
    flex: 1;
}

.question-text {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    line-height: 1.7;
}

.question-hindi {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.7;
    margin-top: 4px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.action-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.apply-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
}

.modal-content {
    border-radius: 24px;
    overflow: hidden;
    border: none;
}

.modal-body {
    background: #fafbfd;
    padding: 24px;
}

.apply-step-box {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #edf0f5;
}

.apply-step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

@media(max-width:991px) {

    .dashboard-header {
        text-align: center;
        justify-content: center;
    }

    .header-left {
        flex-direction: column;
    }
}

@media(max-width:768px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dashboard-header,
    .profile-card,
    .eligibility-card {
        border-radius: 20px;
        padding: 18px;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .section-title {
        font-size: 18px;
    }

    .question-item {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .question-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .question-text {
        font-size: 14px;
    }

    .question-hindi {
        font-size: 12px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn,
    .apply-btn {
        width: 100%;
    }

    .modal-dialog {
        margin: 12px;
    }

    .modal-body {
        padding: 18px;
    }
}

.apply-question-item {
    background: rgba(13,110,253,.05);
    border: 1px solid rgba(13,110,253,.12);
}

    .apply-question-item:hover {
        background: rgba(13,110,253,.08);
        transform: translateY(-2px);
    }

.apply-question-number {
}

.custom-hr {
    border: 0;
    height: 2px;
    margin: 28px 0;
    background: linear-gradient(to right, transparent, rgba(220,53,69,.6), #dc3545, rgba(220,53,69,.6), transparent);
    border-radius: 50px;
}


.custom-radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.custom-radio-card {
    position: relative;
}

    .custom-radio-card input[type="radio"] {
        display: none;
    }

.custom-radio-label {
    min-width: 140px;
    padding: 12px 18px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 600;
    text-align: center;
    color: #495057;
}

    .custom-radio-label:hover {
        border-color: #0d6efd;
        color: #0d6efd;
        box-shadow: 0 2px 10px rgba(13,110,253,.08);
    }

.custom-radio-card input[type="radio"]:checked + .custom-radio-label {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    box-shadow: 0 4px 12px rgba(13,110,253,.18);
}

.custom-radio-icon {
    margin-right: 6px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    justify-content: center;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #dee2e6;
    }

    .divider span {
        padding: 0 10px;
        font-weight: 600;
        color: #6c757d;
    }

input[type="checkbox"], input[type="radio"] {
    /* Set the custom accent color */
    accent-color: var(--primary-bg);
    /* Set custom dimensions */
    width: 16px;
    height: 16px;
    /* Optional: Align properly with neighboring text */
    vertical-align: middle;
}

.question-wrapper {
    background: #fff;
}

.question-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    background: #fff;
    margin-bottom: 18px;
    transition: all .25s ease;
    overflow: hidden;
}

    .question-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,.06);
    }

.question-number-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-bg-gradient);
}

.question-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.7;
}

.question-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ================= OPTIONS ================= */

.selection-card {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: #fff;
    transition: .25s ease;
    min-height: 56px;
}

    .selection-card:hover {
        border-color: #e38daf;
    }

    .selection-card input {
        transform: scale(1.1);
    }

.option-text {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* ================= CORRECT / WRONG ================= */

.green-selected {
    border-color: #198754 !important;
    background: rgba(25,135,84,.08) !important;
}

    .green-selected .option-text {
        color: #198754;
    }

.red-selected {
    border-color: #dc3545 !important;
    background: rgba(220,53,69,.08) !important;
}

    .red-selected .option-text {
        color: #dc3545;
    }

/* ================= BUTTON ================= */

.continue-wrapper {
    display: none;
}

.continue-btn {
    background: var(--primary-bg);
    /* border: none; */
    border-radius: 14px;
    padding: 16px 34px;
    min-width: 230px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.back-btn {
    background: white;
    border: 1px solid var(--primary-bg);
    border-radius: 14px;
    padding: 16px 34px;
    min-width: 230px;
    color: var(--primary-bg);
    font-size: 15px;
    font-weight: 700;
}

.next-btn {
    background: white;
    border: 1px solid var(--primary-bg);
    border-radius: 14px;
    padding: 16px 34px;
    min-width: 230px;
    color: var(--primary-bg);
    font-size: 15px;
    font-weight: 700;
}

    .continue-btn:hover, .back-btn:hover, .next-btn:hover {
        /* opacity: .96; */
        /* color: #fff; */
        /* transform: translateY(-1px); */
        background: var(--primary-bg);
    }

/* ================= MOBILE ================= */

@media(max-width:768px) {

    .heading-main {
        font-size: 22px;
    }

    .header-icon {
        margin-top: 15px;
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .question-title {
        font-size: 14px;
    }

    .question-subtitle {
        font-size: 12px;
    }

    .selection-card {
        min-height: auto;
        padding: 10px;
    }
}

.card-header h4 {
    color: #2a2a2a;
    font-weight: 700;
}

table.mobile-table th {
    vertical-align: top;
}

.aboutsec > h3 {
    color: #363636;
    font-size: 29px;
}

.pink_text {
    color: #d6317b;
}

.dly-logo h4 {
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    color: #111;
}

@media all and (max-width:768px) {
    .dly-logo > div {
        padding-inline: 0 !important;
    }

    .dly-logo img {
        width: 25dvw;
    }

    .dly-logo > div:nth-child(2) img {
        width: 14vw;
    }

    .dly-logo h4 {
        font-size: 2.4dvw;
        text-align: center
    }

    .navbar {
        padding-top: 0;
    }
}
