* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.wrapper-skeleton {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}header,footer {
    width: 100%;
}html,body {
    min-height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
    height: 100%;
}.nav_header {
    flex: 1 0 auto;
}svg {
    height: 30px;
    width: 30px;
}.container {
    margin: auto;
    width: 1275px;
    max-width: 100%;
}.lecture_ref {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.company_info {
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}.company_info::before {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    background: linear-gradient(135deg, rgb(168,201,179,0.5), rgba(0, 0, 0, 0.5) 70%);
    content: "";
    height: 100%;
    left: 0;
}.company_info::after {
    right: -50px;
    opacity: 0.3;
    width: 250px;
    content: "";
    z-index: 1;
    transform: rotate(15deg);
    position: absolute;
    border: 3px solid rgb(182,135,120);
    bottom: -50px;
    height: 250px;
}.company_info .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.company_info .text_panel_wrap {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
    border-left: 4px solid rgb(182,135,120);
    position: relative;
}.company_info .text_panel_wrap::before {
    z-index: -1;
    top: -15px;
    width: 80px;
    background-color: rgb(182,135,120);
    height: 30px;
    left: 30px;
    position: absolute;
    content: "";
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}.company_info h5 {
    opacity: 0;
    position: relative;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(182,135,120);
    display: inline-block;
    animation: slideRight 0.6s ease-out 0.3s forwards;
    transform: translateX(-10px);
    font-size: 22px;
}.company_info h5::after {
    bottom: -5px;
    animation: expandLine 0.6s ease-out 0.9s forwards;
    left: 0;
    background: linear-gradient(to right, rgb(182,135,120), transparent);
    height: 2px;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transform-origin: left;
    width: 100%;
}.company_info p {
    transform: translateY(10px);
    animation: fadeIn 0.6s ease-out 0.6s forwards;
    font-size: calc(14px * 1.2);
    margin: 0 0 20px 0;
    opacity: 0;
}.company_info p b {
    font-size: calc(16px * 1.1);
    position: relative;
    font-weight: 700;
    display: inline-block;
    padding-right: 15px;
    color: #ffffff;
}.company_info p b::after {
    top: 50%;
    background-color: rgb(182,135,120);
    width: 8px;
    position: absolute;
    transform: translateY(-50%);
    height: 8px;
    right: 0;
    content: "";
    border-radius: 50%;
}.company_info ol {
    list-style: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    margin: 0;
    animation: fadeIn 0.8s ease-out 0.9s forwards;
    padding: 0;
}.company_info ol li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    position: relative;
    overflow-y: auto;
    padding-left: 15px;
    font-size: 14px;
    scrollbar-width: thin;
    max-height: 400px;
    line-height: 1.8;
    scrollbar-color: rgb(182,135,120) rgba(255, 255, 255, 0.1);
}.company_info ol li::-webkit-scrollbar {
    width: 6px;
}.company_info ol li::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}.company_info ol li::-webkit-scrollbar-thumb {
    background-color: rgb(182,135,120);
    border-radius: 3px;
}.company_info ol li::before {
    position: absolute;
    left: 0;
    width: 6px;
    transform: rotate(45deg);
    top: 10px;
    height: 6px;
    content: "";
    background-color: rgb(182,135,120);
}

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

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

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

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

@media (max-width: 992px) {.company_info {
    padding: 80px 0;
}.company_info .text_panel_wrap {
    padding: 30px;
}.company_info h5 {
    font-size: calc(22px * 0.9);
    margin-bottom: 10px;
}.company_info p {
    font-size: 14px;
}.company_info ol li {
    max-height: 300px;
}
}

@media (max-width: 768px) {.company_info {
    padding: 60px 0;
}.company_info::after {
    right: -30px;
    height: 150px;
    bottom: -30px;
    width: 150px;
}.company_info .text_panel_wrap {
    padding: 25px 20px;
}.company_info h5 {
    font-size: calc(22px * 0.85);
}.company_info p b {
    font-size: 16px;
}.company_info ol li {
    line-height: 1.7;
    max-height: 250px;
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 576px) {.company_info {
    padding: 50px 0;
}.company_info .text_panel_wrap::before {
    width: 60px;
    left: 20px;
    top: -10px;
}.company_info .text_panel_wrap {
    padding: 20px 15px;
}.company_info h5 {
    letter-spacing: 1px;
    font-size: calc(22px * 0.8);
}.company_info p {
    margin-bottom: 15px;
    font-size: calc(14px * 0.95);
}.company_info ol li {
    max-height: 200px;
    font-size: calc(14px * 0.9);
    line-height: 1.6;
}}.course_fit_for {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgb(231,228,237) 0%, rgb(168,201,179,0.5) 100%);
    position: relative;
    overflow: hidden;
}.course_fit_for::before {
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 500px;
    top: 50%;
    left: 50%;
    width: 500px;
    content: "";
    position: absolute;
}.course_fit_for::after {
    position: absolute;
    border: 4px dotted rgb(168,201,179,0.5);
    top: 50%;
    border-radius: 50%;
    left: 50%;
    content: "";
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 800px;
    animation: rotate-reverse 30s linear infinite;
    height: 800px;
}@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.course_fit_for .story_visual {
    margin: 0 auto;
    border-radius: 25px;
    max-width: 1200px;
    position: relative;
    z-index: 5;
    padding: 2rem;
}.course_fit_for .story_visual::before {
    top: 50%;
    animation: pulse 8s ease-in-out infinite alternate;
    width: 300px;
    filter: blur(50px);
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgb(182,135,120,0.5) 0%, transparent 70%);
    border-radius: 50%;
    height: 300px;
    position: absolute;
    z-index: -1;
    content: "";
}@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

.course_fit_for h3 {
    z-index: 10;
    font-weight: 700;
    position: relative;
    margin-bottom: 4rem;
    color: #ffffff;
    text-align: center;
    font-size: 34px;
}.course_fit_for h3::after {
    bottom: -15px;
    height: 3px;
    position: absolute;
    left: 50%;
    border-radius: 50px;
    background: rgb(168,201,179);
    animation: glow 3s infinite alternate;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgb(168,201,179);
    content: "";
    width: 150px;
}@keyframes glow {
    0% { box-shadow: 0 0 5px rgb(168,201,179); }
    100% { box-shadow: 0 0 20px rgb(168,201,179), 0 0 40px rgb(168,201,179,0.5); }
}

.course_fit_for ul {
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    list-style: none;
    padding: 0;
    gap: 2.5rem;
    display: grid;
    margin: 0;
}.course_fit_for li {
    transition: all 0.4s ease;
    color: #ffffff;
    align-items: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    display: flex;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}.course_fit_for li::before {
    content: "";
    z-index: -1;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}.course_fit_for li::after {
    content: "";
    animation-delay: calc(var(--i, 0) * 1s);
    height: 150%;
    opacity: 0;
    width: 50px;
    animation: data-stream 5s infinite;
    z-index: 0;
    transform: rotate(20deg) translateX(-150px);
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
}.course_fit_for li:nth-child(1) {
    --i: 0;
}.course_fit_for li:nth-child(2) {
    --i: 1;
}.course_fit_for li:nth-child(3) {
    --i: 2;
}.course_fit_for li:nth-child(4) {
    --i: 3;
}.course_fit_for li:nth-child(5) {
    --i: 4;
}.course_fit_for li:nth-child(6) {
    --i: 5;
}.course_fit_for li:nth-child(7) {
    --i: 6;
}.course_fit_for li:nth-child(8) {
    --i: 7;
}.course_fit_for li:nth-child(9) {
    --i: 8;
}.course_fit_for li:nth-child(10) {
    --i: 9;
}@keyframes data-stream {
    0% { transform: rotate(20deg) translateX(-150px); opacity: 0; }
    20% { opacity: 0.5; }
    100% { transform: rotate(20deg) translateX(500px); opacity: 0; }
}

.course_fit_for li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgb(182,135,120);
}.course_fit_for svg {
    transition: all 0.4s ease;
    width: 30px;
    height: 30px;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
}.course_fit_for svg path {
    transition: all 0.4s ease;
    fill: rgb(182,135,120);
}.course_fit_for li:hover svg {
    transform: rotate(15deg);
}.course_fit_for li:hover svg path {
    fill: rgb(168,201,179);
}

@media (max-width: 1200px) {.course_fit_for::before {
    width: 400px;
    height: 400px;
}.course_fit_for::after {
    height: 600px;
    width: 600px;
}
}

@media (max-width: 992px) {.course_fit_for {
    padding: 4rem 1.5rem;
}.course_fit_for ul {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}.course_fit_for li {
    padding: 1.25rem 1.5rem;
}
}

@media (max-width: 768px) {.course_fit_for {
    padding: 3.5rem 1.5rem;
}.course_fit_for ul {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.course_fit_for::before {
    height: 300px;
    width: 300px;
}.course_fit_for::after {
    width: 450px;
    height: 450px;
}.course_fit_for h3 {
    font-size: calc(34px * 0.9);
}
}

@media (max-width: 576px) {.course_fit_for {
    padding: 3rem 1rem;
}.course_fit_for .story_visual {
    padding: 1.5rem 1rem;
}.course_fit_for h3 {
    margin-bottom: 3rem;
    font-size: calc(34px * 0.8);
}.course_fit_for li {
    padding: 1rem 1.25rem;
}.course_fit_for svg {
    margin-right: 1rem;
    width: 25px;
    height: 25px;
}}header {
    overflow: visible;
    position: relative;
    z-index: 100;
    margin-top: 0;
    padding: 0;
    background: linear-gradient(120deg, rgb(168,201,179) 0%, rgb(182,135,120) 100%);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
}header::before {
    right: 2px;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
    content: '';
    left: 2px;
    bottom: 2px;
    position: absolute;
    z-index: -1;
    top: 2px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
}header .site_prime {
    padding: 1.2rem 3rem;
    z-index: 5;
    position: relative;
    justify-content: space-between;
    align-items: center;
    display: flex;
}header .site_main {
    position: relative;
    margin-right: 2rem;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    background: rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.2rem 0.7rem 1rem;
}header .site_main::before {
    left: 3px;
    right: 3px;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    content: '';
    position: absolute;
    z-index: -1;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    bottom: 3px;
    top: 3px;
}header .site_main:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.03);
}header .nav_sitebar {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    display: block;
}header .nav_sitebar img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    max-height: 40px;
}header .top_study {
    display: flex;
    padding: 0;
    z-index: 2;
    list-style: none;
    margin: 0;
    position: relative;
}header .header_lesson {
    position: relative;
    margin: 0 0.5rem;
}header .header_lesson a {
    overflow: hidden;
    clip-path: polygon(
        10px 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        10px 100%,
        0 calc(100% - 10px),
        0 10px
    );
    display: flex;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    justify-content: center;
    padding: 0 1.2rem;
    font-weight: 600;
    position: relative;
    height: 40px;
    border: 1px solid transparent;
    font-size: 12px;
    align-items: center;
}header .header_lesson a::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    height: 100%;
    transition: left 0.7s ease;
    content: '';
    top: 0;
    position: absolute;
    width: 100%;
    left: -100%;
}header .header_lesson a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}header .header_lesson a:hover::before {
    left: 100%;
}header .header_lesson::after {
    content: '';
    background: #ffffff;
    position: absolute;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0;
    transition: width 0.3s ease;
    height: 2px;
    left: 50%;
}header .header_lesson:hover::after {
    width: 80%;
}header .site_prime::before {
    border: 2px solid rgba(255, 255, 255, 0.3);
    height: 40px;
    right: 10px;
    border-bottom: none;
    position: absolute;
    opacity: 0.5;
    content: '';
    top: 10px;
    width: 40px;
    border-right: none;
}header .site_prime::after {
    position: absolute;
    bottom: 10px;
    opacity: 0.5;
    border-top: none;
    width: 40px;
    left: 10px;
    border-left: none;
    height: 40px;
    content: '';
    border: 2px solid rgba(255, 255, 255, 0.3);
}header .nav_header {
    background: rgb(231,228,237);
    position: relative;
    z-index: 1;
    margin-top: -15px;
    padding-top: 2rem;
}@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

header::after {
    content: '';
    position: absolute;
    top: 15px;
    box-shadow: 0 0 10px #ffffff;
    width: 8px;
    right: 15px;
    border-radius: 50%;
    height: 8px;
    background: #ffffff;
    animation: pulse 2s infinite;
}

@media (min-width: 1400px) {header .site_prime {
    margin: 0 auto;
    max-width: 1320px;
}header .header_lesson {
    margin: 0 0.7rem;
}header .header_lesson a {
    padding: 0 1.5rem;
}
}

@media (max-width: 991px) {header {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
}header .site_prime {
    padding: 1rem 2rem;
    flex-wrap: wrap;
}header .site_main {
    margin-bottom: 0;
    margin-right: 0;
}header .top_study {
    flex-basis: 100%;
    margin-top: 1rem;
    justify-content: flex-end;
}header .header_lesson a {
    font-size: calc(12px - 1px);
    padding: 0 1rem;
    height: 35px;
}header .site_prime::before,
    header .site_prime::after {
    display: none;
}.nav_header {
    margin-top: -10px;
}
}

@media (max-width: 767px) {header {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 5px), 
            calc(100% - 5px) 100%, 
            5px 100%, 
            0 calc(100% - 5px)
        );
    padding: 0;
}header .site_prime {
    padding: 0.8rem 1.5rem;
}header .site_main {
    padding: 0.5rem 0.8rem;
    clip-path: polygon(
            0 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% 100%,
            5px 100%,
            0 calc(100% - 5px)
        );
}header .nav_sitebar img {
    max-height: 35px;
}header .top_study {
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    margin-top: 0.8rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}header .top_study::-webkit-scrollbar {
    height: 3px;
}header .top_study::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}header .header_lesson {
    flex: 0 0 auto;
    margin: 0 0.25rem;
}header .header_lesson a {
    font-size: calc(12px - 2px);
    padding: 0 0.8rem;
    white-space: nowrap;
    height: 32px;
    clip-path: polygon(
            5px 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% calc(100% - 5px),
            calc(100% - 5px) 100%,
            5px 100%,
            0 calc(100% - 5px),
            0 5px
        );
}header .header_lesson::after {
    display: none;
}header::after {
    right: 10px;
    top: 10px;
    height: 5px;
    width: 5px;
}.nav_header {
    margin-top: -5px;
}
}

@media (max-width: 479px) {header .site_prime {
    padding: 0.7rem 1.2rem;
}header .site_main {
    padding: 0.4rem 0.6rem;
    max-width: 120px;
}header .header_lesson a {
    font-size: calc(12px - 3px);
    height: 30px;
    padding: 0 0.6rem;
}}.data_insights {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(168,201,179,0.5) 0%, rgb(231,228,237) 50%, rgb(182,135,120,0.5) 100%);
    position: relative;
    z-index: 1;
    padding: 100px 0;
}.data_insights::before {
    opacity: 0.3;
    position: absolute;
    left: 0;
    background: repeating-radial-gradient(
    circle at 10% 20%,
    rgb(168,201,179,0.5) 0%,
    transparent 40%,
    rgb(182,135,120,0.5) 80%
  );
    width: 100%;
    content: "";
    z-index: -1;
    top: 0;
    height: 100%;
}.data_insights .container {
    gap: 60px;
    display: grid;
    position: relative;
    max-width: 1200px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.data_insights .statistics_classes {
    text-align: center;
    grid-row: 1;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}.data_insights .extra_gain {
    margin-bottom: 20px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-size: 43px;
}.data_insights .extra_gain::before {
    border-radius: 10px;
    background: linear-gradient(90deg, transparent, rgb(168,201,179), transparent);
    left: 20%;
    bottom: -15px;
    height: 6px;
    position: absolute;
    content: "";
    width: 60%;
}.data_insights .expert_statistics {
    opacity: 0.8;
    font-size: 17px;
    max-width: 800px;
    color: #ffffff;
    margin: 0 auto;
    line-height: 1.8;
}.data_insights .learn_statistics {
    justify-content: center;
    z-index: 2;
    gap: 0;
    grid-row: 2;
    position: relative;
    flex-wrap: wrap;
    display: flex;
}.data_insights .knowledge_gainsYg1NM {
    max-width: 300px;
    display: flex;
    min-width: 200px;
    flex-direction: column;
    padding: 30px;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    flex: 1;
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}.data_insights .knowledge_gainsYg1NM::before {
    background: rgb(231,228,237);
    z-index: -1;
    top: 0;
    transform: skewY(2deg);
    transform-origin: top right;
    position: absolute;
    transition: transform 0.4s ease;
    left: 0;
    content: "";
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}.data_insights .knowledge_gainsYg1NM:hover::before {
    transform: skewY(-2deg);
}.data_insights .knowledge_gainsYg1NM::after {
    position: absolute;
    width: 3px;
    background: rgb(168,201,179);
    transition: height 0.6s ease;
    height: 0;
    top: 0;
    content: "";
    left: 0;
}.data_insights .knowledge_gainsYg1NM:hover::after {
    height: 100%;
}.data_insights .knowledge_gainsYg1NM:nth-child(2n)::after {
    right: 0;
    left: auto;
    background: rgb(182,135,120);
}.data_insights .knowledge_gainsYg1NM:nth-child(3n)::after {
    transform: translateX(-50%);
    bottom: 0;
    left: 50%;
    height: 3px;
    top: auto;
    transition: width 0.6s ease;
    width: 0;
}.data_insights .knowledge_gainsYg1NM:nth-child(3n):hover::after {
    height: 3px;
    width: 100%;
}.data_insights .knowledge_gainsYg1NM h4 {
    margin-bottom: 15px;
    font-size: calc(31px * 1.8);
    transition: transform 0.3s ease;
    font-weight: 700;
    position: relative;
    color: rgb(168,201,179);
}.data_insights .knowledge_gainsYg1NM:hover h4 {
    transform: scale(1.1);
}.data_insights .knowledge_gainsYg1NM:nth-child(2n) h4 {
    color: rgb(182,135,120);
}.data_insights .knowledge_gainsYg1NM span {
    text-align: center;
    max-width: 100%;
    font-weight: 400;
    transition: transform 0.3s ease 0.1s;
    opacity: 0.9;
    font-size: 17px;
    position: relative;
    color: #000000;
}.data_insights .knowledge_gainsYg1NM:hover span {
    transform: translateY(5px);
}.data_insights .knowledge_gainsYg1NM:nth-child(odd) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}.data_insights .knowledge_gainsYg1NM:nth-child(even) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}.data_insights svg {
    transition: all 0.3s ease;
    opacity: 0.5;
    width: 30px;
    position: absolute;
    height: 30px;
    fill: rgb(168,201,179);
    right: 20px;
    top: 20px;
}.data_insights .knowledge_gainsYg1NM:hover svg {
    opacity: 1;
    transform: rotate(15deg);
}.data_insights svg path {
    transition: fill 0.3s ease;
    fill: rgb(168,201,179);
}.data_insights .knowledge_gainsYg1NM:nth-child(2n) svg path {
    fill: rgb(182,135,120);
}.data_insights .learn_statistics::before {
    width: 0;
    pointer-events: none;
    height: 0;
    position: absolute;
    content: "";
    z-index: 3;
}

@media (max-width: 992px) {.data_insights {
    padding: 70px 0;
}.data_insights .learn_statistics {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}.data_insights .knowledge_gainsYg1NM {
    height: 250px;
    min-width: 0;
    max-width: none;
}
}

@media (max-width: 768px) {.data_insights {
    padding: 60px 0;
}.data_insights .extra_gain {
    font-size: calc(31px * 1.2);
}.data_insights .learn_statistics {
    grid-template-columns: 1fr;
}.data_insights .knowledge_gainsYg1NM {
    height: 200px;
}.data_insights .knowledge_gainsYg1NM h4 {
    font-size: calc(31px * 1.5);
}
}

@media (max-width: 576px) {.data_insights {
    padding: 50px 0;
}.data_insights .container {
    gap: 40px;
    padding: 0 15px;
}.data_insights .extra_gain {
    font-size: 31px;
}.data_insights .expert_statistics {
    font-size: calc(17px * 0.9);
}.data_insights .knowledge_gainsYg1NM {
    padding: 20px;
    height: 180px;
}.data_insights .knowledge_gainsYg1NM h4 {
    font-size: calc(31px * 1.3);
}.data_insights .knowledge_gainsYg1NM span {
    font-size: calc(17px * 0.9);
}}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.data_insights .knowledge_gainsYg1NM {
    opacity: 0;
    animation: floatIn 0.5s ease forwards;
}.data_insights .knowledge_gainsYg1NM:nth-child(1) {
    animation-delay: 0.1s;
}.data_insights .knowledge_gainsYg1NM:nth-child(2) {
    animation-delay: 0.2s;
}.data_insights .knowledge_gainsYg1NM:nth-child(3) {
    animation-delay: 0.3s;
}.data_insights .knowledge_gainsYg1NM:nth-child(4) {
    animation-delay: 0.4s;
}.data_insights::after {
    width: 100%;
    left: 0;
    content: "";
    z-index: -1;
    bottom: 0;
    position: absolute;
    height: 0;
    pointer-events: none;
}.data_insights .container::after {
    z-index: -1;
    border-radius: 50%;
    right: -50px;
    background: rgb(168,201,179,0.5);
    filter: blur(100px);
    position: absolute;
    top: -50px;
    content: "";
    width: 200px;
    height: 200px;
    animation: pulse 8s infinite alternate;
}@keyframes pulse {
  0% {
    opacity: 0.1;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}.tyNote {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(168,201,179,0.5) 0%, rgb(231,228,237) 100%);
    padding: 120px 0 80px;
}.tyNote::before {
    position: absolute;
    z-index: 1;
    top: 0;
    height: 100%;
    content: "";
    left: 0;
    width: 100%;
    opacity: 0.7;
    animation: pulse 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at 70% 30%, rgb(182,135,120,0.5) 0%, transparent 60%);
}.tyNote::after {
    right: -50px;
    height: 300px;
    content: "";
    z-index: 0;
    filter: blur(40px);
    background: linear-gradient(225deg, rgb(168,201,179) 0%, transparent 70%);
    width: 300px;
    opacity: 0.2;
    position: absolute;
    bottom: -50px;
}.tyNote .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
}.tyNote .story_visual {
    background: #ffffff;
    position: relative;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 60px 40px;
    display: flex;
}.tyNote .story_visual::before {
    top: 0;
    background: linear-gradient(to bottom, rgb(168,201,179), rgb(182,135,120));
    transform: scaleY(1.02);
    left: 0;
    position: absolute;
    width: 5px;
    height: 100%;
    content: "";
}.tyNote .story_visual::after {
    top: -15px;
    position: absolute;
    transform: rotate(15deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    height: 80px;
    width: 80px;
    right: 40px;
    background: rgb(182,135,120,0.5);
    z-index: -1;
    animation: float 8s infinite ease-in-out;
    content: "";
}.tyNote .story_visual:hover {
    transform: perspective(1000px) rotateY(0deg);
}.tyNote h5 {
    margin-bottom: 30px;
    font-size: 18px;
    padding-bottom: 20px;
    line-height: 1.4;
    position: relative;
    font-weight: 700;
    color: #000000;
}.tyNote h5::after {
    height: 3px;
    bottom: 0;
    background: linear-gradient(90deg, rgb(168,201,179), rgb(182,135,120));
    content: "";
    width: 80px;
    transition: width 0.3s ease;
    left: 0;
    position: absolute;
}.tyNote .story_visual:hover h5::after {
    width: 120px;
}.tyNote p {
    line-height: 1.8;
    font-size: 12px;
    z-index: 2;
    transition: color 0.3s ease;
    color: #000000;
    margin-bottom: 0;
    position: relative;
}.tyNote a {
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 5px 0;
    display: block;
}.tyNote a::before {
    background: linear-gradient(90deg, rgb(168,201,179,0.5), transparent);
    left: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    content: "";
    transform: scaleX(0);
    height: 1px;
    position: absolute;
    bottom: 0;
    transform-origin: left;
    width: 100%;
}.tyNote a:hover::before {
    transform: scaleX(1);
}.tyNote a:hover p {
    color: rgb(168,201,179);
}

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

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

@media (min-width: 768px) {.tyNote {
    padding: 140px 0 100px;
}.tyNote .story_visual {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}.tyNote h5 {
    font-size: calc(18px * 1.2);
    margin-bottom: 40px;
    padding-bottom: 25px;
}.tyNote p {
    font-size: calc(12px * 1.05);
    line-height: 1.9;
}.tyNote .story_visual::after {
    right: 60px;
    height: 100px;
    width: 100px;
}
}

@media (min-width: 992px) {.tyNote {
    padding: 160px 0 120px;
}.tyNote .story_visual {
    margin: 0 auto;
    padding: 100px 80px;
    max-width: 1000px;
    transform: perspective(1200px) rotateY(-3deg);
}.tyNote .story_visual::before {
    width: 8px;
}.tyNote h5 {
    max-width: 80%;
    font-size: calc(18px * 1.3);
}.tyNote p {
    max-width: 90%;
}.tyNote .story_visual::after {
    top: -20px;
    width: 120px;
    right: 80px;
    height: 120px;
}
}

@media (max-width: 767px) {.tyNote {
    padding: 80px 0 60px;
}.tyNote .story_visual {
    transform: perspective(800px) rotateY(-1deg);
    padding: 40px 25px;
}.tyNote h5 {
    font-size: calc(18px * 0.9);
    padding-bottom: 15px;
    margin-bottom: 25px;
}.tyNote p {
    line-height: 1.7;
    font-size: calc(12px * 0.95);
}.tyNote .story_visual::before {
    width: 3px;
}.tyNote .story_visual::after {
    width: 60px;
    height: 60px;
    right: 20px;
    top: -10px;
}
}

@media (max-width: 480px) {.tyNote {
    padding: 60px 0 40px;
}.tyNote .story_visual {
    transform: none;
    padding: 30px 20px;
}.tyNote h5 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: calc(18px * 0.85);
}.tyNote .story_visual::after {
    display: none;
}}.instructor_profile {
    min-height: 700px;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgb(231,228,237) 0%, #000000 100%);
}.instructor_profile::before {
    left: 0;
    content: "";
    height: 100%;
    position: absolute;
    animation: breatheGlow 15s ease-in-out infinite alternate;
    top: 0;
    width: 100%;
    opacity: 0.4;
    z-index: 1;
    background: 
        radial-gradient(circle at 80% 20%, rgb(168,201,179,0.5) 0%, transparent 35%),
        radial-gradient(circle at 20% 80%, rgb(182,135,120,0.5) 0%, transparent 35%);
    filter: blur(70px);
}.instructor_profile .container {
    margin: 0 auto;
    z-index: 2;
    padding: 0 2rem;
    position: relative;
    max-width: 1200px;
}.instructor_profile .rating_insights {
    display: grid;
    padding: 3rem;
    grid-template-rows: auto 1fr;
    min-height: 580px;
    grid-template-columns: 1.2fr 0.8fr;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    overflow: hidden;
    border-radius: 25px;
    gap: 30px;
    backdrop-filter: blur(15px);
}.instructor_profile .rating_insights::before {
    opacity: 0.2;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgb(168,201,179,0.5), transparent);
    width: 100%;
    left: 0;
    content: "";
    position: absolute;
    animation: shimmerEffect 10s ease-in-out infinite;
    top: 0;
    background-size: 200% 200%;
    z-index: -1;
}.instructor_profile .img_fit {
    height: 100%;
    grid-column: 2;
    border-radius: 25px;
    grid-row: 1 / span 2;
    filter: contrast(1.1) brightness(1.05);
    position: relative;
    z-index: 3;
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    transform: scale(1) rotate(0deg);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
}.instructor_profile .rating_insights:hover .img_fit {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.5);
}.instructor_profile .img_fit::before {
    left: 0;
    height: 100%;
    box-sizing: border-box;
    content: "";
    top: 0;
    width: 100%;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    border-radius: inherit;
}.instructor_profile .name {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    grid-row: 1;
    position: relative;
    z-index: 4;
    grid-column: 1;
    font-size: 34px;
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}.instructor_profile .rating_insights:hover .name {
    transform: translateX(10px);
}.instructor_profile .name::after {
    height: 3px;
    width: 0;
    position: absolute;
    bottom: -10px;
    content: "";
    left: 0;
    transition: width 0.6s ease;
    background: linear-gradient(90deg, rgb(168,201,179), rgb(182,135,120));
}.instructor_profile .rating_insights:hover .name::after {
    width: 120px;
}.instructor_profile .rating_insights span:not(.name) {
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    margin-top: 4rem;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    width: max-content;
    color: rgb(182,135,120);
    font-size: 18px;
    transform: translateX(0);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    grid-row: 1;
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    grid-column: 1;
}.instructor_profile .rating_insights:hover span:not(.name) {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.3);
}.instructor_profile .exp_flex {
    backdrop-filter: blur(10px);
    font-size: 15px;
    border-left: 4px solid rgb(182,135,120);
    padding: 2rem;
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    color: #ffffff;
    grid-column: 1;
    overflow: hidden;
    grid-row: 2;
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
    position: relative;
    border-radius: 25px;
}.instructor_profile .rating_insights:hover .exp_flex {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}.instructor_profile .exp_flex::before {
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    animation: shimmerEffect 5s ease-in-out infinite;
    background-size: 200% 200%;
}.instructor_profile .container::after {
    height: 400px;
    animation: rotateGlow 25s linear infinite;
    border-radius: 50%;
    left: -200px;
    z-index: -1;
    content: "";
    width: 400px;
    bottom: -200px;
    position: absolute;
    filter: blur(80px);
    opacity: 0.2;
    background: conic-gradient(from 135deg, rgb(168,201,179,0.5) 0%, rgb(182,135,120,0.5) 50%, rgb(168,201,179,0.5) 100%);
}

@keyframes breatheGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmerEffect {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {.instructor_profile .rating_insights {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    padding: 2rem;
}.instructor_profile .img_fit {
    grid-row: 1;
    grid-column: 1;
    height: 350px;
}.instructor_profile .name {
    margin: 0;
    grid-row: 2;
    grid-column: 1;
}.instructor_profile .rating_insights span:not(.name) {
    grid-row: 2;
    margin-top: 3.5rem;
    grid-column: 1;
}.instructor_profile .exp_flex {
    grid-column: 1;
    grid-row: 3;
}.instructor_profile .rating_insights:hover .name,
    .instructor_profile .rating_insights:hover span:not(.name) {
    transform: translateY(-5px);
}
}

@media (max-width: 576px) {.instructor_profile {
    padding: 5rem 0;
}.instructor_profile .rating_insights {
    padding: 1.5rem;
}.instructor_profile .img_fit {
    height: 250px;
}.instructor_profile .name {
    font-size: 18px;
}.instructor_profile .rating_insights span:not(.name) {
    padding: 0.6rem 1rem;
    margin-top: 3rem;
    font-size: 15px;
}.instructor_profile .exp_flex {
    font-size: calc(15px * 0.9);
    line-height: 1.6;
    padding: 1.5rem;
}}.privacy_enclosure {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    padding: 60px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    background: rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}.privacy_enclosure h1 {
    margin-bottom: 30px;
    color: rgb(168,201,179);
    padding-bottom: 10px;
    margin-top: 20px;
    border-bottom: 4px solid rgb(168,201,179);
    font-weight: 700;
    font-size: 45px;
}.privacy_enclosure h2 {
    color: rgb(182,135,120);
    margin-top: 30px;
    font-weight: 600;
    border-left: 6px solid rgb(182,135,120);
    font-size: 29px;
    margin-bottom: 20px;
    padding-left: 20px;
}.privacy_enclosure ul {
    margin: 20px 0;
    padding-left: 0;
    list-style-type: none;
}.privacy_enclosure ul li::before {
    width: 1em;
    margin-left: -1em;
    display: inline-block;
    content: "•";
    color: rgb(168,201,179);
    font-size: 1.5em;
}.privacy_enclosure li {
    margin-bottom: 15px;
    padding-left: 10px;
    font-size: 15px;
    line-height: 1.8;
    border-left: 2px solid rgb(168,201,179,0.5);
}.privacy_enclosure p, .privacy_enclosure span, .privacy_enclosure div {
    color: #ffffff;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}.privacy_enclosure h3, .privacy_enclosure h4, .privacy_enclosure h5, .privacy_enclosure h6 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
    margin-top: 25px;
    padding-left: 15px;
    border-left: 5px solid rgb(168,201,179);
    color: rgb(168,201,179);
}

@media only screen and (max-width: 800px) {.privacy_enclosure {
    padding: 30px;
}.privacy_enclosure h1 {
    font-size: calc(20px - 4px);
}.privacy_enclosure h2 {
    font-size: calc(20px - 3px);
}.privacy_enclosure h3, .privacy_enclosure h4, .privacy_enclosure h5, .privacy_enclosure h6 {
    font-size: calc(20px - 2px);
}.privacy_enclosure p, .privacy_enclosure span, .privacy_enclosure div, .privacy_enclosure li {
    font-size: calc(15px - 2px);
}}.lecture_ref {
    padding: 5rem 0 2rem;
    font-family: Arial, sans-serif;
    background-color: rgb(231,228,237);
    color: #000000;
    position: relative;
}.lecture_ref::before {
    content: '';
    left: 0;
    height: 250px;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgb(168,201,179,0.5) 100%);
    z-index: 0;
    position: absolute;
    bottom: 0;
    opacity: 0.05;
}.lecture_ref .container {
    position: relative;
    z-index: 1;
}.lecture_ref .trust_badge {
    flex-direction: column;
    gap: 4rem;
    display: flex;
}.lecture_ref .query_form {
    padding-bottom: 2.5rem;
    position: relative;
    gap: 1.5rem;
    display: grid;
    border-bottom: 1px solid rgb(182,135,120,0.5);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}.lecture_ref .query_form::after {
    height: 3px;
    background-color: rgb(168,201,179);
    width: 60px;
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
}.lecture_ref .info_item {
    transition: transform 0.3s ease-out;
    padding: 0.5rem;
}.lecture_ref .info_item:hover {
    transform: translateX(5px);
}.lecture_ref .info_item p,
.lecture_ref .info_item a {
    transition: color 0.3s ease;
    gap: 0.75rem;
    display: flex;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    align-items: center;
    text-decoration: none;
}.lecture_ref .info_item a:hover {
    color: rgb(168,201,179);
}.lecture_ref .info_item svg {
    flex-shrink: 0;
    width: 20px;
    fill: rgb(168,201,179);
    height: 20px;
}.lecture_ref .text_main_holder {
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 3rem;
    display: grid;
}.lecture_ref .site_main {
    gap: 1.25rem;
    flex-direction: column;
    display: flex;
}.lecture_ref .site_main svg {
    max-width: 160px;
    transition: opacity 0.3s ease;
    height: auto;
}.lecture_ref .site_main svg:hover {
    opacity: 0.8;
}.lecture_ref .rating_stars {
    opacity: 0.8;
    max-width: 300px;
    line-height: 1.6;
    color: #000000;
    font-size: 14px;
}.lecture_ref .top_study {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}.lecture_ref .top_study h5 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    color: #000000;
}.lecture_ref .head_guide {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}.lecture_ref .head_guide a {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
    position: relative;
}.lecture_ref .head_guide a::before {
    transform: translateY(-50%);
    content: '';
    top: 50%;
    width: 0;
    position: absolute;
    background-color: rgb(168,201,179);
    transition: width 0.3s ease, left 0.3s ease;
    height: 1px;
    left: -10px;
}.lecture_ref .head_guide a:hover {
    padding-left: 12px;
    color: rgb(168,201,179);
}.lecture_ref .head_guide a:hover::before {
    left: 0;
    width: 10px;
}.lecture_ref .subscribe_holder {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    gap: 1.5rem;
    border-radius: 19px;
    padding: 2rem;
}.lecture_ref .subscribe_holder h5 {
    font-weight: 600;
    color: #000000;
    font-size: 18px;
}.lecture_ref .subscribe_holder p {
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
}.lecture_ref .input_holder {
    display: flex;
    gap: 0.5rem;
    position: relative;
}.lecture_ref .input_holder input[type="email"] {
    color: #000000;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    padding: 1rem 1.25rem;
    font-size: 12px;
    border: 1px solid rgb(182,135,120,0.5);
    border-radius: 10px;
    flex: 1;
}.lecture_ref .input_holder input[type="email"]:focus {
    border-color: rgb(168,201,179);
    box-shadow: 0 0 0 3px rgb(168,201,179,0.5);
    outline: none;
}.lecture_ref .input_holder input[type="email"]::placeholder {
    color: #000000;
    opacity: 0.5;
}.lecture_ref .sub_transition {
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    background-color: rgb(168,201,179);
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
}.lecture_ref .sub_transition:hover {
    background-color: rgb(182,135,120);
    transform: translateY(-2px);
}.lecture_ref .affiliate_cta {
    padding-top: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgb(182,135,120,0.5);
}.lecture_ref .skill_links {
    font-size: 14px;
    color: #000000;
    opacity: 0.8;
}.lecture_ref .head_guide:first-child {
    margin-bottom: 1.5rem;
    position: relative;
}.lecture_ref .head_guide:first-child::after {
    left: 0;
    content: '';
    background-color: rgb(182,135,120,0.5);
    width: 30px;
    height: 1px;
    position: absolute;
    bottom: -0.75rem;
}.lecture_ref {
    background-blend-mode: overlay;
    background-image: 
        linear-gradient(rgb(182,135,120,0.5) 1px, transparent 1px),
        linear-gradient(to right, rgb(182,135,120,0.5) 1px, transparent 1px);
    background-position: center;
    background-size: 40px 40px;
    background-repeat: repeat;
    background-attachment: fixed;
}

@media (max-width: 1024px) {.lecture_ref {
    padding: 4rem 0 2rem;
}.lecture_ref .text_main_holder {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}.lecture_ref .subscribe_holder {
    grid-column: span 2;
}
}

@media (max-width: 768px) {.lecture_ref {
    padding: 3.5rem 0 1.5rem;
}.lecture_ref .text_main_holder {
    gap: 3rem;
    grid-template-columns: 1fr;
}.lecture_ref .subscribe_holder {
    grid-column: auto;
}.lecture_ref .query_form {
    grid-template-columns: 1fr 1fr;
}.lecture_ref .info_item:hover {
    transform: translateX(0) translateY(-5px);
}
}

@media (max-width: 576px) {.lecture_ref {
    padding: 3rem 0 1.5rem;
}.lecture_ref .query_form {
    grid-template-columns: 1fr;
}.lecture_ref .input_holder {
    flex-direction: column;
}.lecture_ref .sub_transition {
    width: 100%;
}.lecture_ref .site_main,
    .lecture_ref .top_study h5,
    .lecture_ref .head_guide,
    .lecture_ref .head_guide a {
    text-align: center;
    align-items: center;
}.lecture_ref .site_main svg {
    margin: 0 auto;
}.lecture_ref .rating_stars {
    max-width: 100%;
    text-align: center;
}.lecture_ref .head_guide:first-child::after {
    left: 50%;
    transform: translateX(-50%);
}.lecture_ref .query_form::after {
    transform: translateX(-50%);
    left: 50%;
}.lecture_ref .head_guide a::before {
    display: none;
}.lecture_ref .head_guide a:hover {
    padding-left: 0;
}}.client_opinions {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(145deg, rgb(231,228,237), rgba(245, 248, 252, 0.7));
}.client_opinions::before {
    top: 0;
    left: 0;
    position: absolute;
    background: radial-gradient(circle at 70% 30%, rgba(rgb(168,201,179,0.5), 0.05), transparent 60%);
    content: "";
    z-index: 0;
    width: 100%;
    height: 100%;
}.client_opinions::after {
    right: -50px;
    position: absolute;
    bottom: -50px;
    filter: blur(40px);
    content: "";
    border-radius: 50%;
    z-index: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(rgb(182,135,120,0.5), 0.05), rgba(rgb(168,201,179,0.5), 0.08));
    width: 300px;
}.client_opinions .container {
    position: relative;
    z-index: 1;
}.client_opinions h2 {
    font-weight: 700;
    position: relative;
    transform: perspective(1000px) rotateX(0deg);
    color: #000000;
    margin-bottom: 60px;
    text-align: center;
    transition: transform 0.5s ease;
    font-size: 33px;
}.client_opinions h2::after {
    height: 3px;
    background: linear-gradient(90deg, rgb(168,201,179), rgb(182,135,120));
    left: 50%;
    bottom: -15px;
    box-shadow: 0 5px 15px rgba(rgb(168,201,179,0.5), 0.2);
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
    content: "";
}.client_opinions .review_highlights {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
    list-style: none;
    padding: 0;
    display: grid;
}.client_opinions .rating_insights {
    overflow: hidden;
    padding: 30px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.03), -12px -12px 24px rgba(255, 255, 255, 0.9);
    background: #ffffff;
    border-radius: 15px;
}.client_opinions .rating_insights::before {
    position: absolute;
    line-height: 1;
    content: "";
    top: 10px;
    z-index: 0;
    font-size: 120px;
    color: rgba(rgb(182,135,120,0.5), 0.06);
    font-family: serif;
    right: 20px;
}.client_opinions .rating_insights:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.05), -15px -15px 30px rgba(255, 255, 255, 1);
    transform: translateY(-8px);
}.client_opinions .rating_insights div {
    align-items: center;
    position: relative;
    display: flex;
    margin-bottom: 15px;
    z-index: 1;
}.client_opinions .rating_insights img {
    object-fit: cover;
    width: 60px;
    border: 3px solid #ffffff;
    margin-right: 15px;
    height: 60px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.client_opinions .rating_insights:hover img {
    transform: scale(1.05);
}.client_opinions .rating_insights h4 {
    font-size: calc(19px - 2px);
    color: #000000;
    font-weight: 600;
    position: relative;
    margin: 0;
}.client_opinions .rating_insights h4::after {
    bottom: -5px;
    background: linear-gradient(90deg, rgb(168,201,179), transparent);
    position: absolute;
    content: "";
    height: 2px;
    transition: width 0.4s ease;
    left: 0;
    width: 0;
}.client_opinions .rating_insights:hover h4::after {
    width: 100%;
}.client_opinions .rating_insights .description {
    color: #000000;
    margin: 0;
    font-size: 12px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}.client_opinions .rating_insights:nth-child(odd) {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}.client_opinions .rating_insights:nth-child(even) {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
}.client_opinions a {
    z-index: 1;
    margin: 40px auto 0;
    width: fit-content;
    background: linear-gradient(135deg, rgb(168,201,179), rgb(182,135,120));
    overflow: hidden;
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(rgb(168,201,179,0.5), 0.2);
    display: block;
    font-weight: 600;
    position: relative;
}.client_opinions a::before {
    width: 100%;
    left: -100%;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
    content: "";
    z-index: -1;
    transition: left 0.7s ease;
    position: absolute;
}.client_opinions a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(rgb(168,201,179,0.5), 0.3);
}.client_opinions a:hover::before {
    left: 100%;
}

@media (min-width: 1200px) {.client_opinions .review_highlights {
    grid-template-columns: repeat(4, 1fr);
}.client_opinions h2 {
    font-size: calc(33px + 4px);
}.client_opinions .story_visual {
    max-width: 1200px;
    margin: 0 auto;
}
}

@media (min-width: 992px) and (max-width: 1199px) {.client_opinions .review_highlights {
    grid-template-columns: repeat(3, 1fr);
}.client_opinions {
    padding: 100px 0;
}
}

@media (min-width: 768px) and (max-width: 991px) {.client_opinions .review_highlights {
    grid-template-columns: repeat(2, 1fr);
}.client_opinions {
    padding: 80px 0;
}.client_opinions h2 {
    margin-bottom: 50px;
}
}

@media (max-width: 767px) {.client_opinions {
    padding: 60px 0;
}.client_opinions .review_highlights {
    grid-template-columns: 1fr;
}.client_opinions h2 {
    margin-bottom: 40px;
    font-size: calc(33px - 2px);
}.client_opinions .rating_insights {
    padding: 25px 20px;
}.client_opinions .rating_insights img {
    width: 50px;
    height: 50px;
}.client_opinions a {
    padding: 10px 25px;
    margin-top: 30px;
}
}

@media (max-width: 480px) {.client_opinions {
    padding: 50px 0;
}.client_opinions h2 {
    font-size: calc(33px - 4px);
}.client_opinions .rating_insights {
    padding: 20px 15px;
}
}

@supports (backdrop-filter: blur(10px)) {.client_opinions .rating_insights {
    backdrop-filter: blur(10px) saturate(150%);
    background: rgba(255, 255, 255, 0.8);
}.client_opinions .rating_insights:hover {
    backdrop-filter: blur(15px) saturate(180%);
}
}

@media (prefers-reduced-motion: reduce) {.client_opinions .rating_insights,
  .client_opinions a,
  .client_opinions a::before,
  .client_opinions .rating_insights img,
  .client_opinions .rating_insights h4::after {
    transition: none;
}
}

@container (min-width: 350px) {.client_opinions .rating_insights .description {
    font-size: calc(12px + 1px);
    line-height: 1.7;
}}.course_program {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(231,228,237) 0%, #ffffff 65%, rgb(168,201,179,0.5) 100%);
}.course_program::before {
    position: absolute;
    width: 100%;
    background: radial-gradient(circle at 20% 30%, rgb(182,135,120,0.5) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    top: 0;
    content: "";
    left: 0;
    height: 100%;
}.course_program::after {
    z-index: 0;
    content: "";
    height: 240px;
    position: absolute;
    opacity: 0.07;
    background: linear-gradient(225deg, rgb(168,201,179) 0%, rgb(182,135,120) 100%);
    transform: rotate(15deg);
    width: 240px;
    bottom: -20px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    right: -20px;
}.course_program .container {
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}.course_program h2 {
    color: #000000;
    margin-bottom: 3.5rem;
    transform: translateX(-0.5rem);
    position: relative;
    font-weight: 700;
    max-width: 85%;
    font-size: 29px;
}.course_program h2::after {
    background: linear-gradient(90deg, rgb(168,201,179) 0%, rgb(182,135,120) 100%);
    left: 0;
    height: 0.25rem;
    content: "";
    bottom: -1rem;
    position: absolute;
    width: 8rem;
}.course_program .study_track {
    grid-template-columns: 1fr;
    display: grid;
    gap: 3rem;
    position: relative;
}.course_program .img_fit {
    transform: perspective(1000px) rotateY(-2deg);
    overflow: hidden;
    border-radius: 0.5rem;
    height: 400px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}.course_program .img_fit::before {
    width: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    left: 0;
    height: 100%;
    z-index: 1;
    content: "";
    top: 0;
}.course_program .img_fit:hover {
    transform: perspective(1000px) rotateY(0deg);
}.course_program .text_panel_wrap {
    scrollbar-width: thin;
    padding-right: 1.5rem;
    overflow-y: auto;
    position: relative;
    max-height: 400px;
}.course_program .text_panel_wrap::-webkit-scrollbar {
    width: 4px;
}.course_program .text_panel_wrap::-webkit-scrollbar-track {
    background: rgb(255, 255, 255, 0.5);
}.course_program .text_panel_wrap::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(168,201,179,0.5);
}.course_program .description {
    line-height: 1.8;
    position: relative;
    font-size: 12px;
    color: #000000;
    font-family: Arial, sans-serif;
    margin-bottom: 1.5rem;
}.course_program .description:first-of-type::first-letter {
    font-size: 3.5em;
    font-weight: 700;
    padding: 0.1em 0.1em 0 0;
    line-height: 0.8;
    margin-right: 0.1em;
    float: left;
    color: rgb(168,201,179);
}.course_program .description:last-of-type {
    padding-left: 1.5rem;
    position: relative;
    border-left: 3px solid rgb(182,135,120,0.5);
}

@media (min-width: 768px) {.course_program {
    padding: 8rem 0;
}.course_program h2 {
    max-width: 75%;
    margin-bottom: 4rem;
    font-size: calc(29px * 1.1);
}.course_program h2::after {
    width: 12rem;
}.course_program .study_track {
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}.course_program .img_fit {
    height: 500px;
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
}.course_program .text_panel_wrap {
    max-height: 500px;
}
}

@media (min-width: 992px) {.course_program {
    padding: 10rem 0;
}.course_program::before {
    background: radial-gradient(circle at 20% 30%, rgb(182,135,120,0.5) 0%, transparent 70%);
}.course_program h2 {
    max-width: 70%;
    font-size: calc(29px * 1.2);
}.course_program .study_track {
    gap: 5rem;
}.course_program .img_fit {
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
    height: 600px;
}.course_program .text_panel_wrap {
    padding-top: 2rem;
    max-height: 600px;
}.course_program .description {
    font-size: calc(12px * 1.05);
    line-height: 1.9;
}
}

@media (min-width: 1200px) {.course_program .container {
    padding: 0 2rem;
}.course_program h2 {
    max-width: 65%;
    font-size: calc(29px * 1.3);
    transform: translateX(-1rem);
}.course_program .study_track {
    gap: 6rem;
}.course_program .img_fit {
    transform: perspective(1200px) rotateY(-8deg) translateZ(0);
}.course_program .img_fit:hover {
    transform: perspective(1200px) rotateY(-3deg) translateZ(0) scale(1.02);
}
}

@media (max-width: 767px) {.course_program {
    padding: 4rem 0;
}.course_program h2 {
    font-size: calc(29px * 0.9);
    max-width: 100%;
    margin-bottom: 2.5rem;
}.course_program h2::after {
    height: 0.2rem;
    width: 6rem;
}.course_program .img_fit {
    height: 300px;
}.course_program .text_panel_wrap {
    max-height: 350px;
}.course_program .description {
    line-height: 1.7;
    font-size: calc(12px * 0.95);
}}.learning_outcomes {
    padding: 90px 0;
    background: linear-gradient(120deg, rgb(231,228,237) 30%, rgb(168,201,179,0.5) 100%);
    position: relative;
    overflow: hidden;
}.learning_outcomes::before {
    opacity: 0.4;
    background: radial-gradient(circle at 70% 30%, rgb(182,135,120,0.5) 0%, transparent 60%);
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
}.learning_outcomes .container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.learning_outcomes .story_visual {
    gap: 40px;
    display: flex;
    align-items: center;
}.learning_outcomes .img_fit {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
    flex: 0 0 45%;
    border-radius: 30% 10% 30% 10%;
    transition: all 0.5s ease;
    max-width: 45%;
    position: relative;
    transform: translateY(-10px);
}.learning_outcomes .img_fit::after {
    bottom: -20px;
    right: -20px;
    border-radius: 30% 10% 30% 10%;
    z-index: -1;
    position: absolute;
    border: 3px solid rgb(168,201,179,0.5);
    left: 20px;
    content: "";
    top: 20px;
}.learning_outcomes .img_fit:hover {
    transform: translateY(0);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15);
}.learning_outcomes .text_panel_wrap {
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 35px;
    border-radius: 20px;
    background: #ffffff;
    flex: 0 0 50%;
    z-index: 1;
}.learning_outcomes .text_panel_wrap::before {
    position: absolute;
    border-radius: 10px;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgb(168,201,179), rgb(182,135,120));
    height: 100%;
    width: 6px;
}.learning_outcomes h3 {
    padding-left: 15px;
    font-weight: 700;
    font-size: 34px;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
}.learning_outcomes h3::after {
    border-radius: 10px;
    position: absolute;
    width: 80px;
    bottom: -12px;
    left: 15px;
    background: rgb(168,201,179);
    height: 3px;
    content: "";
}.learning_outcomes ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0 0 0 15px;
    margin: 0;
    flex-direction: column;
}.learning_outcomes li {
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 15px;
    background: linear-gradient(90deg, #ffffff, rgb(231,228,237) 180%);
}.learning_outcomes li:hover {
    transform: translateX(10px);
    background: linear-gradient(90deg, #ffffff, rgb(182,135,120,0.5) 180%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}.learning_outcomes li p {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
}.learning_outcomes svg {
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 5px;
    height: 24px;
    flex-shrink: 0;
    width: 24px;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    align-items: center;
}.learning_outcomes svg path {
    fill: rgb(168,201,179);
    transition: fill 0.3s ease;
}.learning_outcomes li:hover svg {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}.learning_outcomes li:hover svg path {
    fill: rgb(182,135,120);
}

@media (max-width: 992px) {.learning_outcomes {
    padding: 70px 0;
}.learning_outcomes .story_visual {
    gap: 40px;
    flex-direction: column;
}.learning_outcomes .img_fit {
    margin: 0 auto;
    flex: none;
    max-width: 70%;
}.learning_outcomes .text_panel_wrap {
    width: 90%;
    margin: 0 auto;
    flex: none;
}.learning_outcomes .text_panel_wrap::before {
    top: 0;
    width: 100%;
    left: 0;
    height: 6px;
}
}

@media (max-width: 576px) {.learning_outcomes {
    padding: 50px 0;
}.learning_outcomes .img_fit {
    max-width: 90%;
}.learning_outcomes .img_fit::after {
    display: none;
}.learning_outcomes .text_panel_wrap {
    width: 100%;
    padding: 30px 20px;
}.learning_outcomes h3 {
    font-size: 22px;
    margin-bottom: 25px;
}.learning_outcomes ul {
    gap: 15px;
}.learning_outcomes li {
    padding: 12px;
}.learning_outcomes svg {
    height: 22px;
    width: 22px;
}}.tariff_row {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    background: rgb(231,228,237);
}.tariff_row::before {
    right: -50px;
    background: rgb(168,201,179,0.5);
    content: "";
    animation: float-effect 12s infinite alternate ease-in-out;
    filter: blur(80px);
    top: -50px;
    z-index: 0;
    position: absolute;
    height: 300px;
    width: 300px;
}.tariff_row::after {
    filter: blur(60px);
    bottom: -50px;
    z-index: 0;
    position: absolute;
    background: rgb(182,135,120,0.5);
    content: "";
    left: -50px;
    animation: float-effect 15s infinite alternate-reverse ease-in-out;
    width: 250px;
    height: 250px;
}.tariff_row .container {
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
    position: relative;
    max-width: 1200px;
}.tariff_row .indv_cost {
    gap: 60px;
    display: flex;
    flex-direction: column;
}.tariff_row .pricing_deals {
    position: relative;
    text-align: center;
    padding: 0 20px;
    order: -1;
    margin: 0 auto;
    max-width: 700px;
}.tariff_row .pricing_deals h2 {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}.tariff_row .pricing_deals h2::after {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    background: rgb(168,201,179);
    content: "";
    bottom: -10px;
    height: 3px;
    width: 80px;
}.tariff_row .program_fees {
    line-height: 1.6;
    font-size: 17px;
    color: #000000;
    opacity: 0.85;
    margin-bottom: 0;
}.tariff_row .training_sub {
    gap: 30px;
    perspective: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.tariff_row .pricing_card {
    transform-style: preserve-3d;
    text-decoration: none;
    height: 100%;
    color: inherit;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    perspective: 1000px;
}.tariff_row .pricing_card:hover {
    transform: translateY(-10px) scale(1.02);
}.tariff_row .pricing_block {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border-radius: 10px;
    height: 100%;
    display: flex;
    transition: box-shadow 0.4s ease;
    transform-style: preserve-3d;
    background: #ffffff;
    overflow: hidden;
    flex-direction: column;
}.tariff_row .pricing_card:hover .pricing_block {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 20px rgb(168,201,179,0.5);
}.tariff_row .edu_deals {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    flex-direction: column;
    overflow: hidden;
    padding: 30px;
    display: flex;
}.tariff_row .edu_deals::before {
    top: 0;
    left: 0;
    height: 5px;
    transform-origin: left;
    right: 0;
    transition: transform 0.5s ease;
    background: linear-gradient(90deg, rgb(168,201,179), rgb(182,135,120));
    position: absolute;
    content: "";
    transform: scaleX(0);
}.tariff_row .pricing_card:hover .edu_deals::before {
    transform: scaleX(1);
}.tariff_row .edu_deals h3 {
    overflow-wrap: break-word;
    font-weight: 700;
    transition: transform 0.4s ease, color 0.3s ease;
    white-space: normal;
    color: #000000;
    word-break: break-word;
    font-size: calc(18px + 2px);
    margin-bottom: 10px;
}.tariff_row .pricing_card:hover .edu_deals h3 {
    transform: translateX(5px);
    color: rgb(168,201,179);
}.tariff_row .cost_matrix {
    white-space: normal;
    font-size: 18px;
    margin: 10px 0 20px;
    transition: transform 0.4s ease;
    display: block;
    position: relative;
    word-break: break-word;
    font-weight: 700;
    overflow-wrap: break-word;
    color: rgb(182,135,120);
}.tariff_row .cost_matrix::before {
    bottom: -8px;
    left: 0;
    width: 40px;
    background: rgb(182,135,120,0.5);
    content: "";
    height: 2px;
    transition: width 0.4s ease;
    position: absolute;
}.tariff_row .pricing_card:hover .cost_matrix::before {
    width: 80px;
}.tariff_row .edu_deals p {
    flex-grow: 1;
    font-size: calc(17px - 1px);
    transition: color 0.3s ease;
    overflow-wrap: break-word;
    line-height: 1.6;
    word-break: break-word;
    color: #000000;
    margin-bottom: 0;
    white-space: normal;
}.tariff_row .img_fit {
    transition: transform 0.6s ease, filter 0.6s ease;
    transform: translateZ(-10px);
    height: 200px;
    position: relative;
    overflow: hidden;
}.tariff_row .img_fit::after {
    transition: opacity 0.5s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.6;
}.tariff_row .pricing_card:hover .img_fit {
    filter: brightness(1.1) contrast(1.05);
    transform: translateZ(0);
}.tariff_row .pricing_card:hover .img_fit::after {
    opacity: 0.4;
}.tariff_row .pricing_card::after {
    top: 100%;
    z-index: -1;
    right: 30px;
    opacity: 0;
    position: absolute;
    transition: opacity 0.4s ease;
    left: 30px;
    height: 15px;
    border-radius: 50%;
    content: "";
    filter: blur(10px);
    background: rgb(168,201,179,0.5);
}.tariff_row .pricing_card:hover::after {
    opacity: 0.5;
}

@keyframes float-effect {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
    100% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}

@media (min-width: 992px) {.tariff_row .indv_cost {
    flex-direction: row;
    align-items: center;
}.tariff_row .pricing_deals {
    order: 0;
    padding-right: 40px;
    text-align: left;
    flex: 0 0 30%;
}.tariff_row .pricing_deals h2::after {
    transform: none;
    left: 0;
}.tariff_row .training_sub {
    flex: 0 0 70%;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {.tariff_row .training_sub {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}.tariff_row .edu_deals {
    padding: 35px;
}.tariff_row .img_fit {
    height: 220px;
}
}

@media (max-width: 991px) {.tariff_row {
    padding: 80px 0;
}.tariff_row .pricing_deals {
    margin-bottom: 20px;
}
}

@media (max-width: 767px) {.tariff_row {
    padding: 60px 0;
}.tariff_row .training_sub {
    gap: 25px;
    grid-template-columns: 1fr;
}.tariff_row .pricing_deals h2 {
    font-size: calc(28px - 4px);
}.tariff_row .img_fit {
    height: 180px;
}.tariff_row .edu_deals {
    padding: 25px;
}
}

@media (max-width: 480px) {.tariff_row {
    padding: 50px 0;
}.tariff_row .edu_deals h3 {
    font-size: 18px;
}.tariff_row .cost_matrix {
    font-size: calc(18px - 2px);
}.tariff_row .img_fit {
    height: 160px;
}.tariff_row .edu_deals {
    padding: 20px;
}}.welcome_section {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 100vh;
    min-height: 650px;
}.welcome_section .learn_begin {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    position: absolute;
    justify-content: flex-start;
}.welcome_section .learn_begin::before {
    top: 0;
    content: "";
    z-index: 1;
    height: 100%;
    left: 0;
    position: absolute;
    background: linear-gradient(135deg, 
    rgba(#000000, 0.85) 0%,
    rgba(#000000, 0.65) 50%,
    rgba(rgb(168,201,179), 0.5) 100%);
    width: 100%;
}.welcome_section .learn_begin::after {
    animation: patternShift 20s infinite linear;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
    background: repeating-linear-gradient(
    -45deg,
    rgba(rgb(182,135,120), 0.03),
    rgba(rgb(182,135,120), 0.03) 1px,
    transparent 1px,
    transparent 10px
  );
    width: 100%;
    z-index: 2;
}.welcome_section .achieve_stats {
    transform: perspective(1000px) rotateY(-2deg);
    z-index: 10;
    max-width: 1200px;
    padding: 5% 8%;
    position: relative;
    width: 100%;
}.welcome_section .achieve_stats > div {
    animation: fadeSlideUp 0.8s forwards;
    transform: translateY(30px);
    opacity: 0;
}.welcome_section .achieve_stats > div:nth-child(1) {
    animation-delay: 0.3s;
}.welcome_section .achieve_stats > div:nth-child(2) {
    animation-delay: 0.6s;
}.welcome_section .achieve_stats > div:nth-child(3) {
    animation-delay: 0.9s;
}.welcome_section .achieve_stats p {
    max-width: 85%;
    font-weight: 600;
    line-height: 1.6;
    font-size: calc(12px * 1.2);
    position: relative;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-left: 20px;
}.welcome_section .achieve_stats p::before {
    height: 100%;
    border-radius: 2px;
    left: 0;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, rgb(168,201,179), rgb(182,135,120));
    content: "";
    width: 4px;
}.welcome_section .title_style_header {
    display: inline-block;
    position: relative;
    max-width: 90%;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: calc(43px * 1.2);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}.welcome_section .title_style_header::after {
    width: 80px;
    transform: scaleX(0);
    background: rgb(182,135,120);
    left: 0;
    content: "";
    height: 4px;
    position: absolute;
    transform-origin: left;
    bottom: -15px;
    animation: expandLine 1.2s 0.8s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
}.welcome_section .achieve_stats h3 {
    font-size: calc(19px * 1.1);
    border-left: 2px solid rgb(182,135,120);
    background: linear-gradient(
    to right,
    rgba(rgb(168,201,179), 0.15),
    rgba(rgb(168,201,179), 0.05)
  );
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.9;
    max-width: 80%;
    font-weight: 400;
}

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

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

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

@media (max-width: 1200px) {.welcome_section .title_style_header {
    max-width: 95%;
    font-size: calc(43px * 1.1);
}.welcome_section .achieve_stats h3 {
    max-width: 90%;
    font-size: 19px;
}
}

@media (max-width: 992px) {.welcome_section {
    height: 90vh;
}.welcome_section .achieve_stats {
    padding: 4% 6%;
    transform: perspective(800px) rotateY(-1deg);
}.welcome_section .title_style_header {
    font-size: 43px;
}.welcome_section .achieve_stats h3 {
    padding: 15px 20px;
    max-width: 95%;
}.welcome_section .achieve_stats p {
    font-size: 12px;
    max-width: 90%;
}
}

@media (max-width: 768px) {.welcome_section {
    height: auto;
    min-height: 500px;
}.welcome_section .learn_begin {
    min-height: 100vh;
    position: relative;
}.welcome_section .achieve_stats {
    transform: none;
    padding: 60px 30px;
}.welcome_section .title_style_header {
    max-width: 100%;
    font-size: calc(38px * 1.1);
}.welcome_section .achieve_stats h3 {
    max-width: 100%;
    font-size: calc(16px * 1.1);
    padding: 15px;
}.welcome_section .achieve_stats p {
    max-width: 100%;
}
}

@media (max-width: 576px) {.welcome_section .achieve_stats {
    padding: 40px 20px;
}.welcome_section .title_style_header {
    font-size: 38px;
}.welcome_section .achieve_stats h3 {
    padding: 12px;
    font-size: 16px;
}.welcome_section .achieve_stats p {
    font-size: calc(12px * 0.95);
    padding-left: 15px;
}.welcome_section .achieve_stats p::before {
    width: 3px;
}
}

@media (prefers-reduced-motion: reduce) {.welcome_section .achieve_stats > div {
    opacity: 1;
    animation: none;
    transform: none;
}.welcome_section .title_style_header::after {
    animation: none;
    transform: scaleX(1);
}.welcome_section .learn_begin::after {
    animation: none;
}}.cookie_popup_advisory {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    background: rgb(182,135,120);
    padding: 20px 0;
    position: fixed;
    animation: slideUp 0.5s forwards;
    border-top: 3px solid rgb(182,135,120);
    width: 100%;
    z-index: 90;
    bottom: 0;
    transition: transform 0.3s ease-in-out;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
#trackingPolicyBox {
    display: none;
}#trackingPolicyBox:checked ~ .cookie_popup_advisory {
    opacity: 0;
    visibility: hidden;
}.learn_prefs {
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}.cookie_popup_advisory h5 {
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
    color: #ffffff;
}.cookie_popup_advisory p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}.cookie_visitor {
    justify-content: center;
    flex-shrink: 0;
    display: flex;
    margin-right: 15px;
    align-items: center;
    filter: drop-shadow(0 0 10px rgb(168,201,179));
}.cookie_visitor svg {
    transition: transform 0.3s ease-in-out;
    height: 80px;
    width: 80px;
    fill: rgb(168,201,179);
}.cookie_visitor:hover svg {
    transform: scale(1.1);
}.data_accept {
    flex-shrink: 0;
    line-height: 40px;
    font-size: 19px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(90deg, rgb(168,201,179), rgb(182,135,120));
    text-decoration: none;
    min-width: 140px;
    box-shadow: 0 0 15px rgb(168,201,179);
    text-align: center;
    margin-left: 10px;
    color: #000000;
}.data_accept:hover {
    box-shadow: 0 0 20px rgb(182,135,120);
}.cookie_button.edu_accept {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(182,135,120);
    color: #ffffff;
}.cookie_button.edu_accept:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgb(182,135,120);
}.cookie_popup_advisory p a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgb(168,201,179);
}.cookie_popup_advisory p a:hover {
    color: rgb(182,135,120);
}
@media only screen and (max-width: 1200px) {.cookie_popup_advisory {
    padding: 15px 0;
}.learn_prefs {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.cookie_visitor {
    display: none;
}.learn_prefs {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.cookie_popup_advisory h5 {
    margin-bottom: 5px;
    font-size: 16px;
}.track_settings {
    margin-bottom: 15px;
}.data_accept {
    min-width: 100%;
    margin: 10px 0;
}}
.connect_with_us {
    position: relative;
    min-height: 650px;
    padding: 0;
    align-items: center;
    z-index: 1;
    display: flex;
}.connect_with_us::before {
    background-color: rgb(168,201,179,0.5);
    inset: 0;
    position: absolute;
    z-index: -1;
    content: '';
}.connect_with_us .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.connect_with_us .connect_widget {
    width: 100%;
    position: relative;
    flex-direction: column-reverse;
    display: flex;
}.connect_with_us .support_help {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px 120px;
    background-color: transparent;
    justify-content: center;
    width: 100%;
    position: relative;
    align-items: flex-start;
}.connect_with_us .support_help h3 {
    text-align: center;
    position: relative;
    font-weight: 700;
    font-size: 30px;
    color: #ffffff;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 15px;
}.connect_with_us .support_help h3::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    content: '';
    position: absolute;
    height: 3px;
    background-color: rgb(182,135,120);
}.connect_with_us .support_help div {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    min-height: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 0 calc(50% - 30px);
    text-align: center;
    background-color: #ffffff;
    max-width: 220px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}.connect_with_us .support_help div:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
}.connect_with_us .support_help div svg {
    height: 35px;
    margin-bottom: 15px;
    width: 35px;
}.connect_with_us .support_help div svg path {
    fill: rgb(182,135,120);
}.connect_with_us .support_help div span {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 16px;
    color: #000000;
}.connect_with_us .support_help div span a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: #000000;
}.connect_with_us .support_help div span a:hover {
    color: rgb(182,135,120);
}.connect_with_us .feedback_box {
    transform: translateY(50px);
    z-index: 2;
    background-color: #ffffff;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 550px;
}.connect_with_us .feedback_box::before {
    background-color: #ffffff;
    content: '';
    transform: translateX(-50%) rotate(45deg);
    border-radius: 3px;
    z-index: -1;
    height: 30px;
    position: absolute;
    top: -15px;
    width: 30px;
    left: 50%;
}.connect_with_us .feedback_box h3 {
    color: rgb(168,201,179);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 22px;
}.connect_with_us .feedback_box form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}.connect_with_us .feedback_box input[type="text"],
.connect_with_us .feedback_box input[type="email"] {
    background-color: transparent;
    padding: 15px 20px;
    flex: 1 0 100%;
    color: #000000;
    height: 50px;
    border-radius: 10px;
    border: 1px solid rgb(231,228,237);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
}.connect_with_us .feedback_box input[type="text"]:focus,
.connect_with_us .feedback_box input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgb(182,135,120,0.5);
    border-color: rgb(182,135,120);
    outline: none;
}.connect_with_us .feedback_box input::placeholder {
    color: #000000;
    opacity: 0.6;
}.connect_with_us .feedback_box .inquiry_query {
    align-items: flex-start;
    margin-top: 5px;
    flex: 1 0 100%;
    display: flex;
}.connect_with_us .feedback_box .inquiry_query input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    border: 2px solid rgb(231,228,237);
    position: relative;
    appearance: none;
    margin-right: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    border-radius: 4px;
}.connect_with_us .feedback_box .inquiry_query input[type="checkbox"]:checked {
    border-color: rgb(182,135,120);
    background-color: rgb(182,135,120);
}.connect_with_us .feedback_box .inquiry_query input[type="checkbox"]:checked::before {
    top: 50%;
    position: absolute;
    content: '✓';
    color: #ffffff;
    font-size: 12px;
    left: 50%;
    transform: translate(-50%, -50%);
}.connect_with_us .feedback_box .inquiry_query label {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
}.connect_with_us .feedback_box .inquiry_query label a {
    transition: color 0.3s ease;
    color: rgb(182,135,120);
    text-decoration: none;
}.connect_with_us .feedback_box .inquiry_query label a:hover {
    color: rgb(168,201,179);
}.connect_with_us .feedback_box .reach_message {
    background: linear-gradient(135deg, rgb(182,135,120), rgb(168,201,179));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgb(182,135,120,0.5);
    border-radius: 10px;
    font-weight: 600;
    height: 50px;
    font-size: 18px;
    margin-top: 15px;
    color: #ffffff;
    border: none;
    cursor: pointer;
}.connect_with_us .feedback_box .reach_message:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(168,201,179,0.5);
}

@media screen and (min-width: 992px) {.connect_with_us {
    min-height: 700px;
    padding: 100px 0;
}.connect_with_us .connect_widget {
    flex-direction: row;
    align-items: center;
}.connect_with_us .support_help {
    margin-left: auto;
    width: 65%;
    justify-content: space-between;
    padding: 60px 0 60px 120px;
    align-items: center;
    gap: 30px;
}.connect_with_us .support_help h3 {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
}.connect_with_us .support_help h3::after {
    left: 0;
    transform: none;
}.connect_with_us .support_help div {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin: 0;
}.connect_with_us .feedback_box {
    position: absolute;
    z-index: 3;
    left: 0;
    width: 45%;
    margin: 0;
    max-width: 450px;
    padding: 40px;
}.connect_with_us .feedback_box::before {
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
}

@media screen and (min-width: 1200px) {.connect_with_us .support_help {
    width: 70%;
    padding-left: 200px;
}.connect_with_us .feedback_box {
    width: 40%;
    max-width: 480px;
}
}

@media screen and (min-width: 768px) and (max-width: 991px) {.connect_with_us {
    padding: 80px 0 120px;
}.connect_with_us .support_help {
    justify-content: space-between;
    padding: 0 20px 120px;
}.connect_with_us .support_help div {
    max-width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
}
}

@media screen and (max-width: 767px) {.connect_with_us {
    padding: 60px 0 120px;
}.connect_with_us .support_help {
    padding: 0 20px 120px;
}.connect_with_us .support_help h3 {
    font-size: calc(22px + 2px);
}.connect_with_us .support_help div {
    margin-bottom: 0;
    flex: 0 0 100%;
    max-width: 280px;
    min-height: 120px;
}.connect_with_us .support_help div svg {
    width: 30px;
    height: 30px;
}.connect_with_us .feedback_box {
    padding: 30px 25px;
}
}

@media screen and (max-width: 480px) {.connect_with_us {
    padding: 40px 0 100px;
}.connect_with_us .support_help {
    gap: 20px;
}.connect_with_us .support_help div {
    min-height: auto;
    padding: 20px 15px;
}
}