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

a {
    text-decoration: none;
    color: inherit;
}

svg {
    height: 30px;
    width: 30px;
}

.style_wrapper-padding {
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    display: flex;
}

html,body {
    font-family: Arial, sans-serif;
    color: #000000;
    scroll-behavior: auto;
    height: 100%;
    min-height: 100%;
}

.style_tariff_row::before {
    top: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    opacity: 0.1;
    z-index: 1;
    background: linear-gradient(45deg, transparent 0%, rgb(218,173,188,0.5) 30%, transparent 70%);
}

.style_tariff_row .style_study_fees {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.style_tariff_row .style_payment_option h2 {
    display: inline-block;
    color: #000000;
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 1rem;
}

.style_tariff_row .style_study_pricing {
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 15px;
    color: #000000;
}

.style_tariff_row .style_pricing_pack {
    perspective: 1000px;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}

.style_tariff_row .style_annual_plan:nth-child(1) {
    animation-delay: 0.1s;
}

.style_tariff_row .style_annual_plan:nth-child(2) {
    animation-delay: 0.2s;
}

.style_tariff_row .style_annual_plan:nth-child(3) {
    animation-delay: 0.3s;
}

.style_tariff_row .style_annual_plan:nth-child(4) {
    animation-delay: 0.4s;
}

.style_tariff_row .style_annual_plan::before {
    background: linear-gradient(90deg, rgb(218,173,188), rgb(199,133,138));
    transform: scaleX(0);
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 5px;
}

.style_tariff_row .style_value_plan {
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    padding: 2rem;
}

.style_tariff_row .style_annual_plan:hover .style_value_plan h3 {
    color: rgb(218,173,188);
}

.style_tariff_row .style_cert_cost {
    font-weight: 700;
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    margin-bottom: 1.5rem;
    color: rgb(218,173,188);
    display: inline-block;
}

.style_tariff_row .style_annual_plan:hover .style_cert_cost::after {
    width: 80px;
}

.style_tariff_row .style_value_plan p {
    overflow-wrap: break-word;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    word-break: break-word;
    flex-grow: 1;
    font-size: calc(15px - 2px);
}

.style_tariff_row .style_annual_plan:hover .style_img_shadow {
    transform: scale(1.05);
}

.style_tariff_row .style_annual_plan:hover .style_img_shadow::after {
    opacity: 0.4;
}

.style_contact_box {
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(120deg, rgb(236,215,217) 0%, #1a1e2e 100%);
    position: relative;
}

.style_contact_box::after {
    z-index: 1;
    content: "";
    position: absolute;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
    left: 0;
    height: 100px;
    width: 100%;
}

.style_contact_box h2 {
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 35px;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.style_contact_box h2::after {
    content: "";
    bottom: -20px;
    left: calc(50% - 10px);
    background: rgb(218,173,188);
    width: 70px;
    position: absolute;
    height: 2px;
}

.style_contact_box .style_img_shadow {
    position: relative;
    min-height: 100%;
}

.style_contact_box .style_img_shadow::before {
    content: "";
    height: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    width: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
}



.style_contact_box .style_reach_query {
    padding: 50px;
    position: relative;
}

.style_contact_box .style_reach_query::before {
    position: absolute;
    left: 0;
    height: 100%;
    content: "";
    z-index: -1;
    width: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    top: 0;
}

.style_contact_box h3::after {
    content: "";
    height: 2px;
    width: 50px;
    background: rgb(218,173,188);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.style_contact_box input[type="text"]:focus {
    border-color: rgb(218,173,188);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(rgb(218,173,188), 0.2);
    outline: none;
}

.style_contact_box input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.style_contact_box .style_query_request input[type="checkbox"] {
    margin-top: 2px;
    position: relative;
    height: 24px;
    appearance: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 24px;
}

.style_contact_box .style_query_request label {
    font-size: calc(15px - 2px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.style_contact_box .style_query_request a {
    transition: all 0.3s ease;
    color: rgb(218,173,188);
    position: relative;
    text-decoration: none;
}

.style_contact_box .style_query_request a::after {
    transition: all 0.3s ease;
    bottom: -2px;
    position: absolute;
    height: 1px;
    background: rgb(218,173,188);
    left: 0;
    width: 100%;
    content: "";
}

.style_contact_box .style_connect_reach::before {
    top: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    position: absolute;
    left: -100%;
}

.style_contact_box .style_connect_reach:hover {
    transform: translateY(-3px);
    background: rgb(199,133,138);
}

.style_contact_box svg {
    filter: drop-shadow(0 0 5px rgba(rgb(218,173,188), 0.5));
    fill: rgb(218,173,188);
    transition: all 0.3s ease;
    height: 22px;
    width: 22px;
}

.style_contact_box svg:hover path {
    fill: #ffffff;
}

.style_course_suitability::before {
    width: 100%;
    left: 0;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(rgb(199,133,138,0.5), 0.05) 25%, 
        transparent 35%,
        rgba(rgb(218,173,188,0.5), 0.05) 50%,
        transparent 65%,
        rgba(rgb(199,133,138,0.5), 0.05) 75%,
        transparent 100%
    );
    height: 100%;
    top: 0;
    z-index: -1;
    content: "";
    position: absolute;
}

.style_course_suitability .style_expert_studio {
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    max-width: 1100px;
}

.style_course_suitability h3::before {
    content: "";
    height: 100%;
    left: 0;
    width: 5px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    background: linear-gradient(
        to bottom,
        rgb(199,133,138),
        rgb(218,173,188)
    );
}

.style_course_suitability ul::before {
    left: 50%;
    height: 100%;
    top: 0;
    width: 1px;
    content: "";
    z-index: -1;
    position: absolute;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(rgb(218,173,188,0.5), 0.3),
        transparent
    );
}

.style_course_suitability li::before {
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    content: "";
    right: 0;
    border-radius: 10px 10px 0 0;
    top: 0;
    left: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(rgb(218,173,188,0.5), 0.5),
        transparent
    );
    height: 4px;
}

.style_course_suitability li:hover {
    transform: translateY(-5px);
    background: rgba(rgb(199,133,138,0.5), 0.05);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(rgb(218,173,188,0.5), 0.2);
}

.style_course_suitability li:nth-child(odd)::after {
    right: -10px;
    left: auto;
    animation: pulseEven 3s infinite alternate ease-in-out;
}

.style_course_suitability li svg::after {
    position: absolute;
    background: radial-gradient(
        circle,
        rgba(rgb(218,173,188,0.5), 0.3) 0%,
        transparent 70%
    );
    width: 100%;
    content: "";
    z-index: -1;
    height: 100%;
    border-radius: 50%;
}

.style_course_suitability li:hover svg {
    animation: pulse 2s infinite;
    transform: scale(1.1);
}

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

header .style_site_top {
    align-items: center;
    border-radius: 27px;
    display: flex;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

header .style_top_page::before {
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgb(218,173,188,0.5), 
        rgb(199,133,138,0.5), 
        rgb(218,173,188,0.5), 
        transparent);
    width: 100%;
    content: '';
    left: 0;
    bottom: 0;
    position: absolute;
}

header .style_top_prime {
    transition: all 0.3s ease;
    border-radius: 10px;
    color: #000000;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    padding: 0.5rem 1rem;
    font-weight: 400;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

header .style_top_prime:hover {
    color: #ffffff;
}

header .style_top_prime:hover::before {
    opacity: 1;
}

header .style_top_prime::after {
    left: 0;
    transform: scaleX(0);
    bottom: 0;
    position: absolute;
    transform-origin: left;
    background: linear-gradient(to right, rgb(218,173,188), rgb(199,133,138));
    height: 2px;
    transition: transform 0.3s ease;
    width: 100%;
    content: '';
}

.style_leadership_profile::before {
    width: 100%;
    background-image: 
        linear-gradient(45deg, rgb(199,133,138,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(199,133,138,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(199,133,138,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(199,133,138,0.5) 75%);
    background-size: 40px 40px;
    top: 0;
    position: absolute;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    content: "";
    left: 0;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
}

.style_leadership_profile .style_success_stories:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.style_leadership_profile .style_success_stories > div:nth-child(1) {
    position: relative;
    order: 1;
}

.style_leadership_profile .style_success_stories > div:nth-child(3) {
    order: 3;
}

.style_leadership_profile .style_img_shadow::before {
    position: absolute;
    width: 100%;
    opacity: 0.7;
    background: linear-gradient(to bottom, transparent 60%, rgb(218,173,188,0.5) 100%);
    transition: opacity 0.5s ease;
    left: 0;
    height: 100%;
    z-index: 1;
    content: "";
    top: 0;
}

.style_leadership_profile .name {
    font-weight: 700;
    margin: 0 0 10px 0;
    transform: translateY(0);
    color: rgb(218,173,188);
    position: relative;
    font-size: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.style_leadership_profile .style_success_stories:hover .name::after {
    width: 100%;
}

.style_leadership_profile .style_work_achievements {
    position: relative;
    margin: 0;
    padding-left: 20px;
    color: #000000;
    font-size: 13px;
    border-left: 3px solid rgb(199,133,138,0.5);
    line-height: 1.8;
}

.style_find_contact {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(236,215,217) 0%, rgba(245, 248, 255, 0.95) 100%);
    z-index: 1;
}

.style_find_contact::after {
    animation: float 15s infinite ease-in-out;
    top: -10%;
    height: 60%;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(to right, transparent, rgb(199,133,138,0.5) 70%);
    content: '';
    right: -5%;
    z-index: -1;
    width: 30%;
    position: absolute;
}

.style_find_contact .style_get_contact {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    padding: 3rem 2rem;
    transition: transform 0.5s ease-out;
    transform: perspective(1000px) rotateY(2deg);
    transform-style: preserve-3d;
    position: relative;
}

.style_find_contact h3::after {
    width: 40%;
    left: 0;
    bottom: -10px;
    content: '';
    height: 3px;
    background: rgb(218,173,188);
    transition: width 0.3s ease;
    position: absolute;
}

.style_find_contact .style_get_contact > div:first-of-type p {
    padding-left: 1rem;
    font-style: italic;
    border-left: 3px solid rgb(199,133,138);
}

.style_find_contact .style_talk_support {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0 0;
    display: flex;
    position: relative;
    padding: 1.5rem 0 0;
    list-style: none;
    gap: 1.25rem;
    flex-direction: column;
}

.style_find_contact .style_talk_support li {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.style_find_contact .style_contact_card {
    display: flex;
    text-transform: capitalize;
    transition: color 0.3s ease;
    color: #000000;
    font-size: calc(16px * 0.95);
    gap: 0.75rem;
    font-weight: 600;
    align-items: center;
    text-decoration: none;
}

.style_find_contact svg {
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

.style_ty_success {
    background: linear-gradient(135deg, rgb(236,215,217) 0%, rgb(199,133,138,0.5) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.style_ty_success::after {
    background: radial-gradient(circle, rgb(218,173,188,0.5) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out;
    z-index: 0;
    position: absolute;
    content: "";
    filter: blur(30px);
    width: 60%;
    top: -20%;
    height: 70%;
    right: -10%;
    opacity: 0.15;
}

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

.style_ty_success h2::after {
    height: 3px;
    animation: expandLine 1s forwards ease-out 1s;
    transform-origin: left;
    position: absolute;
    content: "";
    bottom: -12px;
    left: 0;
    width: 80px;
    background: linear-gradient(90deg, rgb(218,173,188) 0%, rgb(218,173,188,0.5) 100%);
    transform: scaleX(0);
}

.style_ty_success .style_expert_studio::before {
    width: 100%;
    background: linear-gradient(135deg, rgb(218,173,188,0.5) 0%, transparent 100%);
    z-index: -1;
    position: absolute;
    opacity: 0.03;
    left: 0;
    height: 100%;
    content: "";
    top: 0;
}

.style_ty_success .style_expert_studio li::before {
    height: 8px;
    width: 8px;
    transform: scale(0);
    background-color: rgb(218,173,188);
    content: "";
    border-radius: 50%;
    left: 0;
    animation: pulseIn 0.6s forwards ease-out 1.2s;
    top: 8px;
    position: absolute;
}

.style_opening_page {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.style_opening_page .style_page_entry::before {
    background: linear-gradient(135deg, rgb(218,173,188,0.5) 0%, rgb(199,133,138,0.5) 100%);
    top: 0;
    content: "";
    position: absolute;
    height: 100%;
    z-index: 1;
    left: 0;
    width: 100%;
}

.style_opening_page .style_master_classes > div:first-child {
    overflow: hidden;
    position: relative;
}

.style_opening_page .style_master_classes > div:first-child::after {
    width: 100px;
    background: rgb(199,133,138);
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 4px;
    animation: expandWidth 1.5s ease-out forwards;
}

.style_opening_page .style_master_classes > div:first-child::after {
    width: 150px;
}

.style_opening_page .style_master_classes > div:first-child::after {
    width: 200px;
    height: 5px;
}

.style_opening_page .style_master_classes > div:nth-child(2) {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    transform: translateY(20px);
}

.style_opening_page h3 {
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 20px;
}

.style_opening_page h3 {
    font-size: calc(20px * 1.1);
}

.style_cookie_banner_window {
    background: rgb(236,215,217);
    border-top: 2px solid rgb(218,173,188);
    z-index: 90;
    bottom: 0;
    width: 100%;
    position: fixed;
}

.style_online_tracking {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

#style_cookie_alert_modal:checked ~ .style_cookie_banner_window {
    visibility: hidden;
    opacity: 0;
}

.style_cookies_tech {
    margin-right: 10px;
    flex-shrink: 0;
}

.style_edu_consent {
    text-decoration: none;
    text-align: center;
    margin-left: 10px;
    cursor: pointer;
    border-bottom: 2px solid rgb(218,173,188);
    font-size: 24px;
    white-space: nowrap;
    flex-shrink: 0;
    color: rgb(218,173,188);
    line-height: 35px;
    min-width: 120px;
}

.style_wrapper-padding .style_edu_consent {
    background: rgb(218,173,188);
    font-weight: 400;
    padding: 10px;
    border: none;
    font-size: 20px;
    color: #ffffff;
    margin-left: 30px;
}

.style_wrapper-padding .style_cookies_tech svg, .style_wrapper-padding .style_cookies_tech svg path, .style_wrapper-padding .style_cookies_tech img {
    height: 40px;
    width: 40px;
    fill:#000000;
}

footer::before {
    z-index: -2;
    opacity: 0.9;
    background: linear-gradient(145deg, rgb(236,215,217) 0%, rgb(218,173,188,0.5) 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    content: "";
    left: 0;
    right: 0;
}

.style_footer_edu::after {
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(218,173,188), rgb(199,133,138));
    height: 6px;
    width: 100%;
    left: 0;
    content: "";
}

.style_footer_edu .container {
    flex-wrap: wrap;
    display: flex;
    gap: 3rem;
    position: relative;
}

.style_footer_edu .company_holder::before {
    left: 0;
    content: "";
    height: 5px;
    border-top-right-radius: 26px;
    background: rgb(218,173,188);
    position: absolute;
    top: 0;
    width: 100%;
    border-top-left-radius: 26px;
}

.style_footer_edu .company_holder h3::after {
    height: 3px;
    bottom: -0.5rem;
    content: "";
    width: 80px;
    left: 0;
    position: absolute;
    background: rgb(199,133,138);
}

.style_footer_edu .style_digital_res {
    flex: 1 1 calc(100% - 450px);
    min-width: 400px;
}

.style_footer_edu .style_head_pro {
    flex-wrap: wrap;
    gap: 2.5rem;
    display: flex;
}

.style_footer_edu .style_main_top h5 {
    position: relative;
    padding: 1rem 1.5rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    background: rgb(199,133,138);
}

.style_footer_edu .style_main_top .style_head_pro a {
    padding: 0.8rem 1.5rem;
    display: flex;
    color: #000000;
    transition: all 0.3s ease;
    font-size: 17px;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.style_footer_edu .style_main_top .style_head_pro a::after {
    left: 1.5rem;
    background: rgb(199,133,138);
    position: absolute;
    border-radius: 50%;
    top: 50%;
    opacity: 0;
    width: 5px;
    transform: translateY(-50%);
    height: 5px;
    content: "";
    transition: all 0.3s ease;
}

.style_footer_account {
    background: rgb(236,215,217);
    padding: 2rem 0;
    position: relative;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.style_footer_account .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.style_secure_haven {
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    height: auto;
    padding: 40px;
}

.style_secure_haven h1 {
    text-align: center;
    font-weight: 700;
    font-size: 44px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
    margin-top: 40px;
}

.style_secure_haven h4,.style_secure_haven h3, .style_secure_haven h5 {
    color: #ffffff;
}

.style_secure_haven li {
    font-family: Arial, sans-serif;
    color: #000000;
    background: rgb(218,173,188,0.5);
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
    padding: 10px;
    transition: background 0.3s ease;
}

.style_secure_haven p, .style_secure_haven span {
    margin-bottom: 10px;
    line-height: 1.8;
    color: rgb(255, 255, 255, 0.5);
}

.style_give_it_a_try::before {
    background: linear-gradient(to right, transparent 0%, #ffffff 50%, transparent 100%);
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.1;
    top: 0;
    height: 100%;
    transform: skewY(-5deg);
    position: absolute;
    content: '';
}

.style_give_it_a_try .style_expert_studio {
    z-index: 10;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.style_give_it_a_try .style_connect_reach {
    flex: 0 0 300px;
    color: #ffffff;
    justify-content: center;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgb(218,173,188) 0%, rgb(199,133,138) 100%);
    font-size: 18px;
    padding: 50px;
    align-items: center;
    z-index: 5;
    font-weight: 600;
    display: flex;
    position: relative;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    height: 100%;
    text-decoration: none;
}

.style_give_it_a_try .style_connect_reach:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.style_give_it_a_try .style_connect_reach:hover::before {
    opacity: 1;
}

.style_give_it_a_try .style_expert_studio::after {
    content: '';
    background: 
        radial-gradient(circle at 10% 90%, rgb(218,173,188,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgb(199,133,138,0.5) 0%, transparent 30%);
    z-index: 1;
    width: 100%;
    left: 0;
    position: absolute;
    bottom: 0;
    height: 100%;
    opacity: 0.05;
}

.style_statistical_details .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 15px;
}

.style_statistical_details h2 {
    font-size: 31px;
    border-right: 3px solid rgb(218,173,188);
    text-transform: uppercase;
    padding-right: 1.5rem;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
    font-weight: 700;
    top: 0;
    display: flex;
    margin: 0;
    position: absolute;
    height: 100%;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    letter-spacing: 2px;
    left: 0;
    color: #000000;
    align-items: center;
}

.style_statistical_details .style_knowledge_statistics:last-child {
    margin-bottom: 0;
}

.style_statistical_details .style_knowledge_statistics:nth-child(even) p {
    color: rgb(199,133,138);
}

.style_statistical_details .style_knowledge_statistics span {
    padding: 8px 12px;
    z-index: 1;
    font-weight: 600;
    margin: 0 2rem;
    line-height: 1.6;
    color: #000000;
    align-self: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    max-width: 60%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    border-radius: 10px;
    position: relative;
}

.style_statistical_details .style_knowledge_statistics span {
    position: relative;
}

.style_statistical_details .style_knowledge_statistics span::after {
    content: "";
    bottom: 0;
    width: 120%;
    background: linear-gradient(90deg, transparent, rgb(218,173,188,0.5), transparent);
    z-index: -1;
    position: absolute;
    height: 1px;
    left: -10%;
}

.style_statistical_details .style_knowledge_statistics span::after {
    width: 100%;
    z-index: -1;
    content: "";
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 7px,
        rgba(0, 0, 0, 0.04) 7px,
        rgba(0, 0, 0, 0.04) 8px
    );
    bottom: 0;
    height: 1px;
    left: 0;
    position: absolute;
}

.style_statistical_details .style_knowledge_statistics:nth-child(even)::before {
    content: "";
    width: calc(100% - 60px);
    right: 60px;
    background: linear-gradient(90deg, transparent 0%, rgb(199,133,138) 100%);
    height: 1px;
    top: 60px;
    position: absolute;
    z-index: 1;
}

.style_statistical_details .style_knowledge_statistics:hover p {
    transform: scale(1.1);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2);
}

.style_statistical_details .style_knowledge_statistics:hover svg {
    opacity: 0.5;
    transform: rotate(360deg);
}



.style_statistical_details::after {
    opacity: 0.1;
    background: 
        radial-gradient(circle at 20% 80%, rgb(218,173,188,0.5) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgb(199,133,138,0.5) 0%, transparent 30%);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    z-index: -2;
}

.style_statistical_details .style_knowledge_statistics:hover p::before {
    opacity: 0;
    transform: scale(1.1);
}



.style_statistical_details .style_knowledge_statistics:nth-child(1) {
    animation: timeline 8s infinite ease 0s;
}

.style_statistical_details .style_knowledge_statistics:nth-child(2) {
    animation: timeline 8s infinite ease 2s;
}

.style_statistical_details .style_knowledge_statistics:nth-child(3) {
    animation: timeline 8s infinite ease 4s;
}

.style_statistical_details .style_knowledge_statistics:nth-child(4) {
    animation: timeline 8s infinite ease 6s;
}

.style_course_program_description .style_training_flow {
    position: relative;
    grid-column: 4 / span 8;
    z-index: 1;
    height: 100%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    grid-row: 1;
}

.style_course_program_description .style_education {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.style_course_program_description .style_study_track {
    perspective: 1000px;
    width: 100%;
    height: 100%;
    position: relative;
}

.style_course_program_description .style_job_success:nth-child(1) {
    animation: slide-cube 25s infinite 0s;
}

.style_course_program_description .style_job_success:nth-child(2) {
    animation: slide-cube 25s infinite -5s;
}

.style_course_program_description .style_job_success:nth-child(4) {
    animation: slide-cube 25s infinite -15s;
}

.style_course_program_description .style_job_success img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.style_course_program_description .container {
    z-index: 2;
    align-items: center;
    padding: 0 0 0 4rem;
    justify-content: flex-start;
    grid-row: 1;
    display: flex;
    position: relative;
    grid-column: 1 / span 7;
}

.style_course_program_description .style_online_learn h3 {
    line-height: 1.1;
    font-size: 38px;
    position: relative;
    animation: slide-up 0.7s ease-out forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
}

.style_course_program_description .style_online_learn::after {
    border-right: 3px solid rgb(218,173,188);
    content: "";
    bottom: -40px;
    position: absolute;
    width: 80px;
    animation: fade-in 0.5s 0.9s ease-out forwards;
    right: -40px;
    opacity: 0;
    border-bottom: 3px solid rgb(218,173,188);
    height: 80px;
}

.style_course_program_description .style_connect_reach {
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    transform: translateY(30px);
    background: rgb(218,173,188);
    font-size: 20px;
    padding: 1rem 2.5rem;
    display: inline-block;
    overflow: hidden;
    opacity: 0;
    color: #ffffff;
    font-weight: 600;
    animation: slide-up 0.7s 0.6s ease-out forwards;
    position: relative;
}

.style_course_program_description .style_connect_reach:hover::before {
    transform: scale(0);
    transition: transform 0.5s;
}



.style_course_program_description::before {
    top: 0;
    background: linear-gradient(to right,
        rgb(199,133,138,0.5) 0%,
        rgb(199,133,138,0.5) 40%,
        transparent 70%);
    position: absolute;
    z-index: 0;
    width: 100%;
    content: "";
    left: 0;
    pointer-events: none;
    height: 100%;
}

.style_company_info {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: rgb(236,215,217);
}

.style_company_info::before {
    z-index: 0;
    left: 0;
    height: 100%;
    position: absolute;
    background: 
        radial-gradient(circle at 20% 20%, rgb(218,173,188,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgb(199,133,138,0.5) 0%, transparent 60%);
    content: "";
    width: 100%;
    animation: pulse 15s infinite alternate;
    top: 0;
}

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

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

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

.style_company_info .style_skill_spot {
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

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

.style_company_info .style_skill_spot span::before {
    background: rgb(218,173,188);
    left: 0;
    position: absolute;
    transform: translateY(-50%);
    height: 10px;
    top: 50%;
    content: "";
    width: 10px;
    border-radius: 50%;
}

.style_company_info .style_skill_spot .style_img_shadow {
    width: 100%;
    height: 280px;
    overflow: hidden;
    transition: transform 0.5s ease;
    border-radius: 25px;
    position: relative;
}

.style_company_info .style_learning_lab {
    flex-direction: column;
    display: flex;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 25px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 30px;
}

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

.style_company_info .style_learning_lab p {
    border-left: 3px solid rgb(199,133,138);
    font-size: 16px;
    padding-left: 20px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 400;
    position: relative;
}

.style_company_info .style_learning_lab .style_success_path::before {
    border-radius: 50%;
    top: -15px;
    position: absolute;
    animation: rotate 30s linear infinite;
    width: calc(100% + 30px);
    border: 2px dashed rgb(199,133,138,0.5);
    content: "";
    left: -15px;
    height: calc(100% + 30px);
}


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



@media (min-width: 768px) {.style_tariff_row {
    padding: 7rem 2rem;
}.style_tariff_row .style_study_fees {
    flex-direction: row;
    align-items: flex-start;
}.style_tariff_row .style_payment_option {
    flex-direction: column;
    padding-right: 2rem;
    justify-content: center;
    margin: 0;
    display: flex;
    text-align: left;
    flex: 0 0 30%;
    order: 0;
}.style_tariff_row .style_payment_option h2 {
    text-align: left;
}.style_tariff_row .style_payment_option h2::after {
    left: 0;
    transform: none;
}.style_tariff_row .style_study_pricing {
    margin: 0;
    max-width: 100%;
}.style_tariff_row .style_pricing_pack {
    flex: 0 0 70%;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 1rem), 1fr));
}
}



@media (max-width: 768px) {.style_contact_box {
    padding: 50px 0;
}.style_contact_box h2 {
    font-size: calc(35px - 4px);
    margin-bottom: 50px;
}.style_contact_box .style_img_shadow {
    min-height: 250px;
}
}



@media (max-width: 992px) {.style_course_suitability {
    padding: 4rem 0;
}.style_course_suitability h3 {
    font-size: calc(33px * 0.9);
    margin-bottom: 2.5rem;
}.style_course_suitability ul {
    gap: 1.5rem 1.2rem;
}
}



@media (max-width: 768px) {.style_course_suitability {
    padding: 3.5rem 0;
}.style_course_suitability .style_expert_studio {
    padding: 0 1.5rem;
}.style_course_suitability h3 {
    text-align: center;
    padding-left: 0;
    font-size: calc(33px * 0.8);
    margin-bottom: 2rem;
}.style_course_suitability h3::before {
    left: 50%;
    top: auto;
    height: 4px;
    transform: translateX(-50%);
    bottom: -12px;
    width: 80px;
}.style_course_suitability ul {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.style_course_suitability ul::before {
    display: none;
}
}



@media (max-width: 991px) {header {
    padding: 1rem 0;
}header .style_site_top {
    padding: 0.8rem;
    gap: 0.8rem;
}header .style_top_page svg {
    width: 140px;
}header .style_main_top {
    padding: 0.5rem;
}header .style_top_prime {
    font-size: calc(13px - 1px);
    padding: 0.4rem 0.8rem;
}
}



@media (max-width: 767px) {header {
    padding: 0.8rem 0;
}header .style_site_top {
    gap: 0.7rem;
    padding: 0.7rem;
}header .style_top_page svg {
    width: 120px;
}header .style_main_top {
    padding: 0.4rem;
    gap: 0.3rem;
}header .style_top_prime {
    padding: 0.3rem 0.7rem;
    font-size: calc(13px - 2px);
}
}



@media (min-width: 768px) {.style_leadership_profile .style_success_stories {
    grid-template-rows: auto 1fr;
    gap: 30px 40px;
    grid-template-columns: 280px 1fr;
}.style_leadership_profile .style_success_stories > div:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}.style_leadership_profile .style_success_stories > div:nth-child(2) {
    align-self: end;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}.style_leadership_profile .style_success_stories > div:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}.style_leadership_profile .style_img_shadow {
    height: 100%;
    min-height: 400px;
}
}



@media (max-width: 767px) {.style_leadership_profile {
    padding: 80px 0;
}.style_leadership_profile .style_success_stories {
    padding: 30px;
}.style_leadership_profile .style_img_shadow {
    height: 240px;
}.style_leadership_profile .name {
    font-size: calc(24px - 1px);
}.style_leadership_profile .style_work_achievements {
    line-height: 1.7;
    font-size: calc(13px - 1px);
}}



@media screen and (min-width: 992px) {.style_find_contact {
    padding: 7rem 0;
}.style_find_contact .style_get_contact {
    padding: 5rem;
    grid-template-columns: repeat(12, 1fr);
}.style_find_contact .style_get_contact > div:first-of-type {
    grid-column: 1 / 9;
}.style_find_contact .style_get_contact > div:nth-of-type(2) {
    grid-column: 9 / 13;
}.style_find_contact .style_talk_support {
    grid-column: 1 / 13;
    gap: 3rem;
    justify-content: flex-start;
}.style_find_contact h3 {
    margin-left: -20px;
    transform: translateZ(50px);
}
}



@media (prefers-reduced-motion) {.style_find_contact .style_get_contact,
    .style_find_contact .style_talk_support li,
    .style_find_contact svg {
    transition: none;
    animation: none !important;
    transform: none !important;
}.style_find_contact::after {
    animation: none;
}}



@media (max-width: 767px) {.style_ty_success {
    padding: 3rem 0;
}.style_ty_success::before {
    background-size: 25px 25px;
}.style_ty_success h2 {
    margin-bottom: 2rem;
    font-size: calc(36px * 0.8);
}.style_ty_success .style_expert_studio {
    padding: 2rem;
}.style_ty_success .style_expert_studio li {
    padding-left: 1.5rem;
}.style_ty_success .style_expert_studio li::before {
    top: 6px;
    height: 6px;
    width: 6px;
}
}



@media (max-width: 480px) {.style_opening_page .style_master_classes {
    gap: 1rem;
    padding: 1.5rem;
}.style_opening_page .title_style_header {
    font-size: calc(42px * 0.8);
}.style_opening_page h3 {
    margin-bottom: 1rem;
    font-size: calc(20px * 0.8);
}.style_opening_page p {
    margin-bottom: 1rem;
    font-size: calc(13px * 0.9);
}}


@media only screen and (max-width: 800px) {.style_cookies_tech {
    display: none;
}.style_online_tracking {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}.style_cookie_banner_window h5 {
    text-align: center;
}.style_cookie_banner_window p {
    text-align: center;
}.style_track_manage {
    margin-bottom: 20px;
}body .style_wrapper-padding .style_edu_consent {
    margin-bottom: 10px;
    margin-left: 0;
}}



@media (max-width: 768px) {.style_footer_edu {
    padding: 3rem 0 1.5rem;
}.style_footer_edu .style_head_pro {
    gap: 1.5rem;
}.style_footer_edu .company_holder {
    padding: 2rem;
}.style_footer_edu .company_holder h3 {
    font-size: calc(37px - 2px);
}.style_footer_account {
    margin-top: 2rem;
}
}



@media (max-width: 576px) {.style_footer_edu {
    padding: 2.5rem 0 1rem;
}.style_footer_edu .container {
    gap: 1.5rem;
}.style_footer_edu .style_main_top {
    flex: 1 1 100%;
    min-width: 100%;
}.style_footer_edu .style_head_pro {
    gap: 1rem;
}.style_footer_edu .company_holder {
    padding: 1.5rem;
}.style_footer_edu .style_login_footer {
    padding: 1.2rem;
}.style_footer_account {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}
}



@media (max-width: 991px) {.style_give_it_a_try {
    padding: 90px 0;
}.style_give_it_a_try .container p {
    padding: 40px;
    font-size: calc(18px * 1.2);
}.style_give_it_a_try .style_connect_reach {
    flex: 0 0 200px;
    padding: 40px 20px;
}.style_give_it_a_try .container p::after {
    left: 40px;
    bottom: 30px;
    width: 50px;
}
}



@media (max-width: 480px) {.style_give_it_a_try {
    padding: 50px 0;
}.style_give_it_a_try .container p {
    padding: 25px 20px;
    font-size: calc(17px * 1.2);
}.style_give_it_a_try .style_connect_reach {
    font-size: calc(18px * 0.9);
    padding: 15px;
}}



@media screen and (max-width: 1024px) {.style_statistical_details h2 {
    font-size: calc(31px * 0.9);
}.style_statistical_details .style_knowledge_statistics {
    width: 90%;
}.style_statistical_details .style_knowledge_statistics p {
    font-size: calc(41px * 1.2);
    height: 110px;
    width: 110px;
}
}



@media screen and (max-width: 480px) {.style_statistical_details {
    padding: 4rem 0;
}.style_statistical_details h2 {
    margin-bottom: 3rem;
    font-size: calc(31px * 0.8);
}.style_statistical_details .style_knowledge_statistics p {
    height: 100px;
    font-size: calc(41px * 1.1);
    width: 100px;
}.style_statistical_details .style_knowledge_statistics span {
    font-size: calc(12px * 0.9);
    padding: 6px 10px;
    max-width: 90%;
}}



@media screen and (max-width: 1400px) {.style_course_program_description .style_expert_studio {
    margin-right: 1rem;
}
}



@media screen and (max-width: 1200px) {.style_course_program_description {
    grid-template-columns: repeat(10, 1fr);
}.style_course_program_description .style_training_flow {
    grid-column: 6 / span 5;
}.style_course_program_description .container {
    grid-column: 1 / span 6;
    padding: 0 0 0 3rem;
}.style_course_program_description .style_expert_studio {
    max-width: 100%;
}.style_course_program_description::before {
    background: linear-gradient(to right,
            rgb(199,133,138,0.5) 0%,
            rgb(199,133,138,0.5) 30%,
            transparent 60%);
}
}



@media screen and (max-width: 768px) {.style_course_program_description .style_training_flow {
    height: 40vh;
}.style_course_program_description .container {
    padding: 3rem 2rem;
}.style_course_program_description .style_online_learn h3 {
    font-size: calc(38px * 0.8);
}.style_course_program_description .style_online_learn::before,
    .style_course_program_description .style_online_learn::after {
    width: 60px;
    height: 60px;
}
}



@media screen and (max-width: 576px) {.style_course_program_description .style_training_flow {
    height: 35vh;
}.style_course_program_description .container {
    padding: 2.5rem 1.5rem;
}.style_course_program_description .style_online_learn h3 {
    font-size: calc(29px * 1.1);
}.style_course_program_description .style_online_learn::before,
    .style_course_program_description .style_online_learn::after {
    right: -20px;
    bottom: -20px;
    left: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
}.style_course_program_description .style_connect_reach {
    text-align: center;
    width: 100%;
}}



@media (max-width: 768px) {.style_company_info {
    padding: 70px 0;
}.style_company_info h3 {
    display: block;
    text-align: center;
    font-size: calc(29px * 0.9);
}.style_company_info h3::after {
    transform: translateX(-50%);
    left: 50%;
}.style_company_info .style_skill_spot,
    .style_company_info .style_learning_lab {
    padding: 25px;
}.style_company_info .style_skill_spot span {
    font-size: calc(23px * 0.9);
}.style_company_info .style_skill_spot .style_img_shadow {
    height: 200px;
}.style_company_info .style_learning_lab .style_success_path {
    width: 140px;
    height: 140px;
}
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}



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

@keyframes scanLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}



@keyframes pulseOdd {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}



@keyframes pulseEven {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}



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



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



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



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



@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


  
  @keyframes expandWidth {
    from {
      width: 0;
    }
    to {
      width: 200px;
    }
  }

@keyframes slide-cube {
    0%, 20%, 100% {
        opacity: 0;
        transform: translateZ(-50px) rotateY(-5deg);
    }
    4%, 16% {
        opacity: 1;
        transform: translateZ(0) rotateY(0);
    }
}



@keyframes fade-in {
    to {
        opacity: 1;
    }
}



@keyframes slide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}



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

