﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}::-webkit-scrollbar {
    padding: 5px;
    background: radial-gradient(circle at center, #ffffff 99%, rgb(255, 255, 255, 0.5) 49%, rgb(101,109,109) 12%, rgb(101,109,109,0.5) 41%, rgb(136,143,143) 33%, rgb(136,143,143,0.5) 48%, rgb(171,178,178) 25%);
    width: 17px;
}::-webkit-scrollbar-track {
    background: rgb(136,143,143);
    border: 1px dotted rgb(255, 255, 255, 0.5);
}::-webkit-scrollbar-thumb {
    transition: all, background, transform 2.5s linear;
    border-radius: 3.2em;
    background: rgb(136,143,143);
}::-webkit-scrollbar-thumb:hover {
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.5);
    border-color: rgb(101,109,109);
    background: rgb(101,109,109);
}::-webkit-scrollbar-thumb:active {
    box-shadow: inset 2px -3px 8px 6px rgba(0, 0, 0, 0.8);
    background: rgb(101,109,109);
}::-webkit-scrollbar-corner {
    background: rgb(136,143,143,0.5);
    border-radius: 7px;
}html {
    scrollbar-color: rgb(136,143,143) rgb(101,109,109,0.5);
    scrollbar-width: thin;
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 4px;
}::-webkit-scrollbar-thumb {
    background: rgb(101,109,109);
}}

svg {
    height: 30px;
    width: 30px;
}.wrapper-segment {
    height: 100%;
    flex-direction: column;
    display: flex;
    min-height: 100%;
}.container {
    margin: auto;
    width: 1106px;
    max-width: 100%;
}.intern_opp {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}html,body {
    height: 100%;
    color: #000000;
    min-height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
}.top_nav {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.location_details {
    backdrop-filter: blur(15px);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        -45deg, 
        rgb(136,143,143,0.5) 0%, 
        rgb(101,109,109,0.5) 20%, 
        transparent 80%
    );
}.location_details::before {
    right: 0;
    content: '';
    pointer-events: none;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 30% 100%, rgba(255,255,255,0.03) 0%, transparent 50%),
        linear-gradient(135deg, transparent 20%, rgb(171,178,178) 20%, rgb(171,178,178) 40%, transparent 40%),
        linear-gradient(225deg, transparent 20%, rgb(171,178,178) 20%, rgb(171,178,178) 40%, transparent 40%);
    opacity: 0.5;
    z-index: 1;
    bottom: 0;
    position: absolute;
}.location_details .container {
    padding: 0 15px;
    max-width: 1400px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}.location_details .quick_request {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    position: relative;
}.location_details .get_contactpanel {
    display: flex;
    padding: 2rem;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-direction: column;
    background: linear-gradient(
        160deg, 
        #ffffff 0%, 
        rgb(171,178,178) 100%
    );
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}.location_details .get_contactpanel:hover::after {
    opacity: 1;
}.location_details .get_contactpanel:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}.location_details .get_contactpanel:nth-child(1) p {
    display: flex;
    align-items: center;
}.location_details .get_contactpanel:nth-child(2) {
    grid-row: 1 / 2;
    height: 300px;
    grid-column: span 2;
}.location_details .get_contactpanel:nth-child(3) {
    grid-row: 2 / 3;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    grid-column: 2 / 4;
    gap: 1rem;
}.location_details .get_contactpanel h2 {
    color: rgb(136,143,143);
    margin-bottom: 1rem;
    font-size: 48px;
    display: inline-block;
    font-weight: 700;
    position: relative;
}.location_details .get_contactpanel h2::before {
    transform-origin: right;
    background: linear-gradient(
        to right, 
        rgb(136,143,143), 
        rgb(101,109,109)
    );
    height: 3px;
    content: '';
    bottom: -0.5rem;
    left: 0;
    transition: transform 0.4s ease;
    width: 100%;
    transform: scaleX(0);
    position: absolute;
}.location_details .get_contactpanel:hover h2::before {
    transform: scaleX(1);
    transform-origin: left;
}.location_details .img_box_grid {
    position: relative;
    border-radius: 15px;
    transform: perspective(1000px) rotateX(5deg);
    height: 100%;
    transition: all 0.5s ease;
    overflow: hidden;
}.location_details .img_box_grid:hover {
    transform: perspective(1000px) rotateX(0);
}.location_details .img_box_grid::before {
    transition: opacity 0.4s ease;
    background: linear-gradient(
        45deg, 
        rgb(136,143,143,0.5) 0%, 
        rgb(101,109,109,0.5) 100%
    );
    opacity: 0;
    position: absolute;
    content: '';
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
}.location_details .img_box_grid:hover::before {
    opacity: 0.3;
}.location_details .learn_help {
    display: contents;
}.location_details .learn_help a {
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 1rem;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    align-items: flex-start;
}.location_details .learn_help a::before {
    z-index: 1;
    position: absolute;
    top: 0;
    background: linear-gradient(
        to right, 
        rgb(136,143,143,0.5), 
        rgb(101,109,109,0.5)
    );
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0;
    content: '';
    transition: opacity 0.3s ease;
}.location_details .learn_help a:hover::before {
    opacity: 0.1;
}.location_details .learn_help a span {
    color: rgb(136,143,143);
    position: relative;
    opacity: 0.7;
    z-index: 2;
    margin-bottom: 0.5rem;
    font-size: 13px;
}.location_details .learn_help a p {
    z-index: 2;
    font-weight: 600;
    font-size: 13px;
    margin: 0;
    color: rgb(136,143,143);
    position: relative;
}.location_details .team_contact {
    background: rgb(171,178,178);
    display: flex;
    grid-column: 1 / -1;
    padding: 1rem;
    align-items: center;
    margin-top: 1rem;
    border-radius: 10px;
}.location_details .team_contact h3 {
    letter-spacing: 1px;
    color: rgb(136,143,143);
    margin-right: 1rem;
    text-transform: uppercase;
    font-size: 21px;
}.location_details .contact_helpJCH {
    gap: 0.5rem;
    flex-wrap: wrap;
    display: flex;
}.location_details .contact_helpJCH span {
    font-size: 13px;
    border-radius: 10px;
    padding: 0.3rem 0.7rem;
    background: #ffffff;
    color: rgb(136,143,143);
}.location_details svg,
.location_details svg path {
    transition: all 0.3s ease;
    fill: rgb(136,143,143);
    margin-right: 10px;
}.location_details .learn_help a:hover svg,
.location_details .learn_help a:hover svg path {
    fill: rgb(101,109,109);
    transform: scale(1.1);
}

@media screen and (max-width: 1200px) {.location_details .quick_request {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}.location_details .get_contactpanel:nth-child(1) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}.location_details .get_contactpanel:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}.location_details .get_contactpanel:nth-child(3) {
    grid-row: 2 / 3;
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / 3;
}
}

@media screen and (max-width: 768px) {.location_details .quick_request {
    grid-template-columns: 1fr;
}.location_details .get_contactpanel:nth-child(1),
    .location_details .get_contactpanel:nth-child(2),
    .location_details .get_contactpanel:nth-child(3) {
    grid-row: auto;
    grid-column: 1;
}.location_details .get_contactpanel:nth-child(3) {
    grid-template-columns: 1fr;
}.location_details .img_box_grid {
    height: 250px;
}
}

@media screen and (max-width: 480px) {.location_details .get_contactpanel:nth-child(3) {
    flex-direction: column;
    display: flex;
}}.get_in_touch {
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, rgb(171,178,178) 0%, rgba(9, 19, 32, 0.9) 100%);
    padding: 120px 0;
}.get_in_touch::before {
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    pointer-events: none;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(136,143,143,0.5) 0px,
        transparent 1px,
        transparent 10px,
        rgb(136,143,143,0.5) 11px
    );
    top: 0;
    opacity: 0.05;
    animation: gridMove 20s linear infinite;
}.get_in_touch::after {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    content: "";
    animation: pulseGlow 15s ease-in-out infinite;
    background: radial-gradient(circle, rgb(136,143,143,0.5) 0%, transparent 60%);
}.get_in_touch .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}.get_in_touch h2 {
    margin-bottom: 60px;
    font-family: Arial, sans-serif;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    font-size: 33px;
}.get_in_touch h2::after {
    left: 50%;
    height: 3px;
    content: "";
    background: linear-gradient(to right, transparent, rgb(136,143,143), transparent);
    bottom: 0;
    transform: translateX(-50%);
    position: absolute;
    width: 80px;
}.get_in_touch .feedback_query {
    border-radius: 12px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}.get_in_touch .feedback_query::before {
    background: linear-gradient(to bottom right, rgb(136,143,143,0.5), transparent);
    pointer-events: none;
    opacity: 0.03;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}.get_in_touch .img_box_grid {
    position: relative;
    transition: transform 0.6s ease;
    flex: 1;
    transform: scale(1.01);
    min-height: 500px;
}.get_in_touch .img_box_grid::after {
    height: 100%;
    top: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    width: 100%;
    left: 0;
    content: "";
    position: absolute;
}.get_in_touch .inquiry_block {
    padding: 50px;
    position: relative;
    flex: 1;
}.get_in_touch .inquiry_block::before {
    height: 50px;
    content: "";
    top: 20px;
    border-top: 2px solid rgb(136,143,143,0.5);
    opacity: 0.7;
    right: 20px;
    width: 50px;
    position: absolute;
    border-right: 2px solid rgb(136,143,143,0.5);
}.get_in_touch .inquiry_block::after {
    border-bottom: 2px solid rgb(136,143,143,0.5);
    left: 20px;
    content: "";
    border-left: 2px solid rgb(136,143,143,0.5);
    opacity: 0.7;
    height: 50px;
    bottom: 20px;
    position: absolute;
    width: 50px;
}.get_in_touch form {
    width: 100%;
}.get_in_touch form h3 {
    margin-bottom: 30px;
    font-size: 18px;
    position: relative;
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding-left: 15px;
    color: #ffffff;
}.get_in_touch form h3::before {
    left: 0;
    content: "";
    background: rgb(136,143,143);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    height: 25px;
    width: 5px;
    border-radius: 10px;
}.get_in_touch form input[type="text"] {
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 18px;
    width: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
}.get_in_touch form input[type="text"]:focus {
    border-color: rgb(136,143,143);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 15px rgba(rgb(136,143,143), 0.2);
}.get_in_touch form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.get_in_touch .query_feedback {
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
    position: relative;
}.get_in_touch .query_feedback input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.get_in_touch .query_feedback label {
    font-size: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}.get_in_touch .query_feedback label::before {
    width: 22px;
    top: 2px;
    background: rgba(255, 255, 255, 0.05);
    content: "";
    transition: all 0.3s ease;
    position: absolute;
    border-radius: 10px;
    left: 0;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}.get_in_touch .query_feedback input[type="checkbox"]:checked + label::before {
    border-color: rgb(136,143,143);
    background: rgb(136,143,143);
}.get_in_touch .query_feedback input[type="checkbox"]:checked + label::after {
    top: 11px;
    position: absolute;
    content: "";
    left: 7px;
    border-left: 2px solid #ffffff;
    height: 4px;
    width: 8px;
    transform: rotate(-45deg);
    border-bottom: 2px solid #ffffff;
}.get_in_touch .query_feedback label a {
    color: rgb(136,143,143);
    text-decoration: none;
    transition: all 0.3s ease;
}.get_in_touch .query_feedback label a:hover {
    text-decoration: underline;
}.get_in_touch form .reach_request {
    border: none;
    z-index: 1;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    padding: 15px 35px;
    background: linear-gradient(45deg, rgb(136,143,143), rgb(101,109,109));
    font-weight: 600;
    color: #ffffff;
    font-family: Arial, sans-serif;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 19px;
    display: inline-block;
}.get_in_touch form .reach_request::before {
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, rgb(101,109,109), rgb(136,143,143));
    left: -100%;
    content: "";
    z-index: -1;
}.get_in_touch form .reach_request:hover::before {
    left: 0;
}.get_in_touch form .reach_request:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}.get_in_touch svg {
    fill: rgb(136,143,143);
    margin-right: 15px;
    height: 24px;
    width: 24px;
}.get_in_touch svg path {
    transition: fill 0.3s ease;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
}

@media screen and (max-width: 991px) {.get_in_touch {
    padding: 80px 0;
}.get_in_touch .feedback_query {
    flex-direction: column;
}.get_in_touch .img_box_grid {
    order: 1;
    min-height: 300px;
}.get_in_touch .inquiry_block {
    order: 2;
    padding: 40px 30px;
}
}

@media screen and (max-width: 767px) {.get_in_touch {
    padding: 60px 0;
}.get_in_touch h2 {
    margin-bottom: 40px;
}.get_in_touch .img_box_grid {
    min-height: 200px;
}.get_in_touch .inquiry_block {
    padding: 30px 20px;
}.get_in_touch form .reach_request {
    width: 100%;
    text-align: center;
}
}

@media screen and (max-width: 480px) {.get_in_touch {
    padding: 40px 0;
}.get_in_touch h2 {
    font-size: calc(33px * 0.8);
}.get_in_touch form h3 {
    font-size: calc(18px * 0.9);
}.get_in_touch .inquiry_block::before,
    .get_in_touch .inquiry_block::after {
    width: 30px;
    height: 30px;
}}footer {
    z-index: 1;
    color: #ffffff;
    position: relative;
    font-family: Arial, sans-serif;
}footer::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(136,143,143,0.5) 50%, rgb(101,109,109,0.5) 100%);
    animation: gradientShift 15s ease infinite;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(8px);
    position: absolute;
    content: "";
}.intern_opp {
    position: relative;
    padding: 4.5rem 0 2rem;
}.intern_opp::before {
    top: 0;
    animation: shimmer 8s linear infinite;
    position: absolute;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, 
                transparent 0%, 
                rgb(136,143,143) 25%, 
                #ffffff 50%, 
                rgb(101,109,109) 75%, 
                transparent 100%);
    right: 0;
    content: "";
}.intern_opp .container {
    z-index: 1;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    display: flex;
}.intern_opp .company_holder {
    margin-right: 2rem;
    transform: translateY(0);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    flex: 1 1 350px;
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}.intern_opp .company_holder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.15),
                0 0 20px rgb(136,143,143,0.5);
}.intern_opp .company_holder h3 {
    margin-bottom: 1.25rem;
    font-size: calc(35px * 0.85);
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-weight: 700;
}.intern_opp .company_holder h3::after {
    width: 100%;
    content: "";
    left: 0;
    position: absolute;
    transition: transform 0.5s ease;
    transform: scaleX(0.3);
    height: 2px;
    background: linear-gradient(to right, rgb(136,143,143), rgb(101,109,109));
    transform-origin: left;
    bottom: -8px;
}.intern_opp .company_holder:hover h3::after {
    transform: scaleX(1);
}.intern_opp .linkedin_ref {
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 450px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}.intern_opp .footer_milestones {
    flex: 1 1 450px;
    position: relative;
}.intern_opp .head_bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}.intern_opp .footer_milestones .head_bar {
    justify-content: flex-end;
}.intern_opp .header_lesson {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 11px;
    backdrop-filter: blur(10px);
    position: relative;
    flex: 1 1 200px;
    padding: 1.5rem;
}.intern_opp .header_lesson h5 {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    font-size: 19px;
    color: #ffffff;
}.intern_opp .header_lesson h5::before {
    width: 40px;
    transition: width 0.3s ease;
    position: absolute;
    background: rgb(136,143,143);
    left: 0;
    content: "";
    height: 2px;
    bottom: -6px;
}.intern_opp .header_lesson:hover h5::before {
    width: 100%;
}.intern_opp .header_lesson .head_bar {
    flex-direction: column;
    display: flex;
    gap: 0.75rem;
}.intern_opp .header_lesson a {
    transition: all 0.3s ease;
    font-size: 13px;
    text-decoration: none;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    display: block;
    padding: 0.25rem 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}.intern_opp .header_lesson a::before {
    width: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to right, rgb(136,143,143), rgb(101,109,109));
    height: 1px;
    content: "";
    position: absolute;
    transition: width 0.3s ease;
    left: 0;
}.intern_opp .header_lesson a:hover {
    color: #ffffff;
    transform: translateX(5px);
}.intern_opp .header_lesson a:hover::before {
    width: 100%;
}.badge_case {
    backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}.badge_case::before {
    height: 1px;
    background: linear-gradient(to right, 
                transparent 0%, 
                rgb(101,109,109) 25%, 
                #ffffff 50%, 
                rgb(136,143,143) 75%, 
                transparent 100%);
    right: 0;
    top: 0;
    left: 0;
    position: absolute;
    content: "";
}.badge_case .container {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}.badge_case .milestone_cta {
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-radius: 30px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.1);
}.badge_case .milestone_cta:hover {
    box-shadow: 0 0 15px rgb(136,143,143,0.5);
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulsate {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@media (max-width: 992px) {.intern_opp {
    padding: 3.5rem 0 2rem;
}.intern_opp .container {
    flex-direction: column;
}.intern_opp .company_holder {
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 2rem;
}.intern_opp .footer_milestones {
    flex: 1 1 100%;
}.intern_opp .footer_milestones .head_bar {
    justify-content: space-between;
}.intern_opp .header_lesson {
    flex: 1 1 calc(50% - 1rem);
}
}

@media (max-width: 768px) {.intern_opp {
    padding: 3rem 0 1.5rem;
}.intern_opp::before {
    height: 2px;
}.intern_opp .company_holder {
    padding: 1.25rem;
}.intern_opp .header_lesson {
    margin-bottom: 1rem;
    flex: 1 1 100%;
}.intern_opp .footer_milestones .head_bar {
    flex-direction: column;
}.badge_case {
    padding: 1.25rem 0;
}.badge_case::before {
    height: 2px;
}
}

@media (max-width: 576px) {.intern_opp {
    padding: 2.5rem 0 1rem;
}.intern_opp .company_holder h3 {
    font-size: calc(35px * 0.75);
}.intern_opp .linkedin_ref {
    font-size: calc(13px * 0.9);
}.intern_opp .header_lesson h5 {
    font-size: calc(19px * 0.9);
}.intern_opp .header_lesson a {
    font-size: calc(13px * 0.9);
}.badge_case .milestone_cta {
    padding: 0.4rem 0.8rem;
    font-size: calc(12px * 0.9);
}}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.intern_opp .head_bar a::after {
    left: -10px;
    height: 4px;
    background: rgb(136,143,143);
    border-radius: 50%;
    top: 50%;
    content: "";
    transform: translateY(-50%) scale(0);
    position: absolute;
    width: 4px;
    transition: transform 0.3s ease;
}.intern_opp .head_bar a:hover::after {
    transform: translateY(-50%) scale(1);
}.intern_opp .linkedin_ref::before {
    top: -10px;
    height: 0;
    content: "";
    transition: width 0.5s ease 0.3s, height 0.5s ease;
    width: 0;
    left: -10px;
    position: absolute;
    border: 1px solid transparent;
}.intern_opp .linkedin_ref::after {
    height: 0;
    transition: width 0.5s ease 0.3s, height 0.5s ease;
    width: 0;
    content: "";
    border: 1px solid transparent;
    right: -10px;
    position: absolute;
    bottom: -10px;
}.intern_opp .company_holder:hover .linkedin_ref::before {
    transition: width 0.5s ease, height 0.5s ease 0.3s;
    border-right-color: rgb(136,143,143,0.5);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-top-color: rgb(136,143,143,0.5);
}.intern_opp .company_holder:hover .linkedin_ref::after {
    transition: width 0.5s ease, height 0.5s ease 0.3s;
    height: calc(100% + 20px);
    border-left-color: rgb(101,109,109,0.5);
    border-bottom-color: rgb(101,109,109,0.5);
    width: calc(100% + 20px);
}header {
    overflow: visible;
    position: relative;
    background: linear-gradient(135deg, rgb(171,178,178), #ffffff);
    z-index: 99;
    width: 100%;
}header::before {
    background-size: 20px 20px;
    position: absolute;
    opacity: 0.3;
    left: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at 0% 50%,
            transparent 6px,
            rgb(136,143,143,0.5) 6px,
            rgb(136,143,143,0.5) 10px,
            transparent 10px
        ) repeat-x;
    width: 100%;
    content: "";
    height: 15px;
}header .header_wrap {
    justify-content: space-between;
    padding: 25px 30px;
    align-items: center;
    position: relative;
    display: flex;
}header .header_wrap::before,
header .header_wrap::after {
    height: 2px;
    content: "";
    width: 30%;
    position: absolute;
    background: linear-gradient(to right, rgb(136,143,143), transparent);
}header .header_wrap::before {
    left: 0;
    top: 10px;
}header .header_wrap::after {
    background: linear-gradient(to left, rgb(101,109,109), transparent);
    right: 0;
    bottom: 10px;
}header .header_wrap .head_tutor {
    position: relative;
    z-index: 2;
}header .header_wrap .head_tutor::before {
    transition: transform 0.5s ease-in-out;
    opacity: 0.05;
    background: rgb(136,143,143,0.5);
    left: -20%;
    content: "";
    top: -20%;
    border-radius: 60% 40% 50% 30% / 40% 50% 60% 50%;
    width: 140%;
    position: absolute;
    z-index: -1;
    height: 140%;
}header .header_wrap .head_tutor:hover::before {
    transform: rotate(15deg) scale(1.1);
}header .header_wrap .head_tutor .top_sitewrap {
    display: block;
    transition: transform 0.3s ease;
}header .header_wrap .head_tutor:hover .top_sitewrap {
    transform: translateY(-3px);
}header .header_wrap .head_tutor .top_sitewrap svg {
    width: auto;
    height: 45px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}header .header_wrap .header_lesson {
    display: flex;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}header .header_wrap .header_lesson::before {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    left: 0;
    transition: all 0.5s ease;
    position: absolute;
    z-index: -1;
    height: 100%;
    opacity: 0.05;
    width: 100%;
    top: 0;
    background: rgb(101,109,109,0.5);
    content: "";
}header .header_wrap .header_lesson:hover::before {
    opacity: 0.08;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}header .header_wrap .header_lesson .head_base {
    margin: 0 8px;
    position: relative;
}header .header_wrap .header_lesson .head_base a {
    color: #000000;
    display: block;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}header .header_wrap .header_lesson .head_base a:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    color: #ffffff;
}header .header_wrap .header_lesson .head_base a::before {
    top: 0;
    height: 100%;
    transform-origin: right top;
    left: 0;
    width: 100%;
    transform: scale(0);
    border-radius: 0% 0% 0% 0% / 0% 0% 0% 0%;
    position: absolute;
    background: rgb(136,143,143);
    z-index: -1;
    transition: transform 0.4s ease, border-radius 0.4s ease;
    content: "";
}header .header_wrap .header_lesson .head_base a:hover::before {
    transform: scale(1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}header .header_wrap .header_lesson .head_base:nth-child(2n) a::before {
    background: rgb(101,109,109);
    transform-origin: left bottom;
}header .header_wrap .header_lesson .head_base:nth-child(2n) a:hover::before {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}header .header_wrap .header_lesson .head_base:hover {
    animation: menu-wobble 1s ease;
}

@keyframes menu-wobble {
    0%, 100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-3px) rotate(-1deg);
    }
    30% {
        transform: translateX(2px) rotate(1deg);
    }
    45% {
        transform: translateX(-2px) rotate(-0.5deg);
    }
    60% {
        transform: translateX(1px) rotate(0.5deg);
    }
    75% {
        transform: translateX(-1px) rotate(-0.25deg);
    }
}

@media (max-width: 992px) {header .header_wrap {
    flex-direction: column;
    padding: 20px 15px;
}header .header_wrap .head_tutor {
    margin-bottom: 15px;
}header .header_wrap .header_lesson {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}header .header_wrap .header_lesson .head_base {
    margin: 5px;
}header .header_wrap .header_lesson .head_base a {
    font-size: calc(12px - 1px);
    padding: 8px 12px;
}
}

@media (max-width: 767px) {header .header_wrap {
    padding: 15px 10px;
}header .header_wrap .head_tutor .top_sitewrap svg {
    height: 40px;
}header .header_wrap .header_lesson .head_base a {
    padding: 6px 10px;
    font-size: calc(12px - 2px);
}}.tySpotlight {
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(171,178,178) 0%, #ffffff 100%);
    position: relative;
}.tySpotlight::before {
    background: linear-gradient(215deg, rgb(136,143,143,0.5) 0%, transparent 70%);
    content: "";
    position: absolute;
    height: 100%;
    z-index: 1;
    top: 0;
    transform: translateX(20%) skewX(-15deg);
    width: 40%;
    right: 0;
}.tySpotlight::after {
    position: absolute;
    bottom: -5%;
    background: linear-gradient(125deg, rgb(101,109,109,0.5) 0%, transparent 80%);
    width: 30%;
    left: -2%;
    transform: rotate(-10deg);
    content: "";
    height: 70%;
    z-index: 1;
}.tySpotlight .container {
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
    max-width: 1200px;
    z-index: 2;
}.tySpotlight h2 {
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 31px;
    animation: slideInTitle 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
    opacity: 0;
    max-width: 800px;
    line-height: 1.3;
    transform: translateX(-20px);
    position: relative;
    font-family: Arial, sans-serif;
}.tySpotlight h2::before {
    top: -15px;
    animation: expandLine 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.8s;
    transform-origin: left;
    content: "";
    position: absolute;
    height: 4px;
    left: 0;
    transform: scaleX(0);
    width: 80px;
    background: rgb(136,143,143);
}.tySpotlight .study_program {
    animation: appearHolder 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
    background-color: #ffffff;
    transform-origin: top center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.07);
    transform: perspective(1000px) rotateX(2deg);
    padding: 40px 50px;
    opacity: 0;
    overflow: hidden;
}.tySpotlight .study_program::before {
    top: 0;
    height: 100%;
    position: absolute;
    left: 0;
    width: 5px;
    background: linear-gradient(to bottom, rgb(136,143,143), rgb(101,109,109));
    content: "";
}.tySpotlight .study_program::after {
    z-index: -1;
    transform: translateX(100%);
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.8) 70%);
    height: 100%;
    top: 0;
    animation: revealGradient 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 1s;
    content: "";
    right: 0;
    width: 80%;
}.tySpotlight ul {
    padding: 0;
    margin: 0;
    list-style: none;
}.tySpotlight li {
    position: relative;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.8s;
    opacity: 0;
}.tySpotlight li::before {
    border-radius: 50%;
    transform: scale(0);
    top: 10px;
    height: 10px;
    content: "";
    left: -30px;
    width: 10px;
    background: rgb(136,143,143);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.2s;
    position: absolute;
}.tySpotlight span {
    color: #000000;
    display: block;
    font-family: Arial, sans-serif;
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 1.8;
    font-size: 13px;
}

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

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

@keyframes appearHolder {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(5deg) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0) translateY(0);
    }
}

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

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes revealGradient {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 992px) {.tySpotlight {
    padding: 90px 0 60px;
}.tySpotlight h2 {
    font-size: calc(31px * 0.9);
    margin-bottom: 30px;
}.tySpotlight .study_program {
    padding: 35px 40px;
}
}

@media (max-width: 768px) {.tySpotlight {
    padding: 70px 0 50px;
}.tySpotlight::before {
    width: 50%;
}.tySpotlight h2 {
    font-size: calc(31px * 0.8);
    max-width: 100%;
}.tySpotlight .study_program {
    padding: 30px;
    transform: perspective(1000px) rotateX(1deg);
}
}

@media (max-width: 576px) {.tySpotlight {
    padding: 60px 0 40px;
}.tySpotlight::before,
    .tySpotlight::after {
    opacity: 0.5;
}.tySpotlight .container {
    padding: 0 20px;
}.tySpotlight h2 {
    margin-bottom: 25px;
    font-size: calc(31px * 0.7);
}.tySpotlight h2::before {
    width: 60px;
    height: 3px;
    top: -10px;
}.tySpotlight .study_program {
    transform: none;
    padding: 25px 20px;
}.tySpotlight span {
    line-height: 1.6;
    font-size: calc(13px * 0.95);
}.tySpotlight li::before {
    height: 8px;
    left: -20px;
    width: 8px;
}}.program_information {
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    position: relative;
    justify-content: center;
    background-color: rgb(171,178,178);
    z-index: 1;
    flex-direction: column;
}.program_information::before {
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(136,143,143,0.5) 100%);
    content: '';
    z-index: 2;
    height: 100%;
    pointer-events: none;
}.program_information::after {
    left: 0;
    height: 100%;
    top: 0;
    pointer-events: none;
    position: absolute;
    animation: pulse 15s infinite alternate;
    background: radial-gradient(circle at 75% 25%, rgb(101,109,109,0.5) 0%, transparent 50%);
    content: '';
    z-index: 3;
    width: 100%;
}.program_information .skill_academy {
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    top: 0;
    z-index: 1;
    position: absolute;
}.program_information .fast_development {
    animation: carousel-slide 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    width: calc(100% * var(--slide-count, 5));
    display: flex;
    height: 100%;
}.program_information .skill_academy:hover .fast_development {
    animation-play-state: paused;
}.program_information .career_challenge {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: calc(100% / var(--slide-count, 5));
    transition: transform 0.5s ease;
}.program_information .career_challenge::before {
    top: 0;
    z-index: 2;
    left: 0;
    position: absolute;
    opacity: 0.7;
    height: 100%;
    width: 100%;
    content: '';
    background: linear-gradient(to bottom, transparent 40%, #000000 100%);
}.program_information .career_challenge::after {
    left: 0;
    width: 100%;
    opacity: 0.05;
    height: 100%;
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(136,143,143,0.5),
        rgb(136,143,143,0.5) 2px,
        transparent 2px,
        transparent 4px
    );
    mix-blend-mode: overlay;
}.program_information .career_challenge img {
    object-fit: cover;
    transition: transform 8s ease;
    filter: saturate(1.2) contrast(1.1);
    height: 100%;
    width: 100%;
    transform: scale(1.05);
}.program_information .career_challenge:hover img {
    transform: scale(1.15);
}.program_information .container {
    align-items: center;
    z-index: 10;
    display: flex;
    position: relative;
    justify-content: flex-end;
    height: 100%;
    padding: 2rem 0;
}.program_information .study_program {
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    max-width: 600px;
    border-radius: 27px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    width: 100%;
    transform: translateX(0);
    border: 1px solid rgba(255, 255, 255, 0.1);
}.program_information .coding_class {
    position: relative;
}.program_information .coding_class::before {
    opacity: 0.8;
    content: '';
    top: -20px;
    height: 40px;
    width: 40px;
    border-left: 2px solid rgb(136,143,143);
    position: absolute;
    border-top: 2px solid rgb(136,143,143);
    left: -20px;
}.program_information .coding_class::after {
    width: 40px;
    content: '';
    height: 40px;
    right: -20px;
    bottom: -20px;
    position: absolute;
    border-right: 2px solid rgb(101,109,109);
    border-bottom: 2px solid rgb(101,109,109);
    opacity: 0.8;
}.program_information .coding_class h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: inline-block;
    position: relative;
}.program_information .coding_class h3::after {
    width: 60%;
    height: 3px;
    bottom: -10px;
    background: linear-gradient(90deg, rgb(136,143,143) 0%, transparent 100%);
    content: '';
    left: 0;
    position: absolute;
}.program_information .coding_class p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-size: 13px;
}.program_information .coding_class .reach_request {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
    display: inline-block;
    transition: all 0.3s ease;
    z-index: 1;
    padding: 1rem 2.5rem;
    text-decoration: none;
    position: relative;
    font-size: 16px;
    overflow: hidden;
    font-weight: 600;
}.program_information .coding_class .reach_request::before {
    position: absolute;
    width: 100%;
    content: '';
    z-index: -1;
    left: -100%;
    height: 100%;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.4s ease;
}.program_information .coding_class .reach_request:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}.program_information .coding_class .reach_request:hover::before {
    transition: all 0.4s ease;
    left: 100%;
}

@keyframes carousel-slide {
    0%, 2% {
        transform: translateX(0);
    }
    18%, 22% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 1));
    }
    38%, 42% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 2));
    }
    58%, 62% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 3));
    }
    78%, 82% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 4));
    }
    98%, 100% {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media screen and (max-width: 1200px) {.program_information .container {
    justify-content: center;
}.program_information .study_program {
    max-width: 80%;
}
}

@media screen and (max-width: 768px) {.program_information {
    padding: 6rem 0;
    min-height: auto;
}.program_information .skill_academy {
    position: fixed;
    height: 100%;
}.program_information .study_program {
    padding: 2rem;
    max-width: 90%;
}.program_information .coding_class h3 {
    font-size: calc(37px * 0.8);
}.program_information .coding_class p {
    font-size: calc(13px * 0.9);
}.program_information .coding_class .reach_request {
    width: 100%;
    text-align: center;
}
}

@media screen and (max-width: 480px) {.program_information {
    padding: 4rem 0;
}.program_information .study_program {
    padding: 1.5rem;
}.program_information .coding_class h3 {
    font-size: calc(37px * 0.7);
}.program_information .coding_class::before,
    .program_information .coding_class::after {
    height: 30px;
    width: 30px;
}@keyframes carousel-slide {
        0%, 5% {
            transform: translateX(0);
        }
        20%, 25% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 1));
        }
        40%, 45% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 2));
        }
        60%, 65% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 3));
        }
        80%, 85% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 4));
        }
        95%, 100% {
            transform: translateX(0);
        }
    }
}

.program_information .fast_development {
    --slide-count: 5;
}

@supports (animation-timeline: scroll()) {.program_information .fast_development {
    animation-range: 0 100vh;
    animation-timeline: scroll();
}}.plan_block {
    overflow: hidden;
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(171,178,178) 0%, rgb(101,109,109,0.5) 100%);
}.plan_block::before {
    z-index: 1;
    width: 100%;
    position: absolute;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(rgb(136,143,143), 0.03) 40px, rgba(rgb(136,143,143), 0.03) 80px);
    top: 0;
    content: "";
    height: 100%;
    pointer-events: none;
    left: 0;
}.plan_block .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1320px;
    padding: 0 1.5rem;
    position: relative;
}.plan_block .access_plans {
    display: flex;
    gap: 2.5rem;
    flex-direction: column-reverse;
}.plan_block .plan_cost {
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(#ffffff, 0.9);
    position: relative;
    transform: translateY(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 600px;
    padding: 2rem;
}.plan_block .plan_cost:hover {
    transform: translateY(-5px);
}.plan_block .plan_cost h2 {
    color: #000000;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-size: 38px;
    font-weight: 700;
    position: relative;
}.plan_block .plan_cost h2::after {
    height: 3px;
    width: 80px;
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    background: rgb(136,143,143);
    transform-origin: left;
    transition: transform 0.5s ease;
    transform: scaleX(1);
}.plan_block .plan_cost:hover h2::after {
    transform: scaleX(1.5);
}.plan_block .price_deals {
    line-height: 1.6;
    overflow-wrap: break-word;
    margin-top: 1.5rem;
    font-size: 14px;
    color: #000000;
    word-break: break-word;
    max-width: 100%;
}.plan_block .price_view {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}.plan_block .value_fees {
    overflow: hidden;
    display: block;
    position: relative;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}.plan_block .value_fees:hover {
    transform: translateY(-8px);
}.plan_block .discount_grid {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    border-radius: 8px;
    transition: box-shadow 0.4s ease;
    background: #ffffff;
}.plan_block .value_fees:hover .discount_grid {
    box-shadow: 0 15px 35px rgba(rgb(136,143,143,0.5), 0.15);
}.plan_block .payment_pricing {
    flex-grow: 1;
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 2rem;
}.plan_block .payment_pricing h3 {
    line-height: 1.3;
    color: #000000;
    position: relative;
    font-size: calc(19px + 0.1rem);
    margin-bottom: 1rem;
    font-weight: 600;
}.plan_block .fee_struct {
    display: block;
    margin: 0.5rem 0 1.25rem;
    color: rgb(136,143,143);
    position: relative;
    font-size: calc(19px + 0.3rem);
    font-weight: 700;
}.plan_block .fee_struct::before {
    position: absolute;
    height: 2px;
    width: 40px;
    background: rgb(101,109,109);
    bottom: -10px;
    content: "";
    left: 0;
}.plan_block .payment_pricing p {
    overflow-wrap: break-word;
    margin-top: 1.5rem;
    font-size: 14px;
    word-break: break-word;
    line-height: 1.6;
    color: #000000;
    flex-grow: 1;
}.plan_block .img_box_grid {
    transition: transform 0.6s ease-out;
    position: relative;
    width: 100%;
    transform: scale(1);
    height: 220px;
}.plan_block .img_box_grid::after {
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
}.plan_block .value_fees:hover .img_box_grid {
    transform: scale(1.05);
}

@media (min-width: 768px) {.plan_block .price_view {
    grid-template-columns: repeat(2, 1fr);
}.plan_block .plan_cost {
    padding: 3rem;
}
}

@media (min-width: 992px) {.plan_block .access_plans {
    align-items: center;
    flex-direction: row;
    gap: 3rem;
}.plan_block .plan_cost {
    margin: 0;
    width: 35%;
}.plan_block .price_view {
    width: 65%;
}
}

@media (min-width: 1200px) {.plan_block .price_view {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.plan_block .payment_pricing {
    padding: 2.5rem;
}.plan_block .plan_cost h2 {
    font-size: calc(38px + 0.2rem);
}.plan_block .img_box_grid {
    height: 250px;
}
}

@media (max-width: 767px) {.plan_block {
    padding: 4rem 0;
}.plan_block .payment_pricing {
    min-height: 240px;
    padding: 1.5rem;
}.plan_block .img_box_grid {
    height: 180px;
}.plan_block .plan_cost {
    padding: 1.5rem;
}.plan_block .plan_cost h2 {
    font-size: calc(38px - 0.2rem);
}.plan_block .price_deals {
    font-size: calc(14px - 0.1rem);
}}.future_students {
    overflow: hidden;
    background: rgb(171,178,178);
    position: relative;
    padding: 140px 0;
}.future_students::before {
    background-position: 0 0, 30px 30px;
    z-index: 0;
    position: absolute;
    opacity: 0.03;
    height: 100%;
    left: 0;
    content: "";
    background-size: 60px 60px;
    top: 0;
    background-image: 
        linear-gradient(
            45deg, 
            rgb(136,143,143,0.5) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgb(136,143,143,0.5) 75%
        ),
        linear-gradient(
            -45deg, 
            rgb(136,143,143,0.5) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgb(136,143,143,0.5) 75%
        );
    width: 100%;
}.future_students::after {
    position: absolute;
    background: linear-gradient(to top, rgb(171,178,178), transparent);
    height: 150px;
    content: "";
    width: 100%;
    left: 0;
    z-index: 1;
    bottom: 0;
}.future_students .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}.future_students .study_program {
    position: relative;
}.future_students h4 {
    text-align: center;
    color: #000000;
    font-weight: 700;
    margin-bottom: 80px;
    position: relative;
    font-size: 36px;
    padding: 20px 0;
}.future_students h4::before {
    height: 3px;
    content: "";
    top: 0;
    transform: translateX(-50%);
    background: rgb(136,143,143,0.5);
    width: 100px;
    position: absolute;
    border-radius: 2px;
    left: 50%;
}.future_students h4::after {
    position: absolute;
    border-radius: 2px;
    left: 50%;
    content: "";
    height: 3px;
    transform: translateX(-50%);
    width: 100px;
    background: rgb(101,109,109,0.5);
    bottom: 0;
}.future_students div {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}.future_students div::before {
    background: linear-gradient(180deg, rgb(136,143,143,0.5), rgb(101,109,109,0.5), transparent);
    content: "";
    height: 100%;
    left: 50%;
    opacity: 0.5;
    width: 2px;
    top: 0;
    z-index: 0;
    position: absolute;
}.future_students div p {
    color: #000000;
    background: #ffffff;
    align-items: center;
    position: relative;
    display: flex;
    width: 70%;
    transition: all 0.4s ease;
    line-height: 1.6;
    padding: 25px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
    margin: 0 0 60px 0;
    font-size: 16px;
}.future_students div p:nth-child(odd) {
    align-self: flex-start;
    border-top-left-radius: 0;
}.future_students div p:nth-child(even) {
    align-self: flex-end;
    border-top-right-radius: 0;
}.future_students div p:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.future_students div p::before {
    z-index: 2;
    content: "";
    height: 30px;
    border-radius: 50%;
    width: 30px;
    background: #ffffff;
    position: absolute;
}.future_students div p:nth-child(odd)::before {
    top: -15px;
    left: -15px;
}.future_students div p:nth-child(even)::before {
    right: -15px;
    top: -15px;
}.future_students div p::after {
    content: "";
    width: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(136,143,143), rgb(101,109,109));
    position: absolute;
    height: 15px;
    transition: all 0.3s ease;
    z-index: 3;
}.future_students div p:nth-child(odd)::after {
    top: -7.5px;
    left: -7.5px;
}.future_students div p:nth-child(even)::after {
    top: -7.5px;
    right: -7.5px;
}.future_students div p:hover::after {
    box-shadow: 0 0 10px rgb(136,143,143,0.5);
    transform: scale(1.3);
}.future_students div p svg {
    transition: all 0.3s ease;
    margin-right: 20px;
    min-width: 32px;
    width: 32px;
    height: 32px;
}.future_students div p:hover svg {
    transform: rotate(15deg);
}.future_students div p svg path {
    fill: rgb(136,143,143);
    transition: fill 0.3s ease;
}.future_students div p:hover svg path {
    fill: rgb(101,109,109);
}

@media (max-width: 991px) {.future_students {
    padding: 120px 0;
}.future_students h4 {
    margin-bottom: 70px;
    font-size: calc(36px - 2px);
}.future_students div p {
    margin-bottom: 50px;
    padding: 22px 25px;
    width: 80%;
}.future_students div p svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    margin-right: 15px;
}
}

@media (max-width: 767px) {.future_students {
    padding: 100px 0;
}.future_students h4 {
    margin-bottom: 60px;
    font-size: calc(36px - 4px);
}.future_students div p {
    width: 90%;
    align-self: center !important;
    margin-bottom: 40px;
    padding: 18px 22px;
    border-radius: 30px !important;
}.future_students div p::before,
    .future_students div p::after {
    display: none;
}.future_students div p svg {
    height: 24px;
    width: 24px;
    min-width: 24px;
    margin-right: 12px;
}
}

@media (max-width: 479px) {.future_students {
    padding: 80px 0;
}.future_students h4 {
    margin-bottom: 50px;
    font-size: calc(36px - 6px);
}.future_students div p {
    font-size: calc(16px - 1px);
    width: 100%;
    margin-bottom: 30px;
    padding: 15px 18px;
}.future_students div p svg {
    width: 22px;
    margin-right: 10px;
    height: 22px;
    min-width: 22px;
}}.meet_us {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: rgb(171,178,178);
}.meet_us::before {
    opacity: 0.1;
    background: repeating-linear-gradient(
        -45deg,
        rgb(136,143,143,0.5) 0,
        rgb(136,143,143,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    top: 0;
    position: absolute;
    content: "";
    z-index: 0;
    height: 100%;
    width: 100%;
    left: 0;
}.meet_us .container {
    z-index: 1;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}.meet_us .study_program {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    display: grid;
}.meet_us h3 {
    font-size: 30px;
    display: inline-block;
    color: #000000;
    position: relative;
    font-weight: 700;
    grid-column: 1 / 4;
    margin-bottom: 50px;
    padding-bottom: 20px;
}.meet_us h3::after {
    position: absolute;
    height: 4px;
    content: "";
    background: rgb(136,143,143);
    left: 0;
    bottom: 0;
    width: 80px;
}.meet_us .why_mission {
    position: relative;
    transition: transform 0.4s ease;
    background: #ffffff;
    z-index: 2;
    padding-right: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    padding: 40px;
    border-radius: 19px;
}.meet_us .why_mission:hover {
    transform: translateX(0);
}.meet_us .why_mission span {
    position: relative;
    font-size: 21px;
    color: rgb(136,143,143);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}.meet_us .why_mission span::before {
    content: "";
    top: 50%;
    left: -40px;
    background: rgb(136,143,143);
    transform: translateY(-50%);
    height: 2px;
    width: 30px;
    position: absolute;
}.meet_us .why_mission p {
    line-height: 1.7;
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
}.meet_us .why_mission .img_box_grid {
    z-index: -1;
    box-shadow: 10px 10px 0 rgb(101,109,109,0.5);
    width: 280px;
    height: 350px;
    top: -30px;
    position: absolute;
    right: -30px;
    border-radius: 0 19px 19px 0;
}.meet_us .virtual_guides {
    position: relative;
    padding-left: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    grid-row: 3 / 4;
    z-index: 2;
    background: #ffffff;
    padding: 40px;
    border-radius: 19px;
    transition: transform 0.4s ease;
    grid-column: 2 / 4;
    margin-top: 40px;
}.meet_us .virtual_guides:hover {
    transform: translateX(0);
}.meet_us .virtual_guides p {
    position: relative;
    padding-right: 20px;
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.7;
}.meet_us .virtual_guides p::after {
    background: rgb(101,109,109);
    right: -40px;
    height: 2px;
    position: absolute;
    top: 30px;
    width: 30px;
    content: "";
}.meet_us .virtual_guides .fast_learning {
    border-radius: 19px 0 0 19px;
    left: -30px;
    box-shadow: -10px 10px 0 rgb(136,143,143,0.5);
    width: 280px;
    height: 350px;
    z-index: -1;
    top: -30px;
    position: absolute;
}.meet_us .study_program::after {
    position: absolute;
    z-index: 0;
    content: "";
    border-radius: 50%;
    top: 100px;
    height: 200px;
    width: 200px;
    right: -100px;
    border: 3px solid rgb(101,109,109,0.5);
}.meet_us .study_program::before {
    content: "";
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    width: 150px;
    bottom: 50px;
    border: 3px solid rgb(136,143,143,0.5);
    left: -70px;
    height: 150px;
}.meet_us .container::before {
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(to right, transparent, rgb(136,143,143,0.5), transparent);
    height: 1px;
    content: "";
    right: 0;
}.meet_us .container::after {
    content: "";
    right: 0;
    background: linear-gradient(to right, transparent, rgb(101,109,109,0.5), transparent);
    left: 0;
    bottom: 0;
    height: 1px;
    position: absolute;
}.meet_us .why_mission::before {
    width: 80px;
    left: -20px;
    top: -20px;
    z-index: -1;
    height: 80px;
    border-radius: 50%;
    content: "";
    background: rgb(136,143,143,0.5);
    opacity: 0.3;
    position: absolute;
}.meet_us .virtual_guides::after {
    right: -20px;
    border-radius: 50%;
    bottom: -20px;
    content: "";
    height: 80px;
    background: rgb(101,109,109,0.5);
    position: absolute;
    width: 80px;
    z-index: -1;
    opacity: 0.3;
}

@media screen and (max-width: 1200px) {.meet_us .container {
    padding: 0 30px;
}.meet_us .why_mission {
    padding-right: 250px;
}.meet_us .virtual_guides {
    padding-left: 250px;
}.meet_us .why_mission .img_box_grid,
    .meet_us .virtual_guides .fast_learning {
    height: 280px;
    width: 220px;
}
}

@media screen and (max-width: 992px) {.meet_us {
    padding: 80px 0;
}.meet_us .study_program {
    grid-gap: 30px;
    grid-template-columns: 1fr;
}.meet_us h3 {
    grid-column: 1 / 2;
    font-size: calc(30px * 0.9);
    margin-bottom: 30px;
}.meet_us .why_mission {
    grid-column: 1 / 2;
    padding: 30px;
    transform: translateX(0);
    padding-bottom: 250px;
    margin-bottom: 60px;
}.meet_us .virtual_guides {
    transform: translateX(0);
    padding: 30px;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin-top: 60px;
    padding-top: 250px;
}.meet_us .why_mission span::before,
    .meet_us .virtual_guides p::after {
    display: none;
}.meet_us .why_mission .img_box_grid {
    width: calc(100% - 60px);
    height: 200px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    top: auto;
}.meet_us .virtual_guides .fast_learning {
    top: 30px;
    right: 30px;
    height: 200px;
    width: calc(100% - 60px);
    left: 30px;
}.meet_us .study_program::after,
    .meet_us .study_program::before {
    display: none;
}
}

@media screen and (max-width: 768px) {.meet_us {
    padding: 60px 0;
}.meet_us .why_mission {
    padding-bottom: 220px;
}.meet_us .virtual_guides {
    padding-top: 220px;
}.meet_us .why_mission .img_box_grid {
    height: 180px;
}.meet_us .virtual_guides .fast_learning {
    height: 180px;
}
}

@media screen and (max-width: 576px) {.meet_us {
    padding: 50px 0;
}.meet_us h3 {
    margin-bottom: 25px;
    font-size: calc(30px * 0.8);
}.meet_us h3::after {
    height: 3px;
    width: 60px;
}.meet_us .why_mission,
    .meet_us .virtual_guides {
    padding: 25px;
}.meet_us .why_mission {
    padding-bottom: 200px;
    margin-bottom: 40px;
}.meet_us .virtual_guides {
    padding-top: 200px;
    margin-top: 70px;
}.meet_us .why_mission span {
    margin-bottom: 15px;
    font-size: calc(21px * 0.9);
}.meet_us .why_mission p,
    .meet_us .virtual_guides p {
    font-size: calc(14px * 0.95);
}.meet_us .why_mission .img_box_grid {
    right: 25px;
    height: 180px;
    bottom: 25px;
    width: calc(100% - 50px);
}.meet_us .virtual_guides .fast_learning {
    width: calc(100% - 50px);
    height: 180px;
    left: 25px;
    top: 25px;
}.meet_us .why_mission::before,
    .meet_us .virtual_guides::after {
    height: 60px;
    width: 60px;
}
}

@media screen and (max-width: 480px) {.meet_us {
    padding: 40px 0;
}.meet_us .container {
    padding: 0 20px;
}.meet_us h3 {
    margin-bottom: 20px;
    font-size: calc(30px * 0.7);
}.meet_us .why_mission,
    .meet_us .virtual_guides {
    padding: 20px;
}.meet_us .why_mission {
    padding-bottom: 170px;
}.meet_us .virtual_guides {
    padding-top: 170px;
}.meet_us .why_mission .img_box_grid,
    .meet_us .virtual_guides .fast_learning {
    height: 150px;
}}.mentorship_experience {
    background: rgb(171,178,178);
    padding: 4rem 2rem;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}.mentorship_experience::before {
    animation: grid-shift 30s linear infinite;
    top: 0;
    opacity: 0.2;
    content: "";
    width: 100%;
    background-image: linear-gradient(rgb(136,143,143,0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgb(136,143,143,0.5) 1px, transparent 1px);
    height: 100%;
    position: absolute;
    background-size: 20px 20px;
    left: 0;
    z-index: 1;
}.mentorship_experience .review_opinions {
    z-index: 2;
    display: grid;
    grid-template-columns: 45% 55%;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    gap: 0;
}.mentorship_experience .img_box_grid {
    filter: grayscale(60%);
    z-index: 2;
    min-height: 400px;
    position: relative;
    transition: filter 0.6s ease;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}.mentorship_experience .img_box_grid::before {
    content: "";
    mix-blend-mode: overlay;
    border: 1px solid #ffffff;
    left: 20px;
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    right: 20px;
    transition: all 0.5s ease;
    z-index: 3;
    bottom: 20px;
    top: 20px;
}.mentorship_experience .review_opinions:hover .img_box_grid {
    filter: grayscale(0%);
}.mentorship_experience .review_opinions:hover .img_box_grid::before {
    opacity: 0.8;
    transform: scale(1);
}.mentorship_experience .work_record {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    position: relative;
    flex-direction: column;
    padding: 2rem 2rem 2rem 4rem;
    display: flex;
    z-index: 3;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    justify-content: center;
    margin-left: -10%;
}.mentorship_experience .work_record::before {
    background: linear-gradient(to bottom, rgb(136,143,143), rgb(101,109,109));
    left: 0;
    top: 0;
    height: 100%;
    transition: width 0.3s ease;
    width: 10px;
    position: absolute;
    content: "";
}.mentorship_experience .review_opinions:hover .work_record::before {
    width: 15px;
}.mentorship_experience .name {
    font-size: calc(35px * 1.2);
    transform: translateX(20px);
    color: rgb(136,143,143);
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    opacity: 0.9;
    font-family: Arial, sans-serif;
    transition: all 0.4s ease;
    letter-spacing: -1px;
}.mentorship_experience .review_opinions:hover .name {
    opacity: 1;
    transform: translateX(0);
}.mentorship_experience .work_record > div:nth-child(2) {
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 17px;
    letter-spacing: 2px;
    color: rgb(101,109,109);
    transition: all 0.4s ease 0.1s;
    text-transform: uppercase;
    transform: translateX(15px);
}.mentorship_experience .review_opinions:hover .work_record > div:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
}.mentorship_experience .career_section {
    position: relative;
    line-height: 1.8;
    transition: all 0.4s ease 0.2s;
    opacity: 0.8;
    transform: translateX(10px);
    font-size: 17px;
    color: #000000;
}.mentorship_experience .career_section::first-letter {
    font-size: 1.6em;
    color: rgb(136,143,143);
    font-weight: 700;
}.mentorship_experience .review_opinions:hover .career_section {
    transform: translateX(0);
    opacity: 1;
}

@keyframes grid-shift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@media (max-width: 768px) {.mentorship_experience .review_opinions {
    grid-template-columns: 1fr;
}.mentorship_experience .img_box_grid {
    min-height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}.mentorship_experience .work_record {
    margin-left: 0;
    margin-top: -50px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding: 3rem 2rem 2rem;
}}.cookie_popup_advisory {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    z-index: 90;
    background: rgb(101,109,109);
    bottom: 0;
    border-top: 3px solid rgb(101,109,109);
    position: fixed;
    animation: slideUp 0.5s forwards;
    transform: translateY(100%);
    padding: 20px 0;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
#cookieModalWindow {
    display: none;
}#cookieModalWindow:checked ~ .cookie_popup_advisory {
    visibility: hidden;
    opacity: 0;
}.cookie_tips {
    padding: 20px 5%;
    gap: 20px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}.cookie_popup_advisory h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 24px;
}.cookie_popup_advisory p {
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-size: 17px;
}.data_control {
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgb(136,143,143));
    display: flex;
    align-items: center;
}.data_control svg {
    width: 80px;
    transition: transform 0.3s ease-in-out;
    fill: rgb(136,143,143);
    height: 80px;
}.data_control:hover svg {
    transform: scale(1.1);
}.user_choices {
    border-radius: 17px;
    background: linear-gradient(90deg, rgb(136,143,143), rgb(101,109,109));
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 20px;
    font-size: 14px;
    min-width: 140px;
    white-space: nowrap;
    box-shadow: 0 0 15px rgb(136,143,143);
    line-height: 40px;
    margin-left: 10px;
    cursor: pointer;
    text-align: center;
    flex-shrink: 0;
    color: #000000;
    text-decoration: none;
}.user_choices:hover {
    box-shadow: 0 0 20px rgb(101,109,109);
}.cookie_button.cookies_tech {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 2px solid rgb(101,109,109);
}.cookie_button.cookies_tech:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgb(101,109,109);
}.cookie_popup_advisory p a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: rgb(136,143,143);
}.cookie_popup_advisory p a:hover {
    color: rgb(101,109,109);
}
@media only screen and (max-width: 1200px) {.cookie_popup_advisory {
    padding: 15px 0;
}.cookie_tips {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.data_control {
    display: none;
}.cookie_tips {
    text-align: center;
    align-items: center;
    flex-direction: column;
}.cookie_popup_advisory h5 {
    font-size: 21px;
    margin-bottom: 5px;
}.data_guard {
    margin-bottom: 15px;
}.user_choices {
    min-width: 100%;
    margin: 10px 0;
}}
.data_exploration {
    padding: 120px 0;
    z-index: 1;
    overflow: hidden;
    background: rgb(171,178,178);
    position: relative;
}.data_exploration::before {
    position: absolute;
    height: 100%;
    left: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(135deg, rgb(136,143,143,0.5) 0%, transparent 75%);
    width: 100%;
    top: 0;
    opacity: 0.15;
}.data_exploration::after {
    right: 0;
    height: 100%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(315deg, rgb(101,109,109,0.5) 0%, transparent 75%);
    content: "";
    z-index: -1;
    opacity: 0.15;
    width: 100%;
}.data_exploration .container {
    padding: 0 20px;
    position: relative;
    transform: perspective(1000px) rotateX(10deg);
    padding-bottom: 100px;
    max-width: 1400px;
    margin: 0 auto;
    transform-style: preserve-3d;
}.data_exploration h2 {
    transform: perspective(1000px) rotateX(-10deg);
    color: #000000;
    font-weight: 700;
    text-align: center;
    font-size: 32px;
    letter-spacing: 3px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 100px;
}.data_exploration h2::after {
    transform: translateX(-50%);
    width: 60px;
    left: 50%;
    bottom: -15px;
    content: "";
    background: linear-gradient(90deg, rgb(136,143,143), rgb(101,109,109));
    height: 4px;
    position: absolute;
    border-radius: 10px;
}.data_exploration ul {
    transform-style: preserve-3d;
    flex-direction: column;
    margin: 0;
    display: flex;
    list-style: none;
    padding: 0;
}.data_exploration .edu_statistics {
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: center;
    flex-direction: row;
    z-index: 1;
    display: flex;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transform-style: preserve-3d;
    max-width: 600px;
    border-radius: 17px;
}.data_exploration .edu_statistics::before {
    border-radius: 17px;
    background: linear-gradient(90deg, rgb(136,143,143,0.5), transparent);
    transition: opacity 0.3s ease;
    position: absolute;
    z-index: -1;
    content: "";
    opacity: 0;
    inset: 0;
}.data_exploration .edu_statistics:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) translateZ(30px) translateX(10px);
}.data_exploration .edu_statistics:hover::before {
    opacity: 0.1;
}.data_exploration .edu_statistics:nth-child(even) {
    align-self: flex-end;
    flex-direction: row-reverse;
}.data_exploration .edu_statistics:nth-child(even)::before {
    background: linear-gradient(90deg, transparent, rgb(101,109,109,0.5));
}.data_exploration .edu_statistics:nth-child(1) {
    transform: translateX(100px);
}.data_exploration .edu_statistics:nth-child(2) {
    transform: translateX(-100px);
}.data_exploration .edu_statistics:nth-child(3) {
    transform: translateX(200px);
}.data_exploration .edu_statistics:nth-child(4) {
    transform: translateX(-200px);
}.data_exploration .edu_statistics:nth-child(1):hover {
    transform: perspective(1000px) translateZ(30px) translateX(110px);
}.data_exploration .edu_statistics:nth-child(2):hover {
    transform: perspective(1000px) translateZ(30px) translateX(-110px);
}.data_exploration .edu_statistics:nth-child(3):hover {
    transform: perspective(1000px) translateZ(30px) translateX(210px);
}.data_exploration .edu_statistics:nth-child(4):hover {
    transform: perspective(1000px) translateZ(30px) translateX(-210px);
}.data_exploration .edu_statistics p {
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
    font-size: 3.5rem;
    color: transparent;
    flex-basis: 140px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, rgb(136,143,143), rgb(101,109,109));
    -webkit-background-clip: text !important;
    background-clip: text !important;
}.data_exploration .edu_statistics:nth-child(even) p {
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background: linear-gradient(90deg, rgb(101,109,109), rgb(136,143,143));
}.data_exploration .edu_statistics:hover p {
    transform: scale(1.1);
}.data_exploration .edu_statistics span {
    font-size: 12px;
    flex-grow: 1;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #000000;
}.data_exploration .edu_statistics:hover span {
    color: #000000;
}.data_exploration svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    fill: rgb(136,143,143);
    transition: all 0.4s ease;
}.data_exploration .edu_statistics:nth-child(even) svg {
    fill: rgb(101,109,109);
}.data_exploration svg path {
    fill: inherit;
}.data_exploration .edu_statistics:hover svg {
    transform: rotate(15deg);
}.data_exploration ul::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    opacity: 0.4;
    transform: translateX(-50%);
    z-index: -1;
    background: linear-gradient(to bottom, rgb(136,143,143,0.5), rgb(101,109,109,0.5));
    height: 100%;
    top: 0;
}.data_exploration .edu_statistics::after {
    content: "";
    width: 2px;
    position: absolute;
    height: 100px;
    background: linear-gradient(to bottom, rgb(136,143,143,0.5), transparent);
    z-index: -1;
}.data_exploration .edu_statistics:nth-child(odd)::after {
    top: 0;
    right: calc(100% + 50px);
}.data_exploration .edu_statistics:nth-child(even)::after {
    top: 0;
    background: linear-gradient(to bottom, rgb(101,109,109,0.5), transparent);
    left: calc(100% + 50px);
}.data_exploration .container::before {
    top: 0;
    z-index: -2;
    opacity: 0.15;
    width: 100%;
    position: absolute;
    background-image: 
        radial-gradient(circle at 10% 10%, rgb(136,143,143,0.5) 0%, transparent 15%),
        radial-gradient(circle at 90% 90%, rgb(101,109,109,0.5) 0%, transparent 15%),
        radial-gradient(circle at 90% 10%, rgb(136,143,143,0.5) 0%, transparent 12%),
        radial-gradient(circle at 10% 90%, rgb(101,109,109,0.5) 0%, transparent 12%),
        linear-gradient(45deg, rgb(136,143,143,0.5) 0%, transparent 2%),
        linear-gradient(135deg, rgb(101,109,109,0.5) 0%, transparent 2%),
        linear-gradient(225deg, rgb(136,143,143,0.5) 0%, transparent 2%),
        linear-gradient(315deg, rgb(101,109,109,0.5) 0%, transparent 2%);
    content: "";
    height: 100%;
    left: 0;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50px 50px, 50px 50px, 50px 50px, 50px 50px;
}.data_exploration::before, 
.data_exploration::after,
.data_exploration .container::before {
    animation: pulse 15s infinite alternate;
}@keyframes pulse {
    0% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.05;
    }
}


.data_exploration .container::after {
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(136,143,143) 0%, transparent 0.5%),
        radial-gradient(circle at 80% 40%, rgb(101,109,109) 0%, transparent 0.5%),
        radial-gradient(circle at 40% 70%, rgb(136,143,143) 0%, transparent 0.4%),
        radial-gradient(circle at 60% 20%, rgb(101,109,109) 0%, transparent 0.4%),
        radial-gradient(circle at 30% 60%, rgb(136,143,143) 0%, transparent 0.3%),
        radial-gradient(circle at 70% 80%, rgb(101,109,109) 0%, transparent 0.3%);
    width: 100%;
    content: "";
    top: 0;
    z-index: -3;
    height: 100%;
    position: absolute;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, 20% 80%, 80% 20%, 60% 30%, 40% 70%, 90% 10%;
    }
}

@media (max-width: 1200px) {.data_exploration .edu_statistics {
    max-width: 500px;
}.data_exploration .edu_statistics:nth-child(1) {
    transform: translateX(70px);
}.data_exploration .edu_statistics:nth-child(2) {
    transform: translateX(-70px);
}.data_exploration .edu_statistics:nth-child(3) {
    transform: translateX(140px);
}.data_exploration .edu_statistics:nth-child(4) {
    transform: translateX(-140px);
}.data_exploration .edu_statistics:nth-child(1):hover {
    transform: perspective(1000px) translateZ(30px) translateX(80px);
}.data_exploration .edu_statistics:nth-child(2):hover {
    transform: perspective(1000px) translateZ(30px) translateX(-80px);
}.data_exploration .edu_statistics:nth-child(3):hover {
    transform: perspective(1000px) translateZ(30px) translateX(150px);
}.data_exploration .edu_statistics:nth-child(4):hover {
    transform: perspective(1000px) translateZ(30px) translateX(-150px);
}.data_exploration .edu_statistics p {
    flex-basis: 120px;
    font-size: 3rem;
}.data_exploration svg {
    width: 45px;
    height: 45px;
}.data_exploration .edu_statistics::after {
    height: 80px;
}.data_exploration .edu_statistics:nth-child(odd)::after {
    right: calc(100% + 40px);
}.data_exploration .edu_statistics:nth-child(even)::after {
    left: calc(100% + 40px);
}
}

@media (max-width: 991px) {.data_exploration {
    padding: 100px 0;
}.data_exploration .container {
    transform: perspective(1000px) rotateX(5deg);
    padding-bottom: 50px;
}.data_exploration h2 {
    margin-bottom: 80px;
    transform: perspective(1000px) rotateX(-5deg);
}.data_exploration .edu_statistics {
    max-width: 450px;
    gap: 20px;
    padding: 25px;
}.data_exploration .edu_statistics:nth-child(1) {
    transform: translateX(50px);
}.data_exploration .edu_statistics:nth-child(2) {
    transform: translateX(-50px);
}.data_exploration .edu_statistics:nth-child(3) {
    transform: translateX(100px);
}.data_exploration .edu_statistics:nth-child(4) {
    transform: translateX(-100px);
}.data_exploration .edu_statistics:nth-child(1):hover,
    .data_exploration .edu_statistics:nth-child(2):hover,
    .data_exploration .edu_statistics:nth-child(3):hover,
    .data_exploration .edu_statistics:nth-child(4):hover {
    transform: translateZ(0);
}.data_exploration .edu_statistics:hover {
    transform: translateZ(0) translateX(0);
}.data_exploration .edu_statistics p {
    flex-basis: 100px;
    font-size: 2.5rem;
}.data_exploration svg {
    height: 40px;
    width: 40px;
}.data_exploration .edu_statistics::after {
    height: 60px;
}.data_exploration .edu_statistics:nth-child(odd)::after {
    right: calc(100% + 30px);
}.data_exploration .edu_statistics:nth-child(even)::after {
    left: calc(100% + 30px);
}
}

@media (max-width: 768px) {.data_exploration {
    padding: 80px 0;
}.data_exploration .container {
    transform: none;
}.data_exploration h2 {
    transform: none;
    margin-bottom: 50px;
    font-size: calc(32px * 0.9);
}.data_exploration ul {
    align-items: center;
    display: flex;
    flex-direction: column;
}.data_exploration ul::before {
    display: none;
}.data_exploration .edu_statistics {
    transform: none !important;
    width: 100%;
    margin-bottom: 20px;
    flex-direction: row !important;
    padding: 20px;
    max-width: 100%;
}.data_exploration .edu_statistics::after {
    display: none;
}.data_exploration .edu_statistics:nth-child(even) {
    align-self: center;
}.data_exploration .edu_statistics p {
    font-size: 2.2rem;
    flex-basis: 80px;
}.data_exploration svg {
    height: 35px;
    width: 35px;
}.data_exploration .container::after {
    background-size: 5px 5px;
}
}

@media (max-width: 576px) {.data_exploration {
    padding: 60px 0;
}.data_exploration h2 {
    letter-spacing: 2px;
    font-size: calc(32px * 0.8);
    margin-bottom: 40px;
}.data_exploration .edu_statistics {
    gap: 15px;
    padding: 15px;
}.data_exploration .edu_statistics p {
    font-size: 2rem;
    flex-basis: 70px;
}.data_exploration svg {
    height: 30px;
    width: 30px;
}.data_exploration .edu_statistics span {
    font-size: calc(12px * 0.9);
}}


@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.data_exploration .edu_statistics {
    opacity: 0;
    animation: floatIn 0.8s forwards;
}.data_exploration .edu_statistics:nth-child(1) {
    animation-delay: 0.1s;
}.data_exploration .edu_statistics:nth-child(2) {
    animation-delay: 0.3s;
}.data_exploration .edu_statistics:nth-child(3) {
    animation-delay: 0.5s;
}.data_exploration .edu_statistics:nth-child(4) {
    animation-delay: 0.7s;
}@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.data_exploration h2::after {
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}.title_opener {
    position: relative;
    overflow: hidden;
    width: 100%;
}.title_opener .page_hero {
    height: 100vh;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}.title_opener .page_hero::before {
    z-index: 1;
    top: 0;
    right: 0;
    backdrop-filter: blur(2px);
    left: 0;
    content: "";
    bottom: 0;
    background: linear-gradient(135deg, 
    rgb(136,143,143,0.5) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%);
    position: absolute;
}.title_opener .page_hero::after {
    width: 100%;
    background: linear-gradient(to bottom, 
    transparent 30%, 
    rgb(101,109,109,0.5) 100%);
    mix-blend-mode: overlay;
    height: 100%;
    top: 0;
    content: "";
    left: 0;
    position: absolute;
    z-index: 2;
}.title_opener .learn_online {
    transform: perspective(1000px) rotateX(3deg);
    max-width: 1200px;
    transition: transform 0.5s ease-out;
    transform-style: preserve-3d;
    padding: 3rem;
    z-index: 5;
    position: relative;
    width: 90%;
}.title_opener .learn_online::before {
    transform: translateZ(-10px);
    z-index: -1;
    position: absolute;
    top: -10px;
    filter: blur(15px);
    width: 90%;
    height: calc(100% + 20px);
    left: 5%;
    background: linear-gradient(45deg, 
    rgb(136,143,143,0.5) 0%,
    rgb(101,109,109,0.5) 100%);
    content: "";
    opacity: 0.6;
}.title_opener .learn_online::after {
    transform: translateZ(-5px);
    backdrop-filter: blur(5px);
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 95%);
    background: linear-gradient(to right, 
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(20, 20, 30, 0.6) 100%);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: -2;
    content: "";
    border-left: 4px solid rgb(136,143,143);
}.title_opener h1 {
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateZ(20px);
    opacity: 0;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: calc(40px * 1.2);
    margin-bottom: 1.5rem;
    animation: title-reveal 1.2s cubic-bezier(0.17, 0.67, 0.25, 1) forwards;
}.title_opener h3 {
    animation: subtitle-reveal 1.2s cubic-bezier(0.17, 0.67, 0.25, 1) 0.2s forwards;
    margin-bottom: 1.5rem;
    max-width: 90%;
    transform: translateZ(15px);
    line-height: 1.5;
    font-weight: 600;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 19px;
    opacity: 0;
}.title_opener p {
    line-height: 1.6;
    max-width: 80%;
    color: #ffffff;
    font-weight: 300;
    opacity: 0;
    transform: translateZ(10px);
    font-size: 12px;
    position: relative;
    padding-left: 20px;
    font-family: Arial, sans-serif;
    animation: text-reveal 1.2s cubic-bezier(0.17, 0.67, 0.25, 1) 0.4s forwards;
}.title_opener p::before {
    width: 3px;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: line-grow 1s ease-out 0.8s forwards;
    content: "";
    top: 0;
    background: rgb(136,143,143);
    position: absolute;
    height: 100%;
}@keyframes title-reveal {
  0% {
    opacity: 0;
    transform: translateZ(20px) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateZ(20px) translateY(0);
  }
}

@keyframes subtitle-reveal {
  0% {
    opacity: 0;
    transform: translateZ(15px) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateZ(15px) translateY(0);
  }
}

@keyframes text-reveal {
  0% {
    opacity: 0;
    transform: translateZ(10px) translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateZ(10px) translateY(0);
  }
}

@keyframes line-grow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

.title_opener .page_hero:hover .learn_online {
    transform: perspective(1000px) rotateX(1deg) translateY(-5px);
}

@media screen and (max-width: 1200px) {.title_opener .learn_online {
    width: 95%;
    padding: 2.5rem;
}.title_opener h1 {
    font-size: calc(40px * 1.1);
}
}

@media screen and (max-width: 992px) {.title_opener .page_hero {
    height: 90vh;
}.title_opener .learn_online {
    padding: 2rem;
    transform: perspective(1000px) rotateX(2deg);
}.title_opener h1 {
    font-size: 40px;
}.title_opener h3 {
    font-size: calc(19px * 0.95);
    max-width: 95%;
}.title_opener p {
    max-width: 90%;
}
}

@media screen and (max-width: 768px) {.title_opener .page_hero {
    height: 80vh;
}.title_opener .learn_online {
    padding: 1.5rem;
    transform: perspective(800px) rotateX(1deg);
}.title_opener h1 {
    margin-bottom: 1rem;
    font-size: calc(40px * 0.9);
}.title_opener h3 {
    font-size: calc(19px * 0.9);
    margin-bottom: 1rem;
}.title_opener p {
    max-width: 100%;
    font-size: calc(12px * 0.9);
}
}

@media screen and (max-width: 576px) {.title_opener .page_hero {
    height: 100vh;
}.title_opener .learn_online {
    transform: none;
    padding: 1.2rem;
}.title_opener .learn_online::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}.title_opener h1 {
    font-size: calc(40px * 0.8);
    transform: none;
}.title_opener h3 {
    max-width: 100%;
    font-size: calc(19px * 0.85);
    transform: none;
}.title_opener p {
    padding-left: 15px;
    transform: none;
}}.privacy_hideout {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, rgb(101,109,109,0.5) 100%);
    color: #ffffff;
    padding: 50px 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: Arial, sans-serif;
    line-height: 1.8;
}.privacy_hideout::before {
    content: '';
    opacity: 0.5;
    width: 150px;
    z-index: 0;
    transform: rotate(45deg);
    background: radial-gradient(circle at center, rgb(136,143,143), transparent);
    height: 150px;
    top: -10px;
    right: -10px;
    position: absolute;
}.privacy_hideout::after {
    position: absolute;
    left: -10px;
    background: radial-gradient(circle at center, rgb(101,109,109), transparent);
    width: 150px;
    transform: rotate(-45deg);
    content: '';
    opacity: 0.5;
    height: 150px;
    z-index: 0;
    bottom: -10px;
}.privacy_hideout h1, .privacy_hideout h2, .privacy_hideout h3, .privacy_hideout h4, .privacy_hideout h5, .privacy_hideout h6 {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: 20px;
    color: rgb(136,143,143);
    position: relative;
}.privacy_hideout h1 {
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(136,143,143);
    font-size: 40px;
}.privacy_hideout h2 {
    font-weight: 600;
    font-size: 28px;
    border-bottom: 1px solid rgb(101,109,109);
    padding-bottom: 8px;
}.privacy_hideout ul, .privacy_hideout ol {
    z-index: 1;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: none;
}.privacy_hideout li {
    padding-left: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 14px;
    position: relative;
}.privacy_hideout ul li:before, .privacy_hideout ol li:before {
    top: 0.5em;
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(136,143,143);
    position: absolute;
    left: 0;
    height: 8px;
    background-color: rgb(136,143,143);
    content: '';
    width: 8px;
}.privacy_hideout ol {
    counter-reset: item;
}.privacy_hideout ol li {
    list-style-type: none;
}.privacy_hideout ol li:before {
    color: #000000;
    width: 20px;
    left: 0;
    background-color: rgb(101,109,109);
    height: 20px;
    font-size: 14px;
    position: absolute;
    counter-increment: item;
    line-height: 20px;
    text-align: center;
    top: 0;
    content: counter(item);
    border-radius: 50%;
}.privacy_hideout p, .privacy_hideout span {
    z-index: 1;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: justify;
    position: relative;
}.privacy_hideout div {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}
@media only screen and (max-width: 800px) {.privacy_hideout {
    padding: 30px 20px;
}.privacy_hideout h1 {
    font-size: calc(20px - 5px);
}.privacy_hideout h2 {
    font-size: calc(20px - 5px);
}.privacy_hideout p, .privacy_hideout li {
    font-size: calc(14px - 2px);
}.privacy_hideout::before, .privacy_hideout::after {
    width: 100px;
    height: 100px;
}}.experience_trial {
    padding: 130px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(171,178,178) 0%, rgb(101,109,109,0.5) 100%);
}.experience_trial::before {
    content: '';
    width: 100%;
    z-index: 1;
    height: 100%;
    top: 0;
    position: absolute;
    background: radial-gradient(
        ellipse at center,
        rgb(171,178,178) 0%,
        transparent 70%
    );
    left: 0;
}.experience_trial .study_program {
    display: flex;
    z-index: 10;
    flex-direction: column;
    position: relative;
    align-items: center;
}.experience_trial .container p {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        85% 100%, 
        0% 100%
    );
    padding: 40px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        15px 15px 0 rgb(136,143,143,0.5);
    text-align: center;
    font-size: 32px;
    background: #ffffff;
    position: relative;
    margin: 0 auto 80px;
    line-height: 1.4;
    max-width: 800px;
    z-index: 5;
    font-weight: 700;
    color: #000000;
}.experience_trial .reach_request {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(-2deg);
    padding: 20px 50px;
    background: #ffffff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transform-origin: center;
    color: #000000;
    font-size: 18px;
    box-shadow: 
        5px 5px 0 rgb(136,143,143),
        10px 10px 0 rgb(101,109,109,0.5);
    z-index: 5;
}.experience_trial .reach_request:hover {
    box-shadow: 
        8px 8px 0 rgb(136,143,143),
        16px 16px 0 rgb(101,109,109,0.5);
    transform: rotate(0) scale(1.05);
}.experience_trial .container p::before {
    width: 40px;
    content: '';
    top: -5px;
    right: -5px;
    height: 40px;
    position: absolute;
    z-index: -1;
    background: rgb(136,143,143);
}.experience_trial .reach_request::before {
    height: 100%;
    border: 2px dashed rgb(136,143,143);
    left: 5px;
    content: '';
    width: 100%;
    transition: all 0.4s ease;
    z-index: -1;
    top: 5px;
    position: absolute;
}.experience_trial .reach_request:hover::before {
    top: 8px;
    left: 8px;
}.experience_trial::after {
    opacity: 0.1;
    position: absolute;
    top: -200px;
    content: '';
    width: 400px;
    z-index: 1;
    background: rgb(136,143,143,0.5);
    height: 400px;
    right: -200px;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
}.experience_trial .study_program::after {
    background: rgb(101,109,109,0.5);
    height: 300px;
    transform: rotate(-45deg);
    position: absolute;
    width: 300px;
    opacity: 0.1;
    border-radius: 50% 0 50% 50%;
    bottom: -150px;
    z-index: 1;
    content: '';
    left: -150px;
}

@media (max-width: 991px) {.experience_trial {
    padding: 100px 0;
}.experience_trial .container p {
    padding: 35px;
    box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.1),
            10px 10px 0 rgb(136,143,143,0.5);
    margin-bottom: 70px;
    font-size: calc(19px * 1.2);
}.experience_trial .reach_request {
    padding: 18px 40px;
}
}

@media (max-width: 767px) {.experience_trial {
    padding: 80px 0;
}.experience_trial .container p {
    padding: 30px;
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 90%, 
            90% 100%, 
            0% 100%
        );
    font-size: 19px;
    margin-bottom: 60px;
}.experience_trial .reach_request {
    transform: rotate(-1deg);
    padding: 15px 35px;
}.experience_trial .container p::before {
    width: 30px;
    height: 30px;
}
}

@media (max-width: 480px) {.experience_trial {
    padding: 60px 0;
}.experience_trial .container p {
    margin-bottom: 50px;
    padding: 25px;
    font-size: calc(15px * 1.2);
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 95%, 
            95% 100%, 
            0% 100%
        );
    box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.1),
            8px 8px 0 rgb(136,143,143,0.5);
}.experience_trial .reach_request {
    padding: 12px 30px;
    box-shadow: 
            3px 3px 0 rgb(136,143,143),
            6px 6px 0 rgb(101,109,109,0.5);
    transform: rotate(0);
    font-size: calc(18px * 0.9);
}.experience_trial .reach_request::before {
    top: 3px;
    left: 3px;
}.experience_trial .reach_request:hover {
    transform: scale(1.03);
    box-shadow: 
            5px 5px 0 rgb(136,143,143),
            10px 10px 0 rgb(101,109,109,0.5);
}.experience_trial .reach_request:hover::before {
    top: 5px;
    left: 5px;
}
}