
/* Global Style Start */
:root {
    /* Font */
    --primary_font: 'Teko', sans-serif;
    --secondary_font: 'Roboto', sans-serif;
    /* Color */
    --primary_color: #121D2C;
    --secondary_color: #F7F7FD;
    --accent_color: #EF8A54;
    --default_color: #FFFFFF;
    /* Text */
    --text_color: #4A5360;
    /* BG */
    --primary_bg: #F3F3FF;
    /* Border Radius */
    --primary_radius: 4px;
    --secondary_radius: 10px;
    /* Box Shadow */
}

/* selection */
::selection {
    color: var(--default_color);
    background: var(--primary_color);
}
/* selection */

html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
section {
    padding: 100px 0px;
    background: var(--default_color);
}
a {
    text-decoration: none;
}
img {
    object-fit: cover;
}
h1,h2,h3,h4,h5,h6 {
    color: var(--primary_color);
    font-family: var(--primary_font);
    font-weight: 600;
    text-transform: none;
}
h2 {
    font-size: 50px;
    text-transform: none;
}
h6 {
    color: var(--accent_color);
    font-size: 16px;
}
p {
    color: var(--text_color);
    font-family: var(--secondary_font);
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}
.text-center p,
p.text-center,
.d2c_footer_wrapper p,
.d2c_c2a_wrapper p,
.d2c_form_status {
    text-align: center;
}

/* btn */
.btn {
    color: var(--secondary_color);
    background: var(--primary_color);
    font-size: 16px;
    font-family: var(--secondary_font);
    font-weight: 500;
    text-transform: none;
    border: 1px solid var(--primary_color);
    border-radius: var(--primary_radius);
    padding: 10px 30px 9px;
    transition: 0.4s all;
}
.btn:hover {
    color: var(--primary_color);
    background: var(--accent_color);
    border: 1px solid var(--accent_color);
    transition: 0.4s all;
}
.btn:active {
    color: var(--primary_color) !important;
    background: var(--accent_color) !important;
    border: 1px solid var(--accent_color) !important;
    transition: 0.4s all;
}

/* Slider btn */
.slick-prev {
    width: 38px;
    height: 38px;
    background: var(--primary_color);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--primary_radius);
    z-index: 1;
}
.slick-prev:hover {
    background: var(--primary_color);
}
.slick-prev:focus {
    background: var(--primary_color);
}
.slick-next {
    width: 38px;
    height: 38px;
    background: var(--primary_color);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--primary_radius);
}
.slick-next:hover {
    background: var(--primary_color);
}
.slick-next:focus {
    background: var(--primary_color);
}
.slick-prev:before {
    content: "\f053";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--default_color) !important;
    opacity: 1;
}
.slick-next:before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--default_color) !important;
    opacity: 1;
}
/* Global Style End */

/* Preloader End */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--default_color);
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
}
.preloader.hide {
    opacity: 0;
    pointer-events: none;
}
.preloader img {
    max-width: 200px;
    max-height: 50px;
}
/* Preloader End */


/* Navbar Start */
.navbar-brand {
    max-width: 169px;
}
.d2c_navbar {
    padding: 10px 0px;
    background: var(--secondary_color);
}
.d2c_navbar .navbar-nav .nav-item {
    margin: 0px 21px;
    display: flex;
    align-items: center;
}
.d2c_navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}
.d2c_navbar .navbar-nav .nav-link {
    color: var(--primary_color);
    font-family: var(--secondary_font);
    font-weight: 600;
    font-size: 18px;
    transition: .4s all ease;
    padding: 10px 0px;
}
.d2c_navbar .navbar-nav .nav-link:hover {
    color: var(--accent_color);
    transition: .4s all ease;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--accent_color) !important;
}
.d2c_navbar .d2c_nav_btn.active{
    background: var(--secondary_color);
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
/* Nav Item Show from Side */
body .d2c_mobile_view {
    position: fixed;
    height: 100vh;
    inset: 0;
    opacity: 1;
}
.navbar.d2c_mobile_view_body .navbar-nav {
    width: 100%;
}
.navbar.d2c_mobile_view_body .nav-item {
    margin-right: 0;
}
.d2c_mobile_view .show_width {
    max-width: 14.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px;
    top: 0;
    transition: 0.5s;
    padding: 20px 15px;
    background-color: var(--primary_bg);
    overflow: scroll;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.d2c_mobile_view.show .show_width {
    right: 0;
    transition: 0.5s;
}
.hide_width {
    max-width: 15.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px !important;
    top: 0;
    transition: 0.5s !important;
    padding: 20px 15px;
    background-color: #021616;
    overflow: scroll;
    z-index: 9999;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    padding: 7px 10px;
    width: 44px;
    margin-left: 10px;
    transition: .4s all ease;
}
.navbar-toggler:hover {
    background: var(--primary_color);
    color: var(--default_color);
    transition: .4s all ease;
}
.d2c_cross_btn {
    width: auto;
    border: none;
}
@media only screen and (min-width:991px) {
    body .d2c_mobile_view {
        opacity: 0;
        transition: .5s;
    }
}
/* Navbar End */

/* Hero Section Start */
.d2c_hero_wrapper {
    background-image: url(../images/hero_bg_top.png), url(../images/hero_bg_bottom.png);
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: top left, bottom right;
}
h1 {
    font-size: 74px;
    font-weight: 300;
    line-height: 74px;
    text-transform: none;
    margin-bottom: 20px;
}
h1 span {
    font-weight: 600;
}
.d2c_hero_wrapper p {
    margin-bottom: 30px;
}
.d2c_hero_wrapper .d2c_img_wrapper {
    width: 100%;
    background-image: url(../images/hero_right_bg.png);
    background-position: 0px 72px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.d2c_hero_wrapper .d2c_img_wrapper .d2c_hero_img {
    border-radius: 0px 0px 222px 254px;
    padding-left: 50px;
}
.d2c_hero_btn {
    color: var(--primary_color);
    background: var(--accent_color);
    border: 1px solid var(--accent_color);
    transition: 0.4s all;
}
.d2c_hero_btn:hover {
    color: var(--secondary_color);
    background: var(--primary_color);
    border: 1px solid var(--primary_color);
    transition: 0.4s all;
}
.d2c_hero_wrapper .d2c_hero_card:nth-child(2) {
    position: absolute;
    top: 60px;
    left: 10px;
}
.d2c_hero_wrapper .d2c_hero_card:last-child {
    position: absolute;
    bottom: 0px;
    right: 30px;
}
.d2c_hero_card {
    background: var(--default_color);
    border-radius: var(--primary_radius);
    padding: 13px 24px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
    display: inline-block;
}
.d2c_hero_card p {
    font-family: var(--primary_font);
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 0px;
}
.d2c_hero_card .d2c_card_img_two {
    width: 37px;
    height: 37px;
    border: var(--primary_radius);
}
.d2c_hero_card ul {
    list-style-type: none;
    padding-left: 0;
}
.d2c_hero_card li {
    color: var(--accent_color);
    padding: 0px 5px;
}
.d2c_hero_card li:first-child {
    padding-left: 0;
}
.d2c_google_review_card {
    text-decoration: none;
}
.d2c_google_review_card[aria-disabled="true"] {
    cursor: default;
}
.d2c_google_review_card .d2c_google_icon {
    color: #4285F4;
    font-size: 22px;
    padding-right: 8px;
}
/* Hero Section End */



/* Partner Section Start */
.d2c_partner_wrapper {
    padding: 100px 0px;
    background: var(--secondary_color);
}
.d2c_partner {
    background: var(--default_color);
    border-radius: var(--primary_radius);
    padding: 44px 43px;
}
.d2c_partner .d2c_partner_img {
    max-width: 134px;
    max-height: 43px;
    margin: 0 auto;
}
.d2c_partner img {
    opacity: 0.5;
    margin: 0 auto;
    transition: 0.4s all;
}
.d2c_partner img:hover {
    opacity: 1;
    transition: 0.4s all;
}
.d2c_trust_item {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 8px;
    color: var(--primary_color);
    font-family: var(--primary_font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
    text-align: left;
}
.d2c_trust_item i {
    flex: 0 0 auto;
    color: var(--accent_color);
    font-size: 22px;
}
.d2c_partner_wrapper .slick-track {
    display: flex;
    align-items: center;
}
/* Partner Section End */

/* About Section Start */
.d2c_about_wrapper {
    background: var(--secondary_color);
}
.d2c_about_wrapper img {
    border-radius: var(--secondary_radius);
}
.d2c_about_left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.d2c_about_wrapper h2 {
    margin-bottom: 30px;
}
.d2c_about_wrapper p {
    margin-bottom: 30px;
}
.d2c_about_wrapper ul {
    list-style-type: none;
    padding-left: 0;
}
.d2c_about_wrapper ul li {
    color: var(--text_color);
    font-family: var(--secondary_font);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
.d2c_about_wrapper i {
    color: var(--primary_color);
    padding-right: 15px;
}
.d2c_about_segment {
    font-size: 27px;
    margin: 24px 0 14px;
}
/* About Section End */

/* Service Section Start */
.d2c_service_wrapper {
    background: var(--secondary_color);
}
.d2c_service_card_wrapper .d2c_card {
    background: var(--secondary_color);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100px -40px;
    padding: 50px 45px 55px;
    border-radius: var(--primary_radius);
    box-shadow: 5px 5px 22px 4px rgba(18, 29, 44, 0.05);
    transition: 0.4s all;
}
.d2c_service_wrapper h2 {
    margin-bottom: 10px;
}
.d2c_service_wrapper .d2c_title_content {
    margin-bottom: 70px;
}
.d2c_service_card_wrapper .d2c_card:hover {
    background: var(--primary_color);
    background-position: 100px -40px;
    transition: 0.4s all;
}
.d2c_service_card_wrapper div:first-child .d2c_card {
    background-image: url(../images/service_card_bg_one.png);
}
.d2c_service_card_wrapper div:nth-child(2) .d2c_card {
    background-image: url(../images/service_card_bg_two.png);
}
.d2c_service_card_wrapper div:nth-child(3) .d2c_card {
    background-image: url(../images/service_card_bg_three.png);
}
.d2c_service_card_wrapper div:nth-child(4) .d2c_card {
    background-image: url(../images/service_card_bg_four.png);
}
.d2c_service_card_wrapper div:nth-child(5) .d2c_card {
    background-image: url(../images/service_card_bg_five.png);
}
.d2c_service_card_wrapper div:last-child .d2c_card {
    background-image: url(../images/service_card_bg_six.png);
}
.d2c_service_card_wrapper i {
    width: 74px;
    height: 74px;
    background: var(--accent_color);
    font-size: 36px;
    color: var(--primary_color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--primary_radius);
    margin: 0 auto 40px;
}
.d2c_service_card_wrapper h3 {
    font-size: 30px;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 26px;
    transition: 0.4s all;
}
.d2c_service_card_wrapper .d2c_card:hover h3 {
    color: var(--secondary_color);
    transition: 0.4s all;
}
.d2c_service_card_wrapper p {
    transition: 0.4s all;
}
.d2c_service_card_wrapper .d2c_card:hover p {
    color: var(--secondary_color);
    transition: 0.4s all;
}
/* Service Section End */

/* Why Choose Us Section Start */
.d2c_choose_us_wrapper h2 {
    margin-bottom: 16px;
}
.d2c_choose_us_wrapper ul {
    list-style-type: none;
    padding-left: 0;
}
.d2c_choose_us_wrapper ul li {
    display: flex;
}
.d2c_choose_us_wrapper i {
    width: 40px;
    height: 40px;
    color: var(--primary_color);
    font-size: 24px;
    background: var(--accent_color);
    border-radius: var(--primary_radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.d2c_choose_us_wrapper h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0px;
}
.d2c_choose_us_content {
    flex: 1;
    min-width: 0;
}
.d2c_choose_us_content p {
    width: 100%;
    margin-bottom: 30px;
    line-height: 22px;
    text-align: left;
}
.d2c_choose_us_wrapper .d2c_img_wrapper {
    width: 260px;
    height: 280px;
}
.d2c_choose_us_wrapper img {
    border-radius: var(--secondary_radius);
}
/* Why Choose Us Section End */

/* Team Section Start */
.d2c_team_wrapper {
    padding: 100px 0px 180px;
}
.d2c_team_wrapper h2 {
    margin-bottom: 20px;
}
.d2c_team_wrapper .d2c_title_content {
    margin-bottom: 65px;
}
.d2c_team_wrapper .d2c_img_wrapper {
    width: 100%;
    height: 414px;
    position: relative;
    margin: 12px 0px 35px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(18, 29, 44, 0.1);
}
.d2c_team_wrapper img {
    border-radius: var(--primary_radius);
}
.d2c_team_wrapper .d2c_advisor_photo {
    object-fit: cover;
    object-position: center 30%;
}
.d2c_team_wrapper ul {
    list-style-type: none;
    padding-left: 0;
    background: linear-gradient(0deg, rgba(18, 29, 44, 0.96) 0%, rgba(18, 29, 44, 0.96) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s all;
}
.d2c_team_wrapper i {
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: var(--secondary_color);
    background: var(--text_color);
    border-radius: var(--primary_radius);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    margin: 10px;
    transition: 0.4s all;
}
.d2c_team_wrapper i:hover {
    color: var(--primary_color);
    background: var(--accent_color);
    transition: 0.4s all;
}
.d2c_team_wrapper .d2c_img_wrapper:hover ul {
    top: 0;
    transition: 0.4s all;
}
.d2c_team_wrapper .d2c_img_wrapper:hover i {
    opacity: 1;
    transition: 0.4s all;
}
.d2c_team_wrapper .slick-slide {
    padding: 0px 12px;
}
.d2c_team_wrapper h3 {
    font-size: 30px;
    margin-bottom: 0px;
}
.d2c_team_wrapper .slick-prev {
    top: 560px;
    left: 49%;
    transform: translateX(-51%);
}
.d2c_team_wrapper .slick-next {
    top: 560px;
    right: 43%;
    transform: translateX(-57%);
}
/* Team Section End */

/* Portfolio Section Start */
.d2c_portfolio_wrapper {
    background: var(--secondary_color);
    padding: 100px 0px 225px;
}
.d2c_portfolio_wrapper h2 {
    margin-bottom: 20px;
}
.d2c_portfolio_wrapper .d2c_title_content {
    margin-bottom: 0;
}
.d2c_solution_grid {
    margin-top: 55px;
}
.d2c_solution_card {
    height: 100%;
    padding: 32px;
    background: var(--default_color);
    border-radius: var(--primary_radius);
    border-top: 4px solid var(--accent_color);
    box-shadow: var(--box_shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.d2c_solution_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(18, 29, 44, 0.12);
}
.d2c_solution_card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    color: var(--primary_color);
    background: var(--accent_color);
    border-radius: var(--primary_radius);
    font-size: 24px;
}
.d2c_solution_card h3 {
    font-size: 29px;
    margin-bottom: 14px;
}
.d2c_solution_card p {
    margin-bottom: 0;
    text-align: left;
}
.d2c_risk_notice {
    max-width: 920px;
    margin: 30px auto 0 !important;
    font-size: 15px;
}
/* Portfolio Section End */

/* Call To Action Start */
.d2c_c2a_wrapper {
    width: 100%;
    background-image: url(../images/call_to_action_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 85px;
    border-radius: var(--primary_radius);
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.d2c_c2a_wrapper h2 {
    color: var(--accent_color);
    line-height: 0;
    padding-top: 9px;
}
.d2c_c2a_wrapper .btn {
    color: var(--primary_color);
    background: var(--accent_color);
    border: 1px solid var(--accent_color);
    transition: 0.4s all;
}
.d2c_c2a_wrapper .btn:hover {
    color: var(--secondary_color);
    background: transparent;
    border: 1px solid var(--secondary_color);
    transition: 0.4s all;
}
/* Call To Action End */

/* Testimonial Section Start */
.d2c_testimonial_wrapper {
    padding: 225px 0px 180px;
}
.d2c_testimonial_wrapper h2 {
    margin-bottom: 50px;
}
.d2c_testimonial_wrapper .d2c_card {
    position: relative;
}
.d2c_testimonial_wrapper .d2c_img_wrapper {
    width: 130px;
    height: 130px;
}
.d2c_testimonial_wrapper img {
    border-radius: var(--secondary_radius);
}
.d2c_testimonial_wrapper h5 {
    font-size: 41px;
    font-weight: 500;
    margin-bottom: 30px;
}
.d2c_testimonial_wrapper h3 {
    color: var(--accent_color);
    text-transform: none;
}
.d2c_slider {
    border-bottom: 1px solid rgba(74, 83, 96, 0.10);
    margin-bottom: 35px;
}
.d2c_testimonial_wrapper .slick-prev {
    top: 336px;
    left: 47%;
    transform: translateX(-53%);
}
.d2c_testimonial_wrapper .slick-next {
    top: 336px;
    right: 45%;
    transform: translateX(-55%);
}
/* Testimonial Section End */

/* Contact Section Start */
.d2c_contact_wrapper {
    background: var(--secondary_color);
}
.d2c_contact_wrapper p {
    margin-bottom: 40px;
}
.d2c_calendar_intro {
    max-width: 760px;
    margin: 0 auto 24px;
}
.d2c_booking_page {
    min-height: 760px;
    padding-top: 60px;
    background: var(--secondary_color);
}
.d2c_booking_page .d2c_calendar_intro h1 {
    color: var(--primary_color);
    font-family: var(--primary_font);
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 12px;
}
.d2c_booking_notice {
    max-width: 760px;
    margin: 40px auto;
    padding: 30px;
    text-align: center;
    background: var(--default_color);
    border-left: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
}
.d2c_booking_notice p {
    margin-bottom: 20px;
    text-align: center;
}
.d2c_calendar_intro p,
.d2c_calendar_fallback {
    text-align: center;
}
.d2c_calendar_intro p {
    margin-bottom: 0;
}
.d2c_cal_inline {
    min-height: 720px;
    overflow: hidden;
    background: var(--default_color);
    border-radius: var(--secondary_radius);
    box-shadow: 5px 5px 20px 4px rgba(18, 29, 44, 0.05);
}
.d2c_calendar_fallback {
    margin: 20px 0 0 !important;
    font-size: 15px;
}
.d2c_calendar_fallback a {
    color: var(--primary_color);
    font-weight: 500;
    text-decoration: underline;
}
.form-label {
    color: var(--primary_color);
    font-family: var(--primary_font);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
}
.form-control {
    color: var(--text_color);
    font-family: var(--secondary_font);
    font-size: 18px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: var(--primary_radius);
    background: var(--secondary_color);
    box-shadow: 5px 5px 20px 4px rgba(18, 29, 44, 0.05);
    border: 0;
    margin-bottom: 24px;
}
.form-control:focus {
    background: var(--secondary_color);
    border: 0;
    color: var(--text_color);
    box-shadow: 5px 5px 20px 4px rgba(18, 29, 44, 0.05) !important;
}
.form-control::placeholder {
    color: var(--text_color);
}
textarea {
    margin-bottom: 30px !important;
}
.d2c_form_group,
.d2c_consent {
    color: var(--text_color);
    font-family: var(--secondary_font);
    font-size: 16px;
    margin-bottom: 24px;
}
.d2c_form_group label {
    margin-bottom: 9px;
}
.d2c_form_group input,
.d2c_consent input {
    accent-color: var(--accent_color);
    margin-right: 7px;
}
.d2c_consent p,
.d2c_form_status {
    font-size: 14px;
    margin: 8px 0 0;
}
/* Contact Section End */

/* Footer Section Start */
.d2c_footer_wrapper {
    background: var(--primary_color);
    padding: 100px 0px 0px;
}
.d2c_footer_wrapper img {
    margin-bottom: 20px;
}
.d2c_footer_wrapper ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.d2c_footer_nav {
    flex-wrap: wrap;
}
.d2c_footer_wrapper i {
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: var(--secondary_color);
    background: var(--text_color);
    border-radius: var(--primary_radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    transition: 0.4s all;
}
.d2c_footer_wrapper i:hover {
    color: var(--primary_color);
    background: var(--accent_color);
    transition: 0.4s all;
}
.d2c_footer_nav li {
    padding: 0px 15px;
}
.d2c_footer_nav a {
    color: var(--secondary_color);
    font-family: var(--secondary_font);
    text-transform: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s all;
}
.d2c_footer_nav a:hover {
    color: var(--accent_color);
    transition: 0.4s all;
}
.d2c_footer_credentials {
    margin: -8px auto 24px;
    color: var(--secondary_color);
    font-size: 15px;
    opacity: 0.9;
}
.d2c_footer_credentials strong {
    font-weight: 500;
}
.d2c_footer_credentials a {
    color: var(--accent_color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.d2c_footer_credentials a:hover,
.d2c_footer_credentials a:focus-visible {
    color: var(--secondary_color);
}
.d2c_footer_credentials .d2c_footer_separator {
    padding: 0 8px;
}
.d2c_footer_warning {
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--secondary_color);
    font-size: 14px;
    opacity: 0.8;
}

/* Legal Pages Start */
.d2c_legal_page {
    background: var(--secondary_color);
}
.d2c_legal_header {
    padding: 24px 0;
    background: var(--secondary_color);
    border-bottom: 1px solid rgba(18, 29, 44, 0.08);
}
.d2c_legal_header .navbar-brand img {
    width: 169px;
}
.d2c_legal_hero {
    padding: 90px 0 70px;
    background: var(--secondary_color);
}
.d2c_legal_hero p {
    max-width: 760px;
    font-size: 18px;
}
.d2c_legal_notice {
    padding: 18px 22px;
    margin-top: 30px;
    background: var(--primary_color);
    color: var(--secondary_color);
    border-left: 5px solid var(--accent_color);
    border-radius: var(--primary_radius);
}
.d2c_legal_layout {
    padding: 0 0 100px;
}
.d2c_legal_nav,
.d2c_legal_content article {
    background: var(--default_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
}
.d2c_legal_nav {
    position: sticky;
    top: 24px;
    padding: 26px;
}
.d2c_legal_nav h3 {
    margin-bottom: 18px;
}
.d2c_legal_nav a {
    display: block;
    padding: 8px 0;
    color: var(--primary_color);
    border-bottom: 1px solid rgba(18, 29, 44, 0.08);
}
.d2c_legal_nav a:hover,
.d2c_legal_nav a[aria-current="page"] {
    color: var(--accent_color);
}
.d2c_legal_content article {
    padding: 34px;
    margin-bottom: 24px;
}
.d2c_legal_content article h2 {
    margin-bottom: 16px;
}
.d2c_legal_content li {
    margin-bottom: 8px;
}
.d2c_to_confirm {
    display: inline-block;
    padding: 3px 9px;
    color: var(--primary_color);
    background: rgba(239, 138, 84, 0.18);
    border-radius: 4px;
    font-weight: 700;
}
@media (max-width: 991px) {
    .d2c_legal_hero { padding: 60px 0 45px; }
    .d2c_legal_nav { position: static; margin-bottom: 30px; }
    .d2c_legal_layout { padding-bottom: 70px; }
}
/* Legal Pages End */

/* Solutions Detail Page Start */
.d2c_solutions_hero {
    padding: 90px 0 60px;
    background: var(--secondary_color);
}
.d2c_solutions_intro {
    max-width: 800px;
    font-size: 18px;
}
.d2c_solution_family {
    height: 100%;
    padding: 30px;
    background: var(--default_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
    border-top: 4px solid var(--accent_color);
}
.d2c_solution_family h2 { font-size: 30px; }
.d2c_solution_family ul { padding-left: 20px; margin-bottom: 0; }
.d2c_solution_family li { margin-bottom: 8px; }
.d2c_crypto_focus { color: var(--secondary_color); background: var(--primary_color); }
.d2c_crypto_focus h2, .d2c_crypto_focus p, .d2c_crypto_focus li { color: var(--secondary_color); }
.d2c_solutions_cta {
    width: 100%;
    padding: 42px 48px;
    background-color: var(--primary_color);
    background-image: url(../images/call_to_action_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--primary_radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
}
.d2c_solutions_cta_label {
    margin: 0 0 7px;
    color: var(--accent_color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: left;
    text-transform: uppercase;
}
.d2c_solutions_cta h2 {
    max-width: 720px;
    margin: 0;
    color: var(--accent_color);
    font-size: 40px;
    line-height: 1.05;
}
.d2c_solutions_cta .btn {
    flex: 0 0 auto;
    color: var(--primary_color);
    background: var(--accent_color);
    border-color: var(--accent_color);
}
.d2c_solutions_cta .btn:hover,
.d2c_solutions_cta .btn:focus-visible {
    color: var(--default_color);
    background: transparent;
    border-color: var(--default_color);
}
@media (max-width: 767px) {
    .d2c_solutions_cta {
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .d2c_solutions_cta h2 { font-size: 32px; }
}
/* Solutions Detail Page End */

/* Resources Page Start */
.d2c_resources_hero {
    padding: 92px 0 72px;
    background: var(--secondary_color);
}
.d2c_resources_hero h1 { max-width: 820px; margin-bottom: 18px; }
.d2c_resources_intro { max-width: 900px; }
.d2c_resources_quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.d2c_resources_quicklinks a {
    padding: 10px 16px;
    color: var(--primary_color);
    background: var(--default_color);
    border: 1px solid rgba(18, 29, 44, 0.14);
    border-radius: var(--primary_radius);
    font-family: var(--secondary_font);
    font-weight: 600;
    transition: 0.3s ease;
}
.d2c_resources_quicklinks a:hover,
.d2c_resources_quicklinks a:focus-visible {
    color: var(--primary_color);
    background: var(--accent_color);
    border-color: var(--accent_color);
}
.d2c_resources_section { scroll-margin-top: 20px; }
.d2c_resources_section_alt { background: var(--secondary_color); }
.d2c_resources_heading { max-width: 900px; margin-bottom: 38px; }
.d2c_resources_heading h2 { margin-bottom: 14px; }
.d2c_resource_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    background: var(--default_color);
    border-top: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
}
.d2c_resources_section:not(.d2c_resources_section_alt) .d2c_resource_card {
    background: var(--secondary_color);
}
.d2c_resource_card_technical { border-top-color: var(--primary_color); }
.d2c_resource_category {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent_color);
    font-family: var(--secondary_font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.d2c_resource_card h3 { margin-bottom: 12px; font-size: 32px; }
.d2c_resource_card > p { font-size: 16px; }
.d2c_resource_tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.d2c_resource_tags span {
    padding: 6px 10px;
    color: var(--primary_color);
    background: rgba(239, 138, 84, 0.14);
    border-radius: var(--primary_radius);
    font-family: var(--secondary_font);
    font-size: 13px;
    font-weight: 600;
}
.d2c_resource_card details {
    margin-top: 20px;
    border-top: 1px solid rgba(18, 29, 44, 0.12);
}
.d2c_resource_card summary {
    padding: 18px 0 0;
    color: var(--primary_color);
    cursor: pointer;
    font-family: var(--secondary_font);
    font-weight: 700;
}
.d2c_resource_card details > div { padding-top: 16px; }
.d2c_resource_card details p { font-size: 15px; }
.d2c_resource_card details a {
    color: #005FCC;
    font-family: var(--secondary_font);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.d2c_resource_sources { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.d2c_resource_sources span { color: rgba(18, 29, 44, 0.45); }
.d2c_resources_notice {
    margin-top: 50px;
    padding: 40px;
    color: var(--default_color);
    background: var(--primary_color);
    border-left: 5px solid var(--accent_color);
    border-radius: var(--primary_radius);
}
.d2c_resources_notice h2,
.d2c_resources_notice p { color: var(--default_color); }
.d2c_resources_notice p { max-width: 980px; font-size: 16px; }
.d2c_resources_notice .btn {
    margin-top: 8px;
    color: var(--primary_color);
    background: var(--accent_color);
    border-color: var(--accent_color);
}
.d2c_resources_notice .btn:hover { color: var(--primary_color); background: var(--default_color); border-color: var(--default_color); }
@media (max-width: 767px) {
    .d2c_resources_hero { padding: 62px 0 48px; }
    .d2c_resources_section { padding: 62px 0; }
    .d2c_resources_intro { font-size: 16px; }
    .d2c_resources_quicklinks { gap: 8px; }
    .d2c_resources_quicklinks a { padding: 8px 11px; font-size: 14px; }
    .d2c_resources_heading { margin-bottom: 26px; }
    .d2c_resource_card { padding: 24px 20px; }
    .d2c_resource_card h3 { font-size: 28px; }
    .d2c_resources_notice { margin-top: 36px; padding: 28px 20px; }
}

/* Resource detail pages */
.d2c_resource_detail_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--primary_color);
    font-weight: 700;
    text-decoration: none;
}
.d2c_resource_detail_link span { color: var(--accent_color); font-size: 22px; line-height: 1; }
.d2c_resource_detail_link:hover,
.d2c_resource_detail_link:focus-visible { color: var(--accent_color); }
.d2c_resource_detail_hero {
    padding: 72px 0 64px;
    background: var(--secondary_color);
    border-bottom: 1px solid rgba(18, 29, 44, .06);
}
.d2c_resource_detail_hero h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(48px, 6vw, 72px);
    line-height: .96;
}
.d2c_resource_breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; font-size: 14px; }
.d2c_resource_breadcrumb a { color: var(--accent_color); font-weight: 700; }
.d2c_resource_breadcrumb span { color: rgba(18, 29, 44, .62); }
.d2c_resource_detail_intro { max-width: 860px; margin-bottom: 0; font-size: 20px; line-height: 1.65; text-align: left; }
.d2c_resource_detail_meta { margin-top: 22px; color: rgba(18, 29, 44, .62); font-size: 14px; }
.d2c_resource_detail_content { padding: 80px 0; }
.d2c_resource_summary {
    padding: 36px 40px;
    margin-bottom: 42px;
    background: var(--default_color);
    border-left: 4px solid var(--accent_color);
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(18, 29, 44, .08);
}
.d2c_resource_summary h2 { margin-bottom: 20px; }
.d2c_resource_summary ul,
.d2c_resource_risk_block ul,
.d2c_resource_sources_block ul { margin: 0; padding-left: 22px; }
.d2c_resource_summary li,
.d2c_resource_risk_block li,
.d2c_resource_sources_block li { margin-bottom: 10px; }
.d2c_resource_detail_grid { align-items: stretch; }
.d2c_resource_detail_block,
.d2c_resource_risk_block,
.d2c_resource_sources_block { height: 100%; padding: 34px; border-radius: 8px; }
.d2c_resource_detail_block { border: 1px solid rgba(18, 29, 44, .1); background: #fff; }
.d2c_resource_risk_block { background: rgba(239, 138, 84, .12); border-top: 4px solid var(--accent_color); }
.d2c_resource_sources_block { background: var(--secondary_color); }
.d2c_resource_detail_block h2,
.d2c_resource_risk_block h2,
.d2c_resource_sources_block h2 { margin-bottom: 18px; font-size: 32px; }
.d2c_resource_sources_block a { color: var(--primary_color); font-weight: 700; text-decoration: underline; text-decoration-color: var(--accent_color); text-underline-offset: 4px; }
.d2c_resource_detail_notice { margin: 42px 0; padding: 24px 28px; background: var(--primary_color); color: var(--default_color); border-radius: 8px; }
.d2c_related_resources { margin-top: 60px; }
.d2c_related_resources h2 { margin-bottom: 24px; }
.d2c_related_resource { display: block; height: 100%; padding: 24px; border: 1px solid rgba(18, 29, 44, .1); border-radius: 8px; background: #fff; text-decoration: none; transition: .25s ease; }
.d2c_related_resource span { display: block; margin-bottom: 8px; color: var(--accent_color); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.d2c_related_resource strong { color: var(--primary_color); font-family: var(--secondary_font); font-size: 27px; }
.d2c_related_resource:hover,
.d2c_related_resource:focus-visible { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(18, 29, 44, .09); }
.d2c_resource_detail_cta {
    width: 100%;
    margin-top: 60px;
    padding: 42px 48px;
    background-color: var(--primary_color);
    background-image: url(../images/call_to_action_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--primary_radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
}
.d2c_resource_detail_cta_label {
    margin: 0 0 7px;
    color: var(--accent_color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: left;
    text-transform: uppercase;
}
.d2c_resource_detail_cta h2 {
    max-width: 700px;
    margin: 0;
    color: var(--accent_color);
    font-size: 40px;
    line-height: 1.05;
}
.d2c_resource_detail_cta .btn {
    flex: 0 0 auto;
    color: var(--primary_color);
    background: var(--accent_color);
    border-color: var(--accent_color);
}
.d2c_resource_detail_cta .btn:hover,
.d2c_resource_detail_cta .btn:focus-visible {
    color: var(--default_color);
    background: transparent;
    border-color: var(--default_color);
}
@media (max-width: 767px) {
    .d2c_resource_detail_hero { padding: 58px 0 48px; }
    .d2c_resource_detail_hero h1 { font-size: clamp(42px, 14vw, 56px); }
    .d2c_resource_breadcrumb { margin-bottom: 28px; }
    .d2c_resource_detail_intro { font-size: 17px; }
    .d2c_resource_detail_content { padding: 58px 0; }
    .d2c_resource_summary,
    .d2c_resource_detail_block,
    .d2c_resource_risk_block,
    .d2c_resource_sources_block { padding: 25px 21px; }
    .d2c_resource_detail_block h2,
    .d2c_resource_risk_block h2,
    .d2c_resource_sources_block h2 { font-size: 28px; }
    .d2c_resource_detail_cta {
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .d2c_resource_detail_cta h2 { font-size: 32px; }
}
/* Resources Page End */

/* Pricing Page Start */
.d2c_pricing_hero {
    padding: 92px 0 72px;
    background: var(--secondary_color);
}
.d2c_pricing_hero h1 {
    max-width: 820px;
    margin-bottom: 18px;
}
.d2c_section_label {
    margin-bottom: 8px;
    color: var(--accent_color);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.d2c_pricing_intro,
.d2c_pricing_heading > p:last-child {
    max-width: 900px;
    font-size: 18px;
}
.d2c_pricing_section {
    padding: 88px 0;
}
.d2c_pricing_section_alt {
    background: var(--secondary_color);
}
.d2c_pricing_heading {
    margin-bottom: 32px;
}
.d2c_pricing_heading h2 {
    margin-bottom: 14px;
}
.d2c_pricing_panel {
    overflow: hidden;
    background: var(--default_color);
    border: 1px solid rgba(18, 29, 44, 0.09);
    border-top: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
}
.d2c_pricing_table_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.d2c_pricing_table_wrap:focus-visible {
    outline: 3px solid var(--accent_color);
    outline-offset: -3px;
}
.d2c_pricing_table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    color: var(--primary_color);
}
.d2c_offers_table {
    min-width: 1060px;
}
.d2c_numeric_table {
    min-width: 720px;
}
.d2c_pricing_table th,
.d2c_pricing_table td {
    padding: 20px 22px;
    border-bottom: 1px solid rgba(18, 29, 44, 0.1);
    vertical-align: top;
}
.d2c_pricing_table thead th {
    color: var(--default_color);
    background: var(--primary_color);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
.d2c_pricing_table tbody th {
    font-size: 18px;
    font-weight: 700;
}
.d2c_pricing_table tbody tr:nth-child(even) {
    background: rgba(247, 247, 253, 0.7);
}
.d2c_pricing_table tbody tr:last-child th,
.d2c_pricing_table tbody tr:last-child td {
    border-bottom: 0;
}
.d2c_offers_table th:nth-child(1) { width: 16%; }
.d2c_offers_table th:nth-child(2) { width: 17%; }
.d2c_offers_table th:nth-child(3) { width: 20%; }
.d2c_offers_table th:nth-child(4) { width: 47%; }
.d2c_numeric_table th:not(:first-child),
.d2c_numeric_table td {
    text-align: right;
    white-space: nowrap;
}
.d2c_pricing_note {
    margin: 0;
    padding: 20px 22px;
    color: rgba(18, 29, 44, 0.82);
    background: rgba(239, 138, 84, 0.1);
    border-top: 1px solid rgba(18, 29, 44, 0.08);
}
.d2c_pricing_cta {
    margin-top: 56px;
    padding: 46px 28px;
    color: var(--default_color);
    background: var(--primary_color);
    border-radius: var(--primary_radius);
}
.d2c_pricing_cta h2,
.d2c_pricing_cta p {
    color: var(--default_color);
}
.d2c_pricing_cta p {
    margin: 8px auto 22px;
}
.d2c_fee_comparison_panel {
    overflow: hidden;
    background: var(--default_color);
    border: 1px solid rgba(18, 29, 44, 0.09);
    border-top: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
}
.d2c_fee_assumptions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(18, 29, 44, 0.1);
}
.d2c_fee_assumptions span {
    padding: 18px 16px;
    color: var(--primary_color);
    text-align: center;
    border-right: 1px solid rgba(18, 29, 44, 0.1);
}
.d2c_fee_assumptions span:last-child { border-right: 0; }
.d2c_fee_chart_scroll {
    overflow-x: auto;
    padding: 22px 18px 8px;
    -webkit-overflow-scrolling: touch;
}
.d2c_fee_chart_scroll:focus-visible {
    outline: 3px solid var(--accent_color);
    outline-offset: -3px;
}
.d2c_fee_chart {
    display: block;
    width: 100%;
    min-width: 720px;
    height: auto;
}
.d2c_fee_chart text {
    font-family: var(--secondary_font);
    fill: #5A6472;
}
.d2c_fee_chart .d2c_chart_grid { stroke: rgba(18, 29, 44, 0.12); stroke-width: 1; }
.d2c_fee_chart .d2c_chart_axis { stroke: rgba(18, 29, 44, 0.45); stroke-width: 1.5; }
.d2c_fee_chart .d2c_chart_line { fill: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.d2c_fee_chart .d2c_chart_market { stroke-width: 3; }
.d2c_fee_legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    padding: 8px 22px 24px;
    color: var(--primary_color);
}
.d2c_fee_legend span { display: inline-flex; align-items: center; gap: 8px; }
.d2c_fee_key { display: inline-block; width: 28px; height: 4px; border-radius: 4px; }
.d2c_fee_key_market_cto { background: #A8AFB8; }
.d2c_fee_key_market_av { background: #5B6574; }
.d2c_fee_key_perenea_cto { background: var(--accent_color); }
.d2c_fee_key_perenea_av { background: var(--primary_color); }
.d2c_fee_gain_grid { margin-top: 28px; row-gap: 22px; }
.d2c_fee_gain_card {
    display: grid;
    height: 100%;
    padding: 26px;
    background: var(--default_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
    border-top: 4px solid rgba(18, 29, 44, 0.25);
}
.d2c_fee_gain_card_featured { border-top-color: var(--accent_color); }
.d2c_fee_gain_card p { margin-bottom: 12px; color: var(--primary_color); font-weight: 700; text-align: left; }
.d2c_fee_gain_card strong { color: var(--accent_color); font-family: var(--primary_font); font-size: 34px; line-height: 1; }
.d2c_fee_gain_card span { margin: 5px 0 18px; color: #5A6472; }
.d2c_fee_gain_card span:last-child { margin-bottom: 0; }
.d2c_fee_sources {
    margin-top: 28px;
    background: var(--default_color);
    border: 1px solid rgba(18, 29, 44, 0.12);
    border-radius: var(--primary_radius);
}
.d2c_fee_sources summary {
    padding: 20px 24px;
    color: var(--primary_color);
    cursor: pointer;
    font-weight: 700;
}
.d2c_fee_sources_content { padding: 0 24px 24px; }
.d2c_fee_sources_content h3 { margin-top: 22px; font-size: 26px; }
.d2c_fee_sources_content li { margin-bottom: 8px; }
.d2c_fee_sources_content a { color: #005FCC; text-decoration: underline; }

/* Referral Page Start */
.d2c_referral_hero .d2c_pricing_intro { max-width: 920px; }
.d2c_referral_draft {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    max-width: 920px;
    margin-top: 28px;
    padding: 18px 22px;
    color: var(--primary_color);
    background: rgba(239, 138, 84, 0.12);
    border-left: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
    font-family: var(--secondary_font);
}
.d2c_referral_benefits article,
.d2c_referral_panel {
    height: 100%;
    padding: 30px;
    background: var(--default_color);
    border-top: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
}
.d2c_referral_benefits article > strong {
    color: var(--accent_color);
    font-family: var(--primary_font);
    font-size: 48px;
    line-height: 1;
}
.d2c_referral_benefits sup { font-size: 22px; }
.d2c_referral_benefits h3,
.d2c_referral_panel h3,
.d2c_referral_steps h3,
.d2c_referral_contract h3 { margin: 12px 0 8px; font-size: 28px; }
.d2c_referral_benefits p,
.d2c_referral_panel p,
.d2c_referral_steps p,
.d2c_referral_contract p { margin-bottom: 0; font-size: 16px; }
.d2c_referral_calculator {
    overflow: hidden;
    background: var(--default_color);
    border-top: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
    box-shadow: var(--box_shadow);
}
.d2c_referral_inputs,
.d2c_referral_results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 30px;
}
.d2c_referral_inputs label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary_color);
    font-family: var(--secondary_font);
    font-weight: 700;
}
.d2c_referral_inputs input {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--primary_color);
    background: var(--secondary_color);
    border: 1px solid rgba(18, 29, 44, 0.22);
    border-radius: var(--primary_radius);
    font: 500 18px var(--secondary_font);
}
.d2c_referral_inputs input:focus {
    outline: 3px solid rgba(239, 138, 84, 0.28);
    border-color: var(--accent_color);
}
.d2c_referral_input_group { display: flex; align-items: stretch; }
.d2c_referral_input_group input { border-radius: var(--primary_radius) 0 0 var(--primary_radius); }
.d2c_referral_input_group span {
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--default_color);
    background: var(--primary_color);
    border-radius: 0 var(--primary_radius) var(--primary_radius) 0;
    font-family: var(--secondary_font);
    white-space: nowrap;
}
.d2c_referral_results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    color: var(--default_color);
    background: var(--primary_color);
}
.d2c_referral_results div { display: flex; flex-direction: column; gap: 7px; }
.d2c_referral_results span { color: rgba(255, 255, 255, 0.76); font-family: var(--secondary_font); }
.d2c_referral_results strong { color: var(--accent_color); font: 600 36px/1 var(--primary_font); }
.d2c_referral_result_main { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.d2c_referral_privacy {
    margin: 0;
    padding: 15px 30px;
    color: rgba(18, 29, 44, 0.72);
    background: rgba(239, 138, 84, 0.08);
    font-size: 14px;
    text-align: center;
}
.d2c_referral_credit_status {
    margin: 0;
    padding: 15px 30px 0;
    color: var(--primary_color);
    background: rgba(239, 138, 84, 0.08);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}
.d2c_referral_steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.d2c_referral_steps li {
    display: flex;
    gap: 20px;
    padding: 26px;
    background: var(--secondary_color);
    border-radius: var(--primary_radius);
}
.d2c_referral_steps li > span {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--primary_color);
    background: var(--accent_color);
    border-radius: var(--primary_radius);
    font: 600 26px var(--primary_font);
}
.d2c_referral_steps h3 { margin-top: 0; }
.d2c_referral_panel ul { margin: 18px 0; padding-left: 20px; }
.d2c_referral_panel li { margin-bottom: 9px; color: var(--text_color); font-family: var(--secondary_font); }
.d2c_referral_panel a { color: #005FCC; text-decoration: underline; }
.d2c_referral_details { margin-top: 28px; }
.d2c_referral_details details {
    margin-bottom: 14px;
    background: var(--default_color);
    border: 1px solid rgba(18, 29, 44, 0.12);
    border-radius: var(--primary_radius);
}
.d2c_referral_details summary {
    padding: 20px 24px;
    color: var(--primary_color);
    cursor: pointer;
    font-family: var(--secondary_font);
    font-weight: 700;
}
.d2c_referral_details details > div { padding: 0 24px 22px; }
.d2c_referral_details p { font-size: 16px; }
.d2c_referral_contract {
    margin-top: 28px;
    padding: 26px 30px;
    background: rgba(239, 138, 84, 0.12);
    border-left: 4px solid var(--accent_color);
    border-radius: var(--primary_radius);
}
.d2c_referral_contract h3 { margin-top: 0; }
/* Referral Page End */

@media (max-width: 767px) {
    .d2c_booking_page { min-height: 0; padding-top: 40px; }
    .d2c_booking_page .d2c_calendar_intro h1 { font-size: 38px; }
    .d2c_cal_inline { min-height: 780px; }
    .d2c_booking_notice { padding: 24px 20px; }
    .d2c_pricing_hero { padding: 62px 0 48px; }
    .d2c_pricing_section { padding: 62px 0; }
    .d2c_pricing_intro,
    .d2c_pricing_heading > p:last-child { font-size: 16px; }
    .d2c_pricing_table th,
    .d2c_pricing_table td { padding: 16px; }
    .d2c_pricing_heading { margin-bottom: 24px; }
    .d2c_pricing_cta { margin-top: 40px; padding: 36px 20px; }
    .d2c_fee_assumptions { grid-template-columns: repeat(2, 1fr); }
    .d2c_fee_assumptions span:nth-child(2) { border-right: 0; }
    .d2c_fee_assumptions span:nth-child(-n+2) { border-bottom: 1px solid rgba(18, 29, 44, 0.1); }
    .d2c_fee_chart_scroll { padding-inline: 12px; }
    .d2c_fee_legend { justify-content: flex-start; padding-inline: 16px; }
    .d2c_fee_gain_card strong { font-size: 30px; }
    .d2c_fee_sources summary { padding: 18px; }
    .d2c_fee_sources_content { padding: 0 18px 18px; }
    .d2c_referral_draft { padding: 16px 18px; }
    .d2c_referral_benefits article,
    .d2c_referral_panel { padding: 24px 20px; }
    .d2c_referral_inputs,
    .d2c_referral_results,
    .d2c_referral_steps { grid-template-columns: 1fr; }
    .d2c_referral_inputs,
    .d2c_referral_results { padding: 24px 20px; }
    .d2c_referral_result_main { padding: 18px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
    .d2c_referral_steps li { padding: 22px 18px; }
    .d2c_referral_steps li > span { flex-basis: 42px; width: 42px; height: 42px; }
    .d2c_referral_details summary { padding: 18px; }
    .d2c_referral_details details > div { padding: 0 18px 18px; }
    .d2c_referral_contract { padding: 22px 20px; }
}
/* Pricing Page End */
/* Footer Section End */

/* Copy Right Section Start */
.d2c_copy_right_wrapper {
    padding: 25px 0px;
    position: relative;
    border-top: 1px solid rgba(247, 247, 253, 0.05);
}
.d2c_copy_right_wrapper p {
    color: var(--accent_color);
}
.d2c_copy_right_wrapper a {
    color: var(--accent_color);
    font-weight: 700;
    transition: 0.4s all;
}
.d2c_copy_right_wrapper a:hover {
    color: var(--secondary_color);
    transition: 0.4s all;
}
/* Copy Right Section End */

/* Scroll Button Start */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#scrollBtn.show {
    display: block;
}
#scrollBtn a i {
    background: var(--secondary_color);
    font-size: 20px;
    color: var(--primary_color);
    border-radius: 4px;
    width: 35px;
    height: 35px;
    position: fixed;
    z-index: 9999;
    bottom: 3%;
    right: 5%;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary_color);
}
#scrollBtn a i:hover {
    color: var(--default_color);
    background: var(--accent_color);
    border: 2px solid var(--accent_color);
    transition: all ease 0.4s;
}
/* Scroll Button End */


/* 
    Template Name: {{ArtistaXpress – Free Bootstrap Creative Agency Website Template}}
    Template URL: {{https://www.designtocodes.com/product/artistaxpress-free-bootstrap-website-template}}
    Description: {{ArtistaXpress is a free Bootstrap website template specially designed for creative agencies. This template is perfect for creative agencies, business startups, web agencies, and digital agencies.}}
    Author: DesignToCodes
    Author URL: https://www.designtocodes.com
    Text Domain: {{ ArtistaXpress }}
 */
