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

.container {
    width: 1112px;
    max-width: 100%;
    margin: auto;
}

.head_main {
    flex: 1 0 auto;
}

header,footer {
    width: 100%;
}


header {
    width: 100%;
    position: relative;
    background: linear-gradient(to bottom, rgb(222,214,206), rgba(0, 0, 0, 0.5));
    overflow: visible;
    z-index: 99;
}

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

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

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

header::before {
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    opacity: 0.1;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    content: "";
}

header .header_site .main_site {
    position: relative;
    z-index: 2;
    margin-right: 40px;
}

header .header_site .main_site .head_bar {
    padding: 5px;
    position: relative;
    display: block;
}

header .header_site .main_site .head_bar:hover::before {
    transform: scale(1);
    opacity: 0.1;
}

header .header_site .main_site .head_bar svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    height: 45px;
    width: auto;
}

header .header_site .top_navbar {
    display: flex;
    margin: 0;
    perspective: 1000px;
    padding: 0;
    list-style: none;
}

header .header_site .top_navbar .nav_main a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
    color: #000000;
    font-size: 18px;
    position: relative;
    transform-style: preserve-3d;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    font-weight: 600;
    background: linear-gradient(to bottom, transparent, transparent);
    letter-spacing: 0.5px;
    padding: 12px 20px;
}

header .header_site .top_navbar .nav_main a::after {
    opacity: 0;
    transform-origin: bottom center;
    transform: translateZ(-2px) rotateX(-10deg);
    background: linear-gradient(to top, rgb(116,150,180,0.5), transparent);
}

header .header_site .top_navbar .nav_main:hover a::before,
header .header_site .top_navbar .nav_main:hover a::after {
    opacity: 0.1;
}

header .header_site .top_navbar .nav_main:hover a::before {
    transform: translateZ(-5px) rotateX(15deg);
}



.user_reviews::after {
    width: 70%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    opacity: 0.1;
    content: "";
    top: -50%;
    position: absolute;
    z-index: 0;
    right: -20%;
    background: rgb(164,203,169,0.5);
    transform: rotate(30deg);
    height: 200%;
}

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

.user_reviews h2 {
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgb(116,150,180,0.5) 100%
    );
    margin-bottom: 5rem;
    font-size: 34px;
    padding: 1rem 3rem 1rem 0;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    color: #000000;
    transform: skewX(-5deg);
    position: relative;
}

.user_reviews .learn_reviews::before {
    position: absolute;
    content: "";
    width: 100%;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        85% 100%, 
        0% 100%
    );
    transition: all 0.5s ease;
    z-index: -1;
    left: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgb(164,203,169,0.5),
        rgb(116,150,180,0.5)
    );
    transform: translateY(10px) translateX(10px);
    top: 0;
}

.user_reviews .learn_reviews:nth-child(even):hover::before {
    transform: translateY(15px) translateX(-15px);
}

.user_reviews .learn_reviews:nth-child(odd)::before {
    clip-path: polygon(
        15% 0%, 
        100% 0%, 
        100% 100%, 
        0% 100%, 
        0% 15%
    );
}

.user_reviews .learn_reviews:nth-child(3n)::before {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 100%, 
        15% 100%, 
        0% 85%
    );
}

.user_reviews .learn_reviews:nth-child(3n+1)::before {
    clip-path: polygon(
        0% 0%, 
        85% 0%, 
        100% 15%, 
        100% 100%, 
        0% 100%
    );
}

.user_reviews .learn_reviews:nth-child(odd)::after {
    left: -15px;
    background: rgb(116,150,180);
    top: -15px;
}

.user_reviews .learn_reviews:hover::after {
    transform: rotate(225deg);
    opacity: 1;
}

.user_reviews .learn_reviews img {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    height: 80px;
    object-fit: cover;
    width: 80px;
    border-radius: 0;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.user_reviews .learn_reviews p::after {
    height: 2px;
    transition: all 0.5s ease;
    content: "";
    position: absolute;
    width: 0;
    transform: translateX(-50%);
    bottom: -5px;
    left: 50%;
    background: rgb(164,203,169);
}

.user_reviews .learn_reviews:hover .description {
    transform: translateY(-5px);
}



.user_reviews .learn_reviews:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.user_reviews .learn_reviews:nth-child(4n+2) {
    animation: shiftRight 12s infinite alternate;
}

.training_results {
    background: linear-gradient(145deg, rgb(222,214,206) 0%, rgb(164,203,169,0.5) 100%);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}



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

.training_results .belief_core {
    border-radius: 30px;
    padding: 50px;
    background: #ffffff;
    overflow: hidden;
    gap: 50px;
    align-items: center;
    flex-direction: row-reverse;
    position: relative;
    display: flex;
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.1),
        -10px -10px 30px rgba(255, 255, 255, 0.5);
}

.training_results .belief_core::after {
    opacity: 0.3;
    bottom: -100px;
    filter: blur(80px);
    height: 250px;
    content: "";
    position: absolute;
    background: rgb(116,150,180,0.5);
    width: 250px;
    border-radius: 50%;
    z-index: -1;
    left: -100px;
}

.training_results .img_circular::before {
    top: 0;
    content: "";
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: shine 5s infinite linear;
    width: 100%;
    position: absolute;
    left: 0;
    height: 100%;
}

.training_results .info_card::before {
    border-radius: 50%;
    width: 80px;
    border: 4px solid rgb(164,203,169,0.5);
    height: 80px;
    top: -40px;
    left: -40px;
    content: "";
    position: absolute;
    opacity: 0.3;
    z-index: -1;
}

.training_results h3::after {
    border-radius: 10px;
    transform: scaleX(0.3);
    transition: transform 0.5s ease;
    left: 0;
    height: 6px;
    transform-origin: left;
    bottom: -10px;
    background: linear-gradient(90deg, rgb(164,203,169), rgb(116,150,180));
    width: 100%;
    content: "";
    position: absolute;
}

.training_results li:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to right, rgb(222,214,206), #ffffff);
    transform: scale(1.02);
}

.training_results svg {
    transition: all 0.3s ease;
    align-items: center;
    height: 22px;
    width: 22px;
    background: rgb(164,203,169);
    padding: 10px;
    display: flex;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.leadership_experience::before {
    left: 0;
    content: "";
    z-index: 0;
    position: absolute;
    width: 100%;
    background: linear-gradient(120deg, rgb(164,203,169,0.5) 0%, transparent 70%);
    height: 100%;
    top: 0;
}

.leadership_experience .learn_reviews {
    margin: 0 auto;
    position: relative;
    flex-direction: column;
    display: flex;
    max-width: 600px;
    z-index: 1;
}

.leadership_experience .img_circular::before {
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    z-index: 1;
}

.leadership_experience .work_details {
    margin: -80px auto 0;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    transform: translateY(0);
    z-index: 3;
    width: 90%;
    padding: 2.5rem 2rem 2rem;
    position: relative;
}

.leadership_experience .work_details::before {
    border-radius: 50%;
    left: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 5px solid rgb(222,214,206);
    content: "";
    z-index: 4;
    background: #ffffff;
    top: 0;
    width: 70px;
    transform: translate(-50%, -50%);
    position: absolute;
    height: 70px;
}

.leadership_experience .work_details div:nth-child(2)::after {
    content: "";
    width: 40px;
    margin: 1rem auto 0;
    background: rgb(164,203,169,0.5);
    display: block;
    height: 3px;
}

.leadership_experience .career_details::before,
.leadership_experience .career_details::after {
    font-family: serif;
    font-size: 3rem;
    position: absolute;
    color: rgb(164,203,169,0.5);
    content: "";
    line-height: 0;
}

.leadership_experience .career_details::before {
    left: 0;
    transform: rotate(180deg);
    top: 0.5rem;
}

.privacy_safehouse h1 {
    margin-bottom: 20px;
    margin-top: 30px;
}

.privacy_safehouse h2 {
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy_safehouse ul, .privacy_safehouse ol {
    padding: 10px 0;
    list-style-position: inside;
    padding-left: 0;
}

.privacy_safehouse section {
    background: none;
}

.connect_form {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: rgb(222,214,206);
}

.connect_form::after {
    background-image: 
        repeating-linear-gradient(45deg, rgb(164,203,169,0.5) 0, rgb(164,203,169,0.5) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgb(116,150,180,0.5) 0, rgb(116,150,180,0.5) 1px, transparent 1px, transparent 20px),
        linear-gradient(90deg, rgb(164,203,169,0.5), transparent 70%),
        linear-gradient(180deg, rgb(116,150,180,0.5), transparent 70%);
    animation: backgroundMove 30s infinite linear;
    content: "";
    top: 0;
    background-size: 30px 30px, 30px 30px, 100% 100%, 100% 100%;
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    opacity: 0.2;
    z-index: 1;
    background-position: 0 0, 0 0, 0 0, 0 0;
}

.connect_form .inquiry_reach {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgb(164,203,169,0.5);
}

.connect_form .inquiry_reach::before {
    border-radius: 12px;
    pointer-events: none;
    inset: 0;
    opacity: 0.2;
    z-index: 3;
    border: 1px solid rgb(164,203,169);
    content: "";
    position: absolute;
}

.connect_form .img_circular::after {
    content: "";
    position: absolute;
    z-index: 2;
    opacity: 0.7;
    inset: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgb(164,203,169,0.5) 100%);
}

.connect_form .request_map::after {
    filter: blur(80px);
    position: absolute;
    content: "";
    bottom: -75px;
    width: 150px;
    left: -75px;
    background: rgb(116,150,180,0.5);
    z-index: 0;
    height: 150px;
    opacity: 0.3;
}

.connect_form form h3 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 21px;
    margin-bottom: 40px;
    position: relative;
    color: #000000;
    font-weight: 700;
}

.connect_form form input[type="text"] {
    border-radius: 8px;
    border: 1px solid rgb(164,203,169,0.5);
    transition: all 0.3s ease;
    width: 100%;
    font-size: 12px;
    color: #000000;
    background: rgb(222,214,206);
    padding: 18px 25px;
    margin-bottom: 25px;
}

.connect_form form input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.7;
}

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

.connect_form .query_query label::before {
    width: 22px;
    top: 0;
    border-radius: 4px;
    height: 22px;
    transition: all 0.3s ease;
    background: rgb(222,214,206);
    content: "";
    left: 0;
    border: 1px solid rgb(164,203,169,0.5);
    position: absolute;
}

.connect_form .query_query input[type="checkbox"]:checked + label::after {
    content: "";
    transform: rotate(45deg);
    height: 12px;
    border: solid #ffffff;
    width: 6px;
    top: 4px;
    position: absolute;
    border-width: 0 2px 2px 0;
    left: 8px;
}

.connect_form .query_query label a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.connect_form .connect_widget {
    font-size: 16px;
    background: rgb(164,203,169);
    width: 100%;
    padding: 18px 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    box-shadow: 
        0 5px 15px rgb(164,203,169,0.5),
        0 0 0 1px rgb(164,203,169);
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    letter-spacing: 1px;
    color: #ffffff;
}

.connect_form .connect_widget:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.connect_form svg path {
    fill: rgb(164,203,169);
    transition: all 0.3s ease;
}

.connect_form svg:hover,
.connect_form svg:hover path {
    transform: translateY(-2px);
    fill: rgb(116,150,180);
    filter: drop-shadow(0 0 3px rgb(116,150,180,0.5));
}

.thxWrap::before {
    right: -10%;
    height: 70%;
    background: linear-gradient(145deg, rgb(164,203,169,0.5) 10%, transparent 70%);
    top: -5%;
    position: absolute;
    z-index: 1;
    opacity: 0.8;
    animation: float 18s ease-in-out infinite alternate;
    content: "";
    transform: rotate(15deg) skew(5deg);
    filter: blur(20px);
    width: 50%;
}

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

.thxWrap h2::after {
    bottom: -0.8rem;
    content: "";
    width: 80px;
    transition: transform 0.6s ease-out;
    transform: scaleX(1);
    position: absolute;
    transform-origin: left center;
    background: linear-gradient(90deg, rgb(164,203,169), rgb(116,150,180));
    height: 4px;
    left: 0;
}

.thxWrap .belief_core {
    margin-top: 1rem;
    transform: translateZ(0);
    overflow: hidden;
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: calc(29px / 1.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.05),
        0 5px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.thxWrap li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

.thxWrap li:hover::before {
    background: rgb(116,150,180);
    transform: scale(1.1);
}

.thxWrap li span {
    font-size: calc(13px * 1.05);
    color: #000000;
    line-height: 1.7;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease;
    display: block;
}

.tariff_plan {
    background: rgb(222,214,206);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}

.tariff_plan::after {
    z-index: 0;
    content: "";
    filter: blur(60px);
    left: -50px;
    background: rgb(116,150,180,0.5);
    animation: float-effect 15s infinite alternate-reverse ease-in-out;
    height: 250px;
    width: 250px;
    position: absolute;
    bottom: -50px;
}

.tariff_plan .price_opts {
    display: flex;
    gap: 60px;
    flex-direction: column;
}

.tariff_plan .pricing_schemes h2 {
    color: #000000;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    font-size: 32px;
}

.tariff_plan .price_deals {
    margin-bottom: 0;
    opacity: 0.85;
    color: #000000;
    line-height: 1.6;
    font-size: 14px;
}

.tariff_plan .discount_price {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    perspective: 1000px;
    gap: 30px;
    display: grid;
}

.tariff_plan .enroll_cost:hover {
    transform: translateY(-10px) scale(1.02);
}

.tariff_plan .plan_pricing {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    flex-direction: column;
    transition: box-shadow 0.4s ease;
    background: #ffffff;
}

.tariff_plan .learning_packages::before {
    background: linear-gradient(90deg, rgb(164,203,169), rgb(116,150,180));
    transform: scaleX(0);
    height: 5px;
    left: 0;
    transition: transform 0.5s ease;
    transform-origin: left;
    top: 0;
    position: absolute;
    content: "";
    right: 0;
}

.tariff_plan .enroll_cost:hover .learning_packages h3 {
    transform: translateX(5px);
    color: rgb(164,203,169);
}

.tariff_plan .pricing_offers::before {
    height: 2px;
    content: "";
    left: 0;
    position: absolute;
    width: 40px;
    bottom: -8px;
    background: rgb(116,150,180,0.5);
    transition: width 0.4s ease;
}

.tariff_plan .enroll_cost:hover .pricing_offers::before {
    width: 80px;
}

.tariff_plan .img_circular {
    transform: translateZ(-10px);
    overflow: hidden;
    position: relative;
    height: 200px;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.tariff_plan .img_circular::after {
    opacity: 0.6;
    inset: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    content: "";
    position: absolute;
}

.tariff_plan .enroll_cost::after {
    filter: blur(10px);
    z-index: -1;
    border-radius: 50%;
    top: 100%;
    background: rgb(164,203,169,0.5);
    content: "";
    position: absolute;
    height: 15px;
    left: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    right: 30px;
}



.our_team::after {
    background: radial-gradient(ellipse at 30% 20%, rgb(164,203,169,0.5) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgb(116,150,180,0.5) 0%, transparent 60%);
    height: 100%;
    left: 0;
    z-index: 1;
    top: 0;
    filter: blur(50px);
    position: absolute;
    content: "";
    animation: pulseBackground 15s infinite alternate;
    opacity: 0.15;
    width: 100%;
}

.our_team .community_team {
    padding-top: 20px;
    gap: 20px;
    display: grid;
    margin-left: -15%;
    grid-template-columns: 1.6fr 1.4fr;
    position: relative;
    margin-bottom: 100px;
    width: 115%;
}

.our_team .community_team span {
    position: absolute;
    font-size: 23px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 30px;
    background: rgb(164,203,169);
    transform: skewX(-15deg);
    right: 10%;
    border-radius: 0 10px 10px 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    top: -15px;
    z-index: 10;
}

.our_team .community_team .img_circular {
    grid-column: 1 / 2;
    border-radius: 0 26px 26px 0;
    grid-row: 1 / 2;
    overflow: hidden;
    z-index: 3;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.our_team .community_team .img_circular::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
    position: absolute;
    z-index: 2;
}

.our_team .virtual_academy::before {
    top: -50px;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, rgb(164,203,169,0.5), rgb(116,150,180,0.5), transparent);
    left: 30%;
    content: "";
    position: absolute;
}

.our_team .virtual_academy::before {
    right: 20%;
    bottom: -20px;
}

.our_team .virtual_academy .pro_program {
    z-index: 3;
    border-radius: 26px 0 0 26px;
    position: relative;
    overflow: hidden;
    grid-column: 2 / 3;
    height: 500px;
    grid-row: 1 / 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.our_team .virtual_academy .pro_program::before {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
    z-index: 2;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
}

.our_team .virtual_academy::after {
    top: -100px;
    background: rgb(116,150,180);
    left: 10%;
}

.our_team .community_team::before,
.our_team .virtual_academy::before {
    position: absolute;
    animation: widthPulse 6s infinite alternate;
    background: linear-gradient(to right, transparent, rgb(164,203,169,0.5) 50%, transparent);
    height: 1px;
    content: "";
    width: 300px;
}



.our_team .community_team::before {
    left: 20%;
    top: -20px;
}

.our_team .belief_core::after {
    right: 10%;
    bottom: 15%;
}

.welcome_page::before {
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(94, 170, 168, 0.03),
        rgba(94, 170, 168, 0.03) 10px,
        transparent 10px,
        transparent 20px
    );
    position: absolute;
    top: 0;
    height: 100%;
    z-index: -1;
    width: 100%;
    content: "";
}

.welcome_page h1 {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeSlideDown 0.8s ease-out 0.2s forwards;
    color: rgb(164,203,169);
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.welcome_page h1 {
    margin-bottom: 4rem;
}

.welcome_page .belief_core {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    gap: 2rem;
}

.welcome_page .belief_core {
    gap: 5rem;
}

.welcome_page ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome_page ol li {
    margin-bottom: 2rem;
}

.welcome_page .edu_online {
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
}

.welcome_page svg {
    width: 100px;
    transform: scale(0.9);
    height: 100px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 1.5rem;
}

.welcome_page svg {
    width: 120px;
    height: 120px;
}

.welcome_page .edu_online:hover svg {
    transform: scale(1.05);
}

.welcome_page svg text {
    transition: fill 0.3s ease;
    font-family: Arial, sans-serif;
}

.welcome_page .edu_online p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 650px;
}

.welcome_page .connect_widget::before {
    z-index: -1;
    top: 0;
    background: linear-gradient(135deg, rgb(116,150,180) 0%, rgb(164,203,169) 100%);
    transition: opacity 0.4s ease;
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.welcome_page .connect_widget:hover {
    box-shadow: 0 7px 20px rgba(94, 170, 168, 0.4);
    transform: translateY(-3px);
}

.welcome_page .connect_widget:active {
    box-shadow: 0 3px 10px rgba(94, 170, 168, 0.3);
    transform: translateY(-1px);
}

.welcome_page .img_circular::before {
    right: 0;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    z-index: 1;
    content: "";
    bottom: 0;
    position: absolute;
}

.welcome_page .img_circular::after {
    position: absolute;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
    content: "";
    transition: opacity 0.3s ease;
    background: rgb(164,203,169);
    top: 0;
    left: 0;
}

.program_details::before {
    top: 0;
    opacity: 0.6;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    background: 
        radial-gradient(ellipse at 75% 40%, rgb(116,150,180,0.5) 0%, transparent 50%),
        radial-gradient(circle at 25% 80%, rgb(164,203,169,0.5) 0%, transparent 40%);
    content: "";
    z-index: 1;
    animation: pulseGlow 12s infinite alternate;
}

.program_details .container {
    z-index: 3;
    position: relative;
}

.program_details .belief_core {
    flex-direction: column;
    border-radius: 23px;
    position: relative;
    display: flex;
    background: transparent;
    overflow: visible;
}

.program_details .program_guide::before {
    top: -15px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s infinite alternate ease-in-out;
    width: 200px;
    right: -15px;
    content: "";
    background: linear-gradient(135deg, rgb(164,203,169,0.5), rgb(116,150,180,0.5));
    position: absolute;
    z-index: -1;
}

.program_details .main_site svg {
    width: 60%;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 60%;
    fill: rgb(164,203,169);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.program_details .main_site:hover svg {
    transform: scale(1.2) rotate(-10deg);
    fill: rgb(116,150,180);
}

.program_details .main_site svg path {
    transition: stroke 0.4s ease;
    stroke-width: 0.5;
    stroke: #000000;
}

.program_details .main_site:hover svg path {
    animation: drawPath 2s forwards;
    stroke-dasharray: 50;
    stroke: rgb(164,203,169);
    stroke-dashoffset: 50;
}

.program_details .program_guide h3::before {
    position: absolute;
    content: "";
    left: 0;
    background: rgb(164,203,169);
    border-radius: 50%;
    bottom: 0;
    height: 8px;
    width: 8px;
}

.program_details .program_guide p {
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
    text-shadow: 0 0 1px rgba(0,0,0,0.01);
    font-size: 18px;
    color: #000000;
}

.program_details .img_circular {
    z-index: 2;
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
    width: 85%;
    height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px -5px rgba(0, 0, 0, 0.5),
        0 0 0 5px #ffffff;
    border-radius: 
        23px 23px 
        calc(23px * 3) 23px;
    margin-left: auto;
    transition: transform 0.6s ease;
}

.program_details .belief_core:hover .img_circular::before {
    opacity: 0.5;
}

.program_details .img_circular::after {
    z-index: 2;
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(0, 0, 0, 0.5) 0,
            rgba(0, 0, 0, 0.5) 1px,
            transparent 1px,
            transparent 10px
        );
    top: 0;
    mix-blend-mode: overlay;
    opacity: 0.1;
}

.footer_disclaimer .debate_club {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer_disclaimer .edu_ask::after {
    content: '';
    background-color: rgb(164,203,169);
    bottom: -1px;
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
}

.footer_disclaimer .info_item:hover {
    transform: translateX(5px);
}

.footer_disclaimer .info_item p,
.footer_disclaimer .info_item a {
    text-decoration: none;
    transition: color 0.3s ease;
    align-items: center;
    display: flex;
    font-size: 12px;
    gap: 0.75rem;
    color: #000000;
    font-weight: 400;
}

.footer_disclaimer .main_site {
    gap: 1.25rem;
    flex-direction: column;
    display: flex;
}

.footer_disclaimer .main_site svg:hover {
    opacity: 0.8;
}

.footer_disclaimer .terms_legal {
    color: #000000;
    max-width: 300px;
    line-height: 1.6;
    font-size: 13px;
    opacity: 0.8;
}

.footer_disclaimer .top_nav {
    flex-direction: column;
    display: flex;
    gap: 1rem;
}

.footer_disclaimer .top_nav a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 12px;
    position: relative;
    padding-left: 0;
}

.footer_disclaimer .top_nav a:hover {
    color: rgb(164,203,169);
    padding-left: 12px;
}

.footer_disclaimer .top_nav a:hover::before {
    width: 10px;
    left: 0;
}

.footer_disclaimer .subscribe_holder h5 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}

.footer_disclaimer .subscribe_holder p {
    line-height: 1.6;
    font-size: 12px;
    color: #000000;
}

.footer_disclaimer .input_holder input[type="email"] {
    color: #000000;
    font-size: 12px;
    border: 1px solid rgb(116,150,180,0.5);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background-color: transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}

.footer_disclaimer .news_block {
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: rgb(164,203,169);
    cursor: pointer;
}

.footer_disclaimer .top_nav:first-child {
    margin-bottom: 1.5rem;
    position: relative;
}

.cookieNotificationPanel {
    bottom: 0;
    background: rgb(222,214,206);
    z-index: 90;
    width: 100%;
    border-top: 2px solid rgb(164,203,169);
    position: fixed;
}

.consent_box {
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.cookie_customize {
    flex-shrink: 0;
    margin-right: 10px;
}

.track_optin {
    cursor: pointer;
    min-width: 120px;
    margin-left: 10px;
    color: rgb(164,203,169);
    font-size: 24px;
    border-bottom: 2px solid rgb(164,203,169);
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    flex-shrink: 0;
    line-height: 35px;
}

.statistical_details {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(222,214,206) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.statistical_details::after {
    width: 200%;
    opacity: 0.05;
    content: "";
    background-size: 30px 30px;
    position: absolute;
    background-image: 
        linear-gradient(to right, rgb(164,203,169,0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(164,203,169,0.5) 1px, transparent 1px);
    height: 200%;
    top: -50%;
    pointer-events: none;
    left: -50%;
    transform: perspective(1000px) rotateX(60deg);
}

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

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

.statistical_details .career_statistics:nth-child(1) {
    --i: 1;
}

.statistical_details .career_statistics:nth-child(2) {
    --i: 2;
}

.statistical_details .career_statistics:nth-child(3) {
    --i: 3;
}

.statistical_details .career_statistics:nth-child(4) {
    --i: 4;
}

.statistical_details .career_statistics:nth-child(5) {
    --i: 5;
}

.statistical_details .career_statistics:nth-child(6) {
    --i: 6;
}

.statistical_details .career_statistics:nth-child(7) {
    --i: 7;
}

.statistical_details .career_statistics::before {
    background: linear-gradient(to right, rgb(164,203,169), rgb(116,150,180));
    width: 100%;
    left: 0;
    content: "";
    height: 4px;
    top: 0;
    position: absolute;
    z-index: 1;
}

.statistical_details .career_statistics:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.statistical_details .career_statistics span {
    font-size: calc(18px * 1.1);
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    color: #000000;
}

.statistical_details .career_statistics p::after {
    right: -15px;
    color: rgb(116,150,180);
    top: 5px;
    font-size: calc(22px);
    position: absolute;
    content: "+";
}



@media (max-width: 992px) {header .header_site {
    padding: 15px;
    flex-direction: column;
}header .header_site .main_site {
    margin: 0 0 15px 0;
}header .header_site .top_navbar {
    width: 100%;
    justify-content: center;
    perspective: none;
    flex-wrap: wrap;
}header .header_site .top_navbar .nav_main a {
    font-size: calc(18px - 1px);
    transform-style: flat;
    padding: 10px 15px;
}header .header_site .top_navbar .nav_main:hover a {
    transform: none;
}header .header_site .top_navbar .nav_main a::before,
    header .header_site .top_navbar .nav_main a::after {
    display: none;
}
}



@media (max-width: 992px) {.training_results {
    padding: 80px 0;
}.training_results .belief_core {
    gap: 40px;
    padding: 40px;
}.training_results h3 {
    font-size: calc(30px * 0.9);
}
}



@media (max-width: 768px) {.training_results .belief_core {
    flex-direction: column;
    gap: 40px;
}.training_results .img_circular {
    width: 70%;
    margin: 0 auto;
    max-width: 300px;
}.training_results .info_card {
    padding: 10px;
    width: 100%;
}.training_results .info_card::before {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
}



@media (max-width: 576px) {.training_results {
    padding: 60px 0;
}.training_results .belief_core {
    padding: 30px 20px;
}.training_results .img_circular {
    width: 80%;
}.training_results h3 {
    text-align: center;
    display: block;
    font-size: 20px;
}.training_results li {
    padding: 12px 15px;
}.training_results li p {
    font-size: 14px;
}.training_results svg {
    padding: 8px;
}}



@media screen and (max-width: 767px) {.leadership_experience .img_circular {
    height: 320px;
    width: 90%;
}.leadership_experience .work_details {
    padding: 2rem 1.5rem 1.5rem;
    margin-top: -60px;
    width: 95%;
}.leadership_experience .work_details::before {
    height: 60px;
    width: 60px;
}}



@media (max-width: 768px) {.connect_form {
    padding: 60px 0;
}.connect_form h2 {
    font-size: calc(40px * 0.8);
    margin-bottom: 40px;
}.connect_form .inquiry_reach {
    flex-direction: column;
}.connect_form .img_circular {
    min-height: 300px;
    width: 100%;
}.connect_form .request_map {
    width: 100%;
    padding: 40px 30px;
}.connect_form form h3 {
    margin-bottom: 30px;
}.connect_form form input[type="text"] {
    padding: 15px 20px;
    margin-bottom: 20px;
}.connect_form .query_query {
    margin-bottom: 25px;
}.connect_form .connect_widget {
    padding: 15px 25px;
}
}



@media (max-width: 992px) {.thxWrap {
    padding: 4rem 0;
}.thxWrap h2 {
    max-width: 100%;
    font-size: calc(28px * 0.9);
}.thxWrap .belief_core {
    padding: 2rem;
}
}



@media (max-width: 576px) {.thxWrap {
    padding: 3rem 0;
}.thxWrap h2 {
    margin-bottom: 1.2rem;
    font-size: calc(28px * 0.7);
}.thxWrap h2::after {
    width: 50px;
    height: 3px;
}.thxWrap .belief_core {
    margin-top: 0.5rem;
    padding: 1.5rem;
}.thxWrap li {
    padding-left: 1.5rem;
}.thxWrap li::before {
    top: 0.4rem;
    height: 8px;
    width: 8px;
}.thxWrap li span {
    line-height: 1.6;
    font-size: calc(13px * 0.95);
}}



@media (min-width: 1200px) {.tariff_plan .discount_price {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}.tariff_plan .learning_packages {
    padding: 35px;
}.tariff_plan .img_circular {
    height: 220px;
}
}



@media (max-width: 991px) {.tariff_plan {
    padding: 80px 0;
}.tariff_plan .pricing_schemes {
    margin-bottom: 20px;
}
}



@media (max-width: 480px) {.tariff_plan {
    padding: 50px 0;
}.tariff_plan .learning_packages h3 {
    font-size: 21px;
}.tariff_plan .pricing_offers {
    font-size: calc(21px - 2px);
}.tariff_plan .img_circular {
    height: 160px;
}.tariff_plan .learning_packages {
    padding: 20px;
}}



@media screen and (max-width: 991px) {.our_team .community_team p,
    .our_team .virtual_academy p {
    width: 100%;
}.our_team {
    padding: 100px 0 80px;
}.our_team h3 {
    position: relative;
    font-size: calc(37px - 0.4rem);
    transform: none;
    margin-bottom: 50px;
}.our_team .community_team,
    .our_team .virtual_academy {
    margin-left: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-right: 0;
}.our_team .community_team {
    margin-bottom: 80px;
}.our_team .community_team span {
    top: -15px;
    right: auto;
    font-size: calc(23px - 0.2rem);
    left: 0;
}.our_team .community_team .img_circular {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 400px;
    border-radius: 26px;
}.our_team .community_team p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    transform: translateX(0);
}.our_team .virtual_academy .pro_program {
    grid-column: 1 / 2;
    border-radius: 26px;
    height: 400px;
    grid-row: 1 / 2;
}.our_team .virtual_academy p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    transform: translateX(0);
}.our_team .community_team::after,
    .our_team .virtual_academy::after {
    width: 150px;
    height: 150px;
}
}



@media screen and (min-width: 1400px) {.our_team .community_team {
    width: 120%;
    margin-left: -20%;
}.our_team .virtual_academy {
    width: 120%;
    margin-right: -20%;
}.our_team .community_team .img_circular,
    .our_team .virtual_academy .pro_program {
    height: 550px;
}}



@media (min-width: 768px) {.welcome_page {
    padding: 8rem 2rem;
}.welcome_page .belief_core {
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}.welcome_page .info_card {
    padding: 3rem;
}.welcome_page .edu_online {
    text-align: left;
    align-items: flex-start;
}.welcome_page .img_circular {
    height: 500px;
}
}



@media (min-width: 1200px) {.welcome_page .belief_core {
    gap: 8rem;
}.welcome_page .info_card {
    padding: 4rem;
}
}



@media screen and (max-width: 1200px) {.program_details {
    padding: 100px 0;
}.program_details .program_guide {
    transform: translateY(70px);
    padding: 50px;
    width: 85%;
}.program_details .img_circular {
    height: 350px;
    width: 90%;
}
}



@media screen and (max-width: 768px) {.program_details {
    padding: 60px 0;
}.program_details .program_guide {
    width: 100%;
    padding: 30px;
    transform: translateY(-60px);
}.program_details .main_site {
    height: 80px;
    width: 80px;
    top: -40px;
    left: 30px;
}.program_details .program_guide h3 {
    font-size: calc(36px * 0.85);
    margin-bottom: 20px;
}.program_details .program_guide p {
    font-size: calc(18px * 0.95);
}.program_details .img_circular {
    height: 280px;
}.program_details .program_guide::before {
    width: 150px;
    right: -10px;
    top: -10px;
    height: 150px;
}
}



@media (max-width: 1024px) {.footer_disclaimer {
    padding: 4rem 0 2rem;
}.footer_disclaimer .text_main_holder {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}.footer_disclaimer .subscribe_holder {
    grid-column: span 2;
}
}



@media (max-width: 768px) {.footer_disclaimer {
    padding: 3.5rem 0 1.5rem;
}.footer_disclaimer .text_main_holder {
    grid-template-columns: 1fr;
    gap: 3rem;
}.footer_disclaimer .subscribe_holder {
    grid-column: auto;
}.footer_disclaimer .edu_ask {
    grid-template-columns: 1fr 1fr;
}.footer_disclaimer .info_item:hover {
    transform: translateX(0) translateY(-5px);
}
}


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


@media only screen and (max-width: 800px) {.cookie_customize {
    display: none;
}.consent_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.cookieNotificationPanel h5 {
    text-align: center;
}.cookieNotificationPanel p {
    text-align: center;
}.tracking_policy {
    margin-bottom: 20px;
}body .wrapper-container .track_optin {
    margin-left: 0;
}}



@media (max-width: 991px) {.statistical_details {
    padding: 80px 0;
}.statistical_details h3 {
    margin-bottom: 40px;
    font-size: calc(38px * 0.9);
}.statistical_details ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}.statistical_details .career_statistics {
    padding: 25px 20px;
}.statistical_details .career_statistics p {
    font-size: calc(38px * 1.3);
}
}



@media (max-width: 480px) {.statistical_details {
    padding: 50px 0;
}.statistical_details ul {
    grid-template-columns: 1fr;
    gap: 15px;
}.statistical_details .career_statistics {
    padding: 20px 15px;
}
}

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

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgb(164,203,169,0.5);
    }
    50% { 
        box-shadow: 0 0 0 10px transparent;
    }
}



@keyframes shiftLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}



@keyframes shiftDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

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

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, 60px 60px, 0 0, 0 0;
    }
}



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



@keyframes float-effect {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
    100% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}

@keyframes pulseOpacity {
    0% {
        opacity: 0.15;
        transform: scale(1);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@keyframes widthPulse {
    0% {
        width: 200px;
    }
    100% {
        width: 300px;
    }
}



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


    
    @keyframes fadeSlideRight {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }



@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}



@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}



@keyframes stat-appear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

