@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html {
    font-size: 62.5%;
}

/* ***************** VARIABLES ITEMS START ****************** */
/* ***************** RE-USABLE ITEMS START ****************** */
a {
    text-decoration: none;
    font-size: 1.6rem;
    display: inline-block;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1;
}

span.required {
    color: #162f65;
}

p,
li {
    font-size: 1.4rem;
    line-height: 28px;
    color: #878787;
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

ol,
ul {
    padding-left: 0;
}

.container_custom {
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard_container {
    width: 100%;
    max-width: 1640px;
    min-height: 850px;
    padding: 40px 0 120px;
    margin: 0 auto;
}

.top {
    text-align: center;
    width: 100%;
    max-width: 580px;
    margin: 0 auto 10px;
}
.top h2 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.bg_style {
    background: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.btn_custom {
    padding: 10px 15px;
    border-radius: 10px;
    background: #162f65;
    border: 1px solid transparent;
    font-size: 1.6rem;
    font-weight: 400;
    box-shadow: 0 6px 45px rgba(253, 111, 86, 0.35);
    color: #fff;
    transition: 0.3s;
}
.btn_custom:hover {
    background-color: #fff;
    border: 1px solid #162f65;
    color: #162f65;
}

.button_plain {
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    column-gap: 10px;
    align-items: center;
    color: #162f65;
}
.button_plain i {
    transition: 0.3s;
}
.button_plain:hover {
    color: #162f65;
}
.button_plain:hover i {
    transform: translateX(5px);
}

.btn_custom_line {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #162f65;
    font-size: 1.6rem;
    font-weight: 400;
    color: #162f65;
    background: #fff;
    box-shadow: none;
    transition: 0.3s;
}
.btn_custom_line:hover {
    background-color: #162f65;
    border: 1px solid #162f65;
    color: #fff;
}

.bold {
    color: #020202;
    font-weight: 600;
}

.all_cards {
    width: 100%;
    display: grid;
    column-gap: 30px;
    row-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.card_custom {
    background-color: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    padding: 6px;
    border-radius: 16px;
    transition: 0.3s;
}
.card_custom .video {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    position: relative;
}
.card_custom .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.card_custom .video .fav_btn {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    border: 0;
    bottom: 10px;
    right: 10px;
    outline: none;
    transition: 0.3s;
    z-index: 1;
}
.card_custom .video .fav_btn i {
    color: #b5b5b5;
    transition: 0.3s;
}
.card_custom .video .fav_btn:hover {
    background-color: #162f65;
    color: #fff;
}
.card_custom .video .fav_btn:hover i {
    color: #fff;
}
.card_custom .video .fav_active {
    background-color: #162f65;
    color: #fff;
}
.card_custom .video .fav_active i {
    color: #fff;
}
.card_custom .card_body_info {
    padding: 20px 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card_custom .card_body_info .co_profile {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
}
.card_custom .card_body_info .co_profile .logo {
    width: 100%;
    height: 100%;
    max-height: 70px;
    max-width: 70px;
    border: 1px solid #ededed;
    border-radius: 16px;
}
.card_custom .card_body_info .co_profile .logo img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.card_custom .card_body_info .co_profile .info h3 {
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #020202;
    transition: 0.3s;
    margin-bottom: 5px;
}
.card_custom .card_body_info .co_profile .info p {
    font-size: 1.4rem;
    color: #878787;
    line-height: 1;
}
.card_custom .card_body_info .categoriy_city {
    width: 100%;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card_custom .card_body_info .categoriy_city div {
    display: flex;
    align-items: center;
    column-gap: 6px;
}
.card_custom .card_body_info .categoriy_city .category .icon {
    width: 19px;
    height: 16px;
}
.card_custom .card_body_info .categoriy_city .category .icon img {
    width: 100%;
    height: 100%;
}
.card_custom .card_body_info .categoriy_city .city .icon {
    width: 20px;
    height: 13px;
}
.card_custom .card_body_info .categoriy_city .city .icon img {
    width: 100%;
    height: 100%;
}
.card_custom .card_body_info .progress_bar {
    width: 100%;
    padding: 25px 0;
    border-bottom: 1px solid #ededed;
}
.card_custom .card_body_info .progress_bar .info {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.card_custom .card_body_info .progress_bar .info p {
    color: #878787;
}
.card_custom .card_body_info .progress_bar .progress {
    height: 20px;
    border-radius: 25px;
}
.card_custom .card_body_info .progress_bar .progress .progress-bar {
    border-radius: 25px;
    background-color: #162f65;
}
.card_custom .card_body_info .status_value {
    padding: 20px 10px 0;
    display: flex;
    align-items: center;
}
.card_custom .card_body_info .status_value .value:nth-child(2) {
    padding: 0 15px;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
}
.card_custom .card_body_info .status_value .value:nth-child(1) {
    padding-right: 15px;
}
.card_custom .card_body_info .status_value .value:nth-child(3) {
    padding-left: 15px;
}
.card_custom .card_body_info .status_value .value {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card_custom .card_body_info .status_value .value h4 {
    color: #020202;
    font-size: 1.8rem;
    font-weight: 600;
}
.card_custom .card_body_info .status_value .value .title {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 5px;
}
.card_custom .card_body_info .status_value .value .title p {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: normal;
}
.card_custom .card_body_info .status_value .value .title span {
    font-size: 14px;
}
.card_custom:hover {
    transform: translateY(-3px);
}
.card_custom:hover h3 {
    color: #162f65 !important;
}

.blog_cards .card_custom {
    width: 100%;
    cursor: pointer;
}
.blog_cards .card_custom .image {
    width: 100%;
    height: 220px;
    padding: 0px;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    border: 1px solid #ededed;
}
.blog_cards .card_custom .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_cards .card_custom .info {
    padding: 20px 14px;
}
.blog_cards .card_custom .info .user_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
.blog_cards .card_custom .info .user_date div {
    display: flex;
    column-gap: 5px;
    align-items: center;
}
.blog_cards .card_custom .info .user_date div .icon {
    width: 20px;
    height: 20px;
}
.blog_cards .card_custom .info .user_date div .icon img {
    width: 100%;
    height: 100%;
}
.blog_cards .card_custom .info .user_date div i {
    font-size: 16px;
    color: #878787;
}
.blog_cards .card_custom .info .title {
    margin-bottom: 20px;
}
.blog_cards .card_custom .info .title h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #020202;
    transition: 0.3s;
}
.blog_cards .card_custom .info .title p {
    font-size: 1.5rem;
    margin-top: 10px;
    line-height: 1.2;
}

#pills-tab {
    display: flex;
    column-gap: 15px;
}
#pills-tab button {
    padding: 16px 30px;
    border-radius: 12px;
    background-color: #ededed;
    position: relative;
    color: #020202;
    font-weight: 500;
}
#pills-tab button.active {
    color: #fff;
    background-color: #162f65;
    padding: 16px 40px !important;
    text-transform: uppercase;
    font-weight: 700;
}
#pills-tab button.active::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #162f65;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

.hero {
    width: 100%;
    height: 60vh;
    background: url(../assets/Images/feedback_banner_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero h2 {
    font-weight: 900;
    font-size: 4.6rem;
    line-height: 56px;
    color: #020202;
    margin-bottom: 10px;
}
.hero p {
    color: #020202;
}

.field_group {
    width: 100%;
    max-width: 360px;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.field_group .field {
    color: #020202;
    width: 100%;
    height: 60px;
    background-color: #f3f3f3;
    border: 1px solid #ededed;
    padding-left: 46px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.field_group .field:hover {
    border: 1px solid #162f65;
}
.field_group .field:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.field_group .field:focus + .input_icon {
    color: #162f65;
}
.field_group .select {
    width: 100%;
    height: 60px;
    background-color: #fff;
    border: 1px solid #ededed;
    padding-left: 46px;
    padding-right: 20px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
}
.field_group .select:hover {
    border: 1px solid #162f65;
}
.field_group .select:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.field_group .select:focus + .input_icon {
    color: #162f65;
}
.field_group .file {
    width: 100%;
    height: 60px;
    background-color: #fff;
    border: 2px dashed #ededed;
    padding-left: 46px;
    padding-right: 20px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    line-height: 60px;
}
.field_group .file:hover {
    border: 1px solid #162f65;
    line-height: 60px;
}
.field_group .file:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
    line-height: 60px;
}
.field_group .file:focus + .input_icon {
    color: #162f65;
}
.field_group .file::-webkit-file-upload-button {
    visibility: hidden;
    display: none;
}
.field_group .file::file-selector-button {
    visibility: hidden;
    display: none;
}
.field_group .big_field {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    color: #020202;
    padding: 15px 0 0 46px;
    font-size: 1.6rem;
    border: 1px solid #ededed;
    background: #f3f3f3;
    outline: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.field_group .big_field:hover {
    border: 1px solid #162f65;
}
.field_group .big_field:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.field_group .big_field:focus + .input_icon {
    color: #162f65;
}
.field_group .input_icon {
    position: absolute;
    left: 20px;
    top: 50px;
    font-size: 1.6rem;
    color: #878787;
}
.field_group .fa-comment.input_icon {
    position: absolute;
    left: 20px;
    top: 48px;
    font-size: 1.6rem;
    color: #878787;
}
.field_group .fa-eye,
.field_group .fa-eye-slash {
    position: absolute;
    right: 20px;
    top: 54px;
    font-size: 1.6rem;
    color: #878787;
}
.field_group label {
    padding: 0 0 4px 10px;
    font-size: 1.6rem;
}
.field_group .required {
    color: #162f65;
}

button {
    cursor: pointer;
}

.modal {
    z-index: 991055;
}

.global_modal .modal-dialog {
    max-width: 700px;
}
.global_modal .modal-content {
    border: 0;
    border-radius: 16px;
}
.global_modal .modal-header {
    padding: 15px 20px;
}
.global_modal .modal-header h5 {
    font-size: 22px;
    font-weight: 600;
    color: #020202;
}
.global_modal .modal-body {
    padding-left: 20px;
}
.global_modal .modal-footer {
    padding: 15px 20px;
    justify-content: center;
    gap: 10px;
}
.global_modal .modal-footer button {
    width: 100%;
    text-align: center;
    max-width: 135px;
}
.global_modal .modal-footer .btn_close {
    background: #b6b6b6;
    box-shadow: none;
}
.global_modal .modal-footer .btn_close:hover {
    background: #cccccc;
    border: 1px solid transparent;
    color: #fff;
}
.global_modal .modal-dialog-scrollable .modal-content {
    max-height: 75vh;
}

.data_change {
    text-align: center;
}
.data_change .modal-body {
    padding: 40px;
}
.data_change .modal-body h5 {
    font-size: 28px;
    font-weight: 600;
    color: #020202;
    line-height: 32px;
}
.data_change .modal-body p {
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0 15px;
}
.data_change .modal-body .btn_custom {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}
.data_change .modal-body .success_icon {
    width: 180px;
    height: 180px;
    margin: 0 auto;
}
.data_change .modal-body .success_icon svg {
    width: 100%;
    height: 100%;
}
.data_change .modal-body .success_icon.icon_warning {
    width: 123px;
    height: 123px;
    margin-bottom: 20px;
}
.data_change .modal-body .btn_group {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.data_change .modal-body .btn_group .btn_custom {
    width: 100%;
    max-width: 160px;
    margin: 0;
}
.data_change .modal-body .btn_group .btn_close {
    background: #b6b6b6;
    box-shadow: none;
}
.data_change .modal-body .btn_group .btn_close:hover {
    background: #cccccc;
    border: 1px solid transparent;
    color: #fff;
}

@keyframes scaleAnimation {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes drawCircle {
    0% {
        stroke-dashoffset: 300px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes drawCheck {
    0% {
        stroke-dashoffset: 35px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes drawLine {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}
#successAnimationCircle,
#failureAnimationCircle {
    stroke-dasharray: 300px 300px;
}

#successAnimation.animated,
#failureAnimation.animated {
    animation: 1s ease-out 0s 1 both scaleAnimation;
}
#successAnimation.animated #successAnimationCircle,
#successAnimation.animated #failureAnimationCircle,
#failureAnimation.animated #successAnimationCircle,
#failureAnimation.animated #failureAnimationCircle {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle;
}
#successAnimation.animated #successAnimationCheck,
#failureAnimation.animated #successAnimationCheck {
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck;
}
#successAnimation.animated .failureAnimationCheckLine,
#failureAnimation.animated .failureAnimationCheckLine {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1s cubic-bezier(1, 0.2, 0.1, 1) forwards;
}

#animate {
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border: 0;
    border-radius: 3px;
    bottom: 100px;
    left: 50%;
    outline: 0;
    padding: 10px 30px;
    position: absolute;
    transform: translateX(-50%);
}
#animate:active {
    background: rgba(255, 255, 255, 0.1);
}

svg.warning circle.solid {
    stroke: #ddd;
}

svg.warning circle.animation {
    transition: stroke-dashoffset 1s linear 260ms,
        stroke-dasharray 1s linear 260ms;
    stroke: #ffba00;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 2;
}

svg.warning.toggle circle.animation {
    transition: stroke-dashoffset 1s linear 0ms, stroke-dasharray 1s linear 0ms;
    stroke-dasharray: 200, 0;
    stroke-dashoffset: 0;
}

svg.warning path,
svg.warning line {
    stroke: #ffba00;
}

svg.warning path {
    transition: stroke-dashoffset 180ms linear 0ms;
    stroke-dashoffset: -50px;
    stroke-dasharray: 50px;
}

svg.warning line {
    transition: stroke-width 30ms linear 1s;
    stroke-width: 0;
}

svg.warning.toggle path {
    transition: stroke-dashoffset 180ms linear 280ms;
    stroke-dashoffset: 0;
}

svg.warning.toggle line {
    transition: stroke-width 30ms linear 260ms;
    stroke-width: 8;
}

.btn_active {
    color: #fd6e56 !important;
    border: 1px solid #162f65 !important;
}

.arrow_rotate {
    transform: rotateZ(180deg);
}

.event_banner {
    width: 100%;
    margin-top: 60px;
}
.event_banner a {
    width: 100%;
    display: inline-block;
    width: 100%;
}
.event_banner a img {
    width: 100%;
}

.new_dropdown_section {
    width: 100%;
    margin-top: 60px;
}
.new_dropdown_section .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.new_dropdown_section .content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #020202;
}
.new_dropdown_section .content .dropdown_menu {
    width: 100%;
    max-width: 100%;
}
.new_dropdown_section .content .dropdown_menu .field_group {
    max-width: 100%;
}

.blur_popup_page {
    min-height: 70vh;
    position: relative;
}
.blur_popup_page .blur_popup {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.blur_popup_page .blur_popup .modal-content {
    border-radius: 16px;
    border: 0;
    outline: 0;
}
.blur_popup_page .blur_popup .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
}
.blur_popup_page .blur_popup .modal-header h5 {
    font-size: 22px;
    font-weight: 600;
    color: #020202;
}
.blur_popup_page .blur_popup .modal-body {
    padding-left: 20px;
}
.blur_popup_page .blur_popup .modal-footer {
    padding: 15px 20px;
    justify-content: center;
    gap: 10px;
}
.blur_popup_page .blur_popup_overlay {
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5058823529);
    z-index: -1;
}

/* ***************** RE-USABLE ITEMS END ****************** */
@font-face {
    font-family: "icomoon";
    src: url("../assets/startup-icon-font/icomoon.eot?hklb1m");
    src: url("../assets/startup-icon-font/icomoon.eot?hklb1m#iefix")
            format("embedded-opentype"),
        url("../assets/startup-icon-font/icomoon.ttf?hklb1m")
            format("truetype"),
        url("../assets/startup-icon-font/icomoon.woff?hklb1m")
            format("woff"),
        url("../assets/startup-icon-font/icomoon.svg?hklb1m#icomoon")
            format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-investor-bag:before {
    content: "󩀁";
    color: #fd6e56;
}

.icon-target:before {
    content: "󩀑";
    color: #fd6e56;
}

.icon-valuation:before {
    content: "󩀡";
    color: #fd6e56;
}

/* ***************** NAVBAR SECTION START ****************** */
.login-reg {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.login-reg i {
    font-size: 1.6rem;
    padding-right: 5px;
    transition: 0.3s;
}
.login-reg a {
    display: flex;
    align-items: center;
    color: #020202;
    font-weight: 500;
    transition: 0.3s;
}
.login-reg a:hover {
    color: #162f65;
}
.login-reg a:hover > i {
    color: #162f65;
}

/* Hamburger */
.nav_burger {
    width: 30px;
    height: 30px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    margin-left: auto;
    position: fixed;
    right: 20px;
    z-index: 9999;
}

.logo_mobile {
    display: none;
}

.nav_burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background: #020202;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    margin: 0 auto;
}

.nav_burger span:nth-child(1) {
    top: 0;
}

.nav_burger span:nth-child(2),
.nav_burger span:nth-child(3) {
    top: 12px;
}

.nav_burger span:nth-child(4) {
    top: 24px;
}

.open span:nth-child(1) {
    top: 3vw;
    width: 0;
    left: 50%;
}

.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.open span:nth-child(4) {
    top: 3vw;
    width: 0;
    left: 50%;
}

/* Navigation */
nav #toggle-element {
    background-color: transparent;
    position: static;
    width: calc(100% - 60px);
    height: auto;
    z-index: 999;
    display: none;
    text-align: center;
    padding: 7px 0;
    max-width: 1170px;
    align-items: center;
}
nav #toggle-element a.logo {
    display: inline-block;
    height: 70px;
    margin-right: auto;
}
nav #toggle-element a.logo img {
    height: 100%;
}

nav #toggle-element li {
    display: block;
    position: relative;
}

nav #toggle-element li a {
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    color: #878787;
    padding: 20px 0;
    opacity: 1;
}
nav #toggle-element li a i {
    margin-left: 5px;
}

.header_bg {
    box-shadow: 0 6px 45px rgba(0, 0, 0, 0.05);
    height: 84px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: #fff;
}

header {
    height: 84px;
}
header .container_custom .mobile_notifications {
    display: none;
}
header .container_custom .notifications {
    position: relative;
    z-index: 9999;
    margin-left: 40px;
}
header .container_custom .notifications > .icon {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    transition: 0.3s;
    color: #020202;
}
header .container_custom .notifications > .icon i {
    font-size: 25px;
}
header .container_custom .notifications > .icon .notify_counter {
    position: absolute;
    top: -9px;
    right: -4px;
    background: #ff5d64;
    color: #fff;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 50%;
    border: 2px solid #fff;
}
header .container_custom .notifications > .icon .notify_counter p {
    line-height: 15px;
    color: #fff;
}
header .container_custom .notifications .notification_box {
    padding: 20px 15px;
    position: absolute;
    right: -40px;
    top: 0px;
    width: 100vw;
    max-width: 400px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    margin-top: 0px;
    transition: 0.2s;
    transform: scale(0.6);
    transform-origin: top;
}
header .container_custom .notifications .notification_box .notify_box_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ededed;
    margin-bottom: 5px;
    padding: 0 15px 15px;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_header
    .close {
    font-size: 18px;
    color: #878787;
    cursor: pointer;
    transition: 0.3s;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_header
    .close:hover {
    color: #162f65;
}
header .container_custom .notifications .notification_box .notify_box_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 5px;
    border-bottom: 1px solid #ededed;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification
    .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ffebe8;
    color: #fd6e56;
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    margin-right: 7px;
    transition: 0.3s;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification
    .name_info {
    margin-right: 30px;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification
    .name_info
    h4 {
    font-size: 15px;
    line-height: 22px;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification
    .name_info
    p {
    font-size: 14px;
    line-height: unset;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification
    .notify_date {
    text-align: right;
    margin-left: auto;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification:hover {
    background: #ffebe8;
    border-radius: 12px;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_body
    .notification:hover
    .icon {
    background: #fff;
}
header .container_custom .notifications .notification_box .notify_box_footer {
    padding: 0 15px;
    margin-top: 15px;
    text-align: center;
}
header .container_custom .notifications .notification_box .notify_box_footer a {
    color: #fd6e56;
    font-size: 1.6rem;
    font-weight: 500;
    transition: 0.3s;
}
header
    .container_custom
    .notifications
    .notification_box
    .notify_box_footer
    a:hover {
    color: #162f65;
    text-decoration: underline;
}

.notify_active {
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 40px !important;
    transform: scale(1) !important;
}

.notify_icon_active {
    color: #162f65 !important;
}

@media only screen and (min-width: 950px) {
    /* Hamburger */
    .nav_burger {
        display: none;
    }
    /* Main Navigation Desktop */
    nav #toggle-element {
        background: transparent;
        position: fixed;
        top: 0;
        width: 100%;
        height: auto;
        z-index: 999;
        display: flex;
        text-align: center;
    }
    nav #toggle-element li {
        display: inline;
    }
    /* Navigation small */
    nav #toggle-element li .a-small {
        background-color: transparent;
        display: inline-block;
        font-size: 1.6rem;
        padding: 20px 23px;
        border-bottom-style: none;
        opacity: 1;
        color: #878787;
    }
    /* Navigation big */
    nav #toggle-element li .a-big {
        background-color: transparent;
        display: inline-block;
        font-size: 1.6rem;
        padding: 20px 23px;
        border-bottom-style: none;
        transition: opacity 0.7s ease;
        color: #878787;
    }
    nav #toggle-element li a:hover {
        opacity: 1;
        color: #162f65;
    }
}
.submenu_custom {
    width: 420px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.submenu_custom a {
    display: flex !important;
    align-items: center;
    padding: 20px !important;
    border-radius: 16px;
}
.submenu_custom a .parent {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}
.submenu_custom a .parent .child_main {
    font-size: 1.8rem;
    font-weight: 500;
    color: #020202;
    display: flex;
    justify-content: space-between;
}
.submenu_custom a .parent .child_main .badge {
    background: #ff5d64;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    border-radius: 28px;
    padding: 5px 10px;
    height: fit-content;
    text-transform: uppercase;
}
.submenu_custom a .parent .child {
    font-size: 1.3rem;
    line-height: 1.6rem;
    font-weight: 400;
}
.submenu_custom a:hover {
    background: #162f65 !important;
    color: #fff;
}
.submenu_custom a:hover .parent {
    color: #fff !important;
}
.submenu_custom a:hover .parent .child_main {
    color: #fff !important;
}

header nav #toggle-element li:hover {
    color: #162f65;
}
header nav #toggle-element li:hover > .submenu_custom {
    opacity: 1 !important;
    visibility: visible !important;
}

.buttons_group {
    margin-left: 50px;
    display: flex;
    align-items: center;
    column-gap: 45px;
}
.buttons_group .nav_user {
    position: relative;
}
.buttons_group .nav_user .user_info {
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-align: left;
}
.buttons_group .nav_user .user_info .avatar {
    height: 55px;
    width: 55px;
    border-radius: 12px;
    border: 1px solid #ededed;
}
.buttons_group .nav_user .user_info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    object-position: top;
}
.buttons_group .nav_user .user_info .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}
.buttons_group .nav_user .user_info .info .name {
    font-size: 1.6rem;
    color: #020202;
    font-weight: 600;
    transition: 0.3s;
}
.buttons_group .nav_user .user_info .info .email {
    color: #878787;
    font-size: 1.4rem;
}
.buttons_group .nav_user .user_submenu {
    position: absolute;
    width: max-content;
    text-align: left;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}
.buttons_group .nav_user .user_submenu a {
    color: #020202;
    font-weight: 500;
    padding: 15px 0;
    transition: 0.3s;
}
.buttons_group .nav_user .user_submenu a i {
    margin-right: 10px;
    padding: 0;
}
.buttons_group .nav_user .user_submenu a:hover {
    color: #162f65;
}
.buttons_group .nav_user .user_submenu a.logout {
    padding-top: 30px;
    border-top: 1px solid #ededed;
    margin-top: 15px;
}
.buttons_group .nav_user:hover {
    text-align: left;
}
.buttons_group .nav_user:hover .name {
    color: #162f65 !important;
}
.buttons_group .nav_user:hover .user_submenu {
    visibility: visible;
    opacity: 1;
}

.scroll_off {
    height: calc(100vh - 80px);
    overflow: hidden;
}

.hide {
    display: none;
}

/* ***************** NAVBAR SECTION END ****************** */
/* ***************** HOME PAGE  SECTION START ****************** */
.home #main .sector .container_custom {
    overflow-x: hidden;
}

#main {
    width: 100%;
}
#main .slider {
    width: 100%;
}
#main .slider .content {
    display: flex;
    align-items: center;
    padding-top: 80px;
    justify-content: space-between;
}
#main .slider .content .info {
    width: 35%;
    max-width: 500px;
    min-width: 390px;
}
#main .slider .content .info h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 40px;
}
#main .slider .content .info p {
    margin: 20px 0 40px;
}
#main .slider .content .info .button_group {
    display: flex;
    column-gap: 60px;
    align-items: center;
}
#main .slider .content .info .button_group .btn_custom {
    width: 100%;
    max-width: 200px;
    text-align: center;
}
#main .slider .content .info .button_group .video {
    display: flex;
    align-items: center;
}
#main .slider .content .info .button_group .video span {
    padding-left: 6px;
    color: #878787;
    font-weight: 500;
    transition: 0.3s;
}
#main .slider .content .info .button_group .video i {
    color: #162f65;
    font-size: 2.5rem;
}
#main .slider .content .info .button_group .video:hover {
    color: #162f65;
}
#main .slider .content .info .button_group .video:hover span {
    color: #162f65;
}
#main .slider .content .image {
    width: 55%;
    max-width: 700px;
}
#main .slider .content .image img {
    width: 100%;
}
#main .status {
    margin-top: 80px;
    padding: 0;
    width: 100%;
}
#main .status .content .all_stats {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#main .status .content .all_stats .card:nth-child(1) .icon img,
#main .status .content .all_stats .card:nth-child(3) .icon img,
#main .status .content .all_stats .card:nth-child(5) .icon img {
    animation: jiggle ease-in-out 1200ms infinite;
}
#main .status .content .all_stats .card:nth-child(2) .icon img,
#main .status .content .all_stats .card:nth-child(4) .icon img,
#main .status .content .all_stats .card:nth-child(6) .icon img {
    animation: jiggle ease-in-out 1200ms 600ms infinite;
}
#main .status .content .all_stats .card {
    border: 0;
    width: 100%;
    max-width: 172px;
    min-width: 172px;
    padding: 20px;
    min-height: 180px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#main .status .content .all_stats .card .icon {
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    transition: 0.3s;
}
#main .status .content .all_stats .card .icon img {
    width: 100%;
    transition: 0.3s;
}
#main .status .content .all_stats .card .icon.big_width {
    width: 50px;
}
#main .status .content .all_stats .card p {
    font-size: 1.3rem;
    line-height: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}
#main .status .content .all_stats .card h3 {
    font-weight: 900;
    font-size: 32px;
    color: #020202;
    transition: 0.3s;
}
#main .status .content .all_stats .card:hover {
    transform: translateY(-20px) scale(1.2);
    position: relative;
    z-index: 2;
}
#main .status .content .all_stats .card:hover .icon {
    transform: scale(0.7);
}
#main .status .content .all_stats .card:hover .icon img {
    animation: 0;
}
#main .status .content .all_stats .card:hover p {
    font-size: 12px;
}
#main .status .content .all_stats .card:hover h3 {
    transform: scale(1.1);
}
@keyframes jiggle {
    0% {
        transform: none;
    }
    25% {
        transform: rotateZ(5deg) scale(1.05);
    }
    75% {
        transform: rotateZ(-5deg) scale(0.95);
    }
    100% {
        transform: none;
    }
}
#main .swiper-container {
    width: 100%;
    height: 100%;
    overflow: unset;
}
#main .feature-swiper {
    width: 100%;
    height: 100%;
}
#main .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
#main .just_launched {
    margin-top: 150px;
}
#main .just_launched .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#main .just_launched .content .all_card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    column-gap: 30px;
}
#main .just_launched .content .explore {
    width: 100%;
    max-width: 220px;
    text-align: center;
    margin-top: 30px;
}
#main .sector {
    width: 100%;
    padding-top: 150px;
}
#main .sector .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}
#main .sector .content .card_custom_feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}
#main .sector .content .card_custom_feature h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #020202;
    font-weight: 600;
    margin-top: 15px;
}
#main .sector .content .card_custom_feature:hover {
    border: 1px solid #162f65;
}
#main .sector .content .card_custom_feature .icon {
    width: 100px;
    aspect-ratio: 1;
}
#main .sector .content .card_custom_feature .icon img {
    width: 100%;
}
#main .insights {
    width: 100%;
    padding-bottom: 150px;
}
#main .insights .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#main .insights .content .all_cards {
    width: 100%;
    display: grid;
    column-gap: 30px;
    row-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    justify-content: center;
}
#main .insights .content .all_cards .card_custom {
    width: 100%;
    cursor: pointer;
}
#main .insights .content .all_cards .card_custom .image {
    width: 100%;
    height: 155px;
    padding: 0px;
    background: white;
    border-radius: 12px;
    border: 1px solid #ededed;
}
#main .insights .content .all_cards .card_custom .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#main .insights .content .all_cards .card_custom .info {
    padding: 20px 14px;
}
#main .insights .content .all_cards .card_custom .info .user_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
#main .insights .content .all_cards .card_custom .info .user_date div {
    display: flex;
    column-gap: 5px;
    align-items: center;
}
#main .insights .content .all_cards .card_custom .info .user_date div .icon {
    width: 20px;
    height: 20px;
}
#main
    .insights
    .content
    .all_cards
    .card_custom
    .info
    .user_date
    div
    .icon
    img {
    width: 100%;
    height: 100%;
}
#main .insights .content .all_cards .card_custom .info .user_date div i {
    font-size: 16px;
    color: #878787;
}
#main .insights .content .all_cards .card_custom .info .title {
    margin-bottom: 20px;
}
#main .insights .content .all_cards .card_custom .info .title h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #020202;
    transition: 0.3s;
}
#main .insights .content .all_cards .card_custom .info .title p {
    font-size: 1.5rem;
    margin-top: 10px;
    line-height: 1.2;
}
#main .terms-condition {
    width: 100%;
    background-color: #f8f8f8;
    padding: 80px 0;
}
#main .terms-condition p {
    color: #020202;
    line-height: 2;
    font-weight: 300;
}

/* ***************** HOME PAGE  SECTION END ****************** */
/* ***************** STARTUP PAGE SECTION START ****************** */
.startup nav .buttons_group {
    column-gap: 15px;
}
.startup #main .slider {
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: url(../assets/Images/Startup-slider.png),
        linear-gradient(#fff, #fff6f5);
    background-size: cover;
    background-repeat: no-repeat;
}
.startup #main .slider .info {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.startup #main .slider .info h2 {
    font-size: 4.6rem;
    font-weight: 800;
    line-height: 56px;
}
.startup #main .slider .info p {
    margin: 20px 0 40px;
}
.startup #main .slider .info .btn_group {
    display: flex;
    column-gap: 20px;
    align-items: center;
    row-gap: 30px;
    justify-content: center;
}
.startup #main .slider .info .btn_group .btn_custom {
    width: 100%;
    max-width: 200px;
    text-align: center;
}
.startup #main .services {
    width: 100%;
    padding: 150px 0;
}
.startup #main .services .content {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 60px;
}
.startup #main .services .content .info {
    width: 40%;
    max-width: 265px;
}
.startup #main .services .content .info h3 {
    font-size: 2.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 38px;
}
.startup #main .services .content .all_card {
    width: 100%;
    display: flex;
    row-gap: 30px;
    column-gap: 20px;
    flex-wrap: wrap;
}
.startup #main .services .content .all_card .card_custom {
    width: 100%;
    max-width: 262px;
    padding: 30px;
    position: relative;
}
.startup #main .services .content .all_card .card_custom .icon.one {
    width: 99px;
}
.startup #main .services .content .all_card .card_custom .icon.one img {
    width: 100%;
}
.startup #main .services .content .all_card .card_custom .icon.two {
    width: 67px;
}
.startup #main .services .content .all_card .card_custom .icon.two img {
    width: 100%;
}
.startup #main .services .content .all_card .card_custom .icon.three {
    width: 75px;
}
.startup #main .services .content .all_card .card_custom .icon.three img {
    width: 100%;
}
.startup #main .services .content .all_card .card_custom h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #020202;
    padding: 20px 0;
    transition: 0.3s;
}
.startup #main .services .content .all_card .card_custom p {
    font-size: 1.4rem;
    line-height: 24px;
}
.startup #main .services .content .all_card .card_custom a {
    display: inline-block;
    position: absolute;
    background: #fd6e56;
    padding: 10px 16px;
    color: #fff;
    top: 0;
    right: 0;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 12px;
}
.startup #main .blog {
    width: 100%;
    padding: 150px 0;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e9e9e9;
}
.startup #main .blog .content {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.startup #main .blog .content .all_card {
    display: flex;
    flex-wrap: wrap;
    row-gap: 26px;
    column-gap: 26px;
}
.startup #main .blog .content .all_card .card_custom {
    width: 50%;
    max-width: 273px;
    cursor: pointer;
}
.startup #main .blog .content .all_card .card_custom .image {
    width: 100%;
    height: 155px;
    border-radius: 12px;
}
.startup #main .blog .content .all_card .card_custom .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.startup #main .blog .content .all_card .card_custom h3,
.startup #main .blog .content .all_card .card_custom p,
.startup #main .blog .content .all_card .card_custom a {
    padding: 0 9px;
}
.startup #main .blog .content .all_card .card_custom h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 20px;
    margin-top: 15px;
}
.startup #main .blog .content .all_card .card_custom p {
    margin: 15px 0;
    font-size: 1.4rem;
}
.startup #main .blog .content .all_card .card_custom a {
    margin-bottom: 20px;
    display: inline-block;
}
.startup #main .blog .content .all_card .card_custom a i {
    margin-left: 5px;
}

/* ***************** STARTUP PAGE SECTION END ****************** */
/* ***************** STARTUP DETAILS PAGE SECTION START ****************** */
.startup_details .modal {
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    z-index: 99999999;
}
.startup_details .modal h3 {
    font-size: 2.4rem;
}
.startup_details .modal .modal-dialog {
    max-width: 900px;
}
.startup_details .modal .modal-dialog .modal-content {
    border-radius: 16px;
    border: 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.startup_details .modal .modal-dialog .modal-content::-webkit-scrollbar {
    display: none;
}
.startup_details .modal .modal-dialog .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.startup_details .modal .modal-dialog .modal-body {
    padding: 0 20px 20px;
}
.startup_details .modal .modal-dialog .modal-body table {
    width: 100%;
    min-width: 700px;
    font-size: 1.6rem;
    border-collapse: separate;
    border-spacing: 0 15px;
}
.startup_details .modal .modal-dialog .modal-body table thead th {
    padding: 0 15px;
}
.startup_details .modal .modal-dialog .modal-body table thead th:first-child {
    width: 100px;
}
.startup_details .modal .modal-dialog .modal-body table thead th:nth-child(2) {
    width: 90px;
}
.startup_details .modal .modal-dialog .modal-body table tbody tr td {
    padding: 10px 15px;
    background: rgba(219, 219, 219, 0.2);
}
.startup_details .modal .modal-dialog .modal-body table tbody tr td .image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #ededed;
}
.startup_details .modal .modal-dialog .modal-body table tbody tr td .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td
    .field_group
    .input_icon {
    top: 23px;
}
.startup_details .modal .modal-dialog .modal-body table tbody tr td .field {
    background-color: #e5e5e5;
    border: 1px solid transparent;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td
    .field:hover {
    border: 1px solid #162f65;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td
    .field:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td
    .field:focus
    + .input_icon {
    color: #162f65;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:first-child {
    width: 100px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(2) {
    width: 90px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4) {
    width: 50%;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4)
    .field_group {
    max-width: unset;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4)
    .input_preset {
    text-align: center;
    border-radius: 12px;
    background: #ededed;
    border: 1px solid #ececec;
    padding: 6px 15px 10px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4)
    .input_preset
    p {
    line-height: 20px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4)
    .input_preset
    .preset_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    margin-top: 10px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4)
    .input_preset
    .preset_btn
    .btn_custom_line {
    height: 45px;
    padding: 0;
    width: 80px;
    line-height: 45px;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4)
    .input_preset
    .preset_btn
    span {
    color: #878787;
    font-size: 1.4rem;
}
.startup_details
    .modal
    .modal-dialog
    .modal-body
    table
    tbody
    tr
    td:nth-child(4)
    p.notice {
    margin-top: 5px;
}
.startup_details .modal .modal-dialog .modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}
.startup_details #main .main_image {
    width: 100%;
}
.startup_details #main .main_image .image {
    width: 100%;
    height: 320px;
    border-radius: 0px;
}
.startup_details #main .main_image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.startup_details #main .main_details {
    width: 100%;
    padding: 8px 8px 0;
    background-color: #fff;
    box-shadow: 0px -6px 45px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border-radius: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.startup_details #main .main_details > .info {
    padding: 15px 22px 40px;
}
.startup_details #main .main_details > .info .company_details {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
}
.startup_details #main .main_details > .info .company_details .comp_info {
    width: 65%;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.startup_details #main .main_details > .info .company_details .comp_info .logo {
    position: absolute;
    top: -60px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ededed;
    padding: 3px;
}
.startup_details
    #main
    .main_details
    > .info
    .company_details
    .comp_info
    .logo
    img {
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}
.startup_details
    #main
    .main_details
    > .info
    .company_details
    .comp_info
    .info
    h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: 95px;
}
.startup_details
    #main
    .main_details
    > .info
    .company_details
    .comp_info
    .info
    p {
    font-size: 1.4rem;
    line-height: 22px;
}
.startup_details #main .main_details > .info .company_details .btn_custom_line {
    padding: 12px 34px;
}
.startup_details
    #main
    .main_details
    > .info
    .company_details
    .btn_custom_line
    i {
    margin-right: 5px;
}
.startup_details #main .main_details > .info .company_details .share {
    margin-left: 15px;
    padding: 12px 20px;
}
.startup_details #main .main_details > .info .company_details .share i {
    margin: 0;
}
.startup_details #main .main_details > .info .company_details .btn_group {
    display: flex;
}
.startup_details
    #main
    .main_details
    > .info
    .company_details
    .btn_group
    .share_group
    .share_link {
    padding: 10px;
    position: absolute;
    display: flex;
    column-gap: 10px;
    top: 0;
    right: 0;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.startup_details
    #main
    .main_details
    > .info
    .company_details
    .btn_group
    .share_group
    .share_link
    .social {
    width: 50px;
    height: 50px;
    padding: 0;
    line-height: 50px;
    text-align: center;
}
.startup_details #main .main_details > .info .progress_info {
    padding: 20px;
    border-radius: 16px;
    background: rgba(219, 219, 219, 0.2);
    margin: 40px 0;
}
.startup_details #main .main_details > .info .progress_info .days {
    margin-bottom: 10px;
    color: #020202;
    font-weight: 500;
    margin-left: 10px;
}
.startup_details #main .main_details > .info .progress_info .progress {
    height: 20px;
    border-radius: 25px;
}
.startup_details
    #main
    .main_details
    > .info
    .progress_info
    .progress
    .progress-bar {
    border-radius: 25px;
    background-color: #162f65;
}
.startup_details
    #main
    .main_details
    > .info
    .progress_info
    .progress_bottom_info {
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
}
.startup_details #main .main_details > .info .more_info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
    column-gap: 50px;
    padding-left: 20px;
}
.startup_details #main .main_details > .info .more_info > div {
    width: 100%;
}
.startup_details #main .main_details > .info .more_info > div h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #020202;
    margin-bottom: 20px;
}
.startup_details #main .main_details > .info .more_info > div table {
    width: 100%;
    font-size: 1.6rem;
    color: #878787;
}
.startup_details #main .main_details > .info .more_info > div table tr {
    margin: 20px 0;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    > div
    table
    tr
    td:nth-child(1) {
    width: 70%;
    padding: 10px 0;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    > div
    table
    tr
    td:nth-child(2) {
    color: #020202;
}
.startup_details #main .main_details > .info .more_info > div table a.fb,
.startup_details #main .main_details > .info .more_info > div table a.tw {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 6px;
    display: inline-block;
    color: #fff;
}
.startup_details #main .main_details > .info .more_info > div table a.fb {
    background: #2a75e5;
}
.startup_details #main .main_details > .info .more_info > div table a.tw {
    background: #4db4ef;
}
.startup_details #main .main_details > .info .more_info > div table td.web {
    color: #162f65 !important;
    font-weight: 700 !important;
}
.startup_details #main .main_details > .info .more_info > div table td.co_no {
    color: #f29a8b !important;
    font-weight: 500 !important;
}
.startup_details #main .main_details > .info .more_info > div ul {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    font-size: 1.6rem;
}
.startup_details #main .main_details > .info .more_info > div ul li {
    font-weight: 500;
}
.startup_details #main .main_details > .info .more_info > div ul li .icon,
.startup_details #main .main_details > .info .more_info > div ul li i {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    color: #162f65;
}
.startup_details #main .main_details > .info .more_info > div ul li .icon img,
.startup_details #main .main_details > .info .more_info > div ul li i img {
    width: 100%;
}
.startup_details #main .main_details > .info .more_info .startup_lock_content {
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    .startup_lock_content
    .icon {
    width: 69px;
    height: 69px;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    .startup_lock_content
    .icon
    img {
    width: 100%;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    .startup_lock_content
    .info
    h3 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 20px;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    .startup_lock_content
    .info
    p {
    margin-bottom: 30px;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    .startup_lock_content
    .info
    .btn_group {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
}
.startup_details
    #main
    .main_details
    > .info
    .more_info
    .startup_lock_content
    .info
    .btn_group
    button {
    width: 100%;
    max-width: 150px;
}
.startup_details #main .tabs_section {
    width: 100%;
    border-radius: 16px;
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 120px;
}
.startup_details #main .tabs_section .tabs_button {
    font-size: 1.6rem;
    margin-bottom: 30px;
}
.startup_details #main .tabs_section .tabs_button ul {
    display: flex;
    column-gap: 10px;
    row-gap: 30px;
}
.startup_details #main .tabs_section .tabs_button .nav-pills .nav-link {
    padding: 13px 20px;
    border-radius: 12px;
    background-color: #ededed;
    position: relative;
    color: #020202;
    font-weight: 500;
}
.startup_details #main .tabs_section .tabs_button .nav-pills .nav-link.active {
    text-transform: uppercase;
    font-weight: 700;
}
.startup_details #main .tabs_section .tabs_button .nav-pills .nav-link.active,
.startup_details #main .tabs_section .tabs_button .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #162f65;
    padding: 13px 20px !important;
}
.startup_details
    #main
    .tabs_section
    .tabs_button
    .nav-pills
    .nav-link.active::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #162f65;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
}
.startup_details #main .tabs_section .tab-content {
    width: 100%;
}
.startup_details #main .tabs_section .tab-content h3 {
    font-weight: bold;
    font-size: 2.4rem;
    color: #020202;
    margin-bottom: 20px;
}
.startup_details #main .tabs_section .tab-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
}
.startup_details #main .tabs_section .tab-content .dark_bold {
    color: #020202;
    font-weight: 500;
}
.startup_details #main .tabs_section .tab-content ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.startup_details #main .tabs_section .tab-content ul li {
    display: flex;
    column-gap: 10px;
}
.startup_details #main .tabs_section .tab-content li {
    font-size: 1.6rem;
    color: #878787;
}
.startup_details #main .tabs_section .tab-content .traction {
    margin-top: 40px;
}
.startup_details #main .tabs_section .tab-content #idea {
    width: 100%;
}
.startup_details #main .tabs_section .tab-content #idea .image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
}
.startup_details #main .tabs_section .tab-content #idea .image img {
    width: 100%;
    border-radius: 16px;
}
.startup_details #main .tabs_section .tab-content #idea .strategy {
    margin-top: 40px;
    font-size: 1.6rem;
    color: #878787;
}
.startup_details #main .tabs_section .tab-content #idea .strategy ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.startup_details #main .tabs_section .tab-content #market .group {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.startup_details #main .tabs_section .tab-content #market .market_cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.startup_details #main .tabs_section .tab-content #market .market_cards .card {
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    padding: 20px 30px;
    flex-wrap: wrap;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #market
    .market_cards
    .card
    .level_group {
    position: relative;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #market
    .market_cards
    .card
    .level_group
    p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #020202;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #market
    .market_cards
    .card
    .level_group
    p.level {
    font-weight: normal;
    font-size: 15px;
    line-height: 1;
    color: #878787;
    margin-bottom: 10px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #market
    .market_cards
    .card
    .level_group
    p.level
    i {
    margin-left: 5px;
    transition: 0.3s;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #market
    .market_cards
    .card
    .level_group
    p.level
    i:hover {
    color: #162f65;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #market
    .market_cards
    .card
    .action {
    width: 100%;
    max-width: 150px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #market
    .market_cards
    .card
    .action
    button {
    width: 100%;
    max-width: 150px;
}
.startup_details #main .tabs_section .tab-content .all_card {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.startup_details #main .tabs_section .tab-content #faq {
    font-size: 1.6rem;
}
.startup_details #main .tabs_section .tab-content #faq button {
    font-size: 1.6rem;
}
.startup_details #main .tabs_section .tab-content #faq .accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 20px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion
    .accordion-item {
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.06);
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion
    .accordion-button {
    padding: 20px 20px;
    color: #020202;
    font-weight: 500;
    border-radius: 12px;
    line-height: 1.5;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion
    .accordion-button
    .ques {
    padding: 6px 0;
    padding-right: 20px;
    font-size: 2rem;
    font-weight: 700;
    border-right: 1px solid #ededed;
    margin-right: 20px;
    color: #020202 !important;
}
.startup_details #main .tabs_section .tab-content #faq .accordion .active {
    border-bottom: 1px solid #ededed;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion
    .accordion-body {
    color: #878787;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion
    .accordion-body {
    display: flex;
    padding: 20px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion
    .accordion-body
    .ans {
    padding-right: 20px;
    margin-right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #020202 !important;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion-item:first-of-type
    .accordion-button {
    border-radius: 12px;
}
.startup_details #main .tabs_section .tab-content #faq .accordion-button:focus {
    z-index: 3;
    border-bottom: 1px solid #ededed !important;
    outline: 0;
    box-shadow: none;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    background: #fff;
    color: #162f65;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #faq
    .accordion-button:not(.collapsed) {
    color: #162f65;
    background-color: #fff;
    box-shadow: none;
}
.startup_details #main .tabs_section .tab-content #live-pitch table {
    width: 100%;
    table-layout: fixed;
}
.startup_details #main .tabs_section .tab-content #live-pitch .table_custom {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.06);
    font-size: 1.6rem;
}
.startup_details #main .tabs_section .tab-content #live-pitch .tbl-header {
    background-color: #162f65;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.startup_details #main .tabs_section .tab-content #live-pitch .tbl-content {
    height: 500px;
    overflow-x: auto;
    margin-top: 0px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 20px 20px;
}
.startup_details #main .tabs_section .tab-content #live-pitch th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 1.6rem;
    color: #fff;
}
.startup_details #main .tabs_section .tab-content #live-pitch th:nth-child(1) {
    padding-left: 40px;
}
.startup_details #main .tabs_section .tab-content #live-pitch th:nth-child(2) {
    padding-left: 15px;
    border-left: 1px solid #ededed;
}
.startup_details #main .tabs_section .tab-content #live-pitch th:nth-child(3) {
    padding-left: 15px;
    border-left: 1px solid #ededed;
}
.startup_details #main .tabs_section .tab-content #live-pitch td {
    padding: 0 20px;
    text-align: left;
    vertical-align: middle;
    font-size: 1.6rem;
    color: #000;
}
.startup_details #main .tabs_section .tab-content #live-pitch .data_table {
    border-collapse: separate;
    border-spacing: 0 15px;
    min-width: 750px;
}
.startup_details #main .tabs_section .tab-content #live-pitch .table_head {
    padding: 0 20px;
}
.startup_details #main .tabs_section .tab-content #live-pitch tbody {
    padding-top: 15px;
}
.startup_details #main .tabs_section .tab-content #live-pitch tbody tr {
    height: 70px;
    border-radius: 12px;
}
.startup_details #main .tabs_section .tab-content #live-pitch tbody tr td {
    background: #f7f7f7;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #live-pitch
    tbody
    tr
    td:first-child {
    border-left-style: solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #live-pitch
    tbody
    tr
    td:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    padding-left: 30px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #live-pitch
    tbody
    tr
    td:nth-child(2) {
    padding-left: 10px;
}
.startup_details #main .tabs_section .tab-content #live-pitch tbody .apply {
    padding: 9px 36px;
    border-radius: 8px;
    background: #48b94f;
    color: #fff;
    transition: 0.3s;
    width: 110px;
    text-align: center;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #live-pitch
    tbody
    .apply:hover {
    background: #318336;
}
.startup_details #main .tabs_section .tab-content #live-pitch tbody .applied {
    padding: 9px 0;
    border-radius: 8px;
    background: #162f65;
    color: #fff;
    transition: 0.3s;
    width: 110px;
    text-align: center;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #live-pitch
    tbody
    .applied:hover {
    background: #991b1f;
}
.startup_details #main .tabs_section .tab-content #team .card_custom,
.startup_details #main .tabs_section .tab-content #investor .card_custom,
.startup_details #main .tabs_section .tab-content #update .card_custom {
    padding: 30px 30px 35px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    align-items: center;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .user,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .user,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .user {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .user
    .image,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .user
    .image,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .user
    .image {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    border: 1px solid #ededed;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .user
    .image
    img,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .user
    .image
    img,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .user
    .image
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .user
    h5,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .user
    h5,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .user
    h5 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .user
    p,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .user
    p,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .user
    p {
    font-size: 1.5rem;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .user
    p
    i,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .user
    p
    i,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .user
    p
    i {
    margin-right: 5px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .social,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .social,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .social {
    display: flex;
    column-gap: 10px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .social
    a,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .social
    a,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .social
    a {
    width: 35px;
    height: 35px;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #fff;
    border-radius: 8px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .social
    a.fb,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .social
    a.fb,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .social
    a.fb {
    background-color: #2a75e5;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .social
    a.tw,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .social
    a.tw,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .social
    a.tw {
    background-color: #4db4ef;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .social
    a.ins,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .social
    a.ins,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .social
    a.ins {
    background-color: #fc6095;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .social
    a.in,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .social
    a.in,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .social
    a.in {
    background-color: #609efc;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .invest_amount
    p,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .invest_amount
    p,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .invest_amount
    p {
    font-size: 1.6rem;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_header
    .invest_amount
    p
    span.bold,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_header
    .invest_amount
    p
    span.bold,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_header
    .invest_amount
    p
    span.bold {
    font-size: 2rem;
}
.startup_details #main .tabs_section .tab-content #team .card_custom .card_body,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_body,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_body {
    display: flex;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 30px;
    justify-content: space-between;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #team
    .card_custom
    .card_body
    .title,
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_custom
    .card_body
    .title,
.startup_details
    #main
    .tabs_section
    .tab-content
    #update
    .card_custom
    .card_body
    .title {
    color: #020202;
    font-weight: 500;
}
.startup_details #main .tabs_section .tab-content #investor .card_header {
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.startup_details #main .tabs_section .tab-content #investor .card_body {
    flex-direction: column;
    row-gap: 20px !important;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .expand_details {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_btn {
    height: 50px;
    line-height: 50px;
    padding: 0px 20px;
    color: #878787;
    font-size: 1.6rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ededed;
    font-weight: 400;
    transition: 0.3s;
    width: 100%;
    max-width: 240px;
    text-align: center;
    margin: 0 auto;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_btn
    i {
    transform: 0.3s;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .startup_company {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .startup_company
    .image {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    border: 1px solid #ededed;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .startup_company
    .image
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .startup_company
    h5 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .startup_company
    p {
    font-size: 1.5rem;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .startup_company
    p
    i {
    margin-right: 5px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .invest_amount
    p {
    font-size: 1.6rem;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #investor
    .card_body
    .investor_profile_info
    .invest_amount
    p
    span {
    font-size: 1.8rem;
}
.startup_details #main .tabs_section .tab-content #documents .all_card {
    display: flex;
    column-gap: 40px;
    row-gap: 30px;
    flex-wrap: wrap;
    flex-direction: unset;
}
.startup_details #main .tabs_section .tab-content #documents .small_card {
    width: 45%;
    padding: 20px 30px;
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.06);
    align-items: center;
}
.startup_details #main .tabs_section .tab-content #documents .small_card .icon {
    margin-right: 10px;
}
.startup_details #main .tabs_section .tab-content #documents .small_card h2 {
    font-size: 1.6rem;
    font-weight: 600;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #documents
    .small_card
    .download_btn {
    margin-left: auto;
    cursor: pointer;
    color: #162f65;
    padding: 10px 20px;
    font-weight: 500;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #documents
    .small_card
    .download_btn
    i {
    color: #162f65;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    #documents
    .small_card
    a.no_file {
    border-radius: 8px;
    background: rgba(237, 28, 36, 0.1);
    border: 1px solid #162f65;
    font-size: 1.4rem;
    color: #162f65;
    padding: 10px 20px;
    cursor: not-allowed;
}
.startup_details #main .tabs_section .tab-content .startup_lock_content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 60px;
    row-gap: 40px;
    padding: 30px 0;
}
.startup_details #main .tabs_section .tab-content .startup_lock_content .image {
    width: 100%;
    max-width: 445px;
    margin: 0 !important;
}
.startup_details #main .tabs_section .tab-content .startup_lock_content .icon {
    width: 69px;
    height: 69px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    .startup_lock_content
    .icon
    img {
    width: 100%;
}
.startup_details #main .tabs_section .tab-content .startup_lock_content .info {
    width: 100%;
    max-width: 452px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    .startup_lock_content
    .info
    h3 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 20px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    .startup_lock_content
    .info
    p {
    margin-bottom: 30px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    .startup_lock_content
    .info
    .btn_group {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
}
.startup_details
    #main
    .tabs_section
    .tab-content
    .startup_lock_content
    .info
    .btn_group
    button {
    width: 100%;
    max-width: 150px;
}

.share_active {
    opacity: 1 !important;
    visibility: visible !important;
    top: -85px !important;
    transform: scale(1) !important;
}

/* ***************** STARTUP DETAILS PAGE SECTION END ****************** */
/* ***************** CONTACT US PAGE START ****************** */
.contact .hero {
    background-image: url(../assets/Images/contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 60vh;
}
.contact .hero .container_custom {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact .hero__title {
    font-size: 4.6rem;
    line-height: 56px;
    font-weight: 700;
}
.contact .hero__desc {
    font-size: 1.6rem;
    line-height: 28px;
    font-weight: 300;
    color: #020202;
}
.contact .contact-info {
    margin-top: -100px;
    padding: 0 0 70px 0;
}
.contact .contact-info .container_custom {
    display: flex;
    column-gap: 30px;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}
@media screen and (max-width: 950px) {
    .contact .contact-info .container_custom {
        flex-wrap: wrap;
    }
}
.contact .contact-info__box {
    width: 100%;
    max-width: 370px;
    height: 159px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
    align-items: center;
    box-shadow: 0 6px 45px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: #fff;
    padding: 0 39px;
}
.contact .contact-info__box-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #ffe2dd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact .contact-info__box-text {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 28px;
    color: #020202;
}
.contact .map {
    padding-bottom: 70px;
}
.contact .map__box {
    background-image: url(../assets/Images/Map.png);
    width: 100%;
    height: 481px;
    border-radius: 16px;
}
.contact .message {
    padding: 100px 0 100px 0;
    background-color: #f8f8f8;
}
.contact .message .container_custom {
    display: flex;
    column-gap: 92px;
    row-gap: 60px;
}
@media screen and (max-width: 950px) {
    .contact .message .container_custom {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.contact .message__customer {
    flex: 1;
}
.contact .message__customer .support_img {
    width: 230px;
    height: 240px;
}
.contact .message__customer .support_img img {
    width: 100%;
}
@media screen and (max-width: 950px) {
    .contact .message__customer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
.contact .message__customer .support_title {
    font-size: 42px;
    font-weight: 700;
    line-height: 49px;
    margin: 30px 0 16px 0;
}
.contact .message__form {
    width: 100%;
    max-width: 660px;
    height: 473px;
    display: flex;
    flex-direction: column;
    row-gap: 23px;
}
@media screen and (max-width: 450px) {
    .contact .message__form {
        height: auto;
    }
}
.contact .message__form__input-group {
    display: flex;
    column-gap: 30px;
    width: 100%;
}
@media screen and (max-width: 450px) {
    .contact .message__form__input-group {
        flex-direction: column;
        row-gap: 10px;
    }
}
.contact .message__form__input-group .first_name,
.contact .message__form__input-group .last_name,
.contact .message__form__input-group .email,
.contact .message__form__input-group .phone {
    width: 100%;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.contact .message__form__input-group input {
    width: 100%;
    height: 60px;
    background-color: #f3f3f3;
    border: 1px solid #dbdbdb;
    padding-left: 46px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    color: #878787;
    transition: 0.3s;
}
.contact .message__form__input-group input:hover {
    border: 1px solid #162f65;
}
.contact .message__form__input-group input:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.contact .message__form__input-group input:focus + .input_icon {
    color: #162f65;
}
.contact .message__form .input_icon {
    position: absolute;
    left: 20px;
    top: 45px;
    font-size: 1.6rem;
    color: #878787;
}
.contact .message__form__input-message {
    position: relative;
}
.contact .message__form__input-message textarea {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    color: #878787;
    padding: 15px 0 0 46px;
    font-size: 1.6rem;
    border: 1px solid #dbdbdb;
    background: #f3f3f3;
    outline: none;
    transition: 0.3s;
}
.contact .message__form__input-message textarea:hover {
    border: 1px solid #162f65;
}
.contact .message__form__input-message textarea:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.contact .message__form__input-message textarea:focus + .input_icon {
    color: #162f65;
}
.contact .message__form label {
    color: #020202;
    font-size: 1.6rem;
}
.contact .message__btn {
    width: 100%;
    max-width: 201px;
}

/* ***************** CONTACT US PAGE END ****************** */
/* ***************** CONTACT US PAGE START ****************** */
.dashboard #main .switch_user {
    margin-bottom: 10px;
    position: relative;
    z-index: 5;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Hide scrollbar for IE, Edge and Firefox */
}
.dashboard #main .switch_user .switch_btn {
    width: 100%;
    max-width: 210px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dbdbdb;
    padding: 10px;
    display: flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #212529;
    transition: 0.3s;
}
.dashboard #main .switch_user .user_list {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: absolute;
    border-radius: 16px;
    height: 360px;
    overflow-y: scroll;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
}
.dashboard #main .switch_user .user_list .user_info {
    width: 280px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.dashboard #main .switch_user .user_list .user_info:hover {
    background-color: #fff0ee;
}
.dashboard #main .switch_user .user_list .user_info:hover .name,
.dashboard #main .switch_user .user_list .user_info:hover .email {
    color: #162f65;
}
.dashboard #main .switch_user .user_list::-webkit-scrollbar {
    display: none;
}
.dashboard #main .switch_user .user_list {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.dashboard #main .switch_user .user_info {
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-align: left;
}
.dashboard #main .switch_user .user_info .avatar {
    height: 55px;
    width: 55px;
    border-radius: 12px;
    border: 1px solid #ededed;
}
.dashboard #main .switch_user .user_info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    object-position: top;
}
.dashboard #main .switch_user .user_info .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}
.dashboard #main .switch_user .user_info .info .name {
    font-size: 1.6rem;
    color: #020202;
    font-weight: 600;
    transition: 0.3s;
}
.dashboard #main .switch_user .user_info .info .email {
    color: #878787;
    font-size: 1.4rem;
    transition: 0.3s;
}
.dashboard #main .switch_user .current_user {
    position: relative;
    background: #162f65;
}
.dashboard #main .switch_user .current_user::after {
    content: "Active";
    color: #162f65;
    font-size: 13px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    padding: 2px 6px;
    border-radius: 25px;
}
.dashboard #main .switch_user .current_user .info .name,
.dashboard #main .switch_user .current_user .info .email {
    color: #fff !important;
}
.dashboard #main .switch_user .current_user:hover {
    background: #162f65 !important;
}
.dashboard #main .switch_user .current_user:hover .info .name,
.dashboard #main .switch_user .current_user:hover .info .email {
    color: #fff !important;
}
.dashboard #main .switch_user .switch_hover {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}
.dashboard #main .switch_user .switch_btn_hover {
    border: 1px solid #162f65;
    color: #162f65;
}
.dashboard #main .dashboard_container .content {
    width: 100%;
    height: 100%;
    min-height: 850px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 55px rgba(0, 0, 0, 0.06);
    padding: 20px;
    font-size: 1.6rem;
}
.dashboard #main .dashboard_container .content .img #layout-fluid_1_ {
    fill: blue;
}
.dashboard #main .dashboard_container .content #v-pills-tab {
    padding: 5px 20px 0 5px;
    row-gap: 15px;
}
.dashboard #main .dashboard_container .content #v-pills-tab .nav-link {
    text-align: left;
    color: #878787;
    width: 210px;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-weight: 500;
    transition: 0.3s;
}
.dashboard #main .dashboard_container .content #v-pills-tab .nav-link .d-icon {
    color: #dbdbdb;
    font-size: 20px;
    transition: 0.3s;
}
.dashboard #main .dashboard_container .content #v-pills-tab .nav-link.active {
    background: #fff0ee;
    color: #162f65;
}
.dashboard
    #main
    .dashboard_container
    .content
    #v-pills-tab
    .nav-link.active
    .d-icon {
    color: #162f65;
}
.dashboard #main .dashboard_container .content .d_content {
    width: calc(100% - 245px);
    min-height: 810px;
    border-radius: 16px;
    background: #f7f7f7;
    padding: 40px;
    height: 100%;
}
.dashboard #main .dashboard_container .content .d_content .top_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard #main .dashboard_container .content .d_content .top_section button {
    padding: 10px 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .top_section
    button
    i {
    font-size: 16px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content {
    width: 100%;
    box-shadow: 0 3px 45px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .btn_active {
    color: #fd6e56 !important;
    border: 1px solid #162f65 !important;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .all_status {
    margin-top: 0;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .all_status
    .item
    h2 {
    font-size: 5.2rem;
    font-weight: 800;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .all_status
    .item
    p {
    font-size: 1.4rem;
    font-weight: 500;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details {
    position: relative;
    width: 100%;
    top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    #details {
    width: 100%;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    .arrow_rotate {
    transform: rotateZ(180deg);
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    button {
    height: 36px;
    line-height: 36px;
    padding: 0px 20px;
    color: #878787;
    transition: 0.3s;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ededed;
    font-weight: 400;
    margin: -18px auto 0;
    column-gap: 0;
    transition: 0.3s;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    button
    .show {
    padding-right: 10px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    button
    i {
    transition: 0.3s;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    button:hover {
    color: #162f65;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    #details
    .table_scroll {
    height: 220px;
    overflow-y: scroll;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    #details
    table {
    border: none;
    width: 100%;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    #details
    table
    thead {
    display: none;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    #details
    table
    tr {
    border-bottom: 1px solid #ededed;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    .card {
    background-color: transparent;
    border: 0;
    padding: 20px 60px 40px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    .card
    tr
    td:first-child {
    padding-left: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .top_status_content
    .expand_details
    .card
    tr
    td:last-child {
    padding-right: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 40px;
    margin-top: 40px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .pie_chart {
    padding-bottom: 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .pie_chart
    h4 {
    padding: 30px 30px 20px;
    font-size: 1.6rem;
    font-weight: 600;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom {
    padding: 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 20px;
    text-align: center;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom {
    padding: 25px;
    cursor: pointer;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom
    h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #020202;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom
    p
    .circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #878787;
    margin-right: 5px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom
    p
    .one {
    background-color: #fdaf56;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom
    p
    .two {
    background-color: #59b85f;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom
    p
    .three {
    background-color: #56b5fd;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom
    p
    .four {
    background-color: #fc3535;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom:hover {
    transform: none;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #dashboard
    .second_section
    .status_custom
    .all_status
    .card_custom:hover
    h3 {
    color: #020202 !important;
}
.dashboard #main .dashboard_container .content .d_content .scroll_content {
    margin-top: 20px;
    overflow-y: scroll;
    height: 720px;
}
.dashboard #main .dashboard_container .content .d_content #star {
    width: 100%;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content {
    margin-top: 20px;
    overflow-y: scroll;
    height: 720px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards {
    display: grid;
    row-gap: 40px;
    grid-template-columns: repeat(1, 1fr);
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom {
    display: flex;
    align-items: center;
    padding: 15px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .video {
    width: 100%;
    max-width: 300px;
    height: 200px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info {
    padding: 0 30px;
    width: 100%;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ededed;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_top
    .co_profile {
    border: 0;
    padding: 0;
    width: 60%;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_top
    .btn_custom {
    color: #162f65;
    background-color: #fff;
    border: 1px solid #162f65;
    padding: 13px 40px;
    box-shadow: none;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_top
    .btn_custom
    i {
    margin-right: 10px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_top
    .btn_custom:hover {
    color: #fff;
    background: #162f65;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_bottom
    .categoriy_city {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 110px;
    padding: 0;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_bottom
    .progress_bar {
    max-width: 330px;
    padding: 0;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info
    .card_bottom
    .status_value {
    padding: 0;
    min-width: 300px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #transactions
    table
    thead
    tr
    th {
    text-align: left;
}
.dashboard #main .dashboard_container .content .d_content .table_scroll {
    width: 100%;
    margin-top: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__head
    thead {
    height: 60px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__head
    thead
    th {
    background-color: #162f65;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__head
    thead
    th:first-child {
    border-top-left-radius: 16px;
    padding-left: 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__head
    thead
    th:last-child {
    border-top-right-radius: 16px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__body {
    padding: 0 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__body
    tr
    td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__body
    tr
    td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__body
    .have_download
    .ssa {
    margin-bottom: 5px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__body
    .have_download
    a {
    color: #162f65;
    transition: 0.3s;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__body
    .have_download
    a
    i {
    margin-right: 5px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    .tableWrapper__body
    .have_download
    a:hover {
    color: #e25d45;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    th,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    td {
    padding: 0 15px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    tbody
    tr {
    box-shadow: none;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .table_scroll
    .tableWrapper
    tbody
    tr
    td {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #f7f7f7;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #portfolio
    .all-p-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #portfolio
    .all-p-cards
    .card-p-custom {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 16px;
    background: #eee;
    padding: 20px;
    align-items: center;
    column-gap: 30px;
    row-gap: 40px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #portfolio
    .all-p-cards
    .card-p-custom
    .user_info {
    display: flex;
    column-gap: 15px;
    align-items: center;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #portfolio
    .all-p-cards
    .card-p-custom
    .user_info
    h3 {
    font-weight: bold;
    font-size: 2.4rem;
    color: #020202;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #portfolio
    .all-p-cards
    .card-p-custom
    .bold {
    color: #020202;
    font-weight: 500;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #portfolio
    .all-p-cards
    .card-p-custom
    .logo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dbdbdb;
    padding: 15px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #portfolio
    .all-p-cards
    .card-p-custom
    .logo
    img {
    width: 100%;
    border-radius: 16px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .full_width_table
    th:first-child {
    width: 95px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #bank
    .full_width_table
    th:nth-child(3),
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #bank
    .full_width_table
    td:nth-child(3) {
    width: unset;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #bank
    .full_width_table
    th:nth-child(4),
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #bank
    .full_width_table
    td:nth-child(4) {
    width: 150px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #bank
    .full_width_table
    th:last-child {
    text-align: left;
    width: 220px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #bank
    .full_width_table
    td:last-child {
    width: 200px;
}
.dashboard #main .dashboard_container .content .d_content #bank .unsuccess {
    color: #f34141;
}
.dashboard #main .dashboard_container .content .d_content #bank .success {
    color: #6dbc75;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .full_width_table
    th:first-child {
    width: 175px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .full_width_table
    td:first-child {
    width: 155px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .full_width_table
    th:last-child {
    text-align: left;
    width: 320px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .full_width_table
    td:last-child {
    width: 300px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .full_width_table
    th:nth-child(2),
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .full_width_table
    td:nth-child(2) {
    width: unset;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .live_pitch_content {
    width: 100%;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .live_pitch_content
    #pills-tab {
    column-gap: 20px;
    row-gap: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .live_pitch_content
    .nav-link {
    padding: 16px 30px;
    border-radius: 12px;
    background-color: #ededed;
    position: relative;
    color: #020202;
    font-weight: 500;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #live
    .live_pitch_content
    .nav-link.active {
    color: #fff;
    background-color: #162f65;
    padding: 16px 40px !important;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .d_card,
.dashboard #main .dashboard_container .content .d_content .mis_upload .d_card {
    margin: 0;
}
.dashboard #main .dashboard_container .content .d_content .update_content form,
.dashboard #main .dashboard_container .content .d_content .mis_upload form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    form
    .row,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    form
    .row {
    row-gap: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    form
    .row
    .btn_custom,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    form
    .row
    .btn_custom {
    width: 100%;
    max-width: 280px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .d_field_group,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .d_field_group {
    max-width: unset;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .d_field_group
    .d_field_ta,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .d_field_group
    .d_field_ta {
    height: 120px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list {
    margin-top: 40px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list
    h3,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list
    h3 {
    margin-bottom: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list
    .all-p-cards,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list
    .all-p-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list
    .all-p-cards
    .card-p-custom,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list
    .all-p-cards
    .card-p-custom {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 6fr 46px;
    border-radius: 16px;
    padding: 20px;
    align-items: center;
    column-gap: 30px;
    background-color: #fff;
    row-gap: 40px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list
    .all-p-cards
    .card-p-custom
    .user_info,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list
    .all-p-cards
    .card-p-custom
    .user_info {
    display: flex;
    column-gap: 15px;
    align-items: center;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list
    .all-p-cards
    .card-p-custom
    .user_info
    h3,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list
    .all-p-cards
    .card-p-custom
    .user_info
    h3 {
    font-weight: 500;
    font-size: 1.8rem;
    color: #020202;
    margin: 0;
    line-height: 1.5;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list
    .all-p-cards
    .card-p-custom
    .logo,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list
    .all-p-cards
    .card-p-custom
    .logo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dbdbdb;
    padding: 15px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .update_content
    .update_list
    .all-p-cards
    .card-p-custom
    .logo
    img,
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .update_list
    .all-p-cards
    .card-p-custom
    .logo
    img {
    width: 100%;
    border-radius: 16px;
}
.dashboard #main .dashboard_container .content .d_content .mis_upload .row {
    align-items: center;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .row
    .btn_custom {
    margin-top: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .mis_list {
    margin-top: 40px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .mis_list
    h3 {
    margin-bottom: 20px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .mis_list
    .all-p-cards
    .card-p-custom {
    grid-template-columns: 70px 1fr 105px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .mis_list
    .all-p-cards
    .card-p-custom
    .bold {
    display: inline-block;
    min-width: 85px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .mis_list
    .all-p-cards
    .card-p-custom
    .actions {
    display: flex;
    justify-content: space-between;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .mis_list
    .all-p-cards
    .card-p-custom
    .actions
    .download {
    border-color: #6dbc75;
    color: #6dbc75;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload
    .mis_list
    .all-p-cards
    .card-p-custom
    .actions
    .download:hover {
    background: #6dbc75;
    color: #fff;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload_list
    .update_list {
    margin-top: 0;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    .mis_upload_list
    .update_list
    .all-p-cards
    .card-p-custom {
    grid-template-columns: 2fr 1fr 105px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #notifications
    .all-p-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #notifications
    .all-p-cards
    .card-p-custom {
    width: 100%;
    display: grid;
    grid-template-columns: 5fr 4fr 2fr 46px;
    border-radius: 16px;
    padding: 20px;
    align-items: center;
    column-gap: 30px;
    background-color: #fff;
    row-gap: 40px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #notifications
    .all-p-cards
    .card-p-custom
    .user_info {
    display: flex;
    column-gap: 15px;
    align-items: center;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #notifications
    .all-p-cards
    .card-p-custom
    .user_info
    h3 {
    font-weight: 500;
    font-size: 1.8rem;
    color: #020202;
    margin: 0;
    line-height: 1.5;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #notifications
    .all-p-cards
    .card-p-custom
    .logo {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    background: #ffebe8;
    color: #fd6e56;
    text-align: center;
    line-height: 70px;
    font-size: 25px;
}
.dashboard #main .dashboard_container .content .modal {
    z-index: 199055;
}
.dashboard #main .dashboard_container .content .d_modal {
    width: 100%;
}
.dashboard #main .dashboard_container .content .d_modal .modal-content {
    border-radius: 16px;
    padding: 15px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_modal
    .modal-content
    .modal-header {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 0;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_modal
    .modal-content
    .modal-header
    h5 {
    font-size: 1.6rem;
    color: #020202;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_modal
    .modal-content
    .modal-body
    .table_scroll {
    margin: 0;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_modal
    .modal-content
    .modal-body
    .table_scroll
    .tableWrapper__body {
    max-height: 500px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_modal
    .modal-content
    .modal-footer {
    justify-content: center;
    padding: 0;
    padding-top: 15px;
}
.dashboard
    #main
    .dashboard_container
    .content
    .d_modal
    .modal-content
    .modal-footer
    button {
    width: 100%;
    max-width: 160px;
}

@media (min-width: 576px) {
    .dashboard #main .dashboard_container .content .d_modal {
        max-width: 945px;
        margin: 1.75rem auto;
    }
}
#more {
    display: none;
}

#myBtn {
    background-color: transparent;
    border: 0;
    outline: none;
}

/* All icon for dashboard*/
@font-face {
    font-family: "icomoon";
    src: url("../assets/fonts/icomoon.eot?8d0of6");
    src: url("../assets/fonts/icomoon.eot?8d0of6#iefix")
            format("embedded-opentype"),
        url("../assets/fonts/icomoon.ttf?8d0of6") format("truetype"),
        url("../assets/fonts/icomoon.woff?8d0of6") format("woff"),
        url("../assets/fonts/icomoon.svg?8d0of6#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-bank:before {
    content: "\e900";
}

.icon-dashboard:before {
    content: "\e901";
}

.icon-live-pitch:before {
    content: "\e902";
}

.icon-portfolio:before {
    content: "\e903";
}

.icon-star:before {
    content: "\e904";
}

.icon-transactions:before {
    content: "\e905";
}

#dashboard
    .pie_chart
    .donut-chart-container
    svg
    .chart-group
    g:nth-child(1)
    path {
    fill: #fd6e56;
}

#dashboard
    .pie_chart
    .donut-chart-container
    svg
    .chart-group
    g:nth-child(2)
    path {
    fill: #c5446c;
}

#dashboard
    .pie_chart
    .donut-chart-container
    svg
    .chart-group
    g:nth-child(3)
    path {
    fill: #e89258;
}

/* All icon for dashboard*/
/* ***************** CONTACT US PAGE END ****************** */
/* ***************** Login Page PAGE START ****************** */
.login,
.startup_login,
.startup_register,
.register {
    width: 100%;
}
.login #main,
.startup_login #main,
.startup_register #main,
.register #main {
    width: 100%;
}
.login #main .login_section .content,
.startup_login #main .login_section .content,
.startup_register #main .login_section .content,
.register #main .login_section .content {
    margin: 40px 0 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.login #main .login_section .content .overlay_shape,
.startup_login #main .login_section .content .overlay_shape,
.startup_register #main .login_section .content .overlay_shape,
.register #main .login_section .content .overlay_shape {
    position: absolute;
    top: 0;
    right: -1px;
}
.login #main .login_section .content .overlay_shape img,
.startup_login #main .login_section .content .overlay_shape img,
.startup_register #main .login_section .content .overlay_shape img,
.register #main .login_section .content .overlay_shape img {
    width: 100%;
}
.login #main .login_section .content .overlay_shape_reg,
.startup_login #main .login_section .content .overlay_shape_reg,
.startup_register #main .login_section .content .overlay_shape_reg,
.register #main .login_section .content .overlay_shape_reg {
    position: absolute;
    top: 0;
    left: -1px;
}
.login #main .login_section .content .overlay_shape_reg img,
.startup_login #main .login_section .content .overlay_shape_reg img,
.startup_register #main .login_section .content .overlay_shape_reg img,
.register #main .login_section .content .overlay_shape_reg img {
    width: 100%;
}
.login #main .login_section .content .main_content,
.startup_login #main .login_section .content .main_content,
.startup_register #main .login_section .content .main_content,
.register #main .login_section .content .main_content {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 110px;
    padding-left: 80px;
    padding-bottom: 90px;
    column-gap: 75px;
    position: relative;
    z-index: 99;
}
.login #main .login_section .content .main_content .graphics,
.startup_login #main .login_section .content .main_content .graphics,
.startup_register #main .login_section .content .main_content .graphics,
.register #main .login_section .content .main_content .graphics {
    width: 40%;
}
.login #main .login_section .content .main_content .graphics img,
.startup_login #main .login_section .content .main_content .graphics img,
.startup_register #main .login_section .content .main_content .graphics img,
.register #main .login_section .content .main_content .graphics img {
    width: 100%;
}
.login #main .login_section .content .main_content .form,
.startup_login #main .login_section .content .main_content .form,
.startup_register #main .login_section .content .main_content .form,
.register #main .login_section .content .main_content .form {
    width: 50%;
}
.login #main .login_section .content .main_content .form .heading,
.startup_login #main .login_section .content .main_content .form .heading,
.startup_register #main .login_section .content .main_content .form .heading,
.register #main .login_section .content .main_content .form .heading {
    margin-bottom: 30px;
}
.login #main .login_section .content .main_content .form .heading h2,
.startup_login #main .login_section .content .main_content .form .heading h2,
.startup_register #main .login_section .content .main_content .form .heading h2,
.register #main .login_section .content .main_content .form .heading h2 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 5px;
}
.login #main .login_section .content .main_content .form .heading p,
.startup_login #main .login_section .content .main_content .form .heading p,
.startup_register #main .login_section .content .main_content .form .heading p,
.register #main .login_section .content .main_content .form .heading p {
    width: 100%;
    max-width: 380px;
}
.login #main .login_section .content .main_content .form form,
.startup_login #main .login_section .content .main_content .form form,
.startup_register #main .login_section .content .main_content .form form,
.register #main .login_section .content .main_content .form form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.login #main .login_section .content .main_content .form form .submit_forget,
.startup_login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget,
.startup_register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget,
.register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget {
    width: 100%;
    max-width: 360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom,
.startup_login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom,
.startup_register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom,
.register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom {
    width: 100%;
    max-width: 160px;
}
.login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_step,
.startup_login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_step,
.startup_register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_step,
.register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_step {
    width: 100%;
    max-width: 240px;
}
.login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_otp,
.startup_login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_otp,
.startup_register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_otp,
.register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .btn_custom.reg_otp {
    width: 100%;
    max-width: 176px;
    text-align: center;
}
.login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget,
.startup_login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget,
.startup_register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget,
.register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.6rem;
    color: #162f65;
}
.login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget:hover,
.startup_login
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget:hover,
.startup_register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget:hover,
.register
    #main
    .login_section
    .content
    .main_content
    .form
    form
    .submit_forget
    .forget:hover {
    color: #be1b20;
}
.login #main .login_section .content .register_bottom,
.startup_login #main .login_section .content .register_bottom,
.startup_register #main .login_section .content .register_bottom,
.register #main .login_section .content .register_bottom {
    font-size: 1.6rem;
    color: #878787;
    padding-bottom: 40px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    max-width: 352px;
}
.login #main .login_section .content .register_bottom p,
.startup_login #main .login_section .content .register_bottom p,
.startup_register #main .login_section .content .register_bottom p,
.register #main .login_section .content .register_bottom p {
    width: 100%;
    max-width: 176px;
}
.login #main .login_section .content .register_bottom a,
.startup_login #main .login_section .content .register_bottom a,
.startup_register #main .login_section .content .register_bottom a,
.register #main .login_section .content .register_bottom a {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.6rem;
    color: #162f65;
    width: fit-content;
}
.login #main .login_section .content .register_bottom.login_bottom,
.startup_login #main .login_section .content .register_bottom.login_bottom,
.startup_register #main .login_section .content .register_bottom.login_bottom,
.register #main .login_section .content .register_bottom.login_bottom {
    max-width: 264px;
}
.login #main .login_section .content .register_bottom.login_bottom p,
.startup_login #main .login_section .content .register_bottom.login_bottom p,
.startup_register #main .login_section .content .register_bottom.login_bottom p,
.register #main .login_section .content .register_bottom.login_bottom p {
    max-width: 186px;
}

/* *****************  Login Page PAGE END ****************** */
/* ***************** REGISTER PAGE START ****************** */
/* *****************  REGISTER PAGE END ****************** */
/* ***************** REGISTER PAGE START ****************** */
.register_steps,
.startup_register_step {
    width: 100%;
}
.register_steps #main,
.startup_register_step #main {
    width: 100%;
}
.register_steps #main .extra_section .content,
.startup_register_step #main .extra_section .content {
    margin: 40px 0 60px;
    padding: 40px;
}
.register_steps #main .extra_section .content .steps_option,
.startup_register_step #main .extra_section .content .steps_option {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #ededed;
    margin-bottom: 30px;
}
.register_steps #main .extra_section .content .steps_option .steps,
.startup_register_step #main .extra_section .content .steps_option .steps {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 14px;
    column-gap: 10px;
    color: #878787;
}
.register_steps #main .extra_section .content .steps_option .steps .icon,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .steps
    .icon {
    font-size: 35px;
    color: #878787;
}
.register_steps #main .extra_section .content .steps_option .steps h3,
.startup_register_step #main .extra_section .content .steps_option .steps h3 {
    font-size: 2rem;
    font-weight: bold;
}
.register_steps #main .extra_section .content .steps_option .steps p,
.startup_register_step #main .extra_section .content .steps_option .steps p {
    font-size: 1.4rem;
}
.register_steps #main .extra_section .content .steps_option .step_active,
.register_steps #main .extra_section .content .steps_option .step_completed,
.startup_register_step #main .extra_section .content .steps_option .step_active,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .step_completed {
    border-bottom: 6px solid #162f65;
}
.register_steps #main .extra_section .content .steps_option .step_active h3,
.register_steps #main .extra_section .content .steps_option .step_completed h3,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .step_active
    h3,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .step_completed
    h3 {
    color: #020202;
}
.register_steps #main .extra_section .content .steps_option .step_active span,
.register_steps
    #main
    .extra_section
    .content
    .steps_option
    .step_completed
    span,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .step_active
    span,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .step_completed
    span {
    color: #162f65;
}
.register_steps #main .extra_section .content .steps_content,
.startup_register_step #main .extra_section .content .steps_content {
    width: 100%;
}
.register_steps #main .extra_section .content .steps_content .heading,
.startup_register_step #main .extra_section .content .steps_content .heading {
    margin-bottom: 30px;
}
.register_steps #main .extra_section .content .steps_content .heading h2,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    .heading
    h2 {
    font-size: 3.2rem;
    font-weight: bold;
}
.register_steps #main .extra_section .content .steps_content form,
.startup_register_step #main .extra_section .content .steps_content form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register_steps #main .extra_section .content .steps_content form .all_field,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .field_group,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .field_group {
    max-width: 100%;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .group,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .group {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .group
    .field_group,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .group
    .field_group {
    max-width: 100%;
}
.register_steps #main .extra_section .content .steps_content form .btn_custom,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .btn_custom {
    width: 100%;
    max-width: 270px;
    margin-top: 20px;
}
.register_steps #main .extra_section .content .steps_content form .skip,
.startup_register_step #main .extra_section .content .steps_content form .skip {
    color: #878787;
    font-size: 1.6rem;
    transition: 0.3s;
    margin-top: 30px;
}
.register_steps #main .extra_section .content .steps_content form .skip:hover,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .skip:hover {
    color: #162f65;
}
.register_steps #main .extra_section .content .steps_content form .manual_kyc,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc {
    width: 100%;
    margin-top: 40px;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    h4,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    h4 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #020202;
    margin-bottom: 30px;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    .field_group,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    .field_group {
    max-width: 100%;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    .all_filed,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    .all_filed {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 30px;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    .verify,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .manual_kyc
    .verify {
    margin: 0;
    max-width: 180px;
}
.register_steps #main .extra_section .content .steps_content .success_content,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    .success_content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .image,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .image {
    width: 90%;
    max-width: 300px;
    text-align: center;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .image
    img,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .image
    img {
    width: 100%;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .info,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .info {
    width: 100%;
    margin-top: 40px;
    max-width: 768px;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .info
    h2,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .info
    h2 {
    font-size: 3.2rem;
    color: #020202;
    font-weight: bold;
    margin-bottom: 10px;
}
.register_steps
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .info
    .btn_custom,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    .success_content
    .info
    .btn_custom {
    width: 100%;
    max-width: 220px;
    margin-top: 30px;
}

@font-face {
    font-family: "icomoon";
    src: url("../assets/reg-fonts/icomoon.eot?qgwicy");
    src: url("../assets/reg-fonts/icomoon.eot?qgwicy#iefix")
            format("embedded-opentype"),
        url("../assets/reg-fonts/icomoon.ttf?qgwicy") format("truetype"),
        url("../assets/reg-fonts/icomoon.woff?qgwicy") format("woff"),
        url("../assets/reg-fonts/icomoon.svg?qgwicy#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-reg-complete:before {
    content: "\e900";
}

.icon-reg-investor:before {
    content: "\e901";
}

.icon-reg-kyc:before {
    content: "\e902";
}

/* *****************  REGISTER PAGE END ****************** */
/* ***************** REGISTER PAGE START ****************** */
.startup_register_step #main {
    width: 100%;
}
.startup_register_step #main .extra_section .content {
    margin: 40px 0 60px;
    padding: 40px;
}
.startup_register_step #main .extra_section .content .steps_option {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #ededed;
    margin-bottom: 30px;
}
.startup_register_step #main .extra_section .content .steps_content form {
    width: 100%;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .inside_group {
    display: flex;
    justify-content: space-between;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .group {
    row-gap: 20px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .first_member
    .member_head
    .icon {
    visibility: hidden;
    opacity: 0;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member {
    width: 100%;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 16px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .member_head {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .member_head
    h3 {
    font-size: 24px;
    font-weight: bold;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .member_head
    .icon {
    width: 45px;
    height: 45px;
    background: #162f65;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    border-radius: 12px;
    color: #fff;
    border: 1px solid #162f65;
    cursor: pointer;
    transition: 0.3s;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .member_head
    .icon:hover {
    background: #fff;
    border: 1px solid #162f65;
    color: #162f65;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .member_body {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .group {
    row-gap: 20px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .group
    .field_group {
    width: 100%;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .group
    .field_group
    label {
    width: 100%;
    padding-right: 10px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .group
    .field_group
    label
    .info {
    margin-left: auto;
    font-weight: normal;
    font-size: 14px;
    text-align: right;
    color: #878787;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .field,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .big_field {
    background: #ededed;
    border: 1px solid #dbdbdb;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .field:hover,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .big_field:hover {
    border: 1px solid #162f65;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .field:focus,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .big_field:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .field:focus
    + .input_icon,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    .member
    .big_field:focus
    + .input_icon {
    color: #162f65;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview2 {
    width: 200px;
    height: 200px;
    overflow: hidden;
    background-color: #fff;
    border: 2px dashed #ededed;
    border-radius: 12px;
    transition: 0.3s;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview:hover,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview2:hover {
    border: 2px solid #162f65;
    line-height: 60px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview:focus,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview2:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
    line-height: 60px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview:focus
    + .input_icon,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview2:focus
    + .input_icon {
    color: #162f65;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview
    .file,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview2
    .file {
    opacity: 0;
    height: 100%;
    padding: 0;
    width: 100%;
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview
    label,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview2
    label {
    padding: 0;
    width: max-content;
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
}
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview
    .input_icon,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_content
    form
    .all_field
    #image-preview2
    .input_icon {
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
}
.startup_register_step #main .extra_section .content .success_heading {
    text-align: center;
    margin-bottom: 30px;
}
.startup_register_step #main .extra_section .content .success_heading h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}
.startup_register_step #main .extra_section .content .success_body {
    width: 100%;
}
.startup_register_step
    #main
    .extra_section
    .content
    .success_body
    .success_img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .success_body
    .success_img
    img {
    width: 100%;
    object-fit: contain;
}
.startup_register_step #main .extra_section .content .success_body .info {
    width: 100%;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}
.startup_register_step #main .extra_section .content .success_body .info h3 {
    font-size: 3.2rem;
    color: #020202;
    font-weight: bold;
    margin-bottom: 10px;
}
.startup_register_step
    #main
    .extra_section
    .content
    .success_body
    .info
    .btn_custom {
    width: 100%;
    max-width: 220px;
    margin-top: 30px;
}

@font-face {
    font-family: "icomoon";
    src: url("../assets/startup-reg-icon/icomoon.eot?mgkdjo");
    src: url("../assets/startup-reg-icon/icomoon.eot?mgkdjo#iefix")
            format("embedded-opentype"),
        url("../assets/startup-reg-icon/icomoon.ttf") format("truetype"),
        url("../assets/startup-reg-icon/icomoon.woff?mgkdjo")
            format("woff"),
        url("../assets/startup-reg-icon/icomoon.svg?mgkdjo#icomoon")
            format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-social-link:before {
    content: "\e900";
    color: #878787;
}

.icon-team-details:before {
    content: "\e901";
}

.added {
    background: rgba(255, 255, 255, 0.5411764706);
    padding: 5px !important;
    border-radius: 6px;
}

.hide_icon {
    display: none;
}

.register_steps
    #main
    .extra_section
    .content
    .steps_option
    .step_active
    span::before,
.register_steps
    #main
    .extra_section
    .content
    .steps_option
    .step_completed
    span::before,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .step_active
    span::before,
.startup_register_step
    #main
    .extra_section
    .content
    .steps_option
    .step_completed
    span::before {
    color: #162f65;
}

/* *****************  REGISTER PAGE END ****************** */
/* ***************** RAISING PAGE START ****************** */
.rising_now_page .content .slider {
    width: 100%;
}
.rising_now_page .content .slider .item .banner {
    position: relative;
    height: 320px;
    width: 100%;
}
.rising_now_page .content .slider .item .banner .banner_img {
    width: 100%;
    height: 320px;
}
.rising_now_page .content .slider .item .banner .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rising_now_page .content .slider .item .banner .info {
    width: 100%;
    max-width: 470px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.rising_now_page .content .slider .item .banner .info .tag span {
    padding: 5px 15px;
    border-radius: 8px;
    background: #fac402;
    display: inline-block;
    font-size: 13px;
    line-height: 28px;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}
.rising_now_page .content .slider .item .banner .info .logo {
    width: 100%;
    height: 100%;
    max-height: 70px;
    max-width: 70px;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 15px;
}
.rising_now_page .content .slider .item .banner .info .logo img {
    width: 100%;
}
.rising_now_page .content .slider .item .banner .info h2 {
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 32px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}
.rising_now_page .content .slider .item .banner .info .btn_custom {
    background: #162f65;
}
.rising_now_page .content .slider .item .banner .info .btn_custom:hover {
    background: #b10b10;
    color: #fff;
    border: 1px solid transparent;
}
.rising_now_page .content .explore_startup {
    padding: 120px 0;
}
.rising_now_page .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.rising_now_page .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}
.rising_now_page .owl-theme .owl-dots .owl-dot.active span {
    background: #162f65;
}

/* *****************  RAISING PAGE END ****************** */
/* ***************** DYNAMIC TEXT SECTION START ****************** */
.text_style_demo {
    margin: 60px auto;
}
.text_style_demo .content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.text_dynamic h1 {
    font-size: 4.6rem;
    font-weight: 800;
    line-height: 56px;
}
.text_dynamic h2 {
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 56px;
}
.text_dynamic h3 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 46px;
}
.text_dynamic h4 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 38px;
}
.text_dynamic h5 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 34px;
}
.text_dynamic h6 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 28px;
}
.text_dynamic p {
    font-size: 1.6rem;
    line-height: 28px;
    color: #878787;
    margin: 0;
}
.text_dynamic strong {
    color: #020202;
}
.text_dynamic ol,
.text_dynamic ul {
    padding-left: 20px;
    color: #020202;
}
.text_dynamic ul i {
    font-size: 14px;
    color: #162f65;
    margin-right: 10px;
}
.text_dynamic ul li {
    text-align: left;
}
.text_dynamic ol li ol {
    list-style-type: lower-alpha;
}
.text_dynamic ol li ol li ol {
    list-style-type: lower-roman;
}
.text_dynamic img {
    border-radius: 16px;
    max-width: 100%;
    border: 1px solid #ededed;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

/* *****************  DYNAMIC TEXT SECTION END ****************** */
/* ***************** FEEDBACK PAGE START ****************** */
.feedback_page {
    width: 100%;
}
.feedback_page #main .feedback_form {
    width: 100%;
    margin: 120px 0;
}
.feedback_page #main .feedback_form .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feedback_page #main .feedback_form .content .form_section {
    width: 100%;
    max-width: 800px;
}
.feedback_page #main .feedback_form .content .form_section #pills-tab {
    column-gap: 30px;
    row-gap: 20px;
}
.feedback_page #main .feedback_form .content .form_section .nav-pills {
    flex-wrap: nowrap;
}
.feedback_page #main .feedback_form .content .form_section .nav-pills li {
    width: 100%;
    max-width: 385px;
}
.feedback_page #main .feedback_form .content .form_section .nav-pills button {
    width: 100%;
}
.feedback_page #main .feedback_form .content .form_section .tab-content {
    margin-top: 50px;
}
.feedback_page #main .feedback_form .content .form_section .tab-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feedback_page
    #main
    .feedback_form
    .content
    .form_section
    .tab-content
    form
    .group {
    width: 100%;
    display: flex;
    column-gap: 30px;
    row-gap: 20px;
    margin-bottom: 20px;
}
.feedback_page
    #main
    .feedback_form
    .content
    .form_section
    .tab-content
    form
    .field_group {
    max-width: 100%;
}
.feedback_page
    #main
    .feedback_form
    .content
    .form_section
    .tab-content
    form
    .btn_custom {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
}

/* *****************  FEEDBACK PAGE END ****************** */
/* ***************** BLOG PAGE START ****************** */
.blog_page {
    width: 100%;
}
.blog_page .content {
    margin: 60px 0 120px;
}
.blog_page .content .card_custom button {
    background: transparent;
    border: none;
    outline: none;
}

.blog_single_page .content {
    position: relative;
    width: 100%;
    margin-top: 50px;
}
.blog_single_page .content .main_image {
    width: 100%;
    max-width: 1170px;
    border-radius: 20px;
    background: #f9f9f9;
    border: 1px solid #dbdbdb;
    text-align: center;
    object-fit: cover;
}
.blog_single_page .content .main_image img {
    height: 100%;
    object-fit: cover;
}
.blog_single_page .content .info {
    position: relative;
    width: 100%;
    max-width: 980px;
    border-radius: 20px;
    margin: 0 auto;
    padding: 30px 30px 40px;
    background: #fff;
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.06);
    z-index: 1;
    top: -60px;
}
.blog_single_page .content .info .top_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ededed;
    column-gap: 50px;
    row-gap: 20px;
    flex-wrap: wrap;
}
.blog_single_page .content .info .top_head .date {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    column-gap: 5px;
    color: #878787;
}
.blog_single_page .content .info .top_head .social {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.blog_single_page .content .info .top_head .social p {
    color: #020202;
    font-weight: bold;
}
.blog_single_page .content .info .top_head .social div {
    display: flex;
    column-gap: 10px;
}
.blog_single_page .content .info .top_head .social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 40px;
    background: #162f65;
    border: 1px solid #162f65;
    color: #fff;
    transition: 0.3s;
}
.blog_single_page .content .info .top_head .social a:hover {
    color: #162f65;
    background: #fff;
    border: 1px solid #162f65;
}
.blog_single_page .content .info .info_body h3 {
    margin-bottom: 20px;
}
.blog_single_page .content .info .info_body h6 {
    margin-bottom: 15px;
}
.blog_single_page .content .info .info_body ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.blog_single_page .content .info .info_body .one,
.blog_single_page .content .info .info_body .two,
.blog_single_page .content .info .info_body .three {
    margin-bottom: 40px;
}

/* *****************  BLOG PAGE END ****************** */
/* ***************** STARTUP INVEST PAGE START ****************** */
/* ***************** VARIABLES ITEMS START ****************** */
.startup_invest {
    width: 100%;
}
.startup_invest .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
    column-gap: 50px;
    margin-top: 50px;
    margin-bottom: 100px;
}
.startup_invest .content .invest_left h3 {
    font-weight: bold;
    font-size: 3.2rem;
    color: #020202;
    margin-bottom: 50px;
}
.startup_invest .content .invest_left .input_form form .field_group {
    max-width: 100%;
}
.startup_invest .content .invest_left .input_form form .input_preset {
    text-align: center;
    border-radius: 12px;
    background: #f9f9f9;
    border: 1px solid #ececec;
    padding: 30px;
    margin-bottom: 20px;
}
.startup_invest
    .content
    .invest_left
    .input_form
    form
    .input_preset
    .preset_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    margin-top: 30px;
}
.startup_invest
    .content
    .invest_left
    .input_form
    form
    .input_preset
    .preset_btn
    .btn_custom_line {
    height: 51px;
    padding: 0;
    width: 110px;
    line-height: 51px;
}
.startup_invest
    .content
    .invest_left
    .input_form
    form
    .input_preset
    .preset_btn
    span {
    color: #878787;
    font-size: 1.6rem;
}
.startup_invest .content .invest_left .input_form form .invest_details {
    margin-top: 40px;
    margin-bottom: 30px;
}
.startup_invest .content .invest_left .input_form form .invest_details h4 {
    font-weight: bold;
    font-size: 2.4rem;
    color: #020202;
    margin-bottom: 20px;
}
.startup_invest .content .invest_left .input_form form .invest_details p {
    margin-bottom: 10px;
}
.startup_invest
    .content
    .invest_left
    .input_form
    form
    .invest_details
    p:last-child {
    margin-bottom: 0;
}
.startup_invest .content .invest_left .input_form form .check_agree {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 20px;
}
.startup_invest .content .invest_left .input_form form .check_agree label {
    font-size: 1.6rem;
    color: #020202;
}
.startup_invest .content .invest_left .input_form form .check_agree #agree {
    width: 19px;
    height: 19px;
    background: #fff;
}
.startup_invest .content .invest_right {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: #f3f3f3;
}
.startup_invest .content .invest_right .invest_card {
    background-color: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    padding: 6px;
    border-radius: 16px;
    transition: 0.3s;
}
.startup_invest .content .invest_right .invest_card .video {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    position: relative;
}
.startup_invest .content .invest_right .invest_card .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.startup_invest .content .invest_right .invest_card .video .fav_btn {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    border: 0;
    bottom: 10px;
    right: 10px;
    outline: none;
    transition: 0.3s;
    z-index: 1;
}
.startup_invest .content .invest_right .invest_card .video .fav_btn i {
    color: #b5b5b5;
    transition: 0.3s;
}
.startup_invest .content .invest_right .invest_card .video .fav_btn:hover {
    background-color: #162f65;
    color: #fff;
}
.startup_invest .content .invest_right .invest_card .video .fav_btn:hover i {
    color: #fff;
}
.startup_invest .content .invest_right .invest_card .video .fav_active {
    background-color: #162f65;
    color: #fff;
}
.startup_invest .content .invest_right .invest_card .video .fav_active i {
    color: #fff;
}
.startup_invest .content .invest_right .invest_card .card_body_info {
    padding: 20px 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.startup_invest
    .content
    .invest_right
    .invest_card
    .card_body_info
    .co_profile {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
}
.startup_invest
    .content
    .invest_right
    .invest_card
    .card_body_info
    .co_profile
    .logo {
    width: 100%;
    height: 100%;
    max-height: 70px;
    max-width: 70px;
    border: 1px solid #ededed;
    border-radius: 16px;
}
.startup_invest
    .content
    .invest_right
    .invest_card
    .card_body_info
    .co_profile
    .logo
    img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.startup_invest
    .content
    .invest_right
    .invest_card
    .card_body_info
    .co_profile
    .info
    h3 {
    font-size: 2.4rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #020202;
    transition: 0.3s;
    margin-bottom: 5px;
}
.startup_invest
    .content
    .invest_right
    .invest_card
    .card_body_info
    .co_profile
    .info
    p {
    font-size: 1.4rem;
    color: #878787;
    line-height: 1;
}
.startup_invest .content .invest_right .invest_card .card_body_info .more_info {
    margin-top: 20px;
}
.startup_invest
    .content
    .invest_right
    .invest_card
    .card_body_info
    .more_info
    p {
    margin-bottom: 10px;
}
.startup_invest
    .content
    .invest_right
    .invest_card
    .card_body_info
    .more_info
    p:last-child {
    margin-bottom: 0;
}
.startup_invest .content .invest_right .invest_card:hover h3 {
    color: #162f65 !important;
}

/* *****************  STARTUP INVEST PAGE END ****************** */
/* ***************** Secondary Market PAGE START ****************** */
.secondary_market_page .content .slider {
    width: 100%;
}
.secondary_market_page .content .slider .item .banner {
    position: relative;
    height: 320px;
    width: 100%;
}
.secondary_market_page .content .slider .item .banner .banner_img {
    width: 100%;
    height: 320px;
}
.secondary_market_page .content .slider .item .banner .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.secondary_market_page .content .slider .item .banner .info {
    width: 100%;
    max-width: 470px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.secondary_market_page .content .slider .item .banner .info .tag span {
    padding: 5px 15px;
    border-radius: 8px;
    background: #fac402;
    display: inline-block;
    font-size: 13px;
    line-height: 28px;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}
.secondary_market_page .content .slider .item .banner .info .logo {
    width: 100%;
    height: 100%;
    max-height: 70px;
    max-width: 70px;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 15px;
}
.secondary_market_page .content .slider .item .banner .info .logo img {
    width: 100%;
}
.secondary_market_page .content .slider .item .banner .info h2 {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 26px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}
.secondary_market_page .content .slider .item .banner .info .btn_custom {
    background: #162f65;
}
.secondary_market_page .content .slider .item .banner .info .btn_custom:hover {
    background: #b10b10;
    color: #fff;
    border: 1px solid transparent;
}
.secondary_market_page .content .business_list {
    width: 100%;
    padding: 40px 0px 60px;
}
.secondary_market_page .content .business_list .top_head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}
.secondary_market_page .content .business_list .top_head h2 {
    font-weight: bold;
    font-size: 32px;
    line-height: 49px;
    color: #020202;
}
.secondary_market_page .content .business_list .top_head .actions_item {
    display: flex;
    width: 50%;
}
.secondary_market_page .content .business_list .top_head .actions_item .search {
    margin-left: auto;
    width: 100%;
    max-width: 420px;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .search
    .field_group {
    max-width: 100%;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .search
    .field_group
    .input_icon {
    top: 24px;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type {
    display: flex;
    align-items: center;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type
    .small_list {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(237, 28, 36, 0.05);
    border: 1px solid rgba(237, 28, 36, 0.3);
    display: flex;
    gap: 3px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type
    .small_list
    .line {
    display: flex;
    gap: 3px;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type
    .small_list
    .line
    span {
    height: 5px;
    background: #162f65;
    border-radius: 6px;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type
    .small_list
    .line
    span:first-child {
    width: 8px;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type
    .small_list
    .line
    span:last-child {
    width: 18px;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type
    .big_list {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(237, 28, 36, 0.05);
    border: 1px solid rgba(237, 28, 36, 0.3);
    display: flex;
    gap: 3px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.secondary_market_page
    .content
    .business_list
    .top_head
    .actions_item
    .view_type
    .big_list
    .line
    span {
    display: flex;
    width: 29px;
    height: 11px;
    background: #162f65;
    border-radius: 3px;
}
.secondary_market_page .content .business_list .business_cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.secondary_market_page .content .business_list .business_cards .card {
    border: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 15px;
    align-items: center;
    gap: 20px;
}
.secondary_market_page .content .business_list .business_cards .card .brand_id {
    display: flex;
    align-items: center;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .brand_id
    .logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #ededed;
    margin-right: 15px;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .brand_id
    .logo
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .brand_id
    h3 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 26px;
    color: #020202;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .level_group {
    position: relative;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .level_group
    p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #020202;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .level_group
    p.level {
    font-weight: normal;
    font-size: 15px;
    line-height: 1;
    color: #878787;
    margin-bottom: 10px;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .level_group
    p.level
    i {
    margin-left: 5px;
    transition: 0.3s;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .level_group
    p.level
    i:hover {
    color: #162f65;
}
.secondary_market_page .content .business_list .business_cards .card .change {
    display: flex;
    align-items: flex-end;
}
.secondary_market_page
    .content
    .business_list
    .business_cards
    .card
    .change
    .graph {
    width: 85px;
    height: 42px;
    margin-left: 5px;
}
.secondary_market_page .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.secondary_market_page .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}
.secondary_market_page .owl-theme .owl-dots .owl-dot.active span {
    background: #162f65;
}

.info_popup {
    border-radius: 16px;
}
.info_popup h4 {
    font-size: 2rem !important;
    font-weight: bold !important;
    color: #020202 !important;
    margin-bottom: 15px !important;
}
.info_popup p {
    font-weight: normal !important;
    font-size: 1.5rem !important;
    line-height: 28px !important;
    color: #878787 !important;
}

/* *****************  Secondary Market PAGE END ****************** */
/* ***************** FAQ PAGE START ****************** */
/* ***************** VARIABLES ITEMS START ****************** */
.faq_page {
    width: 100%;
}
.faq_page .top_banner {
    width: 100%;
    height: 48vh;
}
.faq_page .top_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq_page .content {
    margin: 60px auto 80px;
    max-width: 740px;
}
.faq_page .content .faq_accordion {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.faq_page .content .faq_accordion button,
.faq_page .content .faq_accordion p {
    font-size: 1.6rem;
}
.faq_page .content .faq_accordion button {
    padding: 22px 30px;
    border: 1px solid #ededed;
    border-radius: 12px;
    color: #020202;
}
.faq_page .content .faq_accordion p {
    color: #878787;
}
.faq_page .content .faq_accordion button[aria-expanded="true"] {
    color: #162f65;
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq_page .content .faq_accordion button[aria-expanded="true"] .icon {
    color: #162f65;
}
.faq_page
    .content
    .faq_accordion
    button[aria-expanded="true"]
    + .faq_accordion-content {
    border: 1px solid #ededed;
    border-radius: 12px;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.faq_page .content .faq_accordion button:hover {
    cursor: pointer;
    color: #fd6e56;
}

/* *****************  FAQ PAGE END ****************** */
/* ***************** FAQ PAGE START ****************** */
.profile_settings_page {
    width: 100%;
}
.profile_settings_page #main .bg_style {
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
}
.profile_settings_page #main .bg_style h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
}
.profile_settings_page #main .bg_style #pills-tab {
    margin-bottom: 30px !important;
}
.profile_settings_page #main .bg_style .user_image {
    margin-top: 20px;
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.profile_settings_page #main .bg_style .user_image .image {
    width: 126px;
    height: 126px;
    border-radius: 12px;
    background-color: #e1e1e1;
}
.profile_settings_page #main .bg_style .user_image .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.profile_settings_page #main .bg_style .user_image .buttons_group {
    margin-left: 30px;
    column-gap: 20px;
}
.profile_settings_page #main .bg_style div h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.profile_settings_page #main .bg_style form > div {
    margin-bottom: 50px;
    font-size: 1.6rem;
}
.profile_settings_page #main .bg_style .d_field_group {
    max-width: unset;
}
.profile_settings_page #main .bg_style .visibility > div,
.profile_settings_page #main .bg_style .display_name > div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    align-items: flex-start;
    column-gap: 25px;
    row-gap: 25px;
}
.profile_settings_page #main .bg_style .visibility > div .radio_group,
.profile_settings_page #main .bg_style .display_name > div .radio_group {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.profile_settings_page #main .bg_style .visibility > div .radio_group input,
.profile_settings_page #main .bg_style .display_name > div .radio_group input {
    position: absolute;
    left: 15px;
}
.profile_settings_page
    #main
    .bg_style
    .visibility
    > div
    .radio_group
    input[type="radio"]:checked
    + label,
.profile_settings_page
    #main
    .bg_style
    .display_name
    > div
    .radio_group
    input[type="radio"]:checked
    + label {
    background-color: #ffefef;
    border: 1px solid #fd6e56;
}
.profile_settings_page #main .bg_style .visibility > div .radio_group label,
.profile_settings_page #main .bg_style .display_name > div .radio_group label {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px 20px 15px 40px;
    border: 1px solid #ededed;
    border-radius: 16px;
    font-weight: 500;
    cursor: pointer;
}
.profile_settings_page
    #main
    .bg_style
    .visibility
    > div
    .radio_group
    label
    .radio_desc,
.profile_settings_page
    #main
    .bg_style
    .display_name
    > div
    .radio_group
    label
    .radio_desc {
    font-size: 1.4rem;
    color: #878787;
    font-weight: normal;
}
.profile_settings_page #main .bg_style .legal_name > div,
.profile_settings_page #main .bg_style .more > div,
.profile_settings_page #main .bg_style .web-presence > div,
.profile_settings_page #main .bg_style .contact-information > div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    align-items: flex-start;
    column-gap: 25px;
    row-gap: 25px;
}
.profile_settings_page #main .bg_style .legal_name > div .d_field_ta,
.profile_settings_page #main .bg_style .more > div .d_field_ta,
.profile_settings_page #main .bg_style .web-presence > div .d_field_ta,
.profile_settings_page #main .bg_style .contact-information > div .d_field_ta {
    height: 130px;
}
.profile_settings_page #main .bg_style .policy_notice {
    text-align: center;
}
.profile_settings_page #main .bg_style .submit_btn {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.profile_settings_page #main .bg_style .more > div .d_field_group:last-child {
    -ms-grid-column: 1;
    grid-column-start: 1;
    grid-column-end: 3;
}

/* *****************  FAQ PAGE END ****************** */
/* ***************** FAQ PAGE START ****************** */
.system_page_nav .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 220px;
    padding: 15px 0;
    row-gap: 20px;
}
.system_page_nav .content a.brand {
    display: inline-block;
    height: 70px;
    margin-right: auto;
}
.system_page_nav .content a.brand img {
    height: 100%;
}
.system_page_nav .content .social_link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 12px;
}
.system_page_nav .content .social_link p {
    margin-right: 10px;
    color: #020202;
}
.system_page_nav .content .social_link .links {
    display: flex;
}
.system_page_nav .content .social_link a {
    height: 45px;
    width: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #162f65;
    color: #fff;
    border: 1px solid #162f65;
    transition: 0.3s;
}
.system_page_nav .content .social_link a:hover {
    background-color: #c9141a;
    color: #fff;
}
.system_page_nav .content .social_link a:not(:last-child) {
    margin-right: 12px;
}

.maintenance_page {
    width: 100%;
}
.maintenance_page .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    padding: 93px 0;
}
.maintenance_page .content .image {
    width: 100%;
    max-width: 590px;
}
.maintenance_page .content .image img {
    width: 100%;
}
.maintenance_page .content .info {
    width: 100%;
    max-width: 560px;
    margin-top: 30px;
    text-align: center;
}
.maintenance_page .content .info h2 {
    font-weight: bold;
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 10px;
}
.maintenance_page .content .info a {
    margin-top: 20px;
}

.maintenance_page_footer {
    width: 100%;
    bottom: 0;
}

/* *****************  FAQ PAGE END ****************** */
/* ***************** UI KIT Section START ****************** */
.d_card {
    background: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
}

.d_field_group {
    width: 100%;
    max-width: 360px;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.d_field_group label {
    padding: 0 0 3px 10px;
    font-size: 1.6rem;
}
.d_field_group .input_icon {
    position: absolute;
    left: 20px;
    top: 50px;
    font-size: 1.6rem;
    color: #878787;
}

.d_field {
    width: 100%;
    height: 60px;
    background-color: #f3f3f3;
    border: 1px solid #dbdbdb;
    padding-left: 20px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    color: #020202;
    transition: 0.3s;
}
.d_field:hover {
    border: 1px solid #162f65;
}
.d_field:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}

.d_field_ta {
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #dbdbdb;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    color: #020202;
    transition: 0.3s;
}
.d_field_ta:hover {
    border: 1px solid #162f65;
}
.d_field_ta:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}

.d_select {
    width: 100%;
    height: 60px;
    background-color: #fff;
    border: 1px solid #ededed;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
}
.d_select:hover {
    border: 1px solid #162f65;
}
.d_select:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
}
.d_select:focus + .input_icon {
    color: #162f65;
}

.d_file {
    width: 100%;
    height: 60px;
    background-color: #fff;
    border: 2px dashed #ededed;
    padding-left: 46px;
    padding-right: 20px;
    font-size: 1.6rem;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    line-height: 60px;
}
.d_file:hover {
    border: 1px solid #162f65;
    line-height: 60px;
}
.d_file:focus {
    border: 1px solid #162f65;
    box-shadow: 0 0 45px rgba(253, 111, 86, 0.2);
    background-color: #fff;
    line-height: 60px;
}
.d_file:focus + .input_icon {
    color: #162f65;
}
.d_file:focus + .input_icon {
    color: #162f65;
}

.d_file::-webkit-file-upload-button {
    visibility: hidden;
    display: none;
}

.d_file::file-selector-button {
    visibility: hidden;
    display: none;
}

.d_check {
    width: 20px;
    height: 20px;
}

.btn_outline {
    padding: 16px 30px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #162f65;
    font-size: 1.6rem;
    font-weight: 400;
    color: #162f65;
    transition: 0.3s;
}
.btn_outline:hover {
    background-color: #162f65;
    border: 1px solid #162f65;
    color: #fff;
}

/* *****************  UI KIT Section END ****************** */
/* ***************** FOOTER SECTION START ****************** */
footer {
    width: 100%;
    background: url(../assets/Images/footer_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 60px;
}
footer .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
footer .content .group .logo {
    height: 67px;
    width: auto;
    margin-bottom: 10px;
}
footer .content .group .logo img {
    height: 100%;
}
footer .content .group .desc {
    max-width: 280px;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;
}
footer .content .group .social {
    margin-top: 30px;
    color: #fff;
}
footer .content .group .social h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
footer .content .group .social .links {
    display: flex;
    column-gap: 12px;
}
footer .content .group .social a {
    height: 45px;
    width: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #162f65;
    color: #fff;
    border: 1px solid #162f65;
    transition: 0.3s;
}
footer .content .group .social a:hover {
    background-color: rgba(237, 28, 35, 0.3);
    color: #fff;
}
footer .content .group h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}
footer .content .group > .links {
    display: flex;
    flex-direction: column;
}
footer .content .group > .links a {
    font-size: 1.4rem;
    padding: 10px 0;
    color: #b7b7b7;
    transition: 0.3s;
}
footer .content .group > .links a:hover {
    color: #162f65;
}
footer .content .contact .contact_info {
    margin-top: 10px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
footer .content .contact .contact_info .info {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
footer .content .contact .contact_info .info .icon i {
    font-size: 18px;
    color: #162f65;
}
footer .content .contact .contact_info .info p {
    color: #fff;
    font-weight: 500;
}
footer .content .contact .contact_info .info.location {
    align-items: flex-start;
}
footer .content .contact .contact_info .info.location p {
    margin-top: -5px;
}

.bottom_copy {
    width: 100%;
    height: 70px;
    text-align: center;
    background: #131313;
}
.bottom_copy p {
    line-height: 70px;
    color: #fff;
    font-weight: 300;
}

/* ***************** FOOTER SECTION END ****************** */
/* ***************** RESPONSIVE SECTION START ****************** */
.dashboard
    #main
    .dashboard_container
    .content
    .d_content
    #star
    .portfolio_content
    .all_cards
    .card_custom
    .card_body_info {
    align-items: flex-start;
}

@media screen and (max-width: 1690px) {
    .dashboard_container {
        padding: 40px 20px 120px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_bottom {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_bottom
        .status_value {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #portfolio
        .all-p-cards
        .card-p-custom {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .update_content
        .update_list
        .all-p-cards
        .card-p-custom {
        grid-template-columns: 3fr 6fr 46px;
    }
}
@media screen and (max-width: 1400px) {
    .system_page_nav .content {
        padding-bottom: 0;
    }
    .maintenance_page .content {
        padding: 60px 0;
    }
    .maintenance_page .content .info h2 {
        font-size: 32px;
        line-height: 36px;
    }
    .maintenance_page .content .image {
        max-width: 590px;
        height: 360px;
    }
    .maintenance_page .content .image img {
        height: 100%;
        object-fit: contain;
    }
}
@media screen and (max-width: 1360px) {
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_top {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }
}
@media screen and (max-width: 1299px) {
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .second_section
        .pie_chart
        #myChart {
        padding: 0;
        width: 100% !important;
    }
    header .container_custom {
        padding: 0;
    }
    nav #toggle-element {
        padding: 10px 20px;
    }
    .apply_rise.btn_custom {
        display: none;
    }
    #main .just_launched .content .all_card {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 30px;
    }
    .startup_details #main .main_details > .info .more_info > div {
        width: 100%;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom {
        flex-direction: column;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .video {
        width: 100%;
        height: 250px;
        max-width: 100%;
        max-height: 100%;
        margin-bottom: 30px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info {
        padding: 0 10px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_top {
        flex-direction: row;
    }
    .system_page_nav .container_custom {
        padding: 0 20px;
    }
}
@media screen and (max-width: 1200px) {
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .table_scroll
        .tableWrapper
        .tableWrapper__body
        tr
        td:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .table_scroll
        .tableWrapper
        .tableWrapper__body
        tr
        td:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .table_scroll
        table.responsiveTableLayout
        td[data-title]::before {
        content: attr(data-title);
        font-weight: bold;
        display: inline-block;
        content: attr(data-title);
        float: left;
        color: #162f65;
        margin-right: 0.5em;
        font-size: 0.95em;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .table_scroll
        .tableWrapper
        .tableWrapper__body
        .have_download
        .ssa {
        margin-right: 15px;
    }
    .submenu_custom {
        left: 50%;
        transform: translateX(-50%);
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #live
        .full_width_table
        td:first-child,
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #live
        .full_width_table
        td:last-child,
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #bank
        .full_width_table
        th:nth-child(4),
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #bank
        .full_width_table
        td:nth-child(4),
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #bank
        .full_width_table
        td:last-child,
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .top_status_content
        .expand_details
        .card
        tr
        td:first-child,
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .top_status_content
        .expand_details
        .card
        tr
        td:nth-child(2) {
        width: 100%;
    }
    header .container_custom .notifications .notification_box {
        right: 0;
    }
}
@media screen and (max-width: 1050px) {
    .card_custom .card_body_info .status_value {
        padding: 20px 0px 20px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .second_section {
        grid-template-columns: repeat(1, 1fr);
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .second_section
        .pie_chart {
        padding: 20px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .second_section
        .pie_chart
        h4 {
        padding: 0;
    }
    .login #main .login_section .content .main_content .graphics,
    .startup_login #main .login_section .content .main_content .graphics,
    .startup_register #main .login_section .content .main_content .graphics,
    .register #main .login_section .content .main_content .graphics {
        width: 45%;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .update_content
        .update_list
        .all-p-cards
        .card-p-custom {
        -ms-grid-columns: 3fr 6fr 46px;
        grid-template-columns: 5fr 6fr 46px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #notifications
        .all-p-cards
        .card-p-custom {
        grid-template-columns: 5fr 3fr;
        row-gap: 20px;
    }
    #main .insights .content .all_cards {
        grid-template-columns: repeat(3, 1fr);
    }
    #main .status .content .all_stats {
        padding: 0 50px;
        display: grid;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        grid-template-columns: 1fr 1fr 1fr;
    }
    #main .status .content .all_stats .card {
        max-width: 100%;
    }
}
@media screen and (max-width: 1000px) {
    #main .just_launched .content .all_card,
    #main .insights .content .all_cards,
    .all_cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .card_custom .card_body_info .status_value {
        padding: 20px 0px 0px;
    }
    .maintenance_page .content .image {
        max-width: 590px;
        height: unset;
    }
    .maintenance_page .content .image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .secondary_market_page .content .business_list .business_cards .card {
        grid-template-columns: repeat(3, 1fr);
        padding: 30px;
        row-gap: 30px;
    }
}
@media screen and (max-width: 949px) {
    #pills-tab {
        row-gap: 25px;
    }
    .container_custom {
        padding: 0 20px;
    }
    .dashboard_container {
        padding: 40px 20px 120px;
    }
    nav #toggle-element {
        padding: 0;
    }
    .startup #main .blog .content .all_card .card_custom {
        width: 48%;
        max-width: unset;
    }
    .startup #main .blog .content .all_card .card_custom .image {
        height: 230px;
    }
    .startup #main .services .content .all_card .card_custom {
        width: 48%;
        max-width: unset;
        min-width: unset;
    }
    nav {
        position: absolute;
        z-index: 9;
        top: 80px;
        background: #fff;
        width: 100%;
        left: 0;
        right: 0;
    }
    .submenu_custom {
        width: 100%;
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        background: transparent;
        padding: 0;
        transform: unset;
    }
    header {
        width: 100%;
        height: 80px;
        padding: 25px 20px;
    }
    .header_bg {
        height: 80px;
        z-index: 999;
    }
    .logo_mobile {
        display: block;
    }
    a.logo_mobile {
        display: inline-block;
        height: 60px;
        margin-right: auto;
        position: fixed;
        top: 10px;
        left: 20px;
        z-index: 9999;
    }
    a.logo_mobile img {
        height: 100%;
    }
    nav #toggle-element a.logo {
        display: none;
    }
    .a_hide {
        display: none !important;
    }
    .buttons_group {
        flex-direction: column;
        row-gap: 30px;
        padding-bottom: 30px;
        margin: 0;
        align-items: flex-start;
        padding: 0 20px;
        padding-bottom: 0px;
        margin-top: 30px;
    }
    .buttons_group .nav_user .user_submenu {
        position: static;
        visibility: visible;
        opacity: 1;
    }
    .buttons_group .nav_user .user_submenu.bg_style {
        background: #fff;
        -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
        box-shadow: none;
        border-radius: unset;
        width: 100%;
    }
    .buttons_group .nav_user {
        width: 100%;
    }
    .buttons_group .nav_user .user_info {
        width: 100%;
    }
    a.refer {
        color: #020202 !important;
        font-size: 2rem !important;
        transition: 0.3s;
    }
    a.refer:hover {
        color: #162f65 !important;
    }
    #main .slider .content {
        flex-direction: column-reverse;
    }
    #main .slider .content .image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 40px;
    }
    #main .slider .content .info {
        width: 100%;
        max-width: 800px;
        min-width: unset;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #main .slider .content .info h1 {
        font-size: 2.8rem;
        line-height: 1.5;
    }
    #main .slider .content .info .button_group {
        flex-direction: column;
        row-gap: 30px;
    }
    .card_custom .card_body_info .status_value .value:nth-child(3) {
        padding-left: 15px;
    }
    .card_custom .card_body_info .status_value .value:nth-child(1) {
        padding-right: 15px;
    }
    .card_custom .card_body_info .status_value .value:nth-child(2) {
        padding: 0 15px;
    }
    footer .content {
        flex-wrap: wrap;
        row-gap: 60px;
        column-gap: 60px;
    }
    footer .content .group {
        width: 37%;
        min-width: 250px;
    }
    .startup #main .services .content {
        flex-direction: column;
    }
    .startup #main .services .content .info {
        width: 100%;
        max-width: 600px;
        text-align: center;
        margin-bottom: 50px;
    }
    .startup #main .slider {
        height: 93vh;
    }
    .startup_details #main .main_details > .info .company_details {
        flex-wrap: wrap;
        row-gap: 30px;
    }
    .contact .hero,
    .contact .message__customer {
        text-align: center;
    }
    .startup_details #main #team .card_custom,
    .startup_details #main #investor .card_custom {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }
    .startup_details #main .tabs_section .tab-content #documents .small_card {
        width: 100%;
        min-width: unset;
        max-width: none;
    }
    .dashboard #main .dashboard_container .content #v-pills-tab {
        padding: 5px 20px 0 5px;
        row-gap: 35px;
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 40px;
    }
    .d-flex.align-items-start {
        flex-direction: column;
    }
    .dashboard #main .dashboard_container .content .d_content {
        width: 100%;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom {
        width: 100%;
        max-width: 100%;
    }
    .login #main .login_section .content .main_content,
    .startup_login #main .login_section .content .main_content,
    .startup_register #main .login_section .content .main_content,
    .register #main .login_section .content .main_content {
        flex-direction: column;
        padding: 40px;
        row-gap: 60px;
    }
    .login #main .login_section .content .main_content .graphics,
    .startup_login #main .login_section .content .main_content .graphics,
    .startup_register #main .login_section .content .main_content .graphics,
    .register #main .login_section .content .main_content .graphics {
        width: 100%;
    }
    .login #main .login_section .content .main_content .form,
    .startup_login #main .login_section .content .main_content .form,
    .startup_register #main .login_section .content .main_content .form,
    .register #main .login_section .content .main_content .form {
        width: 100%;
    }
    .login #main .login_section .content .overlay_shape,
    .startup_login #main .login_section .content .overlay_shape {
        display: none;
    }
    .login #main .login_section .content .overlay_shape_reg,
    .startup_login #main .login_section .content .overlay_shape_reg,
    .startup_register #main .login_section .content .overlay_shape_reg,
    .register #main .login_section .content .overlay_shape_reg {
        display: none;
    }
    .field_group {
        max-width: 100%;
    }
    .login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget,
    .startup_register
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget,
    .startup_login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget,
    .register
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget {
        max-width: 100%;
        flex-direction: column;
        row-gap: 20px;
    }
    .login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget
        .btn_custom.reg_otp,
    .startup_register
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget
        .btn_custom.reg_otp,
    .startup_login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget
        .btn_custom.reg_otp,
    .register
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget
        .btn_custom.reg_otp {
        max-width: 100%;
    }
    .login #main .login_section .content .main_content .form .heading p,
    .startup_login #main .login_section .content .main_content .form .heading p,
    .startup_register
        #main
        .login_section
        .content
        .main_content
        .form
        .heading
        p,
    .register #main .login_section .content .main_content .form .heading p {
        max-width: 100%;
    }
    .register_steps #main .extra_section .content .steps_option {
        grid-template-columns: repeat(1, 1fr);
        border-bottom: 0;
        border-left: 1px solid #ededed;
    }
    .register_steps #main .extra_section .content .steps_option .step_active,
    .register_steps
        #main
        .extra_section
        .content
        .steps_option
        .step_completed {
        border-bottom: 0;
        border-left: 6px solid #162f65;
    }
    .register_steps #main .extra_section .content .steps_option .steps {
        padding: 0;
        padding-left: 20px;
    }
    .register_steps
        #main
        .extra_section
        .content
        .steps_option
        .steps:nth-child(1) {
        padding-bottom: 15px;
    }
    .register_steps
        #main
        .extra_section
        .content
        .steps_option
        .steps:nth-child(4) {
        padding-top: 15px;
    }
    .register_steps
        #main
        .extra_section
        .content
        .steps_option
        .steps:nth-child(3) {
        padding: 15px 0 15px 20px;
    }
    .register_steps
        #main
        .extra_section
        .content
        .steps_option
        .steps:nth-child(2) {
        padding: 15px 0 15px 20px;
    }
    .register_steps #main .extra_section .content .steps_content {
        margin-top: 60px;
    }
    .startup_details #main .main_details > .info .more_info {
        grid-template-columns: repeat(1, 1fr);
    }
    .startup_details #main .tabs_section .tab-content .startup_lock_content {
        flex-direction: column;
    }
    .startup_details
        #main
        .tabs_section
        .tab-content
        .startup_lock_content
        .info {
        text-align: center;
        width: 100%;
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .startup_details
        #main
        .tabs_section
        .tab-content
        .startup_lock_content
        .info
        .btn_group {
        justify-content: center;
        width: 100%;
    }
    .startup_invest .content .invest_right {
        padding: 30px;
    }
    .startup_invest .content {
        grid-template-columns: repeat(1, 1fr);
    }
    .startup_invest .content .invest_right {
        grid-row-start: 1;
        grid-row-end: 2;
    }
    .profile_settings_page
        #main
        .bg_style
        .more
        > div
        .d_field_group:last-child {
        grid-column-start: unset;
        grid-column-end: unset;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .update_content
        .update_list
        .all-p-cards
        .card-p-custom {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    header .container_custom .notifications {
        display: none;
    }
    header .container_custom .mobile_notifications {
        display: flex;
        position: fixed;
        right: 80px;
    }
    header .container_custom {
        display: flex;
    }
    .blog-home {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    header.system_page_nav {
        height: unset;
        padding: 0;
    }
    .dashboard #main .switch_user {
        margin-right: 40px;
    }
    .dashboard #main .switch_user .switch_btn {
        width: 500px;
        max-width: 280px;
    }
    .secondary_market_page .content .business_list .top_head h2 {
        font-size: 28px;
        line-height: 32px;
    }
    #main .status .content .all_stats {
        padding: 0 30px;
    }
}
@media screen and (max-width: 760px) {
    #main .just_launched .content .all_card,
    #main .insights .content .all_cards,
    .all_cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .top_status_content
        .all_status,
    .dashboard #main .dashboard_container .content .d_content {
        padding: 20px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .top_status_content
        .expand_details
        .card {
        padding: 20px 20px 40px;
    }
    .startup_details #main .main_details > .info .company_details .comp_info {
        width: 100%;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .mis_upload_list
        .update_list
        .all-p-cards
        .card-p-custom {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .mis_upload
        .mis_list
        .all-p-cards
        .card-p-custom
        .actions {
        justify-content: flex-start;
        column-gap: 15px;
    }
    .startup_details
        #main
        .tabs_section
        .tab-content
        #market
        .market_cards
        .card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .new_dropdown_section .content h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #020202;
    }
}
@media screen and (max-width: 660px) {
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #portfolio
        .all-p-cards
        .card-p-custom {
        grid-template-columns: repeat(1, 1fr);
    }
    .register_steps #main .extra_section .content .steps_content .heading h2 {
        font-size: 2.4rem;
    }
    .register_steps
        #main
        .extra_section
        .content
        .steps_content
        form
        .all_field
        .group {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
    }
    .register_steps #main .extra_section .content {
        padding: 20px;
    }
    .register_steps #main .extra_section .content .steps_option .steps p {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-top: 5px;
    }
    .register_steps
        #main
        .extra_section
        .content
        .steps_content
        form
        .btn_custom {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    .feedback_page #main .feedback_form .content .form_section .nav-pills {
        flex-wrap: wrap;
    }
    .feedback_page #main .feedback_form .content .form_section .nav-pills li,
    .feedback_page
        #main
        .feedback_form
        .content
        .form_section
        .tab-content
        form
        .btn_custom {
        max-width: 100%;
    }
    .feedback_page
        #main
        .feedback_form
        .content
        .form_section
        .tab-content
        form
        .group {
        flex-direction: column;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #notifications
        .all-p-cards
        .card-p-custom {
        grid-template-columns: 1fr;
    }
    .secondary_market_page .content .business_list .business_cards .card {
        grid-template-columns: repeat(2, 1fr);
    }
    .secondary_market_page .content .business_list .top_head {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }
    .secondary_market_page .content .business_list .top_head .actions_item {
        width: 100%;
    }
    .secondary_market_page
        .content
        .business_list
        .top_head
        .actions_item
        .search {
        max-width: 100%;
    }
    #main .status .content .all_stats {
        padding: 0 20px;
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 610px) {
    .startup_details #main .tabs_section .tab-content #documents .small_card {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .startup_details #main .tabs_section .tab-content #documents .small_card a {
        margin: 0 !important;
        width: 100%;
    }
    .card_custom,
    #main .insights .content .all_cards .card_custom {
        width: 100%;
        max-width: 100%;
    }
    .card_custom .video,
    #main .sector .content .all_cards .card_custom_feature,
    footer .content .contact .contact_info,
    footer .content .group .desc,
    footer .content .group {
        max-width: 100%;
    }
    footer .content .group {
        width: 100%;
    }
    .top h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .top {
        margin-bottom: 30px;
    }
    .startup #main .services .content .all_card .card_custom {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .startup #main .blog .content .all_card .card_custom {
        width: 100%;
        max-width: unset;
    }
    .startup #main .slider .info .btn_group {
        flex-direction: column;
    }
    .startup #main .slider .info h2 {
        font-size: 2.8rem;
        line-height: 38px;
    }
    .startup_details
        #main
        .main_details
        > .info
        .company_details
        .comp_info
        .info
        h3 {
        font-size: 2rem;
    }
    .startup_details #main .main_details > .info {
        padding: 30px 8px 40px;
    }
    .startup_details
        #main
        .main_details
        > .info
        .company_details
        .comp_info
        .logo {
        width: 60px;
        height: 60px;
        padding: 5px;
    }
    .startup_details
        #main
        .main_details
        > .info
        .company_details
        .comp_info
        .info {
        width: calc(100% - 75px);
    }
    .startup_details
        #main
        .main_details
        > .info
        .progress_info
        .progress_bottom_info {
        flex-direction: column;
    }
    .startup_details #main .main_details > .info .more_info {
        padding-left: 0;
    }
    .startup_details #main .tabs_section {
        padding: 20px 15px;
    }
    .startup_details
        #main
        .tabs_section
        .tab-content
        #team
        .card_custom
        .card_header {
        flex-wrap: wrap;
        row-gap: 25px;
    }
    .dashboard #main .dashboard_container .content .d_content {
        padding: 20px 10px 20px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom {
        min-width: unset;
    }
    .dashboard #main .dashboard_container .content {
        padding: 20px 10px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom {
        padding: 10px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .video {
        height: 160px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_top {
        flex-direction: column;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_top
        .co_profile {
        width: 100%;
    }
    .card_custom .card_body_info .co_profile .info h3 {
        font-size: 2rem;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_bottom {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #star
        .portfolio_content
        .all_cards
        .card_custom
        .card_body_info
        .card_bottom
        .status_value {
        min-width: 258px;
    }
    .dashboard #main .dashboard_container .content .d_content {
        min-height: 780px;
    }
    .dashboard #main .dashboard_container .content #v-pills-tab .nav-link {
        width: 100%;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .top_status_content
        .all_status {
        flex-direction: column;
        row-gap: 30px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .second_section
        .status_custom
        .all_status {
        grid-template-columns: repeat(1, 1fr);
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        #dashboard
        .top_status_content
        .expand_details
        .card {
        padding: 20px 0px 40px;
    }
    .login #main .login_section .content .main_content,
    .startup_login #main .login_section .content .main_content,
    .startup_register #main .login_section .content .main_content,
    .register #main .login_section .content .main_content {
        padding: 40px 20px;
    }
    .login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget,
    .startup_login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget {
        flex-direction: column;
        row-gap: 30px;
    }
    .login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget
        .btn_custom,
    .startup_login
        #main
        .login_section
        .content
        .main_content
        .form
        form
        .submit_forget
        .btn_custom {
        max-width: 100%;
    }
    .login #main .login_section .content .register_bottom {
        padding: 0 20px 40px;
        text-align: center;
    }
    .rising_now_page .content .slider .item .banner .info {
        width: calc(100vw - 40px);
        max-width: 470px;
    }
    .blog_single_page .content .main_image img {
        width: 100%;
    }
    .startup_invest .content .invest_right {
        padding: 10px;
    }
    .startup_invest
        .content
        .invest_left
        .input_form
        form
        .input_preset
        .preset_btn {
        flex-direction: column;
        row-gap: 15px;
    }
    .startup_invest
        .content
        .invest_left
        .input_form
        form
        .input_preset
        .preset_btn
        .btn_custom_line {
        width: 100%;
    }
    .startup_invest .content .invest_left .input_form form .input_preset {
        padding: 15px;
    }
    .faq_page .top_banner {
        height: 30vh;
    }
    .startup_details
        #main
        .main_details
        > .info
        .company_details
        .comp_info
        .info
        h3 {
        margin-left: 0;
        margin-top: 15px;
    }
    .startup_details #main .main_details > .info .more_info > div {
        width: calc(100vw - 70px);
    }
    .profile_settings_page #main .bg_style .legal_name > div,
    .profile_settings_page #main .bg_style .more > div,
    .profile_settings_page #main .bg_style .web-presence > div,
    .profile_settings_page #main .bg_style .contact-information > div,
    .profile_settings_page #main .bg_style .visibility > div,
    .profile_settings_page #main .bg_style .display_name > div {
        grid-template-columns: repeat(1, 1fr);
    }
    .profile_settings_page #main .bg_style {
        padding: 16px;
    }
    .startup_register_step
        #main
        .extra_section
        .content
        .steps_content
        form
        .all_field
        .member {
        padding: 15px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .mis_upload
        .mis_list
        .all-p-cards
        .card-p-custom {
        grid-template-columns: 70px 1fr;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .mis_upload
        .mis_list
        .all-p-cards
        .card-p-custom
        .actions
        .download {
        margin-left: 15px;
    }
    .dashboard
        #main
        .dashboard_container
        .content
        .d_content
        .mis_upload_list
        .update_list
        .all-p-cards
        .card-p-custom {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    header .container_custom .notifications .notification_box {
        width: calc(100vw - 40px);
        max-width: unset;
        right: -60px;
        top: -40px;
    }
    header .container_custom .notifications {
        z-index: 99999;
    }
    .blog-home {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .maintenance_page .content .info h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .secondary_market_page .content .business_list .business_cards .card {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }
}
@media screen and (max-width: 449px) {
    .startup_details
        #main
        .main_details
        > .info
        .company_details
        .btn_group
        .share_group
        .share_link {
        flex-wrap: wrap;
        row-gap: 10px;
    }
    .startup_details #main .main_details > .info .more_info > div table tr {
        display: flex;
        flex-direction: column;
    }
    .profile_settings_page #main .bg_style .user_image {
        flex-direction: column;
    }
    .profile_settings_page #main .bg_style .user_image .buttons_group {
        margin-left: 0px;
        column-gap: 20px;
        row-gap: 15px;
    }
    .d_card {
        padding: 15px;
    }
    .system_page_nav .content .social_link {
        align-items: flex-start;
        flex-direction: column;
    }
    .maintenance_page .content {
        padding-top: 40px;
        padding-bottom: 120px;
    }
    .secondary_market_page .content .business_list .business_cards .card {
        grid-template-columns: repeat(1, 1fr);
    }
    #main .status .content .all_stats {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }
    .startup_details
        #main
        .tabs_section
        .tab-content
        #market
        .market_cards
        .card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .data_change .modal-body {
        padding: 25px;
    }
    .data_change .modal-body .btn_group {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .data_change .modal-body .btn_group .btn_custom {
        max-width: 100%;
    }
}
@media screen and (max-width: 374px) {
    #main .status .content .all_stats {
        padding: 0;
        grid-template-columns: 1fr;
    }
}
/* ***************** RESPONSIVE SECTION END ****************** */ /*# sourceMappingURL=style.css.map */
