* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}svg {
    width: 30px;
    height: 30px;
}html,body {
    scroll-behavior: auto;
    color: #000000;
    font-family: Arial, sans-serif;
    height: 100%;
    min-height: 100%;
}header,footer {
    width: 100%;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1222px;
}.challenge_cta {
    flex: 0 0 auto;
}a {
    color: inherit;
    text-decoration: none;
}.header_top {
    flex: 1 0 auto;
}.wrapper-holder {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-height: 100%;
}::-webkit-scrollbar {
    padding: 2px;
    width: 4px;
}::-webkit-scrollbar-button {
    background: rgb(255, 255, 255, 0.5);
    border-radius: 9px;
    height: 1px;
}::-webkit-scrollbar-thumb {
    border-radius: 9999px;
    border: 3px dotted rgb(174,188,218,0.5);
    background: radial-gradient(ellipse at bottom left, rgb(255, 255, 255, 0.5) 91%, rgb(135,155,197) 25%, rgb(135,155,197,0.5) 54%, rgb(174,188,218,0.5) 64%, rgb(214,221,239) 20%);
    min-height: 26px;
}::-webkit-scrollbar-thumb:hover {
    transform: scale(0.95);
    background: repeating-radial-gradient(circle at center, rgb(214,221,239), rgb(214,221,239) 15px, rgb(174,188,218,0.5) 15px, rgb(174,188,218,0.5) 12px);
    border-color: rgb(135,155,197);
    box-shadow: -2px -4px 10px 7px rgba(0, 0, 0, 0.2);
}::-webkit-scrollbar-thumb:active {
    box-shadow: inset 5px 4px 8px -2px rgba(0, 0, 0, 0.1);
    background: rgb(135,155,197);
}::-webkit-scrollbar-corner {
    background: #ffffff;
}* {
    scrollbar-width: none;
    scrollbar-color: rgb(174,188,218,0.5) rgb(255, 255, 255, 0.5);
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 8px;
}::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255, 0.5);
}
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header .head_skill {
    position: relative;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(120deg, rgb(214,221,239) 0%, rgb(174,188,218,0.5) 100%);
    overflow: hidden;
}header .head_skill::before {
    content: "";
    height: 100%;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgb(135,155,197,0.5) 10px,
        rgb(135,155,197,0.5) 11px
    );
    opacity: 0.1;
    animation: slidePattern 25s linear infinite;
    top: 0;
    width: 100%;
    left: 0;
}header .head_skill::after {
    opacity: 0.1;
    position: absolute;
    content: "";
    width: 150%;
    height: 100px;
    background: rgb(174,188,218);
    z-index: -2;
    transform: rotate(-2deg);
    top: -50px;
    left: -25%;
}header .container {
    position: relative;
    padding: 1.5rem 2rem;
}header .nav_primary {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    display: grid;
    align-items: center;
}header .nav_begin {
    z-index: 2;
    position: relative;
}header .header_navbar {
    display: block;
    box-shadow: 5px 5px 0 rgb(174,188,218,0.5);
    border-radius: 10px;
    position: relative;
    background: #ffffff;
    padding: 15px;
    transform: rotate(-3deg);
    transition: all 0.3s ease;
}header .header_navbar::before {
    content: "";
    transition: all 0.3s ease;
    opacity: 0;
    bottom: -5px;
    border-radius: 10px;
    right: -5px;
    left: -5px;
    position: absolute;
    border: 2px dashed rgb(174,188,218,0.5);
    top: -5px;
}header .header_navbar:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 rgb(174,188,218);
}header .header_navbar:hover::before {
    left: -8px;
    bottom: -8px;
    opacity: 1;
    right: -8px;
    top: -8px;
}header .header_navbar svg {
    width: auto;
    height: 45px;
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.5));
}header .site_header {
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    position: relative;
}header .site_header::before {
    top: 0;
    position: absolute;
    content: "";
    border-radius: 0 15px 15px 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(135,155,197,0.5) 100%);
    z-index: -1;
    width: 85%;
    right: 0;
    opacity: 0.15;
    transition: width 0.3s ease;
}header .site_header:hover::before {
    width: 100%;
}header .header_edu {
    margin: 5px 3px;
    position: relative;
}header .header_edu:nth-child(odd) {
    transform: translateY(-3px);
}header .header_edu:nth-child(even) {
    transform: translateY(3px);
}header .header_edu a {
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 600;
    border-left: 3px solid transparent;
    font-size: 12px;
    display: block;
    font-family: Arial, sans-serif;
    border-radius: 0 10px 0 10px;
    color: #000000;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}header .header_edu a::before {
    position: absolute;
    background: rgb(174,188,218);
    top: 0;
    width: 5px;
    right: 0;
    transition: transform 0.3s ease;
    height: 100%;
    content: "";
    transform: scaleY(0);
    transform-origin: top;
}header .header_edu a::after {
    transition: transform 0.3s ease 0.1s;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(174,188,218) 0%, rgb(135,155,197) 100%);
    height: 2px;
    width: 100%;
    position: absolute;
    content: "";
    bottom: 0;
}header .header_edu a:hover {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    border-left-color: rgb(174,188,218);
    color: rgb(174,188,218);
    transform: translateX(5px);
}header .header_edu a:hover::before {
    transform: scaleY(1);
}header .header_edu a:hover::after {
    transform: scaleX(1);
}

@keyframes slidePattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px 500px;
    }
}

@media (max-width: 991px) {header .nav_primary {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}header .nav_begin {
    justify-self: center;
}header .site_header {
    justify-content: center;
}header .site_header::before {
    background: rgb(135,155,197,0.5);
    opacity: 0.1;
    width: 100%;
}
}

@media (max-width: 767px) {header .container {
    padding: 1.2rem 1rem;
}header .site_header {
    flex-direction: column;
    width: 100%;
}header .header_edu {
    margin: 3px 0;
    width: 100%;
    transform: none !important;
}header .header_edu a {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 10px;
}header .header_edu a:hover {
    transform: translateY(-3px);
    border-bottom-color: rgb(174,188,218);
    border-left-color: transparent;
}header .header_edu a::before {
    right: auto;
    bottom: 0;
    top: auto;
    transform: scaleX(0);
    left: 0;
    height: 5px;
    width: 100%;
}header .header_edu a:hover::before {
    transform: scaleX(1);
}
}

@media (max-width: 480px) {header .header_navbar {
    transform: none;
    padding: 10px;
}header .header_navbar svg {
    height: 40px;
}header .header_navbar:hover {
    transform: translateY(-3px);
}}.course_demographic {
    background: rgb(214,221,239);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}.course_demographic::before {
    background-size: 60px 60px;
    position: absolute;
    top: 0;
    height: 100%;
    opacity: 0.15;
    width: 100%;
    left: 0;
    content: "";
    z-index: 0;
    background: linear-gradient(
        135deg,
        transparent 20px,
        rgb(174,188,218,0.5) 20px,
        rgb(174,188,218,0.5) 22px,
        transparent 22px
    ),
    linear-gradient(
        225deg,
        transparent 20px,
        rgb(135,155,197,0.5) 20px,
        rgb(135,155,197,0.5) 22px,
        transparent 22px
    );
}.course_demographic::after {
    height: 100%;
    left: 0;
    opacity: 0.1;
    top: 0;
    background-size: 40px 40px;
    filter: blur(1px);
    position: absolute;
    width: 100%;
    background: 
        linear-gradient(90deg, transparent 47%, rgb(174,188,218,0.5) 47%, rgb(174,188,218,0.5) 53%, transparent 53%),
        linear-gradient(0deg, transparent 47%, rgb(135,155,197,0.5) 47%, rgb(135,155,197,0.5) 53%, transparent 53%);
    content: "";
    z-index: 0;
}.course_demographic .learn_learn {
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 1;
}.course_demographic h3 {
    font-weight: 700;
    left: 50%;
    position: relative;
    text-align: center;
    transform: translateX(-50%);
    display: inline-block;
    padding: 0 20px 20px;
    box-shadow: 0 10px 25px -10px rgb(174,188,218,0.5);
    color: #000000;
    margin-bottom: 80px;
    font-family: Arial, sans-serif;
    font-size: 36px;
}.course_demographic h3::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, 
        rgb(174,188,218),
        rgb(135,155,197),
        rgb(174,188,218)
    );
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
}.course_demographic h3::after {
    width: 12px;
    animation: pulseCircle 2s infinite;
    content: "";
    box-shadow: 0 0 15px rgb(174,188,218,0.5);
    background: rgb(174,188,218);
    position: absolute;
    bottom: -6px;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 50%;
    left: 50%;
}.course_demographic ul {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    list-style: none;
    display: grid;
    gap: 30px;
    padding: 0;
    margin: 0;
}.course_demographic ul li {
    font-family: Arial, sans-serif;
    transition: all 0.4s ease;
    padding: 25px 25px 25px 70px;
    border-left: 3px solid rgb(174,188,218);
    border-right: 1px solid rgb(135,155,197,0.5);
    border-bottom: 3px solid rgb(135,155,197);
    color: #000000;
    position: relative;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.05),
        -10px -10px 20px rgba(255, 255, 255, 0.5);
    background: #ffffff;
    font-size: 15px;
    border-top: 1px solid rgb(135,155,197,0.5);
}.course_demographic ul li::before {
    border-radius: 50%;
    width: 10px;
    content: "";
    top: -5px;
    left: -5px;
    position: absolute;
    height: 10px;
    background: rgb(174,188,218);
}.course_demographic ul li::after {
    height: 10px;
    border-radius: 50%;
    right: -5px;
    position: absolute;
    width: 10px;
    content: "";
    background: rgb(135,155,197);
    bottom: -5px;
}.course_demographic ul li:hover {
    border-bottom: 3px solid rgb(174,188,218);
    transform: translateY(-5px);
    border-left: 3px solid rgb(135,155,197);
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.1),
        -15px -15px 30px rgba(255, 255, 255, 0.6);
}.course_demographic ul li svg {
    left: 20px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    height: 35px;
    transition: all 0.4s ease;
    width: 35px;
}.course_demographic ul li:hover svg {
    transform: translateY(-50%) scale(1.2);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}.course_demographic ul li svg path {
    fill: rgb(174,188,218);
    transition: fill 0.4s ease;
}.course_demographic ul li:hover svg path {
    fill: rgb(135,155,197);
}.course_demographic ul::before {
    opacity: 0.3;
    z-index: -1;
    content: "";
    position: absolute;
    background-image: 
        linear-gradient(45deg, transparent 97%, rgb(174,188,218,0.5) 97%),
        linear-gradient(135deg, transparent 97%, rgb(135,155,197,0.5) 97%);
    width: 100%;
    height: 100%;
    left: 0;
    pointer-events: none;
    top: 0;
    background-size: 30px 30px;
}@keyframes pulseCircle {
    0%, 100% {
        box-shadow: 0 0 10px rgb(174,188,218,0.5);
    }
    50% {
        box-shadow: 0 0 20px rgb(174,188,218);
    }
}

.course_demographic ul li:nth-child(odd) {
    animation: lightsOn 3s infinite alternate;
}.course_demographic ul li:nth-child(even) {
    animation: lightsOn 5s infinite alternate-reverse;
}

@keyframes lightsOn {
    0% {
        box-shadow: 
            10px 10px 20px rgba(0, 0, 0, 0.05),
            -10px -10px 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 
            10px 10px 20px rgba(0, 0, 0, 0.05),
            -10px -10px 20px rgba(255, 255, 255, 0.5),
            0 0 15px rgb(174,188,218,0.5);
    }
}

@media (max-width: 992px) {.course_demographic {
    padding: 80px 0;
}.course_demographic ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}.course_demographic h3 {
    margin-bottom: 60px;
    font-size: calc(36px * 0.9);
}
}

@media (max-width: 768px) {.course_demographic {
    padding: 60px 0;
}.course_demographic ul {
    gap: 20px;
    grid-template-columns: 1fr;
}.course_demographic ul li {
    padding: 20px 20px 20px 65px;
}.course_demographic h3 {
    margin-bottom: 40px;
    font-size: calc(36px * 0.8);
}
}

@media (max-width: 480px) {.course_demographic {
    padding: 50px 0;
}.course_demographic .learn_learn {
    padding: 0 15px;
}.course_demographic h3 {
    margin-bottom: 35px;
    font-size: calc(36px * 0.7);
}.course_demographic ul li {
    padding: 18px 15px 18px 60px;
}.course_demographic ul li svg {
    width: 30px;
    left: 15px;
    height: 30px;
}}.course_program_info {
    padding: 100px 0;
    background: rgb(214,221,239);
    overflow: hidden;
    position: relative;
}.course_program_info::before {
    opacity: 0.4;
    height: 100%;
    z-index: 0;
    width: 100%;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    background: 
        linear-gradient(135deg, rgb(174,188,218,0.5) 0%, transparent 40%),
        linear-gradient(225deg, rgb(135,155,197,0.5) 0%, transparent 40%);
}.course_program_info::after {
    z-index: 0;
    animation: gridMove 20s linear infinite;
    content: "";
    width: 100%;
    top: 0;
    opacity: 0.2;
    left: 0;
    position: absolute;
    height: 100%;
}.course_program_info .container {
    position: relative;
    z-index: 1;
}.course_program_info .learn_learn {
    justify-content: center;
    min-height: 500px;
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
}.course_program_info .img_panel {
    height: 100%;
    z-index: 0;
    width: 100%;
    left: 0;
    position: absolute;
    top: 0;
}.course_program_info .img_panel::before {
    content: "";
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}.course_program_info .learn_track {
    grid-template-areas: 
        "logo logo"
        "title photo1"
        "desc photo2";
    position: relative;
    width: 100%;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto auto 1fr;
    z-index: 2;
    gap: 30px;
    display: grid;
}.course_program_info .nav_begin {
    align-items: center;
    justify-self: center;
    display: flex;
    grid-area: logo;
    position: relative;
    z-index: 10;
    height: 80px;
    background: #ffffff;
    margin-bottom: 20px;
    justify-content: center;
    width: 80px;
    border-radius: 50%;
    box-shadow: 
        0px 10px 30px rgba(0, 0, 0, 0.1),
        0px 4px 10px rgb(174,188,218,0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}.course_program_info .nav_begin::before {
    border-radius: 50%;
    z-index: -1;
    background: conic-gradient(
        from 0deg, 
        rgb(174,188,218,0.5), 
        rgb(135,155,197,0.5), 
        rgb(174,188,218,0.5)
    );
    left: -8px;
    opacity: 0.6;
    content: "";
    top: -8px;
    animation: spin 10s linear infinite;
    position: absolute;
    bottom: -8px;
    right: -8px;
}.course_program_info .nav_begin::after {
    z-index: -2;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
    position: absolute;
    top: -15px;
    border-radius: 50%;
    left: -15px;
    border: 1px solid rgb(174,188,218,0.5);
    content: "";
    right: -15px;
    bottom: -15px;
}.course_program_info .nav_begin:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0px 15px 40px rgba(0, 0, 0, 0.15),
        0px 6px 15px rgb(174,188,218,0.5);
}.course_program_info .nav_begin svg {
    transition: transform 0.5s ease;
    height: 45px;
    width: 45px;
}.course_program_info .nav_begin:hover svg {
    transform: rotate(-10deg);
}.course_program_info .nav_begin svg path {
    fill: rgb(174,188,218);
    transition: fill 0.3s ease;
}.course_program_info .nav_begin:hover svg path {
    fill: rgb(135,155,197);
}.course_program_info h3 {
    padding: 30px 40px;
    background: #ffffff;
    transform: translateX(-5%);
    color: #000000;
    z-index: 5;
    margin: 0;
    font-size: 30px;
    grid-area: title;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    font-weight: 700;
    position: relative;
    transition: all 0.5s ease;
    border-radius: 0 12px 12px 0;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}.course_program_info h3::before {
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    content: "";
    z-index: -1;
    border: 1px dashed rgb(174,188,218,0.5);
    position: absolute;
    opacity: 0.5;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-radius: 0 10px 10px 0;
    left: 10px;
}.course_program_info h3::after {
    bottom: 15px;
    content: "";
    transition: width 0.4s ease;
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(174,188,218), rgb(135,155,197));
    height: 3px;
    left: 40px;
    position: absolute;
    width: 60px;
}.course_program_info .learn_track:hover h3 {
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(0%);
}.course_program_info .learn_track:hover h3::after {
    width: 100px;
}.course_program_info p {
    background: #ffffff;
    line-height: 1.8;
    margin: 0;
    clip-path: polygon(0% 0%, 93% 0%, 100% 50%, 93% 100%, 0% 100%);
    position: relative;
    border-radius: 0 12px 12px 0;
    font-size: 16px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    color: #000000;
    transform: translateX(-10%);
    padding: 35px 40px;
    z-index: 4;
    transition: all 0.5s ease 0.1s;
    grid-area: desc;
    padding-right: 70px;
}.course_program_info p::before {
    border: 1px dashed rgb(135,155,197,0.5);
    content: "";
    top: 10px;
    border-radius: 0 10px 10px 0;
    left: 10px;
    bottom: 10px;
    clip-path: polygon(0% 0%, 93% 0%, 100% 50%, 93% 100%, 0% 100%);
    right: 10px;
    opacity: 0.5;
    z-index: -1;
    position: absolute;
}.course_program_info .learn_track:hover p {
    transform: translateX(-5%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}.course_program_info .img_panel::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.5;
    left: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    top: 0;
    mix-blend-mode: multiply;
    background: rgba(0, 0, 0, 0.5);
}.course_program_info .learn_track::after {
    background-size: cover;
    transform: translateX(15%);
    position: relative;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    background: inherit;
    transition: all 0.5s ease 0.1s;
    grid-area: photo2;
    border-radius: 12px 0 0 12px;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
    height: 100%;
    background-position: center bottom;
    content: "";
}.course_program_info .learn_track:hover::before {
    transform: translateX(5%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}.course_program_info .learn_track:hover::after {
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(10%);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {.course_program_info {
    padding: 80px 0;
}.course_program_info .learn_track {
    grid-template-columns: 55% 45%;
    gap: 25px;
}.course_program_info h3 {
    font-size: calc(30px - 2px);
    padding: 25px 35px;
}.course_program_info p {
    padding: 30px 35px;
}
}

@media (min-width: 768px) and (max-width: 991px) {.course_program_info {
    padding: 70px 0;
}.course_program_info .learn_learn {
    min-height: auto;
}.course_program_info .learn_track {
    grid-template-areas: 
            "logo logo"
            "title title"
            "desc desc"
            "photo1 photo2";
    grid-template-rows: auto auto auto 250px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}.course_program_info h3 {
    clip-path: none;
    transform: none;
    padding: 25px 30px;
    font-size: calc(30px - 4px);
    border-radius: 12px;
}.course_program_info h3::before {
    clip-path: none;
    border-radius: 10px;
}.course_program_info p {
    border-radius: 12px;
    padding: 25px 30px;
    transform: none;
    clip-path: none;
}.course_program_info p::before {
    clip-path: none;
    border-radius: 10px;
}.course_program_info .learn_track::before,
    .course_program_info .learn_track::after {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
    transform: none;
    border-radius: 12px;
    height: 250px;
}.course_program_info .learn_track::after {
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}.course_program_info .learn_track:hover h3,
    .course_program_info .learn_track:hover p,
    .course_program_info .learn_track:hover::before,
    .course_program_info .learn_track:hover::after {
    transform: none;
}.course_program_info .nav_begin {
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
}.course_program_info .nav_begin svg {
    width: 40px;
    height: 40px;
}
}

@media (max-width: 767px) {.course_program_info {
    padding: 60px 0;
}.course_program_info .learn_learn {
    min-height: auto;
}.course_program_info .learn_track {
    gap: 15px;
    grid-template-areas: 
            "logo"
            "title"
            "desc"
            "photo1";
    grid-template-rows: auto auto auto 200px;
    grid-template-columns: 1fr;
}.course_program_info h3 {
    transform: none;
    clip-path: none;
    font-size: calc(30px - 6px);
    padding: 20px 25px;
    border-radius: 12px;
}.course_program_info h3::before {
    display: none;
}.course_program_info h3::after {
    bottom: 10px;
    left: 25px;
    height: 2px;
    width: 50px;
}.course_program_info p {
    transform: none;
    line-height: 1.6;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: calc(16px - 1px);
    clip-path: none;
}.course_program_info p::before {
    display: none;
}.course_program_info .learn_track::before {
    clip-path: none;
    transform: none;
    height: 200px;
    border-radius: 12px;
}.course_program_info .learn_track::after {
    display: none;
}.course_program_info .learn_track:hover h3,
    .course_program_info .learn_track:hover p,
    .course_program_info .learn_track:hover::before {
    transform: none;
}.course_program_info .nav_begin {
    width: 60px;
    margin-bottom: 10px;
    height: 60px;
}.course_program_info .nav_begin::before,
    .course_program_info .nav_begin::after {
    display: none;
}.course_program_info .nav_begin svg {
    width: 35px;
    height: 35px;
}}.title_screen {
    background: linear-gradient(135deg, rgb(135,155,197,0.5), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    justify-content: center;
}.title_screen::before {
    content: "";
    background: repeating-linear-gradient(
    45deg,
    rgb(174,188,218,0.5) 0px,
    transparent 2px,
    transparent 10px,
    rgb(174,188,218,0.5) 12px
  );
    top: 0;
    animation: subtleShift 20s infinite linear;
    width: 100%;
    z-index: 1;
    opacity: 0.05;
    position: absolute;
    height: 100%;
    left: 0;
}.title_screen::after {
    animation: pulseGlow 15s infinite alternate ease-in-out;
    opacity: 0.1;
    top: -50%;
    background: radial-gradient(
    circle at center,
    rgb(135,155,197) 0%,
    transparent 70%
  );
    position: absolute;
    z-index: 0;
    content: "";
    transform: scale(2);
    height: 100%;
    right: -50%;
    width: 100%;
}.title_screen .learn_skillspro {
    max-width: 1200px;
    gap: 2rem;
    display: grid;
    padding: 3rem 1.5rem;
    width: 90%;
    grid-template-columns: 1fr;
    z-index: 3;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
}.title_screen .learn_skillspro > div:first-child {
    background: linear-gradient(
    145deg, 
    rgb(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
    position: relative;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
    box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.5),
    0 1px 0 rgb(135,155,197,0.5) inset;
    animation: slideInFromLeft 1s ease-out forwards;
    backdrop-filter: blur(8px);
    transform: translateZ(20px);
    padding: 1.5rem;
}.title_screen .learn_skillspro > div:first-child p {
    color: #000000;
    position: relative;
    font-size: calc(14px * 1.2);
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    margin: 0;
}.title_screen .learn_skillspro > div:first-child p::after {
    background: linear-gradient(to right, rgb(174,188,218), rgb(135,155,197));
    height: 3px;
    width: 80px;
    left: 0;
    bottom: -10px;
    transition: width 0.3s ease;
    position: absolute;
    content: "";
}.title_screen .learning_program {
    z-index: 4;
    position: relative;
    animation: fadeInUp 1.2s ease-out forwards;
    transform: translateZ(40px);
}.title_screen .learning_program > div {
    position: relative;
    overflow: hidden;
    border-left: 4px solid rgb(174,188,218);
    padding: 2.5rem;
}.title_screen .learning_program > div::before {
    width: 100%;
    background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0;
}.title_screen .learning_program h3 {
    margin: 0 0 2rem 0;
    z-index: 2;
    font-size: calc(19px * 1.1);
    line-height: 1.5;
    animation: fadeSlideUp 0.8s 0.5s forwards ease;
    font-weight: 400;
    position: relative;
    color: #ffffff;
    transform: translateY(10px);
    padding-right: 2rem;
    opacity: 0;
}.title_screen .learning_program h3::before {
    background: rgb(174,188,218);
    content: "";
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    width: 12px;
    left: -2rem;
    top: 50%;
    height: 12px;
}.title_screen .title_style_header {
    position: relative;
    opacity: 0;
    font-size: calc(33px * 1.2);
    font-weight: 700;
    line-height: 1.2;
    animation: slideRightFade 1s 0.8s forwards ease-out;
    padding: 1.5rem 0;
    color: #ffffff;
    z-index: 2;
    margin: 0;
    transform: translateX(-10px);
    letter-spacing: 1px;
}.title_screen .title_style_header::after {
    position: absolute;
    animation: lineGrow 1.5s 1.2s forwards cubic-bezier(0.25, 0.1, 0.25, 1);
    bottom: 0;
    left: 0;
    content: "";
    height: 4px;
    background: linear-gradient(to right, rgb(174,188,218), rgb(135,155,197));
    width: 0;
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 180px; }
}

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

@keyframes pulseGlow {
  0% { transform: scale(2); opacity: 0.05; }
  50% { transform: scale(2.2); opacity: 0.15; }
  100% { transform: scale(2); opacity: 0.05; }
}

@keyframes slideInFromLeft {
  0% { transform: translateX(-30px) translateZ(20px); opacity: 0; }
  100% { transform: translateX(0) translateZ(20px); opacity: 1; }
}

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

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

@keyframes slideRightFade {
  0% { transform: translateX(-20px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@media (min-width: 768px) {.title_screen .learn_skillspro {
    gap: 3rem;
    padding: 4rem 2rem;
    grid-template-columns: 1fr 1.5fr;
    transform: perspective(1000px) rotateX(3deg);
}.title_screen .learn_skillspro > div:first-child {
    padding: 2rem;
    display: flex;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
    align-items: center;
}.title_screen .learn_skillspro > div:first-child p {
    font-size: calc(14px * 1.3);
    line-height: 1.7;
}.title_screen .learning_program > div {
    box-shadow: 0 20px 40px -20px #000000;
    transition: transform 0.5s ease;
    border-left: 6px solid rgb(174,188,218);
    padding: 3rem;
}.title_screen .learning_program > div:hover {
    transform: translateY(-5px);
}.title_screen .learning_program h3 {
    padding-right: 3rem;
    font-size: 19px;
}.title_screen .title_style_header {
    padding: 2rem 0;
    font-size: 41px;
}
}

@media (min-width: 1024px) {.title_screen .learn_skillspro {
    width: 85%;
    gap: 4rem;
    padding: 5rem 2rem;
}.title_screen .learn_skillspro > div:first-child {
    margin-top: -2rem;
    padding: 2.5rem;
}.title_screen .learning_program > div {
    padding: 4rem;
}.title_screen .learning_program h3 {
    margin-bottom: 3rem;
}.title_screen .title_style_header::after {
    animation: lineGrow 1.5s 1.2s forwards cubic-bezier(0.25, 0.1, 0.25, 1);
}
  
  @keyframes lineGrow {
    from { width: 0; }
    to { width: 220px; }
  }
}

@media (min-width: 1400px) {.title_screen .learn_skillspro {
    gap: 5rem;
    max-width: 1400px;
}.title_screen .learn_skillspro > div:first-child p {
    font-size: calc(14px * 1.4);
}.title_screen .learning_program > div {
    padding: 5rem;
}.title_screen .title_style_header {
    font-size: calc(41px * 1.1);
}
}

@media (max-width: 767px) {.title_screen {
    padding: 3rem 0;
}.title_screen .learn_skillspro {
    gap: 2rem;
    padding: 2rem 1rem;
}.title_screen .learn_skillspro > div:first-child {
    padding: 1.25rem;
}.title_screen .learn_skillspro > div:first-child p {
    font-size: 14px;
}.title_screen .learning_program > div {
    padding: 2rem 1.5rem;
}.title_screen .learning_program h3 {
    margin-bottom: 1.5rem;
    font-size: calc(21px * 1.1);
}.title_screen .title_style_header {
    font-size: calc(33px * 0.9);
    padding: 1rem 0;
}.title_screen .title_style_header::after {
    height: 3px;
}@keyframes lineGrow {
    from { width: 0; }
    to { width: 120px; }
  }
}.tyPanel {
    overflow: hidden;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, rgb(214,221,239) 0%, rgb(135,155,197,0.5) 100%);
    position: relative;
}.tyPanel::before {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.06;
    pointer-events: none;
    width: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgb(135,155,197,0.5) 0px,
            rgb(135,155,197,0.5) 1px,
            transparent 1px,
            transparent 20px
        );
    height: 100%;
    content: "";
}.tyPanel::after {
    top: -50px;
    opacity: 0.2;
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgb(174,188,218,0.5);
    right: -50px;
    transform: rotate(15deg);
    content: "";
    animation: float 18s infinite ease-in-out;
}.tyPanel .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.tyPanel .learn_learn {
    padding: 60px 50px;
    position: relative;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-2deg);
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-left: 5px solid rgb(174,188,218);
    display: flex;
}.tyPanel .learn_learn:hover {
    transform: perspective(1000px) rotateY(0deg);
}.tyPanel .learn_learn::before {
    border: 1px solid rgb(135,155,197,0.5);
    position: absolute;
    opacity: 0.2;
    right: 20px;
    left: 20px;
    pointer-events: none;
    content: "";
    bottom: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.98);
    top: 20px;
}.tyPanel .learn_learn:hover::before {
    transform: scale(1);
    opacity: 0.3;
}.tyPanel .learn_learn > div:first-child {
    margin-bottom: 30px;
    position: relative;
}.tyPanel .learn_learn > div:first-child::after {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left center;
    bottom: -15px;
    content: "";
    position: absolute;
    transform: scaleX(0.7);
    left: 0;
    background: rgb(174,188,218);
    width: 80px;
    height: 3px;
}.tyPanel .learn_learn:hover > div:first-child::after {
    transform: scaleX(1);
}.tyPanel h5 {
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
    font-size: 22px;
    display: inline-block;
    position: relative;
}.tyPanel h5::before {
    content: "";
    left: -30px;
    font-size: calc(22px * 2.5);
    opacity: 0.3;
    top: -20px;
    position: absolute;
    color: rgb(174,188,218,0.5);
}.tyPanel p {
    font-size: 17px;
    margin: 0;
    color: #000000;
    line-height: 1.8;
    transition: color 0.3s ease;
    font-weight: 400;
    font-family: Arial, sans-serif;
}.tyPanel a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}.tyPanel a::after {
    position: absolute;
    transform-origin: right center;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    background-color: rgb(174,188,218);
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}.tyPanel a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}.tyPanel a:hover p {
    color: rgb(174,188,218);
}

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

@media (min-width: 992px) {.tyPanel .learn_learn {
    padding: 80px 70px;
}.tyPanel h5 {
    font-size: calc(22px * 1.1);
}.tyPanel p {
    line-height: 1.9;
    font-size: calc(17px * 1.05);
}
}

@media (max-width: 991px) {.tyPanel {
    padding: 90px 0 70px;
}.tyPanel .learn_learn {
    padding: 50px 40px;
}
}

@media (max-width: 767px) {.tyPanel {
    padding: 70px 0 50px;
}.tyPanel .learn_learn {
    padding: 40px 30px;
    transform: perspective(1000px) rotateY(-1deg);
}.tyPanel h5 {
    font-size: calc(22px * 0.95);
}.tyPanel p {
    font-size: calc(17px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 575px) {.tyPanel {
    padding: 60px 0 40px;
}.tyPanel .learn_learn {
    border-left: 4px solid rgb(174,188,218);
    padding: 30px 25px;
}.tyPanel .learn_learn > div:first-child {
    margin-bottom: 25px;
}.tyPanel h5 {
    font-size: calc(22px * 0.9);
}.tyPanel h5::before {
    font-size: calc(22px * 2);
    left: -20px;
}.tyPanel .learn_learn > div:first-child::after {
    height: 2px;
    width: 60px;
}
}

@media (prefers-reduced-motion: reduce) {.tyPanel .learn_learn,
    .tyPanel .learn_learn::before,
    .tyPanel .learn_learn > div:first-child::after,
    .tyPanel a::after {
    transition: none;
}.tyPanel::after {
    animation: none;
}}.course_instructor {
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(214,221,239), rgb(135,155,197,0.5));
    position: relative;
}.course_instructor::before {
    transform: rotate(-15deg);
    z-index: 1;
    width: 60%;
    top: -10%;
    right: -10%;
    animation: float 8s ease-in-out infinite;
    position: absolute;
    background: rgb(174,188,218,0.5);
    content: "";
    height: 80%;
    border-radius: 13px;
}.course_instructor::after {
    z-index: 1;
    animation: float 6s ease-in-out infinite reverse;
    transform: rotate(20deg);
    bottom: -5%;
    background: rgb(135,155,197,0.5);
    border-radius: 13px;
    left: -5%;
    height: 60%;
    position: absolute;
    content: "";
    width: 40%;
}.course_instructor .container {
    position: relative;
    z-index: 2;
}.course_instructor .student_ratings {
    border-radius: 13px;
    background: #ffffff;
    gap: 15px;
    grid-template-areas: 
        "photo name"
        "photo job"
        "quote quote";
    grid-template-columns: 1fr 2fr;
    display: grid;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 40px;
    transform: rotate(-2deg);
}.course_instructor .student_ratings:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}.course_instructor .img_panel {
    transform: rotate(4deg);
    border-radius: 13px;
    transition: transform 0.3s ease;
    box-shadow: 10px 10px 0 rgb(174,188,218,0.5);
    grid-area: photo;
    height: 200px;
}.course_instructor .student_ratings:hover .img_panel {
    transform: rotate(0deg) scale(1.05);
}.course_instructor .name {
    grid-area: name;
    color: #000000;
    transform: translateX(20px);
    margin-top: 20px;
    font-weight: 700;
    font-size: 22px;
}.course_instructor .student_ratings span:not(.name) {
    font-style: italic;
    grid-area: job;
    transform: translateX(20px);
    font-size: 18px;
    color: #000000;
}.course_instructor .experience_summary {
    border-radius: 0 10px 10px 0;
    border-left: 4px solid rgb(174,188,218);
    background: linear-gradient(to right, rgb(214,221,239), transparent);
    grid-area: quote;
    line-height: 1.6;
    font-size: 18px;
    margin-top: 20px;
    color: #000000;
    padding: 20px;
    position: relative;
}.course_instructor .experience_summary::before {
    top: -10px;
    line-height: 1;
    color: rgb(174,188,218,0.5);
    content: "";
    left: 10px;
    position: absolute;
    font-family: serif;
    font-size: calc(39px * 2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-20px) rotate(-10deg);
    }
}

@media (max-width: 768px) {.course_instructor {
    padding: 60px 0;
}.course_instructor .student_ratings {
    padding: 30px 20px;
    grid-template-areas: 
            "img_panel"
            "name"
            "exp_container"
            "experience_summary";
    grid-template-columns: 1fr;
}.course_instructor .img_panel {
    margin: 0 auto;
    height: 180px;
    width: 80%;
}.course_instructor .name,
    .course_instructor .student_ratings span:not(.name) {
    text-align: center;
    transform: translateX(0);
}.course_instructor .experience_summary {
    padding: 15px;
}}.help_center {
    background: rgb(174,188,218,0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}.help_center::before {
    opacity: 0.7;
    height: 100%;
    top: 0;
    background: linear-gradient(135deg, rgb(174,188,218,0.5) 0%, rgb(135,155,197,0.5) 100%);
    position: absolute;
    z-index: 0;
    width: 100%;
    content: '';
    left: 0;
}.help_center::after {
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    opacity: 0.15;
    animation: backgroundShift 30s linear infinite;
    z-index: 1;
    width: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgb(174,188,218) 2px, transparent 2px) 0 0 / 50px 50px,
        radial-gradient(circle at 90% 80%, rgb(135,155,197) 2px, transparent 2px) 0 0 / 50px 50px;
    height: 100%;
}@keyframes backgroundShift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 50px 50px;
    }
}
.help_center .container {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.help_center .course_faq {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 40px;
}.help_center .course_faq::before {
    left: 0;
    border-radius: 10px 0 0 10px;
    width: 6px;
    position: absolute;
    background: linear-gradient(to bottom, rgb(174,188,218), rgb(135,155,197));
    height: 100%;
    top: 0;
    content: '';
}.help_center .course_faq::after {
    height: 100%;
    right: 0;
    content: '';
    top: 0;
    background: linear-gradient(135deg, transparent 50%, rgb(214,221,239) 50%);
    width: 40%;
    position: absolute;
    z-index: -1;
    opacity: 0.05;
}.help_center .course_faq:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}.help_center h3 {
    color: rgb(174,188,218);
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    margin-bottom: 25px;
}.help_center h3::after {
    height: 3px;
    border-radius: 10px;
    bottom: 0;
    background: linear-gradient(to right, rgb(174,188,218), rgb(135,155,197));
    content: '';
    left: 0;
    width: 60px;
    position: absolute;
}.help_center .send_query {
    line-height: 1.7;
    color: #000000;
    font-weight: 400;
    position: relative;
    padding-left: 15px;
    margin-bottom: 30px;
    border-left: 1px solid rgb(135,155,197,0.5);
    font-size: calc(17px + 0.05rem);
}.help_center .edu_input {
    gap: 20px;
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    display: grid;
}.help_center .edu_input::before {
    width: 100%;
    top: -20px;
    left: 0;
    height: 1px;
    position: absolute;
    background: linear-gradient(to right, rgb(174,188,218,0.5), transparent);
    content: '';
}.help_center .edu_input span {
    overflow: hidden;
    align-items: flex-start;
    border-radius: 10px;
    background: rgb(214,221,239);
    position: relative;
    display: flex;
    transition: all 0.3s ease;
    padding: 15px;
    margin-bottom: 15px;
}.help_center .edu_input span::before {
    height: 100%;
    position: absolute;
    border-radius: 10px 0 0 10px;
    width: 3px;
    top: 0;
    content: '';
    opacity: 0.7;
    left: 0;
    background: rgb(174,188,218);
    transition: width 0.3s ease;
}.help_center .edu_input span:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}.help_center .edu_input span:hover::before {
    width: 6px;
}.help_center .edu_input span svg {
    height: 20px;
    width: 20px;
    opacity: 0.6;
    fill: rgb(174,188,218);
    top: 12px;
    position: absolute;
    transition: all 0.3s ease;
    right: 12px;
}.help_center .edu_input span:hover svg {
    fill: rgb(135,155,197);
    opacity: 1;
    transform: rotate(15deg) scale(1.1);
}.help_center .edu_input span svg path {
    transition: all 0.3s ease;
    stroke-width: 0.5;
    stroke: #ffffff;
    fill: rgb(135,155,197);
}.help_center .edu_input span:hover svg path {
    stroke-width: 1;
}.help_center .edu_input span p {
    display: flex;
    font-weight: 400;
    line-height: 1.5;
    align-items: center;
    font-size: 17px;
    color: #000000;
    margin: 0;
}.help_center .edu_input span p svg {
    height: 16px;
    position: static;
    opacity: 0.8;
    width: 16px;
    margin-right: 8px;
}.help_center .edu_input span span {
    padding: 0;
    margin-left: 10px;
    color: rgb(174,188,218);
    align-items: center;
    background: transparent;
    display: inline-flex;
    font-weight: 600;
}.help_center .edu_input span span svg {
    margin-right: 6px;
    height: 14px;
    position: static;
    opacity: 0.8;
    width: 14px;
}.help_center .edu_input span span::before {
    display: none;
}.help_center .edu_input span span a {
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    color: rgb(174,188,218);
    align-items: center;
}.help_center .edu_input span span a svg {
    width: 14px;
    margin-right: 5px;
    transition: transform 0.3s ease;
    height: 14px;
}.help_center .edu_input span span a::after {
    height: 1px;
    bottom: -2px;
    content: '';
    left: 0;
    transition: width 0.3s ease;
    width: 0;
    position: absolute;
    background: rgb(174,188,218);
}.help_center .edu_input span span a:hover {
    color: rgb(135,155,197);
}.help_center .edu_input span span a:hover svg {
    transform: translateX(3px);
    fill: rgb(135,155,197);
}.help_center .edu_input span span a:hover::after {
    width: 100%;
}.help_center .get_help {
    background: linear-gradient(135deg, rgb(214,221,239) 0%, #ffffff 100%);
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    grid-column: 1 / -1;
    padding: 20px;
}.help_center .get_help::before {
    position: absolute;
    top: 0;
    content: '';
    background: linear-gradient(to right, rgb(174,188,218), rgb(135,155,197));
    left: 0;
    width: 100%;
    height: 4px;
}.help_center .get_help h4 {
    position: relative;
    align-items: center;
    display: inline-flex;
    color: rgb(174,188,218);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}.help_center .get_help h4 svg {
    margin-right: 8px;
    height: 18px;
    width: 18px;
    transition: transform 0.5s ease;
    fill: rgb(174,188,218);
}.help_center .get_help:hover h4 svg {
    transform: rotate(360deg);
}.help_center .get_help h4::after {
    bottom: -5px;
    left: 0;
    position: absolute;
    width: 0;
    background: rgb(135,155,197);
    content: '';
    height: 2px;
    transition: width 0.3s ease;
}.help_center .get_help:hover h4::after {
    width: 100%;
}.help_center .get_help span {
    position: relative;
    color: #000000;
    display: flex;
    border-bottom: 1px dashed rgb(174,188,218,0.5);
    font-size: 17px;
    transition: transform 0.3s ease;
    align-items: center;
    padding: 10px;
}.help_center .get_help span:last-child {
    border-bottom: none;
}.help_center .get_help span svg {
    transition: all 0.3s ease;
    fill: rgb(135,155,197);
    width: 12px;
    opacity: 0.7;
    margin-right: 8px;
    height: 12px;
}.help_center .get_help span:hover {
    transform: translateX(5px);
    color: rgb(174,188,218);
}.help_center .get_help span:hover svg {
    transform: scale(1.2);
    fill: rgb(174,188,218);
    opacity: 1;
}
@media (max-width: 991px) {.help_center {
    padding: 60px 0;
}.help_center .course_faq {
    padding: 30px;
}.help_center h3 {
    font-size: calc(36px - 0.2rem);
}.help_center .edu_input {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}.help_center .edu_input span svg {
    height: 18px;
    right: 10px;
    width: 18px;
    top: 10px;
}.help_center .get_help h4 svg {
    width: 16px;
    height: 16px;
}
}
@media (max-width: 767px) {.help_center {
    padding: 40px 0;
}.help_center .course_faq {
    padding: 25px;
}.help_center .course_faq::after {
    display: none;
}.help_center h3 {
    font-size: calc(36px - 0.3rem);
}.help_center .send_query {
    font-size: 17px;
}.help_center .edu_input {
    grid-template-columns: 1fr;
}.help_center .edu_input span {
    padding: 12px;
}.help_center .edu_input span svg {
    height: 16px;
    top: 8px;
    right: 8px;
    width: 16px;
}.help_center .get_help span svg {
    height: 10px;
    width: 10px;
}
}
@media (max-width: 480px) {.help_center {
    padding: 30px 0;
    border-radius: 10px;
}.help_center .container {
    padding: 0 15px;
}.help_center .course_faq {
    padding: 20px;
}.help_center h3 {
    margin-bottom: 20px;
    font-size: calc(36px - 0.4rem);
}.help_center .send_query {
    margin-bottom: 20px;
}.help_center .edu_input span {
    margin-bottom: 10px;
    padding: 10px;
}.help_center .get_help {
    padding: 15px;
}.help_center .get_help span {
    padding: 6px 0;
}.help_center .edu_input span svg {
    right: 6px;
    top: 6px;
    height: 14px;
    width: 14px;
}.help_center .get_help h4 svg {
    width: 14px;
    height: 14px;
}}.secure_safekeeping {
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    padding: 40px;
    background: linear-gradient(135deg, rgb(174,188,218,0.5) 30%, rgb(135,155,197,0.5) 100%);
}.secure_safekeeping h1 {
    font-size: 43px;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px;
    color: #000000;
    margin-bottom: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: rgb(174,188,218);
    text-transform: uppercase;
}.secure_safekeeping h2 {
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 35px;
    text-align: left;
    color: rgb(135,155,197);
    font-size: 32px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgb(174,188,218);
}.secure_safekeeping ul, .secure_safekeeping ol {
    font-size: 14px;
    font-family: Arial, sans-serif;
    padding: 15px 0;
    color: #000000;
    list-style-position: outside;
    padding-left: 20px;
    list-style: none;
}.secure_safekeeping li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}.secure_safekeeping li::before {
    left: 0;
    position: absolute;
    color: rgb(174,188,218);
    top: 0;
    line-height: 1em;
    content: '•';
    font-size: 1.5em;
}.secure_safekeeping p, .secure_safekeeping span, .secure_safekeeping div {
    margin-bottom: 15px;
    color: #000000;
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
}.secure_safekeeping p:hover, .secure_safekeeping span:hover, .secure_safekeeping div:hover {
    transform: translateY(-2px);
    color: rgb(174,188,218);
}

@media only screen and (max-width: 800px) {.secure_safekeeping {
    padding: 20px 10px;
    border-radius: 10px;
}.secure_safekeeping h1 {
    font-size: calc(23px - 10px);
    margin-top: 20px;
    margin-bottom: 20px;
}.secure_safekeeping h2 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: calc(23px - 8px);
}.secure_safekeeping ul, .secure_safekeeping ol {
    padding-left: 10px;
}.secure_safekeeping li {
    padding-left: 15px;
}}
.tariff_item {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}.tariff_item::before {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%,
        rgba(20, 20, 40, 0.75) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    content: "";
    right: 0;
    bottom: 0;
}.tariff_item .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
}.tariff_item .monthly_rate {
    perspective: 1000px;
}.tariff_item h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    transform: translateZ(30px);
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}.tariff_item .pricing_rates {
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto 50px;
    font-size: 15px;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    transform: translateZ(20px);
    opacity: 0.9;
    color: #ffffff;
    font-weight: 400;
}.tariff_item .plan_rates {
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
    display: grid;
    gap: 30px;
    margin: 0;
}.tariff_item .plan_rates li {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}.tariff_item .promo_plans {
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
}.tariff_item .learning_package {
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 100%);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}.tariff_item .learning_package::before {
    top: 0;
    position: absolute;
    left: 0;
    transform-origin: left;
    background: linear-gradient(90deg, 
        rgb(174,188,218) 0%,
        rgb(135,155,197) 100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    height: 5px;
    content: "";
    transform: scaleX(0.92);
    right: 0;
}.tariff_item .learning_package::after {
    position: absolute;
    left: 10px;
    transform-origin: bottom;
    height: 2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        rgb(135,155,197,0.5) 0%,
        rgb(174,188,218,0.5) 100%);
    right: 10px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    content: "";
    opacity: 0.7;
}.tariff_item .lesson_fees {
    transform: translateZ(10px);
    padding: 35px 30px;
}.tariff_item .lesson_fees h4 {
    color: #ffffff;
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
    font-size: calc(22px * 1.1);
    transform: translateZ(5px);
    font-weight: 700;
}.tariff_item .lesson_fees h4::after {
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    content: "";
    left: 0;
    background: rgb(174,188,218);
    transform-origin: left;
    width: 40px;
    height: 3px;
    bottom: -8px;
}.tariff_item .lesson_fees p {
    line-height: 1.6;
    font-size: 15px;
    margin: 0 0 25px;
    hyphens: auto;
    color: #ffffff;
    padding-right: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-height: 250px;
    opacity: 0.85;
    overflow-y: auto;
    font-weight: 400;
}.tariff_item .lesson_fees p::-webkit-scrollbar {
    width: 4px;
}.tariff_item .lesson_fees p::-webkit-scrollbar-thumb {
    background: rgb(174,188,218,0.5);
    border-radius: 10px;
}.tariff_item .fee_choices {
    margin-top: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: right;
    font-weight: 700;
    transform: translateZ(15px);
    display: block;
    font-size: calc(22px * 1.2);
    color: #ffffff;
}.tariff_item .fee_choices::before {
    box-shadow: 0 0 15px rgb(174,188,218);
    margin-right: 8px;
    content: "";
    background: rgb(174,188,218);
    display: inline-block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-2px);
}.tariff_item .plan_rates li:hover {
    transform: translateY(-5px) scale(1.02);
}.tariff_item .plan_rates li:hover .learning_package {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3),
                0 10px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateZ(20px);
}.tariff_item .plan_rates li:hover .learning_package::before {
    transform: scaleX(1);
}.tariff_item .plan_rates li:hover .learning_package::after {
    opacity: 0.9;
    transform: scaleY(1.5);
}.tariff_item .plan_rates li:hover .lesson_fees h4::after {
    width: 100%;
}

@media (max-width: 991px) {.tariff_item {
    padding: 80px 0;
}.tariff_item h2 {
    font-size: calc(28px * 0.9);
}.tariff_item .plan_rates {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}.tariff_item .lesson_fees {
    padding: 30px 25px;
}
}

@media (max-width: 767px) {.tariff_item {
    padding: 60px 0;
}.tariff_item h2 {
    font-size: calc(28px * 0.8);
    margin-bottom: 15px;
}.tariff_item .pricing_rates {
    margin-bottom: 40px;
    font-size: calc(15px * 0.95);
}.tariff_item .plan_rates {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
}.tariff_item .lesson_fees {
    padding: 25px 20px;
}.tariff_item .lesson_fees h4 {
    font-size: 22px;
}.tariff_item .fee_choices {
    font-size: calc(22px * 1.1);
}
}

@media (max-width: 480px) {.tariff_item {
    padding: 50px 0;
}.tariff_item h2 {
    font-size: calc(28px * 0.7);
}.tariff_item .pricing_rates {
    font-size: calc(15px * 0.9);
}.tariff_item .lesson_fees {
    padding: 20px 15px;
}.tariff_item .lesson_fees p {
    font-size: calc(15px * 0.9);
    max-height: 200px;
    line-height: 1.5;
}}.about_this {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(214,221,239) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 5rem 0;
}.about_this::before {
    position: absolute;
    top: 0;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgb(174,188,218,0.5) 0%, transparent 60%);
    content: "";
    width: 100%;
    z-index: 1;
    left: 0;
    opacity: 0.7;
    animation: pulse 15s infinite alternate ease-in-out;
}.about_this::after {
    height: 200px;
    border-radius: 50%;
    right: -100px;
    position: absolute;
    content: "";
    animation: rotate 30s infinite linear;
    width: 200px;
    top: -100px;
    z-index: 0;
    border: 1px solid rgb(135,155,197,0.5);
}.about_this .container {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.about_this h1 {
    margin-bottom: 3rem;
    transform: translateX(20px);
    color: #000000;
    animation: slideIn 0.8s forwards 0.2s ease-out;
    display: inline-block;
    font-weight: 700;
    opacity: 0;
    position: relative;
    font-size: 38px;
}.about_this h1::after {
    transform-origin: left;
    transform: scaleX(0);
    left: 0;
    width: 60%;
    position: absolute;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, rgb(174,188,218) 0%, transparent 100%);
    bottom: -10px;
    animation: expandLine 1s forwards 0.8s ease-out;
}.about_this .skill_studio {
    position: relative;
}.about_this .skill_studio::before {
    left: -25px;
    border: 2px solid rgb(174,188,218,0.5);
    top: -25px;
    position: absolute;
    width: 50px;
    border-radius: 50%;
    animation: float 6s infinite alternate ease-in-out;
    content: "";
    z-index: 0;
    height: 50px;
}.about_this ul {
    gap: 3rem;
    list-style: none;
    padding: 0;
    grid-template-columns: 1fr;
    margin: 0;
    display: grid;
}.about_this .growth_hist {
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(30px);
    transition: transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
    background: #ffffff;
    animation: fadeUp 1s forwards 0.4s ease-out;
    opacity: 0;
    border-radius: 8px;
}.about_this .growth_hist:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}.about_this .growth_hist::before {
    top: -60px;
    background: linear-gradient(90deg, rgb(174,188,218,0.5) 0%, transparent 100%);
    height: 120px;
    transform: rotate(-3deg);
    content: "";
    left: -10%;
    position: absolute;
    transition: opacity 0.3s;
    opacity: 0.1;
    width: 120%;
}.about_this .growth_hist:hover::before {
    opacity: 0.2;
}.about_this .growth_hist:nth-child(2) {
    animation-delay: 0.6s;
}.about_this .growth_hist:nth-child(2)::before {
    background: linear-gradient(90deg, rgb(135,155,197,0.5) 0%, transparent 100%);
    transform: rotate(3deg);
}.about_this h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #000000;
    font-size: calc(19px * 1.1);
    position: relative;
    display: inline-block;
    margin-top: 0;
}.about_this h4::after {
    content: "";
    transform: scaleX(0);
    bottom: -8px;
    position: absolute;
    left: 0;
    transform-origin: left;
    width: 40px;
    animation: expandLine 0.5s forwards 1.2s ease-out;
    height: 3px;
    background: rgb(174,188,218);
}.about_this .growth_hist:nth-child(2) h4::after {
    background: rgb(135,155,197);
    animation-delay: 1.4s;
}.about_this .growth_hist div {
    position: relative;
    padding-right: 10px;
    max-height: 300px;
    color: #000000;
    overflow-y: auto;
    line-height: 1.8;
    font-size: 14px;
}.about_this .growth_hist div::-webkit-scrollbar {
    width: 4px;
}.about_this .growth_hist div::-webkit-scrollbar-track {
    background: #ffffff;
}.about_this .growth_hist div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(174,188,218,0.5);
}.about_this .growth_hist:nth-child(2) div::-webkit-scrollbar-thumb {
    background: rgb(135,155,197,0.5);
}

@media (min-width: 768px) {.about_this {
    padding: 7rem 0;
}.about_this ul {
    grid-template-columns: repeat(2, 1fr);
}.about_this h1 {
    margin-left: 2rem;
    font-size: calc(38px * 1.1);
}.about_this .growth_hist {
    padding: 3rem;
}.about_this .growth_hist div {
    max-height: 350px;
}
}

@media (min-width: 992px) {.about_this {
    padding: 8rem 0;
}.about_this::before {
    animation: pulse 20s infinite alternate ease-in-out;
}.about_this ul {
    gap: 4rem;
}.about_this .growth_hist {
    transform: translateY(30px) rotate(-1deg);
}.about_this .growth_hist:nth-child(2) {
    transform: translateY(30px) rotate(1deg);
}.about_this .growth_hist:hover {
    transform: translateY(-5px) scale(1.02) rotate(0);
}.about_this .growth_hist:nth-child(2):hover {
    transform: translateY(-5px) scale(1.02) rotate(0);
}.about_this .growth_hist div {
    max-height: 400px;
}.about_this h1 {
    margin-left: 4rem;
}
}

@media (min-width: 1200px) {.about_this h1 {
    font-size: calc(38px * 1.2);
    margin-left: 6rem;
}.about_this .growth_hist {
    padding: 3.5rem;
}.about_this .growth_hist div {
    max-height: 450px;
}}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}.contact {
    overflow: hidden;
    padding: 100px 0;
    background-color: rgb(214,221,239);
    position: relative;
}.contact::before {
    left: 0;
    opacity: 0.15;
    background: linear-gradient(120deg, rgb(174,188,218,0.5) 0%, transparent 75%);
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
}.contact::after {
    background: linear-gradient(240deg, rgb(135,155,197,0.5) 0%, transparent 70%);
    content: "";
    height: 70%;
    bottom: 0;
    width: 70%;
    opacity: 0.1;
    position: absolute;
    right: 0;
}.contact .container {
    padding: 0 30px;
    z-index: 1;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.contact h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    font-size: 29px;
    font-family: Arial, sans-serif;
    position: relative;
}.contact .request_links {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-top: 50px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
}.contact .img_panel {
    min-height: 500px;
    flex: 0 0 40%;
    overflow: hidden;
    position: relative;
}.contact .img_panel::after {
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.4));
    top: 0;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}.contact .feedback_info {
    position: relative;
    padding: 60px;
    flex: 0 0 60%;
}.contact .feedback_info::before {
    left: 0;
    border-radius: 2.5px;
    content: "";
    width: 5px;
    height: calc(100% - 80px);
    background: linear-gradient(to bottom, rgb(174,188,218), rgb(135,155,197));
    top: 40px;
    position: absolute;
}.contact form {
    padding-left: 25px;
    width: 100%;
}.contact form h3 {
    margin-bottom: 35px;
    font-size: 20px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #000000;
}.contact form input[type="text"] {
    background: rgb(214,221,239);
    padding: 18px 25px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
    width: 100%;
}.contact form input[type="text"]:focus {
    box-shadow: 0 0 0 2px rgb(174,188,218,0.5);
    background: rgba(rgb(174,188,218), 0.05);
    outline: none;
}.contact form input[type="text"]::placeholder {
    color: rgba(#000000, 0.4);
}.contact .help_section {
    align-items: flex-start;
    display: flex;
    margin: 10px 0 30px;
}.contact .help_section input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact .help_section label {
    padding-left: 35px;
    line-height: 1.5;
    color: #000000;
    font-size: 16px;
    position: relative;
    cursor: pointer;
}.contact .help_section label::before {
    top: 2px;
    width: 22px;
    left: 0;
    transition: all 0.2s ease;
    height: 22px;
    border-radius: 10px;
    content: "";
    border: 2px solid rgb(174,188,218,0.5);
    position: absolute;
}.contact .help_section input[type="checkbox"]:checked + label::before {
    border-color: rgb(174,188,218);
    background-color: rgb(174,188,218);
}.contact .help_section input[type="checkbox"]:checked + label::after {
    position: absolute;
    left: 8px;
    top: 9px;
    content: "";
    height: 11px;
    border-bottom: 2px solid #ffffff;
    width: 6px;
    transform: rotate(45deg);
    border-right: 2px solid #ffffff;
}.contact .help_section label a {
    transition: all 0.3s ease;
    color: rgb(174,188,218);
    text-decoration: none;
}.contact .help_section label a:hover {
    text-decoration: underline;
    color: rgb(135,155,197);
}.contact form .connect_links {
    padding: 15px 35px;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    font-weight: 600;
    cursor: pointer;
    font-family: Arial, sans-serif;
    display: inline-block;
    overflow: hidden;
    color: #ffffff;
    border-radius: 10px;
    background: linear-gradient(45deg, rgb(174,188,218), rgb(135,155,197));
}.contact form .connect_links::before {
    width: 120%;
    height: 120%;
    transform: rotate(45deg) translateX(-200%);
    top: -10%;
    position: absolute;
    content: "";
    left: -10%;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.2);
}.contact form .connect_links:hover {
    box-shadow: 0 8px 15px rgba(rgb(174,188,218), 0.3);
    transform: translateY(-2px);
}.contact form .connect_links:hover::before {
    transform: rotate(45deg) translateX(200%);
}.contact svg {
    fill: rgb(174,188,218);
    height: 22px;
    width: 22px;
}.contact svg path {
    transition: fill 0.3s ease;
    fill: rgb(174,188,218);
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.1;
    }
}

@media screen and (max-width: 1024px) {.contact .feedback_info {
    padding: 50px 40px;
}
}

@media screen and (max-width: 991px) {.contact .img_panel {
    flex: 0 0 100%;
    min-height: 300px;
}.contact .feedback_info {
    flex: 0 0 100%;
}.contact .feedback_info::before {
    top: 0;
    left: 40px;
    width: calc(100% - 80px);
    background: linear-gradient(to right, rgb(174,188,218), rgb(135,155,197));
    height: 5px;
}.contact form {
    padding-left: 0;
    padding-top: 25px;
}
}

@media screen and (max-width: 767px) {.contact {
    padding: 70px 0;
}.contact .img_panel {
    min-height: 250px;
}.contact .feedback_info {
    padding: 40px 30px;
}.contact .feedback_info::before {
    width: calc(100% - 60px);
    left: 30px;
}
}

@media screen and (max-width: 480px) {.contact {
    padding: 50px 0;
}.contact h2 {
    font-size: calc(29px * 0.8);
}.contact .img_panel {
    min-height: 200px;
}.contact .feedback_info {
    padding: 30px 20px;
}.contact .feedback_info::before {
    width: calc(100% - 40px);
    left: 20px;
}.contact form h3 {
    margin-bottom: 25px;
    font-size: calc(20px * 0.9);
}.contact form input[type="text"] {
    padding: 15px 20px;
}.contact form .connect_links {
    width: 100%;
    text-align: center;
}}.stay_updated {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(174,188,218,0.5) 0%, rgb(135,155,197) 100%);
    position: relative;
    padding: 80px 0;
}.stay_updated::before {
    left: -50%;
    position: absolute;
    height: 200%;
    transform: rotate(15deg);
    content: '';
    background-size: 40px 40px;
    background: radial-gradient(circle at center, rgb(255, 255, 255, 0.5) 0.5%, transparent 8%);
    pointer-events: none;
    width: 200%;
    opacity: 0.1;
    top: -50%;
}.stay_updated::after {
    right: 0;
    opacity: 0.2;
    height: 100%;
    position: absolute;
    transform: skewX(-15deg) translateX(20%);
    top: 0;
    background: linear-gradient(to right, transparent, rgb(174,188,218,0.5));
    content: '';
    width: 40%;
}.stay_updated .container {
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.stay_updated .learn_learn {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    transition: transform 0.5s ease-out;
    transform: perspective(1000px) rotateY(-2deg);
    backdrop-filter: blur(10px);
    flex-direction: column;
    position: relative;
    box-shadow: 0 15px 30px 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);
    border-left: 4px solid rgb(135,155,197);
    align-items: center;
}.stay_updated .learn_learn:hover {
    transform: perspective(1000px) rotateY(0deg);
}.stay_updated h3 {
    position: relative;
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    text-align: center;
}.stay_updated .input_holder {
    flex-direction: column;
    display: flex;
    position: relative;
    gap: 15px;
    max-width: 600px;
    width: 100%;
}.stay_updated .input_holder > div {
    width: 100%;
    position: relative;
}.stay_updated .input_holder > div::before {
    height: 18px;
    content: '';
    pointer-events: none;
    left: 20px;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.7;
    width: 18px;
    transform: translateY(-50%);
    top: 50%;
    background-size: contain;
}.stay_updated input[type="email"] {
    font-size: 18px;
    padding: 18px 20px 18px 50px;
    width: 100%;
    border-radius: 10px;
    border: none;
    color: #000000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
    background: rgba(255, 255, 255, 0.9);
}.stay_updated input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(rgb(135,155,197), 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transform: translateY(-2px);
}.stay_updated input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}.stay_updated input[type="email"]:focus::placeholder {
    transform: translateX(5px);
    opacity: 0.6;
}.stay_updated .sub_col {
    border-radius: 10px;
    background: linear-gradient(135deg, rgb(135,155,197) 0%, rgb(135,155,197,0.5) 100%);
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    align-self: center;
    font-weight: 600;
    border: none;
    cursor: pointer;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
    color: #ffffff;
    padding: 16px 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.stay_updated .sub_col:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}.stay_updated .sub_col:active {
    transform: translateY(-1px);
}.stay_updated .sub_col::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    left: -100%;
    top: 0;
    transition: left 0.7s ease;
    height: 100%;
    position: absolute;
    content: '';
}.stay_updated .sub_col:hover::after {
    left: 100%;
}

@media (min-width: 768px) {.stay_updated .input_holder {
    align-items: stretch;
    flex-direction: row;
}.stay_updated .input_holder > div {
    flex: 1;
}.stay_updated .sub_col {
    align-self: stretch;
    white-space: nowrap;
}.stay_updated .learn_learn {
    transform: perspective(1000px) rotateY(-1deg);
    padding: 60px;
}
}

@media (max-width: 767px) {.stay_updated {
    padding: 60px 0;
}.stay_updated .learn_learn {
    transform: none;
    padding: 40px 25px;
}.stay_updated h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}.stay_updated input[type="email"] {
    padding: 15px 15px 15px 45px;
}.stay_updated .sub_col {
    width: 100%;
    padding: 14px 20px;
}.stay_updated .input_holder > div::before {
    height: 16px;
    width: 16px;
    left: 15px;
}
}

@media (max-width: 480px) {.stay_updated {
    padding: 40px 0;
}.stay_updated .learn_learn {
    padding: 30px 20px;
}.stay_updated h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}
}

@media (min-width: 1200px) {.stay_updated::before {
    background-size: 50px 50px;
}.stay_updated .learn_learn {
    transform: perspective(1500px) rotateY(-1deg);
}
}

@media (prefers-reduced-motion: reduce) {.stay_updated .learn_learn,
  .stay_updated .learn_learn:hover,
  .stay_updated input[type="email"],
  .stay_updated input[type="email"]:focus,
  .stay_updated .sub_col,
  .stay_updated .sub_col:hover,
  .stay_updated .sub_col:active,
  .stay_updated .sub_col::after,
  .stay_updated .sub_col:hover::after,
  .stay_updated input[type="email"]::placeholder,
  .stay_updated input[type="email"]:focus::placeholder {
    transform: none;
    transition: none;
}}header .top_plank {
    background: rgb(174,188,218);
    color:  #ffffff;
}header .top_plank .learning_menu div svg, header .top_plank .learning_menu div svg path {
    fill: #ffffff;
}header .top_plank .learning_menu div span {
    color: #ffffff;
}header .top_plank .learning_menu {
    padding: 15px 0 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    line-height: 21px;
    width: 100%;
    font-size: 13px;
}header .top_plank .learning_menu div {
    justify-content: flex-start;
    margin-right: 24px;
    display: flex;
    align-items: center;
}header .top_plank .learning_menu div img, header .top_plank .learning_menu div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}footer {
    position: relative;
}footer::before {
    opacity: 0.92;
    bottom: 0;
    background: linear-gradient(210deg, #000000 0%, rgb(174,188,218) 100%);
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    z-index: 1;
    left: 0;
}.challenge_cta {
    color: #ffffff;
    z-index: 2;
    padding: 90px 0 50px;
    font-family: Arial, sans-serif;
    position: relative;
}.challenge_cta::before {
    position: absolute;
    width: 100%;
    opacity: 0.1;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    top: 0;
    height: 1px;
    left: 0;
    content: '';
}.challenge_cta .container {
    display: flex;
    flex-direction: column;
}.challenge_cta .company_holder {
    border-radius: 23px;
    transform: perspective(1000px) rotateX(2deg);
    padding: 30px;
    margin-top: 70px;
    animation: shiftGradient 15s ease infinite;
    background-size: 200% 200%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    order: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    backdrop-filter: blur(10px);
}.challenge_cta .company_holder h3 {
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 700;
    letter-spacing: 3px;
}.challenge_cta .company_holder h3::after {
    background: rgb(174,188,218);
    width: 60px;
    border-radius: 3px;
    height: 3px;
    margin: 15px auto 0;
    content: '';
    display: block;
}.challenge_cta .footer_address {
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    padding-top: 15px;
    max-width: 80%;
    position: relative;
}.challenge_cta .level_up {
    order: 1;
    position: relative;
}.challenge_cta .page_header {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 60px;
    display: flex;
}.challenge_cta .site_header {
    min-width: 250px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    flex: 1;
    max-width: calc(50% - 30px);
    transform: translateZ(0);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease;
}.challenge_cta .site_header:nth-child(odd) {
    transform: perspective(1000px) rotateY(2deg);
}.challenge_cta .site_header:nth-child(even) {
    transform: perspective(1000px) rotateY(-2deg);
}.challenge_cta .site_header:hover {
    transform: perspective(1000px) rotateY(0);
}.challenge_cta .site_header::before {
    border-radius: 10px;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: -1;
    position: absolute;
    content: '';
}.challenge_cta .site_header h5 {
    word-wrap: break-word;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    padding-bottom: 15px;
    font-size: 22px;
    margin-bottom: 30px;
    color: #ffffff;
}.challenge_cta .site_header h5::before {
    height: 1px;
    background: rgb(135,155,197);
    bottom: -1px;
    width: 50px;
    content: '';
    left: 0;
    position: absolute;
}.challenge_cta .site_header .page_header {
    gap: 12px;
    flex-direction: column;
    display: flex;
    margin: 0;
    padding: 0 10px;
}.challenge_cta .site_header .page_header a {
    display: flex;
    opacity: 0.8;
    align-items: center;
    white-space: normal;
    font-size: 15px;
    word-break: break-word;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}.challenge_cta .site_header .page_header a::before {
    transform: scale(0);
    background: rgb(135,155,197);
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    content: '';
    opacity: 0;
    min-width: 6px;
    margin-right: 10px;
    transition: all 0.3s ease;
}.challenge_cta .site_header .page_header a:hover {
    color: #ffffff;
    transform: translateX(5px);
    opacity: 1;
}.challenge_cta .site_header .page_header a:hover::before {
    opacity: 1;
    transform: scale(1);
}.training_zone {
    z-index: 2;
    position: relative;
    padding: 25px 0;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.2);
}.training_zone::before {
    content: '';
    background: linear-gradient(90deg, transparent, rgb(135,155,197,0.5), transparent);
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}.training_zone .container {
    text-align: center;
}.training_zone .discuss_cta {
    opacity: 0.7;
    font-size: 13px;
    color: #ffffff;
}@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.challenge_cta .level_up::before {
    left: -5%;
    bottom: -10%;
    content: '';
    height: 250px;
    position: absolute;
    animation: pulse 10s infinite ease-in-out reverse;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.1;
    background: rgb(135,155,197);
    width: 250px;
    border-radius: 50%;
}footer::after {
    top: 0;
    left: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    position: absolute;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
    pointer-events: none;
    content: '';
}

@media (max-width: 992px) {.challenge_cta {
    padding: 70px 0 40px;
}.challenge_cta .page_header {
    gap: 40px;
}.challenge_cta .company_holder {
    margin-top: 50px;
}
}

@media (max-width: 768px) {.challenge_cta {
    padding: 50px 0 30px;
}.challenge_cta .page_header {
    flex-direction: column;
    gap: 30px;
}.challenge_cta .site_header {
    max-width: 100%;
    min-width: 100%;
}.challenge_cta .company_holder {
    padding: 20px;
}.challenge_cta .footer_address {
    max-width: 100%;
}
}

@media (max-width: 576px) {.challenge_cta {
    padding: 40px 0 20px;
}.challenge_cta .company_holder h3 {
    font-size: calc(37px * 0.8);
}.challenge_cta .site_header h5 {
    font-size: calc(22px * 0.9);
}
}