* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}.debate_club {
    flex: 0 0 auto;
}::-webkit-scrollbar {
    width: 1rem;
    padding: 5px;
    scroll-behavior: smooth;
}::-webkit-scrollbar-track {
    margin: 2px 0;
    background: rgb(209,212,204,0.5);
    border: 1px groove #ffffff;
    box-shadow: inset 1px -4px 7px 7px rgba(0, 0, 0, 0.6);
}::-webkit-scrollbar-track:active {
    background: rgb(255, 255, 255, 0.5);
}::-webkit-scrollbar-thumb {
    border: 1px double rgb(209,212,204,0.5);
    transition: box-shadow, border-radius, transform 1s cubic-bezier(0.42, 0, 0.58, 1);
    background: rgb(172,179,169,0.5);
}::-webkit-scrollbar-thumb:active {
    background: rgb(172,179,169);
    box-shadow: inset -1px 4px 13px 4px rgba(0, 0, 0, 0.8);
}* {
    scrollbar-width: auto;
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 2px;
}::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255, 0.5);
}}

header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.wrapper-template {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}.head_wrap {
    flex: 1 0 auto;
}html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
    min-height: 100%;
}svg {
    height: 30px;
    width: 30px;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1223px;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.appNote {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, rgb(239,239,237) 0%, rgba(245, 247, 250, 0.95) 100%);
    overflow: hidden;
    position: relative;
}.appNote::before {
    content: "";
    filter: blur(80px);
    width: 300px;
    position: absolute;
    top: -50px;
    background: linear-gradient(45deg, rgb(172,179,169,0.5) 0%, rgb(209,212,204,0.5) 100%);
    z-index: 1;
    height: 300px;
    right: -50px;
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}.appNote::after {
    animation: float 18s ease-in-out infinite reverse;
    opacity: 0.3;
    z-index: 1;
    left: -30px;
    filter: blur(60px);
    height: 250px;
    position: absolute;
    width: 250px;
    bottom: -30px;
    background: linear-gradient(225deg, rgb(209,212,204,0.5) 0%, rgb(172,179,169,0.5) 80%);
    content: "";
}.appNote .container {
    z-index: 5;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.appNote h2 {
    position: relative;
    color: #000000;
    transform: translateY(20px);
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
    opacity: 0;
    font-weight: 700;
    font-size: 30px;
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}.appNote h2::after {
    content: "";
    left: 0;
    height: 3px;
    position: absolute;
    background: linear-gradient(90deg, rgb(209,212,204) 0%, rgb(172,179,169) 100%);
    animation: expandLine 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    transform: scaleX(0);
    width: 80px;
    transform-origin: left center;
    bottom: -12px;
}.appNote .how_grow {
    border-radius: 13px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 50px;
    transform: translateY(30px);
    overflow: hidden;
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
    background: #ffffff;
    opacity: 0;
}.appNote .how_grow::before {
    transform-origin: top center;
    height: 100%;
    top: 0;
    left: 0;
    animation: expandHeight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
    position: absolute;
    background: linear-gradient(to bottom, rgb(172,179,169), rgb(209,212,204));
    content: "";
    width: 6px;
    transform: scaleY(0);
}.appNote ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.appNote li {
    padding-left: 25px;
    position: relative;
}.appNote li::before {
    position: absolute;
    height: 10px;
    content: "";
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1s;
    background: linear-gradient(135deg, rgb(209,212,204) 0%, rgb(172,179,169) 100%);
    transform: scale(0);
    left: 0;
    width: 10px;
    top: 8px;
    border-radius: 50%;
}.appNote span {
    color: #000000;
    font-family: Arial, sans-serif;
    transform: translateY(15px);
    animation: fadeText 0.8s ease forwards 0.8s;
    font-size: calc(16px * 1.05);
    display: block;
    opacity: 0;
    line-height: 1.7;
}

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

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

@keyframes expandHeight {
    to {
        transform: scaleY(1);
    }
}

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

@keyframes fadeText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 991px) {.appNote {
    padding: 90px 0 70px;
}.appNote h2 {
    font-size: calc(30px * 0.9);
    margin-bottom: 35px;
}.appNote .how_grow {
    padding: 40px 35px;
}.appNote h2::after {
    width: 70px;
}
}

@media (max-width: 767px) {.appNote {
    padding: 70px 0 50px;
}.appNote h2 {
    line-height: 1.4;
    margin-bottom: 30px;
    font-size: calc(30px * 0.8);
}.appNote .how_grow {
    padding: 35px 25px;
}.appNote span {
    font-size: 16px;
    line-height: 1.6;
}.appNote h2::after {
    height: 2px;
    width: 60px;
}
}

@media (max-width: 575px) {.appNote {
    padding: 60px 0 40px;
}.appNote h2 {
    font-size: calc(30px * 0.7);
    margin-bottom: 25px;
}.appNote .how_grow {
    padding: 30px 20px;
}.appNote li {
    padding-left: 20px;
}.appNote li::before {
    height: 8px;
    width: 8px;
    top: 9px;
}.appNote h2::after {
    width: 50px;
}
}

@media (hover: hover) {.appNote .how_grow:hover {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}.appNote .how_grow:hover::before {
    background: linear-gradient(to bottom, rgb(209,212,204), rgb(172,179,169));
    transition: background 0.5s ease;
}}.course_features {
    background: rgb(239,239,237);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.course_features::before {
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgb(172,179,169,0.5) 2px, rgb(172,179,169,0.5) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgb(209,212,204,0.5) 2px, rgb(209,212,204,0.5) 4px);
    position: absolute;
    z-index: 0;
    opacity: 0.03;
    content: "";
}.course_features::after {
    animation: ambientLight 15s infinite alternate ease-in-out;
    width: 90%;
    left: 5%;
    top: 5%;
    background: 
        radial-gradient(ellipse at top left, rgb(209,212,204,0.5) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgb(172,179,169,0.5) 0%, transparent 60%);
    z-index: 0;
    content: "";
    height: 90%;
    filter: blur(40px);
    position: absolute;
}.course_features .container {
    position: relative;
    z-index: 1;
}.course_features .how_grow {
    background: transparent;
    border-radius: 10px;
    max-width: 100%;
    position: relative;
    flex-direction: column;
    overflow: visible;
    display: flex;
}.course_features .picture_gallery {
    top: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    overflow: hidden;
    transform: translateZ(0);
    left: 0;
    border-radius: 10px;
    filter: saturate(0.8) contrast(1.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: absolute;
    z-index: 0;
}.course_features .picture_gallery::before {
    mix-blend-mode: multiply;
    top: 0;
    height: 100%;
    z-index: 1;
    content: "";
    width: 100%;
    left: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
    position: absolute;
}.course_features .picture_gallery::after {
    content: "";
    position: absolute;
    background: 
        linear-gradient(to right, #000000 0%, transparent 20%, transparent 80%, #000000 100%),
        linear-gradient(to bottom, #000000 0%, transparent 20%, transparent 80%, #000000 100%);
    width: 100%;
    left: 0;
    z-index: 2;
    height: 100%;
    opacity: 0.7;
    top: 0;
}.course_features .how_grow:hover .picture_gallery {
    filter: saturate(1.1) contrast(1.2);
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 100%, 
        65% 100%, 
        60% 85%, 
        40% 85%, 
        35% 100%, 
        0% 100%
    );
}.course_features .tech_training {
    transition: all 0.6s ease;
    border-radius: 10px;
    margin: 40px auto;
    padding: 80px 60px;
    transform: perspective(1000px) rotateX(2deg);
    z-index: 3;
    width: 85%;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}.course_features .tech_training::before {
    background: linear-gradient(
        45deg,
        rgb(209,212,204) 0%,
        transparent 30%,
        transparent 70%,
        rgb(172,179,169) 100%
    );
    transition: opacity 0.6s ease;
    z-index: -1;
    position: absolute;
    bottom: -2px;
    top: -2px;
    border-radius: calc(10px + 2px);
    content: "";
    opacity: 0.7;
    right: -2px;
    left: -2px;
}.course_features .tech_training::after {
    content: "";
    position: absolute;
    bottom: 10px;
    opacity: 0.5;
    border: 1px dashed rgb(209,212,204,0.5);
    border-radius: 10px;
    z-index: -1;
    top: 10px;
    transition: all 0.4s ease;
    right: 10px;
    left: 10px;
}.course_features .how_grow:hover .tech_training {
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateX(0deg);
}.course_features .how_grow:hover .tech_training::before {
    opacity: 1;
}.course_features .how_grow:hover .tech_training::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    opacity: 0.7;
}.course_features .nav_mentor {
    z-index: 5;
    align-items: center;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    height: 70px;
    top: -35px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 70px;
    display: flex;
    transform: translateX(-50%);
    justify-content: center;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 0 0 5px rgb(209,212,204,0.5);
    left: 50%;
}.course_features .nav_mentor::before {
    animation: rotateConic 10s linear infinite;
    bottom: -10px;
    transition: opacity 0.5s ease;
    background: 
        conic-gradient(
            rgb(209,212,204) 0deg, 
            rgb(209,212,204) 90deg, 
            transparent 90deg, 
            transparent 180deg, 
            rgb(172,179,169) 180deg, 
            rgb(172,179,169) 270deg, 
            transparent 270deg, 
            transparent 360deg
        );
    border-radius: 50%;
    left: -10px;
    content: "";
    z-index: -1;
    opacity: 0.5;
    right: -10px;
    top: -10px;
    position: absolute;
}.course_features .nav_mentor:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.08),
        0 0 0 5px rgb(172,179,169,0.5);
}.course_features .nav_mentor:hover::before {
    opacity: 0.8;
}.course_features .nav_mentor svg {
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease;
}.course_features .nav_mentor:hover svg {
    transform: rotate(15deg);
}.course_features .nav_mentor svg path {
    fill: rgb(209,212,204);
    transition: fill 0.5s ease;
}.course_features .nav_mentor:hover svg path {
    fill: rgb(172,179,169);
}.course_features h3 {
    padding-bottom: 20px;
    text-align: center;
    color: #000000;
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 29px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}.course_features h3::before {
    left: 50%;
    width: 50px;
    transform: translateX(-50%);
    height: 2px;
    position: absolute;
    transition: width 0.5s ease;
    background: rgb(209,212,204);
    bottom: 0;
    content: "";
}.course_features h3::after {
    background: rgb(172,179,169,0.5);
    bottom: -5px;
    width: 100px;
    content: "";
    transform: translateX(-50%);
    left: 50%;
    transition: width 0.5s ease;
    height: 1px;
    position: absolute;
}.course_features .tech_training:hover h3::before {
    width: 100px;
}.course_features .tech_training:hover h3::after {
    width: 150px;
}.course_features p {
    line-height: 1.8;
    max-width: 90%;
    text-align: center;
    position: relative;
    color: #000000;
    font-size: 16px;
    margin: 0 auto;
}.course_features p::before, 
.course_features p::after {
    opacity: 0.3;
    position: absolute;
    width: 20px;
    height: 20px;
    transition: all 0.5s ease;
    content: "";
}.course_features p::before {
    border-top: 2px solid rgb(209,212,204);
    left: -10px;
    top: -10px;
    border-left: 2px solid rgb(209,212,204);
}.course_features p::after {
    right: -10px;
    border-right: 2px solid rgb(172,179,169);
    bottom: -10px;
    border-bottom: 2px solid rgb(172,179,169);
}.course_features .tech_training:hover p::before,
.course_features .tech_training:hover p::after {
    height: 40px;
    opacity: 0.6;
    width: 40px;
}

@keyframes ambientLight {
    0% {
        opacity: 0.3;
        transform: scale(0.95) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1) rotate(5deg);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.95) rotate(0deg);
    }
}

@keyframes rotateConic {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {.course_features {
    padding: 100px 0;
}.course_features .tech_training {
    width: 90%;
    padding: 70px 50px;
}.course_features h3 {
    font-size: calc(29px - 2px);
}
}

@media (min-width: 768px) and (max-width: 991px) {.course_features {
    padding: 80px 0;
}.course_features .tech_training {
    margin: 30px auto;
    padding: 60px 40px;
    width: 90%;
}.course_features .nav_mentor {
    top: -30px;
    height: 60px;
    width: 60px;
}.course_features .nav_mentor svg {
    height: 35px;
    width: 35px;
}.course_features h3 {
    font-size: calc(29px - 4px);
    padding-bottom: 15px;
    margin-bottom: 25px;
}.course_features p {
    font-size: calc(16px - 1px);
    line-height: 1.7;
}
}

@media (max-width: 767px) {.course_features {
    padding: 60px 0;
}.course_features .tech_training {
    padding: 50px 30px;
    transform: none;
    margin: 25px auto;
    width: 95%;
}.course_features .nav_mentor {
    top: -25px;
    height: 50px;
    width: 50px;
}.course_features .nav_mentor svg {
    width: 30px;
    height: 30px;
}.course_features .nav_mentor::before {
    display: none;
}.course_features h3 {
    padding-bottom: 12px;
    font-size: calc(29px - 6px);
    margin-bottom: 20px;
}.course_features p {
    font-size: calc(16px - 2px);
    line-height: 1.6;
    max-width: 100%;
}.course_features p::before, 
    .course_features p::after {
    height: 15px;
    width: 15px;
}.course_features .tech_training:hover p::before,
    .course_features .tech_training:hover p::after {
    height: 25px;
    width: 25px;
}.course_features h3::before {
    width: 40px;
}.course_features h3::after {
    width: 80px;
}.course_features .tech_training:hover h3::before {
    width: 70px;
}.course_features .tech_training:hover h3::after {
    width: 110px;
}.course_features .picture_gallery {
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 100%, 
            60% 100%, 
            50% 95%, 
            40% 95%, 
            30% 100%, 
            0% 100%
        );
}.course_features .how_grow:hover .picture_gallery {
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 100%, 
            65% 100%, 
            55% 92%, 
            35% 92%, 
            25% 100%, 
            0% 100%
        );
}.course_features .tech_training::after {
    display: none;
}}.our_team {
    padding: 120px 0 80px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}.our_team::before {
    z-index: 1;
    bottom: 0;
    left: 0;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgba(25, 28, 41, 0.92), rgba(16, 19, 34, 0.95));
    top: 0;
    right: 0;
}.our_team::after {
    top: -50%;
    right: -50%;
    position: absolute;
    animation: pulseGlow 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at center, rgb(209,212,204,0.5), transparent 70%);
    z-index: 2;
    content: "";
    opacity: 0.12;
    width: 100%;
    height: 100%;
}.our_team .container {
    z-index: 5;
    padding: 0 20px;
    display: flex;
    max-width: 1200px;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}.our_team h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 60px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    color: #ffffff;
    position: relative;
    z-index: 5;
}.our_team h4::before {
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 60px;
    background: rgb(209,212,204);
    bottom: -15px;
    height: 3px;
    position: absolute;
}.our_team h4::after {
    animation: slideRight 3s infinite alternate ease-in-out;
    height: 3px;
    bottom: -15px;
    background: rgb(172,179,169);
    width: 10px;
    left: 50%;
    transform: translateX(-50%) translateX(45px);
    position: absolute;
    content: "";
}.our_team .text_panel {
    transition: transform 0.5s ease;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transform: perspective(1000px) rotateX(2deg);
    width: 100%;
    padding: 40px;
    backdrop-filter: blur(10px);
}.our_team .text_panel:hover {
    transform: perspective(1000px) rotateX(0deg);
}.our_team .text_panel::before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, transparent 40%, rgb(209,212,204,0.5) 45%, rgb(209,212,204,0.5) 50%, transparent 55%);
    top: -5px;
    bottom: -5px;
    right: -5px;
    z-index: -1;
    animation: borderShine 8s infinite linear;
    left: -5px;
    opacity: 0.4;
}.our_team h6 {
    color: rgb(209,212,204);
    font-size: calc(20px * 1.2);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    margin: 0 0 25px;
}.our_team h6::after {
    bottom: -8px;
    height: 2px;
    content: "";
    left: 0;
    position: absolute;
    background: rgb(172,179,169);
    width: 30%;
}.our_team span {
    line-height: 1.8;
    display: block;
    column-count: 1;
    font-size: 13px;
    text-align: justify;
    position: relative;
    column-gap: 30px;
    color: rgba(255, 255, 255, 0.9);
}.our_team .text_panel div {
    position: relative;
}.our_team .text_panel div::before {
    opacity: 0.6;
    width: 20px;
    height: 20px;
    top: 0;
    border-top: 2px solid rgb(209,212,204,0.5);
    position: absolute;
    border-left: 2px solid rgb(209,212,204,0.5);
    content: "";
    left: -40px;
}.our_team .text_panel div::after {
    content: "";
    height: 20px;
    width: 20px;
    right: -40px;
    border-bottom: 2px solid rgb(209,212,204,0.5);
    border-right: 2px solid rgb(209,212,204,0.5);
    position: absolute;
    bottom: 0;
    opacity: 0.6;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.08;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.08;
        transform: scale(1);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%) translateX(45px);
    }
    100% {
        transform: translateX(-50%) translateX(60px);
    }
}

@keyframes borderShine {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
}

@media (min-width: 768px) {.our_team {
    padding: 160px 0 120px;
}.our_team span {
    column-count: 2;
}.our_team .text_panel {
    padding: 50px 60px;
}.our_team h4 {
    font-size: calc(22px * 1.2);
    margin-bottom: 80px;
}.our_team h6 {
    margin-bottom: 35px;
    font-size: calc(20px * 1.4);
}.our_team .text_panel::after {
    background: linear-gradient(135deg, rgb(209,212,204,0.5), transparent);
    right: 20px;
    width: 60px;
    opacity: 0.2;
    top: 20px;
    filter: blur(10px);
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 60px;
}
}

@media (min-width: 992px) {.our_team {
    padding: 180px 0 140px;
}.our_team .text_panel {
    transform: perspective(1200px) rotateX(2deg) translateY(-10px);
    padding: 60px 70px;
}.our_team .text_panel:hover {
    transform: perspective(1200px) rotateX(0deg) translateY(0);
}.our_team::before {
    background: linear-gradient(135deg, rgba(25, 28, 41, 0.88), rgba(16, 19, 34, 0.92));
}.our_team h4::before {
    width: 80px;
}.our_team h4::after {
    transform: translateX(-50%) translateX(65px);
}
    
    @keyframes slideRight {
        0% {
            transform: translateX(-50%) translateX(65px);
        }
        100% {
            transform: translateX(-50%) translateX(90px);
        }
    }
}

@media (max-width: 767px) {.our_team {
    padding: 80px 0 60px;
}.our_team .text_panel {
    padding: 30px;
    transform: perspective(800px) rotateX(1deg);
}.our_team h4 {
    font-size: calc(22px * 0.9);
    margin-bottom: 40px;
}.our_team h6 {
    font-size: 20px;
    margin-bottom: 20px;
}.our_team span {
    line-height: 1.6;
    font-size: calc(13px * 0.95);
}
}

@media (max-width: 480px) {.our_team {
    padding: 60px 0 40px;
}.our_team .text_panel {
    transform: none;
    padding: 25px 20px;
}.our_team h4 {
    margin-bottom: 30px;
}.our_team h6::after {
    width: 25%;
}.our_team span {
    font-size: calc(13px * 0.9);
    line-height: 1.5;
}.our_team .text_panel div::before,
    .our_team .text_panel div::after {
    display: none;
}}.get_in_touch {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.get_in_touch::before {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    z-index: 1;
    content: '';
    left: 0;
    background: rgb(172,179,169,0.5);
}.get_in_touch .container {
    position: relative;
    padding: 0 15px;
    max-width: 1400px;
    z-index: 2;
    margin: 0 auto;
}.get_in_touch .inquiry_grid {
    grid-template-columns: 1fr;
    gap: 0;
    grid-template-rows: auto auto;
    display: grid;
}.get_in_touch .reach_inquiry {
    display: flex;
    border-radius: 0 0 16px 16px;
    background: #ffffff;
    grid-row: 2;
    padding: 60px 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}.get_in_touch .reach_inquiry h3 {
    position: relative;
    font-weight: 700;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
    font-size: 36px;
    color: #000000;
}.get_in_touch .reach_inquiry h3::after {
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    content: '';
    bottom: -15px;
    left: 50%;
    background: rgb(209,212,204);
    position: absolute;
}.get_in_touch .reach_inquiry div {
    margin-bottom: 30px;
    border-radius: 10px;
    background: rgb(239,239,237);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    align-items: center;
    flex: 0 0 calc(50% - 20px);
}.get_in_touch .reach_inquiry div:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}.get_in_touch .reach_inquiry svg {
    margin-right: 15px;
    width: 24px;
    height: 24px;
}.get_in_touch .reach_inquiry svg path {
    fill: rgb(209,212,204);
}.get_in_touch .reach_inquiry span {
    font-size: 14px;
    color: #000000;
}.get_in_touch .reach_inquiry a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: rgb(209,212,204);
}.get_in_touch .reach_inquiry a:hover {
    color: rgb(172,179,169);
}.get_in_touch .connect_reach {
    position: relative;
    padding: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    grid-row: 1;
    background: rgb(209,212,204);
}.get_in_touch .connect_reach::before {
    top: -50px;
    opacity: 0.2;
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgb(172,179,169);
    height: 150px;
    width: 150px;
    right: -50px;
}.get_in_touch .connect_reach::after {
    height: 200px;
    opacity: 0.1;
    background: rgb(172,179,169);
    width: 200px;
    content: '';
    left: -80px;
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
}.get_in_touch form {
    padding: 60px 50px;
    z-index: 1;
    position: relative;
}.get_in_touch form h3 {
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
    position: relative;
    font-weight: 700;
    font-size: 36px;
}.get_in_touch form h3::after {
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    content: '';
    bottom: -15px;
    background: #ffffff;
    position: absolute;
    width: 80px;
}.get_in_touch form input[type="text"],
.get_in_touch form input[type="email"] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 18px 20px;
    margin-bottom: 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}.get_in_touch form input[type="text"]:focus,
.get_in_touch form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}.get_in_touch form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}.get_in_touch .help_support {
    display: flex;
    align-items: flex-start;
    margin: 25px 0 30px;
}.get_in_touch .help_support input[type="checkbox"] {
    position: relative;
    height: 22px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    width: 22px;
    cursor: pointer;
    margin-right: 15px;
    flex-shrink: 0;
    appearance: none;
}.get_in_touch .help_support input[type="checkbox"]:checked {
    border-color: #ffffff;
    background-color: #ffffff;
}.get_in_touch .help_support input[type="checkbox"]:checked::before {
    transform: rotate(45deg);
    height: 10px;
    position: absolute;
    border: solid rgb(209,212,204);
    border-width: 0 2px 2px 0;
    top: 4px;
    width: 6px;
    content: '';
    left: 7px;
}.get_in_touch .help_support label {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}.get_in_touch .help_support a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-weight: 600;
}.get_in_touch .help_support a:hover {
    opacity: 0.8;
    border-bottom-color: #ffffff;
}.get_in_touch .connect_list {
    border: none;
    color: rgb(209,212,204);
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 18px 20px;
    background: #ffffff;
    transition: all 0.3s ease;
}.get_in_touch .connect_list:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgb(239,239,237);
}

@media (min-width: 992px) {.get_in_touch form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}.get_in_touch form h3 {
    grid-column: span 2;
}.get_in_touch .help_support {
    grid-column: span 2;
}.get_in_touch .connect_list {
    grid-column: span 2;
}
}

@media (max-width: 992px) {.get_in_touch {
    padding: 90px 0;
}.get_in_touch .connect_reach,
    .get_in_touch .reach_inquiry {
    padding: 50px 40px;
}
}

@media (max-width: 768px) {.get_in_touch {
    padding: 70px 0;
}.get_in_touch .reach_inquiry div {
    flex: 0 0 100%;
}.get_in_touch .connect_reach,
    .get_in_touch .reach_inquiry {
    padding: 40px 30px;
}.get_in_touch .reach_inquiry h3,
    .get_in_touch form h3 {
    font-size: calc(36px * 0.9);
    margin-bottom: 35px;
}
}

@media (max-width: 576px) {.get_in_touch {
    padding: 50px 0;
}.get_in_touch .connect_reach,
    .get_in_touch .reach_inquiry {
    padding: 30px 25px;
}.get_in_touch .reach_inquiry h3,
    .get_in_touch form h3 {
    margin-bottom: 30px;
    font-size: calc(36px * 0.85);
}.get_in_touch form input[type="text"],
    .get_in_touch form input[type="email"] {
    padding: 15px;
}}footer {
    position: relative;
}footer::before {
    content: '';
    opacity: 0.92;
    z-index: 1;
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, #000000 0%, rgb(209,212,204) 150%);
    left: 0;
}.debate_club {
    color: #ffffff;
    z-index: 2;
    position: relative;
    padding: 70px 0;
    font-family: Arial, sans-serif;
}.debate_club .container {
    gap: 40px;
    flex-wrap: wrap;
    display: flex;
}.debate_club .company_holder {
    border-radius: 12px 0 12px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 30px;
}.debate_club .company_holder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}.debate_club .company_holder::before {
    width: 100%;
    height: 5px;
    left: 0;
    content: '';
    position: absolute;
    background: rgb(209,212,204);
    top: 0;
}.debate_club .company_holder h3 {
    display: inline-block;
    font-weight: 700;
    color: #ffffff;
    font-size: 36px;
    position: relative;
    margin-bottom: 25px;
}.debate_club .company_holder h3::after {
    width: 60px;
    background: rgb(172,179,169);
    bottom: -8px;
    height: 3px;
    content: '';
    position: absolute;
    left: 0;
}.debate_club .online_tools {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}.debate_club .milestone_cta {
    position: relative;
}.debate_club .header_start {
    flex-wrap: wrap;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}.debate_club .header_sitebar {
    flex: 0 0 calc(50% - 15px);
    position: relative;
}.debate_club .header_sitebar h5 {
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 15px;
    font-size: 23px;
    font-weight: 600;
    border-left: 3px solid rgb(209,212,204);
}.debate_club .header_sitebar .header_start {
    flex-direction: column;
    gap: 12px;
    display: flex;
}.debate_club .header_sitebar .header_start a {
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
    border-radius: 4px;
    display: inline-block;
    color: #ffffff;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}.debate_club .header_sitebar .header_start a::before {
    width: 0;
    top: 0;
    content: '';
    background: rgb(209,212,204,0.5);
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    z-index: -1;
    height: 100%;
}.debate_club .header_sitebar .header_start a:hover {
    transform: translateX(5px);
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}.debate_club .header_sitebar .header_start a:hover::before {
    width: 100%;
}.zoom_meet {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    margin-top: 50px;
    z-index: 2;
    padding: 20px 0;
}.zoom_meet .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.zoom_meet .sustain_cta {
    letter-spacing: 0.5px;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
}@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

footer::after {
    z-index: 1;
    bottom: 0;
    background-size: 40px 40px;
    right: 0;
    position: absolute;
    left: 0;
    content: '';
    background: 
        linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
    top: 0;
}

@media (max-width: 992px) {.debate_club .container {
    flex-direction: column;
}
}

@media (max-width: 768px) {.debate_club {
    padding: 50px 0;
}.debate_club .header_sitebar {
    flex: 0 0 100%;
}
}

@media (max-width: 576px) {.debate_club {
    padding: 40px 0;
}.debate_club .company_holder h3 {
    font-size: calc(36px * 0.8);
}.debate_club .header_sitebar h5 {
    font-size: calc(23px * 0.9);
}.debate_club .header_sitebar .header_start a,
    .debate_club .footer_agreement {
    font-size: calc(16px * 0.95);
}}

.zoom_meet::before {
    content: '';
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0.2;
    height: 1px;
    left: 0;
}.explore_now {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(170deg, rgb(239,239,237) 0%, rgb(209,212,204,0.5) 100%);
    overflow: hidden;
}.explore_now::before {
    width: 100%;
    left: 0;
    content: '';
    background: 
        linear-gradient(90deg, transparent 98%, rgb(209,212,204,0.5) 98%),
        linear-gradient(0deg, transparent 98%, rgb(209,212,204,0.5) 98%);
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    background-size: 30px 30px;
    opacity: 0.4;
}.explore_now .how_grow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}.explore_now .container p {
    margin: 0;
    color: #000000;
    font-weight: 700;
    padding: 0 30px;
    z-index: 5;
    position: relative;
    flex: 0 0 65%;
    border-left: 4px solid rgb(209,212,204);
    line-height: 1.4;
    font-size: 33px;
}.explore_now .connect_list {
    flex: 0 0 30%;
    color: #000000;
    justify-content: center;
    transition: all 0.4s ease;
    text-decoration: none;
    height: 80px;
    align-items: center;
    display: flex;
    z-index: 5;
    background: transparent;
    position: relative;
    font-size: 16px;
    font-weight: 700;
}.explore_now .connect_list::before,
.explore_now .connect_list::after {
    content: '';
    height: 100%;
    position: absolute;
    transition: all 0.4s ease;
    width: 100%;
    border: 2px solid rgb(209,212,204);
}.explore_now .connect_list::before {
    left: -8px;
    top: -8px;
    border-bottom: none;
    border-right: none;
}.explore_now .connect_list::after {
    border-left: none;
    right: -8px;
    bottom: -8px;
    border-top: none;
}.explore_now .connect_list:hover {
    color: rgb(209,212,204);
}.explore_now .connect_list:hover::before {
    left: 0;
    top: 0;
}.explore_now .connect_list:hover::after {
    right: 0;
    bottom: 0;
}.explore_now::after {
    background:
        linear-gradient(135deg, transparent 50%, rgb(209,212,204,0.5) 50%);
    top: 0;
    width: 100%;
    content: '';
    z-index: 1;
    opacity: 0.1;
    position: absolute;
    height: 100%;
    right: 0;
}.explore_now .how_grow::before {
    z-index: -1;
    filter: blur(30px);
    content: '';
    position: absolute;
    width: 150px;
    border-radius: 50%;
    left: -75px;
    opacity: 0.2;
    height: 150px;
    top: -75px;
    background: rgb(209,212,204,0.5);
}.explore_now .how_grow::after {
    bottom: -100px;
    height: 200px;
    width: 200px;
    right: -100px;
    opacity: 0.2;
    filter: blur(40px);
    position: absolute;
    border-radius: 50%;
    background: rgb(172,179,169,0.5);
    z-index: -1;
    content: '';
}

@media (max-width: 991px) {.explore_now {
    padding: 90px 0;
}.explore_now .container p {
    padding: 0 25px;
    font-size: calc(24px * 1.2);
}.explore_now .connect_list {
    height: 70px;
}
}

@media (max-width: 767px) {.explore_now {
    padding: 70px 0;
}.explore_now .how_grow {
    flex-direction: column;
    gap: 40px;
}.explore_now .container p {
    width: 100%;
    padding: 0 20px;
    flex: none;
    font-size: 24px;
    text-align: left;
    margin-bottom: 10px;
}.explore_now .connect_list {
    flex: none;
    width: 80%;
    height: 60px;
}
}

@media (max-width: 480px) {.explore_now {
    padding: 50px 0;
}.explore_now .container p {
    font-size: calc(16px * 1.2);
    padding: 0 15px;
}.explore_now .connect_list {
    height: 50px;
    font-size: calc(16px * 0.9);
    width: 100%;
}.explore_now .connect_list::before {
    left: -5px;
    top: -5px;
}.explore_now .connect_list::after {
    right: -5px;
    bottom: -5px;
}}header {
    background: rgb(239,239,237);
    z-index: 99;
    overflow: visible;
    position: relative;
    width: 100%;
}header::before {
    content: "";
    opacity: 0.2;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgb(209,212,204,0.5) 0%, transparent 70%);
}header .nav_page {
    padding: 25px 30px;
    justify-content: space-between;
    position: relative;
    align-items: center;
    display: flex;
}header .nav_page::before {
    width: 30%;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, rgb(209,212,204), transparent);
    position: absolute;
    left: 10%;
    top: -10px;
    filter: blur(5px);
}header .nav_page::after {
    right: 10%;
    position: absolute;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgb(172,179,169));
    height: 5px;
    filter: blur(5px);
    content: "";
    bottom: -10px;
}header .nav_page .nav_mentor {
    padding: 5px;
    z-index: 2;
    position: relative;
}header .nav_page .nav_mentor::before {
    filter: blur(15px);
    left: -5px;
    width: calc(100% + 10px);
    z-index: -1;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgb(209,212,204), rgb(172,179,169));
    content: "";
    position: absolute;
    height: calc(100% + 10px);
    top: -5px;
    opacity: 0;
}header .nav_page .nav_mentor:hover::before {
    opacity: 0.7;
}header .nav_page .nav_mentor .head_tutor {
    transition: transform 0.3s ease;
    position: relative;
    display: block;
}header .nav_page .nav_mentor:hover .head_tutor {
    transform: scale(1.05);
}header .nav_page .nav_mentor .head_tutor svg {
    width: auto;
    height: 45px;
}header .nav_page .header_sitebar {
    padding: 10px;
    border-radius: 15px;
    position: relative;
    margin: 0;
    display: flex;
    list-style: none;
}header .nav_page .header_sitebar::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 15px;
    content: "";
    backdrop-filter: blur(5px);
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    opacity: 0.1;
    width: 100%;
}header .nav_page .header_sitebar .top_edu {
    position: relative;
    margin: 0 3px;
}header .nav_page .header_sitebar .top_edu a {
    border-radius: 10px;
    text-decoration: none;
    z-index: 1;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 17px;
    font-weight: 600;
    display: block;
    overflow: hidden;
    padding: 8px 15px;
    color: #000000;
}header .nav_page .header_sitebar .top_edu a::before {
    top: 0;
    content: "";
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    opacity: 0;
    left: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgb(209,212,204), rgb(172,179,169));
}header .nav_page .header_sitebar .top_edu a::after {
    content: "";
    width: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    height: 150%;
    opacity: 0;
    z-index: -1;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
}header .nav_page .header_sitebar .top_edu:hover a::before {
    opacity: 1;
}header .nav_page .header_sitebar .top_edu:hover a {
    color: #ffffff;
}header .nav_page .header_sitebar .top_edu:active a::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
}header .nav_page .header_sitebar .top_edu:nth-child(odd) a::before {
    background: linear-gradient(to right, rgb(209,212,204), rgb(172,179,169));
}header .nav_page .header_sitebar .top_edu:nth-child(even) a::before {
    background: linear-gradient(to left, rgb(209,212,204), rgb(172,179,169));
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(rgb(209,212,204), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(rgb(209,212,204), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(rgb(209,212,204), 0);
    }
}

@media (max-width: 992px) {header .nav_page {
    padding: 20px 15px;
    flex-direction: column;
}header .nav_page .nav_mentor {
    margin-bottom: 15px;
}header .nav_page .header_sitebar {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}header .nav_page .header_sitebar .top_edu {
    margin: 3px;
}header .nav_page .header_sitebar .top_edu a {
    padding: 6px 12px;
    font-size: calc(17px - 1px);
}
}

@media (max-width: 767px) {header .nav_page {
    padding: 15px 10px;
}header .nav_page .nav_mentor .head_tutor svg {
    height: 40px;
}header .nav_page .header_sitebar {
    padding: 5px;
}header .nav_page .header_sitebar .top_edu a {
    padding: 5px 10px;
    font-size: calc(17px - 2px);
}}.title_board {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: rgb(239,239,237);
}.title_board .how_grow {
    height: 80vh;
    z-index: 2;
    position: relative;
    width: 100%;
}.title_board .start_welcome {
    position: absolute;
    overflow: hidden;
    top: 0;
    height: 80vh;
    width: 100%;
    left: 0;
}.title_board .start_welcome input {
    display: none;
}.title_board .intro_title {
    display: flex;
    width: 500%;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    height: 100%;
}.title_board .course_head {
    width: 20%;
    overflow: hidden;
    height: 100%;
    position: relative;
}.title_board .course_head::before {
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgb(209,212,204) 100%
    );
    top: 0;
    z-index: 2;
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}.title_board .course_head img {
    height: 100%;
    transition: transform 1.5s ease, filter 0.6s ease;
    filter: brightness(0.85);
    transform: scale(1.05);
    width: 100%;
    object-fit: cover;
}.title_board .quick_edu {
    display: flex;
    gap: 3px;
    position: absolute;
    bottom: 40px;
    z-index: 10;
    right: 40px;
}.title_board .quick_edu::before {
    content: "";
    z-index: -1;
    inset: -10px;
    position: absolute;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 26px;
}.title_board .quick_edu label {
    background: #ffffff;
    transform: scale(1);
    height: 2px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    width: 30px;
    position: relative;
}.title_board .quick_edu label:hover {
    opacity: 0.8;
}.title_board .text_panel {
    left: 40px;
    bottom: 40px;
    position: absolute;
    width: 90%;
    z-index: 5;
    max-width: 900px;
}.title_board .text_panel .container {
    max-width: 650px;
    padding: 0;
    position: relative;
    background: transparent;
}.title_board .text_panel h1 {
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    margin-bottom: 1.2rem;
    color: #ffffff;
    padding-bottom: 15px;
    position: relative;
    font-size: 48px;
}.title_board .text_panel h1::after {
    bottom: 0;
    left: 0;
    content: "";
    width: 80px;
    background: rgb(172,179,169);
    position: absolute;
    height: 3px;
}.title_board .text_panel h3 {
    font-size: 23px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 600;
}.title_board .text_panel p {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 15px;
    line-height: 1.7;
    max-width: 100%;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    font-weight: 400;
    position: relative;
}.title_board .text_panel p::before {
    content: "";
    top: 0;
    height: 100%;
    left: 0;
    background: rgb(172,179,169,0.5);
    width: 3px;
    position: absolute;
}.title_board input:nth-of-type(1):checked ~ .intro_title {
    transform: translateX(0);
}.title_board input:nth-of-type(2):checked ~ .intro_title {
    transform: translateX(-20%);
}.title_board input:nth-of-type(3):checked ~ .intro_title {
    transform: translateX(-40%);
}.title_board input:nth-of-type(4):checked ~ .intro_title {
    transform: translateX(-60%);
}.title_board input:nth-of-type(5):checked ~ .intro_title {
    transform: translateX(-80%);
}.title_board input:nth-of-type(6):checked ~ .intro_title {
    transform: translateX(-100%);
}.title_board input:nth-of-type(7):checked ~ .intro_title {
    transform: translateX(-120%);
}.title_board input:nth-of-type(8):checked ~ .intro_title {
    transform: translateX(-140%);
}.title_board input:nth-of-type(9):checked ~ .intro_title {
    transform: translateX(-160%);
}.title_board input:nth-of-type(10):checked ~ .intro_title {
    transform: translateX(-180%);
}.title_board input:nth-of-type(1):checked ~ .quick_edu label:nth-child(1),
.title_board input:nth-of-type(2):checked ~ .quick_edu label:nth-child(2),
.title_board input:nth-of-type(3):checked ~ .quick_edu label:nth-child(3),
.title_board input:nth-of-type(4):checked ~ .quick_edu label:nth-child(4),
.title_board input:nth-of-type(5):checked ~ .quick_edu label:nth-child(5),
.title_board input:nth-of-type(6):checked ~ .quick_edu label:nth-child(6),
.title_board input:nth-of-type(7):checked ~ .quick_edu label:nth-child(7),
.title_board input:nth-of-type(8):checked ~ .quick_edu label:nth-child(8),
.title_board input:nth-of-type(9):checked ~ .quick_edu label:nth-child(9),
.title_board input:nth-of-type(10):checked ~ .quick_edu label:nth-child(10) {
    opacity: 1;
    transform: scaleY(2);
    background: rgb(172,179,169);
}.title_board input:nth-of-type(1):checked ~ .intro_title .course_head:nth-child(1) img,
.title_board input:nth-of-type(2):checked ~ .intro_title .course_head:nth-child(2) img,
.title_board input:nth-of-type(3):checked ~ .intro_title .course_head:nth-child(3) img,
.title_board input:nth-of-type(4):checked ~ .intro_title .course_head:nth-child(4) img,
.title_board input:nth-of-type(5):checked ~ .intro_title .course_head:nth-child(5) img,
.title_board input:nth-of-type(6):checked ~ .intro_title .course_head:nth-child(6) img,
.title_board input:nth-of-type(7):checked ~ .intro_title .course_head:nth-child(7) img,
.title_board input:nth-of-type(8):checked ~ .intro_title .course_head:nth-child(8) img,
.title_board input:nth-of-type(9):checked ~ .intro_title .course_head:nth-child(9) img,
.title_board input:nth-of-type(10):checked ~ .intro_title .course_head:nth-child(10) img {
    transform: scale(1);
    filter: brightness(0.95);
}

@media (max-width: 1199px) {.title_board .text_panel {
    width: 90%;
    left: 30px;
    bottom: 30px;
}.title_board .text_panel .container {
    max-width: 600px;
}.title_board .quick_edu {
    bottom: 30px;
    right: 30px;
}
}

@media (max-width: 991px) {.title_board .how_grow {
    height: 70vh;
}.title_board .start_welcome {
    height: 70vh;
}.title_board .text_panel {
    bottom: 25px;
    left: 25px;
}.title_board .text_panel .container {
    max-width: 550px;
}.title_board .text_panel h1 {
    padding-bottom: 12px;
    font-size: calc(48px * 0.9);
}.title_board .text_panel h1::after {
    width: 70px;
}.title_board .text_panel h3 {
    font-size: calc(23px * 0.9);
}.title_board .quick_edu {
    right: 25px;
    bottom: 25px;
}
}

@media (max-width: 767px) {.title_board .how_grow {
    height: 60vh;
}.title_board .start_welcome {
    height: 60vh;
}.title_board .text_panel {
    width: 92%;
    bottom: 20px;
    left: 20px;
}.title_board .text_panel .container {
    max-width: 500px;
}.title_board .text_panel h1 {
    margin-bottom: 1rem;
    font-size: calc(48px * 0.85);
    padding-bottom: 10px;
}.title_board .text_panel h1::after {
    width: 60px;
    height: 2px;
}.title_board .text_panel h3 {
    font-size: calc(23px * 0.85);
    margin-bottom: 1.2rem;
}.title_board .text_panel p {
    font-size: calc(15px * 0.95);
    padding-left: 12px;
    line-height: 1.6;
}.title_board .text_panel p::before {
    width: 2px;
}.title_board .quick_edu {
    right: 20px;
    bottom: 20px;
}.title_board .quick_edu label {
    width: 25px;
}
}

@media (max-width: 575px) {.title_board .how_grow {
    height: 80vh;
}.title_board .start_welcome {
    height: 80vh;
}.title_board .text_panel {
    left: 15px;
    width: 85%;
    bottom: 60px;
}.title_board .text_panel .container {
    max-width: 100%;
}.title_board .text_panel h1 {
    font-size: calc(48px * 0.8);
    margin-bottom: 0.8rem;
}.title_board .text_panel h1::after {
    width: 50px;
}.title_board .text_panel h3 {
    margin-bottom: 1rem;
    font-size: calc(16px * 1.1);
}.title_board .text_panel p {
    line-height: 1.5;
    font-size: calc(15px * 0.9);
    padding-left: 10px;
}.title_board .quick_edu {
    bottom: 15px;
    right: auto;
    left: 15px;
}.title_board .quick_edu label {
    height: 2px;
    width: 20px;
}
}

@media (max-width: 480px) {.title_board .how_grow {
    height: 70vh;
}.title_board .start_welcome {
    height: 70vh;
}
}

@media (max-height: 700px) and (min-width: 768px) {.title_board .how_grow {
    height: 85vh;
}.title_board .start_welcome {
    height: 85vh;
}
}

@media (max-height: 600px) {.title_board .how_grow {
    height: 90vh;
}.title_board .start_welcome {
    height: 90vh;
}
}

@media (orientation: landscape) and (max-height: 500px) {.title_board .how_grow {
    height: 95vh;
}.title_board .start_welcome {
    height: 95vh;
}}.cookieNoticePromptPanel {
    background: rgb(172,179,169);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    animation: slideUp 0.5s forwards;
    bottom: 0;
    border-top: 3px solid rgb(172,179,169);
    width: 100%;
    font-family: Arial, sans-serif;
    transform: translateY(100%);
    padding: 20px 0;
    z-index: 90;
    transition: transform 0.5s ease-in-out;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
.cookie_review {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    display: flex;
    padding: 20px 5%;
}.cookieNoticePromptPanel h5 {
    font-size: 23px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}.cookieNoticePromptPanel p {
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
}.edu_accept {
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 10px rgb(209,212,204));
    flex-shrink: 0;
    justify-content: center;
    margin-right: 15px;
}.edu_accept svg {
    height: 80px;
    width: 80px;
    fill: rgb(209,212,204);
    transition: transform 0.3s ease-in-out;
}.edu_accept:hover svg {
    transform: scale(1.1);
}.user_alert {
    background: linear-gradient(90deg, rgb(209,212,204), rgb(172,179,169));
    text-decoration: none;
    flex-shrink: 0;
    color: #000000;
    line-height: 40px;
    box-shadow: 0 0 15px rgb(209,212,204);
    min-width: 140px;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 28px;
    margin-left: 10px;
    white-space: nowrap;
}.user_alert:hover {
    box-shadow: 0 0 20px rgb(172,179,169);
}.cookie_button.privacy_gate:hover {
    box-shadow: 0 0 15px rgb(172,179,169);
}.cookieNoticePromptPanel p a {
    text-decoration: none;
    color: rgb(209,212,204);
    transition: color 0.3s ease;
}.cookieNoticePromptPanel p a:hover {
    color: rgb(172,179,169);
}#cookie_window_box {
    display: none;
}#cookie_window_box:checked ~ .cookieNoticePromptPanel {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.cookieNoticePromptPanel {
    padding: 15px 0;
}.cookie_review {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.edu_accept {
    display: none;
}.cookie_review {
    align-items: center;
    text-align: center;
    flex-direction: column;
}.cookieNoticePromptPanel h5 {
    font-size: 22px;
    margin-bottom: 5px;
}.policy_opt {
    margin-bottom: 15px;
}.user_alert {
    min-width: 100%;
    margin: 10px 0;
}}
.pricing_level {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.pricing_level::before {
    top: 0;
    position: absolute;
    right: 0;
    content: "";
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    bottom: 0;
}.pricing_level .container {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.pricing_level .premium_plan {
    position: relative;
}.pricing_level h2 {
    animation: fadeUp 0.7s ease-out 0.2s forwards;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    font-size: 33px;
    color: #ffffff;
    font-weight: 700;
}.pricing_level h2::after {
    position: absolute;
    background: rgb(172,179,169);
    height: 3px;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgb(172,179,169,0.5);
    width: 80px;
    bottom: -15px;
    left: 50%;
    content: "";
}.pricing_level .price_grid {
    opacity: 0;
    max-width: 800px;
    letter-spacing: 0.3px;
    margin: 0 auto 50px;
    line-height: 1.6;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease-out 0.4s forwards;
    font-size: calc(17px * 1.1);
    color: #ffffff;
    text-align: center;
}.pricing_level .pro_rates {
    display: grid;
    gap: 30px;
    list-style: none;
    margin: 0;
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    perspective: 1000px;
}.pricing_level .pro_rates li {
    animation-delay: calc(0.5s + var(--li-index, 0) * 0.15s);
    animation: fadeUp 0.8s ease-out forwards;
    transform: translateY(40px);
    opacity: 0;
}.pricing_level .pro_rates li:nth-child(1) {
    --li-index: 1;
}.pricing_level .pro_rates li:nth-child(2) {
    --li-index: 2;
}.pricing_level .pro_rates li:nth-child(3) {
    --li-index: 3;
}.pricing_level .pro_rates li:nth-child(4) {
    --li-index: 4;
}.pricing_level .learning_fees {
    display: block;
    position: relative;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform-style: preserve-3d;
    height: 100%;
}.pricing_level .learning_fees:hover {
    transform: translateY(-10px) scale(1.02);
}.pricing_level .pricing_fees {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 
                0 5px 15px rgba(0,0,0,0.1);
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 100%);
    border-left: 1px solid rgba(255,255,255,0.2);
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    border-radius: 12px;
}.pricing_level .learning_fees:hover .pricing_fees {
    box-shadow: 0 25px 45px rgba(0,0,0,0.25), 
                0 10px 20px rgba(0,0,0,0.15);
    border-color: rgb(172,179,169,0.5);
}.pricing_level .pricing_fees::before {
    left: -50%;
    background: radial-gradient(
        circle at center,
        rgba(rgb(172,179,169), 0.05) 0%,
        transparent 70%
    );
    top: -50%;
    opacity: 0;
    position: absolute;
    height: 200%;
    width: 200%;
    transform: scale(0.8);
    content: "";
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 0;
}.pricing_level .learning_fees:hover .pricing_fees::before {
    opacity: 1;
    transform: scale(1);
}.pricing_level .offer_box {
    position: relative;
    z-index: 2;
}.pricing_level .offer_box h4 {
    position: relative;
    margin-bottom: 15px;
    font-size: calc(23px * 1.15);
    color: #ffffff;
    padding-bottom: 15px;
    font-weight: 600;
    transition: transform 0.4s ease;
}.pricing_level .learning_fees:hover .offer_box h4 {
    color: rgb(172,179,169);
    transform: translateY(-5px);
}.pricing_level .offer_box h4::after {
    background: rgb(172,179,169);
    height: 2px;
    transition: width 0.4s ease;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
}.pricing_level .learning_fees:hover .offer_box h4::after {
    width: 80px;
}.pricing_level .offer_box p {
    padding-right: 10px;
    margin-bottom: 25px;
    line-height: 1.6;
    scrollbar-color: rgb(172,179,169) rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    scrollbar-width: thin;
    overflow-y: auto;
    font-size: 17px;
    max-height: 150px;
}.pricing_level .offer_box p::-webkit-scrollbar {
    width: 4px;
}.pricing_level .offer_box p::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
}.pricing_level .offer_box p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(172,179,169);
}.pricing_level .training_fees {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, 
        rgb(172,179,169) 0%, 
        rgb(209,212,204) 100%);
    color: #ffffff;
    font-size: calc(23px * 1.5);
    border-radius: 8px;
    transition: all 0.4s ease;
    padding: 8px 20px;
    overflow: hidden;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}.pricing_level .learning_fees:hover .training_fees {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}.pricing_level .training_fees::before {
    height: 100%;
    left: -100%;
    transition: left 0.7s ease;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.2) 50%,
        transparent 100%
    );
    position: absolute;
    top: 0;
    width: 70%;
    content: "";
}.pricing_level .learning_fees:hover .training_fees::before {
    left: 200%;
}

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

@media (min-width: 768px) {.pricing_level .pro_rates {
    grid-template-columns: repeat(2, 1fr);
}.pricing_level h2 {
    font-size: calc(33px * 1.1);
}
}

@media (min-width: 992px) {.pricing_level {
    padding: 150px 0;
}.pricing_level .pro_rates {
    grid-template-columns: repeat(4, 1fr);
}.pricing_level .pricing_fees {
    padding: 40px 25px;
}.pricing_level h2 {
    margin-bottom: 30px;
    font-size: calc(33px * 1.2);
}.pricing_level .price_grid {
    margin-bottom: 70px;
}
}

@media (max-width: 767px) {.pricing_level {
    padding: 80px 0;
}.pricing_level h2 {
    font-size: calc(33px * 0.9);
}.pricing_level .price_grid {
    margin-bottom: 40px;
    font-size: 17px;
}.pricing_level .pricing_fees {
    padding: 30px 20px;
}.pricing_level .offer_box p {
    max-height: 120px;
}.pricing_level .training_fees {
    padding: 6px 15px;
    font-size: calc(23px * 1.2);
}}.statistical_details {
    position: relative;
    background: linear-gradient(135deg, rgb(209,212,204,0.5) 0%, rgb(172,179,169,0.5) 100%);
    overflow: hidden;
    padding: 8rem 0 4rem;
    perspective: 1000px;
}.statistical_details::before {
    position: absolute;
    top: 0;
    transform: translateZ(-50px);
    height: 100%;
    pointer-events: none;
    content: "";
    width: 100%;
    left: 0;
    opacity: 0.1;
    background: repeating-linear-gradient(
        -45deg,
        rgb(209,212,204,0.5) 0px,
        rgb(209,212,204,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
}.statistical_details::after {
    content: "";
    top: -50%;
    position: absolute;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(172,179,169,0.5) 0%, transparent 70%);
    opacity: 0.15;
    transform: rotate(-15deg);
    right: -20%;
    pointer-events: none;
}.statistical_details .container {
    max-width: 1440px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 2rem;
}.statistical_details ul {
    margin: 0;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    padding: 0;
    transform: translateZ(20px);
    list-style: none;
    display: grid;
}.statistical_details .fast_gain {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    transform: translateZ(0);
    backdrop-filter: blur(10px);
}.statistical_details .fast_gain::before {
    width: 100%;
    content: "";
    background: linear-gradient(
        45deg,
        rgb(209,212,204,0.5) 0%,
        transparent 60%
    );
    z-index: -1;
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    left: 0;
}.statistical_details .fast_gain:hover {
    transform: translateY(-10px) translateZ(30px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}.statistical_details .fast_gain:hover::before {
    opacity: 0.3;
}.statistical_details .fast_gain div {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
    display: flex;
    text-align: center;
}.statistical_details .fast_gain p {
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    background: linear-gradient(120deg, rgb(209,212,204) 0%, rgb(172,179,169) 100%);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-background-clip: text;
    transform: translateZ(10px);
    margin: 0 0 1rem;
    font-size: calc(47px * 1.2);
    background-clip: text;
    transition: all 0.4s ease;
    font-weight: 700;
}.statistical_details .fast_gain:hover p {
    transform: translateZ(20px) scale(1.05);
}.statistical_details .fast_gain span {
    max-width: 80%;
    opacity: 0.9;
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.5px;
    transform: translateZ(5px);
    margin: 0;
    transition: all 0.4s ease;
}.statistical_details .fast_gain:hover span {
    transform: translateZ(15px);
    opacity: 1;
}.statistical_details h4 {
    letter-spacing: 1px;
    margin: 4rem 0 0;
    padding-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
    position: relative;
    transform: translateZ(10px);
    font-size: 20px;
    color: #ffffff;
}.statistical_details h4::after {
    content: "";
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(172,179,169), transparent);
    position: absolute;
    width: 50px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

@media (min-width: 1200px) {.statistical_details ul {
    grid-template-columns: repeat(4, 1fr);
}.statistical_details .fast_gain {
    min-height: 220px;
}.statistical_details .fast_gain p {
    font-size: calc(47px * 1.5);
}
}

@media (min-width: 768px) and (max-width: 1199px) {.statistical_details ul {
    grid-template-columns: repeat(3, 1fr);
}.statistical_details .fast_gain {
    min-height: 200px;
}
}

@media (min-width: 576px) and (max-width: 767px) {.statistical_details ul {
    grid-template-columns: repeat(2, 1fr);
}.statistical_details {
    padding: 6rem 0 3rem;
}.statistical_details .fast_gain {
    min-height: 180px;
}
}

@media (max-width: 575px) {.statistical_details {
    padding: 4rem 0 2rem;
}.statistical_details ul {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.statistical_details .container {
    padding: 0 1.5rem;
}.statistical_details .fast_gain {
    padding: 2rem 1rem;
    min-height: 160px;
}.statistical_details .fast_gain p {
    font-size: calc(29px * 1.2);
}.statistical_details h4 {
    font-size: calc(16px * 1.1);
    margin-top: 3rem;
}}

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

.statistical_details .fast_gain:nth-child(1) {
    animation: statsLoad 0.6s 0.1s ease-out forwards;
}.statistical_details .fast_gain:nth-child(2) {
    animation: statsLoad 0.6s 0.2s ease-out forwards;
}.statistical_details .fast_gain:nth-child(3) {
    animation: statsLoad 0.6s 0.3s ease-out forwards;
}.statistical_details .fast_gain:nth-child(4) {
    animation: statsLoad 0.6s 0.4s ease-out forwards;
}.statistical_details .fast_gain:nth-child(5) {
    animation: statsLoad 0.6s 0.5s ease-out forwards;
}.statistical_details .fast_gain:nth-child(6) {
    animation: statsLoad 0.6s 0.6s ease-out forwards;
}.statistical_details .fast_gain:nth-child(7) {
    animation: statsLoad 0.6s 0.7s ease-out forwards;
}.statistical_details .fast_gain {
    opacity: 0;
}.instructor_profile {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(239,239,237) 0%, rgb(172,179,169,0.5) 100%);
    position: relative;
    padding: 4rem 0;
}.instructor_profile::before {
    left: 0;
    height: 100%;
    position: absolute;
    opacity: 0.3;
    width: 100%;
    content: "";
    top: 0;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgb(172,179,169,0.5) 5%, transparent 5.5%),
        radial-gradient(circle at 90% 20%, rgb(172,179,169,0.5) 2%, transparent 2.5%),
        radial-gradient(circle at 30% 80%, rgb(172,179,169,0.5) 3%, transparent 3.5%),
        radial-gradient(circle at 70% 90%, rgb(172,179,169,0.5) 4%, transparent 4.5%);
}.instructor_profile .container {
    padding: 0 2rem;
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
    position: relative;
}.instructor_profile .client_testimonials {
    display: grid;
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.08),
        0 5px 15px rgba(0,0,0,0.05),
        0 0 0 1px rgba(0,0,0,0.02);
    border-radius: 10px;
    grid-template-columns: 1fr;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    gap: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}.instructor_profile .client_testimonials:hover {
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.12),
        0 10px 20px rgba(0,0,0,0.07),
        0 0 0 1px rgba(0,0,0,0.03);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.instructor_profile .client_testimonials > div:first-child {
    justify-self: center;
    position: relative;
}.instructor_profile .picture_gallery {
    border-radius: 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    width: 150px;
    height: 150px;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.1),
        0 5px 10px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}.instructor_profile .picture_gallery::before {
    opacity: 0.6;
    background: linear-gradient(to bottom, transparent 50%, rgb(209,212,204,0.5) 100%);
    position: absolute;
    content: "";
    transition: opacity 0.4s ease;
    height: 100%;
    left: 0;
    width: 100%;
    top: 0;
}.instructor_profile .client_testimonials:hover .picture_gallery {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.15),
        0 8px 15px rgba(0,0,0,0.08);
}.instructor_profile .client_testimonials:hover .picture_gallery::before {
    opacity: 0.8;
}.instructor_profile .client_testimonials > div:nth-child(2) {
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
    text-align: center;
}.instructor_profile .name {
    font-weight: 700;
    font-size: calc(21px * 1.1);
    font-family: Arial, sans-serif;
    color: #000000;
    position: relative;
    margin: 0 0 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}.instructor_profile .name::after {
    background: rgb(209,212,204);
    content: "";
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    bottom: -4px;
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
}.instructor_profile .client_testimonials:hover .name::after {
    width: 100%;
}.instructor_profile .client_testimonials > div:nth-child(2) > div {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: relative;
    color: rgb(172,179,169);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    background: linear-gradient(to right, rgba(rgb(172,179,169,0.5), 0.1), transparent);
    padding: 0.35rem 1rem;
    letter-spacing: 0.03em;
    transform: translateY(0);
    font-size: calc(16px * 0.95);
    margin-top: 0.25rem;
}.instructor_profile .client_testimonials:hover > div:nth-child(2) > div {
    transform: translateY(3px) scale(1.03);
}.instructor_profile .career_experience {
    padding: 0.5rem 0;
    position: relative;
    text-align: justify;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    transition: all 0.3s ease;
    color: #000000;
    font-family: Arial, sans-serif;
}.instructor_profile .career_experience::before {
    transition: all 0.4s ease;
    font-size: 4rem;
    opacity: 0.2;
    content: "";
    top: -25px;
    position: absolute;
    left: -10px;
    color: rgb(209,212,204,0.5);
}.instructor_profile .career_experience::after {
    color: rgb(209,212,204,0.5);
    content: "";
    position: absolute;
    opacity: 0.2;
    font-size: 4rem;
    transition: all 0.4s ease;
    right: -10px;
    bottom: -50px;
}.instructor_profile .client_testimonials:hover .career_experience::before,
.instructor_profile .client_testimonials:hover .career_experience::after {
    opacity: 0.4;
    transform: scale(1.1);
}

@media (min-width: 768px) {.instructor_profile {
    padding: 6rem 0;
}.instructor_profile .client_testimonials {
    align-items: start;
    padding: 3rem;
    grid-template-columns: auto 1fr 2fr;
    gap: 2.5rem;
}.instructor_profile .client_testimonials > div:nth-child(2) {
    align-items: flex-start;
    text-align: left;
}.instructor_profile .picture_gallery {
    height: 180px;
    width: 180px;
}.instructor_profile .career_experience {
    padding: 0 1rem 0 0;
}.instructor_profile .container {
    padding: 0 4rem;
}
}

@media (min-width: 992px) {.instructor_profile .client_testimonials {
    margin: 0 3rem;
}.instructor_profile .picture_gallery {
    width: 220px;
    height: 220px;
}.instructor_profile .name {
    font-size: calc(21px * 1.2);
}.instructor_profile .client_testimonials > div:nth-child(2) > div {
    font-size: 16px;
}.instructor_profile .career_experience {
    font-size: calc(16px * 1.05);
    line-height: 1.8;
}
}

@media (max-width: 767px) {.instructor_profile .client_testimonials {
    text-align: center;
    padding: 2rem 1.5rem;
}.instructor_profile .career_experience {
    text-align: left;
}.instructor_profile .career_experience::before {
    font-size: 3rem;
    left: 0;
    top: -20px;
}.instructor_profile .career_experience::after {
    font-size: 3rem;
    bottom: -40px;
    right: 0;
}
}

@media (max-width: 480px) {.instructor_profile {
    padding: 3rem 0;
}.instructor_profile .container {
    padding: 0 1rem;
}.instructor_profile .picture_gallery {
    height: 120px;
    width: 120px;
}.instructor_profile .name {
    font-size: 21px;
}.instructor_profile .client_testimonials > div:nth-child(2) > div {
    font-size: calc(16px * 0.9);
}.instructor_profile .career_experience {
    padding: 0;
    line-height: 1.6;
    font-size: calc(16px * 0.95);
}}.customer_comments {
    background: linear-gradient(135deg, rgb(239,239,237), #ffffff);
    overflow: hidden;
    position: relative;
    padding: 6rem 0;
}.customer_comments::before {
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(172,179,169,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(209,212,204,0.5) 0%, transparent 40%);
    content: "";
    position: absolute;
    opacity: 0.12;
    width: 100%;
    z-index: 1;
    height: 100%;
    top: 0;
}.customer_comments::after {
    position: absolute;
    content: "";
    filter: blur(60px);
    width: 30%;
    top: -5%;
    z-index: 0;
    transform: rotate(-15deg);
    background: linear-gradient(145deg, rgb(172,179,169,0.5), transparent);
    right: -5%;
    height: 30%;
}.customer_comments h2 {
    color: #000000;
    position: relative;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-align: left;
    transform: translateX(1.5rem);
    font-size: calc(35px * 1.1);
    z-index: 5;
}.customer_comments h2::after {
    position: absolute;
    transform-origin: left center;
    height: 3px;
    width: 6rem;
    content: "";
    background: linear-gradient(90deg, rgb(209,212,204), rgb(172,179,169));
    bottom: -0.75rem;
    left: 0;
    animation: expandLine 2s ease-out forwards;
}.customer_comments .container.how_grow {
    margin: 0 auto;
    position: relative;
    z-index: 5;
    max-width: 1320px;
}.customer_comments .testimonials {
    gap: 2.5rem;
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}.customer_comments .client_testimonials {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: calc(var(--i, 0) * 0.15s);
    padding: 2rem;
    flex-direction: column;
    z-index: 5;
    transform: translateY(20px);
    height: 100%;
    background: #ffffff;
    position: relative;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}.customer_comments .client_testimonials:nth-child(1) {
    --i: 1;
}.customer_comments .client_testimonials:nth-child(2) {
    --i: 2;
}.customer_comments .client_testimonials:nth-child(3) {
    --i: 3;
}.customer_comments .client_testimonials:nth-child(4) {
    --i: 4;
}.customer_comments .client_testimonials:nth-child(5) {
    --i: 5;
}.customer_comments .client_testimonials:nth-child(6) {
    --i: 6;
}.customer_comments .client_testimonials:nth-child(7) {
    --i: 7;
}.customer_comments .client_testimonials:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.customer_comments .client_testimonials::before {
    line-height: 1;
    color: rgb(172,179,169,0.5);
    font-family: Georgia, serif;
    position: absolute;
    content: "";
    font-size: 8rem;
    left: 1rem;
    top: -0.5rem;
    z-index: -1;
    opacity: 0.2;
}.customer_comments .client_testimonials h3 {
    position: relative;
    z-index: 2;
    color: #000000;
    font-size: calc(24px * 1.1);
    padding-left: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}.customer_comments .client_testimonials h3::before {
    height: 70%;
    content: "";
    position: absolute;
    top: 50%;
    width: 3px;
    background: rgb(209,212,204);
    left: 0;
    transform: translateY(-50%);
}.customer_comments .client_testimonials .description {
    line-height: 1.7;
    position: relative;
    color: #000000;
    z-index: 2;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 12px;
}.customer_comments .client_testimonials div {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-end;
    position: relative;
    transform: translateY(5px);
    height: 60px;
}.customer_comments .client_testimonials:hover div {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}.customer_comments .client_testimonials img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}.customer_comments .client_testimonials:hover img {
    transform: scale(1.08);
}

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

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 6rem;
    }
}

@media (max-width: 1200px) {.customer_comments {
    padding: 5rem 0;
}.customer_comments h2 {
    transform: translateX(1rem);
    font-size: calc(35px * 1);
}.customer_comments .testimonials {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}
}

@media (max-width: 992px) {.customer_comments {
    padding: 4.5rem 1.5rem;
}.customer_comments h2 {
    margin-bottom: 3rem;
    font-size: calc(35px * 0.9);
}.customer_comments .testimonials {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem;
}.customer_comments .client_testimonials {
    padding: 1.75rem;
}
}

@media (max-width: 768px) {.customer_comments {
    padding: 4rem 1.25rem;
}.customer_comments h2 {
    font-size: calc(35px * 0.85);
    margin-bottom: 2.5rem;
    transform: translateX(0);
    text-align: center;
}.customer_comments h2::after {
    transform: translateX(-50%);
    left: 50%;
}.customer_comments .testimonials {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
}

@media (max-width: 576px) {.customer_comments {
    padding: 3.5rem 1rem;
}.customer_comments h2 {
    margin-bottom: 2rem;
    font-size: calc(35px * 0.8);
}.customer_comments .testimonials {
    gap: 1.25rem;
    grid-template-columns: 1fr;
}.customer_comments .client_testimonials {
    padding: 1.5rem;
}.customer_comments .client_testimonials h3 {
    font-size: calc(24px * 1);
}.customer_comments .client_testimonials .description {
    font-size: calc(12px * 0.95);
}.customer_comments .client_testimonials div {
    width: 50px;
    height: 50px;
}}.secure_pantry {
    position: relative;
    overflow: hidden;
    background-color: var(--section-bg-color, #f8f9fa);
    padding: 5rem 0;
}.secure_pantry::before {
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    content: "";
    top: 0;
    background: linear-gradient(135deg, rgba(245, 245, 250, 0.7) 0%, rgba(240, 242, 247, 0.4) 100%);
}.secure_pantry::after {
    position: absolute;
    z-index: 0;
    transform: rotate(-15deg);
    height: 70%;
    background: linear-gradient(145deg, var(--primary-color_opacity, rgba(65, 84, 241, 0.05)), var(--secondary-color_opacity, rgba(70, 90, 250, 0.08)));
    top: -10%;
    clip-path: polygon(0 15%, 100% 0, 85% 100%, 0 85%);
    content: "";
    right: -5%;
    width: 40%;
}.secure_pantry .container {
    z-index: 1;
    max-width: 1140px;
    transform: translateZ(0);
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}.secure_pantry h1 {
    letter-spacing: -0.02em;
    position: relative;
    color: var(--dark-color, #252525);
    transform: translateX(-10px);
    margin-bottom: 2rem;
    font-weight: var(--font-weight-bold, 700);
    font-size: var(--h1-font-size, 2.5rem);
}.secure_pantry h1::after {
    height: 4px;
    animation: scaleWidth 0.8s ease-out forwards;
    left: 0;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color, #4154f1), var(--secondary-color, #4655fa));
    transform-origin: left center;
    position: absolute;
    bottom: -12px;
    content: "";
}@keyframes scaleWidth {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.secure_pantry h2 {
    font-size: var(--h2-font-size, 1.8rem);
    border-left: 3px solid var(--primary-color, #4154f1);
    color: var(--dark-color, #252525);
    margin: 3rem 0 1.5rem;
    font-weight: var(--font-weight-semibold, 600);
    padding-left: 16px;
    position: relative;
}.secure_pantry h3 {
    font-weight: var(--font-weight-semibold, 600);
    border-left: 2px solid var(--secondary-color, #4655fa);
    color: var(--dark-color, #252525);
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.85);
    padding-left: 14px;
    position: relative;
    margin: 2.5rem 0 1.25rem;
}.secure_pantry h4 {
    font-weight: var(--font-weight-semibold, 600);
    padding-left: 12px;
    color: var(--dark-color, #252525);
    position: relative;
    border-left: 1px solid var(--secondary-color, #4655fa);
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.75);
    margin: 2rem 0 1rem;
}.secure_pantry p {
    color: var(--p-color, #444444);
    font-size: var(--p-font-size, 1rem);
    position: relative;
    max-width: 90%;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    transform: translateZ(0);
}.secure_pantry strong {
    color: var(--dark-color, #252525);
    font-weight: var(--font-weight-semibold, 600);
    display: inline-block;
    position: relative;
}.secure_pantry strong::after {
    bottom: 0;
    position: absolute;
    height: 2px;
    content: "";
    left: 0;
    background-color: var(--primary-color_opacity, rgba(65, 84, 241, 0.2));
    width: 100%;
}.secure_pantry ul {
    position: relative;
    padding-left: 20px;
    margin: 1.5rem 0 2rem 1rem;
}.secure_pantry ul::before {
    content: "";
    top: 0;
    background: linear-gradient(to bottom, var(--primary-color_opacity, rgba(65, 84, 241, 0.2)), transparent);
    position: absolute;
    left: -20px;
    height: 100%;
    border-radius: var(--border-radius-small, 3px);
    width: 3px;
}.secure_pantry li {
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 8px;
    position: relative;
    font-size: var(--p-font-size, 1rem);
    color: var(--p-color, #444444);
}.secure_pantry li::before {
    position: absolute;
    transform: rotate(45deg);
    top: 0.7em;
    content: "";
    left: -18px;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    background-color: var(--primary-color, #4154f1);
}.secure_pantry span {
    margin-bottom: 1.5rem;
    transform: translateX(8px);
    border-left: 1px solid var(--primary-color_opacity, rgba(65, 84, 241, 0.2));
    position: relative;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
    display: block;
    padding: 0.5rem 0 1.5rem;
    background: linear-gradient(to right, var(--white-color, #ffffff), rgba(248, 249, 250, 0.8));
    color: var(--p-color, #444444);
    font-size: var(--p-font-size, 1rem);
    line-height: 1.7;
}

@media (min-width: 992px) {.secure_pantry {
    padding: 6rem 0;
}.secure_pantry .container {
    padding: 0 40px;
}.secure_pantry h1 {
    font-size: calc(var(--h1-font-size, 2.5rem) * 1.1);
    margin-bottom: 3rem;
    transform: translateX(-15px);
}.secure_pantry h1::after {
    bottom: -15px;
    width: 120px;
    height: 5px;
}.secure_pantry h2 {
    font-size: calc(var(--h2-font-size, 1.8rem) * 1.05);
    padding-left: 20px;
    margin: 4rem 0 2rem;
}.secure_pantry p {
    font-size: calc(var(--p-font-size, 1rem) * 1.05);
    max-width: 85%;
    line-height: 1.75;
}.secure_pantry ul {
    margin: 2rem 0 2.5rem 2rem;
}.secure_pantry li {
    margin-bottom: 1.2rem;
    font-size: calc(var(--p-font-size, 1rem) * 1.05);
}.secure_pantry span {
    font-size: calc(var(--p-font-size, 1rem) * 1.05);
    transition: transform 0.3s ease;
    padding: 2rem;
    transform: translateX(15px);
}.secure_pantry span:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
}

@media (max-width: 767px) {.secure_pantry {
    padding: 3rem 0;
}.secure_pantry::after {
    right: -25%;
    top: -5%;
    width: 70%;
    height: 40%;
}.secure_pantry .container {
    padding: 0 15px;
}.secure_pantry h1 {
    margin-bottom: 1.5rem;
    transform: translateX(-5px);
    font-size: calc(var(--h1-font-size, 2.5rem) * 0.85);
}.secure_pantry h1::after {
    width: 60px;
}.secure_pantry h2 {
    margin: 2.5rem 0 1.25rem;
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.9);
}.secure_pantry h3 {
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.75);
}.secure_pantry h4 {
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.65);
}.secure_pantry p {
    max-width: 100%;
    font-size: calc(var(--p-font-size, 1rem) * 0.95);
}.secure_pantry ul {
    margin: 1.25rem 0 1.75rem 0.5rem;
}.secure_pantry li {
    margin-bottom: 0.8rem;
    font-size: calc(var(--p-font-size, 1rem) * 0.95);
}.secure_pantry span {
    padding: 1rem;
    font-size: calc(var(--p-font-size, 1rem) * 0.95);
    transform: translateX(0);
}
}

@media (max-width: 480px) {.secure_pantry {
    padding: 2rem 0;
}.secure_pantry h1 {
    font-size: calc(var(--h1-font-size, 2.5rem) * 0.7);
}.secure_pantry h2 {
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.8);
    padding-left: 12px;
    margin: 2rem 0 1rem;
}.secure_pantry h3 {
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.65);
    padding-left: 10px;
}.secure_pantry h4 {
    padding-left: 8px;
    font-size: calc(var(--h2-font-size, 1.8rem) * 0.55);
}.secure_pantry p, .secure_pantry li, .secure_pantry span {
    line-height: 1.6;
    font-size: calc(var(--p-font-size, 1rem) * 0.9);
}.secure_pantry span {
    padding: 0.875rem;
}
}