* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}a {
    color: inherit;
    text-decoration: none;
}html,body {
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
    color: #000000;
    min-height: 100%;
    height: 100%;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1250px;
}header,footer {
    width: 100%;
}.header_page_LwKM {
    flex: 1 0 auto;
}.music_edu_xUdZ {
    flex: 0 0 auto;
}::-webkit-scrollbar {
    background: radial-gradient(ellipse at top left, #ffffff 48%, rgb(255, 255, 255, 0.5) 13%, rgb(120,120,122,0.5) 71%, rgb(156,156,159) 20%, rgb(156,156,159,0.5) 98%, rgb(193,193,196) 87%);
    width: 0.5em;
}::-webkit-scrollbar-track {
    margin: 3px 0;
    background: radial-gradient(ellipse at top left, #ffffff 28%, rgb(255, 255, 255, 0.5) 40%, rgb(120,120,122) 2%, rgb(120,120,122,0.5) 53%, rgb(156,156,159) 61%, rgb(156,156,159,0.5) 81%, rgb(193,193,196) 30%);
    border-radius: 0px;
}::-webkit-scrollbar-thumb {
    border-radius: 9999px;
    background: rgb(156,156,159);
    transition: box-shadow 4.4s ease-out;
    border: 2px groove #ffffff;
}::-webkit-scrollbar-thumb:hover {
    box-shadow: 3px 3px 13px 7px rgba(0, 0, 0, 0.7);
}html {
    scrollbar-width: auto;
    scrollbar-color: rgb(255, 255, 255, 0.5) rgb(255, 255, 255, 0.5);
}.wrapper-container_BmEI {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.our_mission_XlGC {
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}.our_mission_XlGC::before {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    left: 0;
    height: 100%;
    content: "";
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
}.our_mission_XlGC::after {
    content: "";
    height: 200%;
    top: -50%;
    z-index: 2;
    background: rgb(156,156,159);
    transform: rotate(-45deg);
    right: -50%;
    opacity: 0.18;
    position: absolute;
    width: 100%;
}.our_mission_XlGC .container {
    margin: 0 auto;
    z-index: 5;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
}.our_mission_XlGC .word_wrapper_UbCg {
    transform: translateY(20px);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(23, 23, 35, 0.85);
    border-left: 4px solid rgb(156,156,159);
    position: relative;
    animation: slide-up 0.8s ease-out forwards;
}.our_mission_XlGC .word_wrapper_UbCg::before {
    height: 4px;
    background: rgb(156,156,159);
    width: 30%;
    content: "";
    top: 0;
    position: absolute;
    right: 0;
}.our_mission_XlGC .word_wrapper_UbCg::after {
    width: 60%;
    height: 2px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(156,156,159), transparent);
    bottom: 0;
    content: "";
}.our_mission_XlGC h1 {
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slide-right 0.6s ease-out 0.3s forwards;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    display: inline-block;
}.our_mission_XlGC h1::after {
    content: "";
    height: 3px;
    width: 80px;
    left: 0;
    background: rgb(156,156,159);
    position: absolute;
    transform-origin: left;
    bottom: -10px;
    transform: scaleX(0);
    animation: expand 0.6s ease-out 0.9s forwards;
}.our_mission_XlGC ul {
    padding: 0;
    margin: 0;
    list-style: none;
}.our_mission_XlGC li {
    margin-bottom: 20px;
}.our_mission_XlGC li:last-child {
    margin-bottom: 0;
}.our_mission_XlGC h4 {
    transform: translateY(15px);
    animation: slide-up 0.6s ease-out 0.6s forwards;
    opacity: 0;
    color: rgb(120,120,122);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}.our_mission_XlGC span {
    transform: translateY(20px);
    color: rgba(255, 255, 255, 0.9);
    animation: fade-in 0.8s ease-out 0.9s forwards;
    opacity: 0;
    max-width: 100%;
    column-gap: 40px;
    display: block;
    font-weight: 400;
    line-height: 1.7;
    column-count: 1;
    font-family: Arial, sans-serif;
}

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

@keyframes slide-right {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

@media (min-width: 768px) {.our_mission_XlGC {
    padding: 160px 0;
}.our_mission_XlGC .word_wrapper_UbCg {
    padding: 60px;
    width: 90%;
    margin-left: 5%;
}.our_mission_XlGC h1 {
    margin-bottom: 40px;
    font-size: calc(42px * 1.2);
}.our_mission_XlGC h1::after {
    width: 120px;
}.our_mission_XlGC span {
    column-count: 2;
    column-gap: 50px;
}.our_mission_XlGC::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}
}

@media (min-width: 1200px) {.our_mission_XlGC {
    padding: 180px 0;
}.our_mission_XlGC .word_wrapper_UbCg {
    width: 80%;
    margin-left: 10%;
    transform: perspective(1000px) rotateY(-2deg);
    padding: 70px 80px;
}.our_mission_XlGC h1 {
    font-size: calc(42px * 1.4);
}.our_mission_XlGC h1::after {
    height: 4px;
    width: 150px;
}.our_mission_XlGC span {
    font-size: calc(18px * 1.05);
    column-count: 3;
}
}

@media (hover: hover) {.our_mission_XlGC .word_wrapper_UbCg:hover {
    transform: perspective(1000px) rotateY(0);
    transition: transform 0.5s ease-out;
}.our_mission_XlGC .word_wrapper_UbCg:hover::before {
    transition: width 0.5s ease;
    width: 40%;
}
}

@media (max-width: 767px) {.our_mission_XlGC {
    padding: 80px 0;
}.our_mission_XlGC .word_wrapper_UbCg {
    padding: 30px 25px;
}.our_mission_XlGC h1 {
    font-size: calc(42px * 0.9);
    margin-bottom: 25px;
}.our_mission_XlGC h4 {
    font-size: calc(18px * 0.9);
}.our_mission_XlGC span {
    line-height: 1.6;
    font-size: calc(18px * 0.95);
}}header {
    background: linear-gradient(to right, rgb(156,156,159,0.5), rgb(120,120,122,0.5));
    width: 100%;
    padding: 1.5rem 3%;
    z-index: 100;
    position: relative;
}header::before {
    z-index: 0;
    right: 0.5rem;
    left: 0.5rem;
    position: absolute;
    bottom: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    content: '';
    top: 0.5rem;
    pointer-events: none;
}header::after {
    width: 100%;
    position: absolute;
    top: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    height: 100%;
    z-index: 0;
    content: '';
    left: 0;
}header .container {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 1;
}header .main_guide_yLDN {
    align-items: center;
    flex-direction: column;
    display: flex;
    background: #ffffff;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    overflow: hidden;
    padding: 1.5rem;
}header .main_guide_yLDN::before {
    content: '';
    background: linear-gradient(to bottom, rgb(156,156,159), rgb(120,120,122));
    width: 5px;
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
}header .main_guide_yLDN::after {
    content: '';
    position: absolute;
    right: 0;
    width: 5px;
    background: linear-gradient(to bottom, rgb(120,120,122), rgb(156,156,159));
    top: 0;
    height: 100%;
}header .main_top_GvCX {
    text-decoration: none;
    justify-content: center;
    position: relative;
    display: flex;
    padding: 0 0 1rem 0;
}header .main_top_GvCX::after {
    height: 1px;
    width: 80px;
    bottom: 0;
    left: 50%;
    background: rgb(156,156,159,0.5);
    position: absolute;
    transform: translateX(-50%);
    content: '';
}header .main_top_GvCX svg {
    width: 170px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
    height: auto;
}header .main_top_GvCX:hover svg {
    transform: scale(1.03);
}header .head_mainwrap_DFJE {
    width: 100%;
    max-width: 90%;
    gap: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
    justify-content: center;
}header .head_wrap_PeMa {
    background: rgb(193,193,196);
    padding: 0.7rem 1.3rem;
    font-size: 19px;
    font-family: Arial, sans-serif;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    border-radius: 10px;
    z-index: 1;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    font-weight: 600;
    color: #000000;
}header .head_wrap_PeMa::before {
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgb(156,156,159), rgb(120,120,122));
    position: absolute;
    content: '';
    height: 100%;
    width: 3px;
    transition: width 0.3s ease;
    border-radius: 10px 0 0 10px;
}header .head_wrap_PeMa:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: #ffffff;
}header .head_wrap_PeMa:hover::before {
    width: 100%;
}

@media (max-width: 991px) {header {
    padding: 1.2rem 2.5%;
}header .main_guide_yLDN {
    padding: 1.2rem;
}header .main_top_GvCX {
    padding: 0 0 0.8rem 0;
}header .main_top_GvCX svg {
    width: 150px;
}header .head_mainwrap_DFJE {
    gap: 0.6rem;
    padding-top: 0.8rem;
}header .head_wrap_PeMa {
    padding: 0.6rem 1.1rem;
}
}

@media (max-width: 767px) {header {
    padding: 1rem 2%;
}header .main_guide_yLDN {
    padding: 1rem;
}header .main_top_GvCX {
    padding: 0 0 0.7rem 0;
}header .main_top_GvCX svg {
    width: 130px;
}header .head_mainwrap_DFJE {
    gap: 0.5rem;
    max-width: 95%;
    padding-top: 0.7rem;
}header .head_wrap_PeMa {
    padding: 0.5rem 1rem;
    font-size: calc(19px - 1px);
}
}

@media (max-width: 480px) {header {
    padding: 0.8rem 1.5%;
}header .main_guide_yLDN {
    padding: 0.8rem 0.8rem 1rem;
}header .main_top_GvCX {
    padding: 0 0 0.6rem 0;
}header .main_top_GvCX svg {
    width: 120px;
}header .head_mainwrap_DFJE {
    overflow-x: auto;
    justify-content: flex-start;
    padding-top: 0.6rem;
    flex-wrap: nowrap;
    padding-bottom: 0.3rem;
}header .head_mainwrap_DFJE::-webkit-scrollbar {
    height: 3px;
}header .head_mainwrap_DFJE::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(156,156,159);
}header .head_wrap_PeMa {
    flex-shrink: 0;
    margin-right: 3px;
    white-space: nowrap;
}}.gratSpot_awWp {
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgb(193,193,196) 0%, rgb(156,156,159,0.5) 100%);
    padding: 4rem 0;
    overflow: hidden;
}.gratSpot_awWp::before {
    opacity: 0.07;
    transform: rotate(-15deg);
    filter: blur(8px);
    background: linear-gradient(225deg, rgb(156,156,159) 0%, transparent 70%);
    height: 25rem;
    top: -10%;
    content: "";
    z-index: 1;
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 25rem;
    right: -5%;
}.gratSpot_awWp::after {
    filter: blur(8px);
    content: "";
    position: absolute;
    left: -5%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(45deg, rgb(120,120,122) 0%, transparent 70%);
    transform: rotate(15deg);
    z-index: 1;
    width: 20rem;
    opacity: 0.09;
    height: 20rem;
    bottom: -5%;
}.gratSpot_awWp .container {
    padding: 0 15px;
    margin: 0 auto;
    z-index: 2;
    max-width: 1140px;
    position: relative;
}.gratSpot_awWp .method_ped_zsbU {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: perspective(1000px) rotateX(2deg);
    border-left: 4px solid rgb(156,156,159);
    position: relative;
    padding: 3rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.95));
    flex-direction: column;
    transform-origin: center bottom;
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03);
}.gratSpot_awWp .method_ped_zsbU:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 8px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg);
}.gratSpot_awWp .method_ped_zsbU > div:first-child {
    margin-bottom: 1.5rem;
    position: relative;
}.gratSpot_awWp .method_ped_zsbU > div:first-child::after {
    bottom: -0.75rem;
    transform-origin: left center;
    left: 0;
    width: 4rem;
    content: "";
    position: absolute;
    height: 3px;
    transition: width 0.4s ease-out;
    background: linear-gradient(to right, rgb(156,156,159), rgb(120,120,122));
}.gratSpot_awWp .method_ped_zsbU:hover > div:first-child::after {
    width: 8rem;
}.gratSpot_awWp h5 {
    font-size: 23px;
    transform: translateZ(0);
    font-weight: 700;
    margin: 0;
    color: #000000;
    line-height: 1.4;
    position: relative;
}.gratSpot_awWp a {
    position: relative;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease;
    text-decoration: none;
}.gratSpot_awWp a:hover {
    transform: translateY(-3px);
}.gratSpot_awWp a::before {
    content: "";
    background: linear-gradient(to top left, rgb(156,156,159,0.5) 0%, transparent 100%);
    z-index: 0;
    transform: translateY(100%);
    opacity: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    right: 0;
    bottom: 0;
}.gratSpot_awWp a:hover::before {
    transform: translateY(0);
    opacity: 0.05;
}.gratSpot_awWp p {
    position: relative;
    font-size: 13px;
    margin: 0;
    color: #000000;
    z-index: 1;
    line-height: 1.8;
}

@media (min-width: 768px) {.gratSpot_awWp {
    padding: 6rem 0;
}.gratSpot_awWp .method_ped_zsbU {
    padding: 4rem;
    border-left: 6px solid rgb(156,156,159);
}.gratSpot_awWp .method_ped_zsbU > div:first-child {
    margin-bottom: 2rem;
}.gratSpot_awWp .method_ped_zsbU > div:first-child::after {
    width: 6rem;
    height: 4px;
}.gratSpot_awWp .method_ped_zsbU:hover > div:first-child::after {
    width: 12rem;
}
}

@media (min-width: 992px) {.gratSpot_awWp .method_ped_zsbU {
    transform: perspective(1500px) rotateX(2deg) rotateY(-1deg);
    padding: 5rem;
}.gratSpot_awWp .method_ped_zsbU:hover {
    transform: perspective(1500px) rotateX(0deg) rotateY(0deg);
}.gratSpot_awWp h5 {
    font-size: calc(23px * 1.1);
}.gratSpot_awWp p {
    font-size: calc(13px * 1.05);
}
}

@media (max-width: 767px) {.gratSpot_awWp {
    padding: 3rem 0;
}.gratSpot_awWp .method_ped_zsbU {
    transform: perspective(800px) rotateX(1deg);
    padding: 2rem;
}.gratSpot_awWp h5 {
    font-size: calc(23px * 0.9);
}.gratSpot_awWp p {
    font-size: calc(13px * 0.95);
}.gratSpot_awWp .method_ped_zsbU > div:first-child::after {
    width: 3rem;
}.gratSpot_awWp .method_ped_zsbU:hover > div:first-child::after {
    width: 6rem;
}
}

@media (max-width: 480px) {.gratSpot_awWp {
    padding: 2.5rem 0;
}.gratSpot_awWp .method_ped_zsbU {
    padding: 1.5rem;
    transform: perspective(600px) rotateX(1deg);
}.gratSpot_awWp h5 {
    font-size: calc(23px * 0.85);
}.gratSpot_awWp p {
    font-size: calc(13px * 0.9);
}}.contact_information_uDth {
    background: #ffffff;
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}.contact_information_uDth::before {
    width: 100%;
    content: "";
    background-size: 20px 20px;
    left: 0;
    z-index: 0;
    position: absolute;
    height: 100%;
    top: 0;
    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%);
}.contact_information_uDth .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
}.contact_information_uDth h2 {
    border-left: 5px solid rgb(156,156,159);
    position: relative;
    text-align: left;
    font-size: 32px;
    padding-left: 20px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
}.contact_information_uDth .inquiry_support_eZdG {
    display: flex;
    border-radius: 16px;
    flex-direction: row-reverse;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #ffffff;
}.contact_information_uDth .landscape_image_UyEI {
    flex: 0 0 40%;
    position: relative;
    min-height: 500px;
}.contact_information_uDth .landscape_image_UyEI::before {
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    width: 100%;
    background: rgb(156,156,159,0.5);
    z-index: 1;
    height: 100%;
    content: "";
    top: 0;
}.contact_information_uDth .support_list_xADH {
    flex: 0 0 60%;
    padding: 60px;
    position: relative;
}.contact_information_uDth .support_list_xADH::after {
    top: 0;
    right: 0;
    position: absolute;
    border-radius: 0 0 0 100%;
    width: 150px;
    z-index: -1;
    height: 150px;
    content: "";
    background: rgb(193,193,196);
}.contact_information_uDth #contact {
    flex-direction: column;
    gap: 30px;
    display: flex;
}.contact_information_uDth h3 {
    margin-bottom: 30px;
    position: relative;
    font-size: 19px;
    font-weight: 700;
    color: #000000;
}.contact_information_uDth h3::after {
    bottom: -10px;
    position: absolute;
    background: rgb(156,156,159);
    height: 2px;
    width: 40px;
    content: "";
    left: 0;
}.contact_information_uDth input[type="text"] {
    border: none;
    width: 100%;
    border-radius: 10px;
    color: #000000;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
    background: rgb(193,193,196);
    transition: all 0.3s ease;
    padding: 18px 20px;
    font-size: 15px;
}.contact_information_uDth input[type="text"]:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgb(156,156,159,0.5), inset 0 2px 4px rgba(0, 0, 0, 0.03);
}.contact_information_uDth input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.6;
}.contact_information_uDth .inquiry_info_lMBA {
    margin-top: 5px;
    align-items: center;
    gap: 12px;
    display: flex;
}.contact_information_uDth .inquiry_info_lMBA input[type="checkbox"] {
    border-radius: 10px;
    height: 22px;
    cursor: pointer;
    appearance: none;
    width: 22px;
    position: relative;
    border: 2px solid rgb(193,193,196);
    transition: all 0.2s ease;
}.contact_information_uDth .inquiry_info_lMBA input[type="checkbox"]:checked {
    background: rgb(156,156,159);
    border-color: rgb(156,156,159);
}.contact_information_uDth .inquiry_info_lMBA input[type="checkbox"]:checked::after {
    border: solid #ffffff;
    position: absolute;
    content: "";
    height: 11px;
    transform: rotate(45deg);
    top: 3px;
    left: 7px;
    border-width: 0 2px 2px 0;
    width: 6px;
}.contact_information_uDth .inquiry_info_lMBA label {
    color: #000000;
    font-size: 15px;
    line-height: 1.5;
}.contact_information_uDth .inquiry_info_lMBA a {
    position: relative;
    color: rgb(156,156,159);
    text-decoration: none;
    transition: all 0.3s ease;
}.contact_information_uDth .inquiry_info_lMBA a:hover {
    color: rgb(120,120,122);
}.contact_information_uDth .inquiry_info_lMBA a::after {
    width: 100%;
    background: rgb(156,156,159);
    height: 1px;
    bottom: -2px;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 0;
}.contact_information_uDth .inquiry_info_lMBA a:hover::after {
    background: rgb(120,120,122);
}.contact_information_uDth .support_grid_rYQG {
    transition: all 0.3s ease;
    margin-top: 20px;
    align-self: flex-start;
    font-size: 17px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    background: rgb(156,156,159);
    font-weight: 600;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgb(156,156,159,0.5);
    padding: 18px 40px;
}.contact_information_uDth .support_grid_rYQG:hover {
    box-shadow: 0 7px 20px rgb(120,120,122,0.5);
    background: rgb(120,120,122);
    transform: translateY(-2px);
}.contact_information_uDth svg {
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    fill: rgb(156,156,159);
}.contact_information_uDth svg path {
    fill: rgb(156,156,159);
    transition: all 0.3s ease;
}.contact_information_uDth svg:hover {
    fill: rgb(120,120,122);
}.contact_information_uDth svg:hover path {
    fill: rgb(120,120,122);
}

@media (max-width: 992px) {.contact_information_uDth .inquiry_support_eZdG {
    flex-direction: column;
}.contact_information_uDth .landscape_image_UyEI {
    flex: 0 0 auto;
    order: 1;
    min-height: 300px;
}.contact_information_uDth .support_list_xADH {
    order: 2;
    padding: 50px 40px;
    flex: 0 0 auto;
}.contact_information_uDth h2 {
    margin-bottom: 40px;
}
}

@media (max-width: 768px) {.contact_information_uDth {
    padding: 60px 0;
}.contact_information_uDth h2 {
    font-size: calc(32px - 4px);
    margin-bottom: 30px;
}.contact_information_uDth .support_list_xADH {
    padding: 40px 30px;
}.contact_information_uDth #contact {
    gap: 25px;
}.contact_information_uDth .landscape_image_UyEI {
    min-height: 250px;
}
}

@media (max-width: 576px) {.contact_information_uDth {
    padding: 40px 0;
}.contact_information_uDth .container {
    padding: 0 15px;
}.contact_information_uDth h2 {
    margin-bottom: 25px;
    font-size: calc(32px - 6px);
    padding-left: 15px;
}.contact_information_uDth .support_list_xADH {
    padding: 30px 20px;
}.contact_information_uDth #contact {
    gap: 20px;
}.contact_information_uDth input[type="text"] {
    padding: 15px;
}.contact_information_uDth .support_grid_rYQG {
    width: 100%;
    padding: 15px 20px;
}.contact_information_uDth .landscape_image_UyEI {
    min-height: 200px;
}}.prospective_members_FflA {
    overflow: hidden;
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}.prospective_members_FflA::before {
    content: "";
    position: absolute;
    height: 100%;
    opacity: 0.3;
    left: 0;
    width: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(156,156,159,0.5) 0, transparent 80px),
        radial-gradient(circle at 80% 70%, rgb(120,120,122,0.5) 0, transparent 80px);
    z-index: 1;
    top: 0;
}.prospective_members_FflA .container {
    padding: 0 15px;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}.prospective_members_FflA .method_ped_zsbU {
    position: relative;
}.prospective_members_FflA h4 {
    font-size: 48px;
    color: #000000;
    position: relative;
    font-weight: 400;
    margin-bottom: 80px;
    text-align: center;
}.prospective_members_FflA h4::after {
    transform: translateX(-50%);
    bottom: -20px;
    width: 50px;
    height: 2px;
    left: 50%;
    background: rgb(156,156,159);
    content: "";
    position: absolute;
}.prospective_members_FflA div > div {
    justify-content: space-between;
    gap: 40px 20px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 900px;
    display: flex;
}.prospective_members_FflA p {
    margin: 0;
    padding: 0;
    flex-direction: column;
    position: relative;
    font-size: 13px;
    align-items: center;
    transition: all 0.5s ease;
    text-align: center;
    display: flex;
    color: #000000;
    flex: 0 0 calc(33.333% - 20px);
}.prospective_members_FflA p::before {
    height: 0;
    background: rgb(193,193,196);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 0;
    content: "";
}.prospective_members_FflA p:hover::before {
    width: 170%;
    height: 200%;
}.prospective_members_FflA p svg {
    border-radius: 50%;
    width: 50px;
    border: 1px solid rgb(156,156,159,0.5);
    padding: 10px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    height: 50px;
}.prospective_members_FflA p svg path {
    fill: rgb(156,156,159);
    transition: fill 0.3s ease;
}.prospective_members_FflA p:hover svg {
    transform: translateY(-10px);
    border-color: transparent;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}.prospective_members_FflA p:hover svg path {
    fill: rgb(120,120,122);
}.prospective_members_FflA p span {
    padding-top: 10px;
    position: relative;
}.prospective_members_FflA p span::before {
    background: rgb(156,156,159);
    position: absolute;
    left: 50%;
    height: 1px;
    transition: width 0.3s ease;
    top: 0;
    transform: translateX(-50%);
    width: 0;
    content: "";
}.prospective_members_FflA p:hover span::before {
    width: 30px;
}@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.prospective_members_FflA p:nth-child(odd) {
    animation: floatAnimation 5s infinite ease-in-out;
}.prospective_members_FflA p:nth-child(even) {
    animation: floatAnimation 6s infinite ease-in-out reverse;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.prospective_members_FflA .method_ped_zsbU > div p {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}.prospective_members_FflA .method_ped_zsbU > div p:nth-child(1) {
    animation-delay: 0.1s;
}.prospective_members_FflA .method_ped_zsbU > div p:nth-child(2) {
    animation-delay: 0.2s;
}.prospective_members_FflA .method_ped_zsbU > div p:nth-child(3) {
    animation-delay: 0.3s;
}.prospective_members_FflA .method_ped_zsbU > div p:nth-child(4) {
    animation-delay: 0.4s;
}.prospective_members_FflA .method_ped_zsbU > div p:nth-child(5) {
    animation-delay: 0.5s;
}.prospective_members_FflA .method_ped_zsbU > div p:nth-child(6) {
    animation-delay: 0.6s;
}.prospective_members_FflA::after {
    left: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(156,156,159,0.5), 
        rgb(120,120,122,0.5), 
        transparent);
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0;
}

@media (max-width: 991px) {.prospective_members_FflA {
    padding: 100px 0;
}.prospective_members_FflA h4 {
    margin-bottom: 60px;
    font-size: calc(48px * 0.9);
}.prospective_members_FflA div > div {
    gap: 30px 20px;
}.prospective_members_FflA p {
    flex: 0 0 calc(50% - 20px);
}.prospective_members_FflA p svg {
    height: 45px;
    margin-bottom: 12px;
    width: 45px;
}
}

@media (max-width: 768px) {.prospective_members_FflA {
    padding: 80px 0;
}.prospective_members_FflA h4 {
    margin-bottom: 50px;
    font-size: calc(48px * 0.8);
}.prospective_members_FflA h4::after {
    width: 40px;
    bottom: -15px;
}.prospective_members_FflA div > div {
    gap: 40px 0;
}.prospective_members_FflA p {
    flex: 0 0 100%;
}.prospective_members_FflA p:nth-child(odd),
    .prospective_members_FflA p:nth-child(even) {
    animation: none;
}
}

@media (max-width: 576px) {.prospective_members_FflA {
    padding: 60px 0;
}.prospective_members_FflA h4 {
    margin-bottom: 40px;
    font-size: calc(48px * 0.7);
}.prospective_members_FflA h4::after {
    width: 30px;
    bottom: -12px;
}.prospective_members_FflA div > div {
    gap: 30px 0;
}.prospective_members_FflA p svg {
    height: 40px;
    width: 40px;
    padding: 8px;
    margin-bottom: 10px;
}.prospective_members_FflA p {
    font-size: calc(13px * 0.9);
}}.metrics_summary_mukE {
    padding: 120px 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}.metrics_summary_mukE::before {
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    content: "";
    z-index: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(255, 255, 255, 0.98) 100%);
}.metrics_summary_mukE::after {
    width: 100%;
    position: absolute;
    opacity: 0.2;
    content: "";
    top: 0;
    z-index: 1;
    background: 
        radial-gradient(circle at 20% 30%, rgb(156,156,159,0.5) 0%, transparent 12%),
        radial-gradient(circle at 80% 70%, rgb(120,120,122,0.5) 0%, transparent 15%),
        radial-gradient(circle at 60% 20%, rgb(156,156,159,0.5) 0%, transparent 8%);
    height: 100%;
    left: 0;
}.metrics_summary_mukE .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}.metrics_summary_mukE .value_elevation_VpYw {
    position: relative;
    z-index: 4;
    flex-direction: column;
    display: flex;
    align-items: center;
}.metrics_summary_mukE .extra_pro_QHgJ {
    height: 70px;
    width: 70px;
    position: relative;
    margin-right: 25px;
}.metrics_summary_mukE .extra_pro_QHgJ::before {
    left: -10px;
    bottom: -10px;
    right: -10px;
    animation: pulse 3s ease-in-out infinite alternate;
    border: 1px dashed rgb(156,156,159,0.5);
    position: absolute;
    content: "";
    top: -10px;
    border-radius: 50%;
}.metrics_summary_mukE .extra_pro_QHgJ svg {
    filter: drop-shadow(0 0 8px rgb(156,156,159,0.5));
    height: 100%;
    fill: rgb(156,156,159);
    width: 100%;
}.metrics_summary_mukE .extra_pro_QHgJ svg path {
    fill: rgb(156,156,159);
}.metrics_summary_mukE .gain_study_HmPV {
    padding-left: 25px;
    font-size: 30px;
    color: #333333;
    position: relative;
    font-weight: 700;
}.metrics_summary_mukE .gain_study_HmPV::before {
    top: 50%;
    width: 3px;
    background: rgb(156,156,159);
    position: absolute;
    content: "";
    height: 70%;
    transform: translateY(-50%);
    left: 0;
}.metrics_summary_mukE .pro_extra_rfSO {
    max-width: 700px;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 17px;
    color: #555555;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 25px;
}.metrics_summary_mukE .pro_extra_rfSO::after {
    transform: translateX(-50%);
    height: 3px;
    content: "";
    left: 50%;
    position: absolute;
    background: linear-gradient(90deg, rgb(156,156,159), rgb(120,120,122));
    width: 40px;
    bottom: 0;
}.metrics_summary_mukE .fast_statistics_ilFz {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
}.metrics_summary_mukE .study_gain_PcwQ {
    isolation: isolate;
    max-width: 270px;
    text-align: center;
    border-radius: 10px;
    min-width: 220px;
    align-items: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.7);
    flex: 1;
    display: flex;
    padding: 40px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
}.metrics_summary_mukE .study_gain_PcwQ::before,
.metrics_summary_mukE .study_gain_PcwQ::after {
    pointer-events: none;
    content: "";
    position: absolute;
}.metrics_summary_mukE .study_gain_PcwQ::before {
    z-index: -1;
    border-radius: 10px;
    right: 0;
    left: 0;
    top: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    bottom: 0;
}.metrics_summary_mukE .study_gain_PcwQ::after {
    border-radius: calc(10px + 3px);
    left: -3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgb(156,156,159) 0%, transparent 50%, rgb(120,120,122) 100%);
    top: -3px;
    right: -3px;
    z-index: -2;
    bottom: -3px;
}.metrics_summary_mukE .study_gain_PcwQ:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}.metrics_summary_mukE .study_gain_PcwQ:hover::after {
    opacity: 0.3;
}.metrics_summary_mukE .stat_item_decor {
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    position: absolute;
    height: 100%;
    width: 100%;
}.metrics_summary_mukE .stat_item_decor::before,
.metrics_summary_mukE .stat_item_decor::after {
    height: 1px;
    background: rgb(156,156,159);
    content: "";
    width: 20px;
    position: absolute;
}.metrics_summary_mukE .stat_item_decor::before {
    left: 20px;
    top: 20px;
}.metrics_summary_mukE .stat_item_decor::after {
    top: 20px;
    right: 20px;
}.metrics_summary_mukE .stat_item_decor span::before,
.metrics_summary_mukE .stat_item_decor span::after {
    position: absolute;
    height: 20px;
    content: "";
    background: rgb(156,156,159);
    width: 1px;
}.metrics_summary_mukE .stat_item_decor span::before {
    top: 20px;
    left: 20px;
}.metrics_summary_mukE .stat_item_decor span::after {
    top: 20px;
    right: 20px;
}.metrics_summary_mukE .expert_upgrade_OhKp {
    height: 60px;
    position: relative;
    margin-bottom: 25px;
    width: 60px;
    z-index: 1;
    transition: all 0.3s ease;
}.metrics_summary_mukE .study_gain_PcwQ:hover .expert_upgrade_OhKp {
    transform: scale(1.1) rotate(5deg);
}.metrics_summary_mukE .expert_upgrade_OhKp::after {
    transform: translate(-50%, -50%);
    width: 80px;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    border: 1px dashed rgb(120,120,122,0.5);
    height: 80px;
    content: "";
    position: absolute;
    top: 50%;
    transition: all 0.3s ease;
}.metrics_summary_mukE .study_gain_PcwQ:hover .expert_upgrade_OhKp::after {
    animation: slow-rotate 10s linear infinite;
    opacity: 0.3;
}.metrics_summary_mukE .expert_upgrade_OhKp svg {
    transition: all 0.3s ease;
    width: 100%;
    fill: rgb(120,120,122);
    height: 100%;
    filter: drop-shadow(0 0 5px rgb(120,120,122,0.5));
}.metrics_summary_mukE .expert_upgrade_OhKp svg path {
    fill: rgb(120,120,122);
}.metrics_summary_mukE .study_gain_PcwQ span {
    font-weight: 700;
    margin-bottom: 15px;
    z-index: 1;
    background: linear-gradient(to right, #333333, rgb(156,156,159));
    font-size: 2.5rem;
    position: relative;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    display: block;
    color: #333333;
}.metrics_summary_mukE .study_gain_PcwQ span::before {
    opacity: 0.5;
    content: "";
    bottom: -5px;
    width: 30px;
    height: 2px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    background: rgb(156,156,159,0.5);
}.metrics_summary_mukE .study_gain_PcwQ p {
    z-index: 1;
    line-height: 1.4;
    position: relative;
    color: #555555;
    font-size: 17px;
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

@keyframes slow-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media screen and (max-width: 1200px) {.metrics_summary_mukE {
    padding: 100px 0;
}.metrics_summary_mukE .fast_statistics_ilFz {
    gap: 25px;
}.metrics_summary_mukE .study_gain_PcwQ {
    min-width: 200px;
    padding: 35px 20px;
}
}

@media screen and (max-width: 992px) {.metrics_summary_mukE {
    padding: 90px 0;
}.metrics_summary_mukE .pro_extra_rfSO {
    margin-bottom: 60px;
}.metrics_summary_mukE .study_gain_PcwQ {
    min-width: 180px;
}
}

@media screen and (max-width: 768px) {.metrics_summary_mukE {
    padding: 80px 0;
}.metrics_summary_mukE .extra_pro_QHgJ {
    margin-right: 0;
    margin-bottom: 20px;
}.metrics_summary_mukE .gain_study_HmPV {
    padding-left: 0;
}.metrics_summary_mukE .gain_study_HmPV::before {
    width: 40px;
    transform: translateX(-50%);
    left: 50%;
    top: -10px;
    height: 3px;
}.metrics_summary_mukE .study_gain_PcwQ {
    min-width: 45%;
}
}

@media screen and (max-width: 576px) {.metrics_summary_mukE {
    padding: 70px 0;
}.metrics_summary_mukE .gain_study_HmPV {
    font-size: calc(30px * 0.9);
}.metrics_summary_mukE .pro_extra_rfSO {
    padding-bottom: 20px;
    margin-bottom: 50px;
    font-size: calc(17px * 0.95);
}.metrics_summary_mukE .fast_statistics_ilFz {
    flex-direction: column;
    align-items: center;
}.metrics_summary_mukE .study_gain_PcwQ {
    min-width: 100%;
    max-width: 100%;
}.metrics_summary_mukE .expert_upgrade_OhKp {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
}.metrics_summary_mukE .study_gain_PcwQ span {
    font-size: 2.2rem;
}.metrics_summary_mukE .study_gain_PcwQ p {
    font-size: calc(17px * 0.9);
}}footer {
    position: relative;
    z-index: 1;
}footer::before {
    background: linear-gradient(to right, rgb(120,120,122), rgb(156,156,159));
    top: 0;
    opacity: 0.9;
    z-index: -2;
    bottom: 0;
    left: 0;
    position: absolute;
    content: "";
    right: 0;
}footer::after {
    bottom: 0;
    content: "";
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    left: 0;
    position: absolute;
    top: 0;
    z-index: -1;
    right: 0;
}.music_edu_xUdZ {
    position: relative;
    color: #ffffff;
    padding: 5rem 0 2rem;
}.music_edu_xUdZ::before {
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(156,156,159), rgb(120,120,122), rgb(156,156,159));
    width: 100%;
    height: 10px;
    top: 0;
    position: absolute;
}.music_edu_xUdZ .container {
    grid-template-columns: repeat(12, 1fr);
    display: grid;
    gap: 2rem;
    position: relative;
}.music_edu_xUdZ .company_holder {
    padding: 0;
    grid-column: span 5;
    position: relative;
}.music_edu_xUdZ .company_holder h3 {
    font-size: 31px;
    font-weight: 700;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}.music_edu_xUdZ .company_holder h3::after {
    height: 2px;
    bottom: -2px;
    background: #ffffff;
    content: "";
    width: 80px;
    left: 0;
    position: absolute;
}.music_edu_xUdZ .twitter_cta_OUvq {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 15px;
    padding: 0 0 0 1.5rem;
    position: relative;
    line-height: 1.7;
    margin-top: 1.5rem;
    color: #ffffff;
}.music_edu_xUdZ .search_foot_iRJb {
    grid-column: span 7;
}.music_edu_xUdZ .head_learn_LcXT {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}.music_edu_xUdZ .head_mainwrap_DFJE {
    position: relative;
}.music_edu_xUdZ .head_mainwrap_DFJE h5 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    padding-bottom: 0.8rem;
    color: #ffffff;
    font-size: 19px;
    margin: 0 0 1.5rem;
    position: relative;
}.music_edu_xUdZ .head_mainwrap_DFJE h5::after {
    bottom: -2px;
    position: absolute;
    width: 40px;
    left: 0;
    background: #ffffff;
    height: 2px;
    content: "";
}.music_edu_xUdZ .head_mainwrap_DFJE .head_learn_LcXT {
    display: grid;
    gap: 1rem;
}.music_edu_xUdZ .head_mainwrap_DFJE .head_learn_LcXT a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    font-size: 15px;
    align-items: center;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}.music_edu_xUdZ .head_mainwrap_DFJE .head_learn_LcXT a::after {
    content: "\2192";
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
}.music_edu_xUdZ .head_mainwrap_DFJE .head_learn_LcXT a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}.music_edu_xUdZ .head_mainwrap_DFJE .head_learn_LcXT a:hover::after {
    transform: translateX(0);
    opacity: 1;
}.news_feed_PBWk {
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 2rem 0;
}.news_feed_PBWk .container {
    justify-content: center;
    display: flex;
    align-items: center;
}.news_feed_PBWk .footer_subscribe_wsKD {
    color: #ffffff;
    position: relative;
    padding: 0 1rem;
    text-align: center;
    font-size: 15px;
    opacity: 0.9;
}.music_edu_xUdZ::after {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    content: "";
    top: 2rem;
    right: 2rem;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    height: 50px;
    position: absolute;
    width: 50px;
}.music_edu_xUdZ .company_holder::before {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    top: 0;
    content: "";
    left: 0;
}.music_edu_xUdZ .company_holder::after {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    left: 0;
    position: absolute;
    height: 50px;
    bottom: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    content: "";
    width: 50px;
}.music_edu_xUdZ .search_foot_iRJb::after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    height: 50px;
    right: 0;
    position: absolute;
    content: "";
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    bottom: 0;
}

@media (max-width: 1200px) {.music_edu_xUdZ .container {
    gap: 1.5rem;
}
}

@media (max-width: 992px) {.music_edu_xUdZ {
    padding: 4rem 0 2rem;
}.music_edu_xUdZ .container {
    grid-template-columns: 1fr;
}.music_edu_xUdZ .company_holder,
    .music_edu_xUdZ .search_foot_iRJb {
    grid-column: span 12;
}.music_edu_xUdZ .company_holder {
    margin-bottom: 2rem;
}.music_edu_xUdZ::after,
    .music_edu_xUdZ .company_holder::before,
    .music_edu_xUdZ .company_holder::after,
    .music_edu_xUdZ .search_foot_iRJb::after {
    display: none;
}
}

@media (max-width: 768px) {.music_edu_xUdZ {
    padding: 3rem 0 1.5rem;
}.music_edu_xUdZ .head_learn_LcXT {
    gap: 1.5rem;
}.music_edu_xUdZ .company_holder h3 {
    font-size: calc(31px - 2px);
}.news_feed_PBWk {
    margin-top: 3rem;
}
}

@media (max-width: 576px) {.music_edu_xUdZ {
    padding: 2.5rem 0 1rem;
}.music_edu_xUdZ .head_learn_LcXT {
    grid-template-columns: 1fr;
    gap: 2rem;
}.music_edu_xUdZ .twitter_cta_OUvq {
    padding-left: 1rem;
}.news_feed_PBWk {
    margin-top: 2rem;
}
}

@media (max-width: 420px) {.music_edu_xUdZ .company_holder h3::after,
    .music_edu_xUdZ .head_mainwrap_DFJE h5::after {
    width: 30px;
}.music_edu_xUdZ .head_mainwrap_DFJE .head_learn_LcXT a:hover {
    padding-left: 0.3rem;
}}.privacy_chest_Cvor {
    border: 2px solid rgb(156,156,159);
    padding: 60px;
    display: flex;
    width: 100%;
    font-family: Arial, sans-serif;
    flex-direction: column;
    align-items: center;
    height: auto;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}.privacy_chest_Cvor h1 {
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 3px solid rgb(156,156,159);
    color: rgb(156,156,159);
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 50px;
}.privacy_chest_Cvor h2 {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(120,120,122);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 34px;
    color: rgb(120,120,122);
    width: 100%;
}.privacy_chest_Cvor h3, .privacy_chest_Cvor h4, .privacy_chest_Cvor h5, .privacy_chest_Cvor h6 {
    font-size: 23px;
    text-align: center;
    padding-bottom: 5px;
    width: 100%;
    color: rgb(156,156,159);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(156,156,159);
    margin-top: 30px;
}.privacy_chest_Cvor li {
    color: #000000;
    padding-left: 20px;
    padding-left: 10px;
    font-weight: 400;
    font-size: 13px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    border-left: 3px solid rgb(156,156,159);
}.privacy_chest_Cvor section {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 0 15px rgb(156,156,159,0.5);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgb(156,156,159);
}.privacy_chest_Cvor p, .privacy_chest_Cvor span, .privacy_chest_Cvor div {
    margin: 0 auto 15px auto;
    line-height: 1.8;
    width: 100%;
    padding-bottom: 5px;
    text-align: center;
    font-weight: 300;
    font-size: 13px;
    color: #000000;
    margin-bottom: 15px;
}

@media only screen and (max-width: 800px) {.privacy_chest_Cvor {
    padding: 20px 10px;
}.privacy_chest_Cvor h1 {
    font-size: calc(23px * 0.8);
    width: 100%;
}.privacy_chest_Cvor h2 {
    font-size: calc(23px * 0.8);
    width: 100%;
}.privacy_chest_Cvor h3, .privacy_chest_Cvor h4, .privacy_chest_Cvor h5, .privacy_chest_Cvor h6 {
    width: 100%;
    font-size: calc(23px * 0.8);
}.privacy_chest_Cvor p, .privacy_chest_Cvor span, .privacy_chest_Cvor div {
    font-size: calc(13px * 0.9);
    width: 100%;
}.privacy_chest_Cvor ul, .privacy_chest_Cvor ol {
    width: 100%;
}.privacy_chest_Cvor section {
    width: 100%;
}}.attempt_now_KWQG {
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, rgb(156,156,159,0.5), rgb(120,120,122));
    padding: 5rem 0;
    position: relative;
}.attempt_now_KWQG::before {
    background: linear-gradient(to bottom right, transparent 49.5%, rgb(120,120,122,0.5) 50%);
    position: absolute;
    width: 100%;
    content: "";
    top: -50%;
    height: 200%;
    right: -50%;
    transform: rotate(-15deg);
    z-index: -1;
}.attempt_now_KWQG::after {
    width: 100%;
    background: rgb(156,156,159);
    bottom: -5px;
    height: 10px;
    clip-path: polygon(0% 0%, 2% 40%, 4% 0%, 6% 40%, 8% 0%, 10% 40%, 12% 0%, 14% 40%, 16% 0%, 18% 40%, 20% 0%, 22% 40%, 24% 0%, 26% 40%, 28% 0%, 30% 40%, 32% 0%, 34% 40%, 36% 0%, 38% 40%, 40% 0%, 42% 40%, 44% 0%, 46% 40%, 48% 0%, 50% 40%, 52% 0%, 54% 40%, 56% 0%, 58% 40%, 60% 0%, 62% 40%, 64% 0%, 66% 40%, 68% 0%, 70% 40%, 72% 0%, 74% 40%, 76% 0%, 78% 40%, 80% 0%, 82% 40%, 84% 0%, 86% 40%, 88% 0%, 90% 40%, 92% 0%, 94% 40%, 96% 0%, 98% 40%, 100% 0%);
    left: 0;
    position: absolute;
    content: "";
}.attempt_now_KWQG .container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
    align-items: flex-start;
}.attempt_now_KWQG h2 {
    line-height: 1.4;
    max-width: 80%;
    animation: slideInText 0.8s ease-out forwards;
    font-family: Arial, sans-serif;
    opacity: 0;
    position: relative;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 30px;
    transform: translateX(-20px);
}.attempt_now_KWQG .method_ped_zsbU {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    overflow: hidden;
    position: relative;
    padding: 2rem;
    display: flex;
    opacity: 0;
    border-left: 5px solid rgb(156,156,159);
    align-items: center;
    animation: slideUpHolder 0.8s ease-out 0.3s forwards;
}.attempt_now_KWQG .method_ped_zsbU::before {
    content: "";
    left: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    background: linear-gradient(45deg, transparent 65%, rgba(rgb(156,156,159,0.5), 0.1) 75%, rgba(rgb(120,120,122,0.5), 0.08) 85%);
    height: 100%;
    width: 100%;
}.attempt_now_KWQG .method_ped_zsbU > * {
    position: relative;
    z-index: 2;
}.attempt_now_KWQG .method_ped_zsbU svg {
    height: 48px;
    animation: pulseIcon 3s infinite ease-in-out;
    margin-right: 2rem;
    width: 48px;
    transform-origin: center;
}.attempt_now_KWQG .method_ped_zsbU svg path {
    transition: fill 0.3s ease;
    fill: rgb(156,156,159);
}.attempt_now_KWQG .method_ped_zsbU div {
    flex: 1;
}.attempt_now_KWQG .support_grid_rYQG {
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, rgb(156,156,159), rgb(120,120,122));
    transform: translateZ(0);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
    color: #ffffff;
    white-space: nowrap;
}.attempt_now_KWQG .support_grid_rYQG::before {
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    height: 100%;
    top: 0;
    transition: left 0.6s ease;
    position: absolute;
    left: -100%;
}.attempt_now_KWQG .support_grid_rYQG:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}.attempt_now_KWQG .support_grid_rYQG:hover::before {
    left: 100%;
}.attempt_now_KWQG .support_grid_rYQG:active {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

@keyframes slideInText {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 992px) {.attempt_now_KWQG {
    padding: 4rem 0;
}.attempt_now_KWQG h2 {
    max-width: 90%;
    font-size: calc(30px * 0.9);
}.attempt_now_KWQG .method_ped_zsbU {
    padding: 1.8rem;
}
}

@media (max-width: 768px) {.attempt_now_KWQG {
    padding: 3.5rem 0;
}.attempt_now_KWQG h2 {
    margin-bottom: 1.5rem;
    font-size: calc(30px * 0.8);
    max-width: 100%;
}.attempt_now_KWQG .method_ped_zsbU {
    text-align: center;
    padding: 1.5rem;
    flex-direction: column;
}.attempt_now_KWQG .method_ped_zsbU svg {
    margin-right: 0;
    margin-bottom: 1.5rem;
}.attempt_now_KWQG .support_grid_rYQG {
    text-align: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
}
}

@media (max-width: 576px) {.attempt_now_KWQG {
    padding: 3rem 0;
}.attempt_now_KWQG h2 {
    line-height: 1.5;
    font-size: calc(30px * 0.7);
}.attempt_now_KWQG .method_ped_zsbU {
    padding: 1.2rem;
}.attempt_now_KWQG .support_grid_rYQG {
    padding: 0.7rem 1.2rem;
    font-size: calc(18px * 0.9);
}
}

@media (prefers-reduced-motion: reduce) {.attempt_now_KWQG h2,
  .attempt_now_KWQG .method_ped_zsbU {
    transform: none;
    animation: none;
    opacity: 1;
}.attempt_now_KWQG .method_ped_zsbU svg {
    animation: none;
}.attempt_now_KWQG .support_grid_rYQG::before {
    display: none;
}}.teaching_experience_aUbh {
    overflow: hidden;
    background: linear-gradient(170deg, rgb(193,193,196) 0%, rgb(156,156,159,0.5) 100%);
    padding: 120px 0;
    position: relative;
}.teaching_experience_aUbh::before {
    content: "";
    width: 100%;
    opacity: 0.04;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgb(156,156,159,0.5) 20px,
            rgb(156,156,159,0.5) 21px
        );
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
}.teaching_experience_aUbh::after {
    content: "";
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(156,156,159,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(120,120,122,0.5) 0%, transparent 40%);
    opacity: 0.3;
    filter: blur(80px);
    top: 0;
    position: absolute;
    left: 0;
}.teaching_experience_aUbh .container {
    max-width: 1200px;
    padding: 0 15px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}.teaching_experience_aUbh .learner_reflections_vykY {
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}.teaching_experience_aUbh .learner_reflections_vykY::before {
    opacity: 0.2;
    top: 50%;
    position: absolute;
    width: 500px;
    content: "";
    transform: translate(-50%, -50%);
    height: 500px;
    left: 50%;
    border: 1px solid rgb(156,156,159,0.5);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}.teaching_experience_aUbh .learner_reflections_vykY::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 400px;
    opacity: 0.15;
    transform: translate(-50%, -50%);
    width: 400px;
    border: 1px dashed rgb(120,120,122,0.5);
    animation: orbit 15s linear infinite reverse;
    border-radius: 50%;
    left: 50%;
}@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.teaching_experience_aUbh .landscape_image_UyEI {
    border-radius: 50%;
    position: relative;
    width: 240px;
    height: 240px;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-bottom: 30px;
    z-index: 5;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(255, 255, 255, 0.05);
}.teaching_experience_aUbh .landscape_image_UyEI::before {
    z-index: -1;
    opacity: 0.4;
    inset: -30px;
    border-radius: 50%;
    content: "";
    position: absolute;
    background: conic-gradient(
        from 0deg,
        transparent 0deg, 
        rgb(156,156,159,0.5) 90deg,
        transparent 180deg,
        rgb(120,120,122,0.5) 270deg,
        transparent 360deg
    );
    animation: spin 12s linear infinite;
}.teaching_experience_aUbh .landscape_image_UyEI::after {
    background: 
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 50%
        );
    border-radius: 50%;
    z-index: 2;
    inset: 0;
    content: "";
    position: absolute;
}@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.teaching_experience_aUbh .name {
    font-weight: 700;
    background: linear-gradient(
        to right,
        #000000 0%,
        rgb(156,156,159) 100%
    );
    text-align: center;
    font-size: 44px;
    background-clip: text !important;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text !important;
    position: relative;
    color: #000000;
    z-index: 3;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}.teaching_experience_aUbh .name::after {
    bottom: -8px;
    content: "";
    height: 2px;
    width: 0;
    background: linear-gradient(
        to right,
        rgb(156,156,159) 0%,
        rgb(120,120,122) 100%
    );
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    transition: width 0.4s ease;
}.teaching_experience_aUbh .learner_reflections_vykY:hover .name::after {
    width: 80px;
}.teaching_experience_aUbh .learner_reflections_vykY span:not(.name) {
    text-align: center;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 22px;
    z-index: 3;
    color: rgb(120,120,122);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}.teaching_experience_aUbh .learner_reflections_vykY:hover span:not(.name) {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}.teaching_experience_aUbh .work_block_WBHS {
    padding: 35px 45px;
    position: relative;
    font-size: 16px;
    z-index: 3;
    border-radius: 29px;
    margin: 0;
    background: #ffffff;
    max-width: 650px;
    color: #000000;
    text-align: center;
    line-height: 1.8;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}.teaching_experience_aUbh .work_block_WBHS::before,
.teaching_experience_aUbh .work_block_WBHS::after {
    height: 10px;
    position: absolute;
    width: 10px;
    content: "";
}.teaching_experience_aUbh .work_block_WBHS::before {
    border-top: 2px solid rgb(156,156,159);
    top: 25px;
    border-left: 2px solid rgb(156,156,159);
    left: 25px;
}.teaching_experience_aUbh .work_block_WBHS::after {
    right: 25px;
    border-right: 2px solid rgb(120,120,122);
    border-bottom: 2px solid rgb(120,120,122);
    bottom: 25px;
}.teaching_experience_aUbh .learner_reflections_vykY:hover .landscape_image_UyEI {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 15px rgba(255, 255, 255, 0.2),
        0 0 0 30px rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

@media (max-width: 991px) {.teaching_experience_aUbh {
    padding: 90px 0;
}.teaching_experience_aUbh .landscape_image_UyEI {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
}.teaching_experience_aUbh .learner_reflections_vykY::before {
    width: 400px;
    height: 400px;
}.teaching_experience_aUbh .learner_reflections_vykY::after {
    width: 320px;
    height: 320px;
}.teaching_experience_aUbh .name {
    font-size: calc(44px * 0.9);
}.teaching_experience_aUbh .work_block_WBHS {
    padding: 30px 35px;
    max-width: 600px;
}
}

@media (max-width: 767px) {.teaching_experience_aUbh {
    padding: 70px 0;
}.teaching_experience_aUbh .landscape_image_UyEI {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
}.teaching_experience_aUbh .learner_reflections_vykY::before {
    height: 320px;
    width: 320px;
}.teaching_experience_aUbh .learner_reflections_vykY::after {
    height: 260px;
    width: 260px;
}.teaching_experience_aUbh .name {
    font-size: calc(44px * 0.8);
}.teaching_experience_aUbh .learner_reflections_vykY span:not(.name) {
    font-size: calc(22px * 0.95);
    padding: 6px 16px;
    margin-bottom: 25px;
}.teaching_experience_aUbh .work_block_WBHS {
    padding: 25px 30px;
    font-size: calc(16px * 0.95);
    max-width: 100%;
}.teaching_experience_aUbh .work_block_WBHS::before,
    .teaching_experience_aUbh .work_block_WBHS::after {
    width: 8px;
    height: 8px;
}.teaching_experience_aUbh .work_block_WBHS::before {
    top: 20px;
    left: 20px;
}.teaching_experience_aUbh .work_block_WBHS::after {
    right: 20px;
    bottom: 20px;
}
}

@media (max-width: 575px) {.teaching_experience_aUbh {
    padding: 50px 0;
}.teaching_experience_aUbh .landscape_image_UyEI {
    margin-bottom: 18px;
    width: 150px;
    height: 150px;
}.teaching_experience_aUbh .learner_reflections_vykY::before {
    width: 260px;
    height: 260px;
}.teaching_experience_aUbh .learner_reflections_vykY::after {
    height: 200px;
    width: 200px;
}.teaching_experience_aUbh .name {
    font-size: calc(44px * 0.7);
}.teaching_experience_aUbh .learner_reflections_vykY span:not(.name) {
    padding: 5px 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: calc(22px * 0.9);
}.teaching_experience_aUbh .work_block_WBHS {
    padding: 20px 25px;
    font-size: calc(16px * 0.9);
}.teaching_experience_aUbh .work_block_WBHS::before,
    .teaching_experience_aUbh .work_block_WBHS::after {
    height: 6px;
    width: 6px;
}.teaching_experience_aUbh .work_block_WBHS::before {
    top: 15px;
    left: 15px;
}.teaching_experience_aUbh .work_block_WBHS::after {
    bottom: 15px;
    right: 15px;
}}.sign_up_for_updates_sBjq {
    padding: 4rem 0;
    background: linear-gradient(120deg, rgb(193,193,196) 0%, rgb(156,156,159,0.5) 100%);
    overflow: hidden;
    position: relative;
}.sign_up_for_updates_sBjq::before {
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    content: '';
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 10px
    );
}.sign_up_for_updates_sBjq::after {
    right: -20%;
    height: 200%;
    top: -50%;
    z-index: 0;
    transform: rotate(15deg);
    content: '';
    width: 60%;
    position: absolute;
    background: linear-gradient(135deg, rgb(156,156,159,0.5) 0%, transparent 70%);
}.sign_up_for_updates_sBjq .container {
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    margin: 0 auto;
}.sign_up_for_updates_sBjq .method_ped_zsbU {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    flex-direction: column;
    padding: 3rem;
    display: flex;
    background-color: #ffffff;
    transform: translateY(0);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}.sign_up_for_updates_sBjq .method_ped_zsbU:hover {
    transform: translateY(-8px);
}.sign_up_for_updates_sBjq .method_ped_zsbU > div {
    margin-bottom: 2rem;
}.sign_up_for_updates_sBjq h4 {
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
    font-family: Arial, sans-serif;
    color: #000000;
    font-weight: 600;
    font-size: 23px;
    position: relative;
}.sign_up_for_updates_sBjq h4::after {
    transform: scaleX(1);
    position: absolute;
    bottom: -12px;
    background: rgb(156,156,159);
    height: 3px;
    width: 60px;
    content: '';
    left: 0;
    transition: transform 0.4s ease-out;
    transform-origin: left;
}.sign_up_for_updates_sBjq .method_ped_zsbU:hover h4::after {
    transform: scaleX(1.5);
}.sign_up_for_updates_sBjq .input_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}.sign_up_for_updates_sBjq .input_holder span {
    flex: 1;
    min-width: 200px;
}.sign_up_for_updates_sBjq input[type="email"] {
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    font-size: 17px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: #000000;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    padding: 1rem 1.5rem;
}.sign_up_for_updates_sBjq input[type="email"]:focus {
    border-color: rgb(156,156,159);
    box-shadow: 0 0 0 3px rgb(156,156,159,0.5);
}.sign_up_for_updates_sBjq input[type="email"]::placeholder {
    transition: color 0.3s ease;
    color: rgba(0, 0, 0, 0.4);
}.sign_up_for_updates_sBjq input[type="email"]:focus::placeholder {
    color: rgba(0, 0, 0, 0.2);
}.sign_up_for_updates_sBjq .sub_toggles_iHzy {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-family: Arial, sans-serif;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 18px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-weight: 600;
    width: 100%;
    justify-content: center;
    background: rgb(156,156,159);
    position: relative;
    overflow: hidden;
    border: none;
}.sign_up_for_updates_sBjq .sub_toggles_iHzy::before {
    background-color: rgba(255, 255, 255, 0.2);
    height: 0;
    transform: translate(-50%, -50%);
    content: '';
    top: 50%;
    z-index: 1;
    border-radius: 50%;
    width: 0;
    transition: width 0.6s ease-out, height 0.6s ease-out;
    position: absolute;
    left: 50%;
}.sign_up_for_updates_sBjq .sub_toggles_iHzy:hover {
    box-shadow: 0 6px 25px rgba(rgb(156,156,159), 0.25);
    transform: translateY(-2px);
    background-color: rgb(120,120,122);
}.sign_up_for_updates_sBjq .sub_toggles_iHzy:hover::before {
    height: 300px;
    width: 300px;
}.sign_up_for_updates_sBjq .sub_toggles_iHzy:active {
    transform: translateY(1px);
}

@media (min-width: 768px) {.sign_up_for_updates_sBjq .method_ped_zsbU {
    padding: 3.5rem 4rem;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}.sign_up_for_updates_sBjq .method_ped_zsbU > div {
    margin-bottom: 0;
    margin-right: 2rem;
    flex: 0.6;
}.sign_up_for_updates_sBjq .input_holder {
    flex: 0.4;
}.sign_up_for_updates_sBjq h4 {
    font-size: calc(23px * 1.1);
}
}

@media (max-width: 767px) {.sign_up_for_updates_sBjq {
    padding: 3rem 0;
}.sign_up_for_updates_sBjq .method_ped_zsbU {
    padding: 2rem;
}.sign_up_for_updates_sBjq h4 {
    font-size: calc(23px * 0.9);
}.sign_up_for_updates_sBjq .input_holder span {
    width: 100%;
}.sign_up_for_updates_sBjq input[type="email"],
    .sign_up_for_updates_sBjq .sub_toggles_iHzy {
    padding: 0.9rem;
}
}

@media (max-width: 480px) {.sign_up_for_updates_sBjq {
    padding: 2rem 0;
}.sign_up_for_updates_sBjq .method_ped_zsbU {
    padding: 1.5rem;
}.sign_up_for_updates_sBjq h4 {
    font-size: calc(23px * 0.8);
}.sign_up_for_updates_sBjq h4::after {
    width: 40px;
    height: 2px;
}.sign_up_for_updates_sBjq .input_holder {
    gap: 0.75rem;
}.sign_up_for_updates_sBjq input[type="email"],
    .sign_up_for_updates_sBjq .sub_toggles_iHzy {
    padding: 0.8rem;
    font-size: calc(17px * 0.9);
}
}

@media (min-width: 1200px) {.sign_up_for_updates_sBjq .method_ped_zsbU {
    padding: 4rem 5rem;
}.sign_up_for_updates_sBjq h4 {
    font-size: calc(23px * 1.2);
    letter-spacing: -0.02em;
}
}

@media (prefers-reduced-motion: reduce) {.sign_up_for_updates_sBjq .method_ped_zsbU,
    .sign_up_for_updates_sBjq .sub_toggles_iHzy,
    .sign_up_for_updates_sBjq h4::after,
    .sign_up_for_updates_sBjq input[type="email"] {
    transition: none;
}.sign_up_for_updates_sBjq .method_ped_zsbU:hover {
    transform: none;
}.sign_up_for_updates_sBjq .sub_toggles_iHzy:hover::before {
    display: none;
}}.operation_process_pZhQ {
    background: linear-gradient(125deg, rgb(193,193,196), rgb(120,120,122,0.5) 70%);
    perspective: 1000px;
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}.operation_process_pZhQ::before {
    left: -25%;
    position: absolute;
    z-index: 1;
    height: 150%;
    width: 150%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(156,156,159,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(120,120,122,0.5) 0%, transparent 40%);
    transform: rotate(-15deg);
    opacity: 0.5;
    top: -25%;
    content: "";
    animation: rotateBg 25s linear infinite;
}.operation_process_pZhQ::after {
    bottom: 0;
    position: absolute;
    animation: hologlow 8s ease-in-out infinite alternate;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    z-index: 2;
    top: 0;
    content: "";
    right: 0;
    left: 0;
}.operation_process_pZhQ .method_ped_zsbU {
    display: flex;
    gap: 4rem;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    transform-style: preserve-3d;
    max-width: 1000px;
    flex-direction: column;
}.operation_process_pZhQ h3 {
    transform: translateZ(50px);
    text-transform: uppercase;
    text-align: center;
    animation: floatTitle 6s ease-in-out infinite;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0;
    color: #000000;
    font-size: 38px;
    text-shadow: 0 0 15px rgb(156,156,159,0.5);
    position: relative;
}.operation_process_pZhQ h3::before,
.operation_process_pZhQ h3::after {
    background: linear-gradient(90deg, transparent, rgb(156,156,159), transparent);
    content: "";
    height: 2px;
    position: absolute;
}.operation_process_pZhQ h3::before {
    bottom: -15px;
    width: 200px;
    left: 50%;
    animation: expandLine 3s ease-in-out infinite alternate;
    transform: translateX(-50%);
}.operation_process_pZhQ h3::after {
    opacity: 0.7;
    transform: translateX(-50%);
    bottom: -25px;
    left: 50%;
    animation: expandLine 3s ease-in-out 0.5s infinite alternate-reverse;
    width: 100px;
}.operation_process_pZhQ span {
    transform: translateZ(30px) translateY(-20px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.5s ease;
    animation: floatContent 8s ease-in-out 1s infinite alternate;
    font-size: 16px;
    border-radius: 10px;
    color: #000000;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.8);
}.operation_process_pZhQ span::before {
    content: "";
    z-index: -1;
    animation: rainbowShift 8s linear infinite;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: inherit;
    right: 0;
    opacity: 0.8;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
}.operation_process_pZhQ span::after {
    background: linear-gradient(
        45deg,
        rgb(156,156,159,0.5),
        rgb(120,120,122,0.5),
        rgb(156,156,159,0.5)
    );
    right: -5px;
    z-index: -2;
    transform: translateZ(-10px);
    animation: glowPulse 4s ease-in-out infinite alternate;
    border-radius: 15px;
    bottom: -5px;
    position: absolute;
    top: -5px;
    opacity: 0.3;
    filter: blur(10px);
    left: -5px;
    content: "";
}

@keyframes rotateBg {
    0% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(15deg);
    }
}

@keyframes hologlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes floatTitle {
    0%, 100% {
        transform: translateZ(50px) translateY(0);
    }
    50% {
        transform: translateZ(50px) translateY(-15px);
    }
}

@keyframes floatContent {
    0%, 100% {
        transform: translateZ(30px) translateY(-20px) rotateX(2deg);
    }
    50% {
        transform: translateZ(30px) translateY(-10px) rotateX(-2deg);
    }
}

@keyframes expandLine {
    0% {
        width: 50px;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        opacity: 1;
    }
}

@keyframes rainbowShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(10px);
    }
    50% {
        opacity: 0.6;
        filter: blur(15px);
    }
}

@media (max-width: 992px) {.operation_process_pZhQ {
    padding: 6rem 0;
}.operation_process_pZhQ h3 {
    font-size: calc(38px * 0.9);
    transform: translateZ(30px);
}.operation_process_pZhQ span {
    transform: translateZ(20px) translateY(-15px);
    padding: 2rem;
}.operation_process_pZhQ .method_ped_zsbU {
    gap: 3rem;
    margin: 0 2rem;
}
}

@media (max-width: 768px) {.operation_process_pZhQ {
    padding: 4rem 0;
    perspective: 500px;
}.operation_process_pZhQ h3 {
    font-size: calc(38px * 0.8);
    letter-spacing: 1px;
    transform: translateZ(20px);
}.operation_process_pZhQ span {
    font-size: calc(16px * 0.95);
    padding: 1.5rem;
    transform: translateZ(10px) translateY(-10px);
}.operation_process_pZhQ .method_ped_zsbU {
    gap: 2rem;
    margin: 0 1rem;
}}.price_plan_item_jkda {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}.price_plan_item_jkda::before {
    background: linear-gradient(145deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    top: 0;
    z-index: 1;
    position: absolute;
    right: 0;
    content: "";
    left: 0;
    bottom: 0;
}.price_plan_item_jkda .container {
    padding: 0 15px;
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 2;
}.price_plan_item_jkda .cost_deals_fxol {
    display: flex;
    align-items: center;
    flex-direction: column;
}.price_plan_item_jkda h2 {
    font-size: 35px;
    transform: translateY(20px);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}.price_plan_item_jkda .learning_fee_HbpZ {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    transform: translateY(20px);
    margin-bottom: 50px;
    opacity: 0;
    font-size: 15px;
    color: rgb(255, 255, 255, 0.5);
}.price_plan_item_jkda .learn_sub_HNpD {
    padding: 0;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    width: 100%;
    list-style: none;
    display: grid;
}.price_plan_item_jkda .learn_sub_HNpD li {
    animation-delay: calc(0.3s + (0.15s * var(--li-index, 0)));
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: translateY(30px);
}.price_plan_item_jkda .learn_sub_HNpD li:nth-child(1) {
    --li-index: 0;
}.price_plan_item_jkda .learn_sub_HNpD li:nth-child(2) {
    --li-index: 1;
}.price_plan_item_jkda .learn_sub_HNpD li:nth-child(3) {
    --li-index: 2;
}.price_plan_item_jkda .learn_sub_HNpD li:nth-child(4) {
    --li-index: 3;
}.price_plan_item_jkda .study_fees_HIyA {
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateX(0deg);
    height: 100%;
    will-change: transform;
    display: block;
}.price_plan_item_jkda .study_fees_HIyA:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
}.price_plan_item_jkda .discount_price_YVzp {
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}.price_plan_item_jkda .study_fees_HIyA:hover .discount_price_YVzp {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 15px rgba(rgb(156,156,159,0.5), 0.5);
}.price_plan_item_jkda .discount_price_YVzp::before {
    transform: rotate(-45deg);
    content: "";
    width: 40%;
    opacity: 0.1;
    transition: all 0.6s ease;
    top: -10%;
    left: -10%;
    height: 50%;
    position: absolute;
    background: linear-gradient(135deg, rgb(156,156,159,0.5) 0%, transparent 70%);
}.price_plan_item_jkda .study_fees_HIyA:hover .discount_price_YVzp::before {
    opacity: 0.15;
    transform: rotate(-45deg) translateY(-20%);
}.price_plan_item_jkda .plan_pricing_sDml {
    display: flex;
    height: 100%;
    padding: 35px 30px;
    box-sizing: border-box;
    flex-direction: column;
    min-height: 280px;
}.price_plan_item_jkda .plan_pricing_sDml h4 {
    margin-bottom: 20px;
    font-size: calc(21px * 1.1);
    color: #ffffff;
    font-weight: 600;
    padding-bottom: 15px;
    position: relative;
    margin-top: 0;
}.price_plan_item_jkda .plan_pricing_sDml h4::after {
    position: absolute;
    transition: width 0.4s ease;
    height: 3px;
    background: rgb(156,156,159);
    width: 40px;
    bottom: 0;
    left: 0;
    content: "";
}.price_plan_item_jkda .study_fees_HIyA:hover .plan_pricing_sDml h4::after {
    width: 60px;
}.price_plan_item_jkda .plan_pricing_sDml p {
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.7;
    font-size: calc(15px * 0.9);
    flex-grow: 1;
    margin-bottom: 25px;
    word-wrap: break-word;
    color: rgb(255, 255, 255, 0.5);
    hyphens: auto;
}.price_plan_item_jkda .tuition_table_ypPQ {
    position: relative;
    align-self: flex-start;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 700;
    color: rgb(156,156,159);
    font-size: calc(21px * 1.2);
    background: rgba(255,255,255,0.05);
    display: inline-block;
    overflow: hidden;
    padding: 10px 20px;
}.price_plan_item_jkda .tuition_table_ypPQ::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    left: -100%;
    transition: left 0.7s ease;
    content: "";
    width: 100%;
    top: 0;
    position: absolute;
    height: 100%;
}.price_plan_item_jkda .study_fees_HIyA:hover .tuition_table_ypPQ::before {
    left: 100%;
}

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

@media (max-width: 1200px) {.price_plan_item_jkda {
    padding: 100px 0;
}.price_plan_item_jkda .learn_sub_HNpD {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 992px) {.price_plan_item_jkda {
    padding: 80px 0;
}.price_plan_item_jkda h2 {
    font-size: calc(35px * 0.9);
}.price_plan_item_jkda .learn_sub_HNpD {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}.price_plan_item_jkda .plan_pricing_sDml {
    padding: 25px 20px;
}
}

@media (max-width: 768px) {.price_plan_item_jkda {
    padding: 70px 0;
}.price_plan_item_jkda h2 {
    font-size: calc(35px * 0.8);
    margin-bottom: 15px;
}.price_plan_item_jkda .learning_fee_HbpZ {
    margin-bottom: 35px;
    font-size: calc(15px * 0.95);
}.price_plan_item_jkda .learn_sub_HNpD {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 450px;
}.price_plan_item_jkda .plan_pricing_sDml {
    min-height: auto;
}
}

@media (max-width: 576px) {.price_plan_item_jkda {
    padding: 60px 0;
}.price_plan_item_jkda h2 {
    font-size: calc(35px * 0.7);
}.price_plan_item_jkda .learning_fee_HbpZ {
    font-size: calc(15px * 0.9);
}.price_plan_item_jkda .plan_pricing_sDml {
    padding: 20px 15px;
}.price_plan_item_jkda .plan_pricing_sDml h4 {
    font-size: 21px;
}.price_plan_item_jkda .plan_pricing_sDml p {
    font-size: calc(15px * 0.85);
}.price_plan_item_jkda .tuition_table_ypPQ {
    font-size: 21px;
    padding: 8px 15px;
}}.landing_page_kuBi {
    align-items: center;
    justify-content: flex-start;
    position: relative;
    display: flex;
    padding: 6rem 3rem;
    min-height: 100vh;
    overflow: hidden;
}.landing_page_kuBi::before {
    right: 0;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    content: "";
    background: linear-gradient(
    135deg,
    rgb(120,120,122,0.5) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgb(156,156,159,0.5) 100%
  );
    top: 0;
}.landing_page_kuBi::after {
    height: 80%;
    background: rgb(120,120,122);
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0% 75%);
    right: -10%;
    opacity: 0.1;
    position: absolute;
    z-index: 0;
    transform: rotate(-15deg) skewX(-15deg);
    content: "";
    top: -10%;
    width: 60%;
}.landing_page_kuBi > div {
    transform: translateY(-2rem);
    position: relative;
    z-index: 2;
    margin-left: 5%;
    max-width: 1200px;
    width: 100%;
}.landing_page_kuBi > div > div:first-child {
    transform: translateX(-2rem);
    padding-left: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideIn 0.8s ease-out 0.2s forwards;
    position: relative;
    border-left: 4px solid rgb(156,156,159);
}.landing_page_kuBi .title_style_header {
    font-weight: 700;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 45px);
    letter-spacing: -0.02em;
    transform: translateY(-0.5rem);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}.landing_page_kuBi .start_hero_sOFQ {
    max-width: 650px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    animation: fadeUp 1s ease-out 0.6s forwards;
    opacity: 0;
    position: relative;
    transform: translateY(2rem);
    background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8)
  );
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
              0 5px 15px rgba(0, 0, 0, 0.05);
}.landing_page_kuBi .start_hero_sOFQ::before {
    position: absolute;
    width: 100%;
    background: linear-gradient(
    45deg,
    rgb(120,120,122) 0%,
    transparent 100%
  );
    z-index: -1;
    content: "";
    left: 0;
    height: 100%;
    top: 0;
    opacity: 0.05;
}.landing_page_kuBi .skill_experts_QxEC {
    position: relative;
    margin-bottom: 1.5rem;
}.landing_page_kuBi .skill_experts_QxEC::after {
    bottom: -0.75rem;
    width: 50px;
    background: rgb(120,120,122);
    transform-origin: left;
    left: 0;
    content: "";
    height: 3px;
    position: absolute;
    transform: scaleX(0);
    animation: scaleIn 0.6s ease-out 1s forwards;
}.landing_page_kuBi .skill_experts_QxEC h3 {
    color: #000000;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    line-height: 1.5;
    font-weight: 600;
}.landing_page_kuBi .start_hero_sOFQ > div:last-child {
    padding-left: 1rem;
    border-left: 2px solid rgb(156,156,159,0.5);
    position: relative;
}.landing_page_kuBi .start_hero_sOFQ span {
    display: block;
}.landing_page_kuBi .start_hero_sOFQ p {
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    color: #000000;
    font-size: 18px;
}

@keyframes slideIn {
  0% {
    transform: translateX(-2rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

@media screen and (max-width: 768px) {.landing_page_kuBi {
    align-items: flex-start;
    padding: 4rem 2rem;
}.landing_page_kuBi > div {
    margin-left: 0;
    transform: translateY(0);
}.landing_page_kuBi > div > div:first-child {
    margin-bottom: 2rem;
    padding-left: 1rem;
}.landing_page_kuBi .start_hero_sOFQ {
    padding: 1.75rem;
    transform: translateY(1rem);
}.landing_page_kuBi .skill_experts_QxEC {
    margin-bottom: 1.25rem;
}
}

@media screen and (max-width: 480px) {.landing_page_kuBi {
    padding: 3rem 1.5rem;
}.landing_page_kuBi .title_style_header {
    font-size: clamp(2rem, 8vw, 2.5rem);
}.landing_page_kuBi .start_hero_sOFQ {
    padding: 1.5rem;
}.landing_page_kuBi .skill_experts_QxEC h3 {
    font-size: clamp(1rem, 5vw, 1.2rem);
}.landing_page_kuBi .start_hero_sOFQ > div:last-child {
    padding-left: 0.75rem;
}}.cookie_popup_warning_ygFX {
    position: fixed;
    width: 100%;
    border-top: 2px solid rgb(156,156,159);
    background: rgb(193,193,196);
    z-index: 90;
    bottom: 0;
}.data_opt_cgai {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}.cookie_popup_warning_ygFX h5 {
    margin-bottom: 6px;
    font-size: 22px;
}#consentAlertWindow_lUpF {
    display: none;
}#consentAlertWindow_lUpF:checked ~ .cookie_popup_warning_ygFX {
    visibility: hidden;
    opacity: 0;
}.cookie_popup_warning_ygFX p {
    font-size: 18px;
}.data_accept_bKgc {
    margin-right: 10px;
    flex-shrink: 0;
}.data_accept_bKgc svg, .data_accept_bKgc svg path, .data_accept_bKgc img {
    fill: rgb(156,156,159);
    width: 100px;
    height: 100px;
}.edu_cookie_UgzF {
    min-width: 120px;
    color: rgb(156,156,159);
    cursor: pointer;
    flex-shrink: 0;
    line-height: 35px;
    white-space: nowrap;
    margin-left: 10px;
    border-bottom: 2px solid rgb(156,156,159);
    text-decoration: none;
    text-align: center;
    font-size: 24px;
}.cookie_popup_warning_ygFX p a {
    text-decoration: none;
    color: rgb(156,156,159);
}
@media only screen and (max-width: 1200px) {.cookie_popup_warning_ygFX {
    padding: 20px;
}}

.wrapper-container_BmEI .cookie_popup_warning_ygFX {
    background: rgb(120,120,122);
    border: none;
    box-shadow: rgb(120,120,122,0.5) 0px 0px 40px 39px;
    padding: 40px 0;
}.wrapper-container_BmEI .edu_cookie_UgzF {
    font-size: 20px;
    background: rgb(156,156,159);
    margin-left: 30px;
    padding: 10px;
    font-weight: 400;
    color: #ffffff;
    border: none;
}.wrapper-container_BmEI .cookie_visitor_YHWG h5, .wrapper-container_BmEI .cookie_visitor_YHWG p {
    color: #ffffff;
}
@media only screen and (max-width: 800px) {.data_accept_bKgc {
    display: none;
}.data_opt_cgai {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}.cookie_popup_warning_ygFX h5 {
    text-align: center;
}.cookie_popup_warning_ygFX p {
    text-align: center;
}.cookie_visitor_YHWG {
    margin-bottom: 20px;
}body .wrapper-container_BmEI .edu_cookie_UgzF {
    margin-left: 0;
    margin-bottom: 10px;
}}.help_center_yTWU {
    overflow: hidden;
    background: rgb(193,193,196);
    isolation: isolate;
    position: relative;
    padding: 120px 0;
}.help_center_yTWU::before {
    position: absolute;
    top: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgb(156,156,159,0.5) 0,
            rgb(156,156,159,0.5) 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(
            45deg,
            rgb(120,120,122,0.5) 0,
            rgb(120,120,122,0.5) 1px,
            transparent 1px,
            transparent 20px
        );
    width: 100%;
    left: 0;
    content: '';
    opacity: 0.1;
    z-index: -1;
    height: 100%;
}.help_center_yTWU::after {
    position: absolute;
    opacity: 0.05;
    top: -50%;
    animation: floatGlow 15s infinite alternate ease-in-out;
    height: 100%;
    content: '';
    background: radial-gradient(
        circle at center,
        rgb(156,156,159) 0%,
        transparent 70%
    );
    z-index: -1;
    filter: blur(60px);
    right: -50%;
    width: 100%;
}.help_center_yTWU .container {
    position: relative;
}.help_center_yTWU .connect_team_ODxT {
    display: grid;
    position: relative;
    gap: 2rem;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
}.help_center_yTWU .message_page_WjfQ {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}.help_center_yTWU .message_page_WjfQ:nth-child(1) {
    border-radius: 12px;
    border-left: 4px solid rgb(156,156,159);
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.07) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 3rem;
}.help_center_yTWU .message_page_WjfQ:nth-child(1)::before {
    opacity: 0.2;
    border-radius: 12px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    content: '';
    background: linear-gradient(90deg, rgb(156,156,159,0.5) 0%, transparent 20%);
    width: 100%;
}.help_center_yTWU .message_page_WjfQ:nth-child(2) {
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    aspect-ratio: 4/3;
}.help_center_yTWU .message_page_WjfQ:nth-child(2):hover {
    transform: perspective(1000px) rotateY(0deg);
}.help_center_yTWU .message_page_WjfQ .landscape_image_UyEI {
    transition: transform 0.5s ease;
    overflow: hidden;
    position: relative;
    width: 100%;
    transform: scale(1.05);
    height: 100%;
}.help_center_yTWU .message_page_WjfQ .landscape_image_UyEI::after {
    opacity: 0.3;
    content: '';
    mix-blend-mode: overlay;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgb(156,156,159) 0%,
        transparent 100%
    );
}.help_center_yTWU .message_page_WjfQ .landscape_image_UyEI::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 40%
    );
    position: absolute;
    content: '';
    inset: 0;
    z-index: 1;
}.help_center_yTWU .message_page_WjfQ:nth-child(3) {
    padding: 2.5rem;
    background-image: 
        radial-gradient(circle at top right, rgb(120,120,122) 0%, transparent 80%),
        linear-gradient(135deg, rgb(156,156,159) 0%, rgb(156,156,159) 100%);
    border-radius: 12px;
    background-size: 150% 150%, 100% 100%;
    background-position: 100% 0%, 0% 0%;
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    grid-row: 2 / 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgb(156,156,159);
    grid-column: 2 / 3;
    animation: backgroundShift 15s infinite alternate ease-in-out;
}.help_center_yTWU .message_page_WjfQ:nth-child(3):hover {
    transform: perspective(1000px) rotateY(0deg);
}.help_center_yTWU .message_page_WjfQ h2 {
    letter-spacing: 0.5px;
    font-size: 32px;
    padding-bottom: 1rem;
    position: relative;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}.help_center_yTWU .message_page_WjfQ h2::after {
    position: absolute;
    width: 60px;
    left: 0;
    bottom: 0;
    content: '';
    height: 4px;
    border-radius: 2px;
    background: rgb(120,120,122);
}.help_center_yTWU .contact_map_dYNg {
    letter-spacing: 0.5px;
    font-weight: 600;
    color: rgb(120,120,122);
    margin-bottom: 1.5rem;
    font-size: calc(14px * 1.2);
}.help_center_yTWU .get_help_oIgM {
    margin-bottom: 2rem;
    color: #000000;
    line-height: 1.7;
    font-weight: 300;
}.help_center_yTWU .message_page_WjfQ > p {
    display: flex;
    margin-bottom: 1.25rem;
    position: relative;
    align-items: center;
    color: #000000;
}.help_center_yTWU .message_page_WjfQ > p svg {
    color: rgb(120,120,122);
    height: 1.25rem;
    width: 1.25rem;
    fill: rgb(120,120,122);
}.help_center_yTWU .message_page_WjfQ > p svg path {
    fill: rgb(120,120,122);
}.help_center_yTWU .message_page_WjfQ > p span {
    font-weight: 600;
    margin-left: 0.5rem;
}.help_center_yTWU .help_request_Kjnc {
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    position: relative;
}.help_center_yTWU .help_request_Kjnc::before {
    top: 0;
    position: absolute;
    width: 4px;
    border-radius: 10px 0 0 10px;
    content: '';
    background: rgb(120,120,122);
    left: 0;
    height: 100%;
}.help_center_yTWU .help_request_Kjnc h3 {
    margin-bottom: 1rem;
    font-size: 19px;
    letter-spacing: 0.5px;
    color: rgb(120,120,122);
    font-weight: 600;
}.help_center_yTWU .instant_request_LMzR {
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    display: grid;
}.help_center_yTWU .instant_request_LMzR span {
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    padding: 0.75rem 1rem;
    color: #000000;
    font-size: calc(14px * 0.9);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}.help_center_yTWU .instant_request_LMzR span:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background: rgb(120,120,122,0.5);
}.help_center_yTWU .message_us_oaky {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}.help_center_yTWU .message_us_oaky a {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}.help_center_yTWU .message_us_oaky a:last-child {
    margin-bottom: 0;
}.help_center_yTWU .message_us_oaky a:hover {
    transform: translateX(5px);
}.help_center_yTWU .message_us_oaky svg {
    height: 1.5rem;
    width: 1.5rem;
    left: 0;
    top: 0.25rem;
    position: absolute;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}.help_center_yTWU .message_us_oaky svg path {
    fill: #ffffff;
}.help_center_yTWU .message_us_oaky a span {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
    font-size: calc(14px * 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}.help_center_yTWU .message_us_oaky a p {
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    font-size: 14px;
    color: #ffffff;
}.help_center_yTWU .message_us_oaky a p::after {
    width: 0;
    content: '';
    position: absolute;
    bottom: -5px;
    height: 1px;
    transition: width 0.3s ease;
    left: 0;
    background: #ffffff;
}.help_center_yTWU .message_us_oaky a:hover p::after {
    width: 100%;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
        opacity: 0.03;
    }
    50% {
        transform: translate(-10%, -10%);
        opacity: 0.05;
    }
    100% {
        transform: translate(-5%, 5%);
        opacity: 0.03;
    }
}

@keyframes backgroundShift {
    0% {
        background-position: 100% 0%, 0% 0%;
    }
    50% {
        background-position: 0% 100%, 0% 0%;
    }
    100% {
        background-position: 100% 0%, 0% 0%;
    }
}

@media (max-width: 1200px) {.help_center_yTWU {
    padding: 80px 0;
}.help_center_yTWU .connect_team_ODxT {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
}.help_center_yTWU .message_page_WjfQ:nth-child(1) {
    padding: 2.5rem;
}
}

@media (max-width: 992px) {.help_center_yTWU .connect_team_ODxT {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
}.help_center_yTWU .message_page_WjfQ:nth-child(1) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}.help_center_yTWU .message_page_WjfQ:nth-child(2) {
    transform: perspective(1000px) rotateY(0);
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}.help_center_yTWU .message_page_WjfQ:nth-child(3) {
    transform: perspective(1000px) rotateY(0);
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}
}

@media (max-width: 768px) {.help_center_yTWU {
    padding: 60px 0;
}.help_center_yTWU .message_page_WjfQ:nth-child(1) {
    padding: 2rem;
}.help_center_yTWU .message_page_WjfQ .landscape_image_UyEI {
    aspect-ratio: 16/9;
}.help_center_yTWU .instant_request_LMzR {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
}

@media (max-width: 576px) {.help_center_yTWU {
    padding: 40px 0;
}.help_center_yTWU .message_page_WjfQ:nth-child(1) {
    padding: 1.5rem;
}.help_center_yTWU .message_page_WjfQ h2 {
    font-size: calc(32px * 0.9);
}.help_center_yTWU .help_request_Kjnc {
    padding: 1.25rem;
}.help_center_yTWU .instant_request_LMzR {
    grid-template-columns: 1fr 1fr;
}.help_center_yTWU .message_us_oaky a {
    padding-left: 2rem;
}.help_center_yTWU .message_us_oaky svg {
    width: 1.25rem;
    height: 1.25rem;
}}header .top_plank {
    color:  #ffffff;
    background: rgb(156,156,159);
}header .top_plank .top_control_jeaP div svg, header .top_plank .top_control_jeaP div svg path {
    fill: #ffffff;
}header .top_plank .top_control_jeaP div span {
    color: #ffffff;
}header .top_plank .top_control_jeaP {
    flex-wrap: wrap;
    display: flex;
    padding: 15px 0 10px 0;
    font-size: 14px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    line-height: 21px;
}header .top_plank .top_control_jeaP div {
    justify-content: flex-start;
    margin-right: 24px;
    align-items: center;
    display: flex;
}header .top_plank .top_control_jeaP div img, header .top_plank .top_control_jeaP div svg {
    width: 16px;
    margin-right: 8px;
    height: 16px;
}.program_information_bJrw {
    background: linear-gradient(135deg, rgba(rgb(156,156,159,0.5), 0.05), rgba(rgb(120,120,122,0.5), 0.1));
    padding: 120px 0 80px;
    overflow: hidden;
    position: relative;
}.program_information_bJrw::before {
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
    z-index: 0;
    top: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(rgb(156,156,159,0.5), 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(rgb(120,120,122,0.5), 0.12) 0%, transparent 45%);
}.program_information_bJrw::after {
    background: linear-gradient(225deg, rgba(rgb(156,156,159,0.5), 0.08), transparent);
    height: 45%;
    content: "";
    right: -5%;
    transform: rotate(-15deg) skew(15deg);
    position: absolute;
    z-index: 0;
    width: 45%;
    top: -10%;
}.program_information_bJrw .container {
    z-index: 1;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.program_information_bJrw h2 {
    max-width: 85%;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
    font-size: 36px;
    transform: translateX(-5%);
    position: relative;
}.program_information_bJrw h2::after {
    content: "";
    width: 80px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    bottom: -15px;
    position: absolute;
    height: 3px;
    transform: scaleX(1);
    left: 0;
    background: linear-gradient(90deg, rgb(156,156,159), rgb(120,120,122));
    transform-origin: left center;
}.program_information_bJrw h2:hover::after {
    transform: scaleX(1.5);
}.program_information_bJrw .training_guide_WkRG {
    grid-gap: 40px;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}.program_information_bJrw .landscape_image_UyEI {
    height: 400px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 
        -15px 15px 30px rgba(rgba(0, 0, 0, 0.5), 0.1),
        5px -5px 30px rgba(rgb(255, 255, 255, 0.5), 0.1);
    position: relative;
    border-radius: 0;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    overflow: hidden;
}.program_information_bJrw .landscape_image_UyEI::before {
    position: absolute;
    top: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(rgb(156,156,159,0.5), 0.1),
        rgba(rgb(120,120,122,0.5), 0.15)
    );
    left: 0;
    mix-blend-mode: overlay;
    height: 100%;
    content: "";
    width: 100%;
}.program_information_bJrw .landscape_image_UyEI::after {
    mix-blend-mode: overlay;
    width: 200%;
    transition: opacity 1.2s ease;
    position: absolute;
    left: -50%;
    opacity: 0;
    top: -50%;
    z-index: 2;
    height: 200%;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        rgba(rgb(255, 255, 255, 0.5), 0.1) 0%,
        transparent 70%
    );
    content: "";
}.program_information_bJrw .landscape_image_UyEI:hover {
    box-shadow: 
        -20px 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.15),
        10px -10px 30px rgba(rgb(255, 255, 255, 0.5), 0.05);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}.program_information_bJrw .landscape_image_UyEI:hover::after {
    opacity: 1;
}.program_information_bJrw .word_wrapper_UbCg {
    padding: 20px 0 0;
    position: relative;
}.program_information_bJrw .description {
    position: relative;
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-bottom: 25px;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
    padding-right: 15px;
    color: #000000;
    line-height: 1.75;
    max-height: 350px;
    font-size: 14px;
}.program_information_bJrw .description::-webkit-scrollbar {
    width: 4px;
}.program_information_bJrw .description::-webkit-scrollbar-track {
    background: rgba(rgba(0, 0, 0, 0.5), 0.05);
}.program_information_bJrw .description::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: linear-gradient(to bottom, rgb(156,156,159), rgb(120,120,122));
}.program_information_bJrw .description:first-of-type {
    position: relative;
    z-index: 1;
}.program_information_bJrw .description:first-of-type::first-letter {
    margin-right: 1px;
    color: rgb(156,156,159);
    font-weight: 700;
    font-size: 1.5em;
}.program_information_bJrw .description:last-of-type {
    border-left: 1px solid rgba(rgb(156,156,159,0.5), 0.2);
    padding-left: 20px;
    position: relative;
}.program_information_bJrw .description:last-of-type::before {
    border-radius: 50%;
    left: -5px;
    top: 0;
    content: "";
    position: absolute;
    width: 10px;
    background: rgb(156,156,159);
    height: 10px;
}

@media (min-width: 768px) {.program_information_bJrw {
    padding: 150px 0 100px;
}.program_information_bJrw h2 {
    font-size: calc(36px * 1.2);
    max-width: 80%;
    margin-bottom: 60px;
}.program_information_bJrw .training_guide_WkRG {
    grid-gap: 60px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}.program_information_bJrw .landscape_image_UyEI {
    transform: perspective(1500px) rotateY(-5deg) rotateX(3deg) translateX(-20px);
    height: 500px;
}.program_information_bJrw .landscape_image_UyEI:hover {
    transform: perspective(1500px) rotateY(-2deg) rotateX(1deg) translateX(0);
}.program_information_bJrw .word_wrapper_UbCg {
    padding: 0 0 0 20px;
}.program_information_bJrw .description {
    max-height: 300px;
}
}

@media (min-width: 992px) {.program_information_bJrw .container {
    padding: 0 40px;
}.program_information_bJrw h2 {
    transform: translateX(-8%);
    font-size: calc(36px * 1.4);
    max-width: 70%;
}.program_information_bJrw h2::after {
    height: 4px;
    width: 120px;
}.program_information_bJrw .training_guide_WkRG {
    grid-gap: 80px;
}.program_information_bJrw .landscape_image_UyEI {
    height: 550px;
    transform: perspective(2000px) rotateY(-7deg) rotateX(3deg) translateX(-30px);
}.program_information_bJrw .landscape_image_UyEI:hover {
    transform: perspective(2000px) rotateY(-3deg) rotateX(1deg) translateX(-10px);
}.program_information_bJrw .word_wrapper_UbCg {
    padding: 0 0 0 40px;
}.program_information_bJrw .description {
    max-height: 400px;
    line-height: 1.8;
    font-size: calc(14px * 1.05);
}
}

@media (min-width: 1200px) {.program_information_bJrw {
    padding: 180px 0 120px;
}.program_information_bJrw h2 {
    font-size: calc(36px * 1.5);
    max-width: 60%;
}.program_information_bJrw .training_guide_WkRG {
    grid-gap: 100px;
}.program_information_bJrw .landscape_image_UyEI {
    height: 600px;
}.program_information_bJrw .description {
    max-height: 450px;
    font-size: calc(14px * 1.1);
}
}

@media (max-width: 767px) {.program_information_bJrw {
    padding: 80px 0 60px;
}.program_information_bJrw h2 {
    max-width: 100%;
    margin-bottom: 40px;
    transform: translateX(0);
    font-size: calc(36px * 0.9);
}.program_information_bJrw .landscape_image_UyEI {
    height: 300px;
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}.program_information_bJrw .word_wrapper_UbCg {
    padding: 20px 0 0;
}.program_information_bJrw .description {
    font-size: calc(14px * 0.95);
    max-height: 250px;
    line-height: 1.6;
}
}