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

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

html {
    scrollbar-width: auto;
    scrollbar-color: #ffffff rgb(255, 255, 255, 0.5);
}

html,body {
    font-family: Arial, sans-serif;
    height: 100%;
    min-height: 100%;
    color: #000000;
    scroll-behavior: smooth;
}

.privacy_niche h2 {
    color: rgb(141,136,174);
    margin: 15px 0;
    font-size: 37px;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.privacy_niche li {
    font-size: 16px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    color: #000000;
}

.course_rewards::before {
    left: -10%;
    content: "";
    z-index: 0;
    width: 120%;
    background: radial-gradient(circle at 30% 70%, rgba(rgb(177,178,206,0.5), 0.1), transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(rgb(141,136,174,0.5), 0.08), transparent 40%);
    height: 120%;
    top: -10%;
    position: absolute;
    animation: rotateGradient 30s infinite linear;
}

.course_rewards .text_item {
    position: relative;
    transition: transform 0.6s ease-out;
    transform: perspective(1000px) rotateX(1deg) translateZ(0);
    background: linear-gradient(145deg, 
    rgba(rgb(255, 255, 255, 0.5), 0.9) 0%, 
    rgba(rgb(255, 255, 255, 0.5), 0.8) 100%
  );
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    z-index: 3;
}

.course_rewards h1::after {
    transition: width 0.5s ease-out;
    width: 80px;
    background: rgb(177,178,206);
    position: absolute;
    content: "";
    transform-origin: left center;
    height: 3px;
    bottom: -12px;
    left: 0;
}

.course_rewards li:hover svg {
    transform: scale(1.15);
}

.course_rewards li svg path {
    transition: fill 0.3s ease;
    fill: rgb(177,178,206);
}

.potential_enrollees {
    padding: 110px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, rgb(215,216,230) 100%);
}

.potential_enrollees .community_team {
    position: relative;
}

.potential_enrollees div > div {
    flex-wrap: wrap;
    display: flex;
    position: relative;
    justify-content: center;
    gap: 50px;
}

.potential_enrollees div > div::before {
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(177,178,206,0.5), transparent);
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
}

.potential_enrollees p::before {
    border-radius: 10px;
    position: absolute;
    opacity: 0;
    left: 0;
    height: 100%;
    content: "";
    width: 100%;
    background: linear-gradient(135deg, transparent 0%, rgb(177,178,206,0.5) 300%);
    transition: opacity 0.4s ease;
    z-index: -1;
    top: 0;
}

.potential_enrollees p:hover {
    transform: translateY(-10px);
    border-color: rgb(177,178,206,0.5);
}

.potential_enrollees p svg path {
    transition: fill 0.3s ease;
    fill: rgb(177,178,206);
}

.potential_enrollees p:hover svg path {
    fill: rgb(141,136,174);
}

.potential_enrollees .community_team > div p:nth-child(1) {
    animation-delay: 0.1s;
}

.potential_enrollees .community_team > div p:nth-child(2) {
    animation-delay: 0.2s;
}

.potential_enrollees .community_team > div p:nth-child(4) {
    animation-delay: 0.4s;
}

.course_summary {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: rgb(215,216,230);
}

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

.course_summary .online_class {
    position: relative;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    background: #ffffff;
    flex-direction: column;
    overflow: hidden;
}

.course_summary .text_item {
    transform: translateY(-30px);
    background: #ffffff;
    margin: 0 15px;
    position: relative;
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.course_summary .text_item p.description {
    margin-bottom: 20px;
    color: #000000;
    font-family: Arial, sans-serif;
    max-height: 200px;
    opacity: 0;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 400;
    overflow-y: auto;
    position: relative;
    transform: translateY(10px);
    padding-right: 15px;
    animation: fadeUp 0.7s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.opening_page::after {
    top: 0;
    bottom: 0;
    mix-blend-mode: overlay;
    position: absolute;
    content: '';
    left: 0;
    z-index: -1;
    right: 0;
    background: linear-gradient(45deg, 
    rgb(177,178,206,0.5) 0%,
    transparent 40%,
    rgb(141,136,174,0.5) 100%);
}

.opening_page .title_style_header::before {
    height: 3px;
    bottom: 0;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(177,178,206), rgb(141,136,174));
}

.opening_page .page_primary:hover {
    transform: translateX(10px);
}

.opening_page .study_programs {
    background: linear-gradient(135deg, 
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.05) 100%);
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.opening_page .study_programs:hover::before {
    opacity: 1;
}

.opening_page .page_primary > div:last-child {
    padding: 1.5rem;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.opening_page .page_primary > div:last-child span {
    position: relative;
    padding-left: 20px;
    display: block;
}

.opening_page .page_primary > div:last-child:hover p {
    transform: translateX(5px);
}

footer {
    width: 100%;
    position: relative;
}

footer .alumni_net {
    overflow: hidden;
    padding: 80px 0 30px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
    background-color: rgb(141,136,174);
}

footer .info_item {
    position: relative;
    overflow: hidden;
    border-radius: 0 5px 5px 0;
    background-color: rgb(141,136,174,0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
    flex: 1 1 200px;
    padding: 15px 20px 15px 25px;
}

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

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

footer .top_site svg {
    display: block;
    width: auto;
    filter: brightness(0) invert(1);
    height: 45px;
    margin-bottom: 20px;
}

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

footer .top_start a::before {
    width: 3px;
    height: 100%;
    top: 0;
    background-color: rgb(177,178,206);
    transition: width 0.3s ease;
    left: 0;
    position: absolute;
    content: "";
}

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

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

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

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

footer .student_aid::before {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    left: 50%;
    position: absolute;
    content: "";
    top: -25px;
    width: 50px;
    transform: translateX(-50%);
}

.ty_page .container {
    position: relative;
    transform-style: preserve-3d;
    padding: 0 1.5rem;
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
}

.ty_page .community_team {
    overflow: hidden;
    padding: 3.5rem;
    position: relative;
    display: flex;
    box-shadow: 
        0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
        0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.05);
    background: linear-gradient(
        145deg, 
        rgba(rgb(255, 255, 255, 0.5), 0.95) 0%, 
        rgba(rgb(255, 255, 255, 0.5), 0.85) 100%
    );
    mask-image: linear-gradient(
        to bottom right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    gap: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateZ(0);
    flex-direction: column;
}

.ty_page h5::before {
    background: rgb(177,178,206);
    height: 0.5rem;
    width: 0.5rem;
    content: "";
    position: absolute;
    left: 0;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(rgb(177,178,206,0.5), 0.5);
    animation: pulse 3s infinite ease-in-out;
    top: 0.5rem;
}

.contact_panel::before {
    height: 100%;
    width: 100%;
    left: 0;
    backdrop-filter: blur(8px);
    z-index: 1;
    position: absolute;
    top: 0;
    content: '';
    background: rgba(0, 0, 0, 0.5);
}

.contact_panel .support_support {
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact_panel .help_request h3 {
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    font-size: 38px;
}

.contact_panel .help_request div {
    display: flex;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    align-items: center;
    position: relative;
    transform: translateX(0);
    padding-left: 15px;
}

.contact_panel .help_request svg {
    margin-right: 15px;
    height: 24px;
    fill: #ffffff;
    width: 24px;
}

.contact_panel .help_request div:hover svg path {
    fill: rgb(141,136,174);
}

.contact_panel .help_request span a:hover {
    color: rgb(141,136,174);
}



.contact_panel .query_support h3 {
    text-align: center;
    font-size: 38px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.contact_panel .query_support form {
    flex-direction: column;
    display: flex;
}

.contact_panel .query_support input[type="text"],
.contact_panel .query_support input[type="email"] {
    color: #ffffff;
    margin-bottom: 20px;
    padding: 15px 20px;
    font-size: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: Arial, sans-serif;
    border-radius: 18px;
}

.contact_panel .query_support .connect_widget label::after {
    content: '';
    top: 9px;
    left: 5px;
    transition: all 0.2s ease;
    height: 4px;
    border-left: 2px solid #ffffff;
    position: absolute;
    width: 8px;
    border-bottom: 2px solid #ffffff;
    opacity: 0;
    transform: rotate(-45deg) scale(0);
}

.contact_panel .query_support .connect_widget label a {
    transition: color 0.3s ease;
    color: rgb(141,136,174);
    text-decoration: none;
}

.contact_panel .query_support .inquiry_list:hover::before {
    left: 100%;
}

.contact_panel .query_support .inquiry_list:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.academic_expertise {
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgb(177,178,206,0.5) 0%, transparent 40%), 
              radial-gradient(circle at 30% 70%, rgb(141,136,174,0.5) 0%, transparent 40%), 
              #000000;
    padding: 7rem 2rem;
    overflow: hidden;
}

.academic_expertise .student_opinions::after {
    width: 100%;
    background: linear-gradient(135deg, rgb(177,178,206,0.5) 0%, transparent 50%);
    mix-blend-mode: overlay;
    top: 0;
    height: 100%;
    opacity: 0.3;
    left: 0;
    position: absolute;
    content: "";
    pointer-events: none;
}

.academic_expertise .student_opinions .name {
    text-shadow: 0 0 10px rgb(177,178,206,0.5), 0 0 20px rgb(177,178,206,0.5);
    font-size: 30px;
    color: #ffffff;
    animation: neonPulse 4s infinite alternate;
    grid-column: 2 / 3;
    position: relative;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 2px;
    grid-row: 1 / 2;
    padding: 3.5rem 2rem 0.5rem 3rem;
}

header .top_study {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

header .nav_top::after {
    opacity: 0.7;
    height: 2px;
    background: linear-gradient(to right, transparent, rgb(177,178,206), transparent);
    position: absolute;
    left: 0;
    content: '';
    bottom: -5px;
    width: 100%;
}

header .nav_top:hover svg {
    transform: scale(1.05);
}

header .top_nav:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgb(177,178,206), rgb(141,136,174));
    box-shadow: 0 4px 8px rgb(177,178,206,0.5);
}

.pricing_item::before {
    animation: float-effect 12s infinite alternate ease-in-out;
    z-index: 0;
    top: -50px;
    background: rgb(177,178,206,0.5);
    content: "";
    right: -50px;
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(80px);
}

.pricing_item .program_fees {
    text-align: center;
    max-width: 700px;
    order: -1;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.pricing_item .pricing_schemes {
    margin-bottom: 0;
    opacity: 0.85;
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
}

.pricing_item .learning_packages {
    color: inherit;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
}

.pricing_item .pricing_offers::before {
    position: absolute;
    height: 5px;
    left: 0;
    content: "";
    right: 0;
    background: linear-gradient(90deg, rgb(177,178,206), rgb(141,136,174));
    transform-origin: left;
    top: 0;
    transition: transform 0.5s ease;
    transform: scaleX(0);
}

.pricing_item .price_tiers {
    overflow-wrap: break-word;
    font-size: 19px;
    word-break: break-word;
    display: block;
    margin: 10px 0 20px;
    transition: transform 0.4s ease;
    color: rgb(141,136,174);
    font-weight: 700;
    position: relative;
    white-space: normal;
}

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

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

.about_this h2 {
    position: relative;
    text-align: center;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 70px;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 20px;
}

.about_this h2::after {
    transform: translateX(-50%) rotate(45deg);
    bottom: -3px;
    left: 50%;
    background: rgb(141,136,174);
    width: 10px;
    content: "";
    animation: float 3s ease-in-out infinite;
    position: absolute;
    height: 10px;
}

.about_this .smart_classes:nth-child(2) {
    border-top-color: rgb(141,136,174);
}

.about_this .smart_classes:nth-child(2) {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
}

.about_this .smart_classes:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about_this .smart_classes:hover::before {
    transform: scale(1.5);
}

.about_this .smart_classes:nth-child(1) h3 {
    color: rgb(177,178,206);
}

.about_this .smart_classes:nth-child(2) h3 {
    color: rgb(141,136,174);
}

.about_this .smart_classes:hover h3::after {
    width: 100%;
}

.about_this::after {
    background-size: 60px 60px;
    animation: moveDots 100s linear infinite;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    opacity: 0.2;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(177,178,206,0.5) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgb(141,136,174,0.5) 1px, transparent 1px);
}


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


@media only screen and (max-width: 800px) {.privacy_niche {
    padding: 30px;
}.privacy_niche h1 {
    font-size: calc(24px * 0.9);
}.privacy_niche h2 {
    font-size: calc(24px * 0.9);
}.privacy_niche li {
    font-size: calc(16px * 0.9);
}}



@media (min-width: 992px) {.course_rewards .container:hover .img_banner {
    transform: perspective(1000px) rotateY(-5deg) translateZ(0) scale(1.02);
}.course_rewards .container:hover .text_item {
    transform: perspective(1000px) rotateX(2deg) translateZ(0) translateY(-5px);
}.course_rewards .container:hover .text_item::before {
    transform: scaleX(1);
}.course_rewards .container:hover h1 {
    transform: translateX(0);
}.course_rewards .container:hover h1::after {
    width: 120px;
}
}



@media (max-width: 768px) {.potential_enrollees {
    padding: 70px 0;
}.potential_enrollees h4 {
    margin-bottom: 40px;
    font-size: calc(38px * 0.8);
    padding: 10px 20px;
    box-shadow: 3px 3px 0 rgb(177,178,206,0.5);
}.potential_enrollees div > div {
    gap: 25px;
}.potential_enrollees div > div::before,
    .potential_enrollees div > div::after {
    opacity: 0.4;
}.potential_enrollees p {
    width: 100%;
    padding: 15px;
    font-size: calc(17px * 0.95);
}
}



@media (min-width: 992px) {.course_summary .online_class {
    max-height: 450px;
}.course_summary .img_banner {
    flex: 0 0 40%;
}.course_summary .text_item {
    padding: 50px;
    flex: 0 0 60%;
}.course_summary .text_item h3 {
    font-size: calc(22px * 1.1);
    margin-bottom: 30px;
}.course_summary .text_item p.description {
    line-height: 1.8;
    max-height: 250px;
}
}



@media (max-width: 767px) {.course_summary {
    padding: 80px 0;
}.course_summary .text_item {
    padding: 30px 25px;
}.course_summary .text_item h3 {
    margin-bottom: 20px;
    font-size: calc(20px * 1.2);
}.course_summary .text_item p.description {
    max-height: 180px;
    line-height: 1.6;
    font-size: calc(14px * 0.95);
}}



@media (min-width: 1024px) {.opening_page::after {
    animation: gradientShift 15s infinite alternate;
}.opening_page > div {
    transform: translateY(20px);
}.opening_page > div:hover {
    transform: translateY(0);
}.opening_page .title_style_header {
    padding: 1rem 2rem;
}.opening_page .page_primary {
    transform: translateX(-20px);
}.opening_page .page_primary:hover {
    transform: translateX(0);
}
}



@media (max-width: 767px) {footer .alumni_net {
    padding: 60px 0 30px;
}footer .write_form {
    margin-bottom: 40px;
}footer .top_site, footer .subscribe_holder {
    padding: 25px 20px;
}footer .top_start a {
    padding: 8px 12px;
    margin: 0 5px 8px 0;
}footer .student_aid {
    margin-top: 40px;
}
}



@media (min-width: 992px) {.ty_page {
    padding: 10rem 0;
}.ty_page .community_team {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}.ty_page .community_team > div:first-child {
    flex: 0 0 40%;
}.ty_page .community_team > div:last-child {
    flex: 0 0 60%;
}.ty_page .community_team > div:first-child::before {
    height: 3rem;
    background: linear-gradient(to bottom, transparent, rgb(177,178,206), transparent);
    top: 50%;
    width: 2px;
    right: -2rem;
    left: auto;
}.ty_page .community_team > div:last-child::after {
    width: 2px;
    bottom: 2rem;
    left: -2rem;
    background: linear-gradient(to bottom, transparent, rgb(177,178,206), transparent);
    right: auto;
    height: 3rem;
}
}



@media (max-width: 480px) {.contact_panel {
    padding: 40px 0;
}.contact_panel .container {
    padding: 0 10px;
}.contact_panel .help_request,
    .contact_panel .query_support {
    padding: 20px;
}.contact_panel .help_request h3,
    .contact_panel .query_support h3 {
    font-size: calc(38px * 0.7);
    margin-bottom: 25px;
}.contact_panel .help_request svg {
    height: 20px;
    width: 20px;
}.contact_panel .query_support .connect_widget label {
    font-size: calc(12px * 0.9);
}.contact_panel .query_support .inquiry_list {
    width: 100%;
}}



@media (max-width: 991px) {header {
    padding: 1.2rem 0;
}header .nav_top svg {
    width: 160px;
}header .page_top {
    padding: 0.7rem;
}header .top_nav {
    padding: 0.5rem 1rem;
    font-size: calc(14px - 1px);
}
}



@media (max-width: 480px) {header {
    padding: 0.8rem 0;
}header .top_study {
    gap: 0.8rem;
}header .nav_top svg {
    width: 120px;
}header .page_top {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem;
}header .page_top::-webkit-scrollbar {
    height: 3px;
}header .page_top::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(177,178,206);
}header .top_nav {
    flex-shrink: 0;
    padding: 0.4rem 0.7rem;
    white-space: nowrap;
    font-size: calc(14px - 2px);
}}



@media (max-width: 767px) {.pricing_item {
    padding: 60px 0;
}.pricing_item .access_rates {
    grid-template-columns: 1fr;
    gap: 25px;
}.pricing_item .program_fees h2 {
    font-size: calc(32px - 4px);
}.pricing_item .img_banner {
    height: 180px;
}.pricing_item .pricing_offers {
    padding: 25px;
}
}



@media (max-width: 576px) {.about_this {
    padding: 50px 0;
}.about_this h2 {
    letter-spacing: 1px;
    margin-bottom: 35px;
    font-size: calc(35px * 0.8);
}.about_this h2::before {
    height: 4px;
    width: 40px;
}.about_this .smart_classes {
    padding: 20px;
}.about_this .smart_classes p {
    font-size: calc(18px * 0.95);
    line-height: 1.6;
}.about_this .container::before,
    .about_this .container::after {
    display: none;
}
}



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

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



@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgb(177,178,206,0.5), 0 0 20px rgb(177,178,206,0.5);
  }
  50% {
    text-shadow: 0 0 20px rgb(177,178,206), 0 0 30px rgb(177,178,206);
  }
}

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

