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

* {
    scrollbar-width: auto;
    scrollbar-color: rgb(85,99,116,0.5) rgb(85,99,116,0.5);
}

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


.experience_trial {
    z-index: 1;
    background: linear-gradient(135deg, rgb(85,99,116,0.5), rgb(118,133,149,0.5));
    overflow: hidden;
    padding: 7rem 0;
    position: relative;
}

.experience_trial .container {
    flex-direction: column;
    position: relative;
    padding: 0 2rem;
    max-width: 1200px;
    gap: 3rem;
    display: flex;
    transform: perspective(1000px) rotateX(2deg);
    align-items: center;
    margin: 0 auto;
}

.experience_trial .skill_spot:hover {
    box-shadow: 
    0 15px 35px -5px rgba(0, 0, 0, 0.15),
    0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.experience_trial svg {
    width: 48px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: pulse 2s infinite alternate;
}

.experience_trial .skill_spot > div {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

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

.get_updates {
    overflow: hidden;
    z-index: 1;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(118,133,149,0.5), rgb(85,99,116), rgba(0, 0, 0, 0.5));
}

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

.get_updates .skill_spot {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    padding: 40px;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 900px;
    display: flex;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    justify-content: center;
    flex-direction: column;
}

.get_updates .input_holder div {
    margin-right: 15px;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.get_updates .input_holder div::before {
    transform-origin: left;
    width: 100%;
    z-index: 1;
    left: 0;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(118,133,149), rgb(85,99,116));
    height: 2px;
    position: absolute;
    content: "";
    bottom: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.get_updates input[type="email"]:focus::placeholder {
    opacity: 0.5;
}

.get_updates .updates_card {
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 600;
    overflow: hidden;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: none;
    height: 50px;
    background: linear-gradient(135deg, rgb(118,133,149), rgb(85,99,116));
    min-width: 160px;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.03em;
    position: relative;
}

.meet_us .container {
    display: flex;
    max-width: 1200px;
    justify-content: flex-end;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

.meet_us .reading_area {
    transform: translateY(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 
                0 6px 20px rgba(0, 0, 0, 0.04),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    position: relative;
    width: 70%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.meet_us ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.meet_us li:last-child {
    animation-delay: 0.7s;
}

.meet_us h4 {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 21px;
    color: #000000;
    letter-spacing: 0.5px;
    position: relative;
}

.pricing_bucket {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: #ffffff;
}

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

.pricing_bucket .fee_options::after {
    width: 250px;
    pointer-events: none;
    border-radius: 50%;
    right: -120px;
    bottom: -80px;
    height: 250px;
    content: "";
    position: absolute;
    opacity: 0.15;
    background: radial-gradient(circle, rgb(85,99,116,0.5) 0%, transparent 70%);
}

.pricing_bucket .pricing_levels {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
    display: grid;
    padding: 0;
    list-style: none;
}

.pricing_bucket .edu_packages:hover {
    transform: translateY(-8px) scale(1.02);
}

.pricing_bucket .pay_options {
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.12) 0%, 
        rgba(255,255,255,0.05) 100%);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2), 
                0 5px 10px rgba(0,0,0,0.1), 
                inset 0 1px 1px rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    padding: 5px;
    transition: all 0.3s ease;
}

.pricing_bucket .edu_packages:hover .price_grid h4::after {
    height: 100%;
    opacity: 1;
}

.pricing_bucket .cost_plan {
    margin-top: auto;
    border-radius: 4px;
    background: linear-gradient(135deg, 
        rgb(118,133,149,0.5) 0%, 
        rgb(85,99,116,0.5) 100%);
    position: relative;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 5px 10px;
    font-size: calc(24px * 1.3);
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header .main_mainwrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background: #ffffff;
}

header .nav_mainwrap {
    justify-content: center;
    position: relative;
    text-decoration: none;
    padding: 0 0 1rem 0;
    display: flex;
}

header .nav_mainwrap:hover svg {
    transform: scale(1.03);
}

header .site_core {
    width: 100%;
    padding-top: 1rem;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    gap: 0.7rem;
}

header .top_mentor:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

header .top_mentor:hover::before {
    width: 100%;
}

.privacy_block {
    color: #ffffff;
    display: flex;
    box-shadow: 0 0 10px rgb(118,133,149,0.5);
    font-family: Arial, sans-serif;
    gap: 1.5rem;
    background-color: rgb(118,133,149);
    padding: 2rem;
    flex-direction: column;
}

.privacy_block h3, .privacy_block h4, .privacy_block h5, .privacy_block h6 {
    margin: 10px 0;
}

.privacy_block ul li {
    font-size: 14px;
    align-items: center;
    padding: 0.5rem;
    border-radius: 10px;
    background-color: rgb(85,99,116,0.5);
    display: flex;
    gap: 1rem;
    font-weight: 400;
}

.welcome_page {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(152,168,183) 0%, rgb(118,133,149,0.5) 100%);
    min-height: 100vh;
    padding: 5% 3%;
    justify-content: center;
    position: relative;
    align-items: center;
    display: flex;
}

.welcome_page p {
    max-width: 600px;
    font-size: clamp(1rem, 2vw, 17px);
    margin-bottom: 2rem;
    color: #000000;
    line-height: 1.6;
    animation: fade-in 1.4s ease-out;
}

.welcome_page .learning_main:hover {
    transform: perspective(1000px) rotateY(2deg);
}

.welcome_page .study_guides:hover::before {
    opacity: 0.5;
}

.welcome_page .study_guides span {
    transform: translateY(0);
    left: 0;
    padding: 2rem;
    position: absolute;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    bottom: 0;
    transition: transform 0.4s ease;
    z-index: 2;
}

footer::after {
    top: 0;
    bottom: 0;
    content: "";
    right: 0;
    z-index: -1;
    left: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgb(118,133,149,0.5) 25%, rgb(118,133,149,0.5) 26%, transparent 27%, transparent 74%, rgb(85,99,116,0.5) 75%, rgb(85,99,116,0.5) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgb(118,133,149,0.5) 25%, rgb(118,133,149,0.5) 26%, transparent 27%, transparent 74%, rgb(85,99,116,0.5) 75%, rgb(85,99,116,0.5) 76%, transparent 77%, transparent);
    opacity: 0.15;
    position: absolute;
    background-size: 50px 50px;
}

.scholar_cta .company_holder::after {
    background: linear-gradient(90deg, transparent, rgb(85,99,116), transparent);
    width: 100%;
    height: 1px;
    left: 0;
    content: "";
    position: absolute;
    bottom: 0;
    transform: translateY(1px);
}

.scholar_cta .company_holder h3::after {
    bottom: -8px;
    border-radius: 10px;
    left: 0;
    box-shadow: 0 0 10px rgb(118,133,149);
    width: 50px;
    content: "";
    background: linear-gradient(90deg, rgb(118,133,149), rgb(85,99,116));
    transition: width 0.3s ease-out;
    height: 3px;
    position: absolute;
}

.scholar_cta .site_core::after {
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(118,133,149), transparent);
    transform: translateY(1px);
    height: 1px;
    content: "";
    position: absolute;
}

.scholar_cta .site_core h5 {
    margin: 0 0 1.5rem;
    font-size: 22px;
    letter-spacing: 0.5px;
    position: relative;
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
    text-shadow: 0 0 15px rgb(85,99,116,0.5);
}

.scholar_cta .site_core .header_base a {
    border-radius: 10px;
    position: relative;
    text-decoration: none;
    font-size: 17px;
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-shadow: 0 0 5px #000000;
    opacity: 0.8;
    z-index: 1;
    transition: all 0.3s ease;
    display: block;
}

.scholar_cta .site_core .header_base a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgb(85,99,116,0.5);
    padding-left: 1.5rem;
    color: #ffffff;
}

.scholar_cta .site_core .header_base a:hover::after {
    opacity: 0.2;
    width: 100%;
}

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

.edu_global .footer_account {
    transition: all 0.3s ease;
    opacity: 0.7;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px #000000;
    position: relative;
    color: #ffffff;
    text-align: center;
}

.learning_process .skill_spot {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    align-items: center;
    position: relative;
    justify-content: center;
    display: flex;
    z-index: 2;
}

.learning_process .reading_area h2 {
    margin-bottom: 100px;
    letter-spacing: 2px;
    font-size: 36px;
    position: relative;
    font-weight: 700;
    padding: 0;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    z-index: 4;
}

.learning_process .reading_area::after {
    height: 100%;
    transform: skewY(-6deg);
    content: '';
    top: 25px;
    left: 2.5%;
    z-index: 0;
    background: rgb(85,99,116,0.5);
    opacity: 0.05;
    width: 95%;
    position: absolute;
}

.learning_process .reading_area p::before {
    border: 1px solid rgba(255, 255, 255, 0.1);
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
}

.learning_process .reading_area p::before {
    width: 200%;
    content: '';
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    left: -50%;
    z-index: 0;
    position: absolute;
    opacity: 0.3;
    top: -50%;
    animation: rotate-slow 30s linear infinite;
}

.learning_process .reading_area p span {
    position: relative;
    z-index: 2;
}



.learning_process .layer-element {
    opacity: 0.1;
    position: absolute;
    width: 150px;
    top: -30px;
    z-index: 1;
    height: 150px;
    animation: float-layer 15s infinite alternate;
    transform: rotate(15deg);
    right: -30px;
    border: 2px solid rgb(118,133,149,0.5);
}

header .top_plank .header_menu div span {
    color: #ffffff;
}

header .top_plank .header_menu div {
    justify-content: flex-start;
    display: flex;
    margin-right: 24px;
    align-items: center;
}

.consentWarningDialog {
    bottom: 0;
    z-index: 90;
    border-top: 2px solid rgb(118,133,149);
    background: rgb(152,168,183);
    width: 100%;
    position: fixed;
}

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

.training_specialist .learner_insights {
    gap: 3rem;
    position: relative;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin: 0 auto;
    z-index: 2;
}

.training_specialist .image_box_wrap::before {
    position: absolute;
    content: "";
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgb(118,133,149,0.5) 100%);
    top: 0;
}

.training_specialist .learner_insights:hover .work_achievements::before {
    height: 100%;
}

.training_specialist .name::after {
    left: 0;
    background: rgb(85,99,116);
    transform: translateX(-101%);
    content: "";
    bottom: 0;
    transition: transform 0.6s ease-out 0.2s;
    width: 100%;
    position: absolute;
    height: 1px;
}

.training_specialist .experience_area {
    font-weight: 300;
    transform: translateY(20px);
    transition: all 0.5s ease-out 0.6s;
    position: relative;
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
    padding: 0 0 0 20px;
    opacity: 0;
}

.thxDiv::before {
    top: -10%;
    transform: rotate(25deg);
    position: absolute;
    right: -10%;
    width: 70%;
    content: "";
    z-index: -1;
    animation: float 20s infinite alternate ease-in-out;
    opacity: 0.07;
    background: radial-gradient(circle at center, #ffffff 0%, transparent 70%);
    height: 70%;
}

.thxDiv .skill_spot:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.thxDiv .skill_spot > div:first-child::before {
    left: 0;
    z-index: 3;
    transition: transform 0.7s ease;
    top: 0;
    content: "";
    background: linear-gradient(90deg, rgb(118,133,149), rgb(85,99,116));
    transform: scaleX(0);
    position: absolute;
    right: 0;
    transform-origin: left;
    height: 5px;
}

.thxDiv h5 {
    margin: 0;
    line-height: 1.4;
    color: rgb(118,133,149);
    font-weight: 700;
    display: inline-block;
    position: relative;
    font-size: 24px;
}

.thxDiv .skill_spot:hover h5::after {
    width: 100%;
}

.thxDiv a {
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.thxDiv a:hover::before {
    opacity: 1;
}

.contact_us {
    background: rgb(152,168,183);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.contact_us::after {
    left: 0;
    position: absolute;
    width: 100%;
    content: '';
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    top: 0;
}

.contact_us h3 {
    text-align: center;
    color: #000000;
    position: relative;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 29px;
    font-family: Arial, sans-serif;
}

.contact_us .query_form::before {
    width: 200px;
    position: absolute;
    content: '';
    background: rgb(118,133,149,0.5);
    border-radius: 50%;
    left: -100px;
    opacity: 0.05;
    height: 200px;
    top: -100px;
}

.contact_us form h3::before,
.contact_us form h3::after {
    display: none;
}

.contact_us input[type="text"]:focus,
.contact_us textarea:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgb(118,133,149,0.5);
    border-color: rgb(118,133,149,0.5);
    outline: none;
}

.contact_us .inquiry_list input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.contact_us .inquiry_list label::before {
    transition: all 0.3s ease;
    width: 22px;
    background: #ffffff;
    height: 22px;
    position: absolute;
    border-radius: 50%;
    content: '';
    top: 2px;
    border: 2px solid rgb(118,133,149,0.5);
    left: 0;
}

.contact_us .inquiry_grid {
    overflow: hidden;
    padding: 15px 40px;
    background: rgb(118,133,149);
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    font-size: 17px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.contact_us .connect_request h4 {
    font-family: Arial, sans-serif;
    color: #ffffff;
    position: relative;
    margin-bottom: 30px;
    font-size: 23px;
    font-weight: 600;
}

.contact_us .connect_request h4::after {
    background: #ffffff;
    content: '';
    bottom: -10px;
    height: 3px;
    width: 40px;
    position: absolute;
    border-radius: 3px;
    left: 0;
}

.contact_us .contact_request li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact_us .contact_request li:hover svg {
    transform: scale(1.2);
}

.contact_us .contact_request span {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    font-size: 16px;
}

.course_overview .learn_challenge::before {
    z-index: 2;
    top: 0;
    width: 100%;
    background: radial-gradient(circle at center, transparent 30%, #000000 100%);
    left: 0;
    position: absolute;
    content: "";
    height: 100%;
}

.course_overview .study_path:hover {
    transform: scale(1);
}

.course_overview .study_path:nth-child(1) {
    animation-delay: 0s;
}

.course_overview .study_path:nth-child(3) {
    animation-delay: -12s;
}

.course_overview .study_path img {
    object-fit: cover;
    filter: saturate(0.8) brightness(0.7);
    width: 100%;
    height: 100%;
}

.course_overview .tech_classes::after {
    z-index: -2;
    height: 120%;
    opacity: 0.1;
    position: absolute;
    filter: blur(20px);
    width: 120%;
    animation: pulse-glow 5s ease-in-out infinite alternate;
    background: radial-gradient(
        ellipse at center,
        rgb(118,133,149,0.5) 0%,
        transparent 70%
    );
    content: "";
}

.course_overview .tech_classes h3 {
    font-size: 35px;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

.course_overview .inquiry_grid {
    z-index: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;
    display: inline-block;
    font-weight: 600;
    background: rgb(118,133,149);
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    border-radius: 50px;
    font-size: 19px;
}

.course_overview::after {
    transform: translateX(-50%);
    position: absolute;
    z-index: 100;
    gap: 15px;
    bottom: 15%;
    left: 50%;
    content: "";
    display: flex;
}

.course_overview::after {
    width: 100px;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff,
        #ffffff 10px,
        transparent 10px,
        transparent 25px
    );
    opacity: 0.3;
}

.course_overview .fast_development:has(.study_path:nth-child(4):last-child) .study_path:nth-child(2) {
    animation-delay: -7.5s;
}



::-webkit-scrollbar {
    width: 20px;
    background: radial-gradient(circle at top left, rgb(255, 255, 255, 0.5) 10%, rgb(85,99,116) 67%, rgb(118,133,149) 82%, rgb(152,168,183) 58%);
    height: 13px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(120deg, #ffffff 31%, rgb(255, 255, 255, 0.5) 41%, rgb(85,99,116,0.5) 49%);
}

::-webkit-scrollbar-thumb {
    border-radius: 16px;
    background: repeating-radial-gradient(circle at center, rgb(85,99,116), rgb(85,99,116) 9px, rgb(118,133,149,0.5) 9px, rgb(118,133,149,0.5) 15px);
}

::-webkit-scrollbar-thumb:active {
    background: rgb(85,99,116,0.5);
    box-shadow: inset -2px -5px 10px 2px rgba(0, 0, 0, 0.1);
}

.pricing_bucket .price_grid p::-webkit-scrollbar {
    width: 5px;
}

.pricing_bucket .price_grid p::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
}

.pricing_bucket .price_grid p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(118,133,149);
}



@media (max-width: 576px) {.get_updates {
    padding: 40px 0;
}.get_updates h3 {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: calc(14px * 1.2);
}.get_updates input[type="email"] {
    height: 45px;
    font-size: calc(14px * 0.95);
}.get_updates .updates_card {
    height: 45px;
    font-size: calc(20px * 0.95);
}.get_updates .skill_spot {
    padding: 20px 15px;
}
}



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



@media screen and (max-width: 576px) {.meet_us {
    padding: 50px 10px;
}.meet_us .reading_area {
    padding: 20px;
}.meet_us h1 {
    font-size: calc(39px * 0.75);
    margin-bottom: 20px;
}.meet_us h1::after {
    width: 50px;
    height: 2px;
}.meet_us h4 {
    font-size: calc(21px * 0.85);
}.meet_us span {
    font-size: calc(13px * 0.9);
    line-height: 1.6;
}}



@media (max-width: 768px) {.pricing_bucket {
    padding: 70px 0;
}.pricing_bucket .pricing_levels {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}.pricing_bucket h2 {
    font-size: calc(29px * 0.9);
}.pricing_bucket .rate_packages {
    max-width: 100%;
    margin-bottom: 40px;
    font-size: 12px;
}
}



@media (max-width: 991px) {header {
    padding: 1.2rem 2.5%;
}header .main_mainwrap {
    padding: 1.2rem;
}header .nav_mainwrap {
    padding: 0 0 0.8rem 0;
}header .nav_mainwrap svg {
    width: 150px;
}header .site_core {
    gap: 0.6rem;
    padding-top: 0.8rem;
}header .top_mentor {
    padding: 0.6rem 1.1rem;
}
}


@media only screen and (max-width: 800px) {.privacy_block {
    padding: 1.5rem;
    gap: 1rem;
    border-radius: 10px;
}.privacy_block h1 {
    font-size: calc(24px * 0.9);
}.privacy_block h2 {
    font-size: calc(24px * 0.9);
}.privacy_block ul {
    gap: 0.5rem;
}.privacy_block ul li {
    padding: 0.75rem;
}.privacy_block ul li::before {
    font-size: 1rem;
}}



@media (max-width: 480px) {.welcome_page {
    padding: 3rem 1rem;
}.welcome_page h1.edu_front::after {
    width: 3rem;
}.welcome_page .study_guides {
    min-height: 250px;
}.welcome_page .study_guides span {
    padding: 1rem;
}
}



@media (max-width: 992px) {.scholar_cta {
    padding: 3.5rem 0 2rem;
}.scholar_cta .container {
    gap: 2rem;
    flex-direction: column;
}.scholar_cta .company_holder,
    .scholar_cta .hackathon {
    flex: 1 1 100%;
    min-width: 100%;
}.scholar_cta .site_core {
    min-width: 220px;
    flex: 0 1 calc(50% - 1.25rem);
}
}



@media screen and (max-width: 1200px) {.learning_process .reading_area {
    width: 90%;
}.learning_process .reading_area p {
    padding: 50px;
    max-width: 90%;
}.learning_process .layer-element {
    width: 120px;
    height: 120px;
}
}



@media screen and (max-width: 992px) {.learning_process {
    padding: 140px 0;
}.learning_process .reading_area {
    width: 100%;
}.learning_process .reading_area h2 {
    margin-bottom: 80px;
}.learning_process .reading_area p {
    padding: 40px;
    max-width: 95%;
}.learning_process .layer-element {
    width: 100px;
    height: 100px;
}
}


@media only screen and (max-width: 1200px) {.consentWarningDialog {
    padding: 20px;
}}


@media only screen and (max-width: 800px) {.tracking_policy {
    display: none;
}.privacy_cookies {
    align-items: center;
    flex-direction: column;
    justify-content: center;
}.consentWarningDialog h5 {
    text-align: center;
}.consentWarningDialog p {
    text-align: center;
}.cookie_show {
    margin-bottom: 20px;
}body .wrapper-padding .cookie_hide {
    margin-left: 0;
}}



@media (min-width: 992px) {.thxDiv {
    padding: 10rem 0;
}.thxDiv .skill_spot {
    grid-template-columns: 0.9fr 1.3fr;
}.thxDiv .skill_spot > div:first-child {
    transform: translateX(10%);
    padding: 3rem;
}.thxDiv .skill_spot > div:last-child {
    transform: translateY(35px);
    margin-left: -10%;
    padding-left: 15%;
}.thxDiv .skill_spot:hover > div:last-child {
    transform: translateY(25px);
}.thxDiv h5 {
    font-size: calc(24px * 1.2);
}
}



@media (max-width: 768px) {.contact_us {
    padding: 70px 0;
}.contact_us h3 {
    font-size: calc(29px * 0.9);
    margin-bottom: 40px;
}.contact_us .contact_inquiry,
    .contact_us .connect_request {
    padding: 30px;
}
}




@media screen and (max-width: 1200px) {.course_overview .tech_classes {
    max-width: 900px;
}
}



@media screen and (max-width: 992px) {.course_overview .tech_classes {
    max-width: 800px;
    padding: 3rem;
}
}



@media screen and (max-width: 768px) {.course_overview {
    padding: 2rem 0;
}.course_overview .tech_classes {
    padding: 3rem;
    max-width: 700px;
    min-height: 700px;
    aspect-ratio: auto;
    border-radius: 20px;
    height: auto;
}.course_overview .tech_classes::before {
    border-radius: 20px;
}.course_overview .tech_classes h3 {
    font-size: calc(35px * 0.9);
}.course_overview .tech_classes p {
    -webkit-line-clamp: 3;
}
}



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



@keyframes floatBg {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(10px);
    }
    50% {
        transform: translateY(5px) translateX(-5px);
    }
    75% {
        transform: translateY(-5px) translateX(5px);
    }
}



@keyframes title-entry {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse-rotate {
    0% {
        transform: rotate(45deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: rotate(225deg) scale(1.2);
        opacity: 0.9;
    }
    100% {
        transform: rotate(405deg) scale(1);
        opacity: 0.7;
    }
}



@keyframes fade-slides {
    0%, 16% {
        opacity: 1;
        z-index: 5;
    }
    20%, 96% {
        opacity: 0;
        z-index: 0;
    }
    100% {
        opacity: 1;
        z-index: 5;
    }
}



@keyframes slide-indicator {
    0%, 16% {
        left: calc(50% - 50px);
    }
    20%, 36% {
        left: calc(50% - 25px);
    }
    40%, 56% {
        left: calc(50%);
    }
    60%, 76% {
        left: calc(50% + 25px);
    }
    80%, 96% {
        left: calc(50% + 50px);
    }
    100% {
        left: calc(50% - 50px);
    }
}

