* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}.container {
    width: 1106px;
    max-width: 100%;
    margin: auto;
}svg {
    height: 30px;
    width: 30px;
}.site_main {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}.lesson_cta {
    flex: 0 0 auto;
}html,body {
    height: 100%;
    auto
contain;
    font-family: Arial, sans-serif;
    color: #000000;
    min-height: 100%;
}a {
    text-decoration: none;
    color: inherit;
}.inner-container {
    min-height: 100%;
    flex-direction: column;
    height: 100%;
    display: flex;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_program_info {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, rgb(116,156,131,0.5) 100%);
    padding: 80px 0;
    overflow: hidden;
}.course_program_info::before {
    z-index: 1;
    right: 0;
    content: '';
    left: 0;
    bottom: 0;
    position: absolute;
    top: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(116,156,131,0.5) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgb(80,121,95,0.5) 0%, transparent 40%);
}.course_program_info::after {
    z-index: 1;
    animation: backgroundShift 30s linear infinite;
    top: 0;
    opacity: 0.1;
    left: 0;
    content: '';
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(116,156,131,0.5) 49%, rgb(116,156,131,0.5) 51%, transparent 52%) 0 0 / 20px 20px,
        linear-gradient(-45deg, transparent 48%, rgb(80,121,95,0.5) 49%, rgb(80,121,95,0.5) 51%, transparent 52%) 10px 0 / 20px 20px;
    height: 100%;
    width: 100%;
}@keyframes backgroundShift {
    0% {
        background-position: 0 0, 10px 0;
    }
    100% {
        background-position: 500px 500px, 510px 500px;
    }
}

.course_program_info .container {
    padding: 0 15px;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.course_program_info .learning_tracks {
    background: linear-gradient(145deg, 
                rgba(255, 255, 255, 0.05) 0%, 
                rgba(255, 255, 255, 0.02) 100%);
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    grid-template-columns: 1fr 1fr;
    display: grid;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgb(116,156,131,0.5),
                inset 0 0 20px rgb(116,156,131,0.5);
    gap: 40px;
    backdrop-filter: blur(5px);
    padding: 40px;
}.course_program_info .learning_tracks::before {
    border-radius: 50%;
    background: radial-gradient(circle, rgb(116,156,131) 0%, transparent 70%);
    right: -100px;
    filter: blur(20px);
    width: 200px;
    opacity: 0.2;
    position: absolute;
    height: 200px;
    content: '';
    top: -100px;
    animation: pulseLight 8s ease-in-out infinite;
}.course_program_info .learning_tracks::after {
    animation: pulseLight 8s ease-in-out infinite 4s;
    border-radius: 50%;
    filter: blur(20px);
    content: '';
    width: 200px;
    position: absolute;
    height: 200px;
    left: -100px;
    background: radial-gradient(circle, rgb(80,121,95) 0%, transparent 70%);
    bottom: -100px;
    opacity: 0.2;
}@keyframes pulseLight {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

.course_program_info .training_path {
    flex-direction: column;
    justify-content: center;
    position: relative;
    display: flex;
    padding-right: 20px;
    z-index: 3;
}.course_program_info .site_navbar {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}.course_program_info .site_navbar:hover {
    transform: perspective(1000px) rotateY(0deg);
}.course_program_info .site_navbar svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgb(116,156,131,0.5));
    height: 50px;
    width: 50px;
}.course_program_info .site_navbar svg path {
    transition: fill 0.3s ease;
    fill: rgb(116,156,131);
}.course_program_info .site_navbar:hover svg path {
    fill: rgb(80,121,95);
}.course_program_info h3 {
    transform: translateZ(0);
    position: relative;
    backface-visibility: hidden;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 34px;
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
    padding-bottom: 15px;
}.course_program_info h3::after {
    content: '';
    bottom: 0;
    height: 3px;
    position: absolute;
    background: linear-gradient(90deg, rgb(116,156,131) 0%, rgb(80,121,95) 100%);
    width: 60px;
    animation: lineExpand 4s ease-in-out infinite;
    left: 0;
    border-radius: 10px;
}@keyframes lineExpand {
    0% {
        width: 60px;
        opacity: 1;
    }
    50% {
        width: 100px;
        opacity: 0.8;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

.course_program_info p {
    font-size: 14px;
    z-index: 2;
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}.course_program_info .img_show_wrap {
    height: 350px;
    transform: perspective(1000px) rotateY(-5deg);
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgb(116,156,131,0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
    border-radius: calc(30px * 1.5);
}.course_program_info .img_show_wrap:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgb(116,156,131),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}.course_program_info .img_show_wrap::before {
    width: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    position: absolute;
    z-index: 1;
    content: '';
    left: 0;
    height: 100%;
    top: 0;
}.course_program_info .img_show_wrap::after {
    left: 0;
    position: absolute;
    z-index: 2;
    animation: scanlines 10s linear infinite;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, transparent 50%) 0 0 / 30px 30px,
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, transparent 50%) 15px 0 / 30px 30px;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

@keyframes scanlines {
    0% {
        background-position: 0 0, 15px 0;
    }
    100% {
        background-position: 300px 300px, 315px 300px;
    }
}


@media (max-width: 991px) {.course_program_info {
    padding: 60px 0;
}.course_program_info .learning_tracks {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
}.course_program_info .training_path {
    padding-right: 0;
    text-align: center;
}.course_program_info h3::after {
    left: 50%;
    transform: translateX(-50%);
}.course_program_info .img_show_wrap {
    min-height: 300px;
}
}

@media (max-width: 767px) {.course_program_info {
    padding: 40px 0;
}.course_program_info .learning_tracks {
    gap: 25px;
    padding: 25px;
}.course_program_info h3 {
    margin-bottom: 20px;
    font-size: calc(34px * 0.85);
}.course_program_info p {
    font-size: calc(14px * 0.95);
}.course_program_info .img_show_wrap {
    clip-path: polygon(
            0% 5%, 
            5% 0%, 
            95% 0%, 
            100% 5%, 
            100% 95%, 
            95% 100%, 
            5% 100%, 
            0% 95%
        );
    min-height: 250px;
}
}

@media (max-width: 576px) {.course_program_info {
    padding: 30px 0;
}.course_program_info .learning_tracks {
    gap: 20px;
    padding: 20px;
}.course_program_info .site_navbar {
    margin-bottom: 15px;
}.course_program_info h3 {
    padding-bottom: 10px;
    font-size: calc(34px * 0.7);
    margin-bottom: 15px;
}.course_program_info p {
    font-size: calc(14px * 0.9);
}.course_program_info .img_show_wrap {
    min-height: 200px;
}}
.get_in_touch {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
    background: rgb(152,192,167);
}.get_in_touch::before {
    background: linear-gradient(180deg, rgb(80,121,95,0.5) 0%, transparent 100%);
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
    opacity: 0.4;
    left: 0;
    content: "";
    top: 0;
}.get_in_touch::after {
    left: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(0deg, rgb(152,192,167) 0%, transparent 100%);
    z-index: 2;
    position: absolute;
    content: "";
    width: 100%;
}.get_in_touch .img_show_wrap {
    opacity: 0.12;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(120%);
    position: absolute;
    left: 0;
}.get_in_touch .container {
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.get_in_touch h3 {
    position: relative;
    margin-bottom: 60px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}.reach_panel {
    display: flex;
    position: relative;
    z-index: 10;
    gap: 0;
}.reach_panel .request_query {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    flex: 0 0 58%;
    position: relative;
    padding: 60px;
    z-index: 1;
}.reach_panel .request_query h3 {
    text-transform: none;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 40px;
    color: #000000;
    text-align: left;
}.reach_panel .request_query h3::before,
.reach_panel .request_query h3::after {
    content: none;
}.reach_panel .request_query form {
    display: flex;
    flex-direction: column;
}.reach_panel .request_query input[type="text"],
.reach_panel .request_query textarea {
    background: rgba(245, 245, 245, 0.5);
    padding: 16px 20px;
    margin-bottom: 25px;
    font-size: 12px;
    width: 100%;
    border: none;
    font-family: Arial, sans-serif;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}.reach_panel .request_query input[type="text"]:focus,
.reach_panel .request_query textarea:focus {
    outline: none;
    background: rgba(245, 245, 245, 0.8);
    border-bottom-color: rgb(116,156,131);
}.reach_panel .request_query textarea {
    min-height: 150px;
    resize: vertical;
}.reach_panel .request_query .support_query {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}.reach_panel .request_query .support_query input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.reach_panel .request_query .support_query label {
    color: #000000;
    font-size: calc(12px - 2px);
    position: relative;
    line-height: 1.5;
    cursor: pointer;
    padding-left: 35px;
}.reach_panel .request_query .support_query label::before {
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    left: 0;
    background: rgba(245, 245, 245, 0.5);
    height: 22px;
    top: 2px;
    position: absolute;
    width: 22px;
    content: "";
}.reach_panel .request_query .support_query input[type="checkbox"]:checked + label::before {
    border-bottom-color: rgb(116,156,131);
    background: rgb(116,156,131);
}.reach_panel .request_query .support_query input[type="checkbox"]:checked + label::after {
    border-width: 0 2px 2px 0;
    border: solid #ffffff;
    left: 8px;
    height: 12px;
    width: 6px;
    content: "";
    position: absolute;
    transform: rotate(45deg);
    top: 4px;
}.reach_panel .request_query .support_query a {
    border-bottom: 1px dashed rgb(116,156,131);
    color: rgb(116,156,131);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}.reach_panel .request_query .support_query a:hover {
    color: rgb(80,121,95);
    border-bottom-color: rgb(80,121,95);
}.reach_panel .request_query .feedback_request {
    display: inline-block;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 15px 35px;
    align-self: flex-start;
    color: #000000;
    font-weight: 600;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgb(116,156,131);
    background: transparent;
    text-transform: uppercase;
}.reach_panel .request_query .feedback_request::before {
    z-index: -1;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(116,156,131);
    transition: all 0.3s ease;
    content: "";
}.reach_panel .request_query .feedback_request:hover {
    color: #ffffff;
}.reach_panel .request_query .feedback_request:hover::before {
    height: 100%;
}.reach_panel .feedback_block {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
    flex: 0 0 42%;
    margin-left: -40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.5);
    padding: 60px;
    position: relative;
    color: #ffffff;
}.reach_panel .feedback_block::before {
    left: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: -1;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
}.reach_panel .feedback_block h4 {
    font-size: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
}.reach_panel .feedback_block .help_links {
    list-style: none;
    margin: 0;
    padding: 0;
}.reach_panel .feedback_block .help_links li {
    display: flex;
    margin-bottom: 30px;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    position: relative;
    align-items: center;
}.reach_panel .feedback_block .help_links li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}.reach_panel .feedback_block .help_links li svg {
    width: 24px;
    flex-shrink: 0;
    height: 24px;
    margin-right: 20px;
}.reach_panel .feedback_block .help_links li svg path {
    transition: all 0.3s ease;
    fill: rgb(116,156,131);
}.reach_panel .feedback_block .help_links li:hover svg path {
    fill: #ffffff;
}.reach_panel .feedback_block .help_links li span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.5;
}.reach_panel .feedback_block .help_links li a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}.reach_panel .feedback_block .help_links li a:hover {
    color: rgb(116,156,131);
}

@media screen and (max-width: 992px) {.get_in_touch {
    padding: 80px 0;
}.reach_panel {
    flex-direction: column;
}.reach_panel .request_query {
    width: 100%;
    clip-path: none;
}.reach_panel .feedback_block {
    margin-left: 0;
    clip-path: none;
    width: 100%;
}
}

@media screen and (max-width: 768px) {.get_in_touch {
    padding: 60px 0;
}.get_in_touch h3 {
    font-size: calc(30px - 4px);
}.reach_panel .request_query,
    .reach_panel .feedback_block {
    padding: 40px 30px;
}.reach_panel .request_query .feedback_request {
    text-align: center;
    width: 100%;
}
}

@media screen and (max-width: 480px) {.get_in_touch {
    padding: 40px 0;
}.reach_panel .request_query,
    .reach_panel .feedback_block {
    padding: 30px 20px;
}.reach_panel .request_query h3,
    .reach_panel .feedback_block h4 {
    font-size: calc(24px - 2px);
}}.confidential_cordon {
    background-color: rgb(152,192,167);
    padding: 50px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    color: #000000;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}.confidential_cordon h1, .confidential_cordon h2, .confidential_cordon h3, .confidential_cordon h4, .confidential_cordon h5, .confidential_cordon h6 {
    margin-bottom: 20px;
    color: rgb(116,156,131);
}.confidential_cordon h1 {
    border-bottom: 2px solid rgb(80,121,95);
    font-size: 44px;
    font-weight: 700;
    padding-bottom: 10px;
}.confidential_cordon h2 {
    border-bottom: 1px solid rgb(80,121,95);
    padding-bottom: 8px;
    font-weight: 600;
    font-size: 29px;
}.confidential_cordon ul, .confidential_cordon ol {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}.confidential_cordon li {
    position: relative;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
    padding-left: 20px;
}.confidential_cordon ul li:before, .confidential_cordon ol li:before {
    border-radius: 50%;
    width: 10px;
    position: absolute;
    content: '';
    height: 10px;
    left: 0;
    background-color: rgb(80,121,95);
    top: 0.5em;
}.confidential_cordon p, .confidential_cordon span {
    margin-bottom: 20px;
    font-size: 18px;
}.confidential_cordon p {
    text-align: justify;
}.confidential_cordon div {
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {.confidential_cordon {
    padding: 30px 15px;
}.confidential_cordon h1 {
    font-size: calc(19px - 10px);
}.confidential_cordon h2 {
    font-size: calc(19px - 8px);
}.confidential_cordon p, .confidential_cordon li {
    font-size: calc(18px - 2px);
}}.title_screen {
    min-height: 100vh;
    overflow: hidden;
    perspective: 1000px;
    position: relative;
    flex-direction: column;
    display: flex;
    background: linear-gradient(135deg, rgb(152,192,167) 0%, rgba(0, 0, 0, 0.5) 100%);
}.title_screen::before {
    z-index: 1;
    position: absolute;
    top: 0;
    background: linear-gradient(45deg, rgb(116,156,131,0.5) 0%, transparent 50%);
    width: 100%;
    transform: translateZ(-50px);
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
}.title_screen::after {
    bottom: -5px;
    background: linear-gradient(225deg, rgb(80,121,95) 0%, transparent 70%);
    opacity: 0.1;
    height: 40%;
    content: "";
    position: absolute;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    right: -5px;
    width: 40%;
}.title_screen h1 {
    transform: translateZ(30px);
    margin: 3rem 1rem 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-size: 37px;
    position: relative;
    font-weight: 700;
    font-family: Arial, sans-serif;
    animation: titleEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    color: rgb(116,156,131);
    text-align: center;
    letter-spacing: 0.05em;
}.title_screen h1::after {
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    content: "";
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgb(80,121,95), transparent);
    position: absolute;
}.title_screen .learning_tracks {
    position: relative;
    perspective: 1000px;
    padding: 0 1rem;
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
    display: flex;
    flex: 1;
    z-index: 2;
    margin: 0 auto;
}.title_screen .content_zone {
    animation: fadeUp 1s ease-out 0.3s forwards;
    flex: 1;
    justify-content: center;
    opacity: 0;
    position: relative;
    padding: 2rem 1rem;
    transform: translateZ(20px);
    z-index: 3;
    flex-direction: column;
    display: flex;
}.title_screen .content_zone ol {
    margin: 0;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    flex-direction: column;
    display: flex;
}.title_screen .content_zone li {
    position: relative;
}.title_screen .content_zone li:first-child {
    transform: translateX(-10px) rotate(-1deg);
    transition: transform 0.5s ease-out;
}.title_screen .content_zone li:first-child:hover {
    transform: translateX(0) rotate(0);
}.title_screen .main_front {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 4px solid rgb(80,121,95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1), 
                -5px -5px 30px rgba(255, 255, 255, 0.1);
    padding: 2rem;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
    position: relative;
}.title_screen .main_front::before {
    z-index: 0;
    width: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(94, 170, 168, 0.05) 100%);
    top: 0;
    height: 100%;
    position: absolute;
    left: 0;
    content: "";
}.title_screen .main_front:hover {
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15), 
                -5px -5px 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}.title_screen .main_front svg {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 10px;
    height: 80px;
    transform: rotate(-3deg);
    float: left;
    width: 80px;
    margin-right: 20px;
}.title_screen .main_front:hover svg {
    transform: rotate(0deg) scale(1.05);
}.title_screen .main_front svg path {
    transition: fill 0.4s ease;
    fill: rgb(80,121,95);
}.title_screen .main_front:hover svg path {
    fill: rgb(116,156,131);
}.title_screen .main_front svg text {
    font-family: Arial, sans-serif;
    transition: fill 0.4s ease;
}.title_screen .main_front:hover svg text {
    fill: rgb(116,156,131);
}.title_screen .main_front p {
    z-index: 1;
    margin: 0;
    position: relative;
    line-height: 1.6;
    color: #000000;
    font-size: calc(14px * 1.1);
}.title_screen .feedback_request {
    position: relative;
    transform-origin: center;
    border-radius: 10px;
    background: linear-gradient(45deg, rgb(80,121,95) 0%, rgb(116,156,131) 100%);
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    margin-top: 1rem;
    font-size: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateX(0deg) translateZ(0);
    text-align: center;
    overflow: hidden;
    padding: 1rem 2rem;
    color: #ffffff;
}.title_screen .feedback_request::before {
    height: 100%;
    position: absolute;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    top: 0;
    transition: all 0.6s ease;
    width: 100%;
    content: "";
}.title_screen .feedback_request:hover {
    transform: perspective(1000px) rotateX(10deg) translateZ(10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}.title_screen .feedback_request:hover::before {
    left: 100%;
}.title_screen .img_show_wrap {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 28px;
    width: 100%;
    height: 350px;
    opacity: 0;
    animation: photoEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 40px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
}.title_screen .img_show_wrap::before {
    bottom: 0;
    position: absolute;
    background: linear-gradient(45deg, rgb(116,156,131,0.5) 0%, transparent 50%);
    left: 0;
    right: 0;
    content: "";
    top: 0;
    z-index: 1;
}.title_screen .img_show_wrap::after {
    z-index: 2;
    bottom: 0;
    right: 0;
    top: 0;
    pointer-events: none;
    left: 0;
    content: "";
    border: 1px solid rgba(255,255,255,0.2);
    position: absolute;
}.title_screen .img_show_wrap:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 30px 30px 60px rgba(0,0,0,0.3);
}

@keyframes titleEntrance {
    0% { 
        opacity: 0;
        transform: translateY(-50px) translateZ(30px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) translateZ(30px);
    }
}

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

@keyframes photoEntrance {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-15deg) translateX(100px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) translateX(0);
    }
}

@media (min-width: 768px) {.title_screen h1 {
    font-size: calc(37px * 1.2);
    margin: 4rem 2rem 3rem;
}.title_screen .learning_tracks {
    gap: 3rem;
    flex-direction: row;
    align-items: center;
    padding: 0 3rem;
}.title_screen .content_zone {
    flex: 1;
    padding: 2rem 0;
}.title_screen .img_show_wrap {
    flex: 1;
    height: 500px;
}.title_screen .main_front {
    padding: 2.5rem;
}.title_screen .main_front svg {
    width: 100px;
    height: 100px;
}
}

@media (min-width: 992px) {.title_screen h1 {
    font-size: calc(43px * 0.9);
}.title_screen .learning_tracks {
    padding: 0 5rem;
    gap: 5rem;
}.title_screen .main_front {
    padding: 3rem;
}.title_screen .main_front p {
    font-size: calc(14px * 1.2);
}.title_screen .img_show_wrap {
    height: 600px;
}.title_screen .main_front svg {
    width: 120px;
    margin-right: 30px;
    height: 120px;
}.title_screen .feedback_request {
    padding: 1.2rem 2.5rem;
    font-size: calc(15px * 1.1);
}
}

@media (min-width: 1200px) {.title_screen::before {
    background: linear-gradient(45deg, rgb(116,156,131,0.5) 0%, transparent 70%);
}.title_screen h1 {
    font-size: 43px;
}.title_screen .learning_tracks {
    padding: 0 6rem;
}.title_screen .main_front {
    padding: 3.5rem;
}.title_screen .main_front p {
    font-size: calc(14px * 1.3);
}}.company_info {
    background: rgb(152,192,167);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.company_info::before {
    width: 100%;
    background: 
        radial-gradient(
            ellipse at top left,
            rgb(116,156,131,0.5) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at bottom right,
            rgb(80,121,95,0.5) 0%,
            transparent 50%
        );
    z-index: 0;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
}.company_info::after {
    opacity: 0.05;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    background-image: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.5) 75%);
    background-size: 60px 60px;
    content: "";
    position: absolute;
    width: 100%;
    animation: movePattern 20s linear infinite;
    height: 100%;
    left: 0;
    z-index: 1;
    top: 0;
}.company_info .container {
    padding: 0 25px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}.company_info .learning_tracks {
    display: flex;
    gap: 50px;
    position: relative;
    flex-wrap: wrap;
}.company_info h3 {
    color: #000000;
    overflow: hidden;
    margin-bottom: 60px;
    font-size: 46px;
    width: 100%;
    position: relative;
    text-align: left;
    font-weight: 700;
}.company_info h3::after {
    left: 0;
    width: 0;
    bottom: -5px;
    position: absolute;
    content: "";
    height: 3px;
    animation: lineExpand 1.5s forwards;
    background: linear-gradient(90deg, rgb(116,156,131), rgb(80,121,95));
}.company_info .learn_classes {
    background: #ffffff;
    flex-direction: column;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    min-width: 300px;
    flex: 1;
    display: flex;
    padding: 40px;
}.company_info .learn_classes::before {
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    content: "";
    width: 20px;
    height: 20px;
    top: 10px;
    opacity: 0.8;
    right: 10px;
    background: rgb(116,156,131);
    position: absolute;
}.company_info .learn_classes::after {
    left: 10px;
    width: 20px;
    content: "";
    position: absolute;
    height: 20px;
    bottom: 10px;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    opacity: 0.8;
    background: rgb(80,121,95);
    z-index: 1;
}.company_info .learn_classes span {
    position: relative;
    padding: 5px 15px;
    color: rgb(116,156,131);
    background: linear-gradient(to right, rgb(116,156,131,0.5), transparent);
    display: inline-block;
    margin-bottom: 15px;
    font-size: 21px;
    transform: translateX(-15px);
    font-weight: 600;
}.company_info .learn_classes p {
    color: #000000;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}.company_info .learn_classes .img_show_wrap {
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 280px;
    overflow: hidden;
    position: relative;
}.company_info .learn_classes .img_show_wrap::before {
    z-index: 1;
    background: rgb(116,156,131,0.5);
    left: 0;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    content: "";
    transition: opacity 0.5s ease;
    height: 100%;
}.company_info .learn_classes:hover .img_show_wrap {
    transform: scale(1.03);
}.company_info .learn_classes:hover .img_show_wrap::before {
    opacity: 0.2;
}.company_info .knowledge_experts {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #ffffff;
    transition: all 0.4s ease;
    min-width: 300px;
    flex: 1;
    z-index: 2;
    padding: 40px;
}.company_info .knowledge_experts::before {
    left: 10px;
    width: 20px;
    top: 10px;
    content: "";
    z-index: 1;
    position: absolute;
    opacity: 0.8;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    height: 20px;
    background: rgb(80,121,95);
}.company_info .knowledge_experts::after {
    background: rgb(116,156,131);
    width: 20px;
    content: "";
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
    position: absolute;
    opacity: 0.8;
    right: 10px;
    height: 20px;
    bottom: 10px;
}.company_info .knowledge_experts p {
    margin-bottom: 40px;
    position: relative;
    border-radius: 10px;
    font-size: 17px;
    padding: 20px;
    color: #000000;
    background: linear-gradient(to bottom, rgb(80,121,95,0.5), transparent);
    line-height: 1.7;
}.company_info .knowledge_experts .edu_promise {
    position: relative;
    width: 180px;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    clip-path: polygon(
        20% 0%, 
        80% 0%, 
        100% 20%, 
        100% 80%, 
        80% 100%, 
        20% 100%, 
        0% 80%, 
        0% 20%
    );
    margin: 0 auto;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    height: 180px;
}.company_info .knowledge_experts .edu_promise::before {
    transition: opacity 0.5s ease;
    z-index: 1;
    opacity: 0.6;
    content: "";
    background: 
        linear-gradient(
            -45deg,
            rgb(80,121,95,0.5),
            transparent 60%
        );
    inset: 0;
    position: absolute;
}.company_info .knowledge_experts .edu_promise::after {
    clip-path: polygon(
        25% 5%, 
        75% 5%, 
        95% 25%, 
        95% 75%, 
        75% 95%, 
        25% 95%, 
        5% 75%, 
        5% 25%
    );
    content: "";
    box-shadow: inset 0 0 0 2px rgb(80,121,95);
    z-index: 2;
    transition: all 0.5s ease;
    position: absolute;
    opacity: 0.5;
    inset: 0;
}.company_info .knowledge_experts:hover .edu_promise::after {
    clip-path: polygon(
        20% 0%, 
        80% 0%, 
        100% 20%, 
        100% 80%, 
        80% 100%, 
        20% 100%, 
        0% 80%, 
        0% 20%
    );
    opacity: 1;
}.company_info .learn_classes:hover,
.company_info .knowledge_experts:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes movePattern {
    0% {
        background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    }
    100% {
        background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px;
    }
}

@media (max-width: 1100px) {.company_info {
    padding: 90px 0;
}.company_info .learning_tracks {
    flex-direction: column;
    align-items: center;
}.company_info h3 {
    text-align: center;
    font-size: calc(46px * 0.9);
}.company_info h3::after {
    transform: translateX(-50%);
    left: 50%;
}.company_info .learn_classes,
    .company_info .knowledge_experts {
    width: 100%;
    max-width: 600px;
}
}

@media (max-width: 768px) {.company_info {
    padding: 70px 0;
}.company_info h3 {
    font-size: calc(46px * 0.8);
    margin-bottom: 40px;
}.company_info .learn_classes,
    .company_info .knowledge_experts {
    padding: 30px;
}.company_info .learn_classes .img_show_wrap {
    height: 240px;
}.company_info .learn_classes span {
    font-size: calc(21px * 0.9);
}.company_info .knowledge_experts .edu_promise {
    height: 160px;
    width: 160px;
}
}

@media (max-width: 576px) {.company_info {
    padding: 50px 0;
}.company_info .container {
    padding: 0 20px;
}.company_info h3 {
    font-size: calc(46px * 0.7);
    margin-bottom: 30px;
}.company_info .learn_classes,
    .company_info .knowledge_experts {
    padding: 25px;
    clip-path: none;
}.company_info .learn_classes .img_show_wrap {
    height: 200px;
}.company_info .knowledge_experts p {
    padding: 15px;
}.company_info .knowledge_experts .edu_promise {
    width: 140px;
    height: 140px;
}}.instructional_approach {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(80,121,95,0.5) 100%);
    position: relative;
    overflow: hidden;
}.instructional_approach::before {
    height: 100%;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.03) 15px,
        rgba(255, 255, 255, 0.03) 30px
    );
    width: 100%;
    z-index: 1;
    content: '';
    position: absolute;
}.instructional_approach::after {
    width: 100%;
    top: -50%;
    opacity: 0.7;
    transform: scale(2);
    z-index: 0;
    background: radial-gradient(
        circle at center,
        rgb(116,156,131,0.5) 0%,
        transparent 70%
    );
    right: -50%;
    height: 100%;
    animation: pulse 15s infinite alternate ease-in-out;
    position: absolute;
    content: '';
}.instructional_approach .learning_tracks {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    transition: transform 0.5s ease-out;
    max-width: 1200px;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(2deg);
    padding: 0 30px;
}.instructional_approach .learning_tracks:hover {
    transform: perspective(1000px) rotateX(0deg);
}.instructional_approach h2 {
    letter-spacing: 0.5px;
    transform: translateZ(30px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding-bottom: 15px;
    position: relative;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 28px;
}.instructional_approach h2::after {
    height: 3px;
    background: rgb(116,156,131);
    left: 0;
    bottom: 0;
    transform-origin: left center;
    transform: scaleX(1);
    width: 80px;
    content: '';
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
}.instructional_approach .learning_tracks:hover h2::after {
    transform: scaleX(1.5);
}.instructional_approach .content_zone {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), 
                -20px -20px 60px rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 40px;
    transform: translateZ(20px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 4px solid rgb(116,156,131);
}.instructional_approach .content_zone::before {
    content: '';
    opacity: 0.1;
    top: 0;
    height: 100%;
    background: linear-gradient(
        to right,
        rgb(116,156,131,0.5) 0%,
        transparent 100%
    );
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
}.instructional_approach .content_zone:hover {
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.15), 
                -30px -30px 80px rgba(255, 255, 255, 0.07);
    transform: translateZ(40px) translateX(5px);
}.instructional_approach p {
    transition: transform 0.3s ease;
    position: relative;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 2;
    margin: 0;
    font-size: 12px;
}.instructional_approach p::first-letter {
    font-size: 1.5em;
    font-weight: 700;
    color: rgb(116,156,131);
}.instructional_approach .content_zone:hover p {
    transform: scale(1.01);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(2);
    }
    50% {
        opacity: 0.7;
        transform: scale(2.2);
    }
}

@media (max-width: 991px) {.instructional_approach {
    padding: 80px 0;
}.instructional_approach h2 {
    margin-bottom: 30px;
    font-size: calc(28px * 0.9);
}.instructional_approach .content_zone {
    padding: 30px;
}
}

@media (max-width: 767px) {.instructional_approach {
    padding: 60px 0;
}.instructional_approach .learning_tracks {
    padding: 0 20px;
    transform: perspective(800px) rotateX(1deg);
}.instructional_approach h2 {
    font-size: calc(28px * 0.8);
    margin-bottom: 25px;
    transform: translateZ(20px);
}.instructional_approach .content_zone {
    padding: 25px;
    transform: translateZ(15px);
}.instructional_approach .content_zone:hover {
    transform: translateZ(25px) translateX(3px);
}.instructional_approach p {
    line-height: 1.7;
    font-size: calc(12px * 0.95);
}
}

@media (max-width: 480px) {.instructional_approach {
    padding: 50px 0;
}.instructional_approach .learning_tracks {
    transform: perspective(600px) rotateX(0.5deg);
    padding: 0 15px;
}.instructional_approach h2 {
    margin-bottom: 20px;
    transform: translateZ(10px);
    font-size: calc(28px * 0.7);
}.instructional_approach h2::after {
    height: 2px;
    width: 60px;
}.instructional_approach .content_zone {
    transform: translateZ(10px);
    padding: 20px;
    border-left-width: 3px;
}.instructional_approach .content_zone:hover {
    transform: translateZ(15px) translateX(2px);
}.instructional_approach p {
    font-size: calc(12px * 0.9);
    line-height: 1.6;
}.instructional_approach p::first-letter {
    font-size: 1.3em;
}}.check_it_out_now {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(152,192,167) 0%, rgb(116,156,131,0.5) 100%);
    overflow: hidden;
}.check_it_out_now::before {
    z-index: 1;
    content: "";
    position: absolute;
    height: 100%;
    pointer-events: none;
    top: 0;
    width: 100%;
    left: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 6px);
}.check_it_out_now::after {
    right: -10%;
    clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
    top: -30%;
    z-index: 0;
    position: absolute;
    content: "";
    background: rgb(116,156,131,0.5);
    opacity: 0.1;
    transform: rotate(-15deg);
    height: 160%;
    width: 50%;
}.check_it_out_now .container {
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    position: relative;
    flex-direction: column;
}.check_it_out_now h2 {
    color: #000000;
    max-width: 800px;
    margin-bottom: 3rem;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 33px;
    transform: perspective(1000px) translateZ(0);
    text-align: center;
    font-weight: 700;
}.check_it_out_now h2::after {
    height: 3px;
    bottom: -15px;
    transform: translateX(-50%);
    background: rgb(116,156,131);
    left: 50%;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    content: "";
    position: absolute;
    width: 80px;
}.check_it_out_now .learning_tracks {
    justify-content: center;
    max-width: 500px;
    gap: 2rem;
    width: 100%;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    padding: 2rem;
    position: relative;
    border-left: 4px solid rgb(116,156,131);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.05);
    align-items: center;
    transform: translateY(0);
}.check_it_out_now .learning_tracks::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
}.check_it_out_now .learning_tracks:hover {
    box-shadow: 0 25px 45px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}.check_it_out_now .learning_tracks:hover h2::after {
    width: 120px;
}.check_it_out_now svg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    height: 40px;
    transform-origin: center;
    width: 40px;
}.check_it_out_now .learning_tracks:hover svg {
    transform: scale(1.1) rotate(5deg);
}.check_it_out_now svg path {
    transition: fill 0.3s ease;
    fill: rgb(116,156,131);
}.check_it_out_now .learning_tracks:hover svg path {
    fill: rgb(80,121,95);
}.check_it_out_now .learning_tracks > div {
    flex-grow: 1;
    justify-content: center;
    display: flex;
}.check_it_out_now .feedback_request {
    font-size: 19px;
    font-weight: 600;
    z-index: 1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(rgb(116,156,131,0.5), 0.3);
    position: relative;
    align-items: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    padding: 0.75rem 2rem;
    display: inline-flex;
    font-family: Arial, sans-serif;
    justify-content: center;
    background: linear-gradient(135deg, rgb(116,156,131) 0%, rgb(80,121,95) 100%);
    letter-spacing: 0.5px;
}.check_it_out_now .feedback_request::before {
    transition: left 0.6s ease;
    top: 0;
    height: 100%;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    z-index: -1;
    width: 100%;
    content: "";
    position: absolute;
}.check_it_out_now .feedback_request::after {
    position: absolute;
    opacity: 0;
    left: 0;
    z-index: -2;
    content: "";
    top: 0;
    height: 100%;
    transition: opacity 0.4s ease;
    width: 100%;
    background: linear-gradient(135deg, rgb(80,121,95) 0%, rgb(116,156,131) 100%);
}.check_it_out_now .feedback_request:hover {
    box-shadow: 0 6px 16px rgba(rgb(116,156,131,0.5), 0.4);
    transform: translateY(-2px) scale(1.02);
}.check_it_out_now .feedback_request:hover::before {
    left: 100%;
}.check_it_out_now .feedback_request:hover::after {
    opacity: 1;
}.check_it_out_now .feedback_request:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(rgb(116,156,131,0.5), 0.3);
}

@media (max-width: 768px) {.check_it_out_now {
    padding: 4rem 0;
}.check_it_out_now h2 {
    margin-bottom: 2rem;
    font-size: calc(33px * 0.85);
}.check_it_out_now .learning_tracks {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}.check_it_out_now .feedback_request {
    padding: 0.75rem 1.5rem;
    width: 100%;
}.check_it_out_now::after {
    width: 80%;
    right: -30%;
    top: -20%;
    height: 140%;
}
}

@media (max-width: 480px) {.check_it_out_now {
    padding: 3rem 0;
}.check_it_out_now h2 {
    font-size: calc(33px * 0.75);
}.check_it_out_now .learning_tracks {
    padding: 1.25rem;
    gap: 1rem;
}.check_it_out_now svg {
    width: 32px;
    height: 32px;
}.check_it_out_now h2::after {
    bottom: -10px;
    width: 60px;
}.check_it_out_now .feedback_request {
    padding: 0.6rem 1.25rem;
    font-size: calc(19px * 0.9);
}}.ty_note {
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(152,192,167) 0%, rgba(255,255,255,0.95) 100%);
}.ty_note::before {
    animation: patternShift 60s linear infinite;
    position: absolute;
    content: "";
    background-image: 
        linear-gradient(45deg, rgba(rgb(116,156,131,0.5), 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(rgb(116,156,131,0.5), 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(rgb(116,156,131,0.5), 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(rgb(116,156,131,0.5), 0.05) 75%);
    height: 100%;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-size: 20px 20px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}.ty_note::after {
    content: "";
    opacity: 0.25;
    right: -5%;
    position: absolute;
    height: 50%;
    top: -10%;
    background: linear-gradient(145deg, rgb(116,156,131,0.5), rgb(80,121,95,0.5));
    z-index: 0;
    width: 30%;
    filter: blur(70px);
    animation: floatGlow 15s ease-in-out infinite alternate;
}.ty_note .container {
    margin: 0 auto;
    z-index: 2;
    padding: 0 1.5rem;
    transform: translateZ(0);
    position: relative;
    max-width: 1200px;
}.ty_note h2 {
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    font-family: Arial, sans-serif;
    position: relative;
    font-weight: 700;
    line-height: 1.3;
    transform: perspective(1000px) translateZ(0);
    font-size: 38px;
    color: #000000;
}.ty_note h2::after {
    width: 6rem;
    left: 50%;
    height: 3px;
    box-shadow: 0 2px 10px rgba(rgb(116,156,131,0.5), 0.2);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-50%) scaleX(0.8);
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgb(116,156,131), rgb(80,121,95));
    bottom: -1rem;
}.ty_note:hover h2::after {
    transform: translateX(-50%) scaleX(1);
}.ty_note .learning_tracks {
    background: #ffffff;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(rgba(0, 0, 0, 0.5), 0.08);
    position: relative;
    box-shadow: 
        0 10px 30px -10px rgba(rgba(0, 0, 0, 0.5), 0.1),
        0 1px 4px rgba(rgba(0, 0, 0, 0.5), 0.05);
}.ty_note .learning_tracks::before {
    content: "";
    right: -2px;
    top: -2px;
    background-size: 200% 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(116,156,131), rgb(80,121,95), rgb(116,156,131));
    z-index: 1;
    left: -2px;
    animation: gradientMove 6s linear infinite;
    position: absolute;
}.ty_note .learning_tracks::after {
    bottom: 0;
    z-index: 0;
    position: absolute;
    content: "";
    height: 30%;
    left: 0;
    background: linear-gradient(180deg, transparent, rgba(rgb(152,192,167), 0.05));
    width: 100%;
}.ty_note:hover .learning_tracks {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        0 1px 6px rgba(rgba(0, 0, 0, 0.5), 0.07);
}.ty_note ul {
    z-index: 2;
    margin: 0;
    position: relative;
    list-style: none;
    padding: 0;
}.ty_note li {
    z-index: 2;
    position: relative;
}.ty_note li::before {
    width: 2rem;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.3;
    position: absolute;
    content: "";
    left: -1rem;
    z-index: -1;
    top: -0.5rem;
    transform: scale(0.8);
    height: 2rem;
    background-image: radial-gradient(circle, rgb(80,121,95,0.5) 0%, transparent 70%);
}.ty_note:hover li::before {
    opacity: 0.5;
    transform: scale(1.2);
}.ty_note span {
    display: block;
    transition: color 0.3s ease;
    position: relative;
    font-size: 13px;
    padding: 0.5rem 0;
    color: #000000;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}.ty_note span::first-letter {
    font-weight: 600;
    color: rgb(116,156,131);
    font-size: 1.5em;
}

@keyframes gradientMove {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
}

@keyframes floatGlow {
    0% { transform: translateY(0) rotate(0); opacity: 0.25; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.35; }
    100% { transform: translateY(10px) rotate(-3deg); opacity: 0.25; }
}

@keyframes patternShift {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 100px 100px, 100px 110px, 110px 90px, 90px 100px; }
}

@media (max-width: 991px) {.ty_note {
    padding: 4rem 0;
}.ty_note h2 {
    font-size: calc(38px * 0.9);
    margin-bottom: 2.5rem;
}.ty_note .learning_tracks {
    padding: 2.5rem 2rem;
}
}

@media (max-width: 767px) {.ty_note {
    padding: 3.5rem 0;
}.ty_note h2 {
    font-size: calc(38px * 0.8);
    margin-bottom: 2rem;
    line-height: 1.4;
}.ty_note h2::after {
    bottom: -0.8rem;
    width: 5rem;
}.ty_note .learning_tracks {
    padding: 2rem 1.5rem;
}.ty_note span {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 575px) {.ty_note {
    padding: 3rem 0;
}.ty_note h2 {
    font-size: calc(38px * 0.7);
    margin-bottom: 1.8rem;
}.ty_note h2::after {
    width: 4rem;
}.ty_note .learning_tracks {
    padding: 1.5rem 1.25rem;
}.ty_note span {
    line-height: 1.5;
    font-size: calc(13px * 0.9);
}.ty_note li::before {
    left: -0.5rem;
    top: -0.3rem;
    width: 1.5rem;
    height: 1.5rem;
}}.instructor_profile {
    padding: 4rem 2rem;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgb(152,192,167);
}.instructor_profile::before {
    position: absolute;
    width: 100%;
    background-size: 20px 20px;
    height: 100%;
    opacity: 0.2;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgb(116,156,131,0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgb(116,156,131,0.5) 1px, transparent 1px);
    content: "";
    z-index: 1;
    animation: grid-shift 30s linear infinite;
}.instructor_profile .student_reviews {
    margin: 0 auto;
    max-width: 900px;
    z-index: 2;
    grid-template-columns: 45% 55%;
    position: relative;
    gap: 0;
    display: grid;
}.instructor_profile .img_show_wrap {
    z-index: 2;
    min-height: 400px;
    transition: filter 0.6s ease;
    filter: grayscale(60%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    height: 100%;
    position: relative;
}.instructor_profile .img_show_wrap::before {
    position: absolute;
    border: 1px solid #ffffff;
    content: "";
    left: 20px;
    bottom: 20px;
    transform: scale(0.9);
    z-index: 3;
    right: 20px;
    transition: all 0.5s ease;
    opacity: 0;
    top: 20px;
    mix-blend-mode: overlay;
}.instructor_profile .student_reviews:hover .img_show_wrap {
    filter: grayscale(0%);
}.instructor_profile .student_reviews:hover .img_show_wrap::before {
    opacity: 0.8;
    transform: scale(1);
}.instructor_profile .experiencep_wrap {
    padding: 2rem 2rem 2rem 4rem;
    z-index: 3;
    justify-content: center;
    background: #ffffff;
    position: relative;
    flex-direction: column;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -10%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
}.instructor_profile .experiencep_wrap::before {
    background: linear-gradient(to bottom, rgb(116,156,131), rgb(80,121,95));
    height: 100%;
    top: 0;
    left: 0;
    transition: width 0.3s ease;
    position: absolute;
    content: "";
    width: 10px;
}.instructor_profile .student_reviews:hover .experiencep_wrap::before {
    width: 15px;
}.instructor_profile .name {
    transition: all 0.4s ease;
    font-size: calc(32px * 1.2);
    transform: translateX(20px);
    opacity: 0.9;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: Arial, sans-serif;
    color: rgb(116,156,131);
}.instructor_profile .student_reviews:hover .name {
    opacity: 1;
    transform: translateX(0);
}.instructor_profile .experiencep_wrap > div:nth-child(2) {
    text-transform: uppercase;
    transform: translateX(15px);
    opacity: 0.7;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.4s ease 0.1s;
    color: rgb(80,121,95);
    font-size: 13px;
}.instructor_profile .student_reviews:hover .experiencep_wrap > div:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
}.instructor_profile .exp_timeline {
    line-height: 1.8;
    transform: translateX(10px);
    position: relative;
    color: #000000;
    transition: all 0.4s ease 0.2s;
    font-size: 13px;
    opacity: 0.8;
}.instructor_profile .exp_timeline::first-letter {
    color: rgb(116,156,131);
    font-size: 1.6em;
    font-weight: 700;
}.instructor_profile .student_reviews:hover .exp_timeline {
    transform: translateX(0);
    opacity: 1;
}

@keyframes grid-shift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@media (max-width: 768px) {.instructor_profile .student_reviews {
    grid-template-columns: 1fr;
}.instructor_profile .img_show_wrap {
    min-height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}.instructor_profile .experiencep_wrap {
    margin-left: 0;
    margin-top: -50px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding: 3rem 2rem 2rem;
}}footer {
    position: relative;
    width: 100%;
}footer .lesson_cta {
    color: #ffffff;
    background-color: rgb(80,121,95);
    position: relative;
    padding: 80px 0 30px;
    font-family: Arial, sans-serif;
}footer .lesson_cta::before {
    opacity: 0.05;
    background-image: 
        linear-gradient(30deg, rgb(80,121,95) 12%, transparent 12.5%, transparent 87%, rgb(80,121,95) 87.5%, rgb(80,121,95)),
        linear-gradient(150deg, rgb(80,121,95) 12%, transparent 12.5%, transparent 87%, rgb(80,121,95) 87.5%, rgb(80,121,95)),
        linear-gradient(30deg, rgb(80,121,95) 12%, transparent 12.5%, transparent 87%, rgb(80,121,95) 87.5%, rgb(80,121,95)),
        linear-gradient(150deg, rgb(80,121,95) 12%, transparent 12.5%, transparent 87%, rgb(80,121,95) 87.5%, rgb(80,121,95)),
        linear-gradient(60deg, rgb(116,156,131,0.5) 25%, transparent 25.5%, transparent 75%, rgb(116,156,131,0.5) 75%, rgb(116,156,131,0.5)),
        linear-gradient(60deg, rgb(116,156,131,0.5) 25%, transparent 25.5%, transparent 75%, rgb(116,156,131,0.5) 75%, rgb(116,156,131,0.5));
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
    background-size: 80px 140px;
    pointer-events: none;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    left: 0;
    height: 100%;
}footer .lesson_cta::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(116,156,131), rgb(80,121,95));
    width: 100%;
    pointer-events: none;
    left: 0;
    content: "";
    height: 5px;
    top: 0;
}footer .footer_classes {
    position: relative;
    z-index: 1;
}footer .reach_contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}footer .info_item {
    max-width: 300px;
    padding: 20px 25px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    cursor: pointer;
    position: relative;
    flex: 0 1 auto;
    background-color: rgba(255, 255, 255, 0.03);
    min-height: 60px;
    transition: all 0.4s ease;
    align-items: center;
    justify-content: center;
    display: flex;
    min-width: 200px;
}footer .info_item::before {
    content: "";
    z-index: -1;
    left: 3px;
    pointer-events: none;
    top: 3px;
    position: absolute;
    bottom: 3px;
    background-color: rgb(80,121,95);
    right: 3px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}footer .info_item:hover {
    transform: translateY(-5px);
    background-color: rgb(116,156,131);
}footer .info_item svg {
    height: 20px;
    flex-shrink: 0;
    transition: fill 0.3s ease;
    margin-right: 12px;
    width: 20px;
    fill: rgb(116,156,131);
}footer .info_item:hover svg {
    fill: #ffffff;
}footer .info_item p,
footer .info_item a {
    width: 100%;
    transition: all 0.3s ease;
    color: #ffffff;
    white-space: nowrap;
    align-items: center;
    font-size: 18px;
    z-index: 1;
    display: flex;
    text-overflow: ellipsis;
    cursor: pointer;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}footer .text_main_holder {
    position: relative;
    gap: 50px;
    grid-template-columns: 1fr;
    padding-top: 40px;
    display: grid;
}footer .text_main_holder::before {
    left: 10%;
    pointer-events: none;
    position: absolute;
    width: 80%;
    height: 1px;
    top: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}footer .site_navbar {
    position: relative;
    padding: 20px;
    text-align: center;
    display: flex;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    align-items: center;
    max-width: 350px;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}footer .site_navbar::before {
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
    content: "";
    background-color: rgb(80,121,95);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -1;
    position: absolute;
    pointer-events: none;
}footer .site_navbar svg {
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    height: 45px;
}footer .idea_pool {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
}footer .top_sitewrap {
    background-color: rgba(255, 255, 255, 0.03);
    position: relative;
    border-radius: 11px;
    padding: 30px;
}footer .top_sitewrap h5 {
    position: relative;
    font-size: 23px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 700;
    color: #ffffff;
}footer .top_sitewrap h5::after {
    bottom: 0;
    pointer-events: none;
    width: 50px;
    position: absolute;
    left: 0;
    height: 2px;
    content: "";
    background-color: rgb(116,156,131);
}footer .header_wrap {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    display: grid;
}footer .header_wrap a {
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    align-items: center;
    position: relative;
    text-decoration: none;
    display: flex;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}footer .header_wrap a::before {
    left: 5px;
    transform: translateY(-50%);
    top: 50%;
    content: "";
    width: 0;
    pointer-events: none;
    position: absolute;
    border-top: 4px solid transparent;
    border-left: 4px solid rgb(116,156,131);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    height: 0;
}footer .header_wrap a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
}footer .header_wrap a:hover::before {
    opacity: 1;
}footer .subscribe_holder {
    padding: 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 11px;
}footer .subscribe_holder::before {
    width: 100%;
    position: absolute;
    top: 0;
    border-radius: 11px;
    height: 100%;
    background-image: 
        linear-gradient(-45deg, transparent 48%, rgb(116,156,131,0.5) 49%, rgb(116,156,131,0.5) 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgb(116,156,131,0.5) 49%, rgb(116,156,131,0.5) 51%, transparent 52%);
    left: 0;
    pointer-events: none;
    opacity: 0.05;
    content: "";
    background-size: 20px 20px;
}footer .subscribe_holder h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 23px;
}footer .subscribe_holder p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}footer .input_holder {
    width: 100%;
    display: flex;
    gap: 15px;
    z-index: 5;
    flex-direction: column;
    position: relative;
}footer .input_holder input[type="email"] {
    width: 100%;
    appearance: none;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    padding: 14px 16px;
    cursor: text;
    z-index: 5;
    -webkit-appearance: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 18px;
}footer .input_holder input[type="email"]:focus {
    border-color: rgb(116,156,131);
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}footer .news_wrap {
    position: relative;
    border-radius: 10px;
    padding: 14px 20px;
    border: none;
    text-align: center;
    background-color: rgb(116,156,131);
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    color: #ffffff;
    z-index: 5;
    font-size: 18px;
    cursor: pointer;
}footer .news_wrap:hover {
    background-color: rgb(80,121,95);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}footer .affiliate_cta {
    position: relative;
    margin-top: 50px;
    text-align: center;
}footer .ranking_bar {
    padding: 0 20px;
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}footer .ranking_bar::before,
footer .ranking_bar::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}footer .ranking_bar::before {
    left: -10px;
    transform: rotate(-45deg);
}footer .ranking_bar::after {
    transform: rotate(45deg);
    right: -10px;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
}footer .news_wrap {
    width: auto;
    flex-shrink: 0;
    min-width: 150px;
}footer .input_holder input[type="email"] {
    min-width: 0;
    flex: 1;
}
}

@media (max-width: 991px) {footer .header_wrap {
    grid-template-columns: 1fr;
}
}

@media (max-width: 767px) {footer .lesson_cta {
    padding: 60px 0 30px;
}footer .reach_contact {
    margin-bottom: 40px;
}footer .info_item {
    padding: 15px 20px;
    min-width: 150px;
}footer .top_sitewrap, footer .subscribe_holder {
    padding: 25px 20px;
}footer .site_navbar {
    margin-bottom: 20px;
    padding: 15px;
}footer .affiliate_cta {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .lesson_cta {
    padding: 50px 0 20px;
}footer .info_item {
    min-width: 100%;
}footer .top_sitewrap h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
    font-size: calc(23px - 2px);
}footer .top_sitewrap, footer .subscribe_holder {
    padding: 20px 15px;
}footer .input_holder input[type="email"],
    footer .news_wrap {
    padding: 12px;
}}.stay_informed {
    padding: 4rem 0;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05), 0 -5px 20px rgba(255,255,255,0.05);
    position: relative;
    background: linear-gradient(135deg, rgb(80,121,95,0.5), rgb(116,156,131,0.5));
}.stay_informed::before {
    background: radial-gradient(circle, rgb(80,121,95,0.5) 0%, transparent 70%);
    height: 300px;
    top: -100px;
    position: absolute;
    animation: pulse 8s infinite alternate ease-in-out;
    border-radius: 50%;
    content: "";
    right: -100px;
    opacity: 0.4;
    width: 300px;
}.stay_informed::after {
    position: absolute;
    background: radial-gradient(circle, rgb(116,156,131,0.5) 0%, transparent 70%);
    content: "";
    opacity: 0.3;
    left: -50px;
    animation: pulse 10s infinite alternate-reverse ease-in-out;
    border-radius: 50%;
    bottom: -50px;
    width: 200px;
    height: 200px;
}.stay_informed .container {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    max-width: 1200px;
}.stay_informed .learning_tracks {
    background: rgba(255, 255, 255, 0.85);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.08),
        -12px -12px 24px rgba(255, 255, 255, 0.8),
        inset 1px 1px 1px rgba(255, 255, 255, 0.7),
        inset -1px -1px 1px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(2deg);
}.stay_informed .learning_tracks:hover {
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.1),
        -15px -15px 30px rgba(255, 255, 255, 0.9),
        inset 1px 1px 1px rgba(255, 255, 255, 0.7),
        inset -1px -1px 1px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg);
}.stay_informed h4 {
    transition: transform 0.5s ease;
    font-weight: 600;
    position: relative;
    margin-bottom: 1.5rem;
    color: #000000;
    transform: translateY(0);
    text-align: center;
    font-size: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.4;
}.stay_informed .learning_tracks:hover h4 {
    transform: translateY(-5px);
}.stay_informed h4::after {
    width: 80px;
    background: linear-gradient(90deg, rgb(116,156,131), rgb(80,121,95));
    transition: width 0.5s ease;
    position: absolute;
    transform: translateX(-50%);
    bottom: -10px;
    left: 50%;
    height: 3px;
    content: "";
    border-radius: 2px;
}.stay_informed .learning_tracks:hover h4::after {
    width: 120px;
}.stay_informed .input_holder {
    margin-top: 2rem;
    gap: 1rem;
    flex-direction: column;
    display: flex;
}.stay_informed .input_holder span {
    position: relative;
    display: block;
}.stay_informed input[type="email"] {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.05),
        inset -2px -2px 5px rgba(255, 255, 255, 0.8);
    outline: none;
    background: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    width: 100%;
    color: #000000;
}.stay_informed input[type="email"]:focus {
    border-color: rgb(80,121,95);
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 3px rgb(80,121,95,0.5),
        inset 2px 2px 5px rgba(0, 0, 0, 0.05),
        inset -2px -2px 5px rgba(255, 255, 255, 0.8);
}.stay_informed input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}.stay_informed input[type="email"]:focus::placeholder {
    opacity: 0.5;
}.stay_informed .news_wrap {
    padding: 1rem 1.5rem;
    font-size: 18px;
    background: linear-gradient(135deg, rgb(116,156,131), rgb(80,121,95));
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 0.5),
        inset 1px 1px 0px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    text-transform: uppercase;
}.stay_informed .news_wrap:hover {
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.15),
        -8px -8px 16px rgba(255, 255, 255, 0.6),
        inset 1px 1px 0px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}.stay_informed .news_wrap:active {
    transform: translateY(0);
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -2px -2px 4px rgba(255, 255, 255, 0.5),
        inset 1px 1px 3px rgba(0, 0, 0, 0.1),
        inset -1px -1px 3px rgba(255, 255, 255, 0.2);
}.stay_informed .news_wrap::before {
    position: absolute;
    transition: left 0.8s ease;
    left: -100%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
    top: 0;
    width: 100%;
}.stay_informed .news_wrap:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@media (min-width: 768px) {.stay_informed .learning_tracks {
    padding: 3.5rem 4rem;
}.stay_informed .input_holder {
    flex-direction: row;
    align-items: center;
}.stay_informed input[type="email"] {
    border-radius: 10px 0 0 10px;
}.stay_informed .input_holder span:first-child {
    flex: 2;
}.stay_informed .input_holder span:last-child {
    flex: 1;
}.stay_informed .news_wrap {
    height: 100%;
    border-radius: 0 10px 10px 0;
}.stay_informed h4 {
    font-size: calc(20px * 1.1);
}
}

@media (min-width: 992px) {.stay_informed {
    padding: 5rem 0;
}.stay_informed .learning_tracks {
    padding: 4rem 5rem;
    justify-content: space-between;
    display: flex;
    gap: 3rem;
    align-items: center;
}.stay_informed .learning_tracks > div {
    flex: 1;
}.stay_informed .input_holder {
    flex: 1;
    margin-top: 0;
}.stay_informed h4 {
    text-align: left;
    margin-bottom: 0;
    font-size: calc(20px * 1.2);
}.stay_informed h4::after {
    left: 0;
    transform: none;
}
}

@media (max-width: 767px) {.stay_informed {
    padding: 3rem 0;
}.stay_informed .learning_tracks {
    padding: 2rem;
}.stay_informed h4 {
    font-size: calc(20px * 0.9);
}.stay_informed input[type="email"],
    .stay_informed .news_wrap {
    padding: 0.85rem 1.25rem;
}}.cookie_message_panel {
    bottom: 0;
    position: fixed;
    border-top: 3px solid rgb(116,156,131);
    background: rgb(152,192,167);
    width: 100%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    z-index: 90;
}.cookie_tab {
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: auto;
    align-items: center;
    max-width: 1200px;
}#cookieWarningNotice {
    display: none;
}#cookieWarningNotice:checked ~ .cookie_message_panel {
    opacity: 0;
    visibility: hidden;
}.cookie_message_panel h5 {
    margin-bottom: 6px;
    font-size: 23px;
    font-weight: 700;
    color: rgb(116,156,131);
    text-transform: uppercase;
    letter-spacing: 1px;
}.cookie_message_panel p {
    color: #000000;
    max-width: 500px;
    font-size: 14px;
}.cookie_necessary {
    flex-shrink: 0;
    margin-right: 20px;
}.cookie_necessary svg, .cookie_necessary svg path {
    height: 80px;
    width: 80px;
    fill: rgb(116,156,131);
}.track_settings {
    margin-left: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: border 0.2s;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid transparent;
    font-weight: 600;
    background: rgb(116,156,131);
    flex-shrink: 0;
    min-width: 140px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
}.cookie_button.cookie_reset {
    background: rgb(116,156,131);
}.cookie_button.user_status {
    background: rgb(80,121,95);
}.track_settings:hover {
    border: 2px solid #ffffff;
}.cookie_message_panel p a {
    font-weight: 700;
    color: rgb(116,156,131);
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {.cookie_tab {
    padding: 0 10px;
}
}
@media only screen and (max-width: 800px) {.cookie_necessary {
    display: none;
}.cookie_tab {
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}.cookie_message_panel h5, .cookie_message_panel p {
    text-align: center;
}.visitor_confirm {
    margin-bottom: 20px;
}.track_settings {
    margin-top: 10px;
    max-width: 300px;
    width: 100%;
    margin-left: 0;
}}
.inner-container .cookie_message_panel {
    padding: 30px 0;
    border: none;
    background: rgb(80,121,95);
}.inner-container .track_settings {
    border: none;
    color: #ffffff;
    font-size: 15px;
    border-radius: 10px;
    font-weight: 600;
    background: rgb(116,156,131);
    margin-left: 0;
}.inner-container .visitor_confirm h5, .inner-container .visitor_confirm p {
    color: #ffffff;
}header {
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    background: 
        linear-gradient(170deg, 
            #000000 0%,
            rgb(116,156,131,0.5) 100%);
    z-index: 1000;
    width: 100%;
    background: #000000;
}header::before {
    top: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgb(80,121,95,0.5) 10px,
            rgb(80,121,95,0.5) 11px
        );
    content: "";
    opacity: 0.03;
    left: 0;
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
}header::after {
    background: linear-gradient(90deg, 
        rgb(116,156,131),
        rgb(80,121,95),
        rgb(116,156,131));
    left: 0;
    content: "";
    z-index: 5;
    width: 100%;
    position: absolute;
    background-size: 200% 100%;
    animation: gradient-shift 8s linear infinite;
    top: 0;
    height: 5px;
}header .container {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}header .site_core {
    position: relative;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    z-index: 2;
    width: 100%;
    flex-direction: column;
}header .main_navbar {
    text-decoration: none;
    margin-bottom: 2rem;
    z-index: 3;
    justify-content: center;
    display: flex;
    position: relative;
    padding: 0.5rem 2rem;
}header .main_navbar::before {
    bottom: -10px;
    width: 160%;
    position: absolute;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, 
        transparent 0%,
        rgb(80,121,95,0.5) 20%,
        rgb(80,121,95) 50%,
        rgb(80,121,95,0.5) 80%,
        transparent 100%);
    left: -30%;
}header .main_navbar::after {
    opacity: 0.5;
    background: rgb(116,156,131,0.5);
    z-index: -1;
    content: "";
    height: 40px;
    animation: orb-float 5s ease-in-out infinite alternate;
    filter: blur(20px);
    position: absolute;
    border-radius: 50%;
    width: 40px;
}header .main_navbar svg {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgb(116,156,131,0.5));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    position: relative;
}header .main_navbar:hover svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgb(116,156,131));
}header .top_sitewrap {
    padding: 1rem 0;
    background: linear-gradient(to bottom, 
        #000000 0%,
        rgba(0, 0, 0, 0.5) 100%);
    mask-image: linear-gradient(90deg, 
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%);
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100vw;
}header .top_sitewrap::-webkit-scrollbar {
    display: none;
}header .top_sitewrap::before {
    height: 1px;
    position: absolute;
    background: rgb(116,156,131,0.5);
    content: "";
    width: 100%;
    top: 0;
    left: 0;
}header .head_section {
    font-weight: 400;
    position: relative;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid rgb(116,156,131,0.5);
    padding: 0.6rem 1.8rem;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg,
        #000000 0%,
        rgba(0, 0, 0, 0.5) 100%);
    color: #ffffff;
}header .head_section::before {
    height: 100%;
    transition: left 0.5s ease;
    content: "";
    left: -100%;
    position: absolute;
    width: 100%;
    top: 0;
    background: linear-gradient(90deg,
        transparent,
        rgb(80,121,95,0.5),
        transparent);
    opacity: 0.5;
}header .head_section::after {
    top: 50%;
    background: rgb(80,121,95);
    border-radius: 50%;
    height: 8px;
    box-shadow: 0 0 10px rgb(80,121,95);
    transform: translateY(-50%) scale(0);
    right: 12px;
    width: 8px;
    position: absolute;
    content: "";
    transition: transform 0.3s ease;
}header .head_section:hover {
    border-color: rgb(80,121,95);
    color: rgb(80,121,95);
    box-shadow: 0 0 15px rgb(116,156,131,0.5),
                inset 0 0 10px rgb(116,156,131,0.5);
    transform: translateY(-2px);
}header .head_section:hover::before {
    left: 100%;
}header .head_section:hover::after {
    transform: translateY(-50%) scale(1);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 10px);
    }
}

@media (max-width: 991px) {header .main_navbar {
    margin-bottom: 1.5rem;
}header .main_navbar svg {
    height: 42px;
}header .head_section {
    padding: 0.5rem 1.5rem;
    font-size: calc(12px - 1px);
}
}

@media (max-width: 767px) {header .site_core {
    padding-top: 1rem;
}header .main_navbar {
    margin-bottom: 1rem;
}header .main_navbar svg {
    height: 36px;
}header .top_sitewrap {
    justify-content: flex-start;
    padding: 0.8rem 0;
}header .head_section {
    font-size: calc(12px - 2px);
    margin: 0 0.2rem;
    padding: 0.4rem 1.2rem;
}header .head_section:first-child {
    margin-left: 1rem;
}header .head_section:last-child {
    margin-right: 1rem;
}header .head_section::after {
    right: 8px;
    width: 6px;
    height: 6px;
}}.learning_profits {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
    background: linear-gradient(120deg, rgb(152,192,167) 0%, rgb(116,156,131,0.5) 100%);
}.learning_profits::before {
    top: -50%;
    z-index: 0;
    background: radial-gradient(
        ellipse at center,
        rgb(80,121,95,0.5) 0%,
        transparent 70%
    );
    opacity: 0.4;
    height: 200%;
    animation: rotateBackground 30s infinite linear;
    position: absolute;
    left: -50%;
    width: 200%;
    content: "";
}@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.learning_profits::after {
    position: absolute;
    z-index: 0;
    width: 100%;
    opacity: 0.2;
    left: 0;
    content: "";
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgb(80,121,95,0.5) 100%),
        linear-gradient(45deg, rgb(116,156,131,0.5) 0%, transparent 60%);
    top: 0;
}.learning_profits .container {
    position: relative;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    padding: 0 30px;
}.learning_profits .learning_tracks {
    border-radius: 20px;
    display: grid;
    position: relative;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    position: relative;
}.learning_profits .learning_tracks::before {
    position: absolute;
    content: "";
    border-radius: 22px;
    background: linear-gradient(
        -45deg,
        rgb(116,156,131) 0%,
        transparent 40%,
        transparent 60%,
        rgb(80,121,95) 100%
    );
    opacity: 0.6;
    animation: borderGlow 8s infinite alternate;
    inset: -2px;
    z-index: -1;
}@keyframes borderGlow {
    0% {
        opacity: 0.3;
        filter: blur(3px);
    }
    100% {
        opacity: 0.6;
        filter: blur(1px);
    }
}

.learning_profits .learning_tracks::after {
    content: "";
    z-index: -1;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    inset: 0;
    backdrop-filter: blur(15px);
    position: absolute;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(245, 245, 250, 0.9) 100%
    );
}.learning_profits .content_zone {
    display: flex;
    padding: 40px;
    justify-content: center;
    order: 1;
    flex-direction: column;
}.learning_profits .img_show_wrap {
    height: 100%;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 0 20px 20px 0;
    box-shadow: 
        20px 0 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.08);
    transform: scale(1.05) translateX(-5%);
    object-fit: cover;
    z-index: 1;
    order: 2;
    position: relative;
    width: 100%;
}.learning_profits .img_show_wrap:hover {
    transform: scale(1.08) translateX(-3%);
}.learning_profits h3 {
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: #000000;
    font-size: 34px;
}.learning_profits h3::before {
    width: 30px;
    left: -40px;
    content: "";
    position: absolute;
    top: 50%;
    background: rgb(116,156,131);
    transform: translateY(-50%);
    height: 2px;
}.learning_profits h3::after {
    width: 80px;
    height: 3px;
    background: linear-gradient(
        to right, 
        rgb(80,121,95) 0%, 
        rgb(116,156,131) 50%,
        transparent 100%
    );
    border-radius: 10px;
    content: "";
    bottom: -10px;
    left: 0;
    position: absolute;
}.learning_profits ul {
    flex-direction: column;
    padding: 0;
    gap: 15px;
    display: flex;
    list-style: none;
    margin: 0;
}.learning_profits li {
    border-radius: 12px;
    transition: all 0.4s ease;
    padding: 18px;
    position: relative;
    overflow: hidden;
    background: rgb(152,192,167);
}.learning_profits li::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    width: 4px;
    opacity: 0.7;
    top: 0;
    transition: all 0.4s ease;
    background: linear-gradient(
        to bottom,
        rgb(116,156,131) 0%,
        rgb(80,121,95) 100%
    );
}.learning_profits li::after {
    opacity: 0;
    content: "";
    background: linear-gradient(
        to right,
        rgb(116,156,131,0.5) 0%,
        transparent 30%
    );
    top: 0;
    transition: all 0.4s ease;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
}.learning_profits li:hover {
    background: linear-gradient(
        to right,
        rgb(152,192,167) 0%,
        #ffffff 100%
    );
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}.learning_profits li:hover::before {
    width: 6px;
}.learning_profits li:hover::after {
    opacity: 0.3;
}.learning_profits li p {
    font-size: 14px;
    align-items: center;
    position: relative;
    gap: 15px;
    color: #000000;
    z-index: 2;
    margin: 0;
    display: flex;
}.learning_profits svg {
    border-radius: 50%;
    padding: 4px;
    position: relative;
    flex-shrink: 0;
    height: 24px;
    transition: all 0.5s ease;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    width: 24px;
}.learning_profits svg path {
    transition: all 0.5s ease;
    fill: rgb(116,156,131);
}.learning_profits li:hover svg {
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    transform: scale(1.15);
}.learning_profits li:hover svg path {
    fill: rgb(80,121,95);
}

@media (max-width: 992px) {.learning_profits {
    padding: 80px 0;
}.learning_profits .learning_tracks {
    gap: 30px;
}.learning_profits .content_zone {
    padding: 30px;
}
}

@media (max-width: 768px) {.learning_profits .learning_tracks {
    grid-template-columns: 1fr;
    gap: 40px;
}.learning_profits .img_show_wrap {
    order: 1;
    border-radius: 20px 20px 0 0;
    max-height: 350px;
    width: 100%;
    transform: scale(1);
}.learning_profits .content_zone {
    padding: 30px;
    order: 2;
}.learning_profits h3::before {
    left: -30px;
    width: 20px;
}
}

@media (max-width: 576px) {.learning_profits {
    padding: 60px 0;
}.learning_profits .learning_tracks {
    gap: 30px;
}.learning_profits .img_show_wrap {
    max-height: 250px;
}.learning_profits .content_zone {
    padding: 25px 20px;
}.learning_profits h3 {
    font-size: 18px;
    margin-bottom: 25px;
}.learning_profits h3::before {
    display: none;
}.learning_profits li {
    padding: 15px;
}.learning_profits li p {
    gap: 12px;
    font-size: 14px;
}.learning_profits svg {
    width: 22px;
    height: 22px;
    padding: 3px;
}}.price_card_item {
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.price_card_item::before {
    left: 0;
    content: '';
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    top: 0;
    z-index: 1;
    width: 100%;
}.price_card_item .container {
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}.price_card_item .fee_deals {
    position: relative;
}.price_card_item h2 {
    color: transparent;
    transform: translateY(0);
    font-weight: 700;
    animation: titleFloat 6s ease-in-out infinite;
    position: relative;
    -webkit-background-clip: text !important;
    background: linear-gradient(90deg, rgb(116,156,131) 0%, rgb(80,121,95) 100%);
    margin-bottom: 25px;
    background-clip: text !important;
    text-align: center;
    font-size: 34px;
}.price_card_item h2::after {
    transform: translateX(-50%);
    bottom: -10px;
    position: absolute;
    left: 50%;
    content: '';
    height: 3px;
    background: rgb(80,121,95);
    width: 80px;
}.price_card_item .study_costsktA {
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 50px;
    color: #ffffff;
    max-width: 700px;
    opacity: 0.9;
    font-size: calc(12px + 2px);
}.price_card_item .skill_pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
    margin: 0;
    gap: 30px;
    padding: 0;
}.price_card_item .skill_pricing li {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.price_card_item .skill_pricing li:hover {
    z-index: 3;
    transform: translateY(-10px);
}.price_card_item .study_packages {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    height: 100%;
    display: block;
}.price_card_item .rate_choices {
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(41, 41, 41, 0.8) 0%, rgba(25, 25, 25, 0.9) 100%);
    position: relative;
}.price_card_item .rate_choices::before {
    left: 0;
    height: 5px;
    transition: transform 0.5s ease;
    position: absolute;
    transform: scaleX(0);
    width: 100%;
    top: 0;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(116,156,131), rgb(80,121,95));
    content: '';
}.price_card_item .study_packages:hover .rate_choices::before {
    transform: scaleX(1);
}.price_card_item .rate_choices::after {
    height: 60px;
    content: '';
    bottom: 0;
    right: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, transparent 50%, rgb(80,121,95,0.5) 50%);
    opacity: 0;
    width: 60px;
}.price_card_item .study_packages:hover .rate_choices::after {
    opacity: 1;
}.price_card_item .plan_matrix {
    z-index: 2;
    position: relative;
}.price_card_item .plan_matrix h4 {
    color: #ffffff;
    margin: 0 0 20px;
    display: inline-block;
    font-size: calc(19px + 2px);
    position: relative;
    font-weight: 700;
}.price_card_item .plan_matrix h4::after {
    height: 2px;
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    content: '';
    transition: width 0.4s ease;
    background: rgb(116,156,131);
}.price_card_item .study_packages:hover .plan_matrix h4::after {
    width: 100%;
}.price_card_item .plan_matrix p {
    padding-right: 5px;
    font-size: 12px;
    overflow-y: auto;
    max-height: 200px;
    word-break: break-word;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.8);
    overflow-wrap: break-word;
    line-height: 1.6;
}.price_card_item .plan_matrix p::-webkit-scrollbar {
    width: 4px;
}.price_card_item .plan_matrix p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}.price_card_item .plan_matrix p::-webkit-scrollbar-thumb {
    background: rgb(116,156,131,0.5);
}.price_card_item .member_plans {
    font-size: calc(19px + 4px);
    margin-top: 15px;
    color: #ffffff;
    font-weight: 700;
    display: block;
    position: relative;
    padding: 10px 0;
}.price_card_item .member_plans::before {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    left: 0;
    top: 0;
    width: 40px;
    content: '';
    position: absolute;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {.price_card_item {
    padding: 80px 0;
}.price_card_item .skill_pricing {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}.price_card_item .rate_choices {
    padding: 25px 20px;
}.price_card_item .plan_matrix p {
    font-size: calc(12px - 1px);
    max-height: 150px;
}.price_card_item .member_plans {
    font-size: calc(19px + 2px);
}
}

@media (max-width: 767px) {.price_card_item {
    padding: 60px 0;
}.price_card_item h2 {
    font-size: calc(34px - 4px);
}.price_card_item .study_costsktA {
    font-size: 12px;
    margin-bottom: 30px;
}.price_card_item .skill_pricing {
    margin: 0 auto;
    max-width: 450px;
    grid-template-columns: 1fr;
}.price_card_item .plan_matrix h4 {
    font-size: 19px;
}.price_card_item .member_plans {
    font-size: 19px;
}
}

@media (max-width: 480px) {.price_card_item {
    padding: 50px 0;
}.price_card_item h2 {
    font-size: calc(34px - 8px);
}.price_card_item .study_costsktA {
    font-size: calc(12px - 2px);
}.price_card_item .rate_choices {
    padding: 20px 15px;
}.price_card_item .plan_matrix p {
    font-size: calc(12px - 2px);
}
}