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

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

.title-greeting .start-top::before {
    background: linear-gradient(
        225deg,
        #000000 0%,
        rgb(208,212,198,0.5) 30%,
        rgba(0, 0, 0, 0.5) 70%,
        rgb(173,179,161,0.5) 100%
    );
    opacity: 0.65;
    width: 100%;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    height: 100%;
    z-index: 2;
}

.title-greeting .learning-lead:nth-child(2n) img {
    animation-direction: alternate-reverse;
}

.title-greeting .text-cloud {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    backdrop-filter: blur(3px);
    border-radius: 24px;
    opacity: 0.85;
    text-align: center;
    border: 1px solid #000000;
    width: 90%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgb(208,212,198,0.5) 80%,
        rgba(0, 0, 0, 0.5) 100%
    );
    padding: 3rem;
    position: relative;
    z-index: 10;
    max-width: 750px;
    box-shadow: 0 10px 30px #000000;
}

.title-greeting .text-cloud .inquiry-list:hover::before {
    opacity: 1;
}



@supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {.title-greeting .text-cloud {
    -webkit-backdrop-filter: blur(3px);
    background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgb(208,212,198,0.5) 80%,
            rgba(0, 0, 0, 0.5) 100%
        );
    backdrop-filter: blur(3px);
}}



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

.training-results .pic-strip-wrap {
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
    transform: rotate(-1deg);
    height: auto;
    width: 100%;
    z-index: 1;
    box-shadow: 
    15px 15px 30px rgba(0, 0, 0, 0.1),
    -5px -5px 20px rgba(255, 255, 255, 0.6);
    position: relative;
    max-height: 400px;
}

.training-results ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.training-results li {
    transform: translateX(0);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.training-results li p {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 
    3px 3px 10px rgba(0, 0, 0, 0.03),
    -2px -2px 5px rgba(255, 255, 255, 0.8);
    margin: 0;
    color: #000000;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
}

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

.course-overview h2::after {
    transform: translateX(-50%) scaleX(0.8);
    left: 50%;
    transition: transform 0.5s ease;
    bottom: -12px;
    content: "";
    background: linear-gradient(90deg, rgb(208,212,198) 0%, rgb(173,179,161) 100%);
    position: absolute;
    height: 4px;
    width: 80px;
}

.course-overview .pic-strip-wrap:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(40px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
               0 8px 20px rgba(0, 0, 0, 0.1);
}

.course-overview .text-cloud::before {
    background: linear-gradient(to bottom, rgb(208,212,198), rgb(173,179,161));
    width: 3px;
    transition: height 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    content: "";
}

header .top_plank {
    background: rgb(208,212,198);
    color:  #ffffff;
}

header .top_plank .elite-learnpro div span {
    color: #ffffff;
}

header .top_plank .elite-learnpro div img, header .top_plank .elite-learnpro div svg {
    width: 16px;
    margin-right: 8px;
    height: 16px;
}

.customer-reviews::after {
    left: 0;
    opacity: 0.05;
    top: 0;
    z-index: 1;
    position: absolute;
    width: 100%;
    content: '';
    background-image: 
        repeating-linear-gradient(45deg, rgb(208,212,198,0.5) 0, rgb(208,212,198,0.5) 1px, transparent 1px, transparent 10px);
    height: 100%;
}

.customer-reviews .learn-way {
    padding: 2rem 0;
    position: relative;
    overflow: visible;
}

.customer-reviews .learner-ratings::before {
    top: -0.5rem;
    color: rgb(208,212,198,0.5);
    opacity: 0.15;
    right: 1.5rem;
    z-index: -1;
    line-height: 1;
    content: '"';
    font-family: serif;
    font-size: 8rem;
    position: absolute;
}

.customer-reviews .learner-ratings .description {
    font-style: italic;
    flex-grow: 1;
    color: #000000;
    position: relative;
    font-size: 13px;
    z-index: 2;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.customer-reviews .learner-ratings:nth-child(odd) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
    transform: translateY(10px) scale(1);
}

.pricing-column::before {
    z-index: 1;
    right: 0;
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.65) 100%);
}

.pricing-column .price-choices li {
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.pricing-column .price-choices li:nth-child(3) {
    animation-delay: 0.5s;
}

.pricing-column .cert-fees::before {
    position: absolute;
    height: 100%;
    left: -100%;
    pointer-events: none;
    content: "";
    transition: left 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    width: 100%;
}

.pricing-column .price-sheet h4 {
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    transition: transform 0.3s ease;
    margin: 0 0 20px;
    font-size: 23px;
    color: rgb(208,212,198);
}

.pricing-column .cert-fees:hover .price-sheet h4::after {
    width: 60px;
}

.pricing-column .cert-fees:hover .premium-cost {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.pricing-column .cert-fees:hover .premium-cost::before {
    opacity: 1;
    transform: scale(1);
}

.stay-updated {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(173,179,161,0.5), rgb(208,212,198));
}

.stay-updated::after {
    transform: rotate(25deg) skewY(5deg);
    position: absolute;
    filter: blur(30px);
    z-index: -1;
    content: "";
    left: -5%;
    background: rgb(173,179,161,0.5);
    bottom: -5%;
    height: 50%;
    animation: float 12s infinite alternate-reverse ease-in-out;
    width: 25%;
}

.stay-updated .input_holder {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1.25rem;
}

.stay-updated .input_holder div {
    flex: 1;
    position: relative;
}

.stay-updated input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    transform: translateY(-2px);
    border-color: rgb(173,179,161);
    box-shadow: 0 0 0 3px rgb(173,179,161,0.5);
}

.stay-updated .mail-list::before {
    transition: transform 0.6s ease;
    width: 100%;
    content: "";
    left: 0;
    transform: translateX(-100%);
    position: absolute;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 100%;
    top: 0;
}

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

.training-specialist .learner-ratings > div:first-child {
    justify-self: center;
    position: relative;
}

.training-specialist .pic-strip-wrap {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    height: 150px;
    overflow: hidden;
    width: 150px;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.1),
        0 5px 10px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border-radius: 0;
}

.training-specialist .learner-ratings:hover .pic-strip-wrap::before {
    opacity: 0.8;
}

.training-specialist .learner-ratings:hover .name::after {
    width: 100%;
}

.training-specialist .learner-ratings > div:nth-child(2) > div {
    transform: translateY(0);
    font-weight: 600;
    font-size: calc(14px * 0.95);
    letter-spacing: 0.03em;
    margin-top: 0.25rem;
    padding: 0.35rem 1rem;
    position: relative;
    color: rgb(173,179,161);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    background: linear-gradient(to right, rgba(rgb(173,179,161,0.5), 0.1), transparent);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.training-method::after {
    width: 35%;
    pointer-events: none;
    bottom: -5%;
    transform: rotate(10deg) translateZ(-30px);
    height: 70%;
    background: linear-gradient(-45deg, rgb(208,212,198) 0%, transparent 70%);
    left: -2%;
    opacity: 0.15;
    content: "";
    z-index: 0;
    position: absolute;
}

.training-method .learn-way > div:hover::before {
    opacity: 0.2;
}

.training-method h3 {
    margin-bottom: 1.5rem;
    position: relative;
    transform: translateZ(10px);
    font-size: calc(35px * 0.85);
    font-family: Arial, sans-serif;
    color: #000000;
    padding-bottom: 1rem;
    font-weight: 700;
}

.training-method p {
    color: #000000;
    margin-bottom: 0;
    transform: translateZ(5px);
    line-height: 1.7;
    font-size: 12px;
    position: relative;
}

header .header-edu::before {
    background: 
        radial-gradient(circle at 10% 20%, rgb(208,212,198,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(173,179,161,0.5) 0%, transparent 30%);
    opacity: 0.2;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    content: "";
    width: 100%;
    position: absolute;
}

header .site-core svg {
    height: 50px;
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
    width: auto;
}

header .header-site {
    position: relative;
    perspective: 800px;
    margin: 5px 8px;
}

header .header-site:hover::before {
    transform: translateY(-50%) scale(1);
    left: -15px;
    opacity: 1;
}

header .header-site a {
    display: block;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    background: transparent;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 18px;
    position: relative;
    font-size: 13px;
    color: #000000;
    transform-style: preserve-3d;
    overflow: hidden;
    text-decoration: none;
}

.privacy-lock::before {
    z-index: 1;
    content: "";
    opacity: 0.07;
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgb(208,212,198,0.5) 49%, rgb(208,212,198,0.5) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgb(173,179,161,0.5) 49%, rgb(173,179,161,0.5) 51%, transparent 52%);
    left: 0;
}

.privacy-lock p {
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-lock li {
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 18px;
    padding-left: 1.5rem;
}

footer {
    z-index: 1;
    position: relative;
}

footer {
    background-size: cover !important;
    background-position: center !important;
}

.footer-address .container {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.footer-address .company_holder::after {
    right: 1.5rem;
    content: "";
    background: linear-gradient(to bottom, #ffffff, transparent);
    opacity: 0.3;
    height: 100%;
    position: absolute;
    top: 0;
    width: 1px;
}

.footer-address .biz-learnings {
    gap: 0;
    display: flex;
    flex: 0 0 60%;
    flex-wrap: wrap;
}

.footer-address .header-top {
    flex: 0 0 50%;
    padding: 0 1rem 2rem 1rem;
    position: relative;
}

.footer-address .header-top .top-bar a {
    padding: 0.7rem 1rem;
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    transform: skewX(-5deg);
    font-size: 17px;
    color: #ffffff;
}

.idea-pool .facebook-cta {
    transform: skewX(-5deg);
    color: #ffffff;
    text-align: center;
    width: 100%;
    font-size: 14px;
}

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

.thanksNote .learn-way > div:first-child {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    padding: 3rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    transform: translateZ(20px);
}

.thanksNote h5 {
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.01em;
    color: #000000;
    font-size: calc(18px * 1.1);
}

.thanksNote a:hover {
    transform: translateX(5px);
}

.reach-out::before {
    background-size: 60px 60px;
    width: 100%;
    content: "";
    height: 100%;
    background: linear-gradient(45deg, 
        rgb(208,212,198,0.5) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgb(208,212,198,0.5) 50%, 
        rgb(208,212,198,0.5) 75%, 
        transparent 75%, 
        transparent);
    opacity: 0.05;
    animation: gradientMove 20s linear infinite;
    left: 0;
    top: 0;
    position: absolute;
}

.reach-out form h3 {
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 20px;
    border-bottom: 2px solid rgb(173,179,161,0.5);
    color: #000000;
    margin-bottom: 40px;
}

.reach-out form input#name::before {
    transform: translateY(-50%);
    position: absolute;
    left: 20px;
    border-radius: 50%;
    height: 20px;
    background: rgb(208,212,198);
    width: 20px;
    top: 50%;
    content: "";
}

.reach-out .connect-widget input[type="checkbox"]:checked + label::after {
    height: 14px;
    position: absolute;
    width: 8px;
    top: 4px;
    border-bottom: 2px solid #ffffff;
    left: 8px;
    content: "";
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
}

.reach-out form .inquiry-list:hover {
    box-shadow: 0 10px 20px -10px rgb(208,212,198);
    transform: translateY(-3px);
}

.reach-out form #name,
.reach-out form #phone {
    position: relative;
}

.our-mission {
    padding: 120px 0 100px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
}

.our-mission h2 {
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    font-size: 45px;
    margin-bottom: 80px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.our-mission .learn-space {
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: all 0.4s ease;
    border-radius: 26px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

.our-mission .learn-space::after {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: 0;
    filter: blur(40px);
    opacity: 0.05;
    background: rgb(208,212,198,0.5);
    top: 0;
    content: "";
    z-index: -1;
}

.our-mission .learn-space:last-child {
    animation: slideUp 0.7s 0.2s ease forwards;
}

.our-mission .fast-classes::after {
    height: 1px;
    content: "";
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(208,212,198,0.5), rgb(173,179,161,0.5), transparent);
    position: absolute;
    bottom: -30px;
}

#cookiePolicyPanel {
    display: none;
}

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

.cookie-banner-window p a {
    text-decoration: none;
    color: rgb(208,212,198);
}

.core-container .cookie-edu {
    color: #ffffff;
    border: none;
    padding: 10px;
    background: rgb(208,212,198);
    font-weight: 400;
    font-size: 20px;
    margin-left: 30px;
}

.service-contact::after {
    content: "";
    background: linear-gradient(90deg, transparent, rgb(208,212,198), rgb(173,179,161), transparent);
    height: 1px;
    animation: scanline 4s linear infinite;
    bottom: 0;
    position: absolute;
    left: 0;
    width: 100%;
}

.service-contact .chat-form::after {
    z-index: 1;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(208,212,198), rgb(173,179,161));
    content: "";
}

.service-contact p {
    margin-bottom: 30px;
    color: #000000;
    line-height: 1.8;
    font-weight: 400;
    font-size: 17px;
    position: relative;
}

.service-contact p:last-of-type:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.service-contact p svg path {
    fill: rgb(208,212,198);
    transition: fill 0.3s ease;
}

.service-contact .edu-asksup::before {
    width: 100%;
    background: 
    linear-gradient(45deg, rgb(208,212,198,0.5), transparent 70%),
    linear-gradient(135deg, transparent 70%, rgb(173,179,161,0.5));
    opacity: 0;
    top: 0;
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-contact .edu-asksup:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px) scale(1.05);
    border-radius: 20px;
}

.course-overview .description::-webkit-scrollbar {
    width: 4px;
}

.course-overview .description::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.course-overview .description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(to bottom, rgb(208,212,198), rgb(173,179,161));
}

.pricing-column .price-sheet p::-webkit-scrollbar {
    width: 5px;
}

.pricing-column .price-sheet p::-webkit-scrollbar-track {
    background: transparent;
}

.pricing-column .price-sheet p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(208,212,198,0.5);
}



@media (max-height: 600px) {.title-greeting {
    height: auto;
    min-height: 450px;
}.title-greeting .text-cloud {
    padding: 1.5rem;
}.title-greeting .text-cloud h1 {
    margin-bottom: 0.8rem;
}.title-greeting .text-cloud p {
    margin-bottom: 1rem;
}
}



@media (min-width: 768px) {.course-overview {
    padding: 8rem 0;
}.course-overview h2 {
    margin-bottom: 3.5rem;
    font-size: calc(37px * 1.1);
}.course-overview .ready-skills {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}.course-overview .pic-strip-wrap {
    height: 500px;
}.course-overview .text-cloud {
    padding: 3rem;
}
}



@media (max-width: 1200px) {.customer-reviews {
    padding: 5rem 0;
}.customer-reviews h2 {
    font-size: calc(34px * 0.9);
}.customer-reviews .client-stories {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}
}



@media (max-width: 375px) {.customer-reviews h2 {
    font-size: calc(34px * 0.6);
}.customer-reviews .learner-ratings {
    padding: 1.25rem 1rem;
}
}



@media (max-width: 991px) {.pricing-column {
    padding: 80px 0;
}.pricing-column .price-choices {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}.pricing-column .price-sheet {
    min-height: 350px;
    padding: 25px;
}
}



@media (min-width: 768px) {.stay-updated {
    padding: 6rem 2rem;
}.stay-updated .learn-way {
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
    padding: 4rem;
}.stay-updated .input_holder {
    flex-direction: row;
    align-items: center;
}.stay-updated h3 {
    margin-bottom: 2.5rem;
    max-width: 80%;
}.stay-updated .input_holder::before {
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 50% 100%);
}
}



@media (min-width: 768px) {.training-specialist {
    padding: 6rem 0;
}.training-specialist .learner-ratings {
    align-items: start;
    gap: 2.5rem;
    grid-template-columns: auto 1fr 2fr;
    padding: 3rem;
}.training-specialist .learner-ratings > div:nth-child(2) {
    align-items: flex-start;
    text-align: left;
}.training-specialist .pic-strip-wrap {
    height: 180px;
    width: 180px;
}.training-specialist .emp-overview {
    padding: 0 1rem 0 0;
}.training-specialist .container {
    padding: 0 4rem;
}
}



@media screen and (max-width: 575px) {.training-method {
    padding: 4rem 0;
}.training-method .container {
    padding: 0 1.5rem;
}.training-method .learn-way > div {
    padding: 1.75rem;
    border-left: 4px solid rgb(208,212,198);
}.training-method h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    font-size: calc(35px * 0.65);
}.training-method h3::after {
    width: 4rem;
    height: 2px;
}.training-method p {
    font-size: calc(12px * 0.9);
    line-height: 1.5;
}}



@media (max-width: 576px) {.privacy-lock {
    padding: 1.5rem 0.5rem;
}.privacy-lock .container {
    padding: 1.25rem;
}.privacy-lock h1 {
    font-size: calc(43px * 0.7);
}.privacy-lock h2 {
    font-size: calc(29px * 0.7);
}.privacy-lock h3 {
    font-size: calc(29px * 0.6);
}.privacy-lock h4 {
    font-size: calc(29px * 0.5);
}.privacy-lock p, 
    .privacy-lock li,
    .privacy-lock span {
    font-size: calc(18px * 0.9);
}.privacy-lock span::before {
    left: -0.75rem;
}}



@media (max-width: 576px) {.footer-address {
    padding: 3rem 0 1rem;
}.footer-address::before {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}.footer-address .header-top {
    flex: 0 0 100%;
    padding: 0 0 2rem 0;
}.footer-address .company_holder {
    margin-bottom: 2rem;
}.footer-address .header-top .top-bar a {
    padding: 0.6rem 0.8rem;
}.footer-address .header-top .top-bar a:hover {
    padding-left: 1.2rem;
}.idea-pool {
    margin-top: 1rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}
}



@media (max-width: 767px) {.thanksNote {
    padding: 4rem 0;
}.thanksNote .learn-way > div:first-child,
    .thanksNote .learn-way > div:last-child {
    padding: 2rem;
}.thanksNote h5 {
    font-size: 18px;
}.thanksNote p {
    font-size: calc(17px * 0.95);
}
}



@media screen and (max-width: 480px) {.reach-out {
    padding: 60px 0 40px;
}.reach-out h2 {
    margin-bottom: 30px;
    font-size: calc(35px * 0.8);
}.reach-out .pic-strip-wrap {
    min-height: 200px;
}.reach-out .inquiry-map {
    padding: 30px 20px;
}.reach-out form h3 {
    margin-bottom: 30px;
    font-size: calc(20px * 0.9);
}.reach-out form .inquiry-list {
    padding: 14px 20px;
    width: 100%;
}}



@media (max-width: 576px) {.our-mission {
    padding: 60px 0 50px;
}.our-mission h2 {
    font-size: calc(29px);
    margin-bottom: 40px;
}.our-mission h2::before {
    width: 50px;
    bottom: -15px;
    height: 3px;
}.our-mission .fast-classes {
    gap: 30px;
}.our-mission .learn-space {
    padding: 25px;
}.our-mission .learn-space h3 {
    margin-bottom: 20px;
    font-size: calc(19px * 0.9);
}.our-mission .learn-space p {
    font-size: calc(12px * 0.95);
}
}



@media (max-width: 576px) {.service-contact {
    padding: 50px 0;
}.service-contact .chat-form {
    padding: 35px 25px;
}.service-contact h2 {
    padding-left: 15px;
    font-size: calc(36px * 0.8);
}.service-contact h2::before {
    width: 8px;
    height: 8px;
}.service-contact p {
    font-size: calc(17px * 0.9);
}.service-contact p:last-of-type {
    padding: 10px 12px;
}.service-contact p svg {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}.service-contact .request-form {
    justify-content: space-around;
    gap: 12px;
}.service-contact .edu-asksup {
    border-radius: 10px;
    height: 55px;
    width: 55px;
}.service-contact .edu-asksup svg {
    width: 22px;
    height: 22px;
}.service-contact .edu-asksup:hover {
    border-radius: 12px;
}
}



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

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



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

