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

header,footer {
    width: 100%;
}


header {
    background-color: rgb(224,238,233);
    z-index: 1000;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 97% 100%, 3% 100%, 0 85%);
    position: relative;
    padding: 1.2rem 0;
}

.top_core {
    flex: 1 0 auto;
}


.pricing_block {
    z-index: 1;
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}

.pricing_block::before {
    top: 0;
    z-index: -1;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(22, 28, 45, 0.85) 0%,
        rgba(22, 28, 45, 0.75) 50%, 
        rgba(22, 28, 45, 0.9) 100%);
}

.pricing_block h2::after {
    transform: translateX(-50%);
    content: "";
    width: 80px;
    height: 4px;
    position: absolute;
    left: 50%;
    background: linear-gradient(90deg, rgb(178,212,202), rgb(138,183,171));
    bottom: -12px;
    border-radius: 10px;
}

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

.pricing_block .fee_plans {
    transition: all 0.4s ease;
    display: block;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 
                0 8px 15px rgba(0, 0, 0, 0.1),
                0 1px 0 rgba(255, 255, 255, 0.1) inset;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.03);
    isolation: isolate;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.pricing_block .rate_options {
    height: 100%;
    display: flex;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 35px 30px;
    flex-direction: column;
}

.pricing_block .pricing_catalog {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.pricing_block .pricing_catalog h4::after {
    background: rgb(138,183,171);
    width: 40px;
    content: "";
    transition: width 0.3s ease;
    bottom: 0;
    position: absolute;
    height: 3px;
    left: 0;
}

.pricing_block .pricing_catalog p {
    word-wrap: break-word;
    margin: 0 0 30px;
    hyphens: auto;
    line-height: 1.6;
    overflow-wrap: break-word;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.pricing_block .fee_plans:hover .plan_matrix {
    background: rgba(rgb(178,212,202,0.5), 0.2);
    transform: scale(1.05);
}

.privacy_concealment {
    overflow: hidden;
    padding: 5rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgb(224,238,233) 0%, #ffffff 100%);
}

.privacy_concealment::after {
    filter: blur(80px);
    bottom: -10%;
    background: rgb(138,183,171,0.5);
    z-index: 0;
    width: 25vw;
    transform: rotate(15deg);
    position: absolute;
    left: -5%;
    opacity: 0.15;
    height: 25vw;
    content: "";
}

.privacy_concealment .container:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.privacy_concealment h1 {
    font-weight: 700;
    position: relative;
    color: #000000;
    margin-bottom: 2rem;
    transform: translateX(-8px);
    font-size: 46px;
}

.privacy_concealment h2 {
    position: relative;
    margin: 3rem 0 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.75rem;
    font-size: 33px;
    font-weight: 600;
    color: #000000;
}

.privacy_concealment h2:hover::after {
    width: 100px;
}

.privacy_concealment h3 {
    padding-left: 15px;
    position: relative;
    margin: 2.5rem 0 1.25rem;
    color: #000000;
    font-weight: 600;
    font-size: calc(33px * 0.85);
}

.privacy_concealment h4 {
    margin: 2rem 0 1rem;
    display: inline-block;
    font-weight: 600;
    font-size: calc(33px * 0.7);
    color: #000000;
    position: relative;
}

.privacy_concealment p {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 12px;
    max-width: 90ch;
    line-height: 1.8;
}

.privacy_concealment ul {
    margin: 1.5rem 0 2.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.privacy_concealment li {
    margin-bottom: 1rem;
    position: relative;
    font-size: 12px;
    padding-left: 1rem;
    color: #000000;
    line-height: 1.6;
    transition: transform 0.2s ease;
}

.privacy_concealment li:hover {
    transform: translateX(3px);
}

.privacy_concealment li:hover::before {
    background: rgb(138,183,171);
    transform: rotate(135deg);
}

.privacy_concealment span {
    padding: 0.5rem 0 0.5rem 1rem;
    font-style: italic;
    border-left: 2px solid rgb(138,183,171,0.5);
    line-height: 1.7;
    font-size: 12px;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 2rem;
    display: block;
}

.educational_rewards {
    background: linear-gradient(135deg, rgb(224,238,233) 0%, rgba(245, 247, 250, 0.92) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.educational_rewards::after {
    right: -50%;
    width: 100%;
    position: absolute;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(rgb(138,183,171,0.5), 0.08) 0%, transparent 70%);
    top: -50%;
    transform: rotate(-15deg);
    content: "";
    height: 100%;
}

.educational_rewards .digital_education {
    justify-content: space-between;
    gap: 60px;
    perspective: 1000px;
    display: flex;
    transform-style: preserve-3d;
    align-items: center;
}

.educational_rewards .abstract_box:hover {
    box-shadow: 
        20px 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.08),
        -20px -20px 40px rgba(#ffffff, 0.9),
        inset 2px 2px 4px rgba(#ffffff, 0.6),
        inset -2px -2px 4px rgba(rgba(0, 0, 0, 0.5), 0.04);
    transform: translateZ(20px) rotateY(-2deg);
}

.educational_rewards h4 {
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    font-size: calc(21px * 1.2);
    color: #000000;
    margin-bottom: 30px;
}

.educational_rewards .abstract_box:hover h4::after {
    width: 80px;
}

.educational_rewards .abstract_box > div {
    flex-wrap: wrap;
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.educational_rewards ul {
    list-style: none;
    padding: 0;
    flex: 1;
    min-width: 280px;
    margin: 0;
}

.educational_rewards li:hover {
    transform: translateX(5px);
}

.educational_rewards li p span:first-child {
    width: 36px;
    display: flex;
    background: linear-gradient(135deg, rgba(#ffffff, 1), rgba(245, 247, 250, 0.9));
    align-items: center;
    transform: translateY(-2px);
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 
        4px 4px 8px rgba(rgba(0, 0, 0, 0.5), 0.07),
        -4px -4px 8px rgba(#ffffff, 0.8),
        inset 1px 1px 2px rgba(#ffffff, 0.4),
        inset -1px -1px 2px rgba(rgba(0, 0, 0, 0.5), 0.07);
    height: 36px;
    flex-shrink: 0;
}

.educational_rewards li:hover svg {
    transform: translateZ(5px) rotate(-5deg);
}

.educational_rewards li:hover svg path {
    fill: rgb(178,212,202);
}

.educational_rewards .img_grid_wrapper:hover {
    transform: translateZ(30px) rotateY(2deg);
    box-shadow: 
        25px 25px 50px rgba(rgba(0, 0, 0, 0.5), 0.15),
        -10px -10px 40px rgba(#ffffff, 0.8);
}

.newsletter_signup {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(178,212,202,0.5), rgb(138,183,171));
    padding: 5rem 2rem;
}

.newsletter_signup::before {
    opacity: 0.05;
    content: '';
    pointer-events: none;
    left: -50%;
    height: 200%;
    z-index: 1;
    transform: rotate(-12deg);
    background: radial-gradient(circle at 30% 40%, rgb(255, 255, 255, 0.5) 0%, transparent 60%);
    position: absolute;
    width: 200%;
    top: -50%;
}

.newsletter_signup .container {
    z-index: 5;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter_signup h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    color: #ffffff;
    line-height: 1.4;
    font-size: 19px;
    font-weight: 600;
    transform: translateY(0);
}

.newsletter_signup .digital_education > div::before {
    opacity: 0.7;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    background: #ffffff;
    content: '';
    border-radius: 10px;
    height: 0;
    width: 5px;
    left: -20px;
    transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.newsletter_signup .input_holder span::after {
    background: #ffffff;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    width: 100%;
    height: 2px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    bottom: 0;
    position: absolute;
    left: 0;
}

.newsletter_signup input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter_signup input[type="email"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter_signup .sub_deal {
    border-radius: 4px;
    overflow: hidden;
    font-weight: 600;
    color: rgb(178,212,202);
    font-size: 14px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    padding: 1rem 2rem;
    z-index: 1;
    background: #ffffff;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter_signup .sub_deal:hover::before {
    left: 100%;
}

.newsletter_signup .sub_deal:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mentorship_experience {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(224,238,233) 0%, rgb(178,212,202,0.5) 100%);
}

.mentorship_experience .review_experiences {
    flex-direction: row;
    align-items: center;
    transform: rotate(-2deg);
    gap: 2rem;
    position: relative;
    justify-content: center;
    display: flex;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.mentorship_experience .emp_summary {
    border-radius: 20px;
    position: relative;
    transform: perspective(1000px) rotateY(5deg) translateX(-30px);
    z-index: 2;
    max-width: 450px;
    padding: 2.5rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #ffffff;
}

.mentorship_experience .name {
    color: rgb(178,212,202);
    font-size: 38px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    transform: skewX(-5deg);
}

.mentorship_experience .emp_summary div:nth-child(2) {
    color: rgb(138,183,171);
    font-weight: 600;
    transform: skewX(-5deg);
    font-size: 19px;
    margin-bottom: 1.5rem;
}

.mentorship_experience .exp_card::before {
    position: absolute;
    left: 0;
    content: "";
    border-radius: 10px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(178,212,202), rgb(138,183,171));
    width: 4px;
    top: 0;
}

header .top_plank {
    background: rgb(178,212,202);
    color:  #ffffff;
}

header .top_plank .top_expertspro div svg, header .top_plank .top_expertspro div svg path {
    fill: #ffffff;
}

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

header .top_plank .top_expertspro div img, header .top_plank .top_expertspro div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}

.program_offerings::before {
    background: 
        linear-gradient(0deg, transparent 95%, rgb(178,212,202,0.5) 100%),
        linear-gradient(90deg, transparent 95%, rgb(178,212,202,0.5) 100%);
    z-index: 1;
    left: 0;
    background-size: 20px 20px;
    position: absolute;
    animation: gridMove 40s linear infinite;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.15;
}

.program_offerings .learn_track {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    gap: 60px;
    justify-content: center;
}

.program_offerings .abstract_box::before {
    opacity: 0.3;
    top: 0;
    border-radius: 22px;
    position: absolute;
    border: 1px solid rgb(178,212,202,0.5);
    width: 100%;
    left: 0;
    height: 100%;
    pointer-events: none;
    content: "";
}

.program_offerings .abstract_box h2 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 37px;
    position: relative;
    display: inline-block;
}



.program_offerings .abstract_box h2 {
    animation: reveal 0.8s forwards;
}

.program_offerings .abstract_box .description {
    color: #000000;
    margin-right: auto;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-bottom: 20px;
    font-size: 14px;
}

.program_offerings .img_grid_wrapper {
    height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    position: relative;
    border-radius: 22px;
    z-index: 2;
    overflow: hidden;
}



.program_offerings .learn_track::before {
    background-size: 600px 600px;
    left: -100px;
    top: -100px;
    width: calc(100% + 200px);
    opacity: 0.2;
    content: "";
    position: absolute;
    animation: floatParticles 40s linear infinite;
    z-index: 0;
    height: calc(100% + 200px);
    background-image: 
        radial-gradient(circle at 100px 100px, rgb(178,212,202,0.5) 1px, transparent 1px),
        radial-gradient(circle at 200px 200px, rgb(138,183,171,0.5) 1px, transparent 1px),
        radial-gradient(circle at 300px 300px, rgb(178,212,202,0.5) 1px, transparent 1px),
        radial-gradient(circle at 400px 100px, rgb(138,183,171,0.5) 1px, transparent 1px),
        radial-gradient(circle at 500px 200px, rgb(178,212,202,0.5) 1px, transparent 1px);
}

.program_offerings .container::after {
    left: 0;
    background-size: 50px 86.6px;
    content: "";
    background-image: 
        repeating-linear-gradient(60deg, rgb(178,212,202,0.5) 0, rgb(178,212,202,0.5) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(120deg, rgb(178,212,202,0.5) 0, rgb(178,212,202,0.5) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(180deg, rgb(178,212,202,0.5) 0, rgb(178,212,202,0.5) 1px, transparent 1px, transparent 30px);
    animation: hexMove 60s linear infinite;
    height: 100%;
    top: 0;
    position: absolute;
    opacity: 0.03;
    width: 100%;
    z-index: 0;
}



.edu_links .container {
    display: flex;
    position: relative;
    flex-direction: column;
}

.edu_links .company_holder {
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.edu_links .company_holder::after {
    right: 0;
    animation-delay: 1.5s;
}



.edu_links .company_holder h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: calc(36px * 1.3);
    display: inline-block;
    position: relative;
}

.edu_links .company_holder h3::after {
    content: "";
    width: 60px;
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
    background: rgb(138,183,171);
    left: 50%;
    position: absolute;
}

.edu_links .media_kit {
    display: flex;
    justify-content: center;
}

.edu_links .header_master::before {
    content: "";
    width: 1px;
    position: absolute;
    height: 20px;
    left: 50%;
    background: rgb(178,212,202);
    top: -30px;
    transform: translateX(-50%);
}

.edu_links .top_expert:hover {
    transform: translateY(-5px);
    background: rgba(rgb(178,212,202,0.5), 0.1);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2);
}

.edu_links .top_expert .header_master {
    flex-direction: column;
    display: flex;
    gap: 0.8rem;
    position: static;
}

.edu_links .top_expert .header_master a {
    text-decoration: none;
    opacity: 0.75;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0.4rem 0;
    font-size: 17px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
}

.edu_links .top_expert .header_master a:hover {
    opacity: 1;
    color: rgb(138,183,171);
}

.edu_links .top_expert .header_master a:hover::before {
    transform: scaleX(1);
}

.slack_invite {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: 4rem;
    padding: 1.2rem 0;
    position: relative;
}



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

.slack_invite .template_cta {
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
}

.slack_invite .template_cta::before,
.slack_invite .template_cta::after {
    color: rgb(178,212,202);
    content: "•";
    margin: 0 0.6rem;
}


.data_control {
    align-items: center;
    display: flex;
    background: linear-gradient(135deg, rgb(138,183,171) 0%, rgba(0, 0, 0, 0.5) 100%);
    justify-content: space-between;
    box-shadow: 0 0 20px rgb(178,212,202,0.5);
    padding: 20px 5%;
    flex-wrap: wrap;
}

.learn_consent svg, .learn_consent svg path {
    width: 60px;
    transition: transform 0.3s ease;
    fill: rgb(178,212,202);
    height: 60px;
}

.cookie_overview h5 {
    text-shadow: 0 0 10px rgb(178,212,202);
    font-size: 20px;
    font-weight: 700;
    color: rgb(178,212,202);
    margin-bottom: 10px;
}

.user_alert {
    padding: 12px 25px;
    color: #000000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    margin-left: 10px;
    text-decoration: none;
    background: rgb(178,212,202);
    cursor: pointer;
    box-shadow: 0 0 10px rgb(178,212,202,0.5);
    font-size: 17px;
    white-space: nowrap;
}

#cookieInfoContainer:checked ~ .overlayConsentSettings {
    opacity: 0;
    visibility: hidden;
}

header::after {
    width: 100%;
    background: linear-gradient(90deg, 
        rgb(178,212,202) 0%, 
        rgb(138,183,171) 50%, 
        rgb(178,212,202) 100%);
    z-index: 1;
    left: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    content: '';
}

header .container {
    position: relative;
    padding: 0 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

header .header_bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .head_sitewrap {
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    font-weight: 400;
    font-size: 17px;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

header .head_sitewrap::after {
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    background: rgb(178,212,202);
    z-index: -1;
    content: '';
}

header .head_sitewrap:hover::before {
    opacity: 1;
    transform: scale(1);
}

header .nav_core {
    align-items: center;
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    display: flex;
    overflow: hidden;
}

header .nav_core:hover::before {
    left: 100%;
}

.user_testimonials {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(224,238,233) 0%, rgb(178,212,202,0.5) 100%);
    overflow: hidden;
}

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

.user_testimonials h2 {
    margin-bottom: 4rem;
    color: #000000;
    animation: fadeInUp 0.8s ease-out;
    opacity: 1;
    font-weight: 700;
    text-align: center;
    transform: translateY(0);
    font-size: 30px;
    position: relative;
}

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

.user_testimonials .review_experiences:nth-child(3n+1) {
    transform: translateY(5px) rotate(-1deg);
    --i: 1;
}

.user_testimonials .review_experiences:nth-child(3n+2) {
    transform: translateY(-5px) rotate(0.5deg);
    --i: 2;
}

.user_testimonials .review_experiences:nth-child(3n+3) {
    transform: translateY(8px) rotate(0deg);
    --i: 3;
}

.user_testimonials .review_experiences:hover {
    transform: translateY(-10px) rotate(0);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.user_testimonials .review_experiences div {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 1;
    align-items: center;
    display: flex;
}

.user_testimonials .review_experiences img {
    border: 3px solid #ffffff;
    margin-right: 1.2rem;
    object-fit: cover;
    width: 65px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 50%;
    height: 65px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.user_testimonials .review_experiences:hover h4::after {
    width: 60px;
}

.user_testimonials .description {
    z-index: 1;
    color: #000000;
    font-style: italic;
    margin: 0;
    font-size: 17px;
    position: relative;
    line-height: 1.6;
}

.user_testimonials a {
    margin-top: 3rem;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    position: relative;
    font-size: 14px;
    text-align: center;
    display: none;
    background: linear-gradient(135deg, rgb(178,212,202) 0%, rgb(138,183,171) 100%);
    z-index: 1;
    padding: 12px 30px;
    transform: perspective(1px) translateZ(0);
    font-weight: 600;
    display: inline-block;
    overflow: hidden;
}

.tySpace::before {
    content: "";
    width: 100%;
    position: absolute;
    animation: pulse 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at 70% 30%, rgb(138,183,171,0.5) 0%, transparent 60%);
    top: 0;
    z-index: 1;
    height: 100%;
    left: 0;
    opacity: 0.4;
}

.tySpace .container {
    margin: 0 auto;
    max-width: 1200px;
    animation: slideUp 0.8s forwards 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    transform: translateY(20px);
}

.tySpace h2::after {
    transform: translateX(-50%);
    border-radius: 10px;
    left: 50%;
    height: 3px;
    position: absolute;
    width: 80px;
    content: "";
    bottom: -15px;
    background: linear-gradient(90deg, rgb(178,212,202), rgb(138,183,171));
}

.tySpace .digital_education::before {
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, rgb(178,212,202), rgb(138,183,171));
    left: 0;
    height: 100%;
    content: "";
    top: 0;
}

.tySpace .digital_education::after {
    top: 10px;
    opacity: 0.2;
    height: 120px;
    right: 10px;
    border-radius: 50%;
    z-index: 0;
    background: radial-gradient(circle, rgb(178,212,202,0.5) 0%, transparent 70%);
    content: "";
    width: 120px;
    position: absolute;
}

.tySpace li::before {
    width: 8px;
    transform: scale(0);
    content: "";
    animation: appearDot 0.4s forwards 1s cubic-bezier(0.19, 1, 0.22, 1);
    top: 8px;
    position: absolute;
    background: rgb(178,212,202);
    opacity: 0;
    left: 0;
    height: 8px;
    border-radius: 50%;
}

.our_team {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(224,238,233) 0%, #ffffff 100%);
}

.our_team::after {
    transform: rotate(15deg);
    z-index: 1;
    height: 40%;
    opacity: 0.7;
    background: linear-gradient(240deg, rgb(138,183,171,0.5) 0%, transparent 70%);
    left: -10%;
    position: absolute;
    clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%);
    bottom: -5%;
    content: "";
    width: 40%;
}

.our_team h1::after {
    bottom: -0.5rem;
    left: 0;
    height: 3px;
    position: absolute;
    width: 0;
    content: "";
    animation: expandLine 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.8s;
    background: linear-gradient(90deg, rgb(178,212,202) 0%, rgb(138,183,171) 100%);
}

.our_team .knowledge_growth ul {
    gap: 3rem;
    list-style: none;
    grid-template-columns: 1fr;
    display: grid;
    margin: 0;
    padding: 0;
}

.our_team .path_creators:nth-child(1) {
    border-left: 4px solid rgb(178,212,202);
    animation-delay: 0.3s;
}

.our_team .path_creators:nth-child(2) {
    border-left: 4px solid rgb(138,183,171);
    animation-delay: 0.5s;
}

.our_team .path_creators:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.our_team .path_creators:nth-child(1) h4::after {
    background: rgb(178,212,202);
    content: "";
    height: 2px;
    bottom: 0;
    width: 3rem;
    position: absolute;
    left: 0;
}

.our_team .path_creators div {
    line-height: 1.7;
    overflow-y: auto;
    color: #000000;
    padding-right: 1rem;
    max-height: 300px;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.info_hub::before {
    z-index: -1;
    position: absolute;
    width: 100%;
    content: '';
    background-size: 200px 200px;
    height: 100%;
    opacity: 0.05;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgb(178,212,202,0.5) 25%, 
        rgb(178,212,202,0.5) 30%, 
        transparent 30%,
        transparent 45%, 
        rgb(138,183,171,0.5) 45%, 
        rgb(138,183,171,0.5) 50%, 
        transparent 50%);
    top: 0;
    left: 0;
}

.info_hub .instant_help h2 {
    font-weight: 700;
    position: relative;
    color: rgb(178,212,202);
    margin-bottom: 30px;
    font-size: 38px;
}

.info_hub .instant_help p {
    max-width: 800px;
    margin-bottom: 25px;
    color: #000000;
    line-height: 1.7;
    font-size: 14px;
}

.info_hub .instant_help p:last-of-type svg {
    stroke: rgb(178,212,202);
    top: 3px;
    position: absolute;
    left: 0;
    fill: none;
    width: 24px;
    stroke-width: 2;
    height: 24px;
}

.info_hub .write_form::before {
    content: '';
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgb(178,212,202,0.5) 100%);
    width: 100%;
    opacity: 0;
    left: 0;
    transition: opacity 0.4s ease;
    top: 0;
    z-index: -1;
}

.info_hub .write_form:hover {
    color: rgb(178,212,202);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.info_hub .write_form:hover::before {
    opacity: 0.2;
}

.info_hub .write_form:hover svg {
    stroke-width: 2;
    transform: scale(1.1);
}

.info_hub .write_form svg path {
    transition: all 0.3s ease;
}

.reach_out {
    padding: 100px 0;
    background-color: rgb(224,238,233);
    overflow: hidden;
    position: relative;
}

.reach_out::after {
    right: 0;
    height: 70%;
    background: linear-gradient(240deg, rgb(138,183,171,0.5) 0%, transparent 70%);
    width: 70%;
    position: absolute;
    opacity: 0.1;
    bottom: 0;
    content: "";
}

.reach_out h2 {
    font-weight: 700;
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 35px;
    margin-bottom: 15px;
}

.reach_out .img_grid_wrapper {
    overflow: hidden;
    min-height: 500px;
    flex: 0 0 40%;
    position: relative;
}

.reach_out .feedback_widget {
    padding: 60px;
    position: relative;
    flex: 0 0 60%;
}

.reach_out .feedback_widget::before {
    content: "";
    left: 0;
    height: calc(100% - 80px);
    position: absolute;
    background: linear-gradient(to bottom, rgb(178,212,202), rgb(138,183,171));
    top: 40px;
    border-radius: 2.5px;
    width: 5px;
}

.reach_out form input[type="text"] {
    border: none;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    background: rgb(224,238,233);
    padding: 18px 25px;
    color: #000000;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    width: 100%;
}

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

.reach_out .reach_query label {
    color: #000000;
    padding-left: 35px;
    font-size: 14px;
    position: relative;
    line-height: 1.5;
    cursor: pointer;
}

.reach_out .reach_query input[type="checkbox"]:checked + label::before {
    border-color: rgb(178,212,202);
    background-color: rgb(178,212,202);
}

.reach_out .reach_query label a {
    color: rgb(178,212,202);
    text-decoration: none;
    transition: all 0.3s ease;
}

.reach_out .reach_query label a:hover {
    text-decoration: underline;
    color: rgb(138,183,171);
}

.reach_out form .help_help::before {
    top: -10%;
    content: "";
    transform: rotate(45deg) translateX(-200%);
    width: 120%;
    background: rgba(255, 255, 255, 0.2);
    height: 120%;
    left: -10%;
    position: absolute;
    transition: all 0.4s ease;
}

.reach_out form .help_help:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(rgb(178,212,202), 0.3);
}

.reach_out svg {
    height: 22px;
    fill: rgb(178,212,202);
    width: 22px;
}

.reach_out svg path {
    fill: rgb(178,212,202);
    transition: fill 0.3s ease;
}

.primary_page .course_intro {
    position: relative;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.primary_page .course_intro::after {
    transform: translateZ(0);
    height: 40%;
    left: 0;
    content: "";
    z-index: 2;
    background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    transparent 100%
  );
    position: absolute;
    width: 100%;
    bottom: 0;
}

.primary_page .heritage_edu::before {
    content: "";
    position: absolute;
    top: -10px;
    opacity: 0.5;
    transform: translateZ(-10px);
    left: -10px;
    height: calc(100% + 20px);
    filter: blur(20px);
    background: linear-gradient(
    45deg,
    rgb(178,212,202) 0%,
    transparent 40%,
    transparent 60%,
    rgb(138,183,171) 100%
  );
    z-index: -1;
    width: calc(100% + 20px);
}

.primary_page .heritage_edu h1 {
    font-size: calc(41px * 1.15);
    color: #ffffff;
    animation: textFlyIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    position: relative;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation-delay: 0.2s;
    transform: translateZ(40px);
    opacity: 0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.primary_page .heritage_edu h3 {
    animation-delay: 0.4s;
    font-size: calc(18px * 1.1);
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 1.75rem;
    animation: textFlyIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    font-weight: 600;
    transform: translateZ(30px);
    opacity: 0.9;
    opacity: 0;
}

.primary_page .heritage_edu p::before {
    transform-origin: top;
    transform: scaleY(0);
    left: 0;
    width: 3px;
    animation-delay: 1.2s;
    content: "";
    position: absolute;
    height: calc(100% - 1rem);
    background: rgb(138,183,171);
    top: 0.5rem;
    animation: lineGrow 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


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


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media (min-width: 1200px) {.pricing_block .learning_rates {
    grid-template-columns: repeat(4, 1fr);
}.pricing_block .rate_options {
    padding: 40px 35px;
}.pricing_block h2 {
    font-size: calc(37px + 4px);
}
}



@media (max-width: 767px) {.pricing_block {
    padding: 70px 0;
}.pricing_block .learning_rates {
    grid-template-columns: 1fr;
    gap: 20px;
}.pricing_block h2 {
    font-size: calc(37px - 2px);
}.pricing_block .cost_summary {
    font-size: 16px;
    margin-bottom: 40px;
}.pricing_block .pricing_catalog h4 {
    font-size: 24px;
}.pricing_block .pricing_catalog p {
    margin-bottom: 20px;
    font-size: calc(16px - 1px);
}.pricing_block .plan_matrix {
    font-size: calc(24px + 2px);
}.pricing_block .rate_options {
    padding: 30px 20px;
}
}



@media (max-width: 767px) {.privacy_concealment {
    padding: 3rem 1rem;
}.privacy_concealment .container {
    padding: 2rem 1.5rem;
    transform: perspective(600px) rotateY(0.3deg);
    border-left-width: 2px;
}.privacy_concealment h1 {
    font-size: calc(46px * 0.8);
    transform: translateX(-5px);
}.privacy_concealment h1::before {
    left: -15px;
    width: 4px;
}.privacy_concealment h2 {
    font-size: calc(33px * 0.8);
    margin: 2.5rem 0 1.25rem;
}.privacy_concealment h3 {
    font-size: calc(33px * 0.7);
}.privacy_concealment h4 {
    font-size: calc(33px * 0.6);
}.privacy_concealment p, 
    .privacy_concealment li,
    .privacy_concealment span {
    font-size: calc(12px * 0.95);
}.privacy_concealment ul {
    padding-left: 1rem;
}.privacy_concealment li::before {
    height: 6px;
    left: -1rem;
    width: 6px;
}
}



@media (max-width: 991px) {.educational_rewards {
    padding: 80px 0;
}.educational_rewards .digital_education {
    gap: 40px;
    flex-direction: column-reverse;
}.educational_rewards .abstract_box {
    padding: 30px;
    transform: translateZ(5px) rotateY(-2deg);
    width: 100%;
}.educational_rewards .abstract_box:hover {
    transform: translateZ(10px) rotateY(-1deg);
}.educational_rewards .img_grid_wrapper {
    width: 100%;
    max-width: 450px;
    transform: translateZ(10px) rotateY(3deg);
}.educational_rewards .img_grid_wrapper:hover {
    transform: translateZ(15px) rotateY(1deg);
}.educational_rewards h4 {
    font-size: 21px;
}
}



@media (max-width: 479px) {.educational_rewards {
    padding: 50px 0;
}.educational_rewards .abstract_box {
    padding: 20px 15px;
}.educational_rewards li {
    margin-bottom: 15px;
}.educational_rewards li p {
    font-size: calc(14px * 0.9);
}.educational_rewards li p span:first-child {
    height: 28px;
    width: 28px;
}.educational_rewards svg {
    height: 14px;
    width: 14px;
}}



@media (max-width: 767px) {.newsletter_signup {
    padding: 4rem 1.5rem;
}.newsletter_signup .input_holder {
    grid-template-columns: 1fr;
}.newsletter_signup h4 {
    margin-bottom: 1rem;
    text-align: center;
}.newsletter_signup .digital_education {
    transform: perspective(1000px) rotateX(0);
}.newsletter_signup .digital_education > div::before {
    transform: none;
    width: 50px;
    left: 0;
    height: 3px;
    top: -10px;
}.newsletter_signup .digital_education:hover > div::before {
    width: 80px;
    height: 3px;
}.newsletter_signup .sub_deal {
    width: 100%;
    margin-top: 0.5rem;
}
}



@media screen and (max-width: 991px) {.mentorship_experience .review_experiences {
    flex-direction: column;
    transform: rotate(0);
    gap: 3rem;
}.mentorship_experience .img_grid_wrapper {
    height: 320px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(0);
    width: 280px;
}.mentorship_experience .emp_summary {
    transform: translateY(-30px) perspective(1000px) rotateY(0);
}.mentorship_experience .review_experiences:hover .img_grid_wrapper {
    transform: perspective(1000px) rotateY(0);
}.mentorship_experience .review_experiences:hover .emp_summary {
    transform: translateY(-40px) perspective(1000px) rotateY(0);
}}



@media (max-width: 576px) {.program_offerings {
    padding: 50px 0;
}.program_offerings .abstract_box {
    padding: 20px;
}.program_offerings .img_grid_wrapper {
    height: 300px;
}.program_offerings .abstract_box h2 {
    font-size: calc(37px * 0.8);
}.program_offerings .abstract_box .description {
    font-size: calc(14px * 0.95);
}
}



@media screen and (max-width: 992px) {.edu_links {
    padding: 4rem 0 2rem;
}.edu_links .company_holder {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}.edu_links .company_holder h3 {
    font-size: 36px;
}.edu_links .header_master {
    gap: 3rem;
}
}



@media screen and (max-width: 576px) {.edu_links {
    padding: 3rem 0 1.5rem;
}.edu_links .company_holder h3 {
    font-size: calc(36px * 0.9);
}.edu_links .data_viz {
    font-size: calc(17px * 0.9);
}.edu_links .top_expert {
    padding: 1rem;
}.edu_links .top_expert h5 {
    font-size: calc(21px * 0.9);
}.slack_invite {
    margin-top: 2rem;
    padding: 1rem 0;
}.slack_invite .template_cta {
    font-size: calc(14px * 0.9);
}.slack_invite .template_cta::before,
    .slack_invite .template_cta::after {
    display: none;
}}



@media (max-width: 991px) {header {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 5% 100%, 0 90%);
}header .top_expert {
    gap: 0.3rem;
}header .head_sitewrap {
    font-size: calc(17px - 1px);
    padding: 0.6rem 0.8rem;
}header .nav_core svg {
    width: 140px;
}
}



@media (max-width: 480px) {header {
    padding: 0.8rem 0 1.2rem;
}header .top_expert {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
}header .top_expert::-webkit-scrollbar {
    height: 3px;
}header .top_expert::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(178,212,202);
}header .head_sitewrap {
    white-space: nowrap;
}header .nav_core svg {
    width: 110px;
}}



@media (max-width: 992px) {.user_testimonials {
    padding: 4rem 0;
}.user_testimonials .review_spot {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}.user_testimonials h2 {
    font-size: calc(30px * 0.9);
    margin-bottom: 3rem;
}
}



@media (max-width: 576px) {.user_testimonials {
    padding: 3rem 0;
}.user_testimonials h2 {
    font-size: calc(30px * 0.7);
    margin-bottom: 2rem;
}.user_testimonials .review_spot {
    gap: 1.5rem;
}.user_testimonials .review_experiences {
    padding: 1.5rem;
}.user_testimonials .review_experiences::before {
    font-size: 90px;
}.user_testimonials .review_experiences img {
    margin-right: 1rem;
    height: 50px;
    width: 50px;
}.user_testimonials .description {
    font-size: calc(17px * 0.95);
}}



@media (max-width: 480px) {.tySpace {
    padding: 2.5rem 0;
}.tySpace .container {
    padding: 0 1.25rem;
}.tySpace h2 {
    margin-bottom: 1.5rem;
    font-size: calc(36px * 0.7);
}.tySpace h2::after {
    bottom: -10px;
    height: 2px;
    width: 50px;
}.tySpace .digital_education {
    padding: 1.5rem 1.25rem;
}.tySpace li span {
    line-height: 1.7;
    font-size: calc(14px * 0.95);
}}



@media (min-width: 992px) {.our_team {
    padding: 10rem 0;
}.our_team::before {
    height: 35%;
    width: 35%;
}.our_team::after {
    height: 35%;
    width: 35%;
}.our_team h1 {
    font-size: calc(46px * 1.2);
    margin-bottom: 4rem;
}.our_team .path_creators {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    padding: 3.5rem;
}.our_team .path_creators:hover {
    transform: translateY(-0.75rem) scale(1.02);
}.our_team .path_creators h4 {
    font-size: calc(19px * 1.1);
}.our_team .path_creators div {
    max-height: 400px;
    font-size: calc(13px * 1.05);
    line-height: 1.8;
}
}



@media screen and (max-width: 991px) {.info_hub {
    padding: 60px 0;
}.info_hub .instant_help {
    padding: 40px 30px;
}.info_hub .contact_faq {
    grid-template-columns: repeat(3, 1fr);
}
}



@media screen and (max-width: 767px) {.info_hub {
    padding: 50px 0;
}.info_hub .instant_help {
    padding: 35px 25px;
}.info_hub .instant_help h2 {
    font-size: calc(38px * 0.9);
}.info_hub .contact_faq {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}.info_hub .write_form {
    height: 110px;
}
}



@media screen and (max-width: 1024px) {.reach_out .feedback_widget {
    padding: 50px 40px;
}
}



@media screen and (max-width: 991px) {.reach_out .img_grid_wrapper {
    flex: 0 0 100%;
    min-height: 300px;
}.reach_out .feedback_widget {
    flex: 0 0 100%;
}.reach_out .feedback_widget::before {
    background: linear-gradient(to right, rgb(178,212,202), rgb(138,183,171));
    left: 40px;
    width: calc(100% - 80px);
    top: 0;
    height: 5px;
}.reach_out form {
    padding-left: 0;
    padding-top: 25px;
}
}



@media (max-width: 1200px) {.primary_page .heritage_edu {
    max-width: 90%;
    transform: translateZ(0) rotateX(3deg);
    padding: 2.25rem;
}.primary_page .heritage_edu h1 {
    font-size: calc(41px * 1.05);
}.primary_page .heritage_edu h3 {
    font-size: 18px;
    margin-bottom: 1.5rem;
}.primary_page .heritage_edu p {
    font-size: 15px;
    max-width: 90%;
}
}



@media (max-width: 992px) {.primary_page {
    height: 90vh;
}.primary_page .heritage_edu {
    padding: 2rem;
    transform: translateZ(0) rotateX(2deg);
}.primary_page .heritage_edu h1 {
    font-size: 41px;
}.primary_page .heritage_edu h3 {
    font-size: calc(18px * 0.95);
}.primary_page .heritage_edu p {
    max-width: 95%;
}
}



@media (max-width: 576px) {.primary_page {
    height: 80vh;
}.primary_page .course_intro::after {
    height: 50%;
}.primary_page .heritage_edu {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1rem),
      calc(100% - 1rem) 100%,
      0 100%
    );
    padding: 1.5rem;
}.primary_page .heritage_edu h1 {
    margin-bottom: 1rem;
    font-size: calc(41px * 0.8);
}.primary_page .heritage_edu h1::after {
    width: 50px;
}.primary_page .heritage_edu h3 {
    margin-bottom: 1rem;
    font-size: calc(18px * 0.85);
}.primary_page .heritage_edu p {
    font-size: calc(15px * 0.9);
    padding-left: 1rem;
}.primary_page .heritage_edu p::before {
    width: 2px;
}
}

@keyframes circuitPulse {
    0% {
        opacity: 0.03;
    }
    100% {
        opacity: 0.07;
    }
}

@keyframes hexMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 86.6px;
    }
}

@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}



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

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

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



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



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



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



@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
}



@keyframes expandLine {
    to {
        width: 60%;
    }
}



@keyframes floatCircle {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}



@keyframes textFlyIn {
  0% {
    opacity: 0;
    transform: translateZ(0) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateZ(40px) translateY(0);
  }
}



@keyframes lineGrow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

