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

.top_primaryweb {
    flex: 1 0 auto;
}

.wrapper-templateweb {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

svg {
    width: 30px;
    height: 30px;
}


.course_program_detailsweb {
    background: rgb(190,202,195);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.course_program_detailsweb::before {
    top: 0;
    position: absolute;
    opacity: 0.7;
    height: 100%;
    left: 0;
    animation: gradientShift 15s infinite alternate ease-in-out;
    background: 
        radial-gradient(circle at 20% 30%, rgb(145,177,158,0.5) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgb(84,146,115,0.5) 0%, transparent 30%);
    width: 100%;
    z-index: 0;
    content: "";
    filter: blur(60px);
}

.course_program_detailsweb .container {
    z-index: 1;
    position: relative;
}

.course_program_detailsweb .story_tlweb {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course_program_detailsweb .background_imgweb::before {
    position: absolute;
    mix-blend-mode: multiply;
    background: 
        radial-gradient(
            circle at center,
            transparent 30%,
            rgba(0, 0, 0, 0.5) 100%
        );
    height: 100%;
    z-index: 2;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
}

.course_program_detailsweb .background_imgweb::after {
    width: 100%;
    z-index: 3;
    mix-blend-mode: overlay;
    transition: opacity 0.5s ease;
    left: 0;
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
    background: 
        conic-gradient(
            from 0deg,
            rgb(145,177,158,0.5) 0deg,
            transparent 120deg,
            rgb(84,146,115,0.5) 240deg,
            transparent 360deg
        );
    opacity: 0.4;
}

.course_program_detailsweb .header_pagewrapweb {
    height: 100px;
    margin-bottom: 30px;
    background: #ffffff;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgb(145,177,158,0.5);
    border-radius: 50%;
    justify-content: center;
    transform: translateY(0);
    display: flex;
    z-index: 5;
    position: relative;
    width: 100px;
}

.course_program_detailsweb .header_pagewrapweb::after {
    z-index: -2;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    bottom: -20px;
    border: 2px dashed rgb(145,177,158,0.5);
    opacity: 0.3;
    left: -20px;
    animation: pulseBorder 4s ease-in-out infinite;
    right: -20px;
    content: "";
}

.course_program_detailsweb .header_pagewrapweb:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.course_program_detailsweb .header_pagewrapweb svg path {
    fill: rgb(145,177,158);
    transition: fill 0.5s ease;
}

.course_program_detailsweb h3 {
    background: #ffffff;
    margin-bottom: 30px;
    transform: perspective(800px) rotateX(2deg);
    color: #000000;
    width: 90%;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 600px;
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 25px 40px;
    border-radius: 12px;
}

.course_program_detailsweb .training_planweb:hover h3 {
    transform: perspective(800px) rotateX(0deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.course_program_detailsweb .training_planweb:hover h3::after {
    width: 120px;
}

.course_program_detailsweb p::before {
    top: 0;
    width: 100%;
    position: absolute;
    z-index: -1;
    background: linear-gradient(225deg, rgb(84,146,115,0.5) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 12px;
    height: 100%;
    left: 0;
    content: "";
}

.course_program_detailsweb p::after {
    content: "";
    transition: all 0.5s ease;
    background: rgb(84,146,115,0.5);
    height: 60px;
    right: 30px;
    width: 60px;
    top: -30px;
    position: absolute;
    border-radius: 50%;
    z-index: -2;
    opacity: 0.5;
    filter: blur(25px);
}

.opening_pageweb {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.opening_pageweb .skill_quickweb::before {
    width: 100%;
    content: "";
    background: linear-gradient(135deg, rgb(145,177,158,0.5), rgba(0, 0, 0, 0.5) 75%);
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
}

.opening_pageweb .pro_classesweb {
    max-width: 1200px;
    backdrop-filter: blur(8px);
    background: linear-gradient(170deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    padding: 3rem;
    transform: perspective(1000px) rotateY(-3deg);
    z-index: 3;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    width: 90%;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    position: relative;
}

.opening_pageweb h1 {
    animation: slideInText 0.8s ease-out forwards;
    position: relative;
    margin-bottom: 1.5rem;
    transform: translateX(-20px);
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    font-size: 38px;
}

.opening_pageweb h3 {
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
    animation: fadeUp 0.8s 0.3s ease-out forwards;
    text-shadow: 0 1px 10px rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: calc(23px + 0.15rem);
    opacity: 0;
    transform: translateY(20px);
    color: #ffffff;
}

.tyPageweb {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(190,202,195) 0%, rgba(240, 242, 245, 0.9) 100%);
}

.tyPageweb::before {
    height: 70%;
    right: -10%;
    width: 40%;
    position: absolute;
    top: -5%;
    animation: float 15s ease-in-out infinite alternate;
    opacity: 0.07;
    background: linear-gradient(135deg, rgb(145,177,158,0.5) 0%, rgb(84,146,115,0.5) 100%);
    z-index: 0;
    transform: rotate(15deg) skewX(-15deg);
    content: "";
}

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

.tyPageweb h2::after {
    animation: expand 1s 0.8s ease-out forwards;
    height: 3px;
    content: "";
    bottom: -15px;
    transform: scaleX(0);
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(145,177,158) 0%, rgb(84,146,115) 100%);
    width: 80px;
    transform-origin: left;
}

.tyPageweb .story_tlweb::before {
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    opacity: 0.1;
    background: linear-gradient(135deg, rgb(84,146,115,0.5) 0%, transparent 70%);
    top: 0;
    position: absolute;
    right: 0;
    height: 150px;
    content: "";
    width: 150px;
}

.tyPageweb li span {
    line-height: 1.8;
    opacity: 0;
    display: block;
    animation: fadeIn 1s 0.7s ease-out forwards;
    font-size: calc(14px + 0.05rem);
    transform: translateY(10px);
    font-family: Arial, sans-serif;
    color: #000000;
}

footer .recycle_infoweb::before {
    position: absolute;
    height: 100px;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    right: 0;
    z-index: 0;
    content: "";
    left: 0;
    transform: skewY(-3deg);
    top: -50px;
    background-color: rgb(84,146,115);
}

footer .info_item::before {
    content: "";
    background-color: rgb(145,177,158);
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 5px;
}

footer .info_item::after {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    top: 0;
}

footer .info_item svg {
    top: -1px;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    margin-right: 12px;
    position: relative;
    fill: rgb(145,177,158);
}

footer .info_item a:hover {
    color: rgb(145,177,158);
}

footer .text_main_holder {
    display: grid;
    gap: 30px;
    position: relative;
    grid-template-columns: 1fr;
}

footer .header_pagewrapweb::before {
    right: 15px;
    position: absolute;
    left: 15px;
    pointer-events: none;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    bottom: 15px;
    content: "";
    top: 15px;
    border-radius: calc(13px - 8px);
}

footer .top_startweb {
    position: relative;
}

footer .top_startweb h5 {
    position: relative;
    font-weight: 600;
    padding-left: 15px;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 18px;
    display: inline-block;
}

footer .header_pageweb a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: rgb(84,146,115,0.5);
    text-decoration: none;
    display: inline-block;
    border-radius: 0 5px 5px 0;
    margin: 0 10px 10px 0;
    position: relative;
    padding: 10px 15px;
    font-size: 15px;
}

footer .header_pageweb a:hover::before {
    width: 5px;
}

footer .subscribe_holder {
    border-radius: 13px;
    position: relative;
    background-color: rgb(84,146,115,0.5);
    padding: 30px;
}

footer .subscribe_holder h5 {
    padding-left: 15px;
    position: relative;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

footer .subscribe_holder p {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

footer .input_holder {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

footer .input_holder input[type="email"]:focus {
    border-color: rgb(145,177,158);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

footer .email_captureweb::after {
    height: 200%;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    width: 200%;
    top: -50%;
    content: "";
    left: -100%;
}

footer .email_captureweb:hover::after {
    left: 100%;
}

footer .footer_eduweb {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

footer .whatsapp_grpweb {
    font-size: 14px;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
}

header:before {
    position: absolute;
    background: 
        radial-gradient(circle at 15% 15%, rgb(145,177,158,0.5) 0%, transparent 25%),
        radial-gradient(circle at 85% 85%, rgb(84,146,115,0.5) 0%, transparent 25%);
    opacity: 0.1;
    height: 100%;
    width: 100%;
    top: 0;
    content: '';
    pointer-events: none;
    left: 0;
}

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

header .container:before {
    content: '';
    width: 100%;
    mix-blend-mode: overlay;
    opacity: 0.5;
    pointer-events: none;
    height: 100%;
    position: absolute;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.015) 2px,
            rgba(255, 255, 255, 0.015) 3px
        );
}

header .site_startweb:before {
    transform: translateY(-50%);
    border-radius: 50%;
    height: 20px;
    background: rgb(145,177,158);
    animation: breathe 5s infinite alternate;
    top: 50%;
    content: '';
    left: -10px;
    width: 20px;
    opacity: 0.3;
    position: absolute;
    filter: blur(15px);
}

header .top_startweb {
    position: relative;
    gap: 30px;
    display: flex;
    align-items: center;
}

header .top_wrapweb {
    font-weight: 400;
    text-shadow: 0 0 1px #ffffff;
    position: relative;
    transition: all 0.3s ease;
    color: #ffffff;
    padding: 8px 2px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

header .top_wrapweb:after {
    height: 2px;
    width: 0;
    transform: translateX(-50%);
    opacity: 0.8;
    bottom: -2px;
    position: absolute;
    filter: blur(0.5px);
    content: '';
    left: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(90deg, 
        rgb(145,177,158),
        #ffffff 50%,
        rgb(145,177,158)
    );
}

header .top_wrapweb:hover:before {
    opacity: 0.15;
    transform: skewX(-20deg) scale(1.05, 1);
}

header .top_wrapweb:hover:after {
    width: 100%;
    box-shadow: 
        0 0 5px rgb(145,177,158),
        0 0 10px rgb(145,177,158);
}

header .header_learnweb:before {
    content: '';
    width: 150%;
    top: 50%;
    background: radial-gradient(circle, 
        rgb(145,177,158,0.5) 0%, 
        transparent 70%
    );
    position: absolute;
    height: 150%;
    transform: translate(-50%, -50%);
    left: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

header .header_learnweb:hover:before {
    opacity: 0.3;
}

header .header_learnweb:hover:after {
    opacity: 0.7;
    animation: borderRotate 4s linear infinite;
}

header .header_learnweb:hover svg {
    filter: drop-shadow(0 0 5px rgb(145,177,158));
    transform: scale(1.05);
}

header .header_learnweb:hover svg path {
    animation: logoGlow 2s infinite alternate;
}

#cookieWarningPanelweb {
    display: none;
}

#cookieWarningPanelweb:checked ~ .privacySettingsBannerweb {
    visibility: hidden;
    opacity: 0;
}

.privacySettingsBannerweb h5 {
    font-size: 22px;
    margin-bottom: 6px;
}

.privacySettingsBannerweb p {
    font-size: 18px;
}

.privacy_cookiesweb svg, .privacy_cookiesweb svg path, .privacy_cookiesweb img {
    width: 100px;
    height: 100px;
    fill: rgb(145,177,158);
}

.privacySettingsBannerweb p a {
    text-decoration: none;
    color: rgb(145,177,158);
}


.wrapper-templateweb .privacySettingsBannerweb {
    background: rgb(145,177,158);
    box-shadow: rgb(84,146,115,0.5) 0px 0px 10px 10px;
}

.wrapper-templateweb .privacy_learnweb {
    font-size: 20px;
    background: #ffffff;
    border: none;
    color: rgb(145,177,158);
    padding: 10px;
    margin-left: 30px;
}

.wrapper-templateweb .privacySettingsBannerweb p a {
    color: rgb(84,146,115);
    text-decoration: underline;
}

.education_frameworkweb {
    overflow: hidden;
    padding: 100px 20px;
    z-index: 1;
    position: relative;
    background: rgb(190,202,195);
}

.education_frameworkweb {
    padding: 60px 15px;
}

.education_frameworkweb {
    padding: 40px 10px;
}

.education_frameworkweb::after {
    animation: glow-pulse 8s ease-in-out infinite alternate;
    left: 0;
    filter: blur(60px);
    top: 0;
    z-index: -1;
    width: 100%;
    position: absolute;
    height: 100%;
    background: radial-gradient(
        circle at 30% 50%,
        rgb(84,146,115,0.5) 0%,
        transparent 60%
    );
    content: "";
}

.education_frameworkweb .story_tlweb::before {
    border-radius: 25px;
    left: -5px;
    content: "";
    position: absolute;
    right: -5px;
    z-index: -1;
    background-size: 300% 300%;
    bottom: -5px;
    top: -5px;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgb(145,177,158,0.5) 45%,
        rgb(84,146,115) 50%,
        rgb(145,177,158,0.5) 55%,
        transparent 60%
    );
    filter: blur(2px);
    animation: border-flow 6s linear infinite;
}

.education_frameworkweb h3 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    transform: translateZ(30px);
    animation: title-float 5s ease-in-out infinite alternate;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    color: #000000;
    font-size: 33px;
    z-index: 2;
}

.education_frameworkweb h3 {
    margin-bottom: 25px;
    font-size: calc(33px - 6px);
}

.education_frameworkweb h3 {
    font-size: calc(33px - 8px);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.education_frameworkweb h3::after {
    filter: blur(4px);
    z-index: -1;
    opacity: 0.7;
    position: absolute;
    animation: text-glow 3s ease-in-out infinite alternate;
    color: rgb(145,177,158);
    top: 0;
    left: 0;
    content: attr(data-text);
}

.education_frameworkweb span {
    max-width: 800px;
    font-size: 15px;
    position: relative;
    color: #000000;
    transform: translateZ(10px);
    line-height: 1.8;
    animation: text-float 7s ease-in-out infinite alternate;
    z-index: 2;
    text-align: center;
}

.education_frameworkweb span {
    line-height: 1.6;
}

.education_frameworkweb span {
    font-size: calc(15px - 2px);
}

.newsletter_signupweb::before {
    z-index: 1;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(45deg, transparent 45%, rgb(84,146,115,0.5) 55%, transparent 65%);
    transform: translateZ(-10px) skewY(-5deg);
    pointer-events: none;
    content: '';
    left: 0;
    height: 100%;
}

.newsletter_signupweb .container {
    margin: 0 auto;
    transform-style: preserve-3d;
    padding: 0 20px;
    z-index: 2;
    position: relative;
    max-width: 1200px;
}

.newsletter_signupweb .story_tlweb:hover {
    transform: translateZ(20px) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.08);
}

.newsletter_signupweb .story_tlweb::before {
    width: 6px;
    top: 0;
    border-top-left-radius: 4px;
    background: linear-gradient(to bottom, rgb(145,177,158), rgb(84,146,115));
    border-bottom-left-radius: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    content: '';
}

.newsletter_signupweb .input_holder {
    transform: translateZ(5px);
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    display: flex;
}

.newsletter_signupweb .input_holder span:first-child {
    flex: 2;
}

.newsletter_signupweb .input_holder input[type="email"]:focus {
    transform: scale(1.01);
    border-color: rgb(145,177,158);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.newsletter_signupweb .input_holder input[type="submit"] {
    text-align: center;
    z-index: 1;
    border: none;
    font-size: 15px;
    cursor: pointer;
    background: linear-gradient(135deg, rgb(145,177,158), rgb(84,146,115));
    font-weight: 600;
    padding: 15px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: Arial, sans-serif;
}

.newsletter_signupweb .input_holder input[type="submit"]:hover::before {
    left: 100%;
}

.newsletter_signupweb .input_holder input[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.privacy_bastionweb::before {
    position: absolute;
    background: linear-gradient(135deg, transparent 15%, rgba(rgb(145,177,158,0.5), 0.03) 70%);
    z-index: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 50% 0);
    width: 40%;
    height: 100%;
    top: 0;
    content: "";
    right: 0;
}

.privacy_bastionweb .container {
    max-width: 1140px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.privacy_bastionweb h1 {
    font-size: 40px;
    color: #000000;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    transform: translateX(-0.5rem);
    position: relative;
}



.privacy_bastionweb h1, 
.privacy_bastionweb h2, 
.privacy_bastionweb h3, 
.privacy_bastionweb h4,
.privacy_bastionweb p,
.privacy_bastionweb ul {
    animation: fadeIn 0.5s ease-out forwards;
}

.privacy_bastionweb h2::before {
    top: 0.2em;
    background: rgb(145,177,158);
    position: absolute;
    left: 0;
    width: 4px;
    border-radius: 2px;
    height: 80%;
    content: "";
}

.privacy_bastionweb h3::before {
    left: 0;
    position: absolute;
    border-radius: 1.5px;
    background: rgb(84,146,115);
    content: "";
    width: 3px;
    height: 75%;
    top: 0.25em;
}

.privacy_bastionweb h4::before {
    content: "";
    border-radius: 1px;
    width: 2px;
    top: 0.3em;
    position: absolute;
    left: 0;
    opacity: 0.7;
    height: 70%;
    background: rgb(84,146,115);
}

.privacy_bastionweb p strong {
    color: #000000;
    background: linear-gradient(to bottom, transparent 85%, rgba(rgb(145,177,158,0.5), 0.15) 15%);
    padding-right: 0.25rem;
    font-weight: 600;
    padding-left: 0.25rem;
    position: relative;
}

.privacy_bastionweb ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: privacy-counter;
}

.privacy_bastionweb li {
    font-size: 14px;
    counter-increment: privacy-counter;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2.5rem;
}

.privacy_bastionweb li::after {
    left: 0;
    width: 1.25rem;
    display: flex;
    font-weight: 600;
    content: counter(privacy-counter);
    top: 0.25rem;
    font-size: 0.75rem;
    position: absolute;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    height: 1.25rem;
}

.our_teamweb::before {
    position: absolute;
    width: 100%;
    opacity: 0.03;
    background: 
        linear-gradient(0deg, transparent 24px, rgba(0, 0, 0, 0.5) 25px, rgba(0, 0, 0, 0.5) 26px, transparent 27px, transparent 49px, rgba(0, 0, 0, 0.5) 50px, rgba(0, 0, 0, 0.5) 51px, transparent 52px),
        linear-gradient(90deg, transparent 24px, rgba(0, 0, 0, 0.5) 25px, rgba(0, 0, 0, 0.5) 26px, transparent 27px, transparent 49px, rgba(0, 0, 0, 0.5) 50px, rgba(0, 0, 0, 0.5) 51px, transparent 52px);
    height: 100%;
    z-index: 1;
    background-size: 50px 50px;
    left: 0;
    top: 0;
    content: "";
}

.our_teamweb h2::before {
    left: 50%;
    height: 3px;
    bottom: -15px;
    position: absolute;
    content: "";
    transform: translateX(-50%);
    background-color: rgb(145,177,158);
    width: 50px;
}

.our_teamweb .student_voiceweb {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.our_teamweb .knowledge_trackweb {
    overflow: hidden;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: calc(50% - 15px);
    flex: 1;
    z-index: 2;
    background-color: #ffffff;
}

.our_teamweb .knowledge_trackweb {
    transform: translateY(0);
    padding: 40px;
}

.our_teamweb .knowledge_trackweb::before {
    background: linear-gradient(90deg, rgb(145,177,158), rgb(84,146,115));
    transform: scaleX(0);
    left: 0;
    width: 100%;
    height: 4px;
    transform-origin: left;
    top: 0;
    position: absolute;
    content: "";
    transition: transform 0.4s ease;
}

.our_teamweb .knowledge_trackweb:hover::after {
    opacity: 1;
}

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

.our_teamweb .knowledge_trackweb h3 {
    margin-bottom: 20px;
    position: relative;
    color: #000000;
    font-weight: 600;
    font-size: 23px;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.our_teamweb .knowledge_trackweb:last-child h3::before {
    background-color: rgb(84,146,115);
}

.our_teamweb .knowledge_trackweb:last-child:hover h3 {
    color: rgb(84,146,115);
}

.our_teamweb .container::before {
    position: absolute;
    content: "";
    border-radius: 50%;
    width: 300px;
    background: linear-gradient(135deg, rgb(145,177,158,0.5), rgb(84,146,115,0.5));
    opacity: 0.1;
    z-index: -1;
    height: 300px;
    right: -150px;
    top: -150px;
}

.our_teamweb .knowledge_trackweb:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.our_teamweb .knowledge_trackweb:first-child::after {
    border-color: transparent transparent rgb(145,177,158,0.5) transparent;
}

.price_packweb {
    background: linear-gradient(135deg, rgb(190,202,195) 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

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

.price_packweb .package_priceweb {
    display: flex;
    flex-direction: column;
}

.price_packweb .cost_cardweb h2 {
    position: relative;
    color: #000000;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 33px;
}

.price_packweb .access_costweb {
    line-height: 1.6;
    font-size: 16px;
    color: #000000;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0 auto;
    max-width: 600px;
}

.price_packweb .study_ratesweb {
    overflow: hidden;
    height: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    background: #ffffff;
    position: relative;
    border-radius: 10px;
}

.price_packweb .learning_packagesweb::before {
    content: "";
    top: 0;
    background: linear-gradient(135deg, transparent 0%, #ffffff 100%);
    opacity: 0.7;
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    height: 100%;
}

.price_packweb .learning_packagesweb h3::after {
    bottom: 0;
    position: absolute;
    left: 0;
    content: "";
    width: 40px;
    transition: width 0.3s ease;
    background: rgb(84,146,115);
    height: 2px;
}

.price_packweb .offer_boxweb {
    font-size: calc(22px * 1.5);
    font-weight: 700;
    color: rgb(145,177,158);
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.price_packweb .study_ratesweb:hover .offer_boxweb::before {
    width: 100%;
}

.price_packweb .background_imgweb {
    transition: transform 0.5s ease;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.price_packweb .background_imgweb::after {
    height: 100%;
    top: 0;
    position: absolute;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    content: "";
    width: 100%;
    left: 0;
}

.price_packweb .study_ratesweb:nth-child(3n+2) {
    border-top: 3px solid rgb(84,146,115);
}

.leadership_profileweb {
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
    background-color: rgb(190,202,195);
}

.leadership_profileweb::after {
    filter: blur(20px);
    background: linear-gradient(225deg, rgb(84,146,115,0.5), rgb(145,177,158,0.5));
    position: absolute;
    z-index: 1;
    left: -5%;
    content: "";
    height: 60%;
    opacity: 0.1;
    bottom: -10%;
    transform: rotate(10deg) skewX(-10deg);
    width: 35%;
}

.leadership_profileweb .review_praiseweb {
    transform: perspective(1000px) rotateY(1deg) rotateX(1deg);
    backdrop-filter: blur(10px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    grid-template-columns: 1fr;
    padding: 3rem;
    display: grid;
    gap: 2.5rem;
}

.leadership_profileweb .review_praiseweb .background_imgweb::before {
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 65%,
        rgb(84,146,115,0.5) 100%
    );
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    opacity: 0.7;
    position: absolute;
    z-index: 1;
}

.leadership_profileweb .review_praiseweb:hover .background_imgweb {
    transform: translateZ(30px) scale(1.02);
    box-shadow: 
        0 15px 35px -10px rgba(0,0,0,0.2),
        0 1px 5px rgba(0,0,0,0.1);
}

.leadership_profileweb .review_praiseweb > div:nth-child(2) {
    text-align: center;
    position: relative;
}

.leadership_profileweb .review_praiseweb .name::after {
    border-radius: 10px;
    transform: translateX(-50%);
    width: 35%;
    content: "";
    bottom: -5px;
    background: linear-gradient(90deg, rgb(84,146,115), rgb(145,177,158));
    left: 50%;
    height: 3px;
    position: absolute;
}

.leadership_profileweb .review_praiseweb > div:nth-child(3) {
    position: relative;
}

.leadership_profileweb .review_praiseweb .work_milestonesweb {
    margin: 0;
    line-height: 1.7;
    border-left: 3px solid rgb(145,177,158,0.5);
    color: #000000;
    position: relative;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    font-size: 17px;
}

.statistics_informationweb {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgb(190,202,195) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
}

.statistics_informationweb h3 {
    font-size: 35px;
    text-align: center;
    transform: perspective(1000px) translateZ(20px);
    z-index: 2;
    color: #000000;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.statistics_informationweb .container {
    z-index: 2;
    perspective: 1000px;
    position: relative;
}

.statistics_informationweb ul {
    transform-style: preserve-3d;
    gap: 25px;
    perspective: 800px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    list-style: none;
}

.statistics_informationweb .statistics_boostsweb::before {
    z-index: 1;
    width: 100%;
    position: absolute;
    left: 0;
    background: linear-gradient(
        90deg,
        rgb(145,177,158) 0%,
        rgb(84,146,115) 100%
    );
    content: "";
    opacity: 0.8;
    top: 0;
    height: 5px;
}

.statistics_informationweb .statistics_boostsweb::after {
    bottom: 0;
    border-radius: 50% 0 0 0;
    height: 50px;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 50px;
    z-index: -1;
    content: "";
    right: 0;
    background: rgb(145,177,158,0.5);
    transform: scale(0);
    opacity: 0.1;
}

.statistics_informationweb .statistics_boostsweb:hover {
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.02);
}

.statistics_informationweb .statistics_boostsweb p {
    font-weight: 700;
    font-size: 2.5rem;
    color: rgb(145,177,158);
    background: linear-gradient(135deg, rgb(145,177,158), rgb(84,146,115));
    margin: 5px 0 0;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.statistics_informationweb .statistics_boostsweb:nth-child(3n+1)::before {
    background: linear-gradient(
        90deg,
        rgb(84,146,115) 0%,
        rgb(145,177,158) 100%
    );
}

.statistics_informationweb .statistics_boostsweb:nth-child(3) {
    animation-delay: 0.3s;
}

.statistics_informationweb .statistics_boostsweb:nth-child(5) {
    animation-delay: 0.5s;
}

.statistics_informationweb .statistics_boostsweb:nth-child(7) {
    animation-delay: 0.7s;
}

.service_contactweb::before {
    width: 120%;
    position: absolute;
    left: -5%;
    transform: rotate(-3deg);
    height: 120%;
    z-index: 0;
    content: "";
    top: -10%;
    background: radial-gradient(circle at 30% 20%, rgba(rgb(145,177,158,0.5), 0.08), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(rgb(84,146,115,0.5), 0.06), transparent 55%);
}

.service_contactweb h1 {
    -webkit-background-clip: text;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -0.5px;
    transform: translateY(-5px);
    background-clip: text;
    background: linear-gradient(135deg, rgb(145,177,158), rgb(84,146,115));
    z-index: 2;
    color: transparent;
    position: relative;
}

.service_contactweb .request_feedbackweb > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.08),
                0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.03);
}

.service_contactweb .request_feedbackweb > div:first-child {
    padding: 2.5rem;
    border-left-color: rgb(84,146,115);
    color: #000000;
    font-size: calc(16px + 0.1rem);
    line-height: 1.7;
}

.service_contactweb h6 {
    font-size: 18px;
    color: rgb(145,177,158);
    font-weight: 600;
    display: flex;
    text-transform: capitalize;
    margin-bottom: 0.75rem;
    align-items: center;
}

.service_contactweb span {
    color: #000000;
    display: block;
    opacity: 0.95;
    font-size: calc(16px - 0.05rem);
    margin-left: 1.5rem;
}

.service_contactweb .contact_todayweb {
    font-weight: 400;
    text-decoration: none;
    align-items: center;
    display: flex;
    border-radius: 2px;
    position: relative;
    font-size: calc(16px - 0.05rem);
    color: #000000;
    padding: 0.5rem 0.75rem;
    transition: color 0.25s ease;
    background: linear-gradient(to right, rgba(rgb(145,177,158,0.5), 0.05), transparent);
}

.service_contactweb .contact_todayweb svg {
    margin-left: 8px;
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.service_contactweb svg {
    z-index: 2;
    position: relative;
}

.service_contactweb .contact_todayweb:hover svg path {
    fill: rgb(145,177,158);
}

.contact_panelweb::before {
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    background-size: 20px 20px, 20px 20px;
    animation: gridMove 20s linear infinite;
    top: 0;
    content: "";
    background: 
        linear-gradient(90deg, transparent 0%, rgba(rgb(145,177,158), 0.03) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(rgb(84,146,115), 0.04) 50%, transparent 100%);
}



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

.contact_panelweb h2::after {
    background: linear-gradient(90deg, rgb(145,177,158), rgb(84,146,115));
    bottom: -15px;
    left: 50%;
    border-radius: 1.5px;
    width: 80px;
    height: 3px;
    content: "";
    position: absolute;
    transform: translateX(-50%);
}

.contact_panelweb .query_cardweb::before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    left: -8px;
    top: -8px;
    height: 100%;
    border-radius: 29px;
    border: 1px solid rgba(rgb(145,177,158), 0.2);
}

.contact_panelweb .background_imgweb {
    position: relative;
    border-radius: 29px;
    min-height: 550px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.contact_panelweb .background_imgweb::after {
    height: 60px;
    right: 20px;
    position: absolute;
    border-right: 2px solid rgba(rgb(145,177,158), 0.6);
    width: 60px;
    z-index: 2;
    content: "";
    top: 20px;
    border-top: 2px solid rgba(rgb(145,177,158), 0.6);
}

.contact_panelweb .query_supportweb::before {
    border-bottom: 2px solid rgba(rgb(84,146,115), 0.6);
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-left: 2px solid rgba(rgb(84,146,115), 0.6);
    content: "";
    width: 60px;
    height: 60px;
}

.contact_panelweb form h3::before {
    left: 0;
    background: rgb(145,177,158);
    border-radius: 10px;
    height: 100%;
    width: 3px;
    position: absolute;
    top: 0;
    content: "";
}

.contact_panelweb form input[type="text"]:focus {
    outline: none;
    border-color: rgb(145,177,158);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(rgb(145,177,158), 0.2);
}

.contact_panelweb form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.contact_panelweb .connect_reachweb label::before {
    left: 0;
    transition: all 0.3s ease;
    width: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    content: "";
    border-radius: 10px;
    position: absolute;
    top: 2px;
    height: 22px;
}

.contact_panelweb .connect_reachweb label a {
    transition: all 0.3s ease;
    position: relative;
    color: rgb(145,177,158);
    text-decoration: none;
    font-weight: 600;
}

.contact_panelweb .connect_reachweb label a:hover {
    color: rgb(84,146,115);
}

.contact_panelweb form .connect_listweb {
    color: #ffffff;
    background: linear-gradient(45deg, rgb(145,177,158), rgb(84,146,115));
    z-index: 1;
    padding: 16px 40px;
    overflow: hidden;
    position: relative;
    border: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    font-weight: 600;
}

.contact_panelweb svg {
    fill: rgb(145,177,158);
    width: 22px;
    height: 22px;
}


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



@media (min-width: 992px) and (max-width: 1199px) {.course_program_detailsweb {
    padding: 100px 0;
}.course_program_detailsweb .story_tlweb {
    min-height: 550px;
}.course_program_detailsweb .training_planweb {
    width: 70%;
}.course_program_detailsweb .header_pagewrapweb {
    margin-bottom: 25px;
    height: 90px;
    width: 90px;
}.course_program_detailsweb .header_pagewrapweb svg {
    height: 45px;
    width: 45px;
}.course_program_detailsweb h3 {
    margin-bottom: 25px;
    padding: 22px 35px;
    font-size: calc(37px - 2px);
}.course_program_detailsweb p {
    padding: 30px;
    font-size: calc(12px - 1px);
}
}



@media (max-width: 767px) {.course_program_detailsweb {
    padding: 60px 0;
}.course_program_detailsweb .story_tlweb {
    flex-direction: column;
    padding-bottom: 50px;
    min-height: auto;
}.course_program_detailsweb .background_imgweb {
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    margin: 30px 0;
    transform: scale(0.9);
    height: 300px;
    position: relative;
}.course_program_detailsweb .story_tlweb:hover .background_imgweb {
    transform: scale(0.95) rotate(2deg);
}.course_program_detailsweb .training_planweb {
    order: 2;
    width: 100%;
}.course_program_detailsweb .header_pagewrapweb {
    height: 70px;
    z-index: 10;
    width: 70px;
    left: 50%;
    top: -30px;
    position: absolute;
    margin-bottom: 0;
    transform: translateX(-50%);
}.course_program_detailsweb .header_pagewrapweb::before,
    .course_program_detailsweb .header_pagewrapweb::after {
    display: none;
}.course_program_detailsweb .header_pagewrapweb svg {
    width: 35px;
    height: 35px;
}.course_program_detailsweb .header_pagewrapweb:hover {
    transform: translateX(-50%) translateY(-5px);
}.course_program_detailsweb h3 {
    margin-top: 40px;
    transform: none;
    padding: 20px;
    margin-bottom: 15px;
    width: 100%;
    font-size: calc(37px - 6px);
}.course_program_detailsweb p {
    font-size: calc(12px - 2px);
    transform: none;
    padding: 20px;
    line-height: 1.6;
}.course_program_detailsweb h3::after {
    bottom: -10px;
    width: 40px;
}.course_program_detailsweb .training_planweb:hover h3::after {
    width: 80px;
}.course_program_detailsweb p::after {
    display: none;
}.course_program_detailsweb .training_planweb:hover h3,
    .course_program_detailsweb .training_planweb:hover p {
    transform: none;
}}



@media screen and (max-width: 576px) {.opening_pageweb .skill_quickweb {
    padding-top: 6rem;
    min-height: 70vh;
}.opening_pageweb .pro_classesweb {
    width: 100%;
    padding: 1.5rem;
}.opening_pageweb h1 {
    font-size: calc(38px - 0.8rem);
}.opening_pageweb h3 {
    line-height: 1.5;
    font-size: calc(23px - 0.2rem);
}.opening_pageweb p {
    font-size: calc(18px - 0.15rem);
    margin-top: 1.2rem;
}
}



@media screen and (max-width: 992px) {.tyPageweb {
    padding: 5rem 0;
}.tyPageweb h2 {
    margin-bottom: 2.5rem;
    font-size: calc(29px - 0.2rem);
}.tyPageweb .story_tlweb {
    padding: 2.5rem;
}
}



@media screen and (max-width: 576px) {.tyPageweb {
    padding: 3rem 0;
}.tyPageweb .container {
    padding: 0 1.5rem;
}.tyPageweb h2 {
    font-size: calc(29px - 0.6rem);
    line-height: 1.4;
    margin-bottom: 1.8rem;
}.tyPageweb h2::after {
    width: 50px;
    bottom: -10px;
    height: 2px;
}.tyPageweb .story_tlweb {
    border-left-width: 3px;
    padding: 1.5rem;
}.tyPageweb li span {
    font-size: 14px;
    line-height: 1.7;
}}



@media (max-width: 767px) {footer .recycle_infoweb {
    padding: 60px 0 30px;
}footer .start_chatweb {
    margin-bottom: 40px;
}footer .header_pagewrapweb, footer .subscribe_holder {
    padding: 25px 20px;
}footer .header_pageweb a {
    margin: 0 5px 8px 0;
    padding: 8px 12px;
}footer .footer_eduweb {
    margin-top: 40px;
}
}



@media (max-width: 991px) {header .container {
    padding: 15px 20px;
}header .top_startweb {
    gap: 20px;
}header .header_learnweb svg {
    height: 38px;
}
}



@media (max-width: 480px) {header .container {
    padding: 12px 15px;
}header .header_learnweb svg {
    height: 35px;
}header .top_startweb {
    width: 100%;
    max-width: 100%;
}}


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


@media only screen and (max-width: 800px) {.privacy_cookiesweb {
    display: none;
}.privacy_optweb {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.privacySettingsBannerweb h5 {
    text-align: center;
}.privacySettingsBannerweb p {
    text-align: center;
}.edu_consentweb {
    margin-bottom: 20px;
}body .wrapper-templateweb .privacy_learnweb {
    margin-left: 0;
    margin-bottom: 10px;
}}



@media (max-width: 991px) {.education_frameworkweb {
    padding: 80px 15px;
}.education_frameworkweb h3 {
    font-size: calc(33px - 4px);
    margin-bottom: 30px;
}.education_frameworkweb span {
    font-size: calc(15px - 1px);
}.education_frameworkweb .story_tlweb {
    padding: 30px;
}
}



@media (max-width: 992px) {.newsletter_signupweb {
    padding: 60px 0;
}.newsletter_signupweb .story_tlweb {
    padding: 30px;
}.newsletter_signupweb .story_tlweb h4 {
    font-size: calc(18px * 0.9);
    margin-bottom: 25px;
}
}



@media (max-width: 768px) {.newsletter_signupweb {
    padding: 50px 0;
}.newsletter_signupweb .story_tlweb {
    padding: 25px;
}.newsletter_signupweb .story_tlweb h4 {
    margin-bottom: 20px;
    font-size: calc(18px * 0.85);
}.newsletter_signupweb .input_holder {
    flex-direction: column;
    gap: 10px;
}.newsletter_signupweb .input_holder span {
    width: 100%;
}.newsletter_signupweb .input_holder input[type="email"],
  .newsletter_signupweb .input_holder input[type="submit"] {
    padding: 12px 15px;
}
}



@media (max-width: 768px) {.privacy_bastionweb {
    padding: 3rem 1.25rem;
}.privacy_bastionweb::before {
    opacity: 0.5;
    width: 70%;
}.privacy_bastionweb h1 {
    font-size: calc(40px * 0.8);
    transform: translateX(0);
}.privacy_bastionweb h2 {
    font-size: calc(38px * 0.8);
}.privacy_bastionweb h3 {
    font-size: calc(38px * 0.7);
}.privacy_bastionweb h4 {
    font-size: calc(38px * 0.6);
}.privacy_bastionweb p, 
    .privacy_bastionweb span,
    .privacy_bastionweb li {
    font-size: calc(14px * 0.95);
}.privacy_bastionweb li {
    padding-left: 2rem;
}
}



@media screen and (max-width: 992px) {.our_teamweb {
    padding: 80px 0;
}.our_teamweb .student_voiceweb {
    flex-direction: column;
}.our_teamweb .knowledge_trackweb {
    min-width: 100%;
}.our_teamweb h2 {
    margin-bottom: 40px;
}
}



@media screen and (max-width: 576px) {.our_teamweb {
    padding: 50px 0;
}.our_teamweb h2 {
    font-size: calc(32px * 0.8);
    margin-bottom: 30px;
}.our_teamweb h2::before {
    width: 40px;
    bottom: -12px;
}.our_teamweb h2::after {
    transform: translateX(-50%) translateX(25px);
    width: 15px;
    bottom: -12px;
}.our_teamweb .knowledge_trackweb {
    padding: 25px;
}.our_teamweb .knowledge_trackweb h3 {
    margin-bottom: 12px;
    font-size: calc(23px * 0.85);
    padding-left: 12px;
}.our_teamweb .knowledge_trackweb h3::before {
    width: 4px;
    height: 18px;
}.our_teamweb .knowledge_trackweb p {
    line-height: 1.6;
    font-size: calc(15px * 0.9);
}.our_teamweb .knowledge_trackweb::after {
    border-width: 0 0 30px 30px;
}}



@media (min-width: 992px) {.price_packweb .deal_optsweb {
    grid-template-columns: repeat(2, 1fr);
}.price_packweb .study_ratesweb:nth-child(4n+1) {
    transform: translateY(20px);
}.price_packweb .study_ratesweb:nth-child(4n+3) {
    transform: translateY(-20px);
}.price_packweb .study_ratesweb:hover {
    transform: translateY(0) scale(1.02);
}
}



@media (max-width: 480px) {.price_packweb .deal_optsweb {
    grid-template-columns: 1fr;
}.price_packweb .cost_cardweb h2 {
    font-size: calc(33px * 0.8);
}.price_packweb .access_costweb {
    font-size: calc(16px * 0.9);
}.price_packweb .learning_packagesweb p {
    max-height: 120px;
}}



@media (min-width: 768px) {.leadership_profileweb .review_praiseweb {
    padding: 3.5rem;
    gap: 2rem 3.5rem;
    grid-template-areas: 
            "photo info"
            "photo quote";
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto 1fr;
}.leadership_profileweb .review_praiseweb > div:first-child {
    margin: 0;
    grid-area: photo;
}.leadership_profileweb .review_praiseweb > div:nth-child(2) {
    align-self: flex-end;
    text-align: left;
    grid-area: info;
}.leadership_profileweb .review_praiseweb > div:nth-child(3) {
    grid-area: quote;
    align-self: flex-start;
}.leadership_profileweb .review_praiseweb .name::after {
    transform: none;
    width: 50px;
    left: 0;
}.leadership_profileweb .review_praiseweb .background_imgweb {
    border-radius: 8px;
}
}



@media (min-width: 768px) {.statistics_informationweb {
    padding: 100px 30px;
}.statistics_informationweb h3 {
    font-size: calc(35px * 1.2);
    margin-bottom: 60px;
}.statistics_informationweb ul {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}.statistics_informationweb .statistics_boostsweb {
    padding: 35px 30px;
}.statistics_informationweb .statistics_boostsweb span {
    font-size: calc(13px * 1.1);
}.statistics_informationweb .statistics_boostsweb p {
    font-size: 3rem;
}
}



@media (max-width: 767px) {.statistics_informationweb {
    padding: 60px 15px;
}.statistics_informationweb h3 {
    font-size: 35px;
    margin-bottom: 40px;
}.statistics_informationweb ul {
    grid-template-columns: 1fr;
    gap: 20px;
}.statistics_informationweb .statistics_boostsweb {
    padding: 25px 20px;
}.statistics_informationweb .statistics_boostsweb span {
    font-size: 13px;
}.statistics_informationweb .statistics_boostsweb p {
    font-size: 2rem;
}.statistics_informationweb .statistics_boostsweb:nth-child(odd),
    .statistics_informationweb .statistics_boostsweb:nth-child(even) {
    transform: none;
}}



@media (min-width: 992px) {.service_contactweb {
    padding: 7rem 4rem;
}.service_contactweb h1 {
    margin-bottom: 3.5rem;
    font-size: calc(40px + 0.25rem);
}.service_contactweb .request_feedbackweb {
    grid-template-columns: 2fr 1fr 1fr;
}.service_contactweb .request_feedbackweb > div:first-child {
    grid-column: 1;
    display: flex;
    align-items: center;
    grid-row: span 2;
}.service_contactweb .assist_expertsweb {
    gap: 1.5rem;
}
}



@media screen and (max-width: 991px) {.contact_panelweb {
    padding: 90px 0;
}.contact_panelweb .query_cardweb {
    gap: 40px;
    grid-template-columns: 1fr;
}.contact_panelweb .background_imgweb {
    min-height: 400px;
}.contact_panelweb .query_supportweb {
    padding: 40px 30px;
}
}



@media screen and (max-width: 576px) {.contact_panelweb {
    padding: 50px 0;
}.contact_panelweb h2 {
    font-size: calc(35px * 0.8);
}.contact_panelweb .query_cardweb {
    margin-top: 40px;
}.contact_panelweb .background_imgweb {
    min-height: 250px;
}.contact_panelweb .query_supportweb {
    padding: 30px 20px;
}.contact_panelweb form h3 {
    margin-bottom: 25px;
    font-size: calc(24px * 0.9);
}.contact_panelweb form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}.contact_panelweb form .connect_listweb {
    width: 100%;
    padding: 15px 20px;
}
}



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



@keyframes pulseBorder {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}



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



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



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



@keyframes float {
  0% {
    transform: rotate(15deg) skewX(-15deg) translateY(0);
  }
  50% {
    transform: rotate(18deg) skewX(-18deg) translateY(-10px);
  }
  100% {
    transform: rotate(15deg) skewX(-15deg) translateY(0);
  }
}



@keyframes breathe {
    0%, 100% {
        opacity: 0.3;
        filter: blur(15px);
    }
    50% {
        opacity: 0.5;
        filter: blur(20px);
    }
}



@keyframes borderRotate {
    0% {
        border-image: linear-gradient(45deg, rgb(145,177,158), rgb(84,146,115), rgb(145,177,158)) 1;
    }
    50% {
        border-image: linear-gradient(225deg, rgb(145,177,158), rgb(84,146,115), rgb(145,177,158)) 1;
    }
    100% {
        border-image: linear-gradient(405deg, rgb(145,177,158), rgb(84,146,115), rgb(145,177,158)) 1;
    }
}



@keyframes bg-shift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}



@keyframes border-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}



@keyframes title-float {
    0%, 100% {
        transform: translateZ(30px) rotateX(0deg);
    }
    50% {
        transform: translateZ(40px) rotateX(2deg);
    }
}



@keyframes underline-pulse {
    0%, 100% {
        width: 60px;
        opacity: 0.8;
    }
    50% {
        width: 120px;
        opacity: 1;
    }
}



@keyframes text-glow {
    0% {
        filter: blur(4px);
        opacity: 0.5;
        transform: translateX(-3px) translateY(-3px);
    }
    100% {
        filter: blur(7px);
        opacity: 0.8;
        transform: translateX(3px) translateY(3px);
    }
}

@keyframes underline-pulse {
        0%, 100% {
            width: 40px;
        }
        50% {
            width: 60px;
        }
    }



@keyframes borderPulse {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

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

