/*-----------------------------------------------------------    
CSS INDEX
-------------------------------------------------------------

01. DEFAULT STYLE
02. HEADER STYLE
03. HERO STYLE
04. CHART STYLE
05. SERVICES STYLE
06. SERVICES STYLE TWO
07. EVALUATE BUSINESS
08. TESTIMONIAL
09. CALL TO ACTION
10. FOOTER
11. STARTUP VALUATION

-------------------------------------------------------------
-----------------------------------------------------------*/

/* 01. DEFAULT STYLE */

/* font family */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

*,
ul,
ol {
    margin: 0;
    padding: 0;
}

/* css variable */
:root {

    /* colors */
    --primary-color: #2AA4D8;
    --menu-color: #6E708D;
    --menu-active-color: #242858;
    --title-color: #242858;
    --body-color: #929292;
    --white-color: #ffffff;
    --gry-white-color: #F8F8F8;;
    --black-color: #000000;

    --footer-bg: #EDF8FF;

    /* font size */
    --h1: 45px;
    --h2: 30px;
    --h3: 25px;
    --h4: 22px;
    --h5: 16px;
    --h6: 12px;
    --fz-body-text: 15px;
   --paragraph-text: 18px;

    /* font weight */
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
    --fw-900: 900;

    /* font-family */
    --ff-primary: 'Roboto', sans-serif;
}

/* default body style */
body {
    font-size: var(--fz-body-text);
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    font-family: var(--ff-primary);
}

ul,
ol {
    list-style: none;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

input:focus,
a:hover,
a:focus,
a:active,
button:focus,
select:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

/* default title tag style */
h1 {
    font-size: var(--h1);
    font-weight: var(--fw-700);
}

h2 {
    font-size: var(--h2);
    font-weight: var(--fw-600);
}

h3 {
    font-size: var(--h3);
    font-weight: var(--fw-500);
}

h4 {
    font-size: var(--h4);
    font-weight: var(--fw-500);
}

h5 {
    font-size: var(--h5);
    font-weight: var(--fw-500);
}

h6 {
    font-size: var(--h6);
    font-weight: var(--fw-500);
}

/* default button style */
.btn,
.btn:hover,
.btn:focus,
.btn:active {
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0;
}

/* custom container size */
/* .d-one_container {
    max-width: 1600px;
    width: 100%;
} */

/* 01. DEFAULT STYLE */

/* 02. HEADER STYLE */

.d-one_header .navbar {
    /*padding: 30px 0;*/
}

.d-one_header .navbar .nav-item {
    position: relative;
}
.d-one_service-item > .d-one_show{
    position: absolute;
    min-width: 320px;
    border-radius: 12px;
    background: #fafafa;
    padding: 15px;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.14);
    top: 10% !important;
    left:110% !important;
    transform-origin: top;
    transition: all 0.3s ease !important;
    visibility: hidden !important;
    opacity: 0;
    z-index: 999999;
}
.d-one_service-item:hover > .d-one_show{
    visibility: visible !important;
    opacity: 1;
    top: 110%;
}

.d-one_header .navbar .nav-item ul {
    position: absolute;
    min-width: 320px;
    border-radius: 12px;
    background: #fafafa;
    padding: 15px;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.14);
    top: 250%;
    left: 0;
    transform-origin: top;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
}

.d-one_header .navbar .nav-item:hover ul {
    visibility: visible;
    opacity: 1;
    top: 110%;
}


.d-one_header .navbar .nav-item ul li:not(:last-child) {
    margin-bottom: 15px;
}

.d-one_header .navbar .nav-item ul .nav-link,
.d-one_header .navbar .nav-link {
    color: var(--menu-color);
    font-family: var(--ff-primary);
    font-size: 19px;
    font-weight: var(--fw-400);
    text-transform: capitalize;
    line-height: 21px;
    padding: 5px;
}

.d-one_header .navbar .nav-item ul .nav-link.active,
.d-one_header .navbar .nav-link.active {
    font-weight: var(--fw-600);
}

.d-one_header .navbar .nav-link.active,
.d-one_header .navbar .nav-item ul .nav-item:hover .nav-link,
.d-one_header .navbar .nav-item:hover .nav-link {
    color: var(--menu-active-color);
}

.d-one_header .navbar .nav-item:not(:last-child) {
    margin-right: 15px;
}

/* search button */
.d-one_search-btn {
    height: 45px;
    width: 45px;
    border-radius: 4px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
}

.d-one_search-btn:active,
.d-one_search-btn:focus,
.d-one_search-btn:hover {
    border: 1px solid var(--primary-color) !important;
    border-radius: 4px;
}

.d-one_search-btn:hover {
    color: var(--primary-color);
}

/* default button style */
.d-one_btn {
    height: 45px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    padding: 13px 20px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-weight: var(--fw-500);
    transition: all 0.3s ease-in-out;
}

.d-one_auth-btn {
    width: 120px;
}

/* button fill style */
.d-one_btn-fill {
    background: var(--primary-color);
    color: var(--white-color);
}

.d-one_btn-fill:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.14);
}

/* button line style */
.d-one_btn-line {
    color: var(--primary-color);
}

.d-one_btn-line:hover {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.14);
}

/* button shadow style */
.d-one_btn-shadow {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.14);
}

/* button hover style */
.d-one_btn-hover:hover {
    transform: translateY(-10px);
}

.d-one_header {
    transition: all 0.5s ease;
}

.d-one_sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fafafa;
    z-index: 999;
    box-shadow: 0px 0px 50px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.d-one_sticky-header .navbar {
    transition: all 0.5s ease;
    padding: 7px 0;
}

.d-one_header.d-one_sticky-header .navbar .nav-link {
    font-size: 18px;
}

/* 02. HEADER STYLE */

/* 03. HERO STYLE */
.d-one_hero {
    background: url(../images/hero-bg.png) no-repeat center center / cover;
    margin-top: -130px;
}

.d-one_hero-content {
    padding-top: 150px;
    padding-bottom: 300px;
}

.d-one_hero-title {
    color: var(--title-color);
    line-height: 82px;
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
    font-size: 45px;
}

.d-one_hero-title::before {
    position: absolute;
    content: url(../images/hero-title-shape.png);
    top: 45px;
    right: 0;
}

.d-one_hero-short-text {
    font-weight: var(--fw-400);
    font-size: 18px;
    line-height: 36px;
    color: var(--body-color);
    padding: 0 50px;
}

/* 03. HERO STYLE */

/* 04. CHART STYLE */

.d-one_chart {
    position: relative;
    margin-top: -200px;
}

.d-one_chart-3 img,
.d-one_chart-1 img {
    transform: translateY(-20%);
}

.d-one_chart-2 img {
    width: 100%;
}

.d-one_chart img {
    filter: drop-shadow(0px 6px 40px rgba(0, 0, 0, 0.08));
}

.d-one_arrow-1,
.d-one_arrow-2,
.d-one_arrow-3,
.d-one_arrow-4 {
    position: absolute;
}

.d-one_arrow-1 {
    top: -30%;
    right: 1.5%;
}

.d-one_arrow-2 {
    top: 30px;
    left: 40%;
}

.d-one_arrow-3 {
    bottom: 20%;
    left: 1%;
}

.d-one_arrow-4 {
    bottom: 20%;
    left: 68.5%;
}

/* 04. CHART STYLE */


/* 05. SERVICES STYLE */
.d-one_services {
    padding: 70px 0;
}

/* section titile */
.d-one_section-title-wrapper {
    position: relative;
}

.d-one_section-title-wrapper::before {
    position: absolute;
    content: url(../images/services/star-1.png);
    top: 0;
    right: 0;
}

.d-one_section-title-wrapper::after {
    position: absolute;
    content: url(../images/services/star-2.png);
    top: 100%;
    left: 0;
}

.d-one_section-title {
    color: var(--title-color);
    line-height: 70px;
    margin-bottom: 50px;
    display: inline-block;
}

.d-one_section-title_shape-1 {
    position: relative;
    z-index: 1;
}

.d-one_section-title_shape-1::before {
    content: url(../images/section-titile-shape-1.png);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.d-one_section-title_short-text {
    color: var(--body-color);
    font-size: 18px;
    line-height: 36px;
}

/* services card */
.d-one_serices-card {
    background: var(--gry-white-color);
    box-shadow: 0px 6px 150px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    min-height: 510px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.d-one_serices-card .d-one_icon {
    height: 165px;
    width: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 100%;
}

.d-one_serices-card .d-one_icon img {
    height: 80px;
    width: 80px;
}

.d-one_serices-card .d-one_icon-bg-1 {
    background: rgba(42, 164, 216, 0.1);
}

.d-one_serices-card .d-one_icon-bg-2 {
    background: rgba(217, 208, 20, 0.1);
}

.d-one_service-title {
    color: var(--title-color);
    font-size: var(--h4);
    line-height: 30px;
    margin-bottom: 15px;
}

.d-one_service-excerpt {
    color: var(--body-color);
    font-size: var(--fz-body-text);
    line-height: 30px;
    margin-bottom: 30px;
}

.d-one_serices-card .d-one_btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
}

/* 05. SERVICES STYLE */

/* 06. SERVICES STYLE TWO*/
.d-one_section-title_shape-2 {
    position: relative;
    z-index: 1;
}

.d-one_section-title_shape-2::before {
    content: url(../images/section-titile-shape-2.png);
    position: absolute;
    bottom: -50%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.d-one_services-two .d-one_section-title {
    margin-bottom: 0;
}

.d-one_services-two .d-one_section-title-wrapper::before {
    position: absolute;
    content: url(../images/services/star-2.png);
    top: 0;
    right: 0;
}

.d-one_services-two .d-one_section-title-wrapper::after {
    position: absolute;
    content: url(../images/services/star-1.png);
    top: 80%;
    left: 0;
}

.d-one_service-tow-title {
    color: var(--title-color);
    font-size: 30px;
    font-weight: var(--fw-500);
    line-height: 47px;
    margin-bottom: 30px;
}

.d-one_service-two-description {
    color: #585858;
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 35px;
}

.d-one_service-features {
    margin-bottom: 50px;
}

.d-one_service-features li {
    font-size: 18px;
    line-height: 40px;
    color: var(--title-color);
    position: relative;
    padding-left: 56px;
}

.d-one_service-features li::before {
    position: absolute;
    content: '\F633';
    font-family: bootstrap-icons;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(25%);
    left: 0;
}

.d-one_service-features li:not(:last-child) {
    margin-bottom: 10px;
}

.d-one_pt-100 {
    padding-top: 100px;
}
.d-one_pt-75 {
    padding-top: 75px;
}

.d-one_who-need-servie-area-2,
.d-one_who-need-servie-area-1 {
    position: relative;
}

.d-one_who-need-servie-area-1::before,
.d-one_who-need-servie-area-2::before {
    position: absolute;
}

.d-one_who-need-servie-area-1::before {
    content: url(../images/services/arrow1.png);
    top: 70%;
    left: 55%;
    transform: translateX(-50%);
}

.d-one_who-need-servie-area-2::before {
    content: url(../images/services/arrow2.png);
    top: 90%;
    left: 90%;
}

/* 06. SERVICES STYLE TWO*/


/* 07. EVALUATE BUSINESS*/
.d-one_business-eveluate {
    padding: 100px 0;
}

.d-one_eveluate-features {
    border-top: 1px solid rgba(36, 40, 88, 0.2);
    border-bottom: 1px solid rgba(36, 40, 88, 0.2);
    padding: 50px 0;
    margin-top: 100px;
    position: relative;
}

.d-one_eveluate-features::before {
    position: absolute;
    content: url(../images/evaluate/shape-arrow.png);
    top: 80%;
    left: -2%;
}

.d-one_eveluate-features-icon {
    height: 165px;
    width: 165px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.d-one_eveluate-features-title {
    color: var(--title-color);
    font-size: var(--h4);
    line-height: 42px;
    font-weight: var(--fw-500);
    margin-bottom: 30px;
}

.d-one_eveluate-features-excerpt {
    font-size: 22px;
    line-height: 45px;
    color: #585858;
}

.d-one_eveluate-features-icon-color1 {
    background: rgba(42, 164, 216, 0.1);
}

.d-one_eveluate-features-icon-color2 {
    background: rgba(217, 208, 20, 0.1);
}

/* 07. EVALUATE BUSINESS*/

/* 08. TESTIMONIAL*/
.d-one_testimonial-wrapper {
    border: 1.5px solid rgba(36, 40, 88, 0.2);
    border-radius: 18px;
    padding: 50px;
    margin-top: 100px;
}

.d-one_testimonial-wrapper img {
    height: 200px;
    width: 200px;
    border-radius: 100%;
    margin-top: -150px;
    margin-bottom: 30px;
}

.d-one_client-name {
    color: var(--title-color);
    font-size: 36px;
    line-height: 42px;
    position: relative;
    margin-bottom: 50px;
}

.d-one_client-name::before {
    position: absolute;
    content: url(../images/testimonial/underline.png);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.d-one_testimonial-description {
    color: rgba(36, 40, 88, 0.7);
    font-size: var(--h4);
    line-height: 60px;
}

/* 08. TESTIMONIAL*/

/* 09. CALL TO ACTION*/
.d-one_call-to-action {
    padding: 75px 0;
}

.d-one_call-to-action_title {
    display: inline-block;
    position: relative;
    color: var(--title-color);
    margin-bottom: 50px;
}

.d-one_call-to-action_title::before {
    position: absolute;
    content: url(../images/call-to-action.png);
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
}

.d-one_call-to-action_description {
    font-size: 18px;
    line-height: 36px;
    color: var(--body-color);
}


.d-one_started-action .d-one_btn,
.d-one_call-to-action .d-one_btn {
    padding: 12px 20px;
    margin: 0 10px;
    text-transform: none;
}

/* 09. CALL TO ACTION*/


/* 10. FOOTER*/
.d-one_footer-inner {
    background: var(--footer-bg);
    padding: 50px 30px;
}

.d-one_footer-about-widget img {
    width: 180px;
    margin-bottom: 10px;
}

.d-one_footer-about-widget .d-one_about-info {
    font-size: 18px;
    line-height: 30px;
    color: #636D79;
}

.d-one_footer-widget-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 25px;
    color: var(--title-color);
}

.d-one_footer-widget-list li {
    font-size: 18px;
    line-height: 120%;
}

.d-one_footer-widget-list li:not(:last-child) {
    margin-bottom: 20px;
}

/* address widget */
.d-one_footer-address-widget li {
    color: #636D79;
    position: relative;
    padding-left: 50px;
    transition: all 0.3s ease-in-out;
    font-weight: var(--fw-400);
}

.d-one_footer-address-widget li i {
    font-size: 24px;
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: all 0.3s ease-in-out;
}

.d-one_footer-widget-list li a {
    color: #636D79;
    font-weight: var(--fw-400);
}

.d-one_footer-widget-list li:hover a {
    color: var(--primary-color);
}


.d-one_footer-social-widget li:not(:last-child) {
    margin-bottom: 20px;
}

.d-one_footer-social-widget li a {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: var(--white-color);
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.2s ease-in-out;
}

.d-one_footer-social-widget li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.d-one_footer-social-widget-text {
    color: #636D79;
    font-size: 18px;
    line-height: 150%;
}

/* 10. FOOTER*/


/* 11. STARTUP VALUATION */

/* .d-one_valuation-about {
    padding: 100px 0;
} */

.d-one_valuation-hero-inner {
    background: url(../images/valueation-bg-shape.png) no-repeat center center / cover;
    padding: 50px 150px 0;
}

.d-one_valuation-hero-img {
    margin-top: 50px;
}

.d-one_valuation-hero-img img {
    margin: auto;
    max-width: 400px;
    margin-bottom: -15px;
}

.d-one_valuation-about-content h2 {
    font-weight: var(--fw-600);
    font-size: 40px;
    line-height: 45px;
    color: var(--title-color);
    position: relative;
    margin-bottom: 40px;
}

.d-one_valuation-about-content h2::before {
    position: absolute;
    content: url(../images/valueation-about-title-btm.png);
    left: 0;
    bottom: -40px;
}

.d-one_valuation-about-content p {
    font-size: 18px;
    line-height: 40px;
    color: var(--body-color);
}

.d-one_valuation-about-content .d-one_btn {
    width: auto;
    display: inline-block;
    margin-top: 30px;
}

.d-one_valuation-benefits-title {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
    font-size: 46px;
    line-height: 52px;
}

.d-one_valuation-benefits-title::before {
    position: absolute;
    content: url(../images/valuation/title-shape.png);
    left: -10px;
    top: -30px;
    z-index: -1;
}

.d-one_valuation-benefit-card {
    background: #F8F8F8;
    box-shadow: 0px 6px 150px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 30px;
    min-height: 505px;
}

.d-one_valuation-benefit-card.d-one_startup_card{
    min-height: 500px;
}

.d-one_valuation-benefit-card.d-one_sme_card,
.d-one_valuation-benefit-card.d-one_loan_card{
    min-height: 530px;
}

.d-one_valuation-benefit-card h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 34px;
    color: #242858;
    margin-bottom: 30px;
}

.d-one_valuation-benefit-card p {
    font-size: 15px;
    line-height: 30px;
    color: #929292;
}

.d-one_valuation-benefit-icon {
    height: 165px;
    width: 165px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
}

.d-one_valuation-benefit-icon-color-1 {
    background: rgba(42, 164, 216, 0.1);
}

.d-one_valuation-benefit-icon-color-2 {
    background: rgba(217, 208, 20, 0.1);
}

/* 11. STARTUP VALUATION */

/* 12. PRICING */
.d-one_pricing {
    padding: 50px 0;
} 

.d-one_pricing-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.d-one_pricing-section-title::before {
    position: absolute;
    content: url(../images/valuation/pricing-title-shape.png);
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
}

/* pricing card */
.d-one_pricing-card {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 30px;
}

.d-one_pricing-card h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    opacity: 0.5;
    margin-bottom: 15px;
}

.d-one_pricing-card h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 33px;
    color: #242858;
    margin-bottom: 25px;
}

.d-one_pricing-card h4 span {
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
}

.d-one_pricing-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #A0A0A0;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.d-one_pricing-card h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #242858;
    margin-bottom: 25px;
}

.d-one_featured-list {
    margin-bottom: 10px;
}

.d-one_featured-list li,
.d-one_how_it_works-list li {
    font-size: 16px;
    line-height: 19px;
    color: #A0A0A0;
    position: relative;
    padding-left: 40px;
}

.d-one_featured-list li:not(:last-child) {
    margin-bottom: 20px;
}

.d-one_featured-list li::before {
    position: absolute;
    content: '\F26B';
    font-family: bootstrap-icons;
    left: 0;
    transform: translateY(15%);
    font-size: 24px;
    color: 35397080;
}

.d-one_pricing-card .d-one_btn {
    width: 100%;
    margin: auto;
}

.d-one_pricing-card-active,
.d-one_pricing-card:hover {
    border-color: #2AA4D8;
}

.d-one_pricing-card-active .d-one_featured-list li::before,
.d-one_pricing-card:hover .d-one_featured-list li::before {
    color: #2AA4D8;
}

.d-one_pricing-card-active .d-one_btn,
.d-one_pricing-card:hover .d-one_btn {
    background: #2AA4D8;
    color: #fff;
}

.d-one_started-action {
    padding-bottom: 100px;
}

.d-one_started-action h2 {
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    color: #242858;
    position: relative;
}

.d-one_started-action h2::before,
.d-one_started-action h2::after {
    position: absolute;
    top: -15px;
}

.d-one_started-action h2::before {
    content: url(../images/service-cat-shape-1.png);
    left: -40px;
}

.d-one_started-action h2::after {
    content: url(../images/service-cat-shape-2.png);
    right: -40px;
}

.d-one_started-action {
    text-align: center;
}

.d-one_started-action .d-one_btn {
    display: inline-block;
    margin: auto;
    width: auto;
    padding: 12px 20px;
    margin: 0 10px;
    line-height: 18px;
}

/* 12. PRICING */

/* 13. SME */
.d-one_sme-valuation_hero-inner {
    padding: 50px;
}

.d-one_sme-valuation_hero-inner .d-one_hero-title {
    display: inline-block;
}

.d-one_sme-valuation_hero-inner .d-one_hero-title::before {
    left: 0;
    right: auto;
}

/* 13. SME */
.d-one_hero-title {
    display: inline-block;
}

.d-one_feasibility-valuation_hero-inner {
    padding: 50px 30px 0;
}

.d-one_feasibility-valuation_hero-inner .d-one_hero-title {
    font-size: 45px;
}

.d-one_support_hero-inner .d-one_hero-title::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}

.d-one_support-service {
    padding: 100px 0;
}

.d-one_support-card .d-one_btn {
    width: auto;
    display: inline-block;
    margin-top: 30px;
}

.d-one_support-card {
    min-height: 550px;
}

.d-one_additional-services {
    background: url(../images/additional-services/hero-bg.png) no-repeat center center / cover;
    min-height: 800px;
    border-radius: 8px;
}

.d-one_additional-services-hero {
    position: relative;
}

.d-one_additional-services_content {
    text-align: center;
    background: #FAFAFA;
    border-radius: 16px;
    padding: 50px 30px 110px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    bottom: -10em;
}

.d-one_additional-services_content .d-one_hero-short-text {
    padding: 0;
}

.d-one_additional-service_wrapper-pt-250 {
    padding-top: 250px;
}

.d-one_additional-service_wrapper-ptb-100 {
    padding: 100px 0;
}

.d-one_pt-100 {
    padding-top: 100px;
}
.d-one_pt-50{
    padding-top: 50px;
}

.d-one_ptb-100 {
    padding: 100px 0;
}

.d-one_pb-100 {
    padding-bottom: 100px;
}

.d-one_additional-service-content h2 {
    position: relative;
    font-weight: 600;
    font-size: 60px;
    line-height: 80px;
    color: #242858;
    z-index: 1;
    margin-bottom: 25px;
}

.d-one_additional-service-content h2::before {
    position: absolute;
    content: url(../images/additional-services/title-line.png);
    top: 30px;
    z-index: -1;
}

.d-one_additional-service-content p {
    font-size: 18px;
    line-height: 40px;
    color: #929292;
    margin-bottom: 35px;
}

.d-one_additional-service-content .d-one_btn {
    width: auto;
    display: inline-block;
}


.d-one_platform-feature-icon {
    height: 165px;
    width: 165px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 164, 216, 0.1);
    margin-bottom: 30px;
}

.d-one_platform-features-card h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    color: #242858;
    margin-bottom: 15px;
}

.d-one_platform-features-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    color: #585858;
}

.d-one_platform-feature-img {
    height: 100%;
    display: flex;
    align-items: center;
}

.d-one_discover .d-one_section-title {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.d-one_discover .d-one_section-title::before {
    position: absolute;
    content: url(../images/platform/title-shape.png);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.8);
    z-index: -1;
}

.d-one_valuation-benefit-card.d-one_discover-card {
    min-height: 450px;
}
.d-one_card-para{
    font-size: 15px ;
}
.d-one_about-hero .d-one_hero-title::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.d-one_about-hero img{
    max-height: 400px;
}
.d-one_story-card {
    border-radius: 16px;
    padding: 20px;
    height: 130px;
}

.d-one_story-card-color-1 {
    background: rgb(83 186 231 / 15%);
}

.d-one_story-card-color-2 {
    background: rgba(217, 208, 20, 0.1);
}

.d-one_story-card h3 {
    font-size: 20px !important;
    line-height: 35px;
    color: #6c6c6c;
}


.d-one_mission-vision_wrapper {
    border: 2px solid rgba(36, 40, 88, 0.2);
    border-radius: 12px;
}

.d-one_mission-vision_img {
    background: rgba(42, 164, 216, 0.06);
    border-radius: 12px 12px 0px 0px;
}

.d-one_mission-vision-card {
    padding: 50px;
}

.d-one_mission-vision-card:not(:last-child) {
    border-right: 2px solid rgba(36, 40, 88, 0.2);
}

.d-one_mission-vision-card h3 {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #242858;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.d-one_mission-vision-card h3::before {
    position: absolute;
    content: url(../images/about/mission-title-line.png);
    left: 0;
    bottom: -25px;
}

.d-one_mission-vision-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 40px;
    color: rgba(36, 40, 88, 0.8);
}

.d-one_values .d-one_section-title_wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.d-one_values .d-one_section-title_wrapper h2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #242858;
    position: relative;
    display: inline-block;
    z-index: 1;
    margin-bottom: 35px;
}

.d-one_values .d-one_section-title_wrapper h2::before {
    position: absolute;
    content: url(../images/about/value-title-line.png);
    left: 50%;
    transform: translateX(-50%) scale(.9);
    bottom: -40px;
    z-index: -1;
}

.d-one_values .d-one_section-title_wrapper p {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: rgba(36, 40, 88, 0.8);
}

.d-one_values-card {
    text-align: center;
}

.d-one_values-card-icon {
    height: 165px;
    width: 165px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
}

.d-one_values-card-icon-color-1 {
    background: rgba(42, 164, 216, 0.1);
}

.d-one_values-card-icon-color-2 {
    background: rgba(217, 208, 20, 0.1);
}

.d-one_values-card h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    color: #242858;
    margin-bottom: 30px;
}

.d-one_values-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 35px;
    text-align: center;
    color: #585858;
}

.d-one_team .d-one_section-title {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #242858;
}

.d-one_team-card {
    background: #FFFFFF;
    box-shadow: 0px 6px 150px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    text-align: center;
    padding: 15px;
}

.d-one_team-card img {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    display: table;
    margin: auto;
    margin-bottom: 30px;
}

.d-one_team-card h4 {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #242858;
    margin-bottom: 15px;
}

.d-one_team-card h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #242858;
}

.d-one_about-contact-content h2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #242858;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.d-one_about-contact-content h2::before {
    position: absolute;
    content: url(../images/about/contact-title.png);
    top: -10px;
    left: 100%;
}

.d-one_about-contact-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 45px;
    color: #585858;
    margin-bottom: 30px;
}

.d-one_faq-title {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #242858;
}
/* faq accrodian style  */
.d-one_faq-card ul li {
    text-align: left;
    position: relative;
    padding-left: 30px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
}
.d-one_faq-card ul li:before{
    position: absolute;
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 100%;
    background: #2AA4D8;
    left: 0;
    top: 20%;
    transform: translateY(-50%);
}



.d-one_accordion-wrapper .accordion-item:not(:last-child) {
    margin-bottom: 30px;
}

.d-one_accordion-wrapper .accordion-item {
    border: 1px solid #000000;
    border-radius: 12px;
}
.accordion-border{
    border: 1px solid #2aa4d8 !important;
}

.d-one_accordion-wrapper .accordion-item .accordion-button.collapsed {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #130B01;
}

.d-one_accordion-wrapper .accordion-item .accordion-button {
    background: transparent;
    padding: 24px;
    color: #2AA4D8;
}

.d-one_accordion-wrapper .accordion-item .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.d-one_accordion-wrapper .accordion-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.d-one_accordion-wrapper .accordion-item .accordion-button:not(.collapsed)::after,
.d-one_accordion-wrapper .accordion-item .accordion-button.collapsed::after {
    background-image: none;
    font-family: fontawesome;
    font-size: 30px;
    transform-origin: center;
}

.d-one_accordion-wrapper .accordion-item .accordion-button:not(.collapsed)::after {
    content: '\f107';
    transform: rotate(0deg);
}

.d-one_accordion-wrapper .accordion-item .accordion-button.collapsed::after {
    content: '\f105';
}

.d-one_accordion-wrapper .accordion-item .accordion-body {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #888580;
    padding-top: 0;
}

.d-one_faq-tabs {
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 24px;
}

.d-one_faq-tabs h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #130B01;
    margin-bottom: 30px;
}

.d-one_faq-tabs .nav-link {
    background-color: transparent !important;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #130B01;
    text-align: left;
    border-radius: 0;
}

.d-one_faq-tabs .nav-link.active {
    color: #2AA4D8;
}

.d-one_faq-tabs .nav-link:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #DEDEDE;
}


.d-one_methodologies_hero {
    padding: 50px 0 100px;
}

.d-one_methodologies_hero-content h1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 75px;
    text-transform: capitalize;
    color: #242858;
    margin-bottom: 30px;
}

.d-one_methodologies_hero-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    color: #929292;
}

.d-one_matrix-section-title h2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #242858;
    margin-bottom: 50px;
}

.d-one_matrix-card {
    background: #F8F8F8;
    box-shadow: 0px 6px 150px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 30px;
    min-height: 600px;
}

.d-one_matrix-card .d-one_matrix-card-icon {
    height: 165px;
    width: 165px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
}

.d-one_matrix-card .d-one_matrix-card-icon-color-1 {
    background: rgba(42, 164, 216, 0.1);
}

.d-one_matrix-card .d-one_matrix-card-icon-color-2 {
    background: rgba(217, 208, 20, 0.1);
}

.d-one_matrix-card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #929292;
}

.d-one_valuation-methods .d-one_section-title h2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    color: #242858;
}

.d-one_valuation-methods-wrapper {
    background: #F7F7F7;
    padding: 50px;
    position: relative;
}

.d-one_valuation-methods-content h2 {
    font-weight: 500;
    font-size: 55px;
    line-height: 80px;
    color: #242858;
    margin-bottom: 15px;
}

.d-one_valuation-methods-content p {
    font-weight: 400;
    font-size: 15px;
    line-height: 40px;
    color: #929292;
}

.d-one_valuation-methods-content {
    position: relative;
}

.d-one_valuation-methods-content span {
    width: 120px;
    height: 120px;
    background: rgba(217, 208, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-weight: 600;
    font-size: 60px;
    line-height: 80px;
    color: #242858;
    margin-bottom: 30px;
}

.d-one_valuation-methods-img {
    height: 100%;
    display: flex;
    align-items: center;
}

.d-one_valuation-methods-wrapper .owl-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.d-one_valuation-methods-wrapper .owl-next i,
.d-one_valuation-methods-wrapper .owl-prev i {
    height: 90px;
    width: 90px;
    border-radius: 100%;
    color: #242858;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 208, 20, 0.1);
    font-size: 40px;
}

.d-one_valuation-methods-wrapper .owl-prev:hover,
.d-one_valuation-methods-wrapper .owl-next:hover {
    background: rgba(217, 208, 20, 0.2) !important;
    border-radius: 100%;
}

.d-one_mall-section h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-transform: capitalize;
    color: #242858;
    margin-bottom: 30px;
}

.d-one_mall-section h2 {
    font-size: 90px;
    text-transform: capitalize;
    text-align: center;
    color: #130B01;
}

.d-one_mall-section p {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #808080;
}

.d-one_guide-video {
    position: relative;
}

.d-one_guide-video::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
    background: transparent;
}

.d-one_guide-video .link {
    border-radius: 16px;
    width: 100%;
    height: 610px;
}

.d-one_contact-info h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-transform: capitalize;
    color: #242858;
    margin-bottom: 30px;
}

.d-one_contact-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    color: #808080;
    margin-bottom: 50px;
}

.d-one_contact-info form label {
    font-weight: 700;
    font-size: 16px;
    line-height: 40px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #283646;
}

.d-one_contact-info form .form-control {
    background: #F8F9FA;
    border: 1px solid #ECEEF0;
    border-radius: 8px;
    color: #979797;
    padding-left: 20px;
}

.d-one_contact-info form textarea {
    padding: 15px 20px;
}

.d-one_contact-info form .form-control:focus {
    box-shadow: none;
}

.d-one_contact-info form input.form-control,
.d-one_contact-info form select.form-control {
    height: 45px;
}

.d-one_contact-info form input::placeholder,
.d-one_contact-info form textarea::placeholder,
.d-one_contact-info form select {
    color: #979797;
}


.d-one_contact-info form textarea.form-control {
    height: 144px;
}

.d-one_contact-info form .form-check {
    padding-left: 0;
}

.d-one_contact-info form .form-check:not(:last-child) {
    margin-bottom: 10px;
}

.d-one_contact-info form .form-check label {
    font-size: 18px;
    line-height: 22px;
    color: #4F5A68;
    font-weight: 400;
    text-transform: capitalize;
}

.d-one_contact-info form .d-one_btn {
    min-width: 160px;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #dedede;
    border-radius: 100%;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #283646;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.d-one_map {
    height: 92%;
}

.d-one_map img {
    height: 100%;
}

.d-one_clients {
    position: relative;
    z-index: 1;
}

.d-one_clients::before {
    position: absolute;
    content: url(../images/clients/lines.png);
    right: 0;
    bottom: 0;
    z-index: -1;
}

.d-one_clients h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}

.d-one_clients h1::before {
    position: absolute;
    content: url(../images/clients/title-line.png);
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
}

.d-one_client-card {
    background: #FFFFFF;
    border: 1px solid #E1E8F1;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 210px;
}

.d-one_client-card h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    margin-top: 30px;
}

.d-one_auth-wrapper {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 50px;
}

.d-one_auth-wrapper h1 {
    font-weight: 700;
    font-size: 70px;
    line-height: 82px;
    text-align: center;
    text-transform: capitalize;
    color: #242858;
    margin-bottom: 80px;
}

.d-one_auth-wrapper form label {
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
    text-transform: capitalize;
    color: #929292;
    margin-bottom: 5px;
}

.d-one_auth-wrapper form .form-control {
    height: 50px;
    opacity: 0.4;
    border: 1.5px solid #929292;
    border-radius: 6px;
}

.d-one_auth-wrapper form .form-control:focus {
    box-shadow: none;
}

.d-one_auth-wrapper form p {
    font-size: 18px;
    line-height: 28px;
    color: #929292;
}

.d-one_auth-wrapper form p:not(:last-child) {
    margin-bottom: 10px;
}

.d-one_auth-wrapper form span {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #929292;
    display: block;
    margin: 30px 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.d-one_auth-wrapper form span::before,
.d-one_auth-wrapper form span::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 1.5px;
    background: #929292;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.d-one_auth-wrapper form span::before {
    left: 0%;
}

.d-one_auth-wrapper form span::after {
    right: 0%;
}

.d-one_auth-wrapper form ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-one_auth-wrapper form ul li a {
    background: #FFFFFF;
    box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.12);
    height: 100px;
    width: 100px;
    padding: 15px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

.d-one_auth-wrapper form ul li a img {
    height: 70px;
    width: 70px;
}

.d-one_auth-wrapper form ul li:not(:last-child) {
    margin-right: 30px;
}

.d-one_already-has-account {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #929292;
    margin-top: 50px;
}

.d-one_already-has-account a {
    color: #1877F2;
    text-decoration: underline !important;
    font-weight: 600;
}

.d-one_forgot-password {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #929292;
    margin-bottom: 5px;
}

.d-one_forgot-password:hover {
    color: #1877F2;
}

.d-one_how-dose-it-work-card {
    box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    min-height: 450px;
}

.d-one_how-dose-it-work-card-active {
    background: #2AA4D8;
}

.d-one_how-dose-it-work-card span {
    font-size: 80px;
    color: #2AA4D8;
    display: inline-block;
    margin-bottom: 20px;
}

.d-one_how-dose-it-work-card h3 {
    font-size: var(--h4);
    text-transform: capitalize;
    margin-bottom: 80px;
}

.d-one_how-dose-it-work-card ul li {
    text-align: left;
    position: relative;
    padding-left: 30px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
}

.d-one_how-dose-it-work-card ul li::before {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    border-radius: 100%;
    background: #2AA4D8;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.d-one_how-dose-it-work-card-active ul li,
.d-one_how-dose-it-work-card-active h3,
.d-one_how-dose-it-work-card-active span {
    color: #fff;
}

.d-one_how-dose-it-work-card-active ul li::before {
    background: #fff;
}

.d-one_how-dose-it-work-card ul li:not(:last-child) {
    margin-bottom: 25px;
}

.d-one_valuation-about-content.d-one_service-startup-v h2::before {
    position: absolute;
    content: url(../images/valueation-about-title-btm.png);
    left: 0;
    bottom: 0;
    top: 80%;
}

/* .d-one_valuation-about {
    padding: 100px 0;
} */
