* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.app_top_pagebar {
    flex: 1 0 auto;
}.app_footer_disclaimer {
    flex: 0 0 auto;
}.container {
    max-width: 100%;
    width: 1121px;
    margin: auto;
}html,body {
    height: 100%;
    scroll-snap-type: none;
    min-height: 100%;
    color: #000000;
    auto
contain
touch-action: none;
    font-family: Arial, sans-serif;
}.app_container-wrap {
    height: 100%;
    flex-direction: column;
    min-height: 100%;
    display: flex;
}a {
    text-decoration: none;
    color: inherit;
}header,footer {
    width: 100%;
}svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.app_gratCard {
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(219,234,220) 0%, #ffffff 100%);
    position: relative;
}.app_gratCard::before {
    background: linear-gradient(120deg, rgb(184,208,185,0.5) 0%, rgb(146,181,150,0.5) 100%);
    width: 40%;
    filter: blur(25px);
    top: -10%;
    transform: rotate(-15deg) skewX(15deg);
    position: absolute;
    right: -5%;
    z-index: 0;
    animation: float 15s ease-in-out infinite;
    opacity: 0.4;
    content: "";
    height: 70%;
}.app_gratCard::after {
    animation: float 18s ease-in-out infinite reverse;
    filter: blur(20px);
    background: linear-gradient(220deg, rgb(146,181,150,0.5) 0%, rgb(184,208,185,0.5) 100%);
    transform: rotate(10deg) skewX(-10deg);
    opacity: 0.3;
    left: -2%;
    height: 60%;
    width: 30%;
    z-index: 0;
    bottom: -5%;
    position: absolute;
    content: "";
}.app_gratCard .container {
    padding: 0 1.5rem;
    position: relative;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
}.app_gratCard .app_virtual_academy {
    background-color: #ffffff;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), 
              0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 3.5rem;
    transform: perspective(1000px) rotateX(1deg);
    border-left: 5px solid rgb(184,208,185);
    backdrop-filter: blur(10px);
    position: relative;
}.app_gratCard .app_virtual_academy:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1),
              0 10px 20px rgba(0, 0, 0, 0.07);
}.app_gratCard .app_virtual_academy::before {
    background: linear-gradient(to right, 
               #ffffff 0%, 
               rgba(255, 255, 255, 0.8) 100%);
    mask-size: 200% 200%;
    height: 100%;
    content: "";
    top: 0;
    animation: shimmerMask 8s infinite linear;
    mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.7) 50%, #000 75%);
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
}.app_gratCard .app_virtual_academy > div:first-child {
    margin-bottom: 2rem;
    position: relative;
}.app_gratCard .app_virtual_academy > div:first-child::after {
    content: "";
    transform-origin: left center;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    bottom: -1rem;
    height: 4px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(184,208,185) 0%, rgb(146,181,150) 100%);
    width: 60px;
}.app_gratCard .app_virtual_academy:hover > div:first-child::after {
    width: 120px;
}.app_gratCard h5 {
    animation: fadeInUp 0.8s forwards 0.2s;
    font-weight: 600;
    color: #000000;
    opacity: 0;
    line-height: 1.4;
    font-size: 23px;
    margin: 0;
    position: relative;
    transform: translateZ(0);
}.app_gratCard a {
    transform: translateZ(0);
    text-decoration: none;
    display: block;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}.app_gratCard a:hover {
    transform: translateY(-3px);
}.app_gratCard p {
    opacity: 0;
    font-family: Arial, sans-serif;
    margin: 0;
    animation: fadeInUp 0.8s forwards 0.5s;
    color: #000000;
    font-size: 12px;
    line-height: 1.7;
    font-weight: 400;
}

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

@keyframes shimmerMask {
  0% {
    mask-position: 0% 0%;
  }
  100% {
    mask-position: 200% 0%;
  }
}

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

@media (max-width: 992px) {.app_gratCard {
    padding: 5rem 0;
}.app_gratCard .app_virtual_academy {
    padding: 2.5rem;
}.app_gratCard h5 {
    font-size: calc(23px * 0.95);
}
}

@media (max-width: 768px) {.app_gratCard {
    padding: 4rem 0;
}.app_gratCard .app_virtual_academy {
    transform: perspective(1000px) rotateX(0deg);
    padding: 2rem;
}.app_gratCard h5 {
    font-size: calc(23px * 0.9);
}.app_gratCard p {
    font-size: calc(12px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 576px) {.app_gratCard {
    padding: 3rem 0;
}.app_gratCard .app_virtual_academy {
    padding: 1.5rem;
    border-left-width: 3px;
}.app_gratCard .app_virtual_academy > div:first-child::after {
    height: 3px;
    width: 50px;
}.app_gratCard .app_virtual_academy:hover > div:first-child::after {
    width: 80px;
}.app_gratCard h5 {
    font-size: calc(23px * 0.85);
}.app_gratCard p {
    line-height: 1.5;
    font-size: calc(12px * 0.9);
}}header {
    background: linear-gradient(to right, rgb(146,181,150,0.5), rgb(184,208,185));
    z-index: 1000;
    overflow: visible;
    padding: 1.5rem 0;
    position: relative;
}header::before {
    background: 
        radial-gradient(circle at 10% 20%, #ffffff 0%, transparent 15%),
        radial-gradient(circle at 90% 80%, #ffffff 0%, transparent 15%);
    left: 0;
    width: 100%;
    z-index: -1;
    position: absolute;
    content: '';
    top: 0;
    opacity: 0.1;
    height: 100%;
}header .container {
    padding: 0 1.5rem;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}header .app_head_pagewrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    display: flex;
}header .app_main_core {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    z-index: 2;
}header .app_main_core::after {
    bottom: 0;
    left: 50%;
    transition: width 0.3s ease, opacity 0.3s ease;
    content: '';
    opacity: 0.6;
    transform: translateX(-50%);
    width: 50%;
    position: absolute;
    height: 2px;
    background: #ffffff;
}header .app_main_core:hover::after {
    width: 80%;
    opacity: 1;
}header .app_main_core svg {
    width: 220px;
    filter: drop-shadow(0 4px 8px rgb(184,208,185,0.5));
    transition: all 0.3s ease;
    height: auto;
}header .app_main_core:hover svg {
    transform: translateY(-5px);
}header .app_header_guide {
    flex-wrap: wrap;
    position: relative;
    gap: 0.8rem;
    max-width: 800px;
    justify-content: center;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    width: 100%;
    backdrop-filter: blur(5px);
}header .app_header_guide::before {
    height: 100%;
    top: 0;
    position: absolute;
    width: 100%;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    left: 0;
    z-index: -1;
    content: '';
}header .app_header_edu {
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    overflow: hidden;
    border-radius: 10px;
    font-size: 12px;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    font-weight: 400;
}header .app_header_edu::before {
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    position: absolute;
    content: '';
    transform: translateY(100%) scale(0.8);
    left: 0;
    transition: opacity 0.3s ease;
    background: #ffffff;
    top: 0;
    width: 100%;
    opacity: 0;
}header .app_header_edu:hover {
    transform: translateY(-3px);
    color: rgb(184,208,185);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}header .app_header_edu:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 991px) {header {
    padding: 1.2rem 0;
}header .app_head_pagewrap {
    gap: 1.2rem;
}header .app_main_core svg {
    width: 180px;
}header .app_header_guide {
    gap: 0.6rem;
    padding: 0.5rem;
}header .app_header_edu {
    font-size: calc(12px - 1px);
    padding: 0.6rem 1rem;
}
}

@media (max-width: 767px) {header {
    padding: 1rem 0;
}header .app_head_pagewrap {
    gap: 1rem;
}header .app_main_core svg {
    width: 150px;
}header .app_header_guide {
    padding: 0.4rem;
    gap: 0.4rem;
}header .app_header_edu {
    font-size: calc(12px - 2px);
    padding: 0.5rem 0.8rem;
}
}

@media (max-width: 480px) {header {
    padding: 0.8rem 0;
}header .app_head_pagewrap {
    gap: 0.8rem;
}header .app_main_core svg {
    width: 140px;
}header .app_header_guide {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0.4rem 0.6rem;
    overflow-x: auto;
}header .app_header_guide::-webkit-scrollbar {
    height: 3px;
}header .app_header_guide::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #ffffff;
}header .app_header_edu {
    white-space: nowrap;
    padding: 0.4rem 0.7rem;
    font-size: calc(12px - 3px);
}}.app_statistical_details {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(219,234,220) 0%, rgb(146,181,150,0.5) 100%);
    position: relative;
    padding: 6rem 2rem;
}.app_statistical_details::before {
    animation: float 15s infinite alternate ease-in-out;
    position: absolute;
    filter: blur(80px);
    top: -10%;
    background: rgb(184,208,185,0.5);
    z-index: 0;
    width: 40%;
    content: "";
    height: 40%;
    right: -10%;
}.app_statistical_details::after {
    background: rgb(146,181,150,0.5);
    left: -5%;
    animation: float 18s infinite alternate-reverse ease-in-out;
    position: absolute;
    z-index: 0;
    height: 30%;
    filter: blur(60px);
    content: "";
    bottom: -10%;
    width: 30%;
}.app_statistical_details h3 {
    z-index: 2;
    transform: perspective(1000px) translateZ(0);
    position: relative;
    color: #000000;
    letter-spacing: 0.5px;
    font-size: calc(34px * 0.9);
    text-align: center;
    font-weight: 700;
    margin-bottom: 3rem;
}.app_statistical_details h3::after {
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    position: absolute;
    background: rgb(184,208,185);
    content: "";
    left: 50%;
}.app_statistical_details .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.app_statistical_details ul {
    display: grid;
    padding: 0;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    list-style: none;
    margin: 0;
}.app_statistical_details .app_boost_experts {
    align-items: center;
    opacity: 0;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    position: relative;
    border-radius: 10px;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
    overflow: hidden;
    background: #ffffff;
    transform-style: preserve-3d;
    display: flex;
    min-height: 180px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease-out;
    animation: fadeInUp 0.6s forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}.app_statistical_details .app_boost_experts:nth-child(1) {
    --item-index: 1;
}.app_statistical_details .app_boost_experts:nth-child(2) {
    --item-index: 2;
}.app_statistical_details .app_boost_experts:nth-child(3) {
    --item-index: 3;
}.app_statistical_details .app_boost_experts:nth-child(4) {
    --item-index: 4;
}.app_statistical_details .app_boost_experts:nth-child(5) {
    --item-index: 5;
}.app_statistical_details .app_boost_experts:nth-child(6) {
    --item-index: 6;
}.app_statistical_details .app_boost_experts:nth-child(7) {
    --item-index: 7;
}.app_statistical_details .app_boost_experts::before {
    left: 0;
    position: absolute;
    width: 4px;
    top: 0;
    content: "";
    background: linear-gradient(to bottom, rgb(184,208,185), rgb(146,181,150));
    height: 0;
    transition: height 0.6s ease-out;
}.app_statistical_details .app_boost_experts:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}.app_statistical_details .app_boost_experts:hover::before {
    height: 100%;
}.app_statistical_details .app_boost_experts span {
    transition: transform 0.3s ease;
    display: block;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    z-index: 2;
    font-size: calc(15px * 1.05);
    color: #000000;
    text-align: center;
    position: relative;
}.app_statistical_details .app_boost_experts p {
    margin: 0;
    position: relative;
    font-weight: 700;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2;
    font-size: calc(34px * 1.2);
    color: rgb(184,208,185);
}.app_statistical_details .app_boost_experts:hover span {
    transform: translateY(-5px);
}.app_statistical_details .app_boost_experts:hover p {
    transform: scale(1.1);
    color: rgb(146,181,150);
}.app_statistical_details .app_boost_experts::after {
    right: 0;
    z-index: 1;
    width: 30%;
    transition: opacity 0.3s ease;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, transparent, rgb(219,234,220) 80%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    opacity: 0.2;
    bottom: 0;
    height: 30%;
}.app_statistical_details .app_boost_experts:hover::after {
    opacity: 0.4;
}

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

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

@media (max-width: 991px) {.app_statistical_details {
    padding: 4rem 1.5rem;
}.app_statistical_details h3 {
    font-size: calc(34px * 0.8);
    margin-bottom: 2rem;
}.app_statistical_details ul {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}.app_statistical_details .app_boost_experts {
    min-height: 160px;
    padding: 1.5rem;
}.app_statistical_details .app_boost_experts p {
    font-size: calc(34px * 1.1);
}
}

@media (max-width: 767px) {.app_statistical_details {
    padding: 3rem 1rem;
}.app_statistical_details ul {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}.app_statistical_details .app_boost_experts {
    min-height: 140px;
    padding: 1.25rem;
}.app_statistical_details .app_boost_experts span {
    font-size: 15px;
}.app_statistical_details .app_boost_experts p {
    font-size: 34px;
}
}

@media (max-width: 576px) {.app_statistical_details ul {
    grid-template-columns: 1fr 1fr;
}.app_statistical_details .app_boost_experts {
    min-height: 120px;
}.app_statistical_details h3::after {
    width: 60px;
}
}

@media (max-width: 480px) {.app_statistical_details ul {
    grid-template-columns: 1fr;
}.app_statistical_details .app_boost_experts {
    min-height: auto;
}.app_statistical_details h3 {
    font-size: calc(34px * 0.7);
}}.app_training_benefits6umg {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(219,234,220) 0%, rgba(245, 247, 251, 0.85) 100%);
    position: relative;
}.app_training_benefits6umg::before {
    right: -5%;
    filter: blur(40px);
    height: 30%;
    top: -10%;
    position: absolute;
    content: "";
    background: linear-gradient(225deg, rgb(146,181,150,0.5) 0%, transparent 70%);
    z-index: 1;
    width: 40%;
    transform: rotate(-15deg);
}.app_training_benefits6umg::after {
    bottom: -5%;
    width: 60%;
    position: absolute;
    height: 15%;
    background: linear-gradient(45deg, rgb(184,208,185,0.5) 0%, transparent 80%);
    content: "";
    left: -10%;
    z-index: 1;
    transform: rotate(10deg);
    filter: blur(50px);
}.app_training_benefits6umg .container {
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
}.app_training_benefits6umg .app_virtual_academy {
    align-items: center;
    position: relative;
    gap: 40px;
    display: flex;
    justify-content: space-between;
}.app_training_benefits6umg .app_text_bubble {
    padding: 40px 0;
    flex: 1;
    position: relative;
}.app_training_benefits6umg .app_text_bubble::before {
    content: "";
    width: 5px;
    top: 0;
    background: linear-gradient(to bottom, rgb(184,208,185) 0%, rgb(146,181,150) 100%);
    filter: drop-shadow(0 0 10px rgba(rgb(184,208,185,0.5), 0.3));
    transform: scaleY(0.9);
    left: -20px;
    height: 100%;
    position: absolute;
}.app_training_benefits6umg h4 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(0);
    line-height: 1.4;
    position: relative;
    font-size: calc(21px * 1.1);
}.app_training_benefits6umg h4::after {
    bottom: -8px;
    background: rgb(146,181,150);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    transform: scaleX(1);
    height: 3px;
    transform-origin: left;
    width: 80px;
    position: absolute;
    content: "";
    left: 0;
}.app_training_benefits6umg .app_text_bubble:hover h4 {
    transform: translateX(5px);
}.app_training_benefits6umg .app_text_bubble:hover h4::after {
    transform: scaleX(1.2);
}.app_training_benefits6umg .app_text_bubble > div {
    gap: 30px;
    display: flex;
    margin-top: 20px;
}.app_training_benefits6umg ul {
    margin: 0;
    flex: 1;
    list-style: none;
    padding: 0;
}.app_training_benefits6umg li {
    transition: transform 0.4s ease;
    margin-bottom: 25px;
    transform: translateY(0);
    position: relative;
}.app_training_benefits6umg li:hover {
    transform: translateY(-5px);
}.app_training_benefits6umg li p {
    align-items: flex-start;
    box-shadow: 0 8px 20px rgba(rgba(0, 0, 0, 0.5), 0.05);
    border-left: 3px solid rgb(146,181,150);
    backdrop-filter: blur(5px);
    margin: 0;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    background: rgba(#ffffff, 0.9);
}.app_training_benefits6umg li:hover p {
    box-shadow: 0 12px 25px rgba(rgba(0, 0, 0, 0.5), 0.08);
    border-left-width: 5px;
}.app_training_benefits6umg li p span:first-child {
    width: 40px;
    display: flex;
    height: 40px;
    padding: 8px;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgb(146,181,150,0.5) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-items: center;
}.app_training_benefits6umg li:hover p span:first-child {
    transform: scale(1.1);
}.app_training_benefits6umg li p span:last-child {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: #000000;
}.app_training_benefits6umg svg {
    transition: transform 0.3s ease;
    height: 24px;
    width: 24px;
}.app_training_benefits6umg li:hover svg {
    transform: rotate(15deg);
}.app_training_benefits6umg svg path {
    fill: rgb(146,181,150);
    transition: fill 0.3s ease;
}.app_training_benefits6umg li:hover svg path {
    fill: rgb(184,208,185);
}.app_training_benefits6umg .app_capture {
    max-width: 45%;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    border-radius: 2px;
    position: relative;
    z-index: 3;
    box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.1);
    flex: 0 0 45%;
}.app_training_benefits6umg .app_capture:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}.app_training_benefits6umg .app_capture::before {
    background: linear-gradient(45deg, rgba(rgb(184,208,185,0.5), 0.2), transparent);
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}.app_training_benefits6umg .app_capture:hover::before {
    opacity: 0.7;
}.app_training_benefits6umg .app_capture::after {
    transition: all 0.5s ease;
    position: absolute;
    height: 80%;
    filter: blur(40px);
    width: 80%;
    background: linear-gradient(135deg, transparent 0%, rgba(rgb(146,181,150,0.5), 0.1) 100%);
    right: -20px;
    bottom: -20px;
    content: "";
    z-index: -1;
}.app_training_benefits6umg .app_capture:hover::after {
    filter: blur(30px);
    transform: translate(-10px, -10px);
}

@media (max-width: 1024px) {.app_training_benefits6umg {
    padding: 100px 0;
}.app_training_benefits6umg .app_virtual_academy {
    gap: 30px;
}.app_training_benefits6umg .app_capture {
    max-width: 40%;
    flex: 0 0 40%;
}
}

@media (max-width: 900px) {.app_training_benefits6umg .app_text_bubble > div {
    flex-direction: column;
    gap: 0;
}.app_training_benefits6umg ul {
    margin-bottom: 20px;
}
}

@media (max-width: 768px) {.app_training_benefits6umg {
    padding: 80px 0;
}.app_training_benefits6umg .app_virtual_academy {
    flex-direction: column-reverse;
    gap: 50px;
}.app_training_benefits6umg .app_text_bubble {
    width: 100%;
}.app_training_benefits6umg .app_capture {
    align-self: center;
    max-width: 80%;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) scale(0.95);
}.app_training_benefits6umg h4 {
    font-size: calc(21px * 1.05);
    text-align: center;
}.app_training_benefits6umg h4::after {
    transform: translateX(-50%) scaleX(1);
    left: 50%;
}.app_training_benefits6umg .app_text_bubble::before {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
}.app_training_benefits6umg .app_text_bubble:hover h4 {
    transform: translateY(-3px);
}
}

@media (max-width: 576px) {.app_training_benefits6umg {
    padding: 60px 0;
}.app_training_benefits6umg .app_capture {
    max-width: 95%;
}.app_training_benefits6umg li p {
    padding: 12px 15px;
}.app_training_benefits6umg li p span:first-child {
    height: 35px;
    width: 35px;
}.app_training_benefits6umg h4 {
    font-size: 21px;
}.app_training_benefits6umg li p span:last-child {
    font-size: calc(17px * 0.95);
}
}

@media (max-width: 480px) {.app_training_benefits6umg .app_text_bubble > div {
    gap: 0;
}.app_training_benefits6umg li {
    margin-bottom: 15px;
}.app_training_benefits6umg li p {
    gap: 10px;
}.app_training_benefits6umg li p span:first-child {
    height: 30px;
    width: 30px;
}.app_training_benefits6umg svg {
    width: 20px;
    height: 20px;
}}.app_secure_safekeeping {
    padding: 3rem;
    font-family: Arial, sans-serif;
    display: flex;
    color: #000000;
    background-color: rgb(219,234,220);
    flex-direction: column;
    width: 100%;
}.app_secure_safekeeping h1 {
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid rgb(184,208,185);
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 39px;
    color: rgb(184,208,185);
}.app_secure_safekeeping h2 {
    color: rgb(146,181,150);
    margin-top: 2rem;
    font-size: 32px;
    margin-bottom: 1rem;
    letter-spacing: 0.08rem;
    padding-left: 1rem;
    font-weight: 600;
    border-left: 4px solid rgb(146,181,150);
    text-transform: uppercase;
}.app_secure_safekeeping h3,.app_secure_safekeeping h4,.app_secure_safekeeping h5, .app_secure_safekeeping h6 {
    margin: 1rem 0;
    font-size: 21px;
}.app_secure_safekeeping ul,
.app_secure_safekeeping ol {
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    list-style-position: inside;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: none;
    padding-left: 2rem;
}.app_secure_safekeeping li {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 15px;
    position: relative;
}.app_secure_safekeeping li::before {
    content: "▹";
    color: rgb(184,208,185);
    margin-right: 0.5rem;
}.app_secure_safekeeping p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 15px;
}.app_secure_safekeeping span {
    font-weight: 700;
    color: rgb(146,181,150);
}.app_secure_safekeeping > div {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}
@media only screen and (max-width: 800px) {.app_secure_safekeeping {
    padding: 1.5rem;
    gap: 1.5rem;
}.app_secure_safekeeping h1 {
    font-size: calc(21px - 0.5rem);
}.app_secure_safekeeping h2 {
    font-size: calc(21px - 0.5rem);
}.app_secure_safekeeping p,
    .app_secure_safekeeping li {
    font-size: calc(15px - 0.2rem);
}.app_secure_safekeeping > div {
    padding: 0.5rem;
}}
.app_join_list {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(219,234,220) 0%, rgb(146,181,150,0.5) 100%);
    position: relative;
    overflow: hidden;
}.app_join_list::before {
    height: 140%;
    transform: rotate(-15deg);
    content: "";
    width: 60%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    right: -5%;
    top: -10%;
    z-index: 1;
    background: linear-gradient(145deg, rgb(184,208,185,0.5) 0%, rgb(184,208,185) 100%);
    position: absolute;
}.app_join_list .app_virtual_academy {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}.app_join_list .app_request_box {
    transition: transform 0.5s ease;
    max-width: 650px;
    transform: perspective(1000px) rotateY(-5deg);
    margin-left: 5%;
}.app_join_list .app_request_box:hover {
    transform: perspective(1000px) rotateY(0);
}.app_join_list h3 {
    margin-bottom: 30px;
    color: #000000;
    padding-left: 15px;
    transform: translateX(-15px);
    font-weight: 700;
    font-size: 34px;
    border-left: 5px solid rgb(184,208,185);
}.app_join_list .input_holder {
    gap: 15px;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    display: flex;
}.app_join_list input[type="email"] {
    padding: 18px 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    color: #000000;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    border: none;
    background: #ffffff;
    font-size: 15px;
    border-radius: 10px;
    flex: 1 1 250px;
}.app_join_list input[type="email"]:focus {
    box-shadow: 0 12px 28px rgb(146,181,150,0.5);
    transform: translateY(-3px);
    outline: none;
}.app_join_list .app_sub_col {
    cursor: pointer;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
    border-radius: 10px;
    color: #ffffff;
    flex: 0 1 auto;
    background: linear-gradient(135deg, rgb(184,208,185) 0%, rgb(146,181,150) 100%);
    z-index: 1;
    border: none;
    transition: all 0.3s ease;
}.app_join_list .app_sub_col::before {
    top: 0;
    width: 100%;
    z-index: -1;
    left: -100%;
    position: absolute;
    content: "";
    transition: all 0.4s ease;
    height: 100%;
    background: linear-gradient(135deg, rgb(146,181,150) 0%, rgb(184,208,185) 100%);
}.app_join_list .app_sub_col:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}.app_join_list .app_sub_col:hover::before {
    left: 0;
}.app_join_list .app_sub_col:active {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
}

@media (max-width: 768px) {.app_join_list {
    padding: 60px 0;
}.app_join_list::before {
    right: -20%;
    height: 60%;
    transform: rotate(-8deg);
    width: 100%;
    top: -10%;
}.app_join_list .app_request_box {
    transform: none;
    margin-left: 0;
}.app_join_list h3 {
    font-size: calc(34px * 0.8);
    margin-bottom: 20px;
}.app_join_list .input_holder {
    flex-direction: column;
}.app_join_list input[type="email"],
    .app_join_list .app_sub_col {
    width: 100%;
}
}

@media (max-width: 480px) {.app_join_list {
    padding: 40px 0;
}.app_join_list h3 {
    font-size: 22px;
}.app_join_list input[type="email"] {
    padding: 15px 20px;
}.app_join_list .app_sub_col {
    padding: 15px 20px;
}}.app_course_instructor {
    position: relative;
    padding: 8rem 0;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(160deg, rgb(219,234,220) 0%, #000000 100%);
}.app_course_instructor::before {
    opacity: 0.4;
    height: 100%;
    width: 100%;
    filter: blur(70px);
    background: 
        radial-gradient(circle at 80% 20%, rgb(184,208,185,0.5) 0%, transparent 35%),
        radial-gradient(circle at 20% 80%, rgb(146,181,150,0.5) 0%, transparent 35%);
    animation: breatheGlow 15s ease-in-out infinite alternate;
    content: "";
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
}.app_course_instructor .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 2rem;
}.app_course_instructor .app_review_slider {
    backdrop-filter: blur(15px);
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    gap: 30px;
    grid-template-columns: 1.2fr 0.8fr;
    border-radius: 23px;
    overflow: hidden;
    position: relative;
    display: grid;
    min-height: 580px;
    grid-template-rows: auto 1fr;
}.app_course_instructor .app_review_slider::before {
    background-size: 200% 200%;
    width: 100%;
    background: linear-gradient(135deg, transparent, rgb(184,208,185,0.5), transparent);
    animation: shimmerEffect 10s ease-in-out infinite;
    top: 0;
    z-index: -1;
    left: 0;
    height: 100%;
    content: "";
    opacity: 0.2;
    position: absolute;
}.app_course_instructor .app_capture {
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
    grid-column: 2;
    transform: scale(1) rotate(0deg);
    border-radius: 23px;
    height: 100%;
    filter: contrast(1.1) brightness(1.05);
    z-index: 3;
    position: relative;
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    grid-row: 1 / span 2;
}.app_course_instructor .app_review_slider:hover .app_capture {
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(1.05) rotate(2deg);
}.app_course_instructor .app_capture::before {
    top: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    box-sizing: border-box;
}.app_course_instructor .name {
    font-size: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    grid-row: 1;
    color: #ffffff;
    position: relative;
    z-index: 4;
    grid-column: 1;
    font-weight: 700;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transform: translateX(0);
}.app_course_instructor .app_review_slider:hover .name {
    transform: translateX(10px);
}.app_course_instructor .name::after {
    height: 3px;
    position: absolute;
    transition: width 0.6s ease;
    width: 0;
    content: "";
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, rgb(184,208,185), rgb(146,181,150));
}.app_course_instructor .app_review_slider:hover .name::after {
    width: 120px;
}.app_course_instructor .app_review_slider span:not(.name) {
    backdrop-filter: blur(10px);
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: rgb(146,181,150);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    padding: 0.7rem 1.5rem;
    z-index: 3;
    transform: translateX(0);
    border-radius: 10px;
    grid-row: 1;
    width: max-content;
    font-size: 18px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    grid-column: 1;
}.app_course_instructor .app_review_slider:hover span:not(.name) {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(10px);
}.app_course_instructor .app_past_work {
    grid-row: 2;
    font-size: 17px;
    transform: translateY(0);
    position: relative;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-left: 4px solid rgb(146,181,150);
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    grid-column: 1;
    overflow: hidden;
    line-height: 1.8;
    border-radius: 23px;
    z-index: 2;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}.app_course_instructor .app_review_slider:hover .app_past_work {
    transform: translateY(-10px);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4);
}.app_course_instructor .app_past_work::before {
    z-index: -1;
    content: "";
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerEffect 5s ease-in-out infinite;
    background-size: 200% 200%;
    left: 0;
    position: absolute;
    height: 100%;
}.app_course_instructor .container::after {
    height: 400px;
    position: absolute;
    opacity: 0.2;
    content: "";
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    left: -200px;
    animation: rotateGlow 25s linear infinite;
    width: 400px;
    bottom: -200px;
    background: conic-gradient(from 135deg, rgb(184,208,185,0.5) 0%, rgb(146,181,150,0.5) 50%, rgb(184,208,185,0.5) 100%);
}

@keyframes breatheGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmerEffect {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {.app_course_instructor .app_review_slider {
    padding: 2rem;
    grid-template-rows: auto auto auto;
    gap: 20px;
    grid-template-columns: 1fr;
}.app_course_instructor .app_capture {
    grid-row: 1;
    grid-column: 1;
    height: 350px;
}.app_course_instructor .name {
    margin: 0;
    grid-column: 1;
    grid-row: 2;
}.app_course_instructor .app_review_slider span:not(.name) {
    margin-top: 3.5rem;
    grid-column: 1;
    grid-row: 2;
}.app_course_instructor .app_past_work {
    grid-column: 1;
    grid-row: 3;
}.app_course_instructor .app_review_slider:hover .name,
    .app_course_instructor .app_review_slider:hover span:not(.name) {
    transform: translateY(-5px);
}
}

@media (max-width: 576px) {.app_course_instructor {
    padding: 5rem 0;
}.app_course_instructor .app_review_slider {
    padding: 1.5rem;
}.app_course_instructor .app_capture {
    height: 250px;
}.app_course_instructor .name {
    font-size: 18px;
}.app_course_instructor .app_review_slider span:not(.name) {
    font-size: 17px;
    padding: 0.6rem 1rem;
    margin-top: 3rem;
}.app_course_instructor .app_past_work {
    padding: 1.5rem;
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}}header .top_plank {
    background: rgb(184,208,185);
    color:  #ffffff;
}header .top_plank .app_elite_trackpro div svg, header .top_plank .app_elite_trackpro div svg path {
    fill: #ffffff;
}header .top_plank .app_elite_trackpro div span {
    color: #ffffff;
}header .top_plank .app_elite_trackpro {
    line-height: 21px;
    padding: 15px 0 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}header .top_plank .app_elite_trackpro div {
    align-items: center;
    justify-content: flex-start;
    display: flex;
    margin-right: 24px;
}header .top_plank .app_elite_trackpro div img, header .top_plank .app_elite_trackpro div svg {
    width: 16px;
    margin-right: 8px;
    height: 16px;
}.app_service_plan {
    --card-border: linear-gradient(135deg, rgb(184,208,185), rgb(146,181,150));
    --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    background-color: var(--pricing-bg);
    --card-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --card-accent: rgb(184,208,185);
    --card-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 120px 0 80px;
    --pricing-bg: #f5f7fa;
    overflow: hidden;
    --card-bg: #ffffff;
}.app_service_plan::before {
    content: "";
    height: 50%;
    transform: rotate(-15deg);
    right: -5%;
    background: linear-gradient(135deg, rgb(184,208,185,0.5), rgb(146,181,150,0.5));
    opacity: 0.5;
    z-index: 1;
    top: -10%;
    position: absolute;
    width: 35%;
    filter: blur(60px);
}.app_service_plan::after {
    width: 30%;
    left: -5%;
    height: 40%;
    z-index: 1;
    background: linear-gradient(225deg, rgb(146,181,150,0.5), rgb(184,208,185,0.5));
    opacity: 0.4;
    filter: blur(50px);
    position: absolute;
    bottom: -10%;
    content: "";
    transform: rotate(15deg);
}.app_service_plan .container {
    position: relative;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}.app_service_plan .app_payment_deals {
    flex-direction: column;
    display: flex;
}.app_service_plan .app_cert_plans {
    order: -1;
    margin-left: auto;
    text-align: center;
    margin-bottom: 60px;
    margin-right: auto;
    max-width: 800px;
}.app_service_plan .app_cert_plans h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #000000;
    display: inline-block;
    position: relative;
    font-size: 28px;
}.app_service_plan .app_cert_plans h2::after {
    left: 50%;
    height: 3px;
    position: absolute;
    bottom: -10px;
    width: 80px;
    content: "";
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(184,208,185), rgb(146,181,150));
}.app_service_plan .app_rate_options {
    word-wrap: break-word;
    max-width: 700px;
    color: #000000;
    overflow-wrap: break-word;
    margin: 0 auto;
    font-size: calc(15px + 2px);
    line-height: 1.6;
    white-space: normal;
}.app_service_plan .app_cost_fee {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    width: 100%;
}.app_service_plan .app_fee_structure {
    transition: transform var(--card-transition);
    color: inherit;
    transform: translateY(0);
    display: block;
    text-decoration: none;
    height: 100%;
}.app_service_plan .app_fee_structure:hover {
    transform: translateY(-10px);
}.app_service_plan .app_annual_fee {
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: box-shadow var(--card-transition);
    background-color: var(--card-bg);
    display: flex;
    height: 100%;
}.app_service_plan .app_fee_structure:hover .app_annual_fee {
    box-shadow: var(--card-hover-shadow);
}.app_service_plan .app_annual_fee::before {
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    height: 5px;
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
    top: 0;
    width: 100%;
    background: var(--card-border);
}.app_service_plan .app_fee_structure:hover .app_annual_fee::before {
    transform: scaleX(1);
}.app_service_plan .app_deal_grid {
    display: flex;
    padding: 35px 30px;
    flex-direction: column;
    z-index: 1;
    flex-grow: 1;
    position: relative;
}.app_service_plan .app_deal_grid h3 {
    transition: color 0.3s ease;
    color: #000000;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: calc(24px + 2px);
}.app_service_plan .app_fee_structure:hover .app_deal_grid h3 {
    color: var(--card-accent);
}.app_service_plan .app_annual_plan {
    font-size: calc(24px + 6px);
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    color: var(--card-accent);
}.app_service_plan .app_annual_plan::after {
    content: "";
    left: 0;
    position: absolute;
    height: 2px;
    bottom: -10px;
    width: 40px;
    background-color: var(--card-accent);
    transition: width 0.3s ease;
}.app_service_plan .app_fee_structure:hover .app_annual_plan::after {
    width: 60px;
}.app_service_plan .app_deal_grid p {
    line-height: 1.6;
    white-space: normal;
    font-size: 15px;
    color: #000000;
    margin-top: 15px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    flex-grow: 1;
}.app_service_plan .app_capture {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
    transition: transform 0.6s ease;
}.app_service_plan .app_capture::after {
    position: absolute;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    content: "";
    right: 0;
    left: 0;
    opacity: 0;
    top: 0;
    bottom: 0;
    transition: opacity 0.4s ease;
}.app_service_plan .app_fee_structure:hover .app_capture::after {
    opacity: 1;
}.app_service_plan .app_fee_structure:hover .app_capture {
    transform: scale(1.05);
}

@media (min-width: 992px) {.app_service_plan .app_payment_deals {
    flex-direction: row;
    align-items: center;
    gap: 60px;
}.app_service_plan .app_cert_plans {
    text-align: left;
    order: 0;
    margin: 0;
    width: 30%;
}.app_service_plan .app_cert_plans h2 {
    display: block;
    text-align: left;
}.app_service_plan .app_cert_plans h2::after {
    left: 0;
    transform: none;
}.app_service_plan .app_rate_options {
    text-align: left;
    margin: 0;
}.app_service_plan .app_cost_fee {
    width: 70%;
}
}

@media (max-width: 991px) {.app_service_plan {
    padding: 80px 0 60px;
}.app_service_plan .app_cost_fee {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
}

@media (max-width: 767px) {.app_service_plan {
    padding: 60px 0 40px;
}.app_service_plan .app_cert_plans {
    margin-bottom: 40px;
}.app_service_plan .app_cost_fee {
    max-width: 450px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.app_service_plan .app_deal_grid {
    padding: 25px 20px;
}.app_service_plan .app_deal_grid h3 {
    font-size: 24px;
}.app_service_plan .app_annual_plan {
    font-size: calc(24px + 2px);
}.app_service_plan .app_deal_grid p {
    font-size: calc(15px - 1px);
}.app_service_plan .app_capture {
    height: 180px;
}
}

@media (max-width: 480px) {.app_service_plan {
    padding: 50px 0 30px;
}.app_service_plan .app_cert_plans h2 {
    font-size: calc(28px - 4px);
}.app_service_plan .app_rate_options {
    font-size: 15px;
}.app_service_plan .app_deal_grid {
    padding: 20px 15px;
}.app_service_plan .app_capture {
    height: 160px;
}}.app_client_testimonials {
    background: linear-gradient(135deg, rgb(219,234,220) 0%, #ffffff 100%);
    overflow: hidden;
    padding: 120px 0 80px;
    position: relative;
}.app_client_testimonials::before {
    z-index: 1;
    transform: rotate(-15deg) skew(15deg);
    content: "";
    background: rgb(184,208,185,0.5);
    height: 250px;
    right: -50px;
    top: -50px;
    width: 250px;
    position: absolute;
}.app_client_testimonials::after {
    bottom: -80px;
    width: 200px;
    background: rgb(146,181,150,0.5);
    z-index: 1;
    position: absolute;
    height: 200px;
    content: "";
    transform: rotate(25deg) skew(-15deg);
    left: -50px;
}.app_client_testimonials .container.app_virtual_academy {
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.app_client_testimonials h2 {
    font-size: 33px;
    text-align: center;
    color: #000000;
    margin-bottom: 60px;
    transform: perspective(1000px) translateZ(0px);
    position: relative;
    transition: transform 0.5s ease-out;
    font-weight: 700;
}.app_client_testimonials h2::before {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background: linear-gradient(90deg, rgb(184,208,185), rgb(146,181,150));
    height: 4px;
    width: 80px;
    position: absolute;
}.app_client_testimonials h2:hover {
    transform: perspective(1000px) translateZ(15px);
}.app_client_testimonials .app_learning_voices {
    display: grid;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.app_client_testimonials .app_review_slider {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    position: relative;
    background: #ffffff;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    overflow: hidden;
    border-left: 3px solid transparent;
}.app_client_testimonials .app_review_slider::before {
    content: "";
    right: 20px;
    line-height: 1;
    color: rgb(146,181,150,0.5);
    font-family: serif;
    position: absolute;
    z-index: 0;
    font-size: 100px;
    opacity: 0.15;
    top: 10px;
}.app_client_testimonials .app_review_slider::after {
    transition: width 0.3s ease-in-out;
    content: "";
    width: 0;
    height: 3px;
    right: 0;
    background: linear-gradient(90deg, rgb(184,208,185), rgb(146,181,150));
    position: absolute;
    top: 0;
}.app_client_testimonials .app_review_slider:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    border-left: 3px solid rgb(184,208,185);
}.app_client_testimonials .app_review_slider:hover::after {
    width: 100%;
}.app_client_testimonials .app_review_slider div {
    position: relative;
    z-index: 1;
    align-items: center;
    margin-bottom: 15px;
    display: flex;
}.app_client_testimonials .app_review_slider img {
    object-fit: cover;
    height: 60px;
    margin-right: 15px;
    transition: transform 0.3s ease;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.app_client_testimonials .app_review_slider:hover img {
    transform: scale(1.1);
}.app_client_testimonials .app_review_slider h4 {
    position: relative;
    color: #000000;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}.app_client_testimonials .app_review_slider h4::after {
    width: 0;
    bottom: -5px;
    content: "";
    left: 0;
    height: 2px;
    background: rgb(184,208,185);
    position: absolute;
    transition: width 0.3s ease;
}.app_client_testimonials .app_review_slider:hover h4::after {
    width: 100%;
}.app_client_testimonials .description {
    margin: 0;
    color: #000000;
    position: relative;
    line-height: 1.6;
    font-size: 18px;
    font-style: italic;
    z-index: 1;
}.app_client_testimonials .app_review_slider:nth-child(odd) {
    transform: perspective(800px) rotateY(-2deg);
}.app_client_testimonials .app_review_slider:nth-child(even) {
    transform: perspective(800px) rotateY(2deg);
}.app_client_testimonials .app_review_slider:nth-child(odd):hover {
    transform: perspective(800px) rotateY(0) translateY(-10px);
}.app_client_testimonials .app_review_slider:nth-child(even):hover {
    transform: perspective(800px) rotateY(0) translateY(-10px);
}.app_client_testimonials a {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    font-weight: 600;
    position: relative;
    padding: 15px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    max-width: 250px;
    margin-left: auto;
    background: linear-gradient(135deg, rgb(184,208,185) 0%, rgb(146,181,150) 100%);
    border-radius: 19px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    margin-right: auto;
    margin-top: 50px;
}.app_client_testimonials a::before {
    content: "";
    transition: left 0.7s ease;
    position: absolute;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    top: 0;
    height: 100%;
}.app_client_testimonials a:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.app_client_testimonials a:hover::before {
    left: 100%;
}

@media (max-width: 1200px) {.app_client_testimonials {
    padding: 100px 0 60px;
}.app_client_testimonials .app_learning_voices {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 992px) {.app_client_testimonials {
    padding: 80px 0 50px;
}.app_client_testimonials h2 {
    margin-bottom: 50px;
}.app_client_testimonials .app_learning_voices {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}.app_client_testimonials .app_review_slider {
    padding: 25px;
}
}

@media (max-width: 768px) {.app_client_testimonials {
    padding: 60px 0 40px;
}.app_client_testimonials h2 {
    margin-bottom: 40px;
    font-size: calc(33px * 0.85);
}.app_client_testimonials .app_learning_voices {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}.app_client_testimonials .app_review_slider {
    transform: perspective(800px) rotateY(0) !important;
}.app_client_testimonials .app_review_slider:hover {
    transform: translateY(-5px) !important;
}
}

@media (max-width: 576px) {.app_client_testimonials {
    padding: 50px 0 30px;
}.app_client_testimonials h2 {
    font-size: calc(33px * 0.75);
    margin-bottom: 30px;
}.app_client_testimonials .app_review_slider {
    padding: 20px;
}.app_client_testimonials .app_review_slider img {
    width: 50px;
    height: 50px;
}.app_client_testimonials a {
    font-size: calc(14px * 0.9);
    padding: 12px 30px;
}
}

@media (prefers-reduced-motion) {.app_client_testimonials .app_review_slider,
    .app_client_testimonials h2,
    .app_client_testimonials a,
    .app_client_testimonials .app_review_slider img {
    transition: none;
}.app_client_testimonials .app_review_slider:hover {
    transform: none;
}.app_client_testimonials h2:hover {
    transform: none;
}.app_client_testimonials a:hover {
    transform: none;
}.app_client_testimonials .app_review_slider:hover img {
    transform: none;
}}.app_contact_form_section {
    padding: 120px 0;
    background: linear-gradient(145deg, rgb(219,234,220) 0%, rgba(9, 19, 32, 0.9) 100%);
    position: relative;
    overflow: hidden;
}.app_contact_form_section::before {
    left: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        45deg,
        rgb(184,208,185,0.5) 0px,
        transparent 1px,
        transparent 10px,
        rgb(184,208,185,0.5) 11px
    );
    top: 0;
    width: 100%;
    content: "";
    animation: gridMove 20s linear infinite;
    opacity: 0.05;
    height: 100%;
    position: absolute;
}.app_contact_form_section::after {
    background: radial-gradient(circle, rgb(184,208,185,0.5) 0%, transparent 60%);
    position: absolute;
    pointer-events: none;
    content: "";
    height: 200%;
    top: -50%;
    opacity: 0.1;
    left: -50%;
    animation: pulseGlow 15s ease-in-out infinite;
    width: 200%;
}.app_contact_form_section .container {
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
}.app_contact_form_section h2 {
    text-align: center;
    position: relative;
    color: #ffffff;
    padding-bottom: 15px;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    font-size: 32px;
    font-weight: 700;
}.app_contact_form_section h2::after {
    width: 80px;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, rgb(184,208,185), transparent);
    height: 3px;
    content: "";
    left: 50%;
    position: absolute;
    bottom: 0;
}.app_contact_form_section .app_help_query {
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    display: flex;
}.app_contact_form_section .app_help_query::before {
    opacity: 0.03;
    top: 0;
    position: absolute;
    pointer-events: none;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    background: linear-gradient(to bottom right, rgb(184,208,185,0.5), transparent);
}.app_contact_form_section .app_capture {
    min-height: 500px;
    flex: 1;
    transition: transform 0.6s ease;
    transform: scale(1.01);
    position: relative;
}.app_contact_form_section .app_capture::after {
    height: 100%;
    width: 100%;
    content: "";
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    left: 0;
    position: absolute;
    top: 0;
}.app_contact_form_section .app_feedback_inquiry {
    position: relative;
    flex: 1;
    padding: 50px;
}.app_contact_form_section .app_feedback_inquiry::before {
    border-right: 2px solid rgb(184,208,185,0.5);
    width: 50px;
    opacity: 0.7;
    right: 20px;
    border-top: 2px solid rgb(184,208,185,0.5);
    height: 50px;
    content: "";
    position: absolute;
    top: 20px;
}.app_contact_form_section .app_feedback_inquiry::after {
    width: 50px;
    position: absolute;
    content: "";
    opacity: 0.7;
    left: 20px;
    height: 50px;
    border-bottom: 2px solid rgb(184,208,185,0.5);
    border-left: 2px solid rgb(184,208,185,0.5);
    bottom: 20px;
}.app_contact_form_section form {
    width: 100%;
}.app_contact_form_section form h3 {
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px;
}.app_contact_form_section form h3::before {
    left: 0;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    content: "";
    width: 5px;
    height: 25px;
    border-radius: 10px;
    background: rgb(184,208,185);
}.app_contact_form_section form input[type="text"] {
    transition: all 0.3s ease;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: Arial, sans-serif;
    padding: 15px 20px;
}.app_contact_form_section form input[type="text"]:focus {
    box-shadow: 0 0 15px rgba(rgb(184,208,185), 0.2);
    border-color: rgb(184,208,185);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}.app_contact_form_section form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.app_contact_form_section .app_support_infocern6 {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}.app_contact_form_section .app_support_infocern6 input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.app_contact_form_section .app_support_infocern6 label {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 35px;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}.app_contact_form_section .app_support_infocern6 label::before {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 22px;
    content: "";
    left: 0;
    width: 22px;
    top: 2px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}.app_contact_form_section .app_support_infocern6 input[type="checkbox"]:checked + label::before {
    background: rgb(184,208,185);
    border-color: rgb(184,208,185);
}.app_contact_form_section .app_support_infocern6 input[type="checkbox"]:checked + label::after {
    width: 8px;
    content: "";
    position: absolute;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    left: 7px;
    height: 4px;
    top: 11px;
}.app_contact_form_section .app_support_infocern6 label a {
    color: rgb(184,208,185);
    transition: all 0.3s ease;
    text-decoration: none;
}.app_contact_form_section .app_support_infocern6 label a:hover {
    text-decoration: underline;
}.app_contact_form_section form .app_help_feedback {
    cursor: pointer;
    font-family: Arial, sans-serif;
    border: none;
    font-weight: 600;
    z-index: 1;
    border-radius: 10px;
    display: inline-block;
    font-size: 18px;
    padding: 15px 35px;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #ffffff;
    position: relative;
    background: linear-gradient(45deg, rgb(184,208,185), rgb(146,181,150));
}.app_contact_form_section form .app_help_feedback::before {
    z-index: -1;
    background: linear-gradient(45deg, rgb(146,181,150), rgb(184,208,185));
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.4s ease;
    content: "";
    left: -100%;
    top: 0;
}.app_contact_form_section form .app_help_feedback:hover::before {
    left: 0;
}.app_contact_form_section form .app_help_feedback:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}.app_contact_form_section svg {
    height: 24px;
    width: 24px;
    margin-right: 15px;
    fill: rgb(184,208,185);
}.app_contact_form_section 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) {.app_contact_form_section {
    padding: 80px 0;
}.app_contact_form_section .app_help_query {
    flex-direction: column;
}.app_contact_form_section .app_capture {
    order: 1;
    min-height: 300px;
}.app_contact_form_section .app_feedback_inquiry {
    order: 2;
    padding: 40px 30px;
}
}

@media screen and (max-width: 767px) {.app_contact_form_section {
    padding: 60px 0;
}.app_contact_form_section h2 {
    margin-bottom: 40px;
}.app_contact_form_section .app_capture {
    min-height: 200px;
}.app_contact_form_section .app_feedback_inquiry {
    padding: 30px 20px;
}.app_contact_form_section form .app_help_feedback {
    width: 100%;
    text-align: center;
}
}

@media screen and (max-width: 480px) {.app_contact_form_section {
    padding: 40px 0;
}.app_contact_form_section h2 {
    font-size: calc(32px * 0.8);
}.app_contact_form_section form h3 {
    font-size: calc(20px * 0.9);
}.app_contact_form_section .app_feedback_inquiry::before,
    .app_contact_form_section .app_feedback_inquiry::after {
    height: 30px;
    width: 30px;
}}.app_explore_now {
    background: linear-gradient(135deg, rgb(184,208,185,0.5), rgb(146,181,150) 120%);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    perspective: 1000px;
}.app_explore_now::before {
    width: 100%;
    content: "";
    position: absolute;
    z-index: 1;
    background: 
        radial-gradient(circle at 20% 30%, rgb(184,208,185,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(146,181,150,0.5) 0%, transparent 40%);
    top: 0;
    animation: pulseGradient 8s infinite alternate ease-in-out;
    left: 0;
    height: 100%;
}.app_explore_now::after {
    z-index: 1;
    top: -50%;
    opacity: 0.05;
    width: 200%;
    pointer-events: none;
    transform: rotate(-5deg);
    left: -50%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgb(184,208,185,0.5) 0,
        rgb(184,208,185,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    position: absolute;
    content: "";
}.app_explore_now .container {
    z-index: 5;
    transform-style: preserve-3d;
    padding: 0 2rem;
    max-width: 1140px;
    position: relative;
    margin: 0 auto;
}.app_explore_now h2 {
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    transform: translateZ(20px);
    margin-bottom: 3rem;
    font-size: 30px;
    position: relative;
    max-width: 800px;
}.app_explore_now .app_virtual_academy {
    display: flex;
    position: relative;
    gap: 2rem;
    transform: translateZ(30px);
    align-items: center;
}.app_explore_now .app_virtual_academy::before {
    width: 120%;
    left: -10%;
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255, 0.5), transparent);
    position: absolute;
    top: -2rem;
}.app_explore_now svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    height: 64px;
    transform: rotate(-5deg) translateZ(40px);
    width: 64px;
}.app_explore_now svg:hover {
    transform: rotate(0deg) scale(1.1) translateZ(40px);
}.app_explore_now svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.app_explore_now svg:hover path {
    fill: rgb(146,181,150);
}.app_explore_now .app_virtual_academy div {
    position: relative;
    flex: 1;
}.app_explore_now .app_help_feedback {
    background: #ffffff;
    overflow: hidden;
    color: #000000;
    transform: skewX(-5deg) translateZ(30px);
    position: relative;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 19px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}.app_explore_now .app_help_feedback::before {
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    left: -100%;
    width: 100%;
    position: absolute;
    top: 0;
    content: "";
    transition: left 0.7s ease;
}.app_explore_now .app_help_feedback:hover {
    background: rgb(146,181,150);
    color: #ffffff;
    transform: skewX(-5deg) translateZ(30px) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}.app_explore_now .app_help_feedback:hover::before {
    left: 100%;
}.app_explore_now .app_help_feedback:active {
    transform: skewX(-5deg) translateZ(30px) translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 992px) {.app_explore_now {
    padding: 5rem 0;
}.app_explore_now h2 {
    margin-bottom: 2.5rem;
    font-size: calc(30px * 0.9);
}.app_explore_now svg {
    height: 56px;
    width: 56px;
}.app_explore_now .app_help_feedback {
    padding: 0.9rem 2.2rem;
}
}

@media (max-width: 768px) {.app_explore_now {
    padding: 4rem 0;
}.app_explore_now h2 {
    font-size: calc(30px * 0.8);
    margin-bottom: 2rem;
}.app_explore_now .app_virtual_academy {
    flex-direction: column;
    gap: 1.5rem;
}.app_explore_now svg {
    width: 48px;
    transform: rotate(0) translateZ(40px);
    height: 48px;
}.app_explore_now .app_help_feedback {
    transform: skewX(0) translateZ(30px);
    text-align: center;
    width: 100%;
    display: block;
}.app_explore_now .app_help_feedback:hover {
    transform: skewX(0) translateZ(30px) translateY(-5px);
}.app_explore_now .app_help_feedback:active {
    transform: skewX(0) translateZ(30px) translateY(0);
}
}

@media (max-width: 576px) {.app_explore_now {
    padding: 3rem 0;
}.app_explore_now h2 {
    margin-bottom: 1.5rem;
    font-size: calc(30px * 0.7);
}.app_explore_now .container {
    padding: 0 1.5rem;
}.app_explore_now svg {
    width: 40px;
    height: 40px;
}.app_explore_now .app_virtual_academy::before {
    top: -1.5rem;
}.app_explore_now .app_help_feedback {
    font-size: calc(19px * 0.9);
    padding: 0.8rem 1.8rem;
}}.app_meet_us {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.app_meet_us::before {
    content: "";
    top: 0;
    pointer-events: none;
    backdrop-filter: blur(3px);
    left: 0;
    z-index: 1;
    right: 0;
    background: radial-gradient(circle at 30% 70%, rgb(184,208,185,0.5), rgba(0, 0, 0, 0.5) 80%);
    bottom: 0;
    position: absolute;
}.app_meet_us::after {
    left: -10%;
    background: linear-gradient(135deg, rgb(184,208,185,0.5) 5%, transparent 15%, transparent 85%, rgb(146,181,150,0.5) 95%);
    width: 120%;
    animation: orbitGlow 20s infinite linear;
    top: -10%;
    position: absolute;
    content: "";
    height: 120%;
    pointer-events: none;
    z-index: 2;
}.app_meet_us .container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 5;
    transform-style: preserve-3d;
    position: relative;
    perspective: 1000px;
}.app_meet_us .app_text_bubble {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    transform: translateZ(0) rotateY(-2deg);
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 40px 50px;
    border-left: 3px solid rgb(146,181,150);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.1);
}.app_meet_us .app_text_bubble:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.15);
    transform: translateZ(10px) rotateY(0deg);
}.app_meet_us h5 {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0 0 15px;
    font-size: 21px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
}.app_meet_us h5::after {
    width: 50px;
    content: "";
    height: 2px;
    left: 0;
    transition: transform 0.4s ease-out;
    position: absolute;
    bottom: -8px;
    transform-origin: left center;
    transform: scaleX(1);
    background: rgb(146,181,150);
}.app_meet_us h5:hover::after {
    transform: scaleX(1.5);
}.app_meet_us p {
    color: #ffffff;
    margin: 0 0 20px;
    font-weight: 400;
    line-height: 1.6;
    font-size: calc(16px * 1.2);
}.app_meet_us b {
    position: relative;
    font-weight: 700;
    font-size: calc(16px * 1.5);
    letter-spacing: 0.5px;
    color: rgb(146,181,150);
}.app_meet_us b::before {
    background: linear-gradient(to right, rgb(146,181,150), transparent);
    height: 1px;
    width: 100%;
    left: 0;
    position: absolute;
    content: "";
    bottom: -5px;
}.app_meet_us ol {
    margin: 20px 0 0;
    padding: 0 0 0 20px;
    list-style-position: outside;
}.app_meet_us li {
    font-weight: 400;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: justify;
}.app_meet_us .app_text_bubble div:nth-child(1) {
    animation: fadeSlideIn 0.8s ease-out forwards;
}.app_meet_us .app_text_bubble div:nth-child(2) {
    opacity: 0;
    animation: fadeSlideIn 0.8s 0.2s ease-out forwards;
    transform: translateY(20px);
}.app_meet_us ol {
    transform: translateY(20px);
    animation: fadeSlideIn 0.8s 0.4s ease-out forwards;
    opacity: 0;
}@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbitGlow {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}


.app_meet_us .container::before,
.app_meet_us .container::after {
    pointer-events: none;
    animation: pulseDot 3s infinite alternate;
    content: "";
    border-radius: 50%;
    background: rgb(146,181,150);
    height: 5px;
    z-index: 2;
    width: 5px;
    box-shadow: 0 0 10px 2px rgb(146,181,150,0.5);
    opacity: 0.7;
    position: absolute;
}.app_meet_us .container::before {
    top: -20px;
    right: 15%;
}.app_meet_us .container::after {
    left: 5%;
    bottom: 10%;
}.app_meet_us .app_text_bubble::before,
.app_meet_us .app_text_bubble::after {
    pointer-events: none;
    opacity: 0.8;
    animation: pulseDot 4s infinite alternate-reverse;
    box-shadow: 0 0 8px 1px rgb(184,208,185,0.5);
    background: rgb(184,208,185);
    border-radius: 50%;
    height: 4px;
    z-index: 2;
    content: "";
    width: 4px;
    position: absolute;
}.app_meet_us .app_text_bubble::before {
    top: 15%;
    right: -15px;
}.app_meet_us .app_text_bubble::after {
    bottom: 20%;
    left: -10px;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.9;
    }
}


@media (max-width: 1200px) {.app_meet_us {
    padding: 100px 0;
}.app_meet_us .app_text_bubble {
    padding: 35px 40px;
}.app_meet_us b {
    font-size: calc(16px * 1.3);
}
}

@media (max-width: 992px) {.app_meet_us {
    padding: 80px 0;
}.app_meet_us .app_text_bubble {
    padding: 30px 35px;
    transform: translateZ(0) rotateY(-1deg);
}.app_meet_us h5 {
    font-size: calc(21px * 0.95);
}.app_meet_us b {
    font-size: calc(16px * 1.2);
}.app_meet_us li {
    font-size: calc(16px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 768px) {.app_meet_us {
    padding: 60px 0;
}.app_meet_us .app_text_bubble {
    padding: 25px 30px;
    transform: translateZ(0) rotateY(0deg);
}.app_meet_us h5 {
    font-size: calc(21px * 0.9);
    margin-bottom: 12px;
}.app_meet_us h5::after {
    width: 40px;
    bottom: -6px;
}.app_meet_us p {
    margin-bottom: 15px;
    font-size: 16px;
}.app_meet_us b {
    font-size: calc(16px * 1.1);
}.app_meet_us li {
    line-height: 1.6;
    font-size: calc(16px * 0.9);
    margin-bottom: 10px;
}.app_meet_us ol {
    padding-left: 15px;
}
}

@media (max-width: 576px) {.app_meet_us {
    padding: 50px 0;
}.app_meet_us .app_text_bubble {
    padding: 20px 25px;
}.app_meet_us h5 {
    margin-bottom: 10px;
    font-size: calc(21px * 0.85);
}.app_meet_us h5::after {
    bottom: -5px;
    width: 30px;
}.app_meet_us p {
    margin-bottom: 12px;
    font-size: calc(16px * 0.95);
}.app_meet_us b {
    font-size: calc(16px * 1);
}.app_meet_us li {
    text-align: left;
    line-height: 1.5;
    font-size: calc(16px * 0.85);
}.app_meet_us ol {
    padding-left: 12px;
    margin-top: 15px;
}}.app_course_features {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px);
    padding: 120px 0;
    overflow: hidden;
    background: rgb(219,234,220);
    position: relative;
}.app_course_features::before {
    opacity: 0.7;
    animation: backgroundShift 15s infinite alternate;
    top: 0;
    content: "";
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgb(184,208,185,0.5) 0%, transparent 50%, rgb(146,181,150,0.5) 100%);
}.app_course_features::after {
    left: 0;
    height: 100%;
    animation: pulse 8s infinite alternate;
    background: 
        repeating-conic-gradient(rgba(255, 255, 255, 0.03) 0%, transparent 0.5%, transparent 1%, rgba(255, 255, 255, 0.03) 1.5%) 50% 50% / 30px 30px,
        radial-gradient(circle at 70% 30%, rgb(184,208,185,0.5) 0%, transparent 70%);
    content: "";
    z-index: 2;
    width: 100%;
    top: 0;
    position: absolute;
}.app_course_features .container {
    padding: 0 20px;
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}.app_course_features .app_lesson_plan {
    position: relative;
    display: grid;
    gap: 40px;
    grid-template-columns: 1.5fr 1fr;
    perspective: 1000px;
}.app_course_features .app_lesson_plan::before {
    transform-style: preserve-3d;
    animation: borderPulse 4s infinite alternate;
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -30px;
    content: "";
    border: 1px solid rgb(184,208,185,0.5);
    transform: rotateY(5deg) rotateX(2deg);
    border-radius: 18px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
}.app_course_features .app_text_bubble {
    gap: 30px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 35px;
    animation: floatPanel 8s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
}.app_course_features .app_text_bubble h2 {
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: transparent;
    position: relative;
    border-bottom: 2px solid rgb(184,208,185);
    background-clip: text !important;
    display: inline-block;
    -webkit-background-clip: text !important;
    border-radius: 10px;
    font-weight: 700;
    border-radius: 8px 0 8px 0;
    border-left: 2px solid rgb(146,181,150);
    margin-bottom: 25px;
    background: linear-gradient(to right, rgb(184,208,185) 0%, rgb(146,181,150) 100%);
    letter-spacing: 1.5px;
    color: #ffffff;
    max-width: fit-content;
    transform: translateY(-10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgb(184,208,185,0.5);
    padding: 15px 20px;
}.app_course_features .app_text_bubble .description {
    transform: translateZ(0);
    color: #000000;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.07);
    font-weight: 400;
    border-left: 3px solid rgb(184,208,185,0.5);
    letter-spacing: 0.5px;
    padding: 18px;
    text-align: justify;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    line-height: 1.9;
}.app_course_features .app_text_bubble .description:first-of-type {
    border-left-color: rgb(184,208,185);
}.app_course_features .app_text_bubble .description:last-of-type {
    margin-bottom: 0;
    border-left-color: rgb(146,181,150);
}.app_course_features .app_text_bubble .description::before {
    border-radius: 10px;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    z-index: -1;
    top: 0;
}.app_course_features .app_text_bubble .description:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}.app_course_features .app_capture {
    height: 450px;
    align-self: flex-start;
    transform-style: preserve-3d;
    z-index: 4;
    animation: floatImage 6s ease-in-out infinite alternate;
    background-position: center;
    background-size: cover;
    border-radius: 18px;
    transform: translateZ(0) rotateY(-5deg);
    position: relative;
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}.app_course_features .app_capture:hover {
    transform: scale(1.02) translateY(-5px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgb(184,208,185,0.5);
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@keyframes borderPulse {
    0% {
        border-color: rgb(184,208,185,0.5);
        transform: rotateY(5deg) rotateX(2deg);
    }
    100% {
        border-color: rgb(146,181,150,0.5);
        transform: rotateY(3deg) rotateX(0deg);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 10px rgb(184,208,185,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(184,208,185);
    }
}

@keyframes floatPanel {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateZ(0) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: translateZ(50px) rotateY(-3deg) translateY(-10px);
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }
    20%, 100% {
        left: 120%;
    }
}

@keyframes expand {
    0% {
        width: 20px;
    }
    100% {
        width: 100%;
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgb(184,208,185,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(184,208,185);
    }
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@media screen and (max-width: 1200px) {.app_course_features {
    padding: 100px 0;
}.app_course_features .app_lesson_plan {
    gap: 30px;
}.app_course_features .app_text_bubble {
    padding: 30px;
}.app_course_features .app_text_bubble h2 {
    font-size: calc(28px * 0.9);
    padding: 12px 18px;
}.app_course_features .app_text_bubble .description {
    padding: 15px;
}
}

@media screen and (max-width: 991px) {.app_course_features {
    padding: 80px 0;
}.app_course_features .app_lesson_plan {
    gap: 40px;
    grid-template-columns: 1fr;
}.app_course_features .app_lesson_plan::before {
    width: calc(100% + 40px);
    top: -20px;
    transform: none;
    left: -20px;
    height: calc(100% + 40px);
}.app_course_features .app_text_bubble {
    transform: none;
    animation: none;
    order: 2;
}.app_course_features .app_capture {
    order: 1;
    animation: pulse 8s infinite alternate;
    transform: none;
    min-height: 400px;
}.app_course_features .app_capture:hover {
    transform: scale(1.02) translateY(-5px);
}.app_course_features .app_text_bubble h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
    max-width: 100%;
}.app_course_features .app_text_bubble .description {
    text-align: left;
}
}

@media screen and (max-width: 767px) {.app_course_features {
    padding: 60px 0;
}.app_course_features .app_lesson_plan {
    gap: 30px;
}.app_course_features .app_text_bubble {
    gap: 20px;
    padding: 25px;
}.app_course_features .app_text_bubble h2 {
    margin-bottom: 15px;
    font-size: calc(28px * 0.8);
    padding: 10px 15px;
}.app_course_features .app_text_bubble .description {
    font-size: calc(14px * 0.95);
    margin-bottom: 15px;
    padding: 12px;
    line-height: 1.7;
}.app_course_features .app_capture {
    min-height: 350px;
}.app_course_features .app_lesson_plan::before {
    display: none;
}
}

@media screen and (max-width: 480px) {.app_course_features {
    padding: 40px 0;
}.app_course_features .app_text_bubble {
    padding: 20px;
    gap: 15px;
}.app_course_features .app_text_bubble h2 {
    letter-spacing: 1px;
    font-size: calc(28px * 0.7);
    padding: 8px 12px;
}.app_course_features .app_text_bubble .description {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
    padding: 10px;
}.app_course_features .app_capture {
    min-height: 280px;
}}.app_contacts {
    isolation: isolate;
    background: rgb(219,234,220);
    overflow: hidden;
    position: relative;
    padding: 90px 0;
}.app_contacts::before {
    left: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    background-size: 60px 60px;
    background: 
        linear-gradient(135deg, transparent 25%, rgb(184,208,185,0.5) 25%, rgb(184,208,185,0.5) 30%, transparent 30%),
        linear-gradient(225deg, transparent 25%, rgb(146,181,150,0.5) 25%, rgb(146,181,150,0.5) 30%, transparent 30%);
    z-index: -2;
    animation: patternMove 30s linear infinite;
    height: 100%;
}.app_contacts::after {
    opacity: 0.4;
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    position: absolute;
    height: 100%;
    background: linear-gradient(45deg, rgb(184,208,185,0.5) 0%, transparent 50%, rgb(146,181,150,0.5) 100%);
    z-index: -1;
}@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 120px 120px;
    }
}
.app_contacts .container {
    position: relative;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 20px;
}.app_contacts .container::after {
    animation: pulseEffect 10s infinite alternate;
    transform: translate(-50%, -50%);
    background: 
        linear-gradient(rgba(var(--primary-color, 0, 120, 200), 0.1) 0%, transparent 80%),
        radial-gradient(circle at center, rgba(var(--secondary-color, 100, 0, 150), 0.05) 0%, transparent 60%);
    height: 500px;
    width: 500px;
    left: 50%;
    filter: blur(50px);
    border-radius: 50%;
    top: 50%;
    content: '';
    z-index: -1;
    position: absolute;
    opacity: 0.5;
}@keyframes pulseEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}
.app_contacts .app_reach_us {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    flex-direction: column;
    display: flex;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    border-radius: 0;
    background: #ffffff;
}.app_contacts .app_reach_us::before {
    left: 0;
    background: linear-gradient(to bottom, rgb(184,208,185), rgb(146,181,150));
    height: 100%;
    transition: height 0.5s ease;
    content: '';
    opacity: 1;
    top: 0;
    z-index: 1;
    width: 5px;
    position: absolute;
}.app_contacts .app_reach_us::after {
    content: '';
    border-color: transparent rgb(184,208,185) transparent transparent;
    border-width: 0 50px 50px 0;
    top: 0;
    transition: transform 0.3s ease;
    position: absolute;
    right: 0;
    z-index: 2;
    border-style: solid;
}.app_contacts .app_msg_info {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    font-size: 22px;
    margin: 0;
    padding: 25px 35px;
    display: flex;
}.app_contacts .app_msg_info svg {
    width: 24px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    margin-right: 12px;
    height: 24px;
    fill: #ffffff;
}.app_contacts .app_msg_info span {
    position: relative;
    z-index: 1;
}.app_contacts .app_msg_info::before {
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 49.9%, rgb(184,208,185,0.5) 50%, transparent 50.1%) 0 0/10px 10px,
        linear-gradient(-45deg, transparent 49.9%, rgb(184,208,185,0.5) 50%, transparent 50.1%) 0 0/10px 10px;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    width: 100%;
}.app_contacts .app_capture {
    height: 250px;
    overflow: hidden;
    width: 100%;
    position: relative;
}.app_contacts .app_capture::after {
    z-index: 1;
    height: 30%;
    bottom: 0;
    content: '';
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    position: absolute;
    width: 100%;
}.app_contacts .app_message_card {
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    padding: 35px;
}.app_contacts .app_message_card::before {
    content: '';
    height: 100%;
    width: 100%;
    z-index: -1;
    left: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 5px,
            rgba(0, 0, 0, 0.02) 5px,
            rgba(0, 0, 0, 0.02) 10px
        );
    top: 0;
    position: absolute;
}.app_contacts .app_message_card p {
    position: relative;
    font-size: 16px;
    margin: 0 0 18px;
    border-left: 2px solid transparent;
    padding-left: 30px;
    align-items: flex-start;
    display: flex;
    transition: all 0.3s ease;
    color: #000000;
}.app_contacts .app_message_card p:last-child {
    margin-bottom: 0;
}.app_contacts .app_message_card p svg {
    height: 20px;
    left: 0;
    width: 20px;
    fill: rgb(184,208,185);
    transition: all 0.3s ease;
    position: absolute;
    top: 4px;
}.app_contacts .app_message_card p span {
    z-index: 1;
    position: relative;
}.app_contacts .app_message_card p b {
    font-weight: 700;
    color: rgb(184,208,185);
}.app_contacts .app_message_card p a {
    color: rgb(184,208,185);
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}.app_contacts .app_message_card p a::after {
    position: absolute;
    left: 0;
    height: 1px;
    background: rgb(184,208,185);
    content: '';
    width: 0;
    transition: width 0.3s ease;
    bottom: 0;
}.app_contacts .app_message_card p a:hover {
    color: rgb(146,181,150);
}.app_contacts .app_message_card p a:hover::after {
    width: 100%;
}.app_contacts .app_reach_experts {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}.app_contacts .app_form_edu {
    color: #000000;
    font-weight: 600;
    padding-left: 30px;
    align-items: center;
    font-size: 16px;
    position: relative;
    display: flex;
    margin: 0 0 20px;
}.app_contacts .app_form_edu svg {
    transition: all 0.3s ease;
    stroke: rgb(184,208,185);
    stroke-width: 2;
    top: 50%;
    fill: none;
    transform: translateY(-50%) rotate(45deg);
    stroke-linejoin: round;
    stroke-linecap: round;
    left: 0;
    position: absolute;
    height: 18px;
    width: 18px;
}.app_contacts .app_form_edu:hover svg {
    stroke: rgb(146,181,150);
    transform: translateY(-50%) rotate(0deg);
}.app_contacts .app_join_conversation {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}.app_contacts .app_edu_form {
    align-items: center;
    color: #000000;
    position: relative;
    transition: all 0.3s ease;
    font-size: calc(16px - 1px);
    padding: 14px 18px 14px 38px;
    overflow: hidden;
    display: flex;
    border-left: 3px solid rgb(184,208,185);
    background: rgb(219,234,220);
}.app_contacts .app_edu_form svg {
    opacity: 0.8;
    stroke-linecap: round;
    stroke-width: 2;
    width: 14px;
    height: 14px;
    left: 12px;
    position: absolute;
    transition: all 0.3s ease;
    fill: none;
    stroke: rgb(184,208,185);
    top: 50%;
    stroke-linejoin: round;
    transform: translateY(-50%);
}.app_contacts .app_edu_form:hover {
    background: rgb(184,208,185,0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
    color: #000000;
}.app_contacts .app_edu_form:hover svg {
    transform: translateY(-50%) rotate(15deg);
    opacity: 1;
    stroke: #000000;
}.app_contacts .app_edu_form::before {
    height: 100%;
    position: absolute;
    content: '';
    width: 100%;
    opacity: 0.05;
    background: linear-gradient(45deg, transparent 49.5%, rgba(255, 255, 255, 0.5) 50%, transparent 50.5%);
    pointer-events: none;
    background-size: 10px 10px;
    left: 0;
    z-index: 1;
    top: 0;
}
@media screen and (min-width: 992px) {.app_contacts .app_reach_us {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
            "header header"
            "photo information"
            "hours hours";
}.app_contacts .app_msg_info {
    grid-area: header;
}.app_contacts .app_msg_info svg {
    width: 28px;
    margin-right: 15px;
    height: 28px;
}.app_contacts .app_capture {
    grid-area: photo;
    height: 100%;
}.app_contacts .app_message_card {
    grid-area: information;
}.app_contacts .app_message_card p svg {
    width: 22px;
    height: 22px;
}.app_contacts .app_reach_experts {
    padding: 35px;
    grid-area: hours;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0;
}.app_contacts .app_form_edu svg {
    width: 20px;
    height: 20px;
}.app_contacts .app_join_conversation {
    grid-template-columns: repeat(3, 1fr);
}.app_contacts .app_edu_form svg {
    height: 16px;
    width: 16px;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {.app_contacts {
    padding: 70px 0;
}.app_contacts .app_msg_info {
    padding: 22px 30px;
}.app_contacts .app_msg_info svg {
    height: 22px;
    width: 22px;
    margin-right: 10px;
}.app_contacts .app_message_card {
    padding: 30px;
}.app_contacts .app_message_card p svg {
    height: 18px;
    width: 18px;
}.app_contacts .app_form_edu svg {
    height: 16px;
    width: 16px;
}.app_contacts .app_join_conversation {
    grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 767px) {.app_contacts {
    padding: 50px 0;
}.app_contacts .app_msg_info {
    padding: 20px 25px;
}.app_contacts .app_msg_info svg {
    height: 20px;
    margin-right: 8px;
    width: 20px;
}.app_contacts .app_message_card {
    padding: 25px;
}.app_contacts .app_message_card p {
    padding-left: 28px;
}.app_contacts .app_message_card p svg {
    top: 3px;
    height: 16px;
    width: 16px;
}.app_contacts .app_reach_experts {
    padding-top: 25px;
    margin-top: 25px;
}.app_contacts .app_form_edu {
    padding-left: 26px;
}.app_contacts .app_form_edu svg {
    height: 14px;
    width: 14px;
}.app_contacts .app_join_conversation {
    grid-template-columns: 1fr;
}.app_contacts .app_edu_form {
    padding: 12px 15px 12px 34px;
}.app_contacts .app_edu_form svg {
    height: 12px;
    width: 12px;
    left: 10px;
}}.app_privacyAgreementDialog {
    font-family: Arial, sans-serif;
    z-index: 1050;
    overflow: hidden;
    bottom: 0;
    position: fixed;
    width: 100%;
    background: rgb(219,234,220);
    border-top: 3px solid rgb(184,208,185);
    padding: 20px;
}.app_cookie_ack {
    z-index: 1;
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}.app_user_tracker {
    margin-right: 20px;
    flex-shrink: 0;
}#app_cookiePopupMessage {
    display: none;
}#app_cookiePopupMessage:checked ~ .app_privacyAgreementDialog {
    opacity: 0;
    visibility: hidden;
}.app_user_tracker svg {
    fill: rgb(184,208,185);
    height: 60px;
    width: 60px;
    transition: fill 0.3s ease-in-out;
}.app_cookie_user {
    flex-grow: 1;
    margin-right: 20px;
}.app_cookie_user h5 {
    color: rgb(184,208,185);
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 19px;
}.app_cookie_user p {
    color: #000000;
    margin-bottom: 0;
    font-size: 15px;
}.app_data_notice {
    border-radius: 10px;
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
}.app_data_notice {
    color: #ffffff;
    background-color: rgb(184,208,185);
    border: 1px solid rgb(184,208,185);
}.app_data_notice:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: #000000;
}.app_privacyAgreementDialog p a {
    color: rgb(184,208,185);
    text-decoration: underline;
}.app_privacyAgreementDialog p a:hover {
    color: #000000;
}
@media (max-width: 1200px) {.app_cookie_user h5 {
    font-size: calc(19px - 2px);
}.app_cookie_user p {
    font-size: calc(15px - 2px);
}.app_data_notice {
    font-size: calc(14px - 2px);
    padding: 8px 16px;
}
}
@media (max-width: 800px) {.app_cookie_ack {
    align-items: center;
    flex-direction: column;
}.app_user_tracker {
    margin-bottom: 15px;
}.app_cookie_user {
    margin-bottom: 20px;
    text-align: center;
}.app_data_notice {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
}}
.app_greeting_page {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(219,234,220), rgb(146,181,150,0.5), rgb(184,208,185,0.5) 80%);
    width: 100%;
    min-height: 100vh;
}.app_greeting_page::before {
    background-size: 60px 60px, 40px 40px;
    left: 0;
    z-index: 1;
    width: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 1px, transparent 6px),
              radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 1px, transparent 4px);
    animation: starfield 100s linear infinite;
    top: 0;
    content: "";
    pointer-events: none;
    opacity: 0.7;
    position: absolute;
    height: 100%;
}.app_greeting_page::after {
    left: -50%;
    content: "";
    height: 200%;
    width: 200%;
    position: absolute;
    top: -50%;
    background: radial-gradient(ellipse at center, rgba(rgb(146,181,150), 0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: rotate(-15deg);
    z-index: 0;
}.app_greeting_page .app_edu_title {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 4rem 2rem;
    height: 100%;
    width: 100%;
}.app_greeting_page .app_edu_title > div {
    max-width: 1200px;
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    width: 100%;
}.app_greeting_page .app_edu_title > div > div:first-child {
    margin-bottom: 3rem;
    position: relative;
    transform: translateZ(20px);
}.app_greeting_page .app_edu_title h3 {
    margin: 0 0 1rem 2rem;
    font-size: calc(24px * 0.95);
    background: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    transform: translateX(-1rem);
    color: #000000;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(5px);
    line-height: 1.5;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    font-family: Arial, sans-serif;
    position: relative;
    font-weight: 600;
}.app_greeting_page .app_edu_title h3::before {
    transform-origin: center;
    top: 0;
    content: "";
    transform: scaleY(0.7);
    left: 0;
    background: rgb(184,208,185);
    position: absolute;
    transition: transform 0.3s ease-out;
    width: 4px;
    height: 100%;
}.app_greeting_page .app_academy_learnings {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 65vh;
    transform: translateY(0);
    box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.3);
}.app_greeting_page .app_academy_learnings::before {
    z-index: 1;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent 40%, rgba(0, 0, 0, 0.2));
    width: 100%;
    left: 0;
}.app_greeting_page .app_academy_learnings::after {
    left: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    width: 100%;
    position: absolute;
    height: 50%;
    bottom: 0;
    z-index: 1;
}.app_greeting_page .app_academy_learnings > div {
    left: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 3rem;
    position: absolute;
    width: 100%;
    transform: translateY(0);
    bottom: 0;
    z-index: 2;
}.app_greeting_page .app_academy_learnings p {
    overflow: hidden;
    color: #ffffff;
    line-height: 1.6;
    max-width: 80%;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(8px);
    background: rgba(rgb(146,181,150), 0.15);
    font-family: Arial, sans-serif;
    font-size: calc(13px * 1.1);
    transform: translateX(0);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease;
    margin: 0 0 1.5rem;
    font-weight: 400;
}.app_greeting_page .app_academy_learnings p::before {
    background: rgb(184,208,185);
    left: 0;
    transition: transform 0.3s ease;
    position: absolute;
    transform: scaleY(0.8);
    content: "";
    transform-origin: bottom;
    top: 0;
    width: 3px;
    height: 100%;
}.app_greeting_page .title_style_header {
    transform: translateY(0);
    color: #ffffff;
    font-family: Arial, sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    font-size: 43px;
    margin: 0;
    font-weight: 700;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.2;
}.app_greeting_page .title_style_header::after {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: absolute;
    content: "";
    transform: scaleX(0.8);
    background: rgb(184,208,185);
    height: 4px;
    width: 8rem;
    transform-origin: left;
    bottom: -1rem;
    left: 0;
}.app_greeting_page:hover .app_edu_title h3 {
    transform: translateX(0);
}.app_greeting_page:hover .app_edu_title h3::before {
    transform: scaleY(1);
}.app_greeting_page:hover .app_academy_learnings {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}.app_greeting_page:hover .app_academy_learnings > div {
    transform: translateY(-10px);
}.app_greeting_page:hover .app_academy_learnings p {
    transform: translateX(10px);
    background: rgba(rgb(146,181,150), 0.25);
}.app_greeting_page:hover .app_academy_learnings p::before {
    transform: scaleY(1);
}.app_greeting_page:hover .title_style_header {
    transform: translateY(-5px);
}.app_greeting_page:hover .title_style_header::after {
    transform: scaleX(1);
}

@keyframes starfield {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 1000px 1000px, -1000px -1000px;
  }
}

@media (max-width: 991px) {.app_greeting_page .app_edu_title {
    padding: 3rem 1.5rem;
}.app_greeting_page .app_edu_title h3 {
    font-size: calc(24px * 0.85);
    margin: 0 0 1rem 1rem;
    padding: 1.25rem 1.5rem;
    max-width: 90%;
}.app_greeting_page .app_academy_learnings {
    height: 55vh;
}.app_greeting_page .app_academy_learnings > div {
    padding: 2rem;
}.app_greeting_page .app_academy_learnings p {
    margin: 0 0 1.25rem;
    max-width: 90%;
    font-size: 13px;
}.app_greeting_page .title_style_header {
    font-size: calc(43px * 0.9);
}
}

@media (max-width: 767px) {.app_greeting_page .app_edu_title {
    padding: 2.5rem 1rem;
}.app_greeting_page .app_edu_title > div {
    transform: perspective(800px) rotateX(1deg);
}.app_greeting_page .app_edu_title h3 {
    padding: 1rem;
    max-width: 100%;
    margin: 0 0 1rem 0;
    font-size: calc(19px * 1.1);
}.app_greeting_page .app_academy_learnings {
    height: 50vh;
}.app_greeting_page .app_academy_learnings > div {
    padding: 1.5rem;
}.app_greeting_page .app_academy_learnings p {
    margin: 0 0 1rem;
    padding: 0.5rem 1rem;
    max-width: 100%;
    font-size: calc(13px * 0.9);
}.app_greeting_page .title_style_header {
    font-size: calc(32px * 1.1);
}.app_greeting_page .title_style_header::after {
    height: 3px;
    bottom: -0.75rem;
    width: 6rem;
}
}

@media (max-width: 480px) {.app_greeting_page .app_edu_title {
    padding: 2rem 0.75rem;
}.app_greeting_page .app_edu_title > div {
    transform: none;
}.app_greeting_page .app_edu_title > div > div:first-child {
    margin-bottom: 2rem;
}.app_greeting_page .app_edu_title h3 {
    padding: 0.75rem;
    font-size: 19px;
    line-height: 1.4;
}.app_greeting_page .app_academy_learnings {
    height: 45vh;
}.app_greeting_page .app_academy_learnings > div {
    padding: 1.25rem;
}.app_greeting_page .app_academy_learnings p {
    font-size: calc(13px * 0.85);
    padding: 0.5rem 0.75rem;
    line-height: 1.5;
}.app_greeting_page .title_style_header {
    font-size: 32px;
}}footer {
    position: relative;
    z-index: 1;
}footer::before {
    background: linear-gradient(135deg, rgb(184,208,185,0.5) 0%, rgb(146,181,150,0.5) 100%);
    content: "";
    opacity: 0.92;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}footer {
    background-size: cover !important;
    background-position: center !important;
}.app_footer_disclaimer {
    position: relative;
    color: #ffffff;
    padding: 5rem 0 2rem;
}.app_footer_disclaimer::before {
    height: 15px;
    background: rgb(184,208,185);
    content: "";
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}.app_footer_disclaimer .container {
    position: relative;
    flex-wrap: wrap;
    display: flex;
    gap: 0;
}.app_footer_disclaimer .company_holder {
    padding: 0 3rem 2rem 0;
    margin-bottom: 2rem;
    flex: 0 0 40%;
    position: relative;
}.app_footer_disclaimer .company_holder::after {
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
    width: 1px;
    right: 1.5rem;
    content: "";
    opacity: 0.3;
}.app_footer_disclaimer .company_holder h3 {
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 1.5rem;
    position: relative;
    letter-spacing: 1px;
    font-size: 31px;
    transform: skewX(-10deg);
    text-transform: uppercase;
    padding-bottom: 1rem;
}.app_footer_disclaimer .company_holder h3::after {
    height: 3px;
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
    background: rgb(184,208,185);
    box-shadow: 0 0 10px rgb(184,208,185);
    width: 80px;
}.app_footer_disclaimer .app_converter {
    font-size: 13px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    transform: skewX(-5deg);
    transform-origin: left top;
    color: #ffffff;
    border-left: 3px solid rgb(184,208,185);
}.app_footer_disclaimer .app_about_learn {
    gap: 0;
    flex-wrap: wrap;
    display: flex;
    flex: 0 0 60%;
}.app_footer_disclaimer .app_site_head {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}.app_footer_disclaimer .app_header_guide {
    position: relative;
    padding: 0 1rem 2rem 1rem;
    flex: 0 0 50%;
}.app_footer_disclaimer .app_header_guide h5 {
    color: #ffffff;
    padding-left: 1rem;
    position: relative;
    margin: 0 0 1.5rem;
    font-weight: 600;
    transform: skewX(-5deg);
    font-size: 23px;
}.app_footer_disclaimer .app_header_guide h5::before {
    bottom: 0;
    background: rgb(184,208,185);
    transform: skewX(5deg);
    content: "";
    left: 0;
    position: absolute;
    width: 3px;
    top: 0;
}.app_footer_disclaimer .app_header_guide .app_site_head {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}.app_footer_disclaimer .app_header_guide .app_site_head a {
    position: relative;
    display: block;
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #ffffff;
    transform: skewX(-5deg);
    overflow: hidden;
}.app_footer_disclaimer .app_header_guide .app_site_head a::before {
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 100%;
    top: 0;
    content: "";
    transition: all 0.5s ease;
    position: absolute;
    left: -100%;
}.app_footer_disclaimer .app_header_guide .app_site_head a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: skewX(-5deg) translateX(5px);
    padding-left: 1.5rem;
}.app_footer_disclaimer .app_header_guide .app_site_head a:hover::before {
    left: 100%;
}.app_equity_info {
    position: relative;
    padding: 1.5rem 0;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.15);
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}.app_equity_info .container {
    align-items: center;
    gap: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}.app_equity_info .app_case_study {
    font-size: 16px;
    transform: skewX(-5deg);
    color: #ffffff;
    text-align: center;
    width: 100%;
}

@media (max-width: 1200px) {.app_footer_disclaimer .company_holder {
    flex: 0 0 35%;
    padding-right: 2rem;
}.app_footer_disclaimer .app_about_learn {
    flex: 0 0 65%;
}
}

@media (max-width: 992px) {.app_footer_disclaimer {
    padding: 4rem 0 2rem;
}.app_footer_disclaimer .container {
    flex-direction: column;
}.app_footer_disclaimer .company_holder {
    margin-bottom: 3rem;
    flex: 0 0 100%;
    padding-right: 0;
}.app_footer_disclaimer .company_holder::after {
    display: none;
}.app_footer_disclaimer .app_about_learn {
    flex: 0 0 100%;
}.app_footer_disclaimer .app_header_guide {
    padding-bottom: 1.5rem;
}
}

@media (max-width: 768px) {.app_footer_disclaimer {
    padding: 3.5rem 0 1.5rem;
}.app_footer_disclaimer::before {
    height: 10px;
}.app_footer_disclaimer .company_holder h3 {
    font-size: calc(31px - 2px);
}.app_footer_disclaimer .app_converter {
    transform: skewX(-3deg);
    padding: 1.2rem;
}.app_footer_disclaimer .app_header_guide h5, 
    .app_footer_disclaimer .app_header_guide .app_site_head a {
    transform: skewX(-3deg);
}.app_footer_disclaimer .app_header_guide .app_site_head a:hover {
    transform: skewX(-3deg) translateX(5px);
}.app_equity_info {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}.app_equity_info .app_case_study {
    transform: skewX(-3deg);
}
}

@media (max-width: 576px) {.app_footer_disclaimer {
    padding: 3rem 0 1rem;
}.app_footer_disclaimer::before {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}.app_footer_disclaimer .app_header_guide {
    flex: 0 0 100%;
    padding: 0 0 2rem 0;
}.app_footer_disclaimer .company_holder {
    margin-bottom: 2rem;
}.app_footer_disclaimer .app_header_guide .app_site_head a {
    padding: 0.6rem 0.8rem;
}.app_footer_disclaimer .app_header_guide .app_site_head a:hover {
    padding-left: 1.2rem;
}.app_equity_info {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    margin-top: 1rem;
}
}

@media (max-width: 420px) {.app_footer_disclaimer .company_holder h3 {
    transform: skewX(-5deg);
}.app_footer_disclaimer .company_holder h3::after {
    width: 60px;
}.app_footer_disclaimer .app_converter {
    transform: none;
}.app_footer_disclaimer .app_header_guide h5 {
    transform: none;
}.app_footer_disclaimer .app_header_guide h5::before {
    transform: none;
}.app_footer_disclaimer .app_header_guide .app_site_head a,
    .app_footer_disclaimer .app_header_guide .app_site_head a:hover,
    .app_equity_info .app_case_study {
    transform: none;
}
}