* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}.dbhead_bar {
    flex: 1 0 auto;
}.dbachieve_cta {
    flex: 0 0 auto;
}.dbframework-wrap {
    height: 100%;
    flex-direction: column;
    display: flex;
    min-height: 100%;
}header,footer {
    width: 100%;
}svg {
    width: 30px;
    height: 30px;
}html,body {
    height: 100%;
    scroll-behavior: smooth;
    min-height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
}a {
    text-decoration: none;
    color: inherit;
}.container {
    width: 1273px;
    margin: auto;
    max-width: 100%;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.dbty_page {
    background: linear-gradient(135deg, rgb(205,218,218) 0%, rgb(168,183,183,0.5) 100%);
    padding: 6rem 1.5rem;
    overflow: hidden;
    position: relative;
}.dbty_page::before {
    z-index: 1;
    background: radial-gradient(circle at 70% 30%, rgb(255, 255, 255, 0.5) 0%, transparent 60%);
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}.dbty_page::after {
    width: 20rem;
    right: -5rem;
    transform: rotate(15deg);
    opacity: 0.15;
    content: "";
    animation: float 15s ease-in-out infinite;
    height: 20rem;
    bottom: -5rem;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    position: absolute;
    background: linear-gradient(225deg, rgb(168,183,183) 0%, transparent 70%);
    z-index: 0;
}.dbty_page .container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    gap: 3rem;
    margin: 0 auto;
}.dbty_page h2 {
    animation: slideIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    font-family: Arial, sans-serif;
    margin: 0;
    font-size: 28px;
    transform: translateY(-10px);
    position: relative;
    max-width: 90%;
    opacity: 0;
    font-weight: 700;
    color: rgb(168,183,183);
    line-height: 1.3;
}.dbty_page h2::after {
    transform-origin: left;
    width: 6rem;
    position: absolute;
    height: 3px;
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(168,183,183) 0%, rgb(132,148,148) 100%);
    bottom: -1rem;
    animation: lineExpand 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
    transform: scaleX(0);
}.dbty_page .dbmentor_values {
    padding: 2.5rem;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07), 
                0 1px 8px rgba(0, 0, 0, 0.04);
    background: #ffffff;
    opacity: 0;
    animation: popUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 1.5rem), 
        calc(100% - 1.5rem) 100%, 
        0 100%
    );
    position: relative;
}.dbty_page .dbmentor_values::before {
    opacity: 0.04;
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, transparent 0%, rgb(168,183,183,0.5) 300%);
    height: 100%;
    width: 100%;
    left: 0;
}.dbty_page ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.dbty_page li {
    padding-left: 2.5rem;
    position: relative;
}.dbty_page li::before {
    border-radius: 10px;
    background: rgb(168,183,183,0.5);
    position: absolute;
    top: 0.5rem;
    animation: pulse 4s ease-in-out infinite;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    transform: rotate(45deg);
    opacity: 0.2;
    left: 0;
}.dbty_page li::after {
    font-size: 1rem;
    content: "✓";
    position: absolute;
    color: rgb(168,183,183);
    left: 0.45rem;
    top: 0.4rem;
    font-weight: 700;
}.dbty_page span {
    font-size: 14px;
    display: block;
    line-height: 1.8;
    font-weight: 400;
    color: #000000;
    font-family: Arial, sans-serif;
}

@keyframes slideIn {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(45deg) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(17deg) translateY(-20px);
    }
}

@media (max-width: 992px) {.dbty_page {
    padding: 5rem 1.25rem;
}.dbty_page h2 {
    font-size: calc(28px - 0.25rem);
    max-width: 100%;
}.dbty_page .dbmentor_values {
    padding: 2rem;
}
}

@media (max-width: 768px) {.dbty_page {
    padding: 4rem 1.25rem;
}.dbty_page h2 {
    font-size: calc(28px - 0.5rem);
}.dbty_page .dbmentor_values {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 1rem), 
            calc(100% - 1rem) 100%, 
            0 100%
        );
    padding: 1.75rem;
}.dbty_page li {
    padding-left: 2rem;
}
}

@media (max-width: 576px) {.dbty_page {
    padding: 3rem 1rem;
}.dbty_page h2 {
    font-size: calc(28px - 0.75rem);
}.dbty_page .dbmentor_values {
    padding: 1.5rem;
}.dbty_page h2::after {
    width: 4rem;
}.dbty_page li::before {
    top: 0.3rem;
    height: 1.25rem;
    width: 1.25rem;
}.dbty_page li::after {
    font-size: 0.9rem;
    top: 0.25rem;
    left: 0.35rem;
}.dbty_page span {
    font-size: calc(14px - 0.1rem);
}}footer {
    position: relative;
}footer::before {
    left: 0;
    right: 0;
    position: absolute;
    opacity: 0.92;
    z-index: 1;
    bottom: 0;
    background: linear-gradient(90deg, #000000 0%, rgb(168,183,183) 150%);
    top: 0;
    content: '';
}.dbachieve_cta {
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
    padding: 70px 0;
    z-index: 2;
}.dbachieve_cta .container {
    flex-wrap: wrap;
    display: flex;
    gap: 40px;
}.dbachieve_cta .company_holder {
    border-radius: 12px 0 12px 0;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}.dbachieve_cta .company_holder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}.dbachieve_cta .company_holder::before {
    top: 0;
    content: '';
    width: 100%;
    left: 0;
    background: rgb(168,183,183);
    position: absolute;
    height: 5px;
}.dbachieve_cta .company_holder h3 {
    position: relative;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
    font-size: 34px;
    color: #ffffff;
}.dbachieve_cta .company_holder h3::after {
    width: 60px;
    position: absolute;
    bottom: -8px;
    left: 0;
    content: '';
    height: 3px;
    background: rgb(132,148,148);
}.dbachieve_cta .dbdata_viz {
    color: #ffffff;
    line-height: 1.6;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}.dbachieve_cta .dbtemplate_cta {
    position: relative;
}.dbachieve_cta .dbtop_know {
    justify-content: space-between;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}.dbachieve_cta .dbnav_primary {
    flex: 0 0 calc(50% - 15px);
    position: relative;
}.dbachieve_cta .dbnav_primary h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
    border-left: 3px solid rgb(168,183,183);
    padding-left: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}.dbachieve_cta .dbnav_primary .dbtop_know {
    flex-direction: column;
    gap: 12px;
    display: flex;
}.dbachieve_cta .dbnav_primary .dbtop_know a {
    border-radius: 4px;
    z-index: 1;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-size: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    overflow: hidden;
}.dbachieve_cta .dbnav_primary .dbtop_know a::before {
    background: rgb(168,183,183,0.5);
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    transition: width 0.3s ease;
    height: 100%;
    content: '';
    width: 0;
}.dbachieve_cta .dbnav_primary .dbtop_know a:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    transform: translateX(5px);
}.dbachieve_cta .dbnav_primary .dbtop_know a:hover::before {
    width: 100%;
}.dbsustain_cta {
    z-index: 2;
    padding: 20px 0;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}.dbsustain_cta .container {
    display: flex;
    justify-content: center;
    align-items: center;
}.dbsustain_cta .dbcheat_sheet {
    color: #ffffff;
    letter-spacing: 0.5px;
    font-size: 16px;
    text-align: center;
}@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

footer::after {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    background: 
        linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
    background-size: 40px 40px;
}

@media (max-width: 992px) {.dbachieve_cta .container {
    flex-direction: column;
}
}

@media (max-width: 768px) {.dbachieve_cta {
    padding: 50px 0;
}.dbachieve_cta .dbnav_primary {
    flex: 0 0 100%;
}
}

@media (max-width: 576px) {.dbachieve_cta {
    padding: 40px 0;
}.dbachieve_cta .company_holder h3 {
    font-size: calc(34px * 0.8);
}.dbachieve_cta .dbnav_primary h5 {
    font-size: calc(22px * 0.9);
}.dbachieve_cta .dbnav_primary .dbtop_know a,
    .dbachieve_cta .footer_agreement {
    font-size: calc(12px * 0.95);
}}

.dbsustain_cta::before {
    position: absolute;
    height: 1px;
    content: '';
    opacity: 0.2;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}.dbcourse_instructor {
    overflow: hidden;
    position: relative;
    background: rgb(205,218,218);
    padding: 5rem 2rem;
}.dbcourse_instructor::before {
    background: linear-gradient(120deg, rgb(168,183,183,0.5) 0%, transparent 70%);
    left: 0;
    position: absolute;
    top: 0;
    z-index: 0;
    content: "";
    height: 100%;
    width: 100%;
}.dbcourse_instructor::after {
    position: absolute;
    height: 70%;
    right: 0;
    z-index: 0;
    bottom: 0;
    content: "";
    width: 70%;
    background: linear-gradient(210deg, rgb(132,148,148,0.5) 0%, transparent 70%);
}.dbcourse_instructor .dbfeedback_story {
    margin: 0 auto;
    z-index: 1;
    position: relative;
    flex-direction: column;
    max-width: 600px;
    display: flex;
}.dbcourse_instructor .dbphoto_frame {
    position: relative;
    transform: translateY(0);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    height: 400px;
    width: 80%;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
    z-index: 2;
    overflow: hidden;
    border-radius: 16px;
}.dbcourse_instructor .dbphoto_frame::before {
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    left: 0;
    position: absolute;
    content: "";
}.dbcourse_instructor .dbphoto_frame::after {
    top: -100%;
    transition: all 0.8s ease;
    background: linear-gradient(45deg, rgb(168,183,183,0.5) 0%, transparent 40%, transparent 60%, rgb(132,148,148,0.5) 100%);
    width: 300%;
    mix-blend-mode: overlay;
    opacity: 0.3;
    height: 300%;
    animation: shiftGradient 10s infinite alternate;
    content: "";
    position: absolute;
    left: -100%;
}.dbcourse_instructor .dbemp_container {
    background: #ffffff;
    transform: translateY(0);
    padding: 2.5rem 2rem 2rem;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 3;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    margin: -80px auto 0;
    border-radius: 16px;
}.dbcourse_instructor .dbemp_container::before {
    height: 70px;
    transform: translate(-50%, -50%);
    width: 70px;
    top: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 4;
    position: absolute;
    left: 50%;
    border-radius: 50%;
    border: 5px solid rgb(205,218,218);
    content: "";
    background: #ffffff;
}.dbcourse_instructor .name {
    color: rgb(168,183,183);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 31px;
    position: relative;
    font-weight: 700;
}.dbcourse_instructor .dbemp_container div:nth-child(2) {
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 19px;
    font-weight: 600;
    color: rgb(132,148,148);
}.dbcourse_instructor .dbemp_container div:nth-child(2)::after {
    height: 3px;
    width: 40px;
    display: block;
    margin: 1rem auto 0;
    background: rgb(168,183,183,0.5);
    content: "";
}.dbcourse_instructor .dbpast_experience {
    line-height: 1.7;
    padding: 0 1rem;
    font-style: italic;
    position: relative;
    color: #000000;
    font-size: 18px;
    text-align: center;
}.dbcourse_instructor .dbpast_experience::before,
.dbcourse_instructor .dbpast_experience::after {
    content: "";
    line-height: 0;
    font-family: serif;
    position: absolute;
    font-size: 3rem;
    color: rgb(168,183,183,0.5);
}.dbcourse_instructor .dbpast_experience::before {
    top: 0.5rem;
    left: 0;
    transform: rotate(180deg);
}.dbcourse_instructor .dbpast_experience::after {
    right: 0;
    bottom: -0.5rem;
}.dbcourse_instructor .dbfeedback_story:hover .dbphoto_frame {
    transform: translateY(-20px);
}.dbcourse_instructor .dbfeedback_story:hover .dbemp_container {
    transform: translateY(20px);
}

@keyframes shiftGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 767px) {.dbcourse_instructor .dbphoto_frame {
    height: 320px;
    width: 90%;
}.dbcourse_instructor .dbemp_container {
    width: 95%;
    padding: 2rem 1.5rem 1.5rem;
    margin-top: -60px;
}.dbcourse_instructor .dbemp_container::before {
    height: 60px;
    width: 60px;
}}.dbcontact_form_section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}.dbcontact_form_section::before {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
                linear-gradient(45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%);
    z-index: 0;
    height: 100%;
    content: "";
    left: 0;
    width: 100%;
    background-size: 20px 20px;
    top: 0;
}.dbcontact_form_section .container {
    max-width: 1200px;
    z-index: 1;
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
}.dbcontact_form_section h2 {
    border-left: 5px solid rgb(168,183,183);
    margin-bottom: 50px;
    text-align: left;
    position: relative;
    color: #000000;
    font-weight: 700;
    font-size: 34px;
    padding-left: 20px;
}.dbcontact_form_section .dbquery_support {
    flex-direction: row-reverse;
    overflow: hidden;
    display: flex;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: #ffffff;
}.dbcontact_form_section .dbphoto_frame {
    min-height: 500px;
    position: relative;
    flex: 0 0 40%;
}.dbcontact_form_section .dbphoto_frame::before {
    left: 0;
    top: 0;
    background: rgb(168,183,183,0.5);
    mix-blend-mode: multiply;
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
}.dbcontact_form_section .dbfeedback_widget {
    padding: 60px;
    flex: 0 0 60%;
    position: relative;
}.dbcontact_form_section .dbfeedback_widget::after {
    content: "";
    border-radius: 0 0 0 100%;
    z-index: -1;
    right: 0;
    width: 150px;
    top: 0;
    height: 150px;
    background: rgb(205,218,218);
    position: absolute;
}.dbcontact_form_section #contact {
    flex-direction: column;
    gap: 30px;
    display: flex;
}.dbcontact_form_section h3 {
    margin-bottom: 30px;
    color: #000000;
    position: relative;
    font-size: 19px;
    font-weight: 700;
}.dbcontact_form_section h3::after {
    background: rgb(168,183,183);
    height: 2px;
    left: 0;
    content: "";
    width: 40px;
    bottom: -10px;
    position: absolute;
}.dbcontact_form_section input[type="text"] {
    width: 100%;
    transition: all 0.3s ease;
    color: #000000;
    background: rgb(205,218,218);
    padding: 18px 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
    font-size: 17px;
    border: none;
    border-radius: 10px;
}.dbcontact_form_section input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(168,183,183,0.5), inset 0 2px 4px rgba(0, 0, 0, 0.03);
    background: #ffffff;
}.dbcontact_form_section input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.6;
}.dbcontact_form_section .dbconnect_links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}.dbcontact_form_section .dbconnect_links input[type="checkbox"] {
    border: 2px solid rgb(205,218,218);
    height: 22px;
    width: 22px;
    appearance: none;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
}.dbcontact_form_section .dbconnect_links input[type="checkbox"]:checked {
    background: rgb(168,183,183);
    border-color: rgb(168,183,183);
}.dbcontact_form_section .dbconnect_links input[type="checkbox"]:checked::after {
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    height: 11px;
    left: 7px;
    width: 6px;
    position: absolute;
    content: "";
    top: 3px;
    transform: rotate(45deg);
}.dbcontact_form_section .dbconnect_links label {
    line-height: 1.5;
    font-size: 17px;
    color: #000000;
}.dbcontact_form_section .dbconnect_links a {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgb(168,183,183);
}.dbcontact_form_section .dbconnect_links a:hover {
    color: rgb(132,148,148);
}.dbcontact_form_section .dbconnect_links a::after {
    height: 1px;
    position: absolute;
    width: 100%;
    background: rgb(168,183,183);
    bottom: -2px;
    left: 0;
    transition: all 0.3s ease;
    content: "";
}.dbcontact_form_section .dbconnect_links a:hover::after {
    background: rgb(132,148,148);
}.dbcontact_form_section .dbfeedback_request {
    padding: 18px 40px;
    transition: all 0.3s ease;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
    background: rgb(168,183,183);
    box-shadow: 0 4px 15px rgb(168,183,183,0.5);
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
    border: none;
    align-self: flex-start;
}.dbcontact_form_section .dbfeedback_request:hover {
    box-shadow: 0 7px 20px rgb(132,148,148,0.5);
    background: rgb(132,148,148);
    transform: translateY(-2px);
}.dbcontact_form_section svg {
    height: 20px;
    width: 20px;
    transition: all 0.3s ease;
    fill: rgb(168,183,183);
}.dbcontact_form_section svg path {
    fill: rgb(168,183,183);
    transition: all 0.3s ease;
}.dbcontact_form_section svg:hover {
    fill: rgb(132,148,148);
}.dbcontact_form_section svg:hover path {
    fill: rgb(132,148,148);
}

@media (max-width: 992px) {.dbcontact_form_section .dbquery_support {
    flex-direction: column;
}.dbcontact_form_section .dbphoto_frame {
    order: 1;
    min-height: 300px;
    flex: 0 0 auto;
}.dbcontact_form_section .dbfeedback_widget {
    flex: 0 0 auto;
    order: 2;
    padding: 50px 40px;
}.dbcontact_form_section h2 {
    margin-bottom: 40px;
}
}

@media (max-width: 768px) {.dbcontact_form_section {
    padding: 60px 0;
}.dbcontact_form_section h2 {
    font-size: calc(34px - 4px);
    margin-bottom: 30px;
}.dbcontact_form_section .dbfeedback_widget {
    padding: 40px 30px;
}.dbcontact_form_section #contact {
    gap: 25px;
}.dbcontact_form_section .dbphoto_frame {
    min-height: 250px;
}
}

@media (max-width: 576px) {.dbcontact_form_section {
    padding: 40px 0;
}.dbcontact_form_section .container {
    padding: 0 15px;
}.dbcontact_form_section h2 {
    margin-bottom: 25px;
    padding-left: 15px;
    font-size: calc(34px - 6px);
}.dbcontact_form_section .dbfeedback_widget {
    padding: 30px 20px;
}.dbcontact_form_section #contact {
    gap: 20px;
}.dbcontact_form_section input[type="text"] {
    padding: 15px;
}.dbcontact_form_section .dbfeedback_request {
    padding: 15px 20px;
    width: 100%;
}.dbcontact_form_section .dbphoto_frame {
    min-height: 200px;
}}.dbprice_package {
    background-color: rgb(205,218,218);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}.dbprice_package::before {
    background: linear-gradient(135deg, rgb(168,183,183), rgb(132,148,148));
    content: "";
    opacity: 0.07;
    top: -3rem;
    transform: rotate(15deg);
    right: -3rem;
    width: 12rem;
    height: 12rem;
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}.dbprice_package::after {
    opacity: 0.05;
    height: 18rem;
    z-index: 0;
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(-10deg);
    left: -5rem;
    width: 18rem;
    bottom: -5rem;
    content: "";
    background: linear-gradient(45deg, rgb(132,148,148), rgb(168,183,183,0.5));
}.dbprice_package .container {
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: 1200px;
    z-index: 1;
    position: relative;
}.dbprice_package .dbrate_plans {
    flex-direction: column;
    display: flex;
}.dbprice_package .dbdiscount_grid {
    margin-bottom: 3rem;
    position: relative;
    order: -1;
}.dbprice_package .dbdiscount_grid h2 {
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}.dbprice_package .dbdiscount_grid h2::after {
    height: 3px;
    background: linear-gradient(90deg, rgb(168,183,183), transparent);
    width: 60%;
    left: 0;
    content: "";
    position: absolute;
    bottom: -0.5rem;
}.dbprice_package .dbpayment_deals {
    color: #000000;
    max-width: 800px;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.6;
}.dbprice_package .dbvalue_fees {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    gap: 1.5rem;
    display: grid;
}.dbprice_package .dblearn_pricing {
    overflow: hidden;
    color: #000000;
    z-index: 2;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    position: relative;
}.dbprice_package .dbfee_plan {
    transform: translateY(0);
    min-height: 480px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}.dbprice_package .dblearn_pricing:hover .dbfee_plan {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}.dbprice_package .dbrate_packages {
    flex: 1;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}.dbprice_package .dbrate_packages h3 {
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: calc(24px + 0.1rem);
    transition: color 0.3s ease;
}.dbprice_package .dblearn_pricing:hover .dbrate_packages h3 {
    color: rgb(168,183,183);
}.dbprice_package .dbpayment_pricing {
    position: relative;
    font-size: calc(24px + 0.5rem);
    transition: transform 0.3s ease;
    display: block;
    font-weight: 700;
    color: rgb(168,183,183);
    margin-bottom: 1.5rem;
}.dbprice_package .dbpayment_pricing::before {
    transform-origin: left;
    transform: scaleX(1);
    bottom: -0.75rem;
    left: 0;
    background-color: rgb(168,183,183,0.5);
    transition: transform 0.4s ease;
    height: 2px;
    content: "";
    width: 3rem;
    position: absolute;
}.dbprice_package .dblearn_pricing:hover .dbpayment_pricing::before {
    transform: scaleX(1.5);
}.dbprice_package .dbrate_packages p {
    line-height: 1.6;
    flex-grow: 1;
    font-size: calc(16px - 0.1rem);
    word-break: break-word;
    color: #000000;
    overflow-wrap: break-word;
    margin-bottom: 1.5rem;
}.dbprice_package .dbphoto_frame {
    position: relative;
    transition: transform 0.6s ease;
    overflow: hidden;
    height: 180px;
    width: 100%;
}.dbprice_package .dbphoto_frame::after {
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    content: "";
    bottom: 0;
    right: 0;
    transition: opacity 0.3s ease;
    top: 0;
    opacity: 0.7;
    left: 0;
    position: absolute;
}.dbprice_package .dblearn_pricing:hover .dbphoto_frame {
    transform: scale(1.03);
}.dbprice_package .dblearn_pricing:hover .dbphoto_frame::after {
    opacity: 0.4;
}.dbprice_package .dbfee_plan::before {
    background: linear-gradient(90deg, rgb(168,183,183), rgb(132,148,148));
    position: absolute;
    top: 0;
    transform: scaleX(0);
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 5px;
    transform-origin: left;
    content: "";
    left: 0;
}.dbprice_package .dblearn_pricing:hover .dbfee_plan::before {
    transform: scaleX(1);
}

@media (min-width: 768px) {.dbprice_package .dbrate_plans {
    gap: 2rem;
    align-items: flex-start;
    flex-direction: row;
}.dbprice_package .dbdiscount_grid {
    order: 0;
    margin-bottom: 0;
    flex: 0 0 30%;
    padding-top: 2rem;
}.dbprice_package .dbvalue_fees {
    flex: 0 0 70%;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.dbprice_package .dbfee_plan {
    border-radius: 0.25rem;
}
}

@media (max-width: 767px) {.dbprice_package {
    padding: 3rem 0;
}.dbprice_package .dbvalue_fees {
    max-width: 500px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.dbprice_package .dbdiscount_grid h2 {
    text-align: center;
    display: block;
}.dbprice_package .dbdiscount_grid h2::after {
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
}.dbprice_package .dbpayment_deals {
    text-align: center;
}.dbprice_package .dbfee_plan {
    min-height: auto;
}.dbprice_package .dbrate_packages {
    padding: 1.5rem;
}.dbprice_package .dbphoto_frame {
    height: 160px;
}
}

@media (min-width: 1024px) {.dbprice_package .dbvalue_fees {
    grid-template-columns: repeat(2, 1fr);
}.dbprice_package .dblearn_pricing:nth-child(odd) {
    transform: translateY(1.5rem);
}
}

@media (min-width: 1200px) {.dbprice_package .dbdiscount_grid {
    padding-top: 4rem;
}.dbprice_package .dblearn_pricing:hover {
    z-index: 5;
}.dbprice_package .dbvalue_fees {
    column-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
}
}

@media (prefers-reduced-motion: reduce) {.dbprice_package .dblearn_pricing,
    .dbprice_package .dbfee_plan,
    .dbprice_package .dbphoto_frame,
    .dbprice_package .dbpayment_pricing::before,
    .dbprice_package .dbfee_plan::before {
    transition: none;
}}.dbtraining_benefits {
    overflow: hidden;
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}.dbtraining_benefits::before {
    content: '';
    right: -50%;
    transform: skewX(-20deg);
    background: 
        linear-gradient(135deg, rgb(205,218,218) 0%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            rgb(168,183,183,0.5) 0,
            rgb(168,183,183,0.5) 1px,
            transparent 1px,
            transparent 15px
        );
    width: 200%;
    z-index: 1;
    height: 100%;
    top: 0;
    position: absolute;
}.dbtraining_benefits .dbmentor_values {
    z-index: 5;
    padding: 0;
    width: 100%;
    position: relative;
}.dbtraining_benefits .dbphoto_frame {
    z-index: 2;
    position: absolute;
    height: 100%;
    left: 0;
    width: 45vw;
    top: 0;
}.dbtraining_benefits .dbphoto_frame::after {
    position: absolute;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    content: '';
    top: 0;
    height: 100%;
}.dbtraining_benefits .dbphoto_frame::before {
    content: '';
    background: rgb(168,183,183,0.5);
    z-index: -1;
    top: -10%;
    height: 120%;
    border-radius: 0 100% 100% 0 / 50%;
    left: -10%;
    width: 120%;
    position: absolute;
}.dbtraining_benefits .dbsubtext_wrap {
    background: #ffffff;
    position: relative;
    margin-left: auto;
    width: 60%;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border-radius: 19px 0 0 19px;
    padding: 3rem;
}.dbtraining_benefits h2 {
    padding-bottom: 1rem;
    position: relative;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 700;
    font-size: 38px;
}.dbtraining_benefits h2::after {
    left: 0;
    background: rgb(168,183,183);
    border-radius: 10px;
    height: 4px;
    content: '';
    position: absolute;
    bottom: 0;
    width: 100px;
}.dbtraining_benefits .text_main_holder {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}.dbtraining_benefits .text_main_holder > div {
    background: rgb(205,218,218);
    transition: all 0.3s ease;
    display: flex;
    overflow: hidden;
    border-radius: 19px;
    position: relative;
    padding: 1.5rem 2rem;
}.dbtraining_benefits .text_main_holder > div::before {
    background: rgb(168,183,183);
    height: 0;
    transition: height 0.3s ease;
    position: absolute;
    left: 0;
    width: 5px;
    bottom: 0;
    content: '';
}.dbtraining_benefits .text_main_holder > div:hover::before {
    height: 100%;
}.dbtraining_benefits .text_main_holder > div:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}.dbtraining_benefits .text_main_holder > div:nth-child(even) {
    transform: translateX(2rem);
}.dbtraining_benefits .text_main_holder > div:nth-child(even):hover {
    transform: translateX(3rem);
}.dbtraining_benefits .text_main_holder svg {
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}.dbtraining_benefits .text_main_holder > div:hover svg {
    transform: rotate(10deg);
}.dbtraining_benefits .text_main_holder svg path {
    fill: rgb(168,183,183);
}.dbtraining_benefits .text_main_holder p {
    color: #000000;
    line-height: 1.6;
    margin: 0;
    align-self: center;
    font-size: 12px;
}.dbtraining_benefits::after {
    opacity: 0.3;
    background: rgb(132,148,148,0.5);
    position: absolute;
    top: -10vw;
    height: 20vw;
    z-index: 0;
    border-radius: 50%;
    width: 20vw;
    right: 10vw;
    content: '';
}

@media (max-width: 1200px) {.dbtraining_benefits .dbsubtext_wrap {
    width: 65%;
}.dbtraining_benefits .dbphoto_frame {
    width: 40vw;
}
}

@media (max-width: 992px) {.dbtraining_benefits {
    padding: 0;
}.dbtraining_benefits::before {
    right: -80%;
}.dbtraining_benefits .dbmentor_values {
    max-width: 100%;
    flex-direction: column;
    display: flex;
}.dbtraining_benefits .dbphoto_frame {
    width: 100%;
    border-radius: 0;
    position: relative;
    height: 350px;
    order: 1;
}.dbtraining_benefits .dbphoto_frame::before {
    display: none;
}.dbtraining_benefits .dbsubtext_wrap {
    margin: -50px auto 3rem;
    width: 90%;
    order: 2;
    border-radius: 19px;
}.dbtraining_benefits .text_main_holder > div:nth-child(even) {
    transform: translateX(0);
}.dbtraining_benefits .text_main_holder > div:nth-child(even):hover {
    transform: translateX(10px);
}
}

@media (max-width: 768px) {.dbtraining_benefits .dbphoto_frame {
    height: 300px;
}.dbtraining_benefits .dbsubtext_wrap {
    width: 85%;
    padding: 2rem;
}.dbtraining_benefits h2 {
    font-size: calc(38px * 0.9);
}.dbtraining_benefits .text_main_holder > div {
    padding: 1.2rem 1.5rem;
}
}

@media (max-width: 576px) {.dbtraining_benefits .dbphoto_frame {
    height: 250px;
}.dbtraining_benefits .dbsubtext_wrap {
    margin: -30px auto 2rem;
    padding: 1.5rem;
    width: 90%;
}.dbtraining_benefits .text_main_holder > div {
    padding: 1rem 1.2rem;
}.dbtraining_benefits .text_main_holder svg {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
}}.dbprivacy_frame {
    color: #ffffff;
    width: 100%;
    box-shadow: 0 0 15px rgb(168,183,183,0.5), 0 0 30px rgb(132,148,148,0.5);
    font-family: Arial, sans-serif;
    padding: 40px;
    overflow: hidden;
    height: auto;
}.dbprivacy_frame h1 {
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 41px;
    margin-top: 40px;
    color: rgb(168,183,183);
    border-bottom: 2px solid rgb(168,183,183);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgb(168,183,183,0.5);
}.dbprivacy_frame h2 {
    border-bottom: 1px solid rgb(132,148,148);
    margin-bottom: 20px;
    color: rgb(132,148,148);
    text-shadow: 0 0 10px rgb(132,148,148,0.5);
    font-weight: 600;
    padding-bottom: 5px;
    font-size: 31px;
    margin-top: 30px;
}.dbprivacy_frame h3, .dbprivacy_frame h4, .dbprivacy_frame h5, .dbprivacy_frame h6 {
    text-shadow: 0 0 5px rgb(168,183,183,0.5);
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    font-size: 18px;
    color: rgb(168,183,183);
}.dbprivacy_frame ul, .dbprivacy_frame ol {
    list-style-position: inside;
    padding: 15px 0;
    padding-left: 20px;
}.dbprivacy_frame li {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000000;
    text-shadow: 0 0 5px rgb(168,183,183,0.5);
    line-height: 1.6;
}.dbprivacy_frame section {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(168,183,183,0.5);
    margin-top: 20px;
    background: rgb(205,218,218);
}.dbprivacy_frame p, .dbprivacy_frame span, .dbprivacy_frame div {
    margin-bottom: 10px;
    color: #000000;
    text-shadow: 0 0 5px rgb(168,183,183,0.5);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 300;
}

@media only screen and (max-width: 800px) {.dbprivacy_frame {
    padding: 20px 10px;
}.dbprivacy_frame h1 {
    font-size: calc(18px * 0.8);
}.dbprivacy_frame h2 {
    font-size: calc(18px * 0.8);
}.dbprivacy_frame h3, .dbprivacy_frame h4, .dbprivacy_frame h5, .dbprivacy_frame h6 {
    font-size: calc(18px * 0.8);
}.dbprivacy_frame p, .dbprivacy_frame span, .dbprivacy_frame div {
    font-size: calc(17px * 0.9);
}}header {
    padding: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #ffffff;
}header::before {
    z-index: 0;
    background: linear-gradient(135deg, rgb(168,183,183), rgb(132,148,148));
    position: absolute;
    content: '';
    left: 0;
    width: 35%;
    height: 100%;
    top: 0;
}header .container {
    z-index: 1;
    padding: 0;
    position: relative;
    margin: 0;
    max-width: 100%;
    width: 100%;
}header .dbmain_pagewrap {
    display: flex;
    height: 100%;
    align-items: stretch;
}header .dbtop_start {
    padding: 1.2rem 0;
    text-decoration: none;
    align-items: center;
    width: 35%;
    position: relative;
    justify-content: center;
    display: flex;
}header .dbtop_start svg {
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    width: 150px;
}header .dbtop_start:hover svg {
    transform: scale(1.05);
}header .dbnav_primary {
    display: flex;
    width: 65%;
    align-items: center;
    padding: 1.2rem 3%;
    justify-content: flex-start;
    position: relative;
    gap: 0.5rem;
}header .dbnav_primary::before {
    content: '';
    height: 100%;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgb(168,183,183,0.5), transparent);
    top: 0;
    position: absolute;
}header .dbmain_know {
    overflow: hidden;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 0.6rem 1.2rem;
    font-size: 18px;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 10px;
    background: #ffffff;
    position: relative;
}header .dbmain_know::before {
    z-index: -1;
    transition: opacity 0.3s ease;
    position: absolute;
    opacity: 0;
    height: 100%;
    border-radius: 10px;
    content: '';
    background: linear-gradient(135deg, rgb(168,183,183,0.5), rgb(132,148,148,0.5));
    width: 100%;
    top: 0;
    left: 0;
}header .dbmain_know:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}header .dbmain_know:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {header::before {
    width: 30%;
}header .dbtop_start {
    padding: 1rem 0;
    width: 30%;
}header .dbtop_start svg {
    width: 130px;
}header .dbnav_primary {
    padding: 1rem 2.5%;
    width: 70%;
    gap: 0.5rem;
}header .dbmain_know {
    font-size: calc(18px);
    padding: 0.5rem 1rem;
}
}

@media (max-width: 767px) {header {
    background: rgb(205,218,218);
}header::before {
    height: auto;
    width: 100%;
    bottom: 50%;
    top: 0;
}header .dbmain_pagewrap {
    align-items: center;
    flex-direction: column;
}header .dbtop_start {
    width: 100%;
    padding: 0.8rem 0;
}header .dbtop_start svg {
    width: 120px;
}header .dbnav_primary {
    flex-wrap: wrap;
    padding: 0.8rem 0;
    gap: 0.6rem;
    width: 95%;
    justify-content: center;
}header .dbnav_primary::before {
    background: linear-gradient(to right, transparent, rgb(168,183,183,0.5), transparent);
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}header .dbmain_know {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0.9rem;
}
}

@media (max-width: 480px) {header .dbtop_start {
    padding: 0.7rem 0;
}header .dbtop_start svg {
    width: 110px;
}header .dbnav_primary {
    padding: 0.7rem 2%;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
}header .dbnav_primary::-webkit-scrollbar {
    height: 3px;
}header .dbnav_primary::-webkit-scrollbar-thumb {
    background: rgb(168,183,183);
    border-radius: 10px;
}header .dbmain_know {
    white-space: nowrap;
    padding: 0.45rem 0.9rem;
    margin-right: 2px;
    font-size: calc(18px - 1px);
    flex-shrink: 0;
}}.dbtitle_greeting {
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: #ffffff;
}.dbtitle_greeting .dblearn_open {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}.dbtitle_greeting .dblearn_open:before {
    content: "";
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.75) 100%);
}.dbtitle_greeting .dblearn_open:after {
    animation: pulse 8s infinite alternate ease-in-out;
    z-index: 2;
    opacity: 0.6;
    top: 0;
    content: "";
    left: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgb(168,183,183,0.5) 0%, transparent 40%);
    mix-blend-mode: overlay;
    right: 0;
    position: absolute;
}.dbtitle_greeting .dbachieve_stats {
    gap: 2rem;
    z-index: 3;
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
    width: 90%;
    padding: 5rem 2rem;
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
}.dbtitle_greeting .dbachieve_stats > div {
    animation-delay: calc(var(--index, 0) * 0.3s);
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
    opacity: 0;
}.dbtitle_greeting .dbachieve_stats > div:nth-child(1) {
    --index: 1;
}.dbtitle_greeting .dbachieve_stats > div:nth-child(2) {
    --index: 2;
}.dbtitle_greeting .dbachieve_stats > div:nth-child(3) {
    --index: 3;
}.dbtitle_greeting p {
    position: relative;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
    padding-left: 2rem;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    letter-spacing: 0.05em;
}.dbtitle_greeting p:before {
    height: 2px;
    content: "";
    left: 0;
    background: rgb(132,148,148);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    width: 1.5rem;
}.dbtitle_greeting .title_style_header {
    line-height: 1.1;
    animation: scaleText 0.5s ease-out forwards;
    transform-origin: left center;
    -webkit-background-clip: text !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    font-weight: 700;
    margin: 0;
    animation-delay: 0.8s;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background-clip: text !important;
    position: relative;
    background: linear-gradient(90deg, #ffffff 0%, rgb(132,148,148) 100%);
    color: transparent;
}.dbtitle_greeting h3 {
    padding-top: 1.5rem;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    position: relative;
}.dbtitle_greeting h3:before {
    animation-delay: 1.6s;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgb(132,148,148) 0%, transparent 100%);
    width: 0;
    position: absolute;
    animation: lineExpand 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    height: 3px;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleText {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@media (min-width: 768px) {.dbtitle_greeting .dbachieve_stats {
    gap: 2.5rem;
    padding: 6rem 3rem;
    grid-template-columns: 1fr;
}.dbtitle_greeting .dbachieve_stats:before {
    height: 80px;
    opacity: 0;
    animation: cornerReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    border-top: 3px solid rgb(132,148,148);
    content: "";
    animation-delay: 1.8s;
    top: -10px;
    left: -10px;
    width: 80px;
    position: absolute;
    border-left: 3px solid rgb(132,148,148);
}.dbtitle_greeting .dbachieve_stats:after {
    animation: cornerReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    animation-delay: 2s;
    height: 80px;
    border-right: 3px solid rgb(132,148,148);
    content: "";
    bottom: -10px;
    width: 80px;
    right: -10px;
    border-bottom: 3px solid rgb(132,148,148);
    position: absolute;
}
    
    @keyframes cornerReveal {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 0.7;
            transform: scale(1);
        }
    }
}

@media (min-width: 992px) {.dbtitle_greeting .dbachieve_stats {
    width: 80%;
    transform: perspective(1000px) rotateX(3deg);
    padding: 7rem 4rem;
}.dbtitle_greeting .dblearn_open:after {
    background: radial-gradient(circle at 30% 70%, rgb(168,183,183,0.5) 0%, transparent 50%);
}.dbtitle_greeting h3 {
    padding-top: 2rem;
}.dbtitle_greeting h3:before {
    height: 4px;
}
    
    @keyframes lineExpand {
        0% {
            width: 0;
        }
        100% {
            width: 100px;
        }
    }
}

@media (min-width: 1200px) {.dbtitle_greeting .dbachieve_stats {
    gap: 3rem;
}.dbtitle_greeting p {
    padding-left: 3rem;
}.dbtitle_greeting p:before {
    width: 2.5rem;
}.dbtitle_greeting .title_style_header {
    letter-spacing: -0.02em;
}.dbtitle_greeting .dbachieve_stats:before,
    .dbtitle_greeting .dbachieve_stats:after {
    height: 120px;
    width: 120px;
}
}

@media (max-width: 767px) {.dbtitle_greeting .dbachieve_stats {
    gap: 1.5rem;
    padding: 4rem 1.5rem;
}.dbtitle_greeting .dblearn_open {
    min-height: 90vh;
}.dbtitle_greeting .title_style_header {
    line-height: 1.2;
}.dbtitle_greeting h3 {
    line-height: 1.5;
}}.dbhelp_center {
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(168,183,183) 0%, rgb(132,148,148) 100%);
    position: relative;
}.dbhelp_center::before {
    width: 200%;
    content: "";
    left: -50%;
    position: absolute;
    animation: bgAnimation 20s linear infinite;
    z-index: 1;
    transform: rotate(45deg);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    top: -50%;
    height: 200%;
}@keyframes bgAnimation {
  0% {
    transform: rotate(45deg) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(1.5);
  }
  100% {
    transform: rotate(45deg) scale(1);
  }
}

.dbhelp_center .container {
    position: relative;
    z-index: 2;
}.dbhelp_center .dbask_form {
    align-items: center;
    border-radius: 17px;
    display: flex;
    padding: 50px;
    text-align: center;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin: auto;
    max-width: 500px;
}.dbhelp_center .dbmsg_page {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgb(132,148,148);
    font-size: 32px;
}.dbhelp_center .dbphoto_frame {
    border: 5px solid rgb(132,148,148);
    width: 200px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 200px;
}.dbhelp_center .dbmessage_page {
    margin-bottom: 30px;
    width: 100%;
}.dbhelp_center .dbmessage_page p {
    align-items: center;
    transition: transform 0.3s ease;
    font-size: 12px;
    justify-content: center;
    margin-bottom: 15px;
    color: #000000;
    display: flex;
}.dbhelp_center .dbmessage_page p:hover {
    transform: translateY(-3px);
}.dbhelp_center .dbmessage_page p svg {
    margin: 0 10px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}.dbhelp_center .dbmessage_page p svg path {
    transition: fill 0.3s ease;
    fill: rgb(132,148,148);
}.dbhelp_center .dbmessage_page p:hover svg path {
    fill: rgb(168,183,183);
}.dbhelp_center .dbmessage_page p span {
    font-weight: 600;
}.dbhelp_center .dbmessage_page a {
    transition: color 0.3s;
    color: rgb(132,148,148);
    text-decoration: none;
}.dbhelp_center .dbmessage_page a:hover {
    color: rgb(168,183,183);
}.dbhelp_center .dbcontact_card {
    width: 100%;
    margin-top: 50px;
}.dbhelp_center .dbinquire_now {
    letter-spacing: 1px;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
    color: rgb(132,148,148);
    font-weight: 600;
    justify-content: center;
    text-transform: uppercase;
    font-size: 24px;
}.dbhelp_center .dbinquire_now svg {
    margin-right: 10px;
    width: 22px;
    height: 22px;
}.dbhelp_center .dbinquire_now svg path {
    transition: fill 0.3s ease;
    fill: rgb(132,148,148);
}.dbhelp_center .dbedu_form {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}.dbhelp_center .dbreach_usyi5 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: rgb(132,148,148,0.5);
    border-radius: 10px;
    padding: 10px;
    color: #ffffff;
    transition: all 0.3s;
}.dbhelp_center .dbreach_usyi5 svg {
    height: 16px;
    width: 0;
    transition: all 0.3s ease;
    margin-right: 0;
    opacity: 0;
}.dbhelp_center .dbreach_usyi5 svg path {
    fill: #ffffff;
}.dbhelp_center .dbreach_usyi5:hover {
    background-color: rgb(132,148,148);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}.dbhelp_center .dbreach_usyi5:hover svg {
    opacity: 1;
    width: 16px;
    margin-right: 6px;
}

@media screen and (max-width: 991px) {.dbhelp_center .dbask_form {
    margin-right: auto;
    max-width: 100%;
}.dbhelp_center .dbmessage_page p svg {
    margin-right: 8px;
    height: 18px;
    width: 18px;
}.dbhelp_center .dbinquire_now svg {
    margin-right: 8px;
    height: 20px;
    width: 20px;
}
}

@media screen and (max-width: 767px) {.dbhelp_center {
    padding: 70px 0;
}.dbhelp_center .dbask_form {
    padding: 30px;
}.dbhelp_center .dbmsg_page {
    font-size: 24px;
    margin-bottom: 20px;
}.dbhelp_center .dbphoto_frame {
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
}.dbhelp_center .dbedu_form {
    grid-template-columns: 1fr;
}.dbhelp_center .dbmessage_page p svg {
    height: 16px;
    margin-right: 6px;
    width: 16px;
}.dbhelp_center .dbinquire_now svg {
    margin-right: 6px;
    width: 18px;
    height: 18px;
}}.dbtraining_structure {
    position: relative;
    background: rgb(205,218,218);
    min-height: 70vh;
    overflow: hidden;
    isolation: isolate;
}.dbtraining_structure::before {
    width: 200%;
    animation: rotateBg 25s linear infinite;
    background: 
        radial-gradient(circle at 30% 30%, rgb(168,183,183,0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgb(132,148,148,0.5) 0%, transparent 50%);
    content: "";
    z-index: 0;
    position: absolute;
    top: -50%;
    height: 200%;
    left: -50%;
}.dbtraining_structure::after {
    content: "";
    top: 0;
    position: absolute;
    width: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px);
    left: 0;
    z-index: 1;
    height: 100%;
}.dbtraining_structure .container {
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    padding: 5rem 2rem;
    z-index: 2;
}.dbtraining_structure .dbmentor_values {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 2rem;
    display: flex;
    position: relative;
}.dbtraining_structure .dbmentor_values::before {
    content: "";
    height: 30px;
    animation: waveEffect 8s ease-in-out infinite;
    filter: blur(15px);
    width: 120%;
    opacity: 0.7;
    top: 0;
    z-index: -1;
    left: -10%;
    background: linear-gradient(90deg, transparent, rgb(168,183,183,0.5), transparent);
    position: absolute;
}.dbtraining_structure .dbmentor_values::after {
    bottom: 0;
    width: 120%;
    content: "";
    height: 30px;
    filter: blur(15px);
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(132,148,148,0.5), transparent);
    animation: waveEffect 8s ease-in-out infinite reverse;
    z-index: -1;
    left: -10%;
    opacity: 0.7;
}.dbtraining_structure h3 {
    text-align: center;
    color: rgb(168,183,183);
    margin-bottom: 0;
    position: relative;
    perspective: 500px;
    transform-style: preserve-3d;
    font-size: 35px;
    overflow: hidden;
    width: 100%;
    font-weight: 700;
    padding-bottom: 2rem;
}.dbtraining_structure h3::before {
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
    animation: shimmerEffect 5s infinite;
    height: 100%;
    left: 0;
    content: "";
    top: 0;
    width: 100%;
    position: absolute;
}.dbtraining_structure h3::after {
    color: transparent;
    opacity: 0;
    z-index: -1;
    content: attr(data-text);
    text-shadow: 0 0 15px rgb(168,183,183), 0 0 10px rgb(168,183,183);
    width: 100%;
    position: absolute;
    left: 0;
    animation: glowPulse 4s ease-in-out infinite;
    height: 100%;
    top: 0;
    transform: translateZ(20px);
}.dbtraining_structure span {
    backdrop-filter: blur(5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    text-align: center;
    font-size: 15px;
    display: block;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    max-width: 800px;
    position: relative;
    color: #000000;
    line-height: 1.8;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatText 6s ease-in-out infinite;
}.dbtraining_structure span::before {
    animation: holographicShine 10s linear infinite;
    width: 200%;
    content: "";
    height: 200%;
    top: -50%;
    z-index: -1;
    transform: rotate(45deg);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    left: -50%;
    position: absolute;
}.dbtraining_structure span::after {
    bottom: -10px;
    border-radius: 50%;
    z-index: -1;
    width: 80%;
    left: 10%;
    animation: shadowPulse 6s ease-in-out infinite;
    position: absolute;
    height: 10px;
    filter: blur(10px);
    content: "";
    opacity: 0.5;
    background: rgb(132,148,148,0.5);
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes waveEffect {
    0%, 100% {
        transform: translateX(-30%) scaleX(1.2);
    }
    50% {
        transform: translateX(30%) scaleX(0.8);
    }
}

@keyframes shimmerEffect {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes holographicShine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

@media (max-width: 992px) {.dbtraining_structure {
    min-height: 60vh;
}.dbtraining_structure .container {
    padding: 4rem 1.5rem;
}.dbtraining_structure .dbmentor_values {
    padding: 3rem 1.5rem;
}.dbtraining_structure h3 {
    padding-bottom: 1.5rem;
    font-size: calc(35px * 0.9);
}.dbtraining_structure span {
    padding: 1.8rem;
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 768px) {.dbtraining_structure {
    min-height: 50vh;
}.dbtraining_structure .container {
    padding: 3rem 1.2rem;
}.dbtraining_structure .dbmentor_values {
    gap: 1.5rem;
    padding: 2.5rem 1.2rem;
}.dbtraining_structure h3 {
    padding-bottom: 1.2rem;
    font-size: calc(35px * 0.8);
}.dbtraining_structure span {
    padding: 1.5rem;
    line-height: 1.7;
    font-size: calc(15px * 0.9);
}
}

@media (max-width: 576px) {.dbtraining_structure {
    min-height: 40vh;
}.dbtraining_structure .container {
    padding: 2.5rem 1rem;
}.dbtraining_structure .dbmentor_values {
    padding: 2rem 1rem;
    gap: 1.2rem;
}.dbtraining_structure h3 {
    padding-bottom: 1rem;
    font-size: calc(35px * 0.7);
}.dbtraining_structure span {
    line-height: 1.6;
    font-size: calc(15px * 0.85);
    padding: 1.2rem;
}.dbtraining_structure .dbmentor_values::before,
    .dbtraining_structure .dbmentor_values::after {
    height: 20px;
}}.dbcourse_summary {
    background: rgb(205,218,218);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.dbcourse_summary::before {
    width: 300px;
    content: "";
    opacity: 0.4;
    top: -100px;
    position: absolute;
    filter: blur(120px);
    animation: floatEffect 15s infinite alternate ease-in-out;
    z-index: 0;
    height: 300px;
    left: -100px;
    background: rgb(168,183,183,0.5);
}.dbcourse_summary::after {
    position: absolute;
    width: 350px;
    animation: floatEffect 18s infinite alternate-reverse ease-in-out;
    background: rgb(132,148,148,0.5);
    opacity: 0.3;
    height: 350px;
    filter: blur(150px);
    bottom: -100px;
    right: -100px;
    z-index: 0;
    content: "";
}.dbcourse_summary .container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 1200px;
}.dbcourse_summary .dbskill_up {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    flex-direction: column;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.8);
}.dbcourse_summary .dbskill_up:hover {
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.08),
                -25px -25px 70px rgba(255, 255, 255, 0.9);
    transform: translateY(-10px);
}.dbcourse_summary .dbphoto_frame {
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    height: 280px;
    width: 100%;
    position: relative;
}.dbcourse_summary .dbphoto_frame::after {
    opacity: 0.7;
    transition: opacity 0.5s ease;
    inset: 0;
    content: "";
    background: linear-gradient(
        135deg,
        rgb(168,183,183,0.5) 0%,
        transparent 100%
    );
    position: absolute;
}.dbcourse_summary .dbskill_up:hover .dbphoto_frame {
    transform: scale(1.05);
}.dbcourse_summary .dbskill_up:hover .dbphoto_frame::after {
    opacity: 0.5;
}.dbcourse_summary .dbsubtext_wrap {
    transform: translateY(-30px);
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    position: relative;
    margin: 0 15px;
    padding: 40px;
}.dbcourse_summary .dbsubtext_wrap::before {
    position: absolute;
    width: 40px;
    content: "";
    left: 20px;
    top: -8px;
    background: rgb(168,183,183);
    height: 4px;
}.dbcourse_summary .dbsubtext_wrap h3 {
    animation: slideIn 0.7s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    font-size: calc(21px * 1.05);
    opacity: 0;
    transform: translateX(-10px);
    position: relative;
    font-weight: 700;
    margin-bottom: 25px;
}.dbcourse_summary .dbsubtext_wrap p.description {
    max-height: 200px;
    font-weight: 400;
    font-size: 17px;
    font-family: Arial, sans-serif;
    opacity: 0;
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
    color: #000000;
    position: relative;
    padding-right: 15px;
    overflow-y: auto;
    transform: translateY(10px);
    line-height: 1.7;
}.dbcourse_summary .dbsubtext_wrap p.description::-webkit-scrollbar {
    width: 4px;
}.dbcourse_summary .dbsubtext_wrap p.description::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}.dbcourse_summary .dbsubtext_wrap p.description::-webkit-scrollbar-thumb {
    transition: background 0.3s ease;
    background: rgb(168,183,183,0.5);
}.dbcourse_summary .dbsubtext_wrap p.description::-webkit-scrollbar-thumb:hover {
    background: rgb(168,183,183);
}.dbcourse_summary .dbsubtext_wrap span.description {
    display: none;
}.dbcourse_summary .dbsubtext_wrap div {
    position: relative;
}.dbcourse_summary .dbsubtext_wrap div::after {
    pointer-events: none;
    height: 50px;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    width: 100%;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatEffect {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@media (min-width: 768px) {.dbcourse_summary .dbskill_up {
    flex-direction: row;
    align-items: stretch;
    max-height: 500px;
}.dbcourse_summary .dbphoto_frame {
    height: auto;
    flex: 0 0 45%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}.dbcourse_summary .dbsubtext_wrap {
    display: flex;
    justify-content: center;
    margin: 30px 30px 30px 0;
    flex: 0 0 55%;
    transform: translateY(0) translateX(-30px);
    flex-direction: column;
}.dbcourse_summary .dbsubtext_wrap::before {
    top: 20px;
    left: -8px;
    height: 40px;
    width: 4px;
}.dbcourse_summary .dbsubtext_wrap h3 {
    font-size: 21px;
}.dbcourse_summary .dbsubtext_wrap p.description {
    max-height: 330px;
}
}

@media (min-width: 992px) {.dbcourse_summary .dbskill_up {
    max-height: 450px;
}.dbcourse_summary .dbphoto_frame {
    flex: 0 0 40%;
}.dbcourse_summary .dbsubtext_wrap {
    flex: 0 0 60%;
    padding: 50px;
}.dbcourse_summary .dbsubtext_wrap h3 {
    font-size: calc(21px * 1.1);
    margin-bottom: 30px;
}.dbcourse_summary .dbsubtext_wrap p.description {
    max-height: 250px;
    line-height: 1.8;
}
}

@media (min-width: 1200px) {.dbcourse_summary {
    padding: 150px 0;
}.dbcourse_summary .dbskill_up {
    max-height: 480px;
}.dbcourse_summary .dbphoto_frame {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}.dbcourse_summary .dbsubtext_wrap {
    padding: 60px;
}.dbcourse_summary .dbsubtext_wrap h3 {
    font-size: calc(21px * 1.2);
    margin-bottom: 35px;
}.dbcourse_summary .dbsubtext_wrap p.description {
    max-height: 280px;
}
}

@media (max-width: 767px) {.dbcourse_summary {
    padding: 80px 0;
}.dbcourse_summary .dbsubtext_wrap {
    padding: 30px 25px;
}.dbcourse_summary .dbsubtext_wrap h3 {
    margin-bottom: 20px;
    font-size: calc(17px * 1.2);
}.dbcourse_summary .dbsubtext_wrap p.description {
    font-size: calc(17px * 0.95);
    max-height: 180px;
    line-height: 1.6;
}}.dbcheck_it_out_now {
    transform-style: preserve-3d;
    overflow: hidden;
    perspective: 1000px;
    background: linear-gradient(120deg, rgb(168,183,183) 0%, rgb(132,148,148) 100%);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 7rem 0;
}.dbcheck_it_out_now::before {
    z-index: 1;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
}.dbcheck_it_out_now::after {
    z-index: 0;
    position: absolute;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: constellation 60s linear infinite;
    top: -50%;
    opacity: 0.4;
    content: "";
}.dbcheck_it_out_now .container {
    z-index: 2;
    align-items: center;
    max-width: 1200px;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
    display: flex;
    transform: translateZ(30px);
}.dbcheck_it_out_now h6 {
    text-align: center;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: slideUpFade 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: translateY(-10px);
    letter-spacing: 0.015em;
    line-height: 1.6;
    font-size: calc(19px * 1.25);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 3rem;
    max-width: 800px;
}.dbcheck_it_out_now div > span {
    display: inline-block;
    transform: perspective(1000px) rotateX(10deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center bottom;
}.dbcheck_it_out_now div > span:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
}.dbcheck_it_out_now .dbfeedback_request {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: rgb(168,183,183);
    font-size: 15px;
    opacity: 0;
    display: inline-block;
    letter-spacing: 0.05em;
    background: #ffffff;
    animation: buttonAppear 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
    position: relative;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    transform: translateY(-5px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}.dbcheck_it_out_now .dbfeedback_request::before {
    width: 120%;
    position: absolute;
    transform: translateX(-100%);
    left: -10%;
    top: -10%;
    height: 120%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    content: "";
}.dbcheck_it_out_now .dbfeedback_request:hover {
    transform: translateY(-2px);
    color: rgb(132,148,148);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}.dbcheck_it_out_now .dbfeedback_request:hover::before {
    transform: translateX(100%);
}.dbcheck_it_out_now .dbfeedback_request span {
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: inline-block;
}.dbcheck_it_out_now .dbfeedback_request:hover span {
    transform: scale(1.05);
}.dbcheck_it_out_now div {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes constellation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideUpFade {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes buttonAppear {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {.dbcheck_it_out_now {
    padding: 6rem 0;
}.dbcheck_it_out_now h6 {
    font-size: calc(19px * 1.15);
    max-width: 700px;
}
}

@media (max-width: 992px) {.dbcheck_it_out_now {
    padding: 5rem 0;
}.dbcheck_it_out_now h6 {
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-size: 19px;
}
}

@media (max-width: 768px) {.dbcheck_it_out_now {
    padding: 4rem 0;
}.dbcheck_it_out_now .container {
    padding: 0 1.5rem;
}.dbcheck_it_out_now h6 {
    max-width: 100%;
    margin-bottom: 2rem;
    font-size: calc(19px * 0.95);
}.dbcheck_it_out_now .dbfeedback_request {
    padding: 0.9rem 2rem;
}
}

@media (max-width: 576px) {.dbcheck_it_out_now {
    padding: 3.5rem 0;
}.dbcheck_it_out_now .container {
    padding: 0 1rem;
}.dbcheck_it_out_now h6 {
    line-height: 1.5;
    font-size: calc(19px * 0.9);
    margin-bottom: 1.75rem;
}.dbcheck_it_out_now .dbfeedback_request {
    padding: 0.8rem 1.8rem;
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 375px) {.dbcheck_it_out_now {
    padding: 3rem 0;
}.dbcheck_it_out_now h6 {
    font-size: calc(19px * 0.85);
    margin-bottom: 1.5rem;
}.dbcheck_it_out_now .dbfeedback_request {
    padding: 0.75rem 1.6rem;
    font-size: calc(15px * 0.9);
}
}

@media (hover: none) {.dbcheck_it_out_now div > span {
    transform: none !important;
}.dbcheck_it_out_now .dbfeedback_request:hover {
    transform: none;
}.dbcheck_it_out_now .dbfeedback_request:hover span {
    transform: none;
}}.dbour_mission {
    overflow: hidden;
    position: relative;
    padding: 120px 0 100px;
}.dbour_mission::before {
    height: 100%;
    background: linear-gradient(135deg, 
        rgb(132,148,148) 0%,
        rgba(0, 0, 0, 0.85) 100%);
    top: 0;
    z-index: 1;
    position: absolute;
    content: "";
    opacity: 0.9;
    left: 0;
    width: 100%;
}.dbour_mission::after {
    right: 0;
    height: 100%;
    z-index: 2;
    position: absolute;
    width: 35%;
    content: "";
    opacity: 0.1;
    background: rgb(168,183,183);
    top: 0;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}.dbour_mission .container {
    padding: 0 15px;
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}.dbour_mission h2 {
    display: inline-block;
    transform: translateX(-10px);
    position: relative;
    font-size: 31px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 40px;
}.dbour_mission h2::after {
    animation: scaleIn 1.2s 0.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
    height: 4px;
    width: 80px;
    transform-origin: left;
    transform: scaleX(0);
    position: absolute;
    bottom: -12px;
    background: rgb(168,183,183);
    left: 0;
    content: "";
}.dbour_mission .dbsubtext_wrap {
    position: relative;
    padding: 50px;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid rgb(168,183,183);
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
}.dbour_mission .dbsubtext_wrap::before {
    opacity: 0.05;
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    background: linear-gradient(to right, var(--primary-color-opacity) 0%, rgba(255, 255, 255, 0) 20%);
    top: 0;
}.dbour_mission .dbsubtext_wrap > div {
    grid-template-columns: 1fr;
    gap: 25px;
    display: grid;
}.dbour_mission .dbsubtext_wrap p {
    font-weight: 600;
    color: rgb(168,183,183);
    transform: translateX(-5px);
    letter-spacing: 0.5px;
    font-size: calc(15px * 1.6);
    position: relative;
    padding-bottom: 15px;
    margin: 0;
}.dbour_mission .dbsubtext_wrap p::after {
    left: 0;
    height: 3px;
    width: 40px;
    position: absolute;
    background: rgb(132,148,148);
    content: "";
    bottom: 0;
}.dbour_mission .dbsubtext_wrap div div {
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 15px;
    column-count: 1;
    line-height: 1.7;
    column-gap: 40px;
    text-align: justify;
    position: relative;
}

@keyframes scaleIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (min-width: 768px) {.dbour_mission {
    padding: 140px 0 120px;
}.dbour_mission .dbsubtext_wrap {
    animation: appear3D 1.2s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
    transform-style: preserve-3d;
    opacity: 0;
    transform: perspective(1000px) rotateY(-2deg);
    padding: 60px;
}.dbour_mission .dbsubtext_wrap > div {
    grid-template-columns: 1fr;
}.dbour_mission .dbsubtext_wrap div div {
    column-count: 2;
}
    
    @keyframes appear3D {
        from {
            opacity: 0;
            transform: perspective(1000px) rotateY(-8deg) translateY(30px);
        }
        to {
            opacity: 1;
            transform: perspective(1000px) rotateY(-2deg) translateY(0);
        }
    }
}


@media (min-width: 992px) {.dbour_mission {
    padding: 160px 0 140px;
}.dbour_mission h2 {
    font-size: calc(31px * 1.2);
    margin-bottom: 60px;
}.dbour_mission h2::after {
    height: 5px;
    width: 100px;
}.dbour_mission .dbsubtext_wrap {
    margin-left: 40px;
    border-left: 8px solid rgb(168,183,183);
    padding: 70px;
}.dbour_mission .dbsubtext_wrap::after {
    width: 120px;
    position: absolute;
    border: 3px solid rgb(132,148,148);
    z-index: -1;
    opacity: 0.3;
    content: "";
    top: -15px;
    right: -15px;
    height: 120px;
}.dbour_mission .dbsubtext_wrap > div {
    grid-template-columns: 0.3fr 0.7fr;
    align-items: flex-start;
}.dbour_mission .dbsubtext_wrap p {
    font-size: calc(23px * 1.1);
    padding-bottom: 20px;
}.dbour_mission .dbsubtext_wrap p::after {
    width: 60px;
}.dbour_mission .dbsubtext_wrap div div {
    column-count: 2;
}
}


@media (min-width: 1200px) {.dbour_mission {
    padding: 180px 0 160px;
}.dbour_mission::before {
    background: linear-gradient(135deg, 
            rgb(132,148,148) 0%,
            rgba(0, 0, 0, 0.75) 100%);
}.dbour_mission h2 {
    font-size: calc(31px * 1.4);
    letter-spacing: 1px;
}.dbour_mission .dbsubtext_wrap {
    padding: 80px;
    margin-left: 80px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}.dbour_mission .dbsubtext_wrap::before {
    background: linear-gradient(45deg, 
            rgba(rgb(168,183,183), 0.05) 0%, 
            rgba(rgb(168,183,183), 0.02) 50%, 
            rgba(255, 255, 255, 0) 100%);
}.dbour_mission .dbsubtext_wrap > div {
    grid-template-columns: 0.25fr 0.75fr;
    gap: 40px;
}.dbour_mission .dbsubtext_wrap p {
    font-size: 23px;
}.dbour_mission .dbsubtext_wrap div div {
    column-gap: 60px;
    column-count: 2;
}}.dbusageAgreementAlert {
    padding: 1rem 0;
    background: rgb(205,218,218);
    border-top: 3px solid rgb(168,183,183);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    display: flex;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    z-index: 90;
}#dbdataPrivacyBanner {
    display: none;
}#dbdataPrivacyBanner:checked ~ .dbusageAgreementAlert {
    visibility: hidden;
    opacity: 0;
}.dbusageAgreementAlert .container {
    padding: 0 15px;
    display: flex;
    margin: 0 auto;
    gap: 1rem;
    position: relative;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    flex-wrap: wrap;
    max-width: 1140px;
}.dbmanage_tracking {
    flex-shrink: 0;
    align-items: center;
    display: flex;
    margin-right: 1rem;
}.dbmanage_tracking svg {
    fill: rgb(168,183,183);
    height: 50px;
    width: 50px;
}.dbdata_guard {
    flex: 1;
    margin-bottom: 20px;
    min-width: 300px;
}.dbdata_guard h5 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgb(168,183,183);
}.dbdata_guard p {
    font-size: 1rem;
    color: #000000;
}.dbcookie_customize {
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 700;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    background: rgb(168,183,183);
    cursor: pointer;
}.cookie_button.dbdata_opt {
    background: rgb(168,183,183);
}.cookie_button.dbuser_choices {
    margin-left: 0.5rem;
    background: #000000;
}.dbcookie_customize:hover {
    background: #000000;
    transform: translateY(-3px);
}.cookie_button.dbuser_choices:hover {
    background: rgb(168,183,183);
}.dbusageAgreementAlert p a {
    text-decoration: underline;
    transition: color 0.3s ease;
    color: rgb(168,183,183);
}.dbusageAgreementAlert p a:hover {
    color: #000000;
}
@media only screen and (max-width: 768px) {.dbusageAgreementAlert .container {
    align-items: center;
    flex-direction: column;
}.dbmanage_tracking {
    margin-bottom: 1rem;
    margin-right: 0;
}.dbdata_guard {
    text-align: center;
    margin-bottom: 1rem;
}.cookie_button.dbuser_choices {
    margin-top: 0.5rem;
    margin-left: 0;
}}
.dbjoin_our_mailing_list {
    overflow: hidden;
    background: linear-gradient(45deg, #000000 0%, rgb(168,183,183,0.5) 100%);
    position: relative;
    padding: 5rem 2rem;
}.dbjoin_our_mailing_list::before {
    content: "";
    width: 100%;
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.5) 10px,
        rgba(0, 0, 0, 0.5) 11px
    );
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.1;
    z-index: 1;
}.dbjoin_our_mailing_list::after {
    content: "";
    right: 0;
    background: linear-gradient(90deg, transparent, rgb(132,148,148), transparent);
    bottom: 0;
    width: 60%;
    position: absolute;
    height: 5px;
    filter: blur(2px);
    animation: scanline 3s linear infinite;
}@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.dbjoin_our_mailing_list .dbmentor_values {
    grid-template-columns: 1fr;
    max-width: 1200px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    display: grid;
}.dbjoin_our_mailing_list .dbmessage_feedback {
    position: relative;
    border-image-slice: 1;
    transform: perspective(1000px) rotateX(5deg);
    padding: 3rem;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 25px rgb(168,183,183,0.5), 
                inset 0 0 15px rgb(132,148,148,0.5);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-image: linear-gradient(
        135deg,
        rgb(168,183,183),
        transparent,
        rgb(132,148,148)
    );
    width: 70%;
    margin-left: 15%;
}.dbjoin_our_mailing_list .dbmessage_feedback::before {
    content: "";
    left: -2px;
    right: -2px;
    background: linear-gradient(45deg, rgb(168,183,183), transparent, rgb(132,148,148));
    bottom: -2px;
    position: absolute;
    opacity: 0.7;
    top: -2px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
    filter: blur(15px);
}@keyframes glow {
    0% {
        opacity: 0.5;
        filter: blur(15px);
    }
    100% {
        opacity: 0.9;
        filter: blur(20px);
    }
}

.dbjoin_our_mailing_list h3 {
    position: relative;
    font-family: Arial, sans-serif;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    font-size: 35px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(168,183,183), 0 0 20px rgb(168,183,183,0.5);
    display: inline-block;
}.dbjoin_our_mailing_list h3::after {
    bottom: -10px;
    content: "";
    left: 0;
    background: rgb(132,148,148);
    box-shadow: 0 0 10px rgb(132,148,148);
    height: 3px;
    position: absolute;
    width: 50px;
}.dbjoin_our_mailing_list .input_holder {
    display: flex;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    transform-style: preserve-3d;
}.dbjoin_our_mailing_list input[type="email"] {
    color: #ffffff;
    padding: 1.3rem 1.5rem;
    font-size: 16px;
    flex-grow: 1;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    border-right: 1px solid rgb(168,183,183,0.5);
}.dbjoin_our_mailing_list input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}.dbjoin_our_mailing_list input[type="email"]:focus {
    outline: none;
    box-shadow: inset 0 0 15px rgb(168,183,183,0.5);
    background: rgba(255, 255, 255, 0.2);
}.dbjoin_our_mailing_list .dbsub_unit {
    letter-spacing: 1px;
    position: relative;
    border: none;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(
        to right,
        rgb(132,148,148),
        rgb(168,183,183)
    );
    font-family: Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
}.dbjoin_our_mailing_list .dbsub_unit::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    left: -100%;
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    transition: all 0.6s ease;
}.dbjoin_our_mailing_list .dbsub_unit:hover::before {
    left: 100%;
}.dbjoin_our_mailing_list .dbsub_unit:hover {
    box-shadow: 0 0 15px rgb(132,148,148), 0 0 30px rgb(132,148,148,0.5);
    text-shadow: 0 0 5px #ffffff;
}

@media (max-width: 768px) {.dbjoin_our_mailing_list {
    padding: 3rem 1rem;
}.dbjoin_our_mailing_list .dbmessage_feedback {
    margin-left: 0;
    padding: 2rem 1rem;
    width: 100%;
    transform: perspective(0) rotateX(0);
}.dbjoin_our_mailing_list h3 {
    font-size: 21px;
    width: 100%;
    text-align: center;
}.dbjoin_our_mailing_list h3::after {
    transform: translateX(-50%);
    left: 50%;
}.dbjoin_our_mailing_list .input_holder {
    flex-direction: column;
    clip-path: none;
}.dbjoin_our_mailing_list input[type="email"] {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgb(168,183,183,0.5);
    border-right: none;
}.dbjoin_our_mailing_list .dbsub_unit {
    padding: 1rem;
    width: 100%;
}
}