/**** Global Styles ****/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
body {
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
    background: #000;
    color: #fff;
}
body.overflow-hide {
    overflow: hidden;
}
h1,
h2,
h3,
/*h4,*/
h5,
h6 {
    color: #fff;
}
p {
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    color: #fff;
}
img {
    max-width: 100%;
}
.max-width {
    max-width: 1360px;
    margin: auto;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}
#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    cursor: pointer;
    height: 50px;
    width: 50px;
    padding: 10px;
    outline: 0;
    border: 0;
    opacity: 0.5;
    border: 1px solid #b8a8a8;
    border-radius: 50%;
    background-color: #000;
}
#backToTop:hover {
    opacity: 1;
}
.preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    place-items: center;
    justify-content: center;
    z-index: 9999;
    top: 0;
    left: 0;
    background: linear-gradient(89.7deg, #06152b 5.45%, #050f1e 96.3%);
}
.preloader .content {
    margin: auto 0;
}
section h2 {
    font-weight: 700;
    font-size: 54px;
    line-height: 64px;
    letter-spacing: 0.1px;
    color: #ffffff;
    margin-bottom: 20px;
}
section p {
    font-size: 22px;
    line-height: 27px;
    color: #ffffff;
}
.bg-gradient,
.bg-gradient:hover {
    background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
    border-radius: 2px;
    color: #fff;
    border: 0;
    box-shadow: none;
    /* padding: 10px 20px; */
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
/**** Global Styles ****/
/* header */
.dark-theme header {
    background: rgba(0, 0, 0, 0.7);
    /* background: #000; */
    position: fixed;
    width: 100%;
    /* z-index: 99; */
    z-index: 9999999;
    top: 0;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.dark-theme header.active {
    background: #000;
    transition: none;
}
.dark-theme header.scrolled {
    background: #000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.dark-theme header .dropdown-outer {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 0;
}
.dark-theme header.active .dropdown-outer {
    height: calc(100vh - 106px);
    overflow-y: auto;
}
.dark-theme .header-content {
    position: relative;
}
.dark-theme header .nav_brand img {
    width: 240px;
}
.dark-theme header nav.navbar {
    /* padding: 30px 50px; */
    padding: 15px 40px;
    justify-content: space-between;
    z-index: 9;
}
.dark-theme header div#collapsibleNavbar {
    max-width: 70%;
    justify-content: space-between;
}
.dark-theme header nav .navbar-nav {
    width: 100%;
    justify-content: flex-end;
}
.dark-theme header li.nav-item {
    margin-right: 20px;
}
.dark-theme header li.nav-item:last-child {
    margin-right: 0;
}
.dark-theme header .navbar-nav li.nav-item a.nav-link img {
    margin-left: 5px;
}
.dark-theme header .navbar-nav li.nav-item a.nav-link {
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    padding: 5px 10px;
    position: relative;
    font-weight: 400;
}
.dark-theme header .navbar-nav li.nav-item a.nav-link:hover,
.dark-theme header .navbar-nav li.nav-item a.nav-link.active {
    opacity: 1;
}
.dark-theme header li a::after {
    bottom: -3px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #fff;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.dark-theme header li a:hover::after {
    width: 100%;
}
.dark-theme header .sub-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #000;
    padding: 50px 0;
    z-index: 8;
    transform: translateY(-100%);
}
.dark-theme header .sub-menu.active {
    transform: translateY(0);
}
.dark-theme header .sub-menu-left h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 10px;
}
.dark-theme header .sub-menu-left p {
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 30px;
}
.dark-theme header .sub-menu ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.dark-theme header .sub-menu ul li {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 30px;
}
.dark-theme header .sub-menu ul li a {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.dark-theme header .sub-menu ul li a:hover,
.dark-theme header .sub-menu ul li a:focus {
    text-decoration: none;
}
.dark-theme header .sub-menu ul li a:hover .sub-menu-icon img,
.dark-theme header .sub-menu ul li a:focus .sub-menu-icon img {
    transform: scale(1.2);
}
.dark-theme header .sub-menu-icon {
    max-width: 35px;
    margin-right: 30px;
}
.dark-theme header .sub-menu-icon img {
    max-width: unset;
}
.dark-theme header .sub-menu-text h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 0;
}
.dark-theme header .sub-menu-text p {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 0;
}
.dark-theme header .dropdown-menu {
    background: #222;
    right: 0;
    left: unset;
    margin: 10px 0;
    width: 240px;
    padding: 0;
}
.dark-theme header .dropdown-menu::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 15px solid #222222;
    top: -15px;
    right: 25px;
}
.dark-theme header .dropdown-menu a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px;
    font-size: 16px;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: unset;
    background-color: unset;
}
.dark-theme header .dropdown-menu a img {
    width: 25px;
    margin-right: 20px;
}
.dark-theme header .dropdown-menu a::after,
.dark-theme header .dropdown-toggle::after {
    display: none;
}
/* header */

/* Footer */
footer {
    color: #b8a8a8;
    background: rgba(16, 23, 56, 0.32);
}
footer .max-width {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 55px;
    padding-bottom: 50px;
}
.footer_logo p {
    width: 80%;
    font-size: 14px;
    line-height: 32px;
    margin: 40px 0;
    color: #b8a8a8;
}
.footer_logo {
    width: 30%;
}
.footer_links {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 30px;
}
.footer_links_info {
    width: 33.33%;
}
.footer_links_info h5 {
    margin-bottom: 7px;
    color: #b8a8a8;
    font-size: 15px;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}
.footer_links_info ul {
    padding: 0;
    margin-left: 0;
}
.footer_links_info li {
    margin-bottom: 7px;
    list-style-type: none;
}
.footer_links_info li a {
    text-decoration: none;
    font-size: 13px;
    position: relative;
    color: #b8a8a8;
    font-weight: 300;
}
.footer_contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer_links_info li a:hover {
    color: #fff;
}
.footer_links_info li a::after {
    bottom: -3px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #fff;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.footer_links_info li a:hover::after {
    width: 100%;
}
.footer_links_info li a img {
    margin-right: 10px;
    width: 15px;
}
.footer_contact_tel {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer_social_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer_social_links a {
    margin-left: 8px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #201c43;
    border-radius: 8px;
    padding: 7px;
}
.footer_social_links a:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.footer_contact a:hover::after {
    display: none;
}
.footer_links_info .footer_social_links a img {
    width: auto;
}
p.footer_copyright {
    margin: 0;
}
.footer_bottom,
.footer_bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer_bottom {
    max-width: 1360px;
    margin: auto;
    padding: 0 40px;
    padding-bottom: 40px;
}
.footer_here img {
    width: 90px;
}
.footer_bottom .footer_copyright {
    font-weight: 300;
    font-size: 14px;
    line-height: 28px;
    color: #b8a8a8;
}
.footer_bottom ul {
    margin: 0;
    list-style-type: none;
    margin-right: 100px;
    margin-left: auto;
}
.footer_bottom ul h5 {
    margin: 0px;
    color: #b8a8a8;
    font-size: 16px;
    margin-right: 30px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.footer_here p {
    margin: 0;
    color: #b8a8a8;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.02em;
}
.footer_here span {
    font-weight: 900;
}
.footer_bottom .footer_copyright_mobile {
    display: none;
}
/* Footer */

/* banner section start */
.banner_sec {
    /* background-image: url("../images/digix_banner.png");
    background-repeat: no-repeat;
    background-size: cover; */
    width: 100%;
    min-height: 70vh;
    background: linear-gradient(89.7deg, #06152b 5.45%, #050f1e 96.3%);
    /* background-position: center;
    background-attachment: fixed; */
}
.karisma_banner_icon {
    width: auto;
    height: 320px;
    object-fit: contain;
    text-align: center;
}
.banner_left_info {
    padding-left: 60px;
}
.banner_left h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 62px;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    color: #ffffff;
}
.banner_text h2 span {
    color: #0090ff;
    background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner_text {
    padding-top: 20vh;
}
.banner_left {
    /* padding-top: 50px; */
    padding-top: 12vh;
    max-width: 480px;
}
.banner_left p {
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    color: #ffffff;
    opacity: 0.9;
    font-style: italic;
    margin-top: 30px;
    border-top: 2px solid #0ed2d6;
    border-bottom: 2px solid #0ed2d6;
    padding-top: 20px;
    padding-bottom: 20px;
}
.banner_bg {
    background: #524fd1;
    border: 1px solid #000000;
    box-sizing: border-box;
    filter: blur(150px);
    /* transform: rotate(-84.71deg); */
    position: absolute;
    content: "";
    width: 440px;
    height: 108px;
    z-index: 99;
    top: -120px;
    right: 0px;
}
.banner_right {
    width: 495px;
    margin-left: auto;
    padding-bottom: 60px;
    /* padding-top: 1vh; */
}

.form_sec {
    margin-top: 60px;
}
.banner_icon {
    text-align: center;
}
.banner_icon img {
}
.banner_right_sub_text {
    margin-top: 60px;
}
.banner_right h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 62px;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    color: #ffffff;
}
.banner_right_btn {
    background: #2b3441;
    border: 2px solid #384455;
    border-radius: 3px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    margin-top: 40px;
    padding: 20px 55px;
    /* width: 220px; */
    display: inline-block;
}
.banner_right_btn img {
    height: 24px;
    margin-left: 4px;
    vertical-align: bottom;
}
.banner_right_btn:nth-last-child(1) {
    margin-left: 30px;
}
.banner_right_btn:hover {
    text-decoration: none;
    color: #fff;
}
.banner_right .login_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.4px;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 15px;
}

.return_div {
    margin-top: 30px;
}
.return_div span {
    background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    margin-left: 15px;

    font-style: normal;
}
.account_sign_in_text {
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.4px;
    color: #d9e1e7;
}
.account_sign_in_text:hover {
    color: #d9e1e7;
    text-decoration: none;
}
.mobile_note_text {
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #ffffff;
    font-style: italic;
    margin-top: 40px;
}
.sign_in_btn {
    background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
    box-shadow: 0px 0px 7px rgba(139, 139, 139, 0.256337);
    border-radius: 3px;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 2px;
    color: #ffffff;
    height: 64px;
    width: 100%;
    border: none;
    margin-top: 40px;
}
.sign_in_btn:focus {
    outline: none;
}
.person_img_sec {
    display: none;
    position: absolute;
    top: 125px;
    right: 40px;
}
/* banner section end */
/* client start */
.banner_client_sec {
    background: #fff;
    margin-top: -10px;
    border-radius: 3px;
    padding: 35px 0px;
}
.banner_client_sec h2 {
    font-weight: bold;
    font-size: 28px;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.1px;
    text-transform: uppercase;

    padding-bottom: 16px;
    color: #201c43;
}
.ipo_carousel.owl-carousel {
}

.ipo_carousel {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
/* client start */
.content_div_sec {
    /* margin-top: 75px; */
    padding-bottom: 45px;
    /* background: rgba(230, 231, 243, 0.06); */
    padding: 40px 40px;
    padding-bottom: 80px;

    /* padding: 90px 40px; */
}
.content_heading_text {
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    letter-spacing: 0.1px;
    color: #ffffff;
}
.content_div_sec .row {
    margin-top: 30px;
}
.content_div_left {
    width: 87%;
    margin-top: 10px;
}
.content_div_left h2 {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    letter-spacing: 0.1px;
    color: #ffffff;
}
.content_div_left h2 span {
    color: #0090ff;
    background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content_div_left p:nth-child(1) {
    margin-bottom: 30px;
}
.content_div_left p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #e0e0e0;
    opacity: 0.9;
    margin-top: 22px;
    margin-bottom: 35px;
}

.ipo_sub_div {
    margin-top: 30px;
    margin-left: 100px;
}
.ipo_sub_sec {
    /* margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between; */
}
.ipo_sub_text {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    /* width: 45%; */
}
.ipo_sub_text h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 0px;
    margin-left: 25px;
}
.ipo_sub_text img {
    height: 22px;
}
.content_div_right {
    margin-top: 100px;
    text-align: center;
}
.content_div_right img {
    max-width: 515px;
    width: 100%;
}

/* sub banner section */
.banner_div {
    background-image: url("../images/banner_ipo.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 170px;
    margin-top: 80px;
}
.banner_div h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;

    padding-top: 60px;
}
/* sub banner section */

/* content section  */

.why-kfintech-features {
    width: 100%;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
}
.scrollspy-why-kfin-left {
    /* margin-left: 50px; */
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
}
.why-kfin-tabs {
    position: relative;
}
.why-kfin-line {
    display: none;
    position: absolute;
    width: 1px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, #0090ff 0%, #36dae9 100%);
    top: 15px;
    left: -25px;
}
.scrollspy-why-kfin .show_hide {
    margin-bottom: 20px;
}
.scrollspy-why-kfin-left .why-kfin-tab {
    padding: 10px;
}
.scrollspy-why-kfin-left .why-kfin-tab a {
    border: 1px solid transparent;
    position: relative;
}
.scrollspy-why-kfin-left .why-kfin-tab a.active {
    color: #2d9cdb;
    font-weight: 600;
}
.scrollspy-why-kfin-left .why-kfin-tab a.active::before {
    display: none;
    content: "";
    position: absolute;
    background: #000 url("../images/kfin-logo-small.svg") no-repeat;
    top: 0;
    left: -55px;
    width: 40px;
    height: 40px;
    z-index: 1;
}
.scrollspy-why-kfin-left .why-kfin-tab a {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
}

.why-kfintech-features .row {
    padding: 85px 0;
    padding-top: 65px;
}
.subscribe_scroll_why_kfin .row {
    padding-top: 20px;
}
.why-kfintech-features h2 {
    font-weight: 700;
    font-size: 54px;
    line-height: 64px;
    letter-spacing: 0.1px;
    color: #ffffff;
    margin-bottom: 30px;
}
.why-kfintech-features h3 {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    margin-top: 12px;
    margin-bottom: 12px;
    background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-kfintech-features p,
.why-kfintech-features li {
    font-size: 16px;
    line-height: 30px;
    color: #ffffffb5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}
.why-kfintech-features ul {
    margin-left: 18px;
}
section h2 {
    font-weight: 700;
    font-size: 54px;
    line-height: 64px;
    letter-spacing: 0.1px;
    color: #ffffff;
    margin-bottom: 20px;
}
section p {
    font-size: 22px;
    line-height: 27px;
    color: #ffffff;
}
/* .show_hide a {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
} */
.show_hide img {
    transform: rotate(90deg);
    cursor: pointer;
}
.show_hide img.rotate {
    transform: rotate(270deg);
}
.subscri_link {
    color: #d9e1e7 !important;
    padding-left: 1px;
    text-decoration: underline;
}
.subscri_link:active {
    color: #0090ff;
}
.subscri_link:visited {
    color: #0090ff;
}
.subscri_link:hover {
    color: #0090ff;
}
li.normal-discrp {
    list-style-type: disc;
}
.read-more-content li {
    list-style-type: disc;
}
.contribute_sec li {
    list-style-type: disc;
}
.subscriber_banner_text {
    margin-top: 150px;
}
.read_more_text_sec {
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}
.read-more-content.two_tier_sec span {
    font-weight: 400;
}
/* content section */

/* tab form signup section */
.terms_sec {
    margin-top: 50px;
    padding-bottom: 30px;
}
.terms_sec p {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #d9e1e7;
    opacity: 0.8;
    position: relative;
    padding-left: 15px;
}
.terms_sec p::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 48px;
    color: #0090ff;
    background: -webkit-linear-gradient(left, #0090ff, #36dae9);
    background-clip: text;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    border-left: 3px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #0090ff, #36dae9);
    left: 0px;
}
.input-captcha {
    margin-top: 30px;
}
.input-captcha img {
    width: 100%;
}
.ip_group {
    display: flex;
    align-items: center;
}
.ip_group .input-field {
    margin-top: 30px;
}
.ip_group .input-field input {
    margin-top: 0px;
}
.ip_group .input-field input:focus {
    margin-top: 0px;
}
.ip_group .input-field:nth-child(2) {
    margin-left: 18px;
}
.investor-login-right form .form-group {
    margin-bottom: 0px;
}
.investor-login-right {
    margin-top: 40px;
}
.investor-login-right .nav-tabs {
    border-bottom: 1px solid #384455;
}
.investor-login-right .nav-link {
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border: 0;
    border-bottom: 3px solid transparent;
}
.investor-login-right .nav-link:hover,
.investor-login-right .nav-link:focus {
    border: 0;
}
.investor-login-right .nav-link.active {
    color: #0090ff;
    background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 3px solid #0090ff;
}
.investor-login-right input,
.investor-login-right input:focus {
    background: #2b3441;
    border: 2px solid #384455;
    border-radius: 3px;
    font-size: 18px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
    padding: 30px 10px 30px 40px;
    margin-top: 30px;
    height: 64px;
    padding-left: 48px;
}
.investor-login-right input:focus {
    outline: none;
    box-shadow: none;
}
.investor-login-right .input-field {
    position: relative;
}
.investor-login-right .input-field img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.investor-login-right .new-pswd a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
}
.investor-login-right .new-pswd a img {
    position: unset;
    left: unset;
    transform: unset;
}
.investor-login-right input[type="checkbox"] {
    display: none;
}
.investor-login-right input[type="checkbox"] + label {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
}
.investor-login-right input[type="checkbox"] + label a {
    color: #0090ff;
}
.investor-login-right input[type="checkbox"] + label::before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #0090ff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    cursor: pointer;
    margin-right: 12px;
    border-radius: 2px;
}

.investor-login-right input[type="checkbox"]:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 11px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.tab-content a {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
    margin-top: 10px;
}
.investor-login-right button {
    width: 100%;
    padding: 15px;
    margin-top: 40px;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 2px;
    font-variant: small-caps;
    color: #ffffff;
}
.signin-using {
    text-align: center;
    margin-top: 30px;
}
.signin-using-heading p {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
    margin: 0;
}
.signin-using-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.signin-using-heading .line {
    height: 1px;
    background: #384455;
    flex: 1;
    margin: 0 10px;
}
.signin-using a {
    margin: 0 10px;
}
.forgot-password {
    margin-top: 53px;
}
.forgot-password h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
    letter-spacing: 0.4px;
    padding-bottom: 20px;
    border-bottom: 1px solid #384455;
}
.forgot-password form {
    text-align: center;
}
.forgot-password button {
    margin-bottom: 20px;
}
.forgot-password a {
    color: #0090ff;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: none;
}
.forgot-password-btn:hover {
    color: #0090ff;
}
.sign_in_btn.sign_up_btn {
    margin-bottom: 10vh;
}
/* tab form signup section */

/* organization section */
.oranization_sec {
    padding-top: 100px;
}
.organization_heading {
    font-weight: bold;
    font-size: 64px;
    line-height: 75px;
    letter-spacing: 0.1px;
    color: #fff;
    width: 85%;
}
.organization_heading span {
    color: #0090ff;
    background: linear-gradient(150deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.oranization_sec .row {
    margin-top: 50px;
    margin-left: 8px;
    margin-right: 8px;
}
.oranization_sec .col-md-4 {
    padding-right: 0px;
    padding-left: 0px;
}
.first_organization {
    background-image: url("../images/head_organization.png");
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
}
.first_organization_text {
    padding-top: 130px;
    padding-left: 35px;
    padding-right: 35px;
}
.first_organization_text h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 19px;
    letter-spacing: 0.2px;
    color: #f2f2f2;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.first_organization_text p {
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #f2f2f2;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: 18px;
    text-align: justify;
}
.second_organization {
    background-image: url("../images/compliance_offier.png");
}
.third_organization {
    background-image: url("../images/insider_img.png");
}
/* organization section */

/* digix web secreenshot section */
.digix_web_sec {
    padding-top: 30px;
    padding-bottom: 60px;
}
.digix_web_left {
    margin-top: 165px;
}
.digix_web_left h2 {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    letter-spacing: 0.1px;

    color: #ffffff;
    margin-top: 10px;
}
.digix_web_right.owl-carousel .item img {
    width: 805px;
    margin: 0px auto;
    margin-top: 15px;
}
.digix_web_right.owl-carousel .owl-dots {
    text-align: center;
}
.digix_web_right.owl-carousel .owl-dot:focus {
    outline: none;
}
.digix_web_right.owl-carousel .owl-dot {
    height: 4px;
    width: 24px;
    background: #c4c4c4;
    opacity: 0.7;

    border: none;
    margin-right: 8px;
}
.digix_web_right.owl-carousel .owl-dot.active {
    background: linear-gradient(
        1.39deg,
        #0090ff 5.09%,
        #0090ff 5.09%,
        #36dae9 99.21%
    );
}
/* digix web secreenshot section */

/* terms_modal modal */
#terms_modal {
}
#terms_modal .modal-title {
    font-weight: bold;
    font-size: 28px;
    line-height: 33px;
    color: #212529;
    letter-spacing: 1px;
}
.modal_para {
    color: #212529;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
}

#terms_modal .modal-body.row {
    padding: 20px 40px;
}
#terms_modal .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 10.5rem);
}
#terms_modal .btn-danger.close_btn {
    background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
    box-shadow: 0px 0px 7px rgb(139 139 139 / 26%);
    border: none;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 20px;
}
#terms_modal .close:focus {
    outline: none;
}
/* terms_modal modal */

/* Our Solutions */
.our-solutions {
    position: relative;
    z-index: 9;
}
.our-solutions-cards {
    width: 100%;
    overflow: hidden;
}
.our-solutions-total {
    display: flex;
    /* width: 200%; */
}
.our-solutions-total .our-solutions-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 25%;
    height: 650px;
    max-height: 100vh;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(5, 20, 38, 0.5) 82.36%
    );
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow: hidden;
}
.our-solutions h2 {
    position: absolute;
    left: 30px;
    top: 50px;
    z-index: 9;
}
.our-solutions .arrow {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    z-index: 10;
}
.our-solutions .arrow#solutions-left-arrow {
    display: none;
}
.our-solutions .arrow#solutions-right-arrow {
    left: unset;
    right: 30px;
}
.our-solutions-card h5 {
    font-weight: 600;
    font-size: 28px;
    line-height: 33px;

    color: #fff;
    cursor: pointer;
}
.our-solutions-card p {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}
.our-solutions-card p.our-solutions-card-text {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out 0.15s;
    transition: all 0.5s ease-in-out 0.15s;
}
.our-solutions-card .links p {
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    /* transform: translateX(-120%); */
}
.our-solutions-card .links a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}
.our-solutions-card .links img {
    margin-left: 3px;
}
.our-solutions-card:hover,
.our-solutions-card:focus {
    text-decoration: none;
}
.our_solution_details {
    position: absolute;
    max-width: 230px;
    width: 100%;
    overflow: hidden;
    transition: max-height 1.5s;
    bottom: 90px;
    max-height: 43px;
}
.our_solution_details .links_info {
    margin-top: 20px;
    margin-bottom: 25px;
}
.our-solutions-cards .links p:nth-child(2) {
    margin-bottom: 12px;
}
.our-solutions-cards .links p:nth-child(3) {
    margin-bottom: 12px;
}
.our_solution_details:hover .links {
}
.our_solution_details:hover {
    max-height: 600px;

    /* transform: translateY(0); */
}
.our-solutions-card.active p.our-solutions-card-text,
.our-solutions-card:hover p.our-solutions-card-text,
.our-solutions-card:focus p.our-solutions-card-text {
    max-height: 400px;
}
.owl-item.active .our-solutions-card .links p,
.our-solutions-card:hover .links p,
.our-solutions-card:focus .links p {
    /* transform: translateX(0);
    -webkit-transition: all 0.5s ease-out 0.15s;
    transition: all 0.5s ease-out 0.15s; */
}
.owl-item.active .our-solutions-card .links p:last-child,
.our-solutions-card:hover .links p:last-child,
.our-solutions-card:focus .links p:last-child {
    /* transform: translateX(0);
    -webkit-transition: all 0.5s ease-out 0.25s;
    transition: all 0.5s ease-out 0.25s; */
}
.our-solutions .solution-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.our-solutions:hover .arrow {
    display: inline-block;
}
.our-solutions .solution-image.active {
    z-index: -1;
    opacity: 1;
}
.solution-image-mobile {
    display: none;
}
/* Our Solutions */

/* Quick Links */
.quick-links {
    padding: 80px 0;
    z-index: 9;
}
.quick-links h2 {
    margin-bottom: 80px;
}
.quick-links .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    grid-gap: 20px;
}
.quick-links-grid .quick-link-card {
    background: rgba(230, 231, 243, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    text-align: center;
    padding: 30px 20px 0;
}
.quick-links-grid .quick-link-card:hover {
    transform: scale(1.03);
}
.quick-links-grid .quick-link-card:hover {
    text-decoration: none;
}
.quick-link-card img {
    margin-bottom: 40px;
}
.quick-link-card p {
    font-size: 18px;
}
.quick-link-card.quick-link-view-all p {
    font-weight: 500;
}
/* Quick Links End */

/* tab section start */

.tab_features_sec {
    padding-bottom: 50px;
    margin-top: 10px;
}
.tab_features_sec .tab_feature_width {
    background: url("../images/break_bg.svg") no-repeat right 4% bottom 10%,
        rgba(230, 231, 243, 0.08);
    padding: 50px 0;
    width: 95%;
    margin: 0px auto;
    background-size: 350px;
}
.tab_features_sec .tab-content {
    padding-left: 45px;
    margin-top: 65px;
}
.tab_features_sec .tab-content .ipo_sub_text {
    margin-bottom: 20px;
    max-width: 1024px;
    width: 100%;
}
.upcoming_left .nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
    letter-spacing: 0.4px;
    border: none;
    padding-bottom: 18px;
}
.upcoming_left .nav-tabs .nav-link.active {
    color: #0090ff;
    background: -webkit-linear-gradient(left, #0090ff, #36dae9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 3px solid;
    border-image-slice: 1;
    /* border-image-source: linear-gradient(to right, #0090ff, #36dae9); */
}
.upcoming_left .nav-tabs {
    border-bottom: 1px solid #384455;
}
.upcoming_left .nav-tabs .nav-item {
    margin-bottom: 0px;
    padding-right: 30px;
    height: 45px;
}
/* tab section end */

/* inner pages */
.body-wrapper {
    background: #06152b;
}
.body-wrapper .container-fluid {
    margin-top: 90px;
    background-image: linear-gradient(
        to right,
        transparent 0%,
        transparent 50%,
        #162439 50%,
        #162439 100%
    );
}
.grad-left {
    padding: 50px 50px 100px 0;
}
.grad-left h1 {
    font-weight: 700;
    font-size: 38px;
    line-height: 45px;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #0090ff;
    margin-bottom: 30px;
}
.grad-left ul {
    margin-left: 20px;
}
.grad-left ul li {
    list-style-image: url("../images/tick-small.svg");
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: #ffffff;
    opacity: 0.9;
}
.grad-right {
    padding: 50px 0 100px 100px;
    background-color: #162439;
}
.input-captcha {
    margin-top: 30px;
}
.input-captcha img {
    width: 100%;
}
.investor-login-right {
    width: 425px;
    margin: auto;
}
.investor-login-right form .form-group {
    margin-bottom: 0px;
}
.investor-login-right .nav-tabs {
    border-bottom: 1px solid #384455;
}
.investor-login-right .nav-link {
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border: 0;
    border-bottom: 3px solid transparent;
}
.investor-login-right .nav-link:hover,
.investor-login-right .nav-link:focus {
    border: 0;
}
.investor-login-right .nav-link.active {
    color: #0090ff;
    background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 3px solid #0090ff;
}
.investor-login-right input,
.investor-login-right input:focus {
    background: #2b3441;
    border: 2px solid #384455;
    border-radius: 3px;
    font-size: 18px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
    padding: 30px 10px 30px 40px;
    margin-top: 30px;
    height: 64px;
    padding-left: 48px;
}
.investor-login-right input:focus {
    outline: none;
    box-shadow: none;
}
.investor-login-right .input-field {
    position: relative;
}
.investor-login-right .input-field img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.investor-login-right .new-pswd a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
}
.investor-login-right .new-pswd a img {
    position: unset;
    left: unset;
    transform: unset;
}
.investor-login-right input[type="checkbox"] {
    display: none;
}
.investor-login-right input[type="checkbox"] + label {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
}
.investor-login-right input[type="checkbox"] + label a {
    color: #0090ff;
}
.investor-login-right input[type="checkbox"] + label::before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #0090ff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    cursor: pointer;
    margin-right: 12px;
    border-radius: 2px;
}

.investor-login-right input[type="checkbox"]:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 11px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.tab-content a {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
    margin-top: 10px;
}
.investor-login-right button {
    width: 100%;
    padding: 15px;
    margin-top: 40px;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 2px;
    font-variant: small-caps;
    color: #ffffff;
}
.signin-using {
    text-align: center;
    margin-top: 30px;
}
.signin-using-heading p {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: #d9e1e7;
    margin: 0;
}
.signin-using-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.signin-using-heading .line {
    height: 1px;
    background: #384455;
    flex: 1;
    margin: 0 10px;
}
.signin-using a {
    margin: 0 10px;
}
.forgot-password {
    margin-top: 53px;
}
.forgot-password h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
    letter-spacing: 0.4px;
    padding-bottom: 20px;
    border-bottom: 1px solid #384455;
}
.forgot-password form {
    text-align: center;
}
.forgot-password button {
    margin-bottom: 20px;
}
.forgot-password a {
    color: #0090ff;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    background: linear-gradient(90deg, #0090ff 0%, #36dae9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: none;
}
.forgot-password-btn:hover {
    color: #0090ff;
}
.sign_in_btn.sign_up_btn {
    margin-bottom: 10vh;
}
.evault-loign {
    margin-top: 20px;
}
.evault-loign a {
    background: rgba(230, 231, 243, 0.07);
    border: 0.4px solid rgba(230, 231, 243, 0.3);
    border-radius: 2px;
    text-align: center;
    padding: 7px;
    width: 100%;
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 0.4px;
    /* text-decoration-line: underline; */
    color: #d9e1e7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.evault-loign a img {
    margin-right: 10px;
}
/* inner pages End */

/* Mobile CSS */
@media only screen and (max-width: 600px) {
    .max-width {
        padding-left: 20px;
        padding-right: 20px;
    }
    section h2,
    .why-kfintech-features h2 {
        font-size: 34px;
        line-height: 44px;
    }
    section p {
        font-size: 18px;
        line-height: 24px;
    }
    .dark-theme header {
        background: #000;
    }
    .dark-theme header nav.navbar {
        padding: 15px 20px;
    }
    .dark-theme header .nav_brand img {
        width: 200px;
    }
    .dark-theme header nav .navbar-nav {
        padding: 20px 0;
    }
    .dark-theme header div#collapsibleNavbar {
        max-width: 100%;
    }
    .dark-theme header li.nav-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .dark-theme header .dropdown-menu {
        margin-top: 20px;
    }
    .dark-theme header .dropdown-menu::after {
        top: 40px;
        right: unset;
        left: 15px;
    }
    .navbar-toggler:focus,
    .navbar-toggler:hover {
        outline: 0;
    }
    .dark-theme header .sub-menu {
        padding: 20px 0;
    }
    .dark-theme header .sub-menu ul {
        margin-top: 10px;
    }
    .dark-theme header .sub-menu ul li {
        width: 100%;
    }
    .dark-theme header.active .dropdown-outer {
        height: calc(100vh - 320px);
    }

    .scrollspy-why-kfin-left {
        display: none;
    }
    .why-kfintech-features.slide {
        height: unset;
        padding: 20px;
    }
    .why-kfintech-features .row {
        height: unset;
        padding: 40px 0;
    }
    .why-kfintech-features h2 {
        position: unset;
        left: unset;
        top: unset;
    }
    .why-kfintech-features h3 {
        font-size: 24px;
        line-height: 36px;
    }
    .we-serve {
        padding-top: 30px;
    }

    .footer_bottom .footer_copyright_mobile,
    .footer_links {
        display: block;
    }
    .footer_bottom .footer_copyright_desktop {
        display: none;
    }
    footer .max-width {
        display: block;
        padding: 30px 20px;
    }
    .footer_logo p,
    .footer_logo,
    .footer_links,
    .footer_links_info {
        width: 100%;
    }
    .footer_links {
        padding-left: 0;
    }
    .footer_bottom {
        padding: 0 20px 20px;
        display: block;
    }
    .footer_bottom ul,
    .footer_bottom ul h5 {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .footer_here p {
        font-size: 14px;
        text-align: right;
    }
    .banner_sec {
        background-image: none;
        background: #061224;
    }
    .karisma_banner_icon {
        margin-top: 50px;
    }
    .banner_left {
        padding-top: 35px;
        padding-bottom: 25px;
        background-image: url("../images/digix_banner.png");
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
    }
    .banner_right {
        width: 100%;
        padding-top: 8vh;
        padding-bottom: 5px;
    }
    .banner_left_info {
        padding-left: 0px;
    }
    .banner_right_btn:nth-last-child(1) {
        margin-left: 12px;
    }
    .banner_right_btn {
        padding: 20px 25px;
        font-size: 16px;
    }
    .banner_right h2 {
        font-weight: 700;
        font-size: 35px;
        line-height: 55px;
    }
    .mobile_order {
        order: 2;
    }
    .person_img_sec {
        display: none;
    }
    .content_div_sec {
        margin-top: 20px;
    }
    .content_div_left h2 {
        font-size: 34px;
        line-height: 44px;
    }
    .content_div_left p {
        width: 100%;
    }
    .content_div_sec .ipo_sub_text h2 {
        font-size: 15px;
        line-height: 30px;
    }
    .banner_client_sec {
        margin-top: 70px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .form_sec {
        margin-top: 45px;
    }
    .banner_text {
        padding-top: 65px;
    }
    .ipo_sub_text {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .ipo_sub_sec {
        margin-top: 18px;
        margin-bottom: 18px;
        display: block;
    }
    .content_div_right {
        margin-top: 30px;
    }
    .btn-link {
        text-align: left;
        width: 100%;
        font-size: 18px;
        line-height: 21px;
    }
    .ipo_carousel {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .client_item {
        margin-top: 10px;
    }

    .banner_client_sec h2 {
        font-size: 20px;
        line-height: 24px;
    }
    .banner_left h2 {
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 15px;
    }
    .return_div {
        margin-bottom: 30px;
    }
    .content_div_left {
        width: 100%;
    }
    .ipo_sub_div {
        margin-left: 0px;
    }
    .content_div_sec {
        padding: 50px 20px;
        padding-bottom: 100px;
    }
    .sign_in_btn {
        margin-bottom: 15px;
    }

    .feature_heding {
        font-size: 50px;
        line-height: 75px;
    }
    .feature_content {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
    }
    .feature_left_content.mobile_feature {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .feature_heding::after {
        right: 0px;
        z-index: -1;
    }
    .digix_web_left h2 {
        font-size: 49px;
        line-height: 58px;
        padding-top: 0px;
        text-align: center;
    }
    .digix_web_left {
        margin-top: 0px;
        text-align: center;
    }
    .feature_digix_width {
        padding-bottom: 30px;
        padding-top: 50px;
    }
    .digix_web_sec {
        /* padding-bottom: 70px; */
        padding-bottom: 0px;
        /* padding-top: 0px; */
    }
    .feature_sec {
        padding-bottom: 30px;
        padding-top: 75px;
    }
    .feature_left_content.mobile_feature.mobile_top {
        margin-top: 0px;
    }
    .digix_web_right.owl-carousel {
        margin-top: 30px;
    }
    .digix_web_right.owl-carousel .owl-dots {
        margin-top: 35px;
    }
    .terms_sec p::before {
        height: 68px;
    }
    .digix_web_right.owl-carousel .owl-dot {
        width: 9px;
    }
    /* organization section */
    .organization_heading {
        font-size: 45px;
        line-height: 60px;
        width: 100%;
        text-align: center;
    }
    .first_organization {
        margin-bottom: 50px;
    }
    .first_organization_text h2 {
        font-size: 20px;
    }
    .first_organization_text {
        padding-top: 80px;
    }
    /* organization section */

    /* our solutions */
    .our-solutions {
        width: 100%;
        overflow: hidden;
    }
    .our-solutions h2 {
        top: 30px;
    }
    .our-solutions-cards {
        overflow: unset;
        margin-bottom: -25px;
    }
    .our-solutions-total {
        width: 100%;
    }
    .our-solutions-total a {
        height: 450px;
        position: relative;
        z-index: 9;
        width: 90vw;
        border-right: 0;
        flex-direction: unset;
        justify-content: unset;
        padding: 0;
    }
    .our-solutions-total a div {
        width: 100%;
        height: 100%;
        padding: 20px;
        padding-bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .our-solutions .solution-image {
        display: none;
    }
    .our-solutions .solution-image-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        z-index: -1;
    }
    .our-solutions .empty-height,
    .our-solutions .arrow {
        display: none !important;
    }
    .our-solutions-total .our-solutions-card {
        width: 100%;
    }
    .our-solutions .owl-item.active .our-solutions-card .links {
        /* transform: translateX(0); */
    }
    .our-solutions .owl-item.active p.our-solutions-card-text {
        max-height: 400px;
    }
    .our-solutions .our-solutions-card .links img {
        display: inline;
        width: auto;
    }
    /* our solutions */

    /* quick links */
    .quick-links {
        padding: 30px 0;
        margin-top: 60px;
    }
    .quick-links h2 {
        margin-bottom: 40px;
    }
    .quick-links .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    }
    .quick_link_text {
        margin-top: 45px;
    }
    .quick_link_text h2 {
        margin-left: 16px;
    }
    /* quick links */

    /*tab section*/
    .tab_features_sec .tab-content {
        padding-left: 18px;
    }
    .upcoming_left .nav-tabs .nav-link {
        font-size: 20px;
        line-height: 5px;
    }
    .upcoming_left .nav-tabs .nav-item {
        padding-right: 5px;
    }
    .tab_features_sec .tab_feature_width {
        background-image: none;
    }
    .tab_features_sec .tab-content {
        margin-top: 40px;
    }

    /*tab section*/

    .body-wrapper .container-fluid {
        background: none;
    }
    .grad-left {
        padding: 50px 0px 50px 0;
        border-bottom: 1px solid #9d9ead;
    }
    .grad-right {
        background: none;
        padding: 50px 0;
    }
    .grad-right .investor-login-right {
        width: 100%;
    }
}
