* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}.framework-wrap_style {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}.footnote_ref_style {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    width: 30px;
    height: 30px;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1252px;
}html,body {
    min-height: 100%;
    height: 100%;
    color: #000000;
    scroll-snap-type: none;
    font-family: Arial, sans-serif;
    auto
contain
touch-action: none;
    auto
    scroll-behavior: auto;
}.nav_primary_style {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.company_info_style {
    padding: 8rem 0 6rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}.company_info_style::before {
    z-index: 1;
    left: 0;
    position: absolute;
    right: 0;
    content: "";
    bottom: 0;
    top: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.75) 30%, 
        rgba(0, 0, 0, 0.6) 70%, 
        rgba(0, 0, 0, 0.85) 100%);
}.company_info_style::after {
    opacity: 0.1;
    height: 200px;
    animation: float 10s infinite ease-in-out;
    border-radius: 50%;
    background: rgb(212,209,198);
    right: -50px;
    filter: blur(50px);
    content: "";
    top: -50px;
    z-index: 2;
    position: absolute;
    width: 200px;
}.company_info_style h4 {
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    color: #ffffff;
    text-align: center;
    transform: translateY(20px);
    margin-bottom: 2.5rem;
    position: relative;
    animation: fadeInUp 1s forwards 0.2s;
    font-size: calc(35px * 1.2);
    font-weight: 700;
}.company_info_style h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    background: linear-gradient(90deg, rgb(212,209,198), rgb(179,174,161));
    position: absolute;
    height: 3px;
    bottom: -12px;
    content: "";
}.company_info_style .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 5;
}.company_info_style .text_block_style {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.4s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    transition: transform 0.5s ease-out;
    border-radius: 10px;
    border-left: 3px solid rgb(212,209,198);
}.company_info_style .text_block_style:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}.company_info_style .text_block_style::before {
    position: absolute;
    width: 100%;
    background: linear-gradient(45deg, 
        rgb(212,209,198,0.5) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgb(179,174,161,0.5) 100%);
    pointer-events: none;
    height: 100%;
    top: 0;
    z-index: -1;
    left: 0;
    content: "";
    opacity: 0.1;
}.company_info_style h6 {
    font-weight: 700;
    opacity: 0;
    margin-bottom: 1.5rem;
    transform: translateX(-10px);
    letter-spacing: 1px;
    color: rgb(212,209,198);
    display: inline-block;
    position: relative;
    font-size: calc(21px * 1.1);
    animation: fadeInRight 0.8s forwards 0.6s;
}.company_info_style h6::after {
    left: 0;
    bottom: -8px;
    animation: expandLine 0.6s forwards 1.2s;
    transform-origin: left;
    transform: scaleX(0);
    background: rgb(179,174,161);
    width: 30px;
    height: 2px;
    content: "";
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
}.company_info_style .text_block_style div {
    position: relative;
    overflow: hidden;
}.company_info_style .text_block_style span {
    display: block;
    opacity: 0;
    position: relative;
    font-size: 16px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s forwards 0.8s;
    transform: translateY(20px);
    text-align: justify;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}.company_info_style .text_block_style span::first-letter {
    font-weight: 700;
    font-size: 1.5em;
    margin-right: 3px;
    color: rgb(179,174,161);
}

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

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

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(60px, 0);
    }
    75% {
        transform: translate(30px, 30px);
    }
}

@media (max-width: 991px) {.company_info_style {
    padding: 6rem 0 4rem;
}.company_info_style h4 {
    font-size: calc(35px * 1.1);
}.company_info_style .text_block_style {
    padding: 2.5rem;
}
}

@media (max-width: 767px) {.company_info_style {
    padding: 4rem 0 3rem;
}.company_info_style h4 {
    font-size: 35px;
    margin-bottom: 2rem;
}.company_info_style h4::after {
    width: 60px;
    height: 2px;
}.company_info_style .text_block_style {
    padding: 2rem;
}.company_info_style h6 {
    margin-bottom: 1.2rem;
    font-size: 21px;
}.company_info_style .text_block_style span {
    line-height: 1.7;
}
}

@media (max-width: 576px) {.company_info_style {
    padding: 3rem 0 2rem;
}.company_info_style h4 {
    margin-bottom: 1.5rem;
    font-size: calc(21px * 1.3);
}.company_info_style h4::after {
    width: 50px;
}.company_info_style .text_block_style {
    padding: 1.5rem;
    border-left-width: 2px;
}.company_info_style h6 {
    margin-bottom: 1rem;
    font-size: calc(21px * 1.1);
}.company_info_style .text_block_style span {
    line-height: 1.6;
    font-size: calc(16px * 0.95);
}}.training_benefits_style {
    overflow: hidden;
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, rgb(239,238,234), rgb(239,238,234) 60%, rgba(rgb(212,209,198,0.5), 0.05) 100%);
}.training_benefits_style::before {
    filter: blur(50px);
    background: radial-gradient(circle, rgb(212,209,198,0.5), transparent 70%);
    animation: floatGradient 20s infinite alternate ease-in-out;
    top: -50px;
    right: -50px;
    opacity: 0.2;
    position: absolute;
    height: 300px;
    width: 300px;
    z-index: 0;
    content: "";
}.training_benefits_style::after {
    left: 15%;
    width: 200px;
    animation: floatGradient 15s infinite alternate-reverse ease-in-out;
    background: radial-gradient(ellipse, rgb(179,174,161,0.5), transparent 70%);
    bottom: -80px;
    z-index: 0;
    content: "";
    position: absolute;
    filter: blur(40px);
    height: 200px;
    opacity: 0.15;
}.training_benefits_style h5 {
    transform: translateY(0);
    margin: 0 auto 50px;
    color: #000000;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    font-weight: 700;
    position: relative;
    font-size: calc(20px * 1.1);
    opacity: 1;
    letter-spacing: -0.02em;
    padding: 0 20px;
    text-align: center;
    line-height: 1.4;
    max-width: 700px;
}.training_benefits_style h5::after {
    height: 3px;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(212,209,198) 30%, rgb(212,209,198) 70%, transparent);
    width: 80px;
    bottom: -15px;
    position: absolute;
    content: "";
    transform: translateX(-50%);
}.training_benefits_style .container {
    z-index: 2;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 25px;
}.training_benefits_style .master_classes_style {
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    border-radius: 27px;
    display: flex;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    gap: 40px;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    transform: perspective(1000px) rotateY(0deg);
    align-items: center;
    position: relative;
}.training_benefits_style .master_classes_style::before {
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: linear-gradient(90deg, rgb(212,209,198), rgb(179,174,161));
}.training_benefits_style .master_classes_style > div:first-child {
    max-width: 500px;
    clip-path: polygon(0 0, 100% 5%, 95% 95%, 5% 100%);
    overflow: hidden;
    transition: transform 0.5s ease-out;
    position: relative;
    transform: perspective(1000px) rotateY(0deg) translateZ(10px);
    width: 100%;
}.training_benefits_style .master_classes_style:hover > div:first-child {
    transform: perspective(1000px) rotateY(2deg) translateZ(20px);
}.training_benefits_style .img_circle_style {
    object-fit: cover;
    height: auto;
    filter: contrast(1.05) saturate(1.1);
    width: 100%;
    transition: transform 0.6s ease-out;
    transform: scale(1);
}.training_benefits_style .master_classes_style:hover .img_circle_style {
    transform: scale(1.03);
}.training_benefits_style .text_block_style {
    position: relative;
    padding: 10px 0;
    flex: 1;
}.training_benefits_style .text_block_style::before {
    opacity: 0.4;
    border-top: 2px solid rgb(212,209,198,0.5);
    z-index: 1;
    height: 40px;
    position: absolute;
    border-left: 2px solid rgb(212,209,198,0.5);
    content: "";
    width: 40px;
    top: -20px;
    left: -20px;
}.training_benefits_style .text_block_style::after {
    bottom: -20px;
    z-index: 1;
    content: "";
    border-right: 2px solid rgb(212,209,198,0.5);
    position: absolute;
    opacity: 0.4;
    height: 40px;
    border-bottom: 2px solid rgb(212,209,198,0.5);
    right: -20px;
    width: 40px;
}.training_benefits_style ul {
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    list-style: none;
}.training_benefits_style li {
    transform: translateX(0);
    position: relative;
    padding: 10px 0 10px 5px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.9;
}.training_benefits_style li:hover {
    opacity: 1;
    transform: translateX(5px);
}.training_benefits_style li:nth-child(odd) {
    background: linear-gradient(90deg, rgba(rgb(212,209,198,0.5), 0.03), transparent);
}.training_benefits_style li p {
    position: relative;
    font-size: 12px;
    align-items: center;
    padding: 0 0 0 35px;
    margin: 0;
    display: flex;
    line-height: 1.6;
    color: #000000;
}.training_benefits_style li svg {
    top: 2px;
    transform: scale(0.9);
    height: 24px;
    left: 0;
    width: 24px;
    position: absolute;
    transition: transform 0.3s ease;
}.training_benefits_style li:hover svg {
    transform: scale(1);
}.training_benefits_style li svg path {
    transition: fill 0.3s ease;
    fill: rgb(212,209,198);
}.training_benefits_style li:hover svg path {
    fill: rgb(179,174,161);
}

@keyframes floatGradient {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, 15px);
    }
    100% {
        transform: translate(10px, -5px);
    }
}

@media (min-width: 768px) {.training_benefits_style {
    padding: 150px 0 120px;
}.training_benefits_style h5 {
    transform: translateY(0);
    margin-bottom: 70px;
    font-size: calc(20px * 1.2);
}.training_benefits_style .master_classes_style {
    transform: perspective(1200px) rotateY(0deg);
    padding: 60px;
    flex-direction: row;
    gap: 60px;
}.training_benefits_style .master_classes_style > div:first-child {
    flex: 0 0 45%;
    max-width: 45%;
}.training_benefits_style .text_block_style {
    padding: 20px 0;
    flex: 0 0 50%;
}.training_benefits_style ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}
}

@media (min-width: 992px) {.training_benefits_style {
    padding: 180px 0 150px;
}.training_benefits_style h5 {
    font-size: calc(20px * 1.3);
}.training_benefits_style .master_classes_style {
    padding: 70px;
    gap: 80px;
}.training_benefits_style .master_classes_style > div:first-child {
    flex: 0 0 40%;
    max-width: 40%;
}.training_benefits_style .text_block_style {
    flex: 0 0 55%;
}.training_benefits_style .master_classes_style:hover {
    transform: perspective(1200px) rotateY(-1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
}
}

@media (max-width: 767px) {.training_benefits_style {
    padding: 80px 0 70px;
}.training_benefits_style h5 {
    font-size: 20px;
    margin-bottom: 40px;
}.training_benefits_style .master_classes_style {
    padding: 30px 20px;
}.training_benefits_style .img_circle_style {
    width: 100%;
    object-fit: cover;
    max-height: 250px;
}.training_benefits_style li {
    padding: 8px 0 8px 0;
}.training_benefits_style li p {
    font-size: calc(12px * 0.95);
    line-height: 1.5;
}}header .main_tutor_style {
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    background: rgb(239,238,234);
    overflow: hidden;
}header .main_tutor_style::before {
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(212,209,198,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(179,174,161,0.5) 0%, transparent 30%);
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}header .main_tutor_style::after {
    opacity: 0.1;
    right: 0;
    top: 0;
    content: "";
    background: linear-gradient(135deg, transparent 25%, rgb(212,209,198,0.5) 100%);
    z-index: -1;
    width: 40%;
    position: absolute;
    height: 100%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}header .container {
    position: relative;
    padding: 1.8rem 2rem;
}header .head_teach_style {
    grid-template-columns: auto 1fr;
    display: grid;
    align-items: center;
    gap: 3rem;
}header .header_mainbar_style {
    position: relative;
    z-index: 2;
}header .head_mentor_style {
    display: block;
    position: relative;
    z-index: 2;
}header .head_mentor_style::before,
header .head_mentor_style::after {
    content: "";
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    background: rgb(212,209,198,0.5);
    transition: all 0.5s ease;
    opacity: 0;
}header .head_mentor_style::before {
    left: -15px;
    height: 50px;
    width: 50px;
    top: -15px;
}header .head_mentor_style::after {
    bottom: -5px;
    background: rgb(179,174,161,0.5);
    width: 25px;
    height: 25px;
    right: -10px;
}header .head_mentor_style:hover::before,
header .head_mentor_style:hover::after {
    transform: scale(1.2);
    opacity: 0.6;
}header .head_mentor_style svg {
    width: auto;
    transition: all 0.3s ease;
    height: 50px;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
}header .head_mentor_style:hover svg {
    transform: rotate(-5deg);
}header .nav_lesson_style {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background: linear-gradient(to right, transparent, #ffffff);
    padding: 10px 20px;
    margin: 0;
    justify-content: flex-end;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    list-style: none;
    border-radius: 0 11px 11px 0;
}header .nav_lesson_style::after {
    background-image: 
        linear-gradient(45deg, rgb(212,209,198,0.5) 25%, transparent 25%, transparent 50%, 
        rgb(212,209,198,0.5) 50%, rgb(212,209,198,0.5) 75%, transparent 75%, transparent);
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    animation: moveStripes 20s linear infinite;
    left: 0;
    width: 100%;
    background-size: 10px 10px;
    content: "";
    top: 0;
    position: absolute;
}header .top_pagebar_style {
    margin: 5px 8px;
    position: relative;
    perspective: 800px;
}header .top_pagebar_style::before {
    border-left: 5px solid rgb(212,209,198);
    transition: all 0.3s ease;
    transform: translateY(-50%) scale(0);
    left: -10px;
    width: 0;
    border-top: 5px solid transparent;
    top: 50%;
    opacity: 0;
    border-bottom: 5px solid transparent;
    height: 0;
    position: absolute;
    content: "";
}header .top_pagebar_style:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    left: -15px;
}header .top_pagebar_style a {
    text-decoration: none;
    border: 1px solid transparent;
    display: block;
    padding: 10px 18px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    color: #000000;
    overflow: hidden;
    transform-style: preserve-3d;
    background: transparent;
}header .top_pagebar_style a::before {
    position: absolute;
    z-index: -1;
    left: 0;
    background: #ffffff;
    top: 0;
    transform: translateZ(-1px);
    width: 100%;
    height: 100%;
    content: "";
}header .top_pagebar_style a::after {
    bottom: 0;
    width: 0;
    height: 2px;
    background: rgb(212,209,198);
    transition: width 0.3s ease;
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
}header .top_pagebar_style a:hover {
    border-color: rgb(212,209,198,0.5);
    transform: translateZ(20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: rgb(212,209,198);
}header .top_pagebar_style a:hover::after {
    width: 80%;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@media (max-width: 991px) {header .head_teach_style {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2rem;
}header .nav_lesson_style {
    width: 100%;
    background: #ffffff;
    clip-path: none;
    justify-content: center;
    border-radius: 11px;
}
}

@media (max-width: 767px) {header .container {
    padding: 1.5rem 1rem;
}header .top_pagebar_style {
    margin: 3px 5px;
}header .top_pagebar_style a {
    padding: 8px 15px;
    font-size: calc(15px - 1px);
}
}

@media (max-width: 480px) {header .nav_lesson_style {
    flex-direction: column;
    padding: 15px;
    align-items: center;
}header .top_pagebar_style {
    margin: 3px 0;
    width: 100%;
}header .top_pagebar_style a {
    text-align: center;
    width: 100%;
}header .top_pagebar_style::before {
    display: none;
}header .head_mentor_style svg {
    height: 40px;
}}.title_intro_style {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}.title_intro_style .edu_page_style {
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    z-index: 1;
    min-height: 100vh;
    align-items: center;
}.title_intro_style .edu_page_style::before {
    background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.5) 0%,
    rgb(179,174,161,0.5) 60%,
    rgb(212,209,198,0.5) 100%);
    position: absolute;
    left: 0;
    backdrop-filter: blur(8px);
    width: 100%;
    content: "";
    z-index: -1;
    top: 0;
    height: 100%;
}.title_intro_style .edu_page_style::after {
    top: 20px;
    right: 20px;
    clip-path: polygon(
    0 0, 
    100% 0, 
    100% calc(100% - 40px), 
    calc(100% - 40px) 100%, 
    0 100%
  );
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 20px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    content: "";
    transform: translateZ(0);
    z-index: -1;
    left: 20px;
}.title_intro_style .learning_dna_style {
    animation: fadeUpIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 
              0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 850px;
    padding: 3rem;
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to right, 
    rgba(255, 255, 255, 0.05), 
    rgba(255, 255, 255, 0.1));
}.title_intro_style .learning_dna_style::before {
    background: rgb(212,209,198);
    transform-origin: top;
    left: 0;
    width: 6px;
    content: "";
    position: absolute;
    top: 0;
    animation: scaleIn 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: scaleY(0);
    height: 100%;
}.title_intro_style .learning_dna_style::after {
    content: "";
    background: rgb(179,174,161);
    position: absolute;
    top: 0;
    height: 70%;
    transform-origin: bottom;
    right: -10px;
    width: 4px;
    transform: scaleY(0);
    animation: scaleIn 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}.title_intro_style h1 {
    font-size: calc(42px * 1.1);
    font-weight: 700;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    transform: translateX(-30px);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}.title_intro_style h1::after {
    position: absolute;
    transform-origin: left;
    transform: scaleX(0);
    bottom: -12px;
    animation: scaleInX 0.8s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    background: rgb(212,209,198);
    width: 80px;
    left: 0;
    height: 4px;
    content: "";
}.title_intro_style h3 {
    font-weight: 600;
    opacity: 0;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 90%;
    font-size: calc(24px * 1.1);
    animation: fadeIn 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(20px);
}.title_intro_style p {
    color: #ffffff;
    line-height: 1.7;
    font-size: calc(12px * 1.05);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeIn 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 300;
    display: inline-block;
    letter-spacing: 0.05em;
}@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

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

.title_intro_style .edu_page_style:hover::after {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1200px) {.title_intro_style .learning_dna_style {
    padding: 2.5rem;
    max-width: 700px;
}.title_intro_style h1 {
    font-size: calc(42px * 0.95);
}.title_intro_style h3 {
    font-size: calc(24px * 1);
    max-width: 100%;
}
}

@media (max-width: 992px) {.title_intro_style .edu_page_style {
    padding: 3rem 1.5rem;
}.title_intro_style .learning_dna_style {
    max-width: 600px;
    padding: 2rem;
}.title_intro_style h1 {
    margin-bottom: 1.2rem;
    font-size: calc(42px * 0.9);
}.title_intro_style h1::after {
    height: 3px;
    width: 60px;
}.title_intro_style h3 {
    font-size: calc(24px * 0.95);
    margin-bottom: 1.5rem;
}.title_intro_style p {
    font-size: 12px;
}
}

@media (max-width: 768px) {.title_intro_style .edu_page_style {
    align-items: flex-start;
    padding-top: 5rem;
}.title_intro_style .learning_dna_style {
    padding: 1.75rem;
    max-width: 100%;
}.title_intro_style h1 {
    font-size: calc(42px * 0.8);
}.title_intro_style h3 {
    line-height: 1.4;
    font-size: calc(24px * 0.9);
}.title_intro_style .edu_page_style::after {
    right: 15px;
    left: 15px;
    top: 15px;
    clip-path: polygon(
      0 0, 
      100% 0, 
      100% calc(100% - 30px), 
      calc(100% - 30px) 100%, 
      0 100%
    );
    bottom: 15px;
}
}

@media (max-width: 576px) {.title_intro_style .edu_page_style {
    padding: 2rem 1rem;
    min-height: calc(100vh - 60px);
}.title_intro_style .learning_dna_style {
    padding: 1.5rem;
}.title_intro_style h1 {
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    font-size: calc(42px * 0.7);
}.title_intro_style h1::after {
    width: 50px;
    bottom: -8px;
    height: 3px;
}.title_intro_style h3 {
    margin-bottom: 1.2rem;
    font-size: calc(24px * 0.85);
}.title_intro_style p {
    margin-top: 1.5rem;
    font-size: calc(12px * 0.95);
}.title_intro_style .learning_dna_style::before,
  .title_intro_style .learning_dna_style::after {
    width: 3px;
}.title_intro_style .edu_page_style::after {
    display: none;
}}.plan_chooser_style {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.plan_chooser_style::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%,
        rgba(20, 20, 40, 0.75) 100%);
    right: 0;
    content: "";
}.plan_chooser_style .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
    position: relative;
}.plan_chooser_style .fee_package_style {
    perspective: 1000px;
}.plan_chooser_style h2 {
    transform: translateZ(30px);
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 34px;
}.plan_chooser_style .trial_offers_style {
    text-align: center;
    transform: translateZ(20px);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
    margin: 0 auto 50px;
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    color: #ffffff;
    max-width: 700px;
}.plan_chooser_style .tuition_grid_style {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 30px;
}.plan_chooser_style .tuition_grid_style li {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}.plan_chooser_style .tuition_plans_style {
    transition: all 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
    height: 100%;
    display: block;
    text-decoration: none;
}.plan_chooser_style .study_pricing_style {
    backdrop-filter: blur(10px);
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    height: 100%;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}.plan_chooser_style .study_pricing_style::before {
    top: 0;
    right: 0;
    content: "";
    transform: scaleX(0.92);
    height: 5px;
    background: linear-gradient(90deg, 
        rgb(212,209,198) 0%,
        rgb(179,174,161) 100%);
    transform-origin: left;
    position: absolute;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}.plan_chooser_style .study_pricing_style::after {
    right: 10px;
    left: 10px;
    height: 2px;
    transform-origin: bottom;
    opacity: 0.7;
    background: linear-gradient(90deg, 
        rgb(179,174,161,0.5) 0%,
        rgb(212,209,198,0.5) 100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    bottom: -2px;
    position: absolute;
    content: "";
}.plan_chooser_style .offer_box_style {
    transform: translateZ(10px);
    padding: 35px 30px;
}.plan_chooser_style .offer_box_style h4 {
    margin: 0 0 20px;
    font-size: calc(22px * 1.1);
    transform: translateZ(5px);
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-weight: 700;
}.plan_chooser_style .offer_box_style h4::after {
    height: 3px;
    position: absolute;
    left: 0;
    transform-origin: left;
    width: 40px;
    bottom: -8px;
    background: rgb(212,209,198);
    content: "";
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}.plan_chooser_style .offer_box_style p {
    overflow-y: auto;
    max-height: 250px;
    word-wrap: break-word;
    opacity: 0.85;
    color: #ffffff;
    margin: 0 0 25px;
    overflow-wrap: break-word;
    padding-right: 5px;
    font-size: 18px;
    line-height: 1.6;
    hyphens: auto;
    font-weight: 400;
}.plan_chooser_style .offer_box_style p::-webkit-scrollbar {
    width: 4px;
}.plan_chooser_style .offer_box_style p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(212,209,198,0.5);
}.plan_chooser_style .pro_rates_style {
    color: #ffffff;
    display: block;
    transform: translateZ(15px);
    text-align: right;
    font-size: calc(22px * 1.2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    margin-top: 20px;
}.plan_chooser_style .pro_rates_style::before {
    width: 10px;
    margin-right: 8px;
    height: 10px;
    transform: translateY(-2px);
    content: "";
    background: rgb(212,209,198);
    display: inline-block;
    box-shadow: 0 0 15px rgb(212,209,198);
    border-radius: 50%;
}.plan_chooser_style .tuition_grid_style li:hover {
    transform: translateY(-5px) scale(1.02);
}.plan_chooser_style .tuition_grid_style li:hover .study_pricing_style {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3),
                0 10px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateZ(20px);
}.plan_chooser_style .tuition_grid_style li:hover .study_pricing_style::before {
    transform: scaleX(1);
}.plan_chooser_style .tuition_grid_style li:hover .study_pricing_style::after {
    opacity: 0.9;
    transform: scaleY(1.5);
}.plan_chooser_style .tuition_grid_style li:hover .offer_box_style h4::after {
    width: 100%;
}

@media (max-width: 991px) {.plan_chooser_style {
    padding: 80px 0;
}.plan_chooser_style h2 {
    font-size: calc(34px * 0.9);
}.plan_chooser_style .tuition_grid_style {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}.plan_chooser_style .offer_box_style {
    padding: 30px 25px;
}
}

@media (max-width: 767px) {.plan_chooser_style {
    padding: 60px 0;
}.plan_chooser_style h2 {
    margin-bottom: 15px;
    font-size: calc(34px * 0.8);
}.plan_chooser_style .trial_offers_style {
    margin-bottom: 40px;
    font-size: calc(18px * 0.95);
}.plan_chooser_style .tuition_grid_style {
    margin: 0 auto;
    max-width: 450px;
    grid-template-columns: 1fr;
}.plan_chooser_style .offer_box_style {
    padding: 25px 20px;
}.plan_chooser_style .offer_box_style h4 {
    font-size: 22px;
}.plan_chooser_style .pro_rates_style {
    font-size: calc(22px * 1.1);
}
}

@media (max-width: 480px) {.plan_chooser_style {
    padding: 50px 0;
}.plan_chooser_style h2 {
    font-size: calc(34px * 0.7);
}.plan_chooser_style .trial_offers_style {
    font-size: calc(18px * 0.9);
}.plan_chooser_style .offer_box_style {
    padding: 20px 15px;
}.plan_chooser_style .offer_box_style p {
    max-height: 200px;
    font-size: calc(18px * 0.9);
    line-height: 1.5;
}}.get_support_style {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: rgb(239,238,234);
}.get_support_style::before {
    height: 100%;
    top: 0;
    opacity: 0.07;
    background: 
    radial-gradient(circle at 15% 15%, rgb(212,209,198,0.5) 0%, transparent 25%),
    radial-gradient(circle at 85% 85%, rgb(179,174,161,0.5) 0%, transparent 25%),
    repeating-linear-gradient(
      45deg,
      rgb(212,209,198,0.5) 0,
      rgb(212,209,198,0.5) 1px,
      transparent 1px,
      transparent 20px
    );
    position: absolute;
    content: "";
    width: 100%;
    z-index: 1;
    left: 0;
    animation: backgroundShift 20s infinite alternate ease-in-out;
}.get_support_style::after {
    position: absolute;
    content: "";
    transform-origin: center;
    top: -50%;
    animation: rotateBg 40s infinite linear;
    opacity: 0.05;
    height: 200%;
    left: -50%;
    z-index: 0;
    width: 200%;
    background: 
    radial-gradient(circle at 70% 30%, rgb(212,209,198,0.5) 0%, transparent 10%),
    radial-gradient(circle at 30% 70%, rgb(179,174,161,0.5) 0%, transparent 10%),
    radial-gradient(circle at 50% 50%, #ffffff 0%, transparent 100%);
}@keyframes backgroundShift {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
    background-size: 500px 500px, 500px 500px, 20px 20px;
  }
  100% {
    background-position: 5% 5%, 5% 5%, 0% 0%;
    background-size: 600px 600px, 600px 600px, 20px 20px;
  }
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.get_support_style .container {
    position: relative;
    z-index: 10;
}.get_support_style .talk_experts_style {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 25px;
    position: relative;
}.get_support_style .talk_experts_style h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
}.get_support_style .talk_experts_style p {
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 12px;
    color: #000000;
    text-align: center;
}.get_support_style .talk_experts_style p:last-of-type {
    justify-content: center;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2.5rem;
    align-items: center;
    display: flex;
}.get_support_style .talk_experts_style p:last-of-type svg {
    margin-right: 12px;
    height: 22px;
    fill: rgb(212,209,198);
    width: 22px;
}.get_support_style .talk_experts_style p:last-of-type svg path {
    fill: rgb(212,209,198);
}.get_support_style .submit_request_style {
    justify-content: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}.get_support_style .get_contactform_style {
    align-items: center;
    color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgb(239,238,234);
    width: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    font-size: 0;
    height: 80px;
    position: relative;
}.get_support_style .get_contactform_style::after {
    bottom: -30px;
    opacity: 0;
    white-space: nowrap;
    transform: translateX(-50%);
    font-weight: 600;
    content: attr(title);
    color: #000000;
    font-size: 12px;
    left: 50%;
    transition: opacity 0.3s ease;
    position: absolute;
}.get_support_style .get_contactform_style:hover::after {
    opacity: 1;
}.get_support_style .get_contactform_style:hover {
    transform: translateY(-5px);
    background-color: rgb(212,209,198);
    border-color: rgb(212,209,198);
    box-shadow: 0 15px 25px rgba(rgb(212,209,198), 0.2);
}.get_support_style .get_contactform_style svg {
    transition: fill 0.3s ease;
    height: 28px;
    fill: rgb(212,209,198);
    width: 28px;
}.get_support_style .get_contactform_style:hover svg {
    fill: #ffffff;
}.get_support_style .get_contactform_style svg path {
    transition: fill 0.3s ease;
    fill: rgb(212,209,198);
}.get_support_style .get_contactform_style:hover svg path {
    fill: #ffffff;
}

@media (max-width: 991px) {.get_support_style {
    padding: 4rem 0;
}.get_support_style .talk_experts_style {
    padding: 2.5rem;
}.get_support_style .talk_experts_style h2 {
    font-size: calc(38px * 0.9);
}
}

@media (max-width: 767px) {.get_support_style {
    padding: 3rem 0;
}.get_support_style .talk_experts_style {
    padding: 2rem;
}.get_support_style .submit_request_style {
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}.get_support_style .get_contactform_style {
    width: 70px;
    height: 70px;
}.get_support_style .get_contactform_style::after {
    bottom: -25px;
    font-size: calc(12px * 0.9);
}.get_support_style .get_contactform_style svg {
    height: 24px;
    width: 24px;
}}.trackingNoticeModal_style {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s forwards;
    width: 100%;
    border-top: 3px solid rgb(179,174,161);
    transition: transform 0.5s ease-in-out;
    background: rgb(179,174,161);
    font-family: Arial, sans-serif;
    transform: translateY(100%);
    z-index: 90;
    bottom: 0;
    position: fixed;
    padding: 20px 0;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
.edu_consent_style {
    justify-content: space-between;
    gap: 20px;
    display: flex;
    padding: 20px 5%;
    align-items: center;
}.trackingNoticeModal_style h5 {
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}.trackingNoticeModal_style p {
    margin: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
}.cookie_show_style {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgb(212,209,198));
    flex-shrink: 0;
}.cookie_show_style svg {
    height: 80px;
    fill: rgb(212,209,198);
    transition: transform 0.3s ease-in-out;
    width: 80px;
}.cookie_show_style:hover svg {
    transform: scale(1.1);
}.cookie_updates_style {
    margin-left: 10px;
    background: linear-gradient(90deg, rgb(212,209,198), rgb(179,174,161));
    cursor: pointer;
    text-decoration: none;
    min-width: 140px;
    font-size: 17px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 20px;
    border-radius: 14px;
    line-height: 40px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 0 15px rgb(212,209,198);
    color: #000000;
    white-space: nowrap;
}.cookie_updates_style:hover {
    box-shadow: 0 0 20px rgb(179,174,161);
}.cookie_button.consent_panel_style:hover {
    box-shadow: 0 0 15px rgb(179,174,161);
}.trackingNoticeModal_style p a {
    text-decoration: none;
    color: rgb(212,209,198);
    transition: color 0.3s ease;
}.trackingNoticeModal_style p a:hover {
    color: rgb(179,174,161);
}#overlayCookieInfo_style {
    display: none;
}#overlayCookieInfo_style:checked ~ .trackingNoticeModal_style {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.trackingNoticeModal_style {
    padding: 15px 0;
}.edu_consent_style {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.cookie_show_style {
    display: none;
}.edu_consent_style {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.trackingNoticeModal_style h5 {
    font-size: 19px;
    margin-bottom: 5px;
}.track_toggle_style {
    margin-bottom: 15px;
}.cookie_updates_style {
    margin: 10px 0;
    min-width: 100%;
}}
.course_summary_style {
    padding: 140px 0;
    background: rgb(239,238,234);
    position: relative;
    overflow: hidden;
}.course_summary_style::before {
    background: 
        linear-gradient(45deg, rgb(212,209,198,0.5) 0%, transparent 50%),
        linear-gradient(135deg, transparent 50%, rgb(179,174,161,0.5) 100%);
    left: 0;
    opacity: 0.15;
    content: '';
    top: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    position: absolute;
}.course_summary_style .container {
    position: relative;
    z-index: 2;
}.course_summary_style .learn_path_style {
    flex-direction: column;
    position: relative;
    display: flex;
}.course_summary_style .text_block_style {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: -80px auto 0;
    order: 2;
    z-index: 3;
    width: 80%;
    position: relative;
    background: #ffffff;
    border-radius: 12px;
}.course_summary_style .text_block_style h2 {
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
    color: #000000;
    font-size: 37px;
}.course_summary_style .text_block_style h2::after {
    background: linear-gradient(to right, rgb(212,209,198), rgb(179,174,161));
    bottom: 0;
    height: 3px;
    transform: translateX(-50%);
    left: 50%;
    content: '';
    position: absolute;
    border-radius: 10px;
    width: 80px;
}.course_summary_style .text_block_style .description {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 1.75;
}.course_summary_style .text_block_style .description:last-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    margin-bottom: 0;
}.course_summary_style .img_circle_style {
    order: 1;
    margin: 0 auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transform-origin: bottom;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: perspective(1000px) rotateX(5deg);
    height: 500px;
}.course_summary_style .img_circle_style::before {
    content: '';
    z-index: 1;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 70%);
    top: 0;
}.course_summary_style .img_circle_style::after {
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    content: '';
    width: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}.course_summary_style .learn_path_style::before {
    z-index: 1;
    border-radius: 50%;
    border: 2px solid rgb(212,209,198,0.5);
    animation: pulse 4s ease-in-out infinite;
    top: 20px;
    position: absolute;
    width: 60px;
    left: 10%;
    content: '';
    height: 60px;
}.course_summary_style .learn_path_style::after {
    position: absolute;
    bottom: 50px;
    content: '';
    z-index: 1;
    width: 40px;
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
    background: rgb(179,174,161,0.5);
    height: 40px;
    right: 15%;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (min-width: 992px) {.course_summary_style .text_block_style::before {
    position: absolute;
    content: '';
    width: 200px;
    top: 0;
    background: linear-gradient(to right, transparent, rgb(212,209,198,0.5), transparent);
    transform: translateY(130px) rotate(90deg);
    left: -160px;
    height: 3px;
    z-index: 1;
}.course_summary_style .text_block_style::after {
    right: -160px;
    width: 200px;
    content: '';
    position: absolute;
    background: linear-gradient(to right, transparent, rgb(179,174,161,0.5), transparent);
    top: 0;
    z-index: 1;
    height: 3px;
    transform: translateY(130px) rotate(90deg);
}
}

@media (max-width: 1200px) {.course_summary_style .text_block_style {
    width: 70%;
}
}

@media (max-width: 992px) {.course_summary_style {
    padding: 100px 0;
}.course_summary_style .text_block_style {
    width: 80%;
    padding: 30px;
}.course_summary_style .img_circle_style {
    height: 350px;
}
}

@media (max-width: 768px) {.course_summary_style {
    padding: 80px 0;
}.course_summary_style .text_block_style {
    width: 90%;
    margin-top: -50px;
    padding: 25px;
}.course_summary_style .img_circle_style {
    height: 300px;
    transform: perspective(1000px) rotateX(3deg);
    width: 100%;
}.course_summary_style .learn_path_style::before,
    .course_summary_style .learn_path_style::after {
    display: none;
}
}

@media (max-width: 576px) {.course_summary_style {
    padding: 60px 0;
}.course_summary_style .text_block_style {
    padding: 20px;
    width: 100%;
    margin-top: -30px;
}.course_summary_style .img_circle_style {
    transform: none;
    height: 250px;
}.course_summary_style .text_block_style h2 {
    font-size: calc(37px * 0.85);
}.course_summary_style .text_block_style .description {
    font-size: calc(16px * 0.95);
    line-height: 1.6;
}}.footnote_ref_style {
    color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 6rem 0 4rem;
}.footnote_ref_style::before {
    content: "";
    background: #000000;
    left: 0;
    position: absolute;
    opacity: 0.85;
    height: 100%;
    z-index: -1;
    top: 0;
    width: 100%;
}.footnote_ref_style::after {
    animation: gridAnimate 15s linear infinite;
    width: 100%;
    top: 0;
    z-index: -1;
    left: 0;
    background-size: 30px 30px;
    background-position: center;
    content: "";
    background: 
        linear-gradient(rgba(rgb(212,209,198), 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(rgb(212,209,198), 0.2) 1px, transparent 1px);
    position: absolute;
    opacity: 0.15;
    height: 100%;
}@keyframes gridAnimate {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

.footnote_ref_style .container {
    grid-gap: 2rem;
    grid-template-columns: repeat(12, 1fr);
    display: grid;
}.footnote_ref_style .company_holder {
    grid-column: 1 / 5;
    position: relative;
    grid-row: 1;
}.footnote_ref_style .company_holder::before {
    height: 60px;
    opacity: 0.7;
    width: 60px;
    left: -20px;
    position: absolute;
    border-top: 2px solid rgb(212,209,198);
    border-left: 2px solid rgb(212,209,198);
    top: -20px;
    content: "";
}.footnote_ref_style .company_holder::after {
    bottom: -20px;
    border-right: 2px solid rgb(212,209,198);
    opacity: 0.7;
    width: 60px;
    height: 60px;
    right: -20px;
    border-bottom: 2px solid rgb(212,209,198);
    content: "";
    position: absolute;
}.footnote_ref_style .company_holder h3 {
    background: linear-gradient(90deg, #ffffff, rgb(212,209,198));
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    -webkit-background-clip: text !important;
    font-size: 31px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}.footnote_ref_style .company_holder h3::after {
    width: 30%;
    position: absolute;
    bottom: -5px;
    height: 2px;
    box-shadow: 0 0 10px rgb(212,209,198);
    content: "";
    background: rgb(212,209,198);
    left: 0;
}.footnote_ref_style .challenge_cta_style {
    opacity: 0.8;
    margin-top: 1.5rem;
    line-height: 1.6;
    font-size: 17px;
    color: #ffffff;
}.footnote_ref_style .collab_net_style {
    grid-row: 1;
    grid-column: 6 / 13;
    justify-content: flex-end;
    display: flex;
}.footnote_ref_style .top_edu_style {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}.footnote_ref_style .nav_lesson_style {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(4px);
}.footnote_ref_style .nav_lesson_style:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}.footnote_ref_style .nav_lesson_style::before {
    background: rgb(212,209,198);
    height: 0;
    position: absolute;
    transition: height 0.3s ease;
    width: 3px;
    content: "";
    left: 0;
    top: 0;
}.footnote_ref_style .nav_lesson_style:hover::before {
    height: 100%;
}.footnote_ref_style .nav_lesson_style h5 {
    position: relative;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-size: 24px;
    color: rgb(179,174,161);
    padding-left: 1rem;
    font-weight: 600;
}.footnote_ref_style .nav_lesson_style h5::before {
    left: 0;
    height: 5px;
    width: 5px;
    content: "";
    transform: translateY(-50%);
    position: absolute;
    background: rgb(212,209,198);
    box-shadow: 0 0 10px rgb(212,209,198);
    top: 50%;
    border-radius: 50%;
}.footnote_ref_style .nav_lesson_style .top_edu_style {
    flex-direction: column;
    gap: 0.7rem;
    display: flex;
}.footnote_ref_style .nav_lesson_style .top_edu_style a {
    color: #ffffff;
    overflow: hidden;
    opacity: 0.7;
    z-index: 1;
    padding: 0.4rem 1rem;
    font-size: 17px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}.footnote_ref_style .nav_lesson_style .top_edu_style a::before {
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
    background: linear-gradient(90deg, rgba(rgb(212,209,198,0.5), 0.1), transparent);
    width: 100%;
    z-index: -1;
    top: 0;
    transform: translateX(-100%);
    content: "";
    height: 100%;
}.footnote_ref_style .nav_lesson_style .top_edu_style a:hover {
    opacity: 1;
    padding-left: 1.5rem;
    color: #ffffff;
}.footnote_ref_style .nav_lesson_style .top_edu_style a:hover::before {
    transform: translateX(0);
}.privacy_cta_style {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    grid-column: 1 / 13;
    background: rgba(0, 0, 0, 0.5);
    grid-row: 2;
    padding: 1.5rem 0;
    margin-top: 4rem;
    position: relative;
}.privacy_cta_style::before {
    height: 1px;
    width: 60%;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(212,209,198), transparent);
    content: "";
    top: 0;
}.privacy_cta_style .container {
    justify-content: center;
    display: flex;
    align-items: center;
}.privacy_cta_style .guide_section_style {
    font-size: 13px;
    letter-spacing: 0.5px;
    opacity: 0.7;
    text-align: center;
    color: #ffffff;
}

@media screen and (max-width: 992px) {.footnote_ref_style .container {
    grid-template-columns: repeat(1, 1fr);
}.footnote_ref_style .company_holder {
    grid-column: 1;
    grid-row: 1;
}.footnote_ref_style .collab_net_style {
    grid-column: 1;
    margin-top: 2rem;
    grid-row: 2;
}.privacy_cta_style {
    margin-top: 3rem;
    grid-row: 3;
}
}

@media screen and (max-width: 768px) {.footnote_ref_style {
    padding: 4rem 0 3rem;
}.footnote_ref_style .top_edu_style {
    grid-template-columns: 1fr;
    gap: 2rem;
}.footnote_ref_style .nav_lesson_style {
    padding: 1.2rem;
}.footnote_ref_style .nav_lesson_style h5 {
    font-size: calc(24px * 0.9);
}.footnote_ref_style .company_holder::before,
    .footnote_ref_style .company_holder::after {
    width: 40px;
    height: 40px;
}
}

@media screen and (max-width: 576px) {.footnote_ref_style {
    padding: 3rem 0 2rem;
}.footnote_ref_style .company_holder h3 {
    font-size: calc(31px * 0.9);
}.footnote_ref_style .challenge_cta_style {
    font-size: calc(17px * 0.9);
}.footnote_ref_style .nav_lesson_style .top_edu_style a {
    font-size: calc(17px * 0.9);
}.privacy_cta_style {
    margin-top: 2rem;
    padding: 1rem 0;
}}.contact_form_section_style {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgb(239,238,234) 0%, #1a1e2e 100%);
    padding: 90px 0;
}.contact_form_section_style::before {
    width: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 40%),
        linear-gradient(0deg, transparent 80%, rgba(rgb(212,209,198), 0.05) 100%);
    z-index: 0;
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
}.contact_form_section_style::after {
    width: 100%;
    content: "";
    height: 100px;
    left: 0;
    z-index: 1;
    position: absolute;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
}.contact_form_section_style .container {
    position: relative;
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
}.contact_form_section_style h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 38px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: 2px;
    position: relative;
}.contact_form_section_style h2::before {
    background: rgb(212,209,198);
    position: absolute;
    left: calc(50% - 50px);
    height: 2px;
    content: "";
    width: 30px;
    bottom: -20px;
}.contact_form_section_style h2::after {
    height: 2px;
    background: rgb(212,209,198);
    bottom: -20px;
    content: "";
    left: calc(50% - 10px);
    position: absolute;
    width: 70px;
}.contact_form_section_style .help_form_style {
    backdrop-filter: blur(10px);
    border-radius: 28px;
    display: grid;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    grid-template-columns: 6fr 4fr;
    border: 1px solid rgba(255, 255, 255, 0.05);
}.contact_form_section_style .img_circle_style {
    position: relative;
    min-height: 100%;
}.contact_form_section_style .img_circle_style::before {
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    width: 100%;
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
    left: 0;
}.contact_form_section_style .img_circle_style::after {
    height: 100%;
    width: 100%;
    content: "";
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(rgb(212,209,198), 0.1) 10px, rgba(rgb(212,209,198), 0.1) 11px);
    top: 0;
    animation: scanLines 5s linear infinite;
    z-index: 2;
    position: absolute;
    left: 0;
}@keyframes scanLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.contact_form_section_style .help_request_style {
    position: relative;
    padding: 50px;
}.contact_form_section_style .help_request_style::before {
    z-index: -1;
    height: 100%;
    content: "";
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
}.contact_form_section_style #contact {
    flex-direction: column;
    gap: 25px;
    display: flex;
}.contact_form_section_style h3 {
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}.contact_form_section_style h3::after {
    left: 0;
    height: 2px;
    content: "";
    bottom: -10px;
    background: rgb(212,209,198);
    position: absolute;
    width: 50px;
}.contact_form_section_style input[type="text"] {
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 18px;
    width: 100%;
    border-radius: 10px;
    color: #ffffff;
}.contact_form_section_style input[type="text"]:focus {
    outline: none;
    border-color: rgb(212,209,198);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(rgb(212,209,198), 0.2);
}.contact_form_section_style input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}.contact_form_section_style .query_block_style {
    margin-top: 5px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}.contact_form_section_style .query_block_style input[type="checkbox"] {
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    appearance: none;
    border-radius: 3px;
    height: 24px;
    margin-top: 2px;
    width: 24px;
}.contact_form_section_style .query_block_style input[type="checkbox"]:checked {
    background: rgb(212,209,198);
    border-color: rgb(212,209,198);
}.contact_form_section_style .query_block_style input[type="checkbox"]:checked::after {
    left: 9px;
    transform: rotate(45deg);
    border-width: 0 2px 2px 0;
    height: 10px;
    border: solid #ffffff;
    width: 6px;
    content: "";
    top: 6px;
    position: absolute;
}.contact_form_section_style .query_block_style label {
    font-size: calc(18px - 2px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}.contact_form_section_style .query_block_style a {
    color: rgb(212,209,198);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}.contact_form_section_style .query_block_style a:hover {
    color: #ffffff;
}.contact_form_section_style .query_block_style a::after {
    background: rgb(212,209,198);
    transition: all 0.3s ease;
    bottom: -2px;
    height: 1px;
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
}.contact_form_section_style .query_block_style a:hover::after {
    background: #ffffff;
}.contact_form_section_style .inquiry_query_style {
    align-self: flex-start;
    background: rgb(212,209,198);
    font-size: 16px;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    overflow: hidden;
    padding: 16px 35px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 10px;
    color: #ffffff;
    font-weight: 600;
}.contact_form_section_style .inquiry_query_style::before {
    left: -100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    content: "";
    width: 100%;
    top: 0;
    transition: all 0.5s ease;
    position: absolute;
}.contact_form_section_style .inquiry_query_style:hover {
    background: rgb(179,174,161);
    transform: translateY(-3px);
}.contact_form_section_style .inquiry_query_style:hover::before {
    left: 100%;
}.contact_form_section_style svg {
    height: 22px;
    fill: rgb(212,209,198);
    width: 22px;
    filter: drop-shadow(0 0 5px rgba(rgb(212,209,198), 0.5));
    transition: all 0.3s ease;
}.contact_form_section_style svg path {
    fill: rgb(212,209,198);
    transition: all 0.3s ease;
}.contact_form_section_style svg:hover {
    transform: scale(1.1);
    fill: #ffffff;
}.contact_form_section_style svg:hover path {
    fill: #ffffff;
}

@media (max-width: 992px) {.contact_form_section_style {
    padding: 70px 0;
}.contact_form_section_style .help_form_style {
    grid-template-columns: 1fr;
}.contact_form_section_style .img_circle_style {
    min-height: 300px;
}.contact_form_section_style .help_request_style {
    padding: 40px 30px 50px;
}
}

@media (max-width: 768px) {.contact_form_section_style {
    padding: 50px 0;
}.contact_form_section_style h2 {
    margin-bottom: 50px;
    font-size: calc(38px - 4px);
}.contact_form_section_style .img_circle_style {
    min-height: 250px;
}
}

@media (max-width: 576px) {.contact_form_section_style {
    padding: 40px 0;
}.contact_form_section_style .container {
    padding: 0 15px;
}.contact_form_section_style h2 {
    font-size: calc(38px - 6px);
    margin-bottom: 40px;
}.contact_form_section_style h2::before {
    left: calc(50% - 35px);
    width: 20px;
}.contact_form_section_style h2::after {
    width: 50px;
}.contact_form_section_style .help_request_style {
    padding: 30px 20px 40px;
}.contact_form_section_style #contact {
    gap: 20px;
}.contact_form_section_style .inquiry_query_style {
    width: 100%;
}.contact_form_section_style .img_circle_style {
    min-height: 200px;
}}.gratHub_style {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgb(212,209,198,0.5), rgb(179,174,161) 120%);
    overflow: hidden;
    position: relative;
}.gratHub_style::before {
    height: 300px;
    background: radial-gradient(circle, rgb(255, 255, 255, 0.5) 10%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    top: -10%;
    opacity: 0.2;
    content: "";
    transform: rotate(-15deg);
    position: absolute;
    width: 300px;
    right: -5%;
}.gratHub_style::after {
    animation: float 9s ease-in-out infinite reverse;
    opacity: 0.15;
    bottom: -5%;
    height: 250px;
    left: -5%;
    transform: rotate(15deg);
    content: "";
    background: radial-gradient(circle, rgb(179,174,161) 10%, transparent 70%);
    position: absolute;
    width: 250px;
}.gratHub_style .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 1.5rem;
}.gratHub_style .master_classes_style {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.92);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(1deg);
    padding: 3.5rem;
}.gratHub_style .master_classes_style:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 15px 25px rgba(0, 0, 0, 0.06);
}.gratHub_style .master_classes_style > div:first-child {
    position: relative;
    margin-bottom: 2rem;
}.gratHub_style .master_classes_style > div:first-child::before {
    position: absolute;
    transform: translateY(-50%);
    content: "";
    height: 70%;
    left: -2rem;
    background: linear-gradient(to bottom, rgb(212,209,198), rgb(179,174,161));
    top: 50%;
    width: 0.5rem;
}.gratHub_style h5 {
    transition: transform 0.4s ease;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    transform: translateX(0);
    padding-bottom: 0.5rem;
    position: relative;
    color: #000000;
    font-size: 22px;
}.gratHub_style .master_classes_style:hover h5 {
    transform: translateX(10px);
}.gratHub_style h5::after {
    left: 0;
    position: absolute;
    content: "";
    background: linear-gradient(to right, rgb(212,209,198), transparent);
    transition: width 0.4s ease;
    bottom: 0;
    height: 3px;
    width: 80px;
}.gratHub_style .master_classes_style:hover h5::after {
    width: 120px;
}.gratHub_style .master_classes_style > div:last-child {
    position: relative;
    overflow: hidden;
}.gratHub_style p {
    color: #000000;
    margin: 0;
    line-height: 1.7;
    position: relative;
    transition: color 0.3s ease;
    font-size: 17px;
}.gratHub_style a {
    padding: 0.5rem 0;
    display: block;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    position: relative;
}.gratHub_style a::before {
    background: rgb(212,209,198);
    content: "";
    width: 0;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 0;
    left: 0;
    height: 1px;
    position: absolute;
}.gratHub_style a:hover {
    transform: translateY(-3px);
}.gratHub_style a:hover::before {
    width: 100%;
}.gratHub_style a:hover p {
    color: rgb(212,209,198);
}.gratHub_style a:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(212,209,198,0.5);
}

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

@media screen and (max-width: 992px) {.gratHub_style {
    padding: 5rem 0;
}.gratHub_style .master_classes_style {
    padding: 2.5rem;
}.gratHub_style h5 {
    font-size: calc(22px * 0.95);
}
}

@media screen and (max-width: 768px) {.gratHub_style {
    padding: 4rem 0;
}.gratHub_style .master_classes_style {
    clip-path: polygon(0 0, 100% 0, 100% 97%, 97% 100%, 0 100%);
    padding: 2rem;
}.gratHub_style .master_classes_style > div:first-child::before {
    width: 0.3rem;
    left: -1.5rem;
}.gratHub_style h5 {
    font-size: calc(22px * 0.9);
}
}

@media screen and (max-width: 576px) {.gratHub_style {
    padding: 3rem 0;
}.gratHub_style .master_classes_style {
    clip-path: polygon(0 0, 100% 0, 100% 98%, 98% 100%, 0 100%);
    padding: 1.75rem;
}.gratHub_style .master_classes_style > div:first-child {
    margin-bottom: 1.5rem;
}.gratHub_style .master_classes_style > div:first-child::before {
    left: -1.2rem;
    height: 60%;
}.gratHub_style h5 {
    font-size: calc(22px * 0.85);
}.gratHub_style p {
    font-size: calc(17px * 0.95);
    line-height: 1.6;
}}.sign_up_style {
    padding: 4rem 2rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(212,209,198,0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}.sign_up_style::before {
    top: -50%;
    background-size: 30px 30px;
    content: "";
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 1px, transparent 1px);
    opacity: 0.4;
    height: 200%;
    left: -50%;
    z-index: -1;
    pointer-events: none;
    position: absolute;
    width: 200%;
    transform: rotate(-15deg);
}.sign_up_style::after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 0;
    background: radial-gradient(ellipse at center, rgb(212,209,198,0.5) 0%, transparent 70%);
    top: 0;
    height: 100%;
    width: 100%;
}.sign_up_style .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.sign_up_style .master_classes_style {
    border-left: 3px solid rgb(179,174,161);
    transform: perspective(1000px) rotateX(2deg);
    gap: 2rem;
    grid-template-columns: 1fr;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 
                0 0 0 1px rgba(255,255,255,0.1);
    display: grid;
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 100%);
    z-index: 2;
    backdrop-filter: blur(10px);
}.sign_up_style h3 {
    color: #ffffff;
    padding-left: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    position: relative;
    margin: 0;
    font-size: calc(21px * 1.1);
    line-height: 1.4;
}.sign_up_style h3::before {
    height: 100%;
    background: linear-gradient(to bottom, rgb(179,174,161), transparent);
    left: 0;
    content: "";
    width: 3px;
    position: absolute;
    top: 0;
}.sign_up_style .input_holder {
    gap: 1.25rem;
    flex-direction: column;
    transform: translateZ(0);
    max-width: 650px;
    display: flex;
    margin: 0 auto;
    position: relative;
}.sign_up_style .input_holder div {
    position: relative;
    width: 100%;
}.sign_up_style .input_holder div::before {
    left: 0;
    position: absolute;
    border-radius: 10px;
    width: 100%;
    pointer-events: none;
    height: 100%;
    transition: opacity 0.3s ease-out;
    content: "";
    top: 0;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(to right, rgb(179,174,161,0.5), transparent);
}.sign_up_style .input_holder div:focus-within::before {
    opacity: 0.3;
}.sign_up_style .sub_transition_style {
    backdrop-filter: blur(5px);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 15px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.2);
}.sign_up_style .sub_transition_style:focus {
    outline: none;
    transform: translateY(-2px);
    border-color: rgb(179,174,161);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgb(179,174,161,0.5);
}.sign_up_style .sub_transition_style::placeholder {
    color: rgba(255,255,255,0.6);
}.sign_up_style .sub_field_style {
    font-weight: 600;
    overflow: hidden;
    align-self: flex-start;
    background: linear-gradient(135deg, rgb(212,209,198) 0%, rgb(179,174,161) 100%);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    border-radius: 10px;
    padding: 0.9rem 2rem;
    font-size: 19px;
    position: relative;
    border: none;
    cursor: pointer;
}.sign_up_style .sub_field_style::before {
    left: -100%;
    transition: left 0.6s ease;
    top: 0;
    width: 100%;
    content: "";
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    position: absolute;
}.sign_up_style .sub_field_style:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0,0,0,0.2);
}.sign_up_style .sub_field_style:hover::before {
    left: 100%;
}.sign_up_style .sub_field_style:active {
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

@media (min-width: 768px) {.sign_up_style {
    padding: 5rem 3rem;
}.sign_up_style .master_classes_style {
    grid-template-columns: 1.2fr 1fr;
    transform: perspective(1000px) rotateX(1deg);
    padding: 3rem;
    align-items: center;
}.sign_up_style h3 {
    font-size: 21px;
    padding-right: 2rem;
}.sign_up_style .input_holder {
    align-items: stretch;
    flex-direction: row;
}.sign_up_style .input_holder div {
    flex: 1;
}.sign_up_style .sub_transition_style {
    height: 100%;
}
}

@media (min-width: 992px) {.sign_up_style {
    padding: 6rem 4rem;
}.sign_up_style::before {
    background-size: 40px 40px;
}.sign_up_style .master_classes_style {
    grid-template-columns: 1.5fr 1fr;
    padding: 3.5rem;
    gap: 3rem;
}.sign_up_style h3 {
    font-size: calc(21px * 1.1);
}
}

@media (max-width: 767px) {.sign_up_style .master_classes_style {
    padding: 2rem 1.5rem;
}.sign_up_style h3 {
    font-size: calc(21px * 0.9);
    margin-bottom: 1.5rem;
}.sign_up_style .sub_field_style {
    margin-top: 0.5rem;
    width: 100%;
}
}

@media (max-width: 480px) {.sign_up_style {
    padding: 3rem 1.5rem;
}.sign_up_style .master_classes_style {
    padding: 1.5rem;
}.sign_up_style h3 {
    font-size: calc(21px * 0.85);
    padding-left: 1rem;
}.sign_up_style .sub_transition_style {
    padding: 0.9rem 1rem;
}}.education_experience_style {
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(212,209,198,0.5), rgb(239,238,234));
}.education_experience_style::before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgb(255, 255, 255, 0.5), transparent 70%);
    height: 100%;
    top: 0;
    width: 100%;
    pointer-events: none;
}.education_experience_style::after {
    position: absolute;
    right: -5%;
    border-radius: 50% 60% 70% 40%;
    z-index: 0;
    content: "";
    opacity: 0.05;
    filter: blur(40px);
    bottom: -10%;
    width: 40%;
    height: 40%;
    background: rgb(212,209,198);
}.education_experience_style .container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1140px;
    z-index: 2;
    position: relative;
}.education_experience_style .student_feedback_style {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.8);
    display: grid;
    transform: perspective(1000px) rotateX(2deg);
    padding: 3rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
}.education_experience_style .student_feedback_style:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg);
}.education_experience_style .student_feedback_style > div:first-child {
    position: relative;
    order: 1;
}.education_experience_style .student_feedback_style > div:nth-child(2) {
    position: relative;
    order: 2;
}.education_experience_style .student_feedback_style > div:last-child {
    position: relative;
    order: 3;
}.education_experience_style .img_circle_style {
    width: 100%;
    height: 300px;
    clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), clip-path 0.5s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}.education_experience_style .student_feedback_style:hover .img_circle_style {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(-5px) scale(1.02);
}.education_experience_style .img_circle_style::after {
    inset: 0;
    position: absolute;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 50%);
}.education_experience_style .name {
    position: relative;
    color: rgb(212,209,198);
    margin: 0 0 0.5rem;
    transition: transform 0.4s ease-out;
    font-weight: 700;
    transform: translateX(0);
    font-size: 23px;
}.education_experience_style .name::before {
    transition: width 0.4s ease-out 0.1s;
    content: "";
    background: rgb(212,209,198);
    position: absolute;
    width: 0;
    top: 50%;
    left: -1rem;
    height: 2px;
}.education_experience_style .student_feedback_style:hover .name {
    transform: translateX(1rem);
}.education_experience_style .student_feedback_style:hover .name::before {
    width: 1.5rem;
}.education_experience_style .student_feedback_style > div:nth-child(2) > div {
    opacity: 0.85;
    color: rgb(179,174,161);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
}.education_experience_style .student_feedback_style:hover > div:nth-child(2) > div {
    transform: translateY(-3px);
    opacity: 1;
}.education_experience_style .job_area_style {
    opacity: 0.92;
    position: relative;
    font-family: Arial, sans-serif;
    margin: 0;
    font-size: 18px;
    transition: opacity 0.4s ease;
    color: #000000;
    padding: 0;
    line-height: 1.7;
}.education_experience_style .job_area_style::before {
    content: "";
    opacity: 0.1;
    font-size: 8rem;
    z-index: -1;
    color: rgb(212,209,198);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: -1rem;
    position: absolute;
    transform: rotate(-5deg);
    top: -2.5rem;
}.education_experience_style .student_feedback_style:hover .job_area_style::before {
    transform: rotate(5deg) translateY(-10px);
}.education_experience_style .student_feedback_style:hover .job_area_style {
    opacity: 1;
}

@media (min-width: 768px) {.education_experience_style .student_feedback_style {
    grid-template-columns: 250px 1fr;
    padding: 3.5rem;
    grid-template-rows: auto 1fr;
    gap: 2rem 3rem;
}.education_experience_style .student_feedback_style > div:first-child {
    grid-row: 1 / span 2;
    grid-column: 1;
    order: unset;
}.education_experience_style .student_feedback_style > div:nth-child(2) {
    grid-column: 2;
    order: unset;
    grid-row: 1;
}.education_experience_style .student_feedback_style > div:last-child {
    grid-column: 2;
    grid-row: 2;
    order: unset;
}.education_experience_style .img_circle_style {
    clip-path: polygon(0% 0%, 95% 5%, 100% 100%, 5% 95%);
    height: 100%;
}.education_experience_style .student_feedback_style:hover .img_circle_style {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
}

@media (min-width: 992px) {.education_experience_style {
    padding: 7rem 0;
}.education_experience_style .student_feedback_style {
    gap: 3rem 4rem;
    grid-template-columns: 320px 1fr;
    padding: 4rem;
}.education_experience_style .name {
    margin-bottom: 0.75rem;
    font-size: calc(23px * 1.1);
}.education_experience_style .student_feedback_style > div:nth-child(2) > div {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}.education_experience_style .job_area_style {
    line-height: 1.8;
    font-size: calc(18px * 1.05);
}
}

@media (max-width: 767px) {.education_experience_style {
    padding: 4rem 0;
}.education_experience_style .student_feedback_style {
    padding: 2rem;
}.education_experience_style .img_circle_style {
    height: 250px;
    margin-bottom: 1rem;
}.education_experience_style .name {
    text-align: center;
    margin-bottom: 0.5rem;
}.education_experience_style .student_feedback_style > div:nth-child(2) > div {
    margin-bottom: 1.5rem;
    text-align: center;
}.education_experience_style .job_area_style {
    font-size: calc(18px * 0.95);
    line-height: 1.6;
}.education_experience_style .job_area_style::before {
    transform: translateX(-50%);
    left: 50%;
    top: -1.5rem;
}.education_experience_style .student_feedback_style:hover .name {
    transform: translateX(0);
}.education_experience_style .name::before {
    transform: translateX(-50%);
    left: 50%;
}.education_experience_style .student_feedback_style:hover .name::before {
    width: 50px;
}}.privacy_hold_style {
    gap: 1.5rem;
    background-color: rgb(212,209,198);
    font-family: Arial, sans-serif;
    padding: 2rem;
    flex-direction: column;
    display: flex;
    color: #ffffff;
    box-shadow: 0 0 10px rgb(212,209,198,0.5);
}.privacy_hold_style h1, .privacy_hold_style h2 {
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: rgb(212,209,198);
    text-transform: uppercase;
}.privacy_hold_style h1 {
    font-size: 46px;
    border-radius: 10px;
    padding-left: 0.5rem;
    padding: 0.5rem 1rem;
    border-left: 4px solid rgb(212,209,198);
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
}.privacy_hold_style h2 {
    padding-left: 0.5rem;
    border-radius: 10px;
    font-size: 37px;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    border-left: 4px solid rgb(179,174,161);
    padding: 0.5rem 1rem;
}.privacy_hold_style h3, .privacy_hold_style h4, .privacy_hold_style h5, .privacy_hold_style h6 {
    margin: 10px 0;
}.privacy_hold_style ul {
    margin: 10px 0;
    gap: 0.75rem;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
    display: flex;
}.privacy_hold_style ul li {
    align-items: center;
    background-color: rgb(179,174,161,0.5);
    gap: 1rem;
    font-weight: 400;
    padding: 0.5rem;
    display: flex;
    font-size: 14px;
    border-radius: 10px;
}.privacy_hold_style ul li::before {
    font-size: 1.2rem;
    color: rgb(212,209,198);
    content: '⭑';
}.privacy_hold_style p, .privacy_hold_style span {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1rem;
}.privacy_hold_style div {
    margin-bottom: 1rem;
}.privacy_hold_style section {
    flex-direction: column;
    gap: 1rem;
    display: flex;
}
@media only screen and (max-width: 800px) {.privacy_hold_style {
    padding: 1.5rem;
    border-radius: 10px;
    gap: 1rem;
}.privacy_hold_style h1 {
    font-size: calc(20px * 0.9);
}.privacy_hold_style h2 {
    font-size: calc(20px * 0.9);
}.privacy_hold_style ul {
    gap: 0.5rem;
}.privacy_hold_style ul li {
    padding: 0.75rem;
}.privacy_hold_style ul li::before {
    font-size: 1rem;
}}.user_feedback_style {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(239,238,234) 0%, #ffffff 100%);
    overflow: hidden;
}.user_feedback_style::before {
    top: -10%;
    pointer-events: none;
    height: 40%;
    background: radial-gradient(circle, rgb(212,209,198,0.5) 0%, transparent 70%);
    width: 40%;
    opacity: 0.4;
    right: -10%;
    position: absolute;
    content: "";
}.user_feedback_style::after {
    width: 40%;
    pointer-events: none;
    position: absolute;
    opacity: 0.4;
    background: radial-gradient(circle, rgb(179,174,161,0.5) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    height: 40%;
    content: "";
}.user_feedback_style h2 {
    position: relative;
    text-align: left;
    color: #000000;
    transform: translateX(5px);
    font-weight: 700;
    transition: transform 0.5s ease;
    margin-bottom: 60px;
    font-size: 28px;
}.user_feedback_style h2::after {
    content: "";
    position: absolute;
    width: 60px;
    transform: scaleX(1);
    background: linear-gradient(90deg, rgb(212,209,198) 0%, rgb(179,174,161) 100%);
    height: 4px;
    bottom: -12px;
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
}.user_feedback_style h2:hover {
    transform: translateX(8px);
}.user_feedback_style h2:hover::after {
    transform: scaleX(1.5);
}.user_feedback_style .container.master_classes_style {
    z-index: 1;
    position: relative;
}.user_feedback_style .edu_reviews_style {
    gap: 30px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.user_feedback_style .student_feedback_style {
    padding: 30px;
    z-index: 1;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(0);
    position: relative;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.04),
                -12px -12px 24px 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);
}.user_feedback_style .student_feedback_style::before {
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
    height: 100%;
    position: absolute;
    content: "";
    transition: opacity 0.5s ease;
    width: 100%;
    top: 0;
    opacity: 0;
}.user_feedback_style .student_feedback_style:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.07),
                -15px -15px 30px rgba(255, 255, 255, 1),
                inset 1px 1px 1px rgba(255, 255, 255, 0.8),
                inset -1px -1px 1px rgba(0, 0, 0, 0.06);
    transform: translateY(-10px);
}.user_feedback_style .student_feedback_style:hover::before {
    opacity: 1;
}.user_feedback_style .student_feedback_style h3 {
    color: rgb(212,209,198);
    display: inline-block;
    font-size: calc(19px - 2px);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}.user_feedback_style .student_feedback_style h3::after {
    transition: width 0.4s ease;
    background: linear-gradient(90deg, rgb(212,209,198) 0%, transparent 100%);
    left: 0;
    width: 0;
    position: absolute;
    height: 2px;
    content: "";
    bottom: -5px;
}.user_feedback_style .student_feedback_style:hover h3::after {
    width: 100%;
}.user_feedback_style .student_feedback_style .description {
    color: #000000;
    line-height: 1.6;
    font-size: 12px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}.user_feedback_style .student_feedback_style .description::before {
    z-index: -1;
    transition: transform 0.5s ease;
    opacity: 0.1;
    left: -10px;
    position: absolute;
    color: rgb(212,209,198,0.5);
    top: -20px;
    font-size: 80px;
    content: "";
}.user_feedback_style .student_feedback_style:hover .description::before {
    transform: translate(5px, 5px) rotate(5deg);
}.user_feedback_style .student_feedback_style div {
    transform: translateZ(0);
    width: 60px;
    border-radius: 50%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                -5px -5px 15px rgba(255, 255, 255, 0.8),
                inset 1px 1px 1px rgba(255, 255, 255, 0.4),
                inset -1px -1px 1px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 60px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}.user_feedback_style .student_feedback_style:hover div {
    transform: scale(1.1) translateZ(0);
}.user_feedback_style .student_feedback_style img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    object-fit: cover;
    height: 100%;
}.user_feedback_style .student_feedback_style:hover img {
    transform: scale(1.1);
}.user_feedback_style .student_feedback_style:nth-child(odd) {
    animation: floatUp 8s infinite alternate ease-in-out;
}.user_feedback_style .student_feedback_style:nth-child(even) {
    animation: floatUp 9s 0.5s infinite alternate ease-in-out;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

@media (max-width: 992px) {.user_feedback_style {
    padding: 60px 0;
}.user_feedback_style h2 {
    margin-bottom: 40px;
    font-size: calc(28px - 4px);
}.user_feedback_style .edu_reviews_style {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}
}

@media (max-width: 768px) {.user_feedback_style {
    padding: 50px 0;
}.user_feedback_style h2 {
    transform: translateX(0);
    text-align: center;
    margin-bottom: 35px;
}.user_feedback_style h2::after {
    transform: translateX(-50%) scaleX(1);
    left: 50%;
}.user_feedback_style h2:hover {
    transform: translateX(0);
}.user_feedback_style h2:hover::after {
    transform: translateX(-50%) scaleX(1.5);
}.user_feedback_style .edu_reviews_style {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}.user_feedback_style .student_feedback_style {
    padding: 25px;
}
}

@media (max-width: 576px) {.user_feedback_style {
    padding: 40px 0;
}.user_feedback_style h2 {
    margin-bottom: 30px;
    font-size: calc(28px - 6px);
}.user_feedback_style .edu_reviews_style {
    grid-template-columns: 1fr;
    gap: 25px;
}.user_feedback_style .student_feedback_style h3 {
    font-size: 19px;
}.user_feedback_style .student_feedback_style div {
    width: 50px;
    height: 50px;
}.user_feedback_style .student_feedback_style:hover {
    transform: translateY(-5px);
}@keyframes floatUp {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-5px);
        }
    }
}.check_it_out_now_style {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(212,209,198,0.5), rgb(179,174,161,0.5) 70%);
    position: relative;
    padding: 7rem 2rem;
}.check_it_out_now_style::before {
    top: 0;
    background: 
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}.check_it_out_now_style::after {
    right: -15vw;
    z-index: 0;
    width: 30vw;
    height: 30vw;
    filter: blur(60px);
    position: absolute;
    background: rgb(212,209,198);
    content: "";
    opacity: 0.1;
    border-radius: 50%;
    top: -15vw;
}.check_it_out_now_style .container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    max-width: 1200px;
    align-items: center;
    z-index: 2;
}.check_it_out_now_style h2 {
    text-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-size: clamp(1.75rem, 3vw, 35px);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    position: relative;
    line-height: 1.4;
    transform: translateZ(20px);
    max-width: 800px;
    color: #000000;
    font-weight: 700;
}.check_it_out_now_style h2::after {
    width: 60px;
    position: absolute;
    height: 3px;
    left: 50%;
    content: "";
    background: rgb(179,174,161);
    transform: translateX(-50%) scaleX(0.6);
    bottom: -15px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.check_it_out_now_style .container:hover h2::after {
    transform: translateX(-50%) scaleX(1);
}.check_it_out_now_style .master_classes_style {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    gap: 1.5rem;
    box-shadow: 
    0 20px 40px rgba(0,0,0,0.08),
    0 5px 12px rgba(0,0,0,0.05),
    0 0 0 1px rgba(255,255,255,0.2) inset;
    background: rgba(255, 255, 255, 0.85);
    justify-content: center;
    transform: translateZ(40px) rotateX(2deg);
    align-items: center;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    clip-path: polygon(
    3% 0%, 
    97% 0%, 
    100% 3%, 
    100% 97%, 
    97% 100%, 
    3% 100%, 
    0% 97%, 
    0% 3%
  );
}.check_it_out_now_style .master_classes_style:hover {
    transform: translateZ(50px) rotateX(0deg);
    box-shadow: 
    0 25px 50px rgba(0,0,0,0.12),
    0 10px 15px rgba(0,0,0,0.07),
    0 0 0 1px rgba(255,255,255,0.3) inset;
}.check_it_out_now_style svg {
    transform-origin: center;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
    width: 42px;
    transition: transform 0.3s ease, filter 0.3s ease;
    height: 42px;
}.check_it_out_now_style .master_classes_style:hover svg {
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.15));
    transform: scale(1.1) rotate(5deg);
}.check_it_out_now_style svg path {
    fill: rgb(212,209,198);
    transition: fill 0.3s ease;
}.check_it_out_now_style .master_classes_style:hover svg path {
    fill: rgb(179,174,161);
}.check_it_out_now_style .inquiry_query_style {
    position: relative;
    box-shadow: 
    0 4px 12px rgba(0,0,0,0.1),
    0 2px 4px rgba(0,0,0,0.06),
    0 0 0 1px rgba(255,255,255,0.1) inset;
    text-decoration: none;
    letter-spacing: 0.03em;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(212,209,198), rgb(212,209,198,0.5) 130%);
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.9rem 2rem;
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    color: #ffffff;
    font-size: 18px;
    justify-content: center;
    font-weight: 600;
}.check_it_out_now_style .inquiry_query_style::before {
    width: 100%;
    position: absolute;
    height: 100%;
    content: "";
    left: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    top: 0;
}.check_it_out_now_style .inquiry_query_style:hover {
    box-shadow: 
    0 8px 20px rgba(0,0,0,0.15),
    0 4px 8px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.2) inset;
    background: linear-gradient(135deg, rgb(179,174,161), rgb(179,174,161) 130%);
    transform: translateY(-3px);
}.check_it_out_now_style .inquiry_query_style:hover::before {
    transform: translateX(100%);
}.check_it_out_now_style .inquiry_query_style:active {
    transform: translateY(-1px);
    box-shadow: 
    0 3px 8px rgba(0,0,0,0.12),
    0 1px 3px rgba(0,0,0,0.05),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}

@media (max-width: 768px) {.check_it_out_now_style {
    padding: 5rem 1.5rem;
}.check_it_out_now_style h2 {
    margin-bottom: 2.5rem;
}.check_it_out_now_style .master_classes_style {
    flex-direction: column;
    transform: translateZ(20px) rotateX(1deg);
    padding: 1.5rem;
}.check_it_out_now_style .inquiry_query_style {
    padding: 0.8rem 1.8rem;
    width: 100%;
}
}

@media (max-width: 480px) {.check_it_out_now_style {
    padding: 4rem 1rem;
}.check_it_out_now_style h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}.check_it_out_now_style .master_classes_style {
    transform: translateZ(10px) rotateX(0deg);
    padding: 1.25rem;
}.check_it_out_now_style svg {
    height: 36px;
    width: 36px;
}.check_it_out_now_style .inquiry_query_style {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}
}

@media (prefers-reduced-motion: reduce) {.check_it_out_now_style .master_classes_style,
  .check_it_out_now_style .inquiry_query_style,
  .check_it_out_now_style svg,
  .check_it_out_now_style h2::after,
  .check_it_out_now_style .inquiry_query_style::before {
    transition: none;
    transform: none;
    animation: none;
}.check_it_out_now_style .master_classes_style:hover {
    transform: none;
}.check_it_out_now_style .inquiry_query_style:hover {
    transform: none;
}.check_it_out_now_style .master_classes_style:hover svg {
    transform: none;
}
}

@media (hover: hover) {.check_it_out_now_style .container {
    cursor: default;
}.check_it_out_now_style .inquiry_query_style {
    cursor: pointer;
}
}