* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    max-width: 100%;
    width: 1189px;
    margin: auto;
}

header,footer {
    width: 100%;
}

header {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 100;
    background: linear-gradient(135deg, rgb(168,198,187,0.5), rgb(124,169,154,0.5));
}

.developer_experience .container {
    position: relative;
    padding: 0 30px;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
}

.developer_experience .img_stack {
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 0;
    height: 100%;
    position: relative;
}

.developer_experience .img_stack::before {
    left: 0;
    z-index: 1;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    position: absolute;
    width: 100%;
    content: "";
    height: 50%;
}

.developer_experience .student_feedback span:not(.name) {
    font-size: 18px;
    left: 30px;
    font-weight: 400;
    transition: transform 0.3s ease;
    bottom: 30px;
    margin: 0;
    position: absolute;
    font-family: Arial, sans-serif;
    z-index: 2;
    opacity: 0.85;
    color: #ffffff;
}

.developer_experience .job_content::after {
    position: absolute;
    opacity: 0.2;
    height: 30px;
    content: "";
    bottom: 40px;
    right: 40px;
    background: linear-gradient(to left top, 
        rgb(124,169,154) 0%, 
        rgb(124,169,154) 50%, 
        transparent 50%, 
        transparent 100%);
    width: 40px;
}

.overlayConsentSettings .cookie_edu svg {
    height: 60px;
    fill: rgb(168,198,187);
    width: 60px;
}


.overlayConsentSettings .cookie_alerts {
    flex-grow: 1;
}

.overlayConsentSettings .privacy_cookies {
    color: #ffffff;
    font-size: 20px;
    border-radius: 5px;
    background-color: rgb(168,198,187);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 10px 20px;
    margin-right: 15px;
    margin-top: 20px;
}

.thanksPanel::after {
    height: 150%;
    transform: rotate(-5deg);
    animation: patternShift 20s infinite linear;
    background: repeating-linear-gradient(45deg, rgb(168,198,187,0.5) 0px, transparent 2px, transparent 10px);
    position: absolute;
    left: -25%;
    width: 150%;
    z-index: 0;
    content: "";
    top: -25%;
    opacity: 0.04;
}

.thanksPanel .expert_network {
    transition: transform 0.5s;
    transform-origin: center top;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    border-radius: 10px;
    padding: 3rem;
    animation: fadeIn 1s 0.5s both ease-out;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.thanksPanel ul {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

.thanksPanel li {
    transform: translateX(20px);
    position: relative;
    padding-left: 0;
    animation: slideIn 0.8s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}

.thanksPanel li span::first-letter {
    font-weight: 700;
    color: rgb(168,198,187);
    font-size: 1.4em;
}

.plan_block {
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.plan_block::before {
    bottom: 0;
    top: 0;
    z-index: 1;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    right: 0;
    left: 0;
}

.plan_block .price_panel {
    list-style: none;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    display: grid;
    margin: 0;
    padding: 0;
}

.plan_block .price_panel li:nth-child(1) {
    animation-delay: 0.3s;
}

.plan_block .price_panel li:nth-child(3) {
    animation-delay: 0.7s;
}

.plan_block .learning_rates {
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: block;
}

.plan_block .cost_card {
    height: 100%;
    color: #ffffff;
    flex-direction: column;
    padding: 35px 30px;
    display: flex;
    min-height: 400px;
}

.plan_block .cost_card h4 {
    font-size: calc(20px * 1.1);
    margin: 0 0 15px;
    transition: transform 0.3s ease-out;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.plan_block .learning_rates:hover {
    transform: translateY(-10px) scale(1.02);
}

.plan_block .learning_rates:hover .cost_levels {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 15px 20px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
}

.plan_block .learning_rates:hover .cost_card h4::after {
    width: 100px;
}

.landing_page {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: linear-gradient(135deg, rgb(211,227,220), #ffffff, rgb(211,227,220));
    overflow: hidden;
    padding: 5% 3%;
    position: relative;
}

.landing_page h1::after {
    position: absolute;
    height: 3px;
    transform: translateX(-50%);
    width: 80px;
    left: 50%;
    border-radius: 10px;
    bottom: -10px;
    background: linear-gradient(90deg, rgb(168,198,187), rgb(124,169,154));
    content: "";
}

.landing_page .content_holder {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    flex: 1;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    padding: 2rem;
    backdrop-filter: blur(5px);
    border-left: 4px solid rgb(168,198,187);
    transition: transform 0.4s ease-out;
}

.landing_page svg path {
    transition: fill 0.4s ease;
}

.landing_page svg:hover path {
    fill: rgb(124,169,154);
}

.landing_page .learn_main p {
    margin: 0 0 1.5rem;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    font-size: calc(12px * 1.1);
    max-width: 85%;
}

.landing_page .help_inquiry:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 15px 30px rgb(168,198,187,0.5);
}

.landing_page .img_stack {
    overflow: hidden;
    height: 300px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    position: relative;
    width: 100%;
    border-radius: 23px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.company_overview {
    background: rgb(211,227,220);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.company_overview .container {
    z-index: 2;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.company_overview .expert_network {
    align-items: center;
    grid-gap: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.company_overview h3 {
    position: relative;
    grid-column: 1 / -1;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 38px;
    color: #000000;
    font-weight: 700;
}

.company_overview h3:hover::after {
    width: 100%;
}

.company_overview .study_guides:hover {
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.company_overview .study_guides span {
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
    color: rgb(168,198,187);
    font-weight: 600;
    font-size: 21px;
    display: block;
}

.company_overview .study_guides .img_stack {
    position: relative;
    height: 280px;
    border-radius: 11px;
    overflow: hidden;
    transition: transform 0.5s ease;
    width: 100%;
}

.company_overview .digital_education::before {
    height: 5px;
    content: "";
    position: absolute;
    border-radius: 10px 10px 0 0;
    top: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(124,169,154), rgb(168,198,187));
}

.company_overview .digital_education .learning_track {
    height: 180px;
    border: 5px solid #ffffff;
    width: 180px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    border-radius: 50%;
    position: relative;
}

.secure_bolt {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #000000;
    background-color: rgb(211,227,220);
    padding: 50px;
}

.secure_bolt h2 {
    font-size: 28px;
    margin: 15px 0;
    font-weight: 700;
    font-family: Arial, sans-serif;
    color: rgb(124,169,154);
}

.secure_bolt li {
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.data_analysis::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    opacity: 0.3;
    z-index: -1;
    right: 0;
    bottom: 0;
}

.data_analysis .key_pros {
    order: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    padding: 50px;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 23px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.data_analysis .pro_gains {
    color: #ffffff;
    position: relative;
    font-weight: 700;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-size: 34px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.data_analysis .fast_statistics {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid rgb(168,198,187);
    overflow: hidden;
    position: relative;
    align-items: center;
    background: rgba(30, 41, 59, 0.7);
    padding: 30px;
    justify-content: flex-start;
    transition: all 0.4s ease;
    display: flex;
    border-radius: 23px;
    backdrop-filter: blur(10px);
}



.data_analysis .fast_statistics span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.data_analysis .fast_statistics svg {
    margin-right: 20px;
    transition: all 0.3s ease;
    fill: rgb(168,198,187);
    width: 45px;
    height: 45px;
}

.data_analysis .fast_statistics:hover svg {
    transform: scale(1.1);
}



.cert_display .container {
    z-index: 2;
    position: relative;
}

.cert_display .support_cta {
    gap: 3rem;
    flex-direction: column;
    display: flex;
}

.cert_display .get_contactus {
    border-radius: 29px;
    gap: 2rem;
    margin-bottom: 1rem;
    justify-content: center;
    border: 1px solid rgb(124,169,154,0.5);
    display: flex;
    padding: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.cert_display .info_item a:hover {
    border-color: rgb(168,198,187,0.5);
    background: #000000;
    box-shadow: 0 0 15px rgb(168,198,187,0.5);
}

.cert_display .text_main_holder {
    gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.cert_display .page_header svg {
    height: auto;
    max-width: 180px;
    transition: filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgb(168,198,187,0.5));
}

.cert_display .header_tutor h5 {
    font-size: 20px;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cert_display .top_start {
    gap: 0.75rem;
    display: flex;
    flex-direction: column;
}

.cert_display .top_start a::before {
    transition: all 0.3s ease;
    border-radius: 50%;
    left: 0;
    background: rgb(124,169,154);
    transform: translateY(-50%);
    width: 5px;
    top: 50%;
    height: 5px;
    position: absolute;
    content: '';
}

.cert_display .subscribe_holder::before {
    left: 0;
    opacity: 0.1;
    top: 0;
    z-index: -1;
    right: 0;
    position: absolute;
    background: radial-gradient(circle at top right, rgb(168,198,187,0.5) 0%, transparent 70%);
    bottom: 0;
    content: '';
}

.cert_display .input_holder input[type="email"]:focus {
    box-shadow: 0 0 10px rgb(168,198,187,0.5);
    border-color: rgb(168,198,187);
    outline: none;
}

.cert_display .sub_agreement::before {
    width: 100%;
    transition: left 0.7s ease;
    left: -100%;
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cert_display .compliance {
    border-top: 1px solid rgb(124,169,154,0.5);
    position: relative;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

.contact_form_box::before {
    background: 
        radial-gradient(circle at 10% 20%, rgb(168,198,187,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgb(124,169,154,0.5) 0%, transparent 40%);
    z-index: 1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
}

.contact_form_box .img_stack::after {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
    content: '';
}

.contact_form_box .reach_list {
    display: flex;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 10px rgb(168,198,187,0.5),
        0 0 20px rgb(124,169,154,0.5);
    border-radius: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contact_form_box input[type="text"]::placeholder,
.contact_form_box textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact_form_box .reach_grid input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.contact_form_box .reach_grid label::before {
    left: 0;
    border: 1px solid rgb(168,198,187);
    position: absolute;
    content: '';
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgb(168,198,187,0.5);
    height: 20px;
    border-radius: 10px;
    width: 20px;
    top: 2px;
}

.contact_form_box .reach_grid a:hover {
    text-shadow: 0 0 5px rgb(124,169,154);
    color: rgb(124,169,154);
}

.contact_form_box .help_inquiry:hover {
    box-shadow: 0 0 20px rgb(124,169,154);
    background: rgb(124,169,154);
    transform: translateY(-3px);
}

.contact_form_box .help_inquiry:hover::before {
    left: 100%;
}

.contact_form_box .feedback_block {
    position: relative;
    padding: 50px;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    flex: 2;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.contact_form_box .feedback_block h4::after {
    left: 0;
    width: 50px;
    position: absolute;
    background: rgb(168,198,187);
    content: '';
    height: 2px;
    box-shadow: 0 0 5px rgb(168,198,187);
    bottom: -10px;
}

.contact_form_box .feedback_card svg {
    height: 24px;
    margin-right: 15px;
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact_form_box .feedback_card span {
    color: #ffffff;
    font-size: 18px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.prospective_students {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(211,227,220) 0%, rgb(168,198,187,0.5) 100%);
}

.prospective_students .container {
    z-index: 1;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.prospective_students .expert_network {
    padding: 0 50px;
    overflow: visible;
    position: relative;
}

.prospective_students div {
    display: flex;
    flex-direction: column;
    position: relative;
}

.prospective_students div::before {
    top: 0;
    width: 2px;
    opacity: 0.5;
    background: linear-gradient(180deg, rgb(168,198,187,0.5), rgb(124,169,154,0.5));
    content: "";
    position: absolute;
    left: 36px;
    height: 100%;
}

.prospective_students div p:hover svg {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.2);
}

.prospective_students div p::before {
    content: "";
    opacity: 0;
    top: 16px;
    position: absolute;
    height: 2px;
    width: 10px;
    transition: all 0.3s ease;
    left: 75px;
    background: rgb(168,198,187);
}

.course_program::before {
    z-index: 1;
    background: linear-gradient(135deg, rgb(168,198,187,0.5) 0%, transparent 50%, rgb(124,169,154,0.5) 100%);
    top: 0;
    opacity: 0.7;
    position: absolute;
    left: 0;
    animation: backgroundShift 15s infinite alternate;
    height: 100%;
    content: "";
    width: 100%;
}

.course_program .container {
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    z-index: 5;
    margin: 0 auto;
}

.course_program .job_success {
    gap: 40px;
    position: relative;
    perspective: 1000px;
    grid-template-columns: 1.5fr 1fr;
    display: grid;
}

.course_program .job_success::before {
    height: calc(100% + 60px);
    z-index: -1;
    width: calc(100% + 60px);
    border: 1px solid rgb(168,198,187,0.5);
    transform: rotateY(5deg) rotateX(2deg);
    position: absolute;
    border-radius: 20px;
    content: "";
    animation: borderPulse 4s infinite alternate;
    transform-style: preserve-3d;
    left: -30px;
    top: -30px;
}

.course_program .content_holder .description {
    border-radius: 10px;
    position: relative;
    border-left: 3px solid rgb(168,198,187,0.5);
    text-align: justify;
    z-index: 2;
    transition: all 0.5s ease;
    font-weight: 400;
    color: #000000;
    line-height: 1.9;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    padding: 18px;
    letter-spacing: 0.5px;
    font-size: 13px;
    backdrop-filter: blur(4px);
    margin-bottom: 25px;
    transform: translateZ(0);
    background: rgba(255, 255, 255, 0.07);
}

.course_program .img_stack {
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    animation: floatImage 6s ease-in-out infinite alternate;
    transform: translateZ(0) rotateY(-5deg);
    position: relative;
    height: 450px;
    align-self: flex-start;
    overflow: hidden;
    z-index: 4;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background-size: cover;
    transform-style: preserve-3d;
    background-position: center;
}

header .nav_guide::before {
    content: '';
    height: 5px;
    top: 0;
    width: 100%;
    left: 0;
    position: absolute;
    background: linear-gradient(to right, rgb(168,198,187), rgb(124,169,154));
}

header .nav_wrap svg {
    width: 180px;
    transition: all 0.3s ease;
    height: auto;
}

header .header_tutor {
    gap: 0.7rem;
    display: flex;
    width: 100%;
    padding: 1rem 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

header .head_section:hover {
    color: rgb(168,198,187);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

header .head_section:hover::before {
    height: 100%;
}


@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}



@media (max-width: 992px) {.developer_experience {
    padding: 100px 0;
}.developer_experience .student_feedback {
    grid-template-columns: 300px 1fr;
    gap: 40px;
}.developer_experience .img_stack {
    min-height: 350px;
}.developer_experience .job_content {
    padding: 40px 30px;
}.developer_experience .job_content::before {
    height: 24px;
    top: 30px;
    width: 30px;
    left: 30px;
}.developer_experience .job_content::after {
    height: 24px;
    width: 30px;
    bottom: 30px;
    right: 30px;
}
}


@media (max-width: 768px) {.overlayConsentSettings .cookie_edu {
    margin-right: 0;
    margin-bottom: 15px;
}.overlayConsentSettings .privacy_cookies {
    margin-left: 0;
    text-align: center;
    width: 48%;
}}



@media (max-width: 768px) {.thanksPanel {
    padding: 4rem 0;
}.thanksPanel h2 {
    margin-bottom: 2rem;
    font-size: calc(37px * 0.8);
    line-height: 1.4;
}.thanksPanel .expert_network {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2rem;
}.thanksPanel ul::before {
    left: -15px;
}.thanksPanel li::before {
    width: 24px;
    height: 24px;
    left: -30px;
}
}



@media (max-width: 768px) {.plan_block {
    padding: 60px 0;
}.plan_block h2 {
    font-size: calc(34px * 0.9);
}.plan_block .payment_plans {
    font-size: calc(13px * 0.95);
    margin-bottom: 40px;
}.plan_block .price_panel {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}.plan_block .cost_card {
    padding: 25px 20px;
    min-height: 350px;
}.plan_block .cost_card h4 {
    font-size: 20px;
}.plan_block .cost_breakdown {
    font-size: calc(20px * 1.1);
}
}



@media screen and (min-width: 992px) {.landing_page {
    padding: 5% 8%;
}.landing_page h1 {
    font-size: 28px;
}.landing_page .expert_network {
    gap: 5rem;
}.landing_page .content_holder {
    border-left: 6px solid rgb(168,198,187);
    border-right: 1px solid rgb(124,169,154,0.5);
}.landing_page .learn_main {
    text-align: left;
    align-items: flex-start;
}.landing_page svg {
    height: 180px;
    width: 180px;
}.landing_page .img_stack {
    height: 500px;
    transform-origin: center right;
}.landing_page .learn_main p {
    font-size: calc(12px * 1.25);
    max-width: 90%;
}.landing_page .help_inquiry {
    margin: 1rem 0;
}
}



@media (max-width: 576px) {.company_overview {
    padding: 50px 0;
}.company_overview .container {
    padding: 0 15px;
}.company_overview h3 {
    margin-bottom: 20px;
    font-size: calc(38px * 0.8);
}.company_overview .expert_network {
    grid-gap: 30px;
}.company_overview .study_guides,
    .company_overview .digital_education {
    padding: 20px;
}.company_overview .study_guides p,
    .company_overview .digital_education p {
    margin-bottom: 20px;
}.company_overview .study_guides .img_stack {
    height: 180px;
}.company_overview .digital_education .learning_track {
    width: 120px;
    height: 120px;
}.company_overview .digital_education .learning_track::before {
    width: calc(100% + 20px);
    left: -10px;
    top: -10px;
    height: calc(100% + 20px);
}}



@media (max-width: 768px) {.data_analysis {
    padding: 60px 0;
}.data_analysis .container {
    gap: 40px;
    padding: 0 15px;
}.data_analysis .key_pros {
    padding: 30px 25px;
}.data_analysis .pro_gains {
    margin-bottom: 20px;
    font-size: calc(34px * 0.9);
}.data_analysis .fast_statistics {
    padding: 20px;
}.data_analysis .fast_statistics h4 {
    min-width: 90px;
    font-size: 32px;
}.data_analysis .fast_statistics span {
    margin-left: 15px;
    font-size: calc(14px * 0.95);
    padding-left: 15px;
}.data_analysis .fast_statistics svg {
    width: 35px;
    margin-right: 15px;
    height: 35px;
}
}



@media (max-width: 768px) {.cert_display {
    padding: 3rem 0 1rem;
}.cert_display .get_contactus {
    gap: 1rem;
    align-items: center;
    flex-direction: column;
}.cert_display .info_item {
    min-width: 100%;
}.cert_display .text_main_holder {
    gap: 2.5rem;
    grid-template-columns: 1fr;
}.cert_display .subscribe_holder {
    grid-column: auto;
}.cert_display .page_header {
    align-items: center;
    text-align: center;
}.cert_display .mentor_cta {
    max-width: 100%;
    text-align: center;
}.cert_display .header_tutor h5 {
    text-align: center;
}.cert_display .header_tutor h5::after {
    transform: translateX(-50%);
    left: 50%;
}.cert_display .top_start {
    align-items: center;
}.cert_display .top_start a {
    text-align: center;
}.cert_display .top_start a:hover {
    transform: translateY(-2px);
}.cert_display .input_holder {
    flex-direction: column;
}.cert_display .sub_agreement {
    width: 100%;
}
}



@media (max-width: 767px) {.prospective_students {
    padding: 80px 0;
}.prospective_students .expert_network {
    padding: 0 20px;
}.prospective_students h4 {
    padding-left: 20px;
    margin-bottom: 50px;
    font-size: calc(46px - 12px);
}.prospective_students h4::before {
    width: 4px;
}.prospective_students div p {
    margin-bottom: 25px;
    padding-left: 65px;
}.prospective_students div::before {
    left: 28px;
}.prospective_students div p svg {
    height: 24px;
    width: 24px;
    left: 16px;
}.prospective_students div p::before {
    top: 14px;
    left: 55px;
}.prospective_students div p::after {
    left: 45px;
    width: calc(100% - 45px);
}
}



@media screen and (max-width: 991px) {.course_program {
    padding: 80px 0;
}.course_program .job_success {
    grid-template-columns: 1fr;
    gap: 40px;
}.course_program .job_success::before {
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    top: -20px;
    transform: none;
}.course_program .content_holder {
    transform: none;
    animation: none;
    order: 2;
}.course_program .img_stack {
    min-height: 400px;
    order: 1;
    transform: none;
    animation: pulse 8s infinite alternate;
}.course_program .img_stack:hover {
    transform: scale(1.02) translateY(-5px);
}.course_program .content_holder h2 {
    margin-right: auto;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    display: block;
}.course_program .content_holder .description {
    text-align: left;
}
}



@media (max-width: 480px) {header .nav_guide {
    padding: 0.8rem 0;
    margin: 0.5rem 0;
}header .nav_wrap {
    padding: 0 0 0.6rem 0;
}header .nav_wrap svg {
    width: 120px;
}header .header_tutor {
    justify-content: flex-start;
    padding: 0.6rem 0.5rem 0;
    overflow-x: auto;
    flex-wrap: nowrap;
}header .header_tutor::-webkit-scrollbar {
    height: 3px;
}header .header_tutor::-webkit-scrollbar-thumb {
    background: rgb(168,198,187);
    border-radius: 10px;
}header .head_section {
    margin-right: 3px;
    flex-shrink: 0;
    white-space: nowrap;
}
}



@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



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



@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
    }
}



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

@keyframes glowLine {
    0% {
        opacity: 0.3;
        background-position: 0% 50%;
    }
    50% {
        opacity: 1;
        background-position: 100% 50%;
    }
    100% {
        opacity: 0.3;
        background-position: 0% 50%;
    }
}



@keyframes borderPulse {
    0% {
        border-color: rgb(168,198,187,0.5);
        transform: rotateY(5deg) rotateX(2deg);
    }
    100% {
        border-color: rgb(124,169,154,0.5);
        transform: rotateY(3deg) rotateX(0deg);
    }
}



@keyframes floatImage {
    0%, 100% {
        transform: translateZ(0) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: translateZ(50px) rotateY(-3deg) translateY(-10px);
    }
}

