@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", serif; */

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
    color: #52677E;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #52677E;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #3257D3;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1230px;
    padding: 0 30px;
}

.sub-heading {
    padding: 10px 20px 10px 10px;
    background: linear-gradient(90deg, rgba(171, 195, 255, 0.14) 0%, rgba(111, 71, 255, 0.14) 100%);
    border-radius: 30px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 1.4;
    letter-spacing: 0px;
    color: #11182C;
}

@media only screen and (max-width:760px) {
    .container {
        padding: 0 15px;
    }

    .sub-heading {
        font-size: 14px !important;
        gap: 5px;
        padding: 5px 10px 5px 5px;
    }

    .sub-heading img {
        width: 22px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
    margin: 0;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section.sticky {
    padding: 15px 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 25px 0px #C7CFE32E;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section .container figure {
    margin: 0;
    padding: 0;
    height: 22px;
}

.header-section .container figure img,
.header-section .container figure a {
    margin: 0;
    padding: 0;
    height: 22px;
}

.header-section .container aside a {
    margin: 0;
    padding: 15px 30px;
    width: auto;
    height: 60px;
    background: linear-gradient(95.97deg, #4F80FF -11.05%, #0047FF 93.19%);
    background-size: 100% !important;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.header-section .container aside a:hover {
    background-size: 200% !important;
    transition: 0.5s;
}

.header-section .container .menu {
    margin: 0;
    padding: 0;
    background-color: #ABC3FF36;
    border-radius: 30px;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 280px;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0;
    transition: 0.4s;
    padding: 20px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #00000026;
}

.menu-bar li {
    line-height: 1;
    margin-bottom: 15px;
}

.menu-bar li:last-child {
    margin-bottom: 0;
}

.menu-bar li a {
    font-family: "Poppins", serif;
    font-size: 16px;
    line-height: 50px;
    font-weight: 500;
    color: #52677E;
    display: block;
    padding: 0 25px;
}

.menu-bar.show li a {
    color: #52677E;
}

.menu-bar.show li a.active {
    color: #FFFFFF;
    background-color: #4D7EFB;
    border-radius: 30px;
}

.menu-bar.show li a svg path {
    fill: #52677E;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #52677E;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #52677E;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 15px;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #52677E;
    padding: 5px 0;
    white-space: nowrap;
    display: block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    font-size: 24px;
    padding: 0;
    color: #0089F8;
    position: absolute;
    right: 20px;
    top: 24px;
}

@media (min-width: 768px) {
    .menu-bar {
        width: 300px;
    }
}

@media (min-width: 1023px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        gap: 0;
        padding: 0;
        list-style: none;
    }

    .menu-bar li {
        margin-bottom: 0;
    }

    .menu-bar li a:hover {
        color: #52677E;
    }

    .menu-bar li a.active {
        color: #FFFFFF;
        background-color: #4D7EFB;
        border-radius: 30px;
    }

    .dropDown-list a.active {
        color: #52677E;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #52677E;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 999;
        min-width: 130px;
        background: #0089F8;
        border-radius: 3px;
        padding: 15px;
    }

    .dropDown_menu li {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .dropDown_menu li a:hover {
        color: #52677E;
    }
}

@media only screen and (max-width:760px) {
    .menu-bar li a {
        padding: 0 25px;
        background-color: #ABC3FF36;
        border-radius: 30px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .menu-bar li a {
        padding: 0 25px;
        background-color: #ABC3FF36;
        border-radius: 30px;
    }

    .toggle-btn {
        top: 30px;
        right: 30px;
    }
}

@media only screen and (max-width:760px) {
    .header-section .container aside {
        margin-right: 50px;
    }

    .header-section .container aside a {
        padding: 10px 15px;
        width: 50px;
        height: 50px;
    }

    .header-section .container aside a span {
        display: none;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .header-section .container aside {
        margin-right: 50px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {
    .menu-bar li a {
        padding: 0 20px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
    padding: 200px 0 100px 0;
    background: url(../img/banner-bg.png) no-repeat center/cover;
}

.banner-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.banner-section .container article {
    width: 55%;
}

.banner-section .container figure {
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 100px rgba(77, 126, 251, 0.3);
}

.banner-section h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0px;
    color: #11182C;
    padding: 10px 0;
}

.banner-section h1 strong {
    font-weight: 700;
    background: linear-gradient(to right, #3257D3 0%, #2C95FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0%;
    color: #52677E;
    padding: 10px 0;
}

@media only screen and (max-width:760px) {
    .banner-section {
        padding: 100px 0 30px 0;
    }

    .banner-section .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .banner-section .container article {
        width: 100%;
    }

    .banner-section .container figure {
        width: 100%;
    }

    .banner-section h1 {
        font-size: 26px;
    }

    .banner-section p {
        font-size: 16px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .banner-section {
        padding: 120px 0 50px 0;
    }

    .banner-section .container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .banner-section .container article {
        width: 100%;
    }

    .banner-section .container figure {
        width: 100%;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #11182C;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 50px;
}

.content-section h2 {
    font-size: 40px;
}

.content-section h2 strong {
    font-weight: 700;
    background: linear-gradient(to right, #3257D3 0%, #2C95FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-section h3 {
    font-size: 32px;
}

.content-section h3 strong {
    font-weight: 700;
    background: linear-gradient(to right, #3257D3 0%, #2C95FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-section h4 {
    font-size: 28px;
}

.content-section h5 {
    font-size: 24px;
}

.content-section h6 {
    font-size: 20px;
}

.content-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #52677E;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #52677E;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #52677E;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 a {
    margin: 15px 0;
    padding: 15px 30px;
    width: auto;
    height: 60px;
    background: linear-gradient(95.97deg, #4F80FF -11.05%, #0047FF 93.19%);
    background-size: 100% !important;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.btn-01 a:hover {
    background-size: 200% !important;
    transition: 0.5s;
}

.btn-02 a {
    margin: 15px 0;
    padding: 15px 30px;
    width: auto;
    height: 60px;
    background: transparent;
    border: 1px solid #2E63EA;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #2E63EA;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.btn-02 a:hover {
    background: linear-gradient(90deg, rgba(171, 195, 255, 0.14) 0%, rgba(111, 71, 255, 0.14) 100%);
    transition: 0.5s;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 26px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section h4 {
        font-size: 20px;
    }

    .content-section h5 {
        font-size: 18px;
    }

    .content-section h6 {
        font-size: 16px;
    }

    .content-section p {
        font-size: 14px;
    }

    .content-section ul li {
        font-size: 14px;
    }

    .content-section ol li {
        font-size: 14px;
    }

    .btn-group {
        gap: 5px;
    }

    .btn-01 a,
    .btn-02 a {
        margin: 10px 0;
        padding: 10px 15px 10px 10px;
        height: 44px;
        font-size: 14px;
        gap: 5px;
    }
}

.welcome-section {
    padding: 50px 0;
}

.welcome-section .container {
    background: url(../img/graphic-bg.png) no-repeat left bottom;
    padding: 0 30px 50px 30px;
}

.welcome-section section {
    margin: 30px auto 0 auto;
    padding: 50px;
    max-width: 1120px;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 0px #C7CFE380;
    backdrop-filter: blur(50px);
}

.features-wrapper {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.features-wrapper figure {
    width: 50%;
}

.features-wrapper article {
    width: 50%;
}

.features-wrapper .btn-01 a {
    margin: 15px 0 0 0;
}

.down-arrow {
    animation: pulse 3s ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width:760px) {
    .welcome-section {
        padding: 30px 0 0 0;
    }

    .welcome-section .container {
        background: url(../img/graphic-bg.png) no-repeat left bottom;
        padding: 0 15px 30px 15px;
    }

    .welcome-section section {
        margin: 15px 0 15px 15px;
        padding: 15px;
        background-color: #FFFFFF;
    }

    .features-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }

    .features-wrapper figure {
        width: 100%;
    }

    .features-wrapper article {
        width: 100%;
    }

    .features-wrapper .btn-01 a {
        margin: 10px 0 0 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .features-wrapper {
        flex-wrap: wrap;
    }

    .features-wrapper figure {
        width: 100%;
    }

    .features-wrapper article {
        width: 100%;
    }
}

.trading-strategies-section {
    padding: 100px 0;
    background-color: #ABC3FF0D;
    position: relative;
    z-index: 1;
}

.trading-strategies-section::before {
    content: "";
    width: 673px;
    height: 208px;
    background: url(../img/grdn-top.svg) no-repeat top;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.trading-strategies-section::after {
    content: "";
    width: 596px;
    height: 264px;
    background: url(../img/grdn-bot.svg) no-repeat top;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.trading-strategies-section section {
    margin-top: 30px;
    display: flex;
    gap: 50px;
    background: url(../img/rectangle.svg) no-repeat 0 60px;
}

.trading-strategies-section figure {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.trading-strategies-section figure .main-img {
    margin-right: 30px;
}

.trading-strategies-section figure .total {
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: -4px 4px 14px 0px #C7CFE340;
    overflow: hidden;
}

.trading-strategies-section figure .expert {
    position: absolute;
    bottom: 100px;
    left: 0;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: -4px 4px 14px 0px #C7CFE340;
    overflow: hidden;
}

.trading-strategies-section figure .btn-video {
    position: absolute;
    bottom: 50px;
    right: 0;
}

.trading-strategies-section aside {
    width: 50%;
}

.trading-strategies-section hr {
    margin: 15px auto;
    padding: 0;
    width: 100%;
    height: 1px;
    background-color: #2E63EA99;
    border: none;
}

.trading-strategies-section .number-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.trading-strategies-section .number-box .number {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #121216;
}

.trading-strategies-section .number-box .content {
    width: calc(100% - 80px);
    border-left: 1px solid #2E63EA99;
    padding-left: 25px;
}

.trading-strategies-section .number-box .content h5 {
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.trading-strategies-section .number-box .content p {
    margin: 0;
    padding: 10px 0 0 0;
}

@media only screen and (max-width:760px) {
    .trading-strategies-section {
        padding: 30px 0;
    }

    .trading-strategies-section::before {
        display: none;
    }

    .trading-strategies-section::after {
        display: none;
    }

    .trading-strategies-section section {
        margin: 15px -15px;
        flex-wrap: wrap;
        gap: 30px;
        background: url(../img/rectangle.svg) no-repeat center 60px;
    }

    .trading-strategies-section figure {
        width: 100%;
        padding: 15px;
    }

    .trading-strategies-section figure .main-img {
        margin-right: 0;
    }

    .trading-strategies-section figure .total {
        right: 0;
        top: -25px;
    }

    .trading-strategies-section figure .expert {
        bottom: 50px;
        left: 0;
    }

    .trading-strategies-section figure .btn-video {
        position: absolute;
        bottom: -30px;
        right: 0;
    }

    .trading-strategies-section aside {
        width: 100%;
    }

    .trading-strategies-section hr {
        margin: 10px auto;
    }

    .trading-strategies-section .number-box .number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .trading-strategies-section .number-box .content {
        width: calc(100% - 50px);
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .trading-strategies-section section {
        flex-wrap: wrap;
    }

    .trading-strategies-section figure {
        margin: 0 auto;
        width: 100%;
        max-width: 472px;
        height: 376px;
    }

    .trading-strategies-section figure .main-img {
        margin: 0;
    }

    .trading-strategies-section figure .total {
        top: 30px;
        right: -40px;
    }

    .trading-strategies-section figure .expert {
        left: -40px;
        bottom: 50px;
    }

    .trading-strategies-section figure .btn-video {
        bottom: -40px;
        right: -40px;
    }

    .trading-strategies-section aside {
        width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {
    .trading-strategies-section section {
        justify-content: space-between;
        align-items: center;
    }

    .trading-strategies-section figure {
        max-width: 472px;
        height: 376px;
    }

    .trading-strategies-section figure .main-img {
        margin: 0;
    }

    .trading-strategies-section figure .total {
        top: 30px;
        right: -30px;
    }

    .trading-strategies-section figure .expert {
        left: -30px;
        bottom: 50px;
    }

    .trading-strategies-section figure .btn-video {
        bottom: -40px;
        right: -30px;
    }
}

.about-us-section {
    padding: 100px 30px;
}

.about-us-section section {
    margin: 0 auto;
    padding: 50px;
    max-width: 1270px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 75px 0px #C7CFE32E;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.about-us-section section::before {
    content: "";
    width: 100%;
    min-height: 498px;
    background: url(../img/graphic-top.png) no-repeat top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.about-us-section section::after {
    content: "";
    width: 100%;
    min-height: 427px;
    background: url(../img/graphic-bot.png) no-repeat bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.mt-30 {
    margin-top: 30px;
}

.about-us-section .container {
    padding: 0;
    background: url(../img/dashed-line.png) no-repeat top;
    display: flex;
    align-items: center;
    gap: 200px;
}

.about-us-section figure {
    width: 50%;
}

.about-us-section article {
    width: 50%;
}

@media only screen and (max-width:760px) {
    .about-us-section {
        padding: 15px;
    }

    .about-us-section section {
        padding: 15px;
    }

    .about-us-section section::before {
        background-size: contain;
    }

    .about-us-section section::after {
        background-size: contain;
    }

    .mt-30 {
        margin-top: 15px;
    }

    .about-us-section .container {
        padding: 0;
        background: none;
        flex-wrap: wrap;
        gap: 15px;
    }

    .about-us-section figure {
        width: 100%;
    }

    .about-us-section article {
        width: 100%;
    }

    .about-us-section .container:last-child {
        flex-wrap: wrap-reverse;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .about-us-section .container {
        gap: 60px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {
    .about-us-section .container {
        gap: 100px;
    }
}

.log-in-section {
    padding: 0 0 100px 0;
}

.log-in-section section {
    margin: 30px auto 0 auto;
    max-width: 950px;
    display: flex;
    gap: 30px;
}

.log-in-section section .aliceblue {
    padding: 25px;
    width: 50%;
    min-height: 200px;
    background-color: #759CFF;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}

.log-in-section section .aliceblue figure {
    width: 173px;
}

.log-in-section section .aliceblue article {
    width: calc(100% - 198px);
}

.log-in-section section .aliceblue article p {
    padding: 0;
    color: #FFFFFF;
}

.log-in-section section .aliceblue article .btn-02 a {
    margin: 15px 0 0 0;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.log-in-section section .dhan {
    padding: 25px;
    width: 50%;
    min-height: 200px;
    background: radial-gradient(36.84% 37.78% at 46.99% 44.92%, #FBFAFF 0%, #FFFFFF 27.78%, #FFFFFF 68.12%, #FBFAFF 100%);
    border-radius: 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}

.log-in-section section .dhan figure {
    width: 92px;
}

.log-in-section section .dhan article {
    width: calc(100% - 117px);
}

.log-in-section section .dhan article p {
    padding: 0;
}

.log-in-section section .dhan article .btn-02 a {
    margin: 15px 0 0 0;
}

.log-in-section section .dhan::before {
    content: "";
    width: 71px;
    height: 73px;
    background: url(../img/corner-tl.png) no-repeat;
    position: absolute;
    left: -3px;
    top: -3px;
    z-index: -1;
}

.log-in-section section .dhan::after {
    content: "";
    width: 71px;
    height: 73px;
    background: url(../img/corner-br.png) no-repeat;
    position: absolute;
    right: -3px;
    bottom: -3px;
    z-index: -1;
}

@media only screen and (max-width:760px) {
    .log-in-section {
        padding: 30px 0;
    }

    .log-in-section section {
        margin: 15px auto 0 auto;
        flex-wrap: wrap;
        gap: 15px;
    }

    .log-in-section section .aliceblue {
        width: 100%;
    }

    .log-in-section section .dhan {
        width: 100%;
    }
}

.open-account-section {
    padding: 0 30px;
}

.open-account-section section {
    margin: 0 auto;
    padding: 50px;
    max-width: 1270px;
    background: linear-gradient(112.24deg, rgba(111, 71, 255, 0.05) 0.76%, rgba(0, 71, 255, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.open-account-section section p {
    margin: 0 auto;
    max-width: 650px;
}

.open-account-section section::before {
    content: "";
    width: 100%;
    max-width: 359px;
    min-height: 488px;
    background: url(../img/graphic-top2.png) no-repeat left center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.open-account-section section::after {
    content: "";
    width: 100%;
    max-width: 683px;
    min-height: 504px;
    background: url(../img/graphic-bot2.png) no-repeat left center;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.open-account-section .container {
    padding: 30px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-account-section aside {
    width: 60%;
    display: flex;
    gap: 30px;
}

.open-account-section .open-account {
    padding: 25px;
    width: 100%;
    max-width: 280px;
    min-height: 280px;
    background-color: #FFFFFF;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.open-account-section .open-account::before {
    content: "";
    width: 252px;
    height: 250px;
    background: url(../img/corner-bdr.png) no-repeat top left;
    position: absolute;
    left: -1px;
    top: -1px;
}

.open-account-section .open-account p {
    padding: 0;
}

.open-account-section .open-account .logo img {
    height: 48px;
}

.open-account-section .open-account .btn-01 a,
.open-account-section .open-account .btn-02 a {
    margin: 15px 0 0 0;
    padding: 15px;
    width: 100%;
}

.open-account-section figure {
    width: 40%;
}

@media only screen and (max-width:760px) {
    .open-account-section {
        padding: 0 15px;
    }

    .open-account-section section {
        padding: 15px;
    }

    .open-account-section section::before {
        background-size: contain;
    }

    .open-account-section section::after {
        background-size: contain;
    }

    .open-account-section .container {
        padding: 15px 0 0 0;
        flex-wrap: wrap;
        gap: 30px;
    }

    .open-account-section aside {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .open-account-section .open-account {
        margin: 0 auto;
    }

    .open-account-section figure {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .open-account-section .container {
        padding: 15px 0 0 0;
        flex-wrap: wrap;
        gap: 30px;
    }

    .open-account-section aside {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .open-account-section figure {
        width: 100%;
        text-align: center;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {

    .open-account-section .open-account .btn-01 a,
    .open-account-section .open-account .btn-02 a {
        font-size: 16px;
    }
}

.testimonials-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.testimonials-section::before {
    content: "";
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background: radial-gradient(53.58% 53.58% at 50% 46.42%, rgba(111, 71, 255, 0.1) 0%, rgba(217, 217, 217, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.testimonials-section section {
    margin: 30px auto 0 auto;
    padding: 30px;
    max-width: 1120px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 0px #C7CFE380;
    backdrop-filter: blur(50px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-section section h6 {
    font-weight: 400;
    color: #4F80FF;
    padding: 0;
}

.testimonials-section section aside {
    width: 35%;
    min-height: 390px;
    background: url(../img/ellipse5.svg) no-repeat center/cover;
}

.testimonials-section section article {
    width: 65%;
    padding: 0 50px;
}

.sin-testiImage img {
    width: 54px;
    height: 54px;
    transform: scale(1, 1);
    transition: all 1s;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    margin: 15px auto;
    border: 3px solid #ABC3FF;
}

.slider-nav .slick-current img {
    transform: scale(1.5, 1.5);
    transition: all 1s;
    border: 3px solid #0047FF;
}

.reviews-slider {
    position: relative !important;
}

.reviews-slider .slick-list {
    overflow: inherit !important;
}

.reviews-slider .thumbimg01 {
    position: absolute;
    top: 0;
    left: 0;
}

.reviews-slider .thumbimg02 {
    position: absolute;
    top: 75px;
    left: -100px;
}

.reviews-slider .thumbimg03 {
    position: absolute;
    top: 150px;
    left: 0;
}

.reviews-slider .thumbimg04 {
    position: absolute;
    top: 220px;
    right: -100px;
}

.reviews-slider .thumbimg05 {
    position: absolute;
    top: 300px;
    left: 0;
}

@media only screen and (max-width:760px) {
    .testimonials-section {
        padding: 30px 0;
    }

    .testimonials-section section {
        margin: 15px auto 0 auto;
        padding: 15px;
        flex-wrap: wrap;
    }

    .testimonials-section section aside {
        width: 100%;
        min-height: 100px;
        background: none;
    }

    .testimonials-section section article {
        width: 100%;
        padding: 0;
    }

    .reviews-slider .slick-list {
        overflow: hidden !important;
    }

    .reviews-slider .thumbimg01 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .reviews-slider .thumbimg02 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .reviews-slider .thumbimg03 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .reviews-slider .thumbimg04 {
        position: inherit;
        top: auto;
        right: auto;
    }

    .reviews-slider .thumbimg05 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .sin-testiText img {
        height: 25px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .testimonials-section section article {
        padding: 0 0 0 70px;
    }
}

.our-blog-section section {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.our-blog-section section .blog-box {
    padding: 10px;
    width: 33.333%;
    background-color: #FFFFFF;
    border-radius: 20px;
    background-image: linear-gradient(#2E63EA, #FFFFFF);
    box-shadow: 0px 7px 25px 0px #C7CFE333;
    position: relative;
    z-index: 1;
}

.our-blog-section section .blog-box::before {
    content: "";
    display: block;
    background-color: #FFFFFF;
    position: absolute;
    top: 2.5px;
    left: 2px;
    border-radius: 20px;
    height: 100%;
    width: calc(100% - 4px);
    z-index: -1;
}

.our-blog-section section .blog-box figure {
    margin: 0;
    padding: 0;
}

.our-blog-section section .blog-box figure img {
    border-radius: 15px;
}

.our-blog-section section .blog-box article {
    margin: 0;
    padding: 30px 10px 10px 10px;
    position: relative;
}

.our-blog-section section .blog-box article .date {
    width: 52px;
    height: 52px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0px 0px 15px #C7CFE333;
    position: absolute;
    left: 30px;
    top: -35px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: #52677E;
}

.our-blog-section section .blog-box article .date span {
    display: block;
    padding: 5px;
    background-color: #2E63EA;
    border-radius: 5px;
    font-size: 18px;
    color: #FFFFFF;
}

.our-blog-section section .blog-box article h6,
.our-blog-section section .blog-box article p {
    padding: 5px 0;
}

.our-blog-section section .blog-box article p a {
    font-weight: 600;
    font-size: 18px;
    background: linear-gradient(to right, #3257D3 0%, #2C95FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width:760px) {
    .our-blog-section section {
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .our-blog-section section .blog-box {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .our-blog-section section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .our-blog-section section .blog-box {
        width: 48%;
    }
}

.faqs-section {
    padding: 100px 0;
}

.faqs-section section {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 50px;
}

.faqs-section aside {
    width: 60%;
}

.faqs-section figure {
    width: 40%;
}

.accordion-container {
    position: relative;
}

.accordion-set {
    margin: 10px auto;
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ABC3FF4A;
}

.accordion-set>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #0B2151;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.accordion-set>a span {
    width: calc(100% - 24px);
}

.accordion-set>a i {
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    border: 1px solid #0B2151;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-set>a.active {
    background-color: #ABC3FF1F;
    border-radius: 10px 10px 0 0;
}

.accordion-content {
    display: none;
    padding: 0 20px 10px 20px;
    background-color: #ABC3FF1F;
    border-radius: 0 0 10px 10px;
}

.moretext {
    display: none;
}

.btn-01 a.moreless-button {
    padding: 15px 30px 15px 60px;
    position: relative;
}

.btn-01 a.moreless-button::after {
    content: "";
    width: 20px;
    height: 14px;
    background: url(../img/icon-view.svg) no-repeat center;
    position: absolute;
    left: 30px;
    top: 23px;
}

@media only screen and (max-width:760px) {
    .faqs-section {
        padding: 30px 0;
    }

    .faqs-section section {
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .faqs-section aside {
        width: 100%;
    }

    .faqs-section figure {
        width: 100%;
    }

    .accordion-container {
        position: relative;
    }

    .accordion-set>a {
        padding: 15px;
        font-size: 16px;
    }

    .accordion-content {
        display: none;
        padding: 0 15px 10px 15px;
    }

    .btn-01 a.moreless-button {
        padding: 10px 15px 10px 40px;
        position: relative;
    }

    .btn-01 a.moreless-button::after {
        left: 15px;
        top: 15px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .faqs-section section {
        flex-wrap: wrap;
    }

    .faqs-section aside {
        width: 100%;
    }

    .faqs-section figure {
        width: 100%;
        text-align: center;
    }
}

.submit-query-section {
    position: relative;
    z-index: 1;
}

.submit-query-section::before {
    content: "";
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background: radial-gradient(53.58% 53.58% at 50% 46.42%, rgba(111, 71, 255, 0.1) 0%, rgba(217, 217, 217, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
}

.submit-query-section section {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.submit-query-section iframe {
    width: 50%;
    border-radius: 20px;
}

.submit-query-section form {
    padding: 50px;
    width: 50%;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px #C7CFE380;
    backdrop-filter: blur(50px);
    border-radius: 20px;
}

.submit-query-section label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #11182C;
}

.submit-query-section input[type="text"],
.submit-query-section input[type="email"],
.submit-query-section input[type="tel"],
.submit-query-section textarea {
    margin: 5px 0 15px 0;
    padding: 15px;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid #2E63EA99;
    border-radius: 10px;
    font-family: "Poppins", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    color: #11182C;
}

.submit-query-section textarea {
    height: 100px;
    overflow: auto;
    resize: none;
}

.submit-query-section button[type="submit"] {
    margin: 10px 0 0 0;
    padding: 15px 30px;
    width: auto;
    height: 60px;
    background: linear-gradient(95.97deg, #4F80FF -11.05%, #0047FF 93.19%);
    background-size: 100% !important;
    border: none;
    border-radius: 50px;
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.submit-query-section button[type="submit"]:hover,
.submit-query-section button[type="submit"]:focus {
    background-size: 200% !important;
    transition: 0.5s;
}

@media only screen and (max-width:760px) {
    .submit-query-section::before {
        display: none;
    }

    .submit-query-section section {
        margin-top: 15px;
        flex-wrap: wrap-reverse;
        gap: 15px;
    }

    .submit-query-section iframe {
        width: 100%;
    }

    .submit-query-section form {
        padding: 15px;
        width: 100%;
    }

    .submit-query-section label {
        font-size: 14px;
    }

    .submit-query-section input[type="text"],
    .submit-query-section input[type="email"],
    .submit-query-section input[type="tel"],
    .submit-query-section textarea {
        font-size: 14px;
    }

    .submit-query-section button[type="submit"] {
        padding: 10px 15px 10px 10px;
        height: 44px;
        font-size: 14px;
        gap: 5px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .submit-query-section section {
        gap: 30px;
    }

    .submit-query-section form {
        padding: 30px;
    }
}

.cta-section {
    padding: 100px 30px;
}

.cta-section section {
    margin: 0 auto;
    padding: 30px;
    max-width: 1000px;
    background: #FFFFFF url(../img/grdn-bg.png) no-repeat center/cover;
    border: 10px solid #FFFFFF;
    box-shadow: 0px 0px 75px 0px #C7CFE32E;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-section section article {
    width: calc(100% - 320px);
}

.cta-section section figure {
    width: 270px;
}

@media only screen and (max-width:760px) {
    .cta-section {
        padding: 30px 15px;
    }

    .cta-section section {
        padding: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cta-section section article {
        width: 100%;
    }

    .cta-section section figure {
        width: 100%;
        text-align: center;
    }
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
    padding: 50px 0 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.21) 4.14%, rgba(46, 99, 234, 0.21) 65.33%);
}

.footer-section .logo {
    text-align: center;
}

.footer-section .logo img {
    height: 56px;
}

.footer-section .social {
    padding: 30px 0;
    text-align: center;
}

.footer-section .social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-section .social ul li {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
}

.footer-section .social ul li a {
    width: 50px;
    height: 50px;
    background-color: #2E63EA;
    border-radius: 50%;
    font-size: 24px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;
}

.footer-section .social ul li a:hover {
    background-color: #FFFFFF;
    color: #2E63EA;
    transition: all .4s ease-in-out;
}

.footer-section .divider {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 1px;
    background: radial-gradient(50% 50% at 50% 50%, #0047FF 0%, rgba(220, 233, 229, 0) 100%);
}

.footer-section .infos {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #0B2151;
}

.footer-section .phone,
.footer-section .address,
.footer-section .email {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.footer-section .phone i,
.footer-section .address i,
.footer-section .email i {
    font-size: 25px;
    color: #2E63EA;
}

.footer-section .bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section .bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.footer-section .bottom ul li {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #0B2151;
    position: relative;
}

.footer-section .bottom ul li::after {
    content: "|";
    position: absolute;
    right: -18px;
    top: 0;
}

.footer-section .bottom ul li:last-child::after {
    display: none;
}

.footer-section .bottom ul li a {
    color: #0B2151;
    transition: all .4s ease-in-out;
}

.footer-section .bottom ul li a:hover {
    color: #2E63EA;
    transition: all .4s ease-in-out;
}

.footer-section .bottom p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #0B2151;
}

.footer-section .bottom p strong {
    font-weight: 600;
}

.footer-section a {
    color: #0B2151;
    transition: all .4s ease-in-out;
}

.footer-section a:hover {
    color: #2E63EA;
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .footer-section {
        padding: 20px 0 0 0;
    }

    .footer-section .logo img {
        height: 30px;
    }

    .footer-section .social {
        padding: 15px 0;
    }

    .footer-section .social ul {
        gap: 15px;
    }

    .footer-section .social ul li {
        width: 40px;
        height: 40px;
    }

    .footer-section .social ul li a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .footer-section .infos {
        flex-wrap: wrap;
        font-size: 14px;
    }

    .footer-section .infos br {
        display: none;
    }

    .footer-section .phone,
    .footer-section .address,
    .footer-section .email {
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 5px 0;
        text-align: center;
    }

    .footer-section .phone i,
    .footer-section .address i,
    .footer-section .email i {
        font-size: 17px;
    }

    .footer-section .bottom {
        padding: 15px 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-section .bottom ul {
        width: 100%;
        justify-content: center;
    }

    .footer-section .bottom ul li {
        font-size: 14px;
    }

    .footer-section .bottom p {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

    .footer-section .bottom p strong {
        font-weight: 600;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-section .infos {
        flex-wrap: wrap;
    }

    .footer-section .infos br {
        display: none;
    }

    .footer-section .phone,
    .footer-section .address,
    .footer-section .email {
        justify-content: center;
        width: 100%;
        padding: 5px 0;
        text-align: center;
    }
}

/* 	-----------------------------------------------------
    ------------------ Go to top Styles -----------------
    ----------------------------------------------------- */
.cd-top {
    display: inline-block;
    height: 54px;
    width: 54px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #2E63EA url(../fonts/cd-top-arrow.svg) no-repeat center;
    border-radius: 50%;
    box-shadow: 0px 10px 25px -3px #00000040;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover {
    opacity: 1;
}

@media only screen and (max-width:1170px) {
    .cd-top {
        display: none;
    }
}

/* 	-----------------------------------------------------
    ------------------ Privacy Policy Modal Styles -----------------
    ----------------------------------------------------- */
.privacy-policy-modal {
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    background: #ffffff !important;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.privacy-policy-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.privacy-policy-content h2 {
    color: #2E63EA;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.privacy-policy-scroll {
    flex: 1;
    overflow-y: scroll;
    padding-right: 10px;
    line-height: 1.6;
    max-height: 60vh;
}

.privacy-policy-scroll::-webkit-scrollbar {
    width: 8px;
}

.privacy-policy-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb {
    background: #2E63EA;
    border-radius: 4px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb:hover {
    background: #1e4bb8;
}

.privacy-policy-scroll h3 {
    color: #2E63EA;
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border-left: 4px solid #2E63EA;
    padding-left: 15px;
}

.privacy-policy-scroll h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.privacy-policy-scroll p {
    color: #52677E;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-policy-scroll ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-policy-scroll ul li {
    color: #52677E;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.privacy-policy-scroll strong {
    color: #2E63EA;
    font-weight: 600;
}

/* Responsive styles for privacy policy modal */
@media only screen and (max-width: 768px) {
    .privacy-policy-modal {
        width: 95%;
        max-height: 85vh;
        background: #ffffff !important;
    }
    
    .privacy-policy-content {
        padding: 20px;
        background: #ffffff;
    }
    
    .privacy-policy-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .privacy-policy-scroll {
        max-height: 50vh;
        overflow-y: scroll;
    }
    
    .privacy-policy-scroll h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }
    
    .privacy-policy-scroll h4 {
        font-size: 15px;
        margin: 15px 0 8px 0;
    }
    
    .privacy-policy-scroll p,
    .privacy-policy-scroll ul li {
        font-size: 13px;
    }
}

/* 	-----------------------------------------------------
    ------------------ Terms of Use Modal Styles -----------------
    ----------------------------------------------------- */
.terms-of-use-modal {
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    background: #ffffff !important;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.terms-of-use-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.terms-of-use-content h2 {
    color: #2E63EA;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.terms-of-use-scroll {
    flex: 1;
    overflow-y: scroll;
    padding-right: 10px;
    line-height: 1.6;
    max-height: 60vh;
}

.terms-of-use-scroll::-webkit-scrollbar {
    width: 8px;
}

.terms-of-use-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.terms-of-use-scroll::-webkit-scrollbar-thumb {
    background: #2E63EA;
    border-radius: 4px;
}

.terms-of-use-scroll::-webkit-scrollbar-thumb:hover {
    background: #1e4bb8;
}

.terms-of-use-scroll h3 {
    color: #2E63EA;
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border-left: 4px solid #2E63EA;
    padding-left: 15px;
}

.terms-of-use-scroll p {
    color: #52677E;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-of-use-scroll ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-of-use-scroll ul li {
    color: #52677E;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.terms-of-use-scroll strong {
    color: #2E63EA;
    font-weight: 600;
}

.risk-acknowledgment {
    background: #f8f9fa;
    border: 2px solid #2E63EA;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.risk-acknowledgment h3 {
    color: #d32f2f;
    border-left: 4px solid #d32f2f;
    margin-top: 0;
}

.risk-acknowledgment strong {
    color: #d32f2f;
}

/* Responsive styles for terms of use modal */
@media only screen and (max-width: 768px) {
    .terms-of-use-modal {
        width: 95%;
        max-height: 85vh;
        background: #ffffff !important;
    }
    
    .terms-of-use-content {
        padding: 20px;
        background: #ffffff;
    }
    
    .terms-of-use-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .terms-of-use-scroll {
        max-height: 50vh;
        overflow-y: scroll;
    }
    
    .terms-of-use-scroll h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }
    
    .terms-of-use-scroll p,
    .terms-of-use-scroll ul li {
        font-size: 13px;
    }
    
    .risk-acknowledgment {
        padding: 15px;
        margin-top: 20px;
    }
}