﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    width: 30px;
    height: 30px;
}.framework-wrap {
    min-height: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}.partner_logo {
    flex: 0 0 auto;
}html,body {
    color: #000000;
    min-height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
    height: 100%;
}header,footer {
    width: 100%;
}.header_nav {
    flex: 1 0 auto;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1269px;
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_highlights {
    overflow: hidden;
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgb(118,121,134,0.5) 100%);
}.course_highlights::before {
    position: absolute;
    transform: rotate(-15deg);
    background: linear-gradient(225deg, rgb(153,159,173) 0%, rgb(153,159,173,0.5) 70%);
    right: -5%;
    top: -5%;
    content: "";
    opacity: 0.1;
    height: 300px;
    animation: floatElement 15s infinite ease-in-out;
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    z-index: 1;
    width: 300px;
}.course_highlights::after {
    width: 250px;
    height: 250px;
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 52% 48% 70%;
    content: "";
    opacity: 0.1;
    animation: floatElement 18s infinite ease-in-out reverse;
    position: absolute;
    left: -3%;
    transform: rotate(10deg);
    bottom: -8%;
    background: linear-gradient(45deg, rgb(118,121,134) 0%, rgb(118,121,134,0.5) 70%);
}.course_highlights .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
}.course_highlights .next_skill {
    position: relative;
    grid-template-columns: 1fr;
    gap: 3rem;
    display: grid;
}.course_highlights .image_shadow {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateY(2deg);
    height: 350px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}.course_highlights .image_shadow::before {
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(#000000, 0.2) 100%
    );
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
    content: "";
}.course_highlights .image_shadow::after {
    height: 60px;
    border-right: 4px solid rgb(153,159,173);
    content: "";
    position: absolute;
    z-index: 2;
    top: -15px;
    border-top: 4px solid rgb(153,159,173);
    opacity: 0.7;
    width: 60px;
    right: -15px;
}.course_highlights .image_shadow:hover {
    transform: perspective(1000px) rotateY(0);
}.course_highlights .text_zone {
    justify-content: center;
    position: relative;
    display: flex;
    flex-direction: column;
}.course_highlights .text_zone::before {
    background: linear-gradient(to bottom, rgb(153,159,173), rgb(118,121,134));
    position: absolute;
    top: 10%;
    width: 5px;
    transform: scaleY(0);
    height: 80%;
    animation: lineGrow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.5s;
    content: "";
    transform-origin: top;
    left: -20px;
}.course_highlights h3 {
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards 0.3s;
    color: rgb(153,159,173);
    padding-left: 1rem;
    font-size: calc(22px * 1.1);
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    font-weight: 700;
    position: relative;
}.course_highlights h3::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    width: 0.4rem;
    background-color: rgb(118,121,134);
    left: 0;
    height: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    content: "";
}.course_highlights .description {
    margin-bottom: 1.2rem;
    color: #000000;
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards 0.5s;
    line-height: 1.8;
    transform: translateY(20px);
    font-size: 18px;
    position: relative;
}.course_highlights p.description {
    scrollbar-color: rgb(118,121,134) transparent;
    position: relative;
    display: block;
    overflow-y: auto;
    max-height: 400px;
    scrollbar-width: thin;
    padding-right: 1rem;
}.course_highlights p.description::-webkit-scrollbar {
    width: 6px;
}.course_highlights p.description::-webkit-scrollbar-track {
    background: transparent;
}.course_highlights p.description::-webkit-scrollbar-thumb {
    background-color: rgb(118,121,134,0.5);
    border-radius: 10px;
}.course_highlights span.description {
    display: none;
}

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

@keyframes lineGrow {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg);
    }
    25% {
        transform: translate(-10px, 15px) rotate(-10deg);
    }
    50% {
        transform: translate(10px, 5px) rotate(-20deg);
    }
    75% {
        transform: translate(15px, -10px) rotate(-12deg);
    }
}

@media (min-width: 768px) {.course_highlights .next_skill {
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}.course_highlights .image_shadow {
    height: 450px;
}.course_highlights h3 {
    font-size: calc(22px * 1.2);
    padding-left: 1.5rem;
}.course_highlights h3::before {
    width: 0.6rem;
    height: 0.6rem;
}.course_highlights .text_zone::before {
    left: -30px;
}
}

@media (min-width: 992px) {.course_highlights {
    padding: 9rem 0;
}.course_highlights .image_shadow {
    height: 500px;
}.course_highlights .text_zone {
    padding-right: 2rem;
}.course_highlights .text_zone::before {
    left: -40px;
}.course_highlights h3 {
    font-size: calc(38px * 0.7);
    margin-bottom: 2rem;
}.course_highlights .description {
    font-size: calc(18px * 1.05);
}.course_highlights p.description {
    max-height: 450px;
}
}

@media (min-width: 1200px) {.course_highlights .next_skill {
    gap: 6rem;
}.course_highlights .image_shadow {
    transform: perspective(1500px) rotateY(3deg);
    height: 550px;
}.course_highlights .image_shadow:hover {
    transform: perspective(1500px) rotateY(0);
}.course_highlights h3 {
    font-size: calc(38px * 0.8);
}.course_highlights p.description {
    max-height: 500px;
}
}

@media (max-width: 767px) {.course_highlights {
    padding: 5rem 0;
}.course_highlights .image_shadow {
    margin-bottom: 1rem;
    height: 280px;
}.course_highlights h3 {
    font-size: calc(22px * 1);
    margin-bottom: 1rem;
}.course_highlights .text_zone::before {
    left: -15px;
}.course_highlights p.description {
    max-height: 350px;
}}.company_info {
    padding: 120px 30px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}.company_info::before {
    z-index: 1;
    content: "";
    top: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.65) 50%, 
        rgba(0, 0, 0, 0.75) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}.company_info::after {
    top: -50%;
    transform: rotate(45deg) translateY(-50%);
    background: rgb(153,159,173);
    z-index: 2;
    opacity: 0.15;
    height: 100%;
    position: absolute;
    animation: subtle-shift 20s infinite alternate ease-in-out;
    right: -50%;
    width: 100%;
    content: "";
}.company_info h4 {
    opacity: 1;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}.company_info h4::after {
    height: 3px;
    position: absolute;
    content: "";
    width: 80px;
    bottom: -15px;
    left: 50%;
    z-index: 10;
    background: rgb(118,121,134);
    transform: translateX(-50%);
}.company_info .container {
    z-index: 10;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.company_info .text_zone {
    border-left: 3px solid rgb(118,121,134);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(
        to right bottom,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    transform: translateY(0);
    opacity: 1;
    padding: 40px;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}.company_info .text_zone::before {
    width: 120px;
    border: 2px solid rgb(118,121,134,0.5);
    transform: rotate(15deg);
    z-index: -1;
    position: absolute;
    top: 20px;
    content: "";
    opacity: 0.3;
    height: 120px;
    right: 20px;
}.company_info h6 {
    font-size: calc(24px * 1.2);
    color: rgb(118,121,134);
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}.company_info h6::after {
    height: 2px;
    transition: transform 0.4s ease;
    bottom: -8px;
    width: 60%;
    background: rgb(118,121,134);
    position: absolute;
    content: "";
    left: 0;
    transform-origin: left;
    transform: scaleX(1);
}.company_info .text_zone div {
    padding-right: 15px;
    scrollbar-width: thin;
    overflow-y: auto;
    max-height: 400px;
    scrollbar-color: rgb(118,121,134) rgba(255, 255, 255, 0.1);
    position: relative;
}.company_info .text_zone div::-webkit-scrollbar {
    width: 6px;
}.company_info .text_zone div::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}.company_info .text_zone div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(118,121,134);
}.company_info span {
    color: #ffffff;
    line-height: 1.8;
    display: block;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes subtle-shift {
    0% {
        transform: rotate(45deg) translateY(-50%);
    }
    50% {
        transform: rotate(42deg) translateY(-48%);
    }
    100% {
        transform: rotate(48deg) translateY(-52%);
    }
}

@media (min-width: 768px) {.company_info {
    padding: 150px 50px;
}.company_info h4 {
    font-size: calc(32px * 1.2);
    margin-bottom: 60px;
}.company_info .text_zone {
    border-top-right-radius: 10px;
    border-left: 5px solid rgb(118,121,134);
    padding: 60px;
    border-bottom-right-radius: 10px;
    max-width: 90%;
    margin: 0 auto;
}.company_info h6 {
    margin-bottom: 30px;
    font-size: calc(24px * 1.5);
}.company_info .text_zone div {
    max-height: none;
    column-count: 2;
    column-gap: 40px;
}.company_info span {
    font-size: calc(12px * 1.1);
}
}

@media (min-width: 1200px) {.company_info {
    padding: 180px 0;
}.company_info .text_zone {
    transform: perspective(1000px) rotateY(-2deg);
    max-width: 80%;
    transition: transform 0.5s ease;
    padding: 80px;
}.company_info .text_zone:hover {
    transform: perspective(1000px) rotateY(0deg);
}.company_info h6::after {
    width: 40%;
}.company_info span {
    font-size: calc(12px * 1.2);
}.company_info .text_zone::before {
    right: 30px;
    height: 180px;
    width: 180px;
    top: 30px;
}
}

@media (max-width: 767px) {.company_info {
    padding: 80px 20px;
}.company_info h4 {
    margin-bottom: 30px;
    font-size: 24px;
}.company_info .text_zone {
    padding: 30px 20px;
}.company_info h6 {
    font-size: 21px;
    margin-bottom: 20px;
}.company_info span {
    font-size: calc(12px * 0.9);
    line-height: 1.6;
}.company_info .text_zone div {
    max-height: 300px;
}}.cookie_popup_display {
    z-index: 1000;
    width: 100%;
    position: fixed;
    padding: 20px 0;
    background-color: rgb(188,194,213);
    border-top: 1px solid rgb(153,159,173);
    animation: fadeInUp 0.5s ease-out;
    bottom: 0;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}.cookie_popup_display .cookie_overlay {
    animation: logoScale 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    margin-right: 20px;
    flex-shrink: 0;
    transform-origin: center;
}.cookie_popup_display .cookie_overlay svg {
    fill: rgb(153,159,173);
    width: 60px;
    height: 60px;
}@keyframes logoScale {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.cookie_popup_display .privacy_notify {
    flex-grow: 1;
}.cookie_popup_display .privacy_notify h5 {
    margin-bottom: 6px;
    color: rgb(153,159,173);
    font-size: 24px;
}.cookie_popup_display .privacy_notify p {
    line-height: 1.5;
    margin: 0;
    color: #000000;
    font-size: 13px;
}.cookie_popup_display .consent_comply {
    border-radius: 5px;
    background-color: rgb(153,159,173);
    font-size: 15px;
    margin-right: 15px;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}.cookie_popup_display .consent_comply:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}.cookie_popup_display .consent_comply:active {
    box-shadow: none;
    transform: translateY(1px);
}
@media (max-width: 768px) {.cookie_popup_display .cookie_overlay {
    margin-right: 0;
    margin-bottom: 15px;
}.cookie_popup_display .consent_comply {
    width: 48%;
    margin-left: 0;
    text-align: center;
}}
#cookieNoticePanel {
    display: none;
}#cookieNoticePanel:checked ~ .cookie_popup_display {
    opacity: 0;
    visibility: hidden;
}.opening_page {
    align-items: center;
    z-index: 1;
    position: relative;
    display: flex;
    min-height: 100vh;
    padding: 2rem;
    justify-content: center;
    overflow: hidden;
}.opening_page::before {
    z-index: -1;
    backdrop-filter: blur(2px) saturate(120%);
    position: absolute;
    background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    rgba(0, 0, 0, 0.65) 50%, 
    rgba(0, 0, 0, 0.75) 100%);
    bottom: 0;
    right: 0;
    content: "";
    top: 0;
    left: 0;
}.opening_page::after {
    animation: backgroundShift 120s linear infinite;
    width: 120%;
    background: repeating-linear-gradient(
    45deg,
    rgb(153,159,173,0.5) 0px,
    transparent 2px,
    transparent 10px,
    rgb(153,159,173,0.5) 12px
  );
    opacity: 0.05;
    top: -10%;
    height: 120%;
    left: -10%;
    position: absolute;
    content: "";
    z-index: -1;
}.opening_page > div {
    width: 100%;
    z-index: 2;
    max-width: 1200px;
    transform: translateY(-2vh);
    padding: 2rem;
    position: relative;
}.opening_page > div > div:first-child {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}.title_style_header {
    color: #ffffff;
    transform: translateY(0);
    line-height: 1.2;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0;
    position: relative;
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}.title_style_header::after {
    width: 8rem;
    content: "";
    height: 0.35rem;
    bottom: -0.5rem;
    position: absolute;
    transform-origin: left;
    left: 0;
    background: linear-gradient(90deg, rgb(153,159,173), transparent);
    animation: expandWidth 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
}.learn_begin {
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    gap: 2rem;
    grid-template-columns: 1fr;
    display: grid;
}.opening_page .expert_guides {
    background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.09) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
    position: relative;
    padding: 2rem;
    box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
}.opening_page .expert_guides:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}.opening_page .expert_guides h3 {
    position: relative;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 600;
}.learn_begin > div:last-child {
    background: rgb(153,159,173);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    padding: 1.5rem 2rem;
    transform: perspective(1000px) rotateX(-2deg);
    position: relative;
}.learn_begin > div:last-child::before {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, transparent 50%);
    content: "";
    transform: translateX(-100%);
    width: 100%;
    left: 0;
    animation: shimmer 3s infinite;
}.learn_begin > div:last-child:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}.learn_begin > div:last-child span {
    position: relative;
    display: block;
}.learn_begin > div:last-child p {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    position: relative;
}

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

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

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes backgroundShift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-5%, 5%) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media (min-width: 768px) {.opening_page {
    padding: 3rem;
}.opening_page > div {
    padding: 3rem;
}.learn_begin {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}.opening_page .expert_guides {
    transform: perspective(1000px) rotateX(3deg) rotateY(-2deg);
}.opening_page .expert_guides:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px);
}.learn_begin > div:last-child {
    transform: perspective(1000px) rotateX(-3deg) rotateY(2deg);
}.learn_begin > div:last-child:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px);
}
}

@media (max-width: 767px) {.opening_page {
    padding: 1.5rem;
}.opening_page > div {
    padding: 1.5rem;
}.title_style_header {
    font-size: clamp(2rem, 7vw, 2.5rem);
}.title_style_header::after {
    height: 0.25rem;
    width: 6rem;
}.opening_page .expert_guides {
    padding: 1.5rem;
}.learn_begin > div:last-child {
    padding: 1.25rem 1.5rem;
}
}

@media (max-width: 480px) {.opening_page > div {
    padding: 1rem;
}.title_style_header {
    font-size: clamp(1.75rem, 8vw, 2rem);
}.title_style_header::after {
    width: 5rem;
    height: 0.2rem;
}.opening_page .expert_guides {
    padding: 1.25rem;
}.opening_page .expert_guides h3 {
    font-size: clamp(1rem, 5vw, 1.25rem);
}.learn_begin > div:last-child {
    padding: 1rem 1.25rem;
}.learn_begin > div:last-child p {
    font-size: clamp(0.875rem, 4vw, 1rem);
}}header .main_info {
    align-items: center;
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    z-index: 99;
    padding: 1.5rem 0;
    overflow: visible;
    justify-content: space-between;
    background: linear-gradient(120deg, rgb(153,159,173) 0%, rgb(118,121,134,0.5) 100%);
}header .main_info::before {
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    height: 100%;
    top: 0;
    background: radial-gradient(circle at 70% 30%, rgb(118,121,134,0.5) 0%, transparent 60%);
    z-index: -1;
}header .main_info .top_base {
    transform: translateY(-5px);
    position: relative;
    margin-left: calc((100vw - 100%) / 2);
    transition: all 0.4s ease;
    z-index: 2;
}header .main_info .top_base:hover {
    transform: translateY(0) scale(1.05);
}header .main_info .top_base .main_tutor {
    position: relative;
    padding: 0.5rem 1rem;
    display: block;
}header .main_info .top_base .main_tutor::before {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    content: "";
    z-index: -1;
    height: calc(100% + 20px);
    width: calc(100% + 40px);
    left: -20px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    top: -10px;
}header .main_info .top_base .main_tutor svg {
    filter: drop-shadow(0 0 8px #ffffff);
    width: auto;
    height: 2.8rem;
}header .main_info .nav_pagewrap {
    padding: 0;
    width: 80vw;
    display: flex;
    background: linear-gradient(90deg, transparent, rgb(153,159,173,0.5) 30%, rgba(0, 0, 0, 0.5) 100%);
    padding-right: calc((100vw - 100%) / 2);
    justify-content: flex-end;
    position: relative;
    list-style: none;
    margin: 0;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}header .main_info .nav_pagewrap::before {
    top: 0;
    position: absolute;
    z-index: -1;
    background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
    height: 100%;
    left: 0;
    content: "";
    width: 100%;
}header .main_info .nav_pagewrap .head_nav {
    margin: 0;
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
}header .main_info .nav_pagewrap .head_nav a {
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    transform-origin: center;
    display: block;
    font-size: 18px;
    padding: 1.2rem 1.5rem;
    position: relative;
}header .main_info .nav_pagewrap .head_nav a::after {
    content: "";
    bottom: 0.8rem;
    background: rgb(118,121,134);
    height: 2px;
    transition: width 0.3s ease;
    position: absolute;
    width: 0;
    left: 1.5rem;
}header .main_info .nav_pagewrap .head_nav a:hover {
    transform: translateZ(10px);
    color: rgb(118,121,134);
}header .main_info .nav_pagewrap .head_nav a:hover::after {
    width: calc(100% - 3rem);
}

@media screen and (max-width: 991px) {header .main_info {
    align-items: center;
    padding: 1rem 0;
    flex-direction: column;
}header .main_info .top_base {
    margin-left: 0;
    margin-bottom: 1rem;
}header .main_info .nav_pagewrap {
    background: rgb(153,159,173,0.5);
    justify-content: center;
    clip-path: none;
    padding-right: 0;
    width: 100%;
    flex-wrap: wrap;
}header .main_info .nav_pagewrap .head_nav a {
    padding: 0.8rem 1rem;
}header .main_info .nav_pagewrap .head_nav a::after {
    left: 1rem;
    bottom: 0.4rem;
}header .main_info .nav_pagewrap .head_nav a:hover::after {
    width: calc(100% - 2rem);
}
}

@media screen and (max-width: 767px) {header .main_info .nav_pagewrap {
    padding: 0.5rem 0;
}header .main_info .nav_pagewrap .head_nav {
    width: 50%;
}header .main_info .nav_pagewrap .head_nav a {
    font-size: calc(18px - 2px);
    padding: 0.6rem 0.8rem;
    text-align: center;
}header .main_info .nav_pagewrap .head_nav a::after {
    display: none;
}}footer {
    position: relative;
    width: 100%;
}.partner_logo {
    font-family: Arial, sans-serif;
    padding: 80px 0 30px;
    position: relative;
    color: #ffffff;
    background-color: rgb(153,159,173);
}.partner_logo::before {
    top: 0;
    background-color: rgb(153,159,173);
    height: 100%;
    right: 0;
    z-index: 0;
    width: 60%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    position: absolute;
    content: "";
}footer .partner_logo::after {
    border-radius: 50%;
    position: absolute;
    content: "";
    background: radial-gradient(circle, rgb(153,159,173), transparent 70%);
    right: 15%;
    top: 50px;
    height: 200px;
    width: 200px;
    opacity: 0.3;
}footer .event_cal {
    position: relative;
    z-index: 1;
}footer .get_contactus {
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    display: flex;
}footer .info_item {
    transition: all 0.3s ease;
    border-radius: 10px;
    transform: skewX(-5deg);
    margin-bottom: 10px;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin-right: 10px;
    flex: 0 1 auto;
}footer .info_item:hover {
    transform: skewX(-5deg) translateY(-5px);
    background-color: rgb(153,159,173);
}footer .info_item svg {
    width: 20px;
    vertical-align: middle;
    fill: #ffffff;
    height: 20px;
    transform: skewX(5deg);
    margin-right: 10px;
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    transform: skewX(5deg);
    vertical-align: middle;
    color: #ffffff;
}footer .text_main_holder {
    grid-template-columns: 1fr;
    gap: 40px;
    display: grid;
    position: relative;
}footer .top_base {
    position: relative;
    padding-left: 20px;
}footer .top_base::before {
    left: 0;
    background-color: rgb(153,159,173);
    width: 5px;
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
}footer .top_base svg {
    filter: brightness(0) invert(1);
    width: auto;
    height: 45px;
    margin-bottom: 20px;
}footer .podcast_cta {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 12px;
}footer .nav_pagewrap {
    position: relative;
}footer .nav_pagewrap h5 {
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    font-size: 22px;
}footer .nav_pagewrap h5::after {
    width: 50px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0;
    background-color: rgb(153,159,173);
}footer .nav_learn {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}footer .nav_learn a {
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    position: relative;
}footer .nav_learn a::before {
    color: rgb(153,159,173);
    position: absolute;
    transition: all 0.3s ease;
    opacity: 0;
    content: "→";
    left: -20px;
}footer .nav_learn a:hover {
    padding-left: 20px;
    color: rgb(153,159,173);
}footer .nav_learn a:hover::before {
    left: 0;
    opacity: 1;
}footer .subscribe_holder {
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 18px;
    border-left: 5px solid rgb(153,159,173);
    padding: 30px;
}footer .subscribe_holder::before {
    height: 100px;
    opacity: 0.2;
    border-radius: 50%;
    right: -20px;
    background-color: rgb(153,159,173);
    width: 100px;
    z-index: -1;
    top: -20px;
    position: absolute;
    content: "";
}footer .subscribe_holder h5 {
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
}footer .subscribe_holder p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}footer .input_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    transition: all 0.3s ease;
}footer .input_holder input[type="email"]:focus {
    box-shadow: 0 0 0 2px rgb(153,159,173);
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .instant_access {
    text-transform: uppercase;
    font-size: 19px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    background-color: rgb(153,159,173);
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 14px 20px;
}footer .instant_access:hover {
    background-color: rgb(118,121,134);
    transform: translateX(5px);
}footer .press_room {
    position: relative;
    padding-top: 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}footer .a11y_tools {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .nav_learn {
    grid-template-columns: repeat(2, 1fr);
}footer .input_holder {
    flex-direction: row;
}footer .instant_access {
    white-space: nowrap;
}footer .nav_learn a {
    padding-right: 10px;
}
}

@media (max-width: 991px) {footer .partner_logo::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.7;
    background-color: rgb(153,159,173);
}
}

@media (max-width: 767px) {footer .partner_logo {
    padding: 60px 0 30px;
}footer .get_contactus {
    justify-content: center;
    margin-bottom: 40px;
}footer .nav_pagewrap h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
}footer .press_room {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .partner_logo {
    padding: 50px 0 20px;
}footer .info_item {
    margin-right: 0;
    width: 100%;
}footer .nav_learn {
    grid-template-columns: 1fr;
}footer .subscribe_holder {
    padding: 20px;
}footer .input_holder input[type="email"],
    footer .instant_access {
    padding: 12px 15px;
}}.thanksBox {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgba(rgb(153,159,173,0.5), 0.1) 100%);
    z-index: 1;
    position: relative;
    padding: 6rem 0;
}.thanksBox::before {
    width: 100%;
    height: 100%;
    transform: perspective(1000px) rotateX(5deg);
    z-index: -1;
    position: absolute;
    background-image: 
        linear-gradient(90deg, rgba(rgb(153,159,173,0.5), 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(rgb(153,159,173,0.5), 0.05) 1px, transparent 1px);
    top: 0;
    content: "";
    opacity: 0.6;
    background-size: 20px 20px;
    left: 0;
}.thanksBox::after {
    content: "";
    height: 70%;
    animation: float 15s ease-in-out infinite;
    transform: rotate(-15deg) translateZ(-10px);
    width: 40%;
    background: linear-gradient(45deg, rgb(153,159,173) 0%, rgba(rgb(118,121,134,0.5), 0.8) 100%);
    top: -10%;
    position: absolute;
    z-index: -1;
    opacity: 0.15;
    right: -5%;
    filter: blur(80px);
}.thanksBox .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}.thanksBox .academy_team {
    gap: 2.5rem;
    transform: translateY(0);
    grid-template-columns: 1fr;
    box-shadow: 
        0 10px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.12),
        0 0 0 1px rgba(rgb(153,159,173,0.5), 0.08);
    display: grid;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    position: relative;
}.thanksBox .academy_team:hover {
    box-shadow: 
        0 20px 40px -20px rgba(rgba(0, 0, 0, 0.5), 0.16),
        0 0 0 1px rgba(rgb(153,159,173,0.5), 0.12);
    transform: translateY(-5px);
}.thanksBox .academy_team::before {
    content: "";
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 4px;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgb(153,159,173), rgb(118,121,134));
    transform: scaleY(0);
    position: absolute;
    transform-origin: top;
}.thanksBox .academy_team:hover::before {
    transform: scaleY(1);
}.thanksBox h5 {
    line-height: 1.3;
    font-weight: 700;
    font-size: calc(23px * 1.1);
    color: #000000;
    margin-bottom: 0.5rem;
    overflow: hidden;
    position: relative;
    padding-bottom: 1rem;
}.thanksBox h5::after {
    transform: translateX(0);
    width: 4rem;
    background: rgb(153,159,173);
    left: 0;
    height: 3px;
    content: "";
    transition: width 0.6s ease, transform 0.6s ease;
    bottom: 0;
    position: absolute;
}.thanksBox .academy_team:hover h5::after {
    width: 7rem;
    transform: translateX(10px);
}.thanksBox p {
    opacity: 0.9;
    transition: color 0.3s ease;
    font-size: 12px;
    transform: translateZ(0);
    position: relative;
    font-weight: 400;
    line-height: 1.7;
    color: #000000;
    margin: 0;
}.thanksBox a {
    display: block;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}.thanksBox a::before {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    transform: scaleX(0);
    background: rgba(rgb(153,159,173,0.5), 0.3);
    transform-origin: right;
    bottom: 0;
    height: 1px;
    left: 0;
    content: "";
    position: absolute;
}.thanksBox a:hover {
    transform: translateY(-2px);
}.thanksBox a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.thanksBox a:hover p {
    color: rgb(153,159,173);
}

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

@media (min-width: 768px) {.thanksBox {
    padding: 8rem 0;
}.thanksBox .academy_team {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
    padding: 4rem;
    gap: 3rem;
}.thanksBox h5 {
    padding-bottom: 1.5rem;
    font-size: calc(23px * 1.2);
}.thanksBox p {
    line-height: 1.8;
    font-size: calc(12px * 1.05);
}.thanksBox::before {
    background-size: 30px 30px;
}
}

@media (min-width: 1024px) {.thanksBox .academy_team {
    gap: 4rem;
    padding: 5rem;
}.thanksBox h5 {
    font-size: calc(23px * 1.3);
}.thanksBox::after {
    right: -10%;
    width: 50%;
}
}

@media (max-width: 767px) {.thanksBox {
    padding: 4rem 0;
}.thanksBox .academy_team {
    padding: 2.5rem;
}.thanksBox h5 {
    font-size: 23px;
}.thanksBox::before {
    background-size: 15px 15px;
}.thanksBox::after {
    opacity: 0.1;
}
}

@media (max-width: 480px) {.thanksBox {
    padding: 3rem 0;
}.thanksBox .academy_team {
    padding: 2rem 1.5rem;
}.thanksBox h5 {
    font-size: calc(23px * 0.9);
}.thanksBox p {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}}.privacy_defense {
    position: relative;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgba(rgb(153,159,173,0.5), 0.05) 100%);
    overflow: hidden;
    padding: 6rem 2rem;
}.privacy_defense::before {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    content: "";
    height: 6px;
    background: linear-gradient(90deg, rgb(153,159,173) 0%, rgb(118,121,134) 100%);
    box-shadow: 0 0 20px rgba(rgb(153,159,173,0.5), 0.4);
}.privacy_defense::after {
    pointer-events: none;
    background: radial-gradient(circle at bottom right, rgba(rgb(118,121,134,0.5), 0.08), transparent 70%);
    right: 0;
    width: 35%;
    bottom: 0;
    height: 35%;
    content: "";
    position: absolute;
    transform: translate(10%, 10%);
    z-index: 0;
}.privacy_defense .container {
    max-width: 1140px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
}.privacy_defense h1 {
    border-bottom: 1px solid rgba(rgb(153,159,173,0.5), 0.1);
    color: rgb(153,159,173);
    position: relative;
    letter-spacing: -0.02em;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 2.5rem;
    transform: translateZ(5px);
    padding-bottom: 1rem;
}.privacy_defense h1::after {
    content: "";
    width: 80px;
    left: 0;
    position: absolute;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    bottom: -1px;
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    height: 3px;
    transform-origin: left center;
}.privacy_defense h2 {
    margin: 3rem 0 1.5rem;
    color: #000000;
    transform: translateZ(3px);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 600;
    font-size: 31px;
}.privacy_defense h2::before {
    border-radius: 2px;
    position: absolute;
    left: 0;
    width: 8px;
    content: "";
    top: 0.3em;
    background: linear-gradient(to bottom, rgb(153,159,173), rgb(118,121,134));
    height: 80%;
}.privacy_defense h3 {
    font-weight: 600;
    padding-left: 1.25rem;
    position: relative;
    margin: 2.5rem 0 1.25rem;
    color: #000000;
    font-size: calc(31px * 0.85);
}.privacy_defense h3::before {
    background: linear-gradient(to bottom, rgb(118,121,134), rgb(153,159,173));
    border-radius: 2px;
    width: 6px;
    height: 70%;
    content: "";
    left: 0;
    position: absolute;
    top: 0.4em;
}.privacy_defense h4 {
    font-weight: 600;
    color: #000000;
    font-size: calc(31px * 0.7);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    position: relative;
}.privacy_defense h4::before {
    background: rgb(118,121,134);
    position: absolute;
    content: "";
    height: 60%;
    width: 4px;
    top: 0.4em;
    left: 0;
    border-radius: 1px;
}.privacy_defense p {
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 95%;
    color: #000000;
    transform: translateZ(1px);
}.privacy_defense p strong {
    position: relative;
    font-weight: 600;
    color: #000000;
}.privacy_defense span {
    position: relative;
    color: #000000;
    line-height: 1.7;
    font-size: 14px;
    max-width: 95%;
    margin-bottom: 1.5rem;
    display: block;
}.privacy_defense ul {
    list-style: none;
    position: relative;
    transform: translateZ(2px);
    padding: 0.5rem 0 1.5rem 1.5rem;
}.privacy_defense ul::before {
    bottom: 0;
    left: 0;
    position: absolute;
    content: "";
    top: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgb(153,159,173), transparent);
}.privacy_defense li {
    color: #000000;
    line-height: 1.6;
    position: relative;
    font-size: 14px;
    margin-bottom: 1.25rem;
    padding-left: 1.75rem;
}.privacy_defense li::before {
    left: 0;
    position: absolute;
    border-radius: 50%;
    background: rgba(rgb(255, 255, 255, 0.5), 0.8);
    box-shadow: 0 0 0 2px rgba(rgb(153,159,173,0.5), 0.1);
    content: "";
    border: 2px solid rgb(153,159,173);
    width: 8px;
    transition: transform 0.3s ease;
    top: 0.6em;
    height: 8px;
}.privacy_defense li:hover::before {
    transform: scale(1.2);
    background: rgba(rgb(153,159,173,0.5), 0.1);
}


@media (max-width: 992px) {.privacy_defense {
    padding: 5rem 1.5rem;
}.privacy_defense h1 {
    font-size: calc(48px * 0.9);
}.privacy_defense h2 {
    font-size: calc(31px * 0.9);
}.privacy_defense h3 {
    font-size: calc(31px * 0.8);
}.privacy_defense h4 {
    font-size: calc(31px * 0.65);
}
}

@media (max-width: 768px) {.privacy_defense {
    padding: 4rem 1.25rem;
}.privacy_defense::after {
    width: 50%;
    height: 25%;
}.privacy_defense h1 {
    margin-bottom: 2rem;
    font-size: calc(48px * 0.8);
}.privacy_defense h2 {
    margin: 2.5rem 0 1.25rem;
    padding-left: 1.25rem;
}.privacy_defense h3 {
    padding-left: 1rem;
}.privacy_defense h4 {
    padding-left: 0.75rem;
}.privacy_defense p, 
    .privacy_defense span {
    max-width: 100%;
}.privacy_defense ul {
    padding-left: 0.75rem;
}.privacy_defense li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
}

@media (max-width: 576px) {.privacy_defense {
    padding: 3rem 1rem;
}.privacy_defense h1 {
    margin-bottom: 1.5rem;
    font-size: calc(48px * 0.7);
}.privacy_defense h2 {
    padding-left: 1rem;
    font-size: calc(31px * 0.8);
    margin: 2rem 0 1rem;
}.privacy_defense h3 {
    padding-left: 0.75rem;
    font-size: calc(31px * 0.7);
}.privacy_defense h4 {
    font-size: calc(31px * 0.6);
    padding-left: 0.5rem;
}.privacy_defense h1::after {
    width: 60px;
}.privacy_defense ul {
    padding-left: 0.5rem;
}.privacy_defense li {
    padding-left: 1.25rem;
}}.statistical_report {
    background-color: #000000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 120px 0;
}.statistical_report::before {
    z-index: -2;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(118,121,134,0.5) 30%, rgba(0, 0, 0, 0.5) 70%);
    width: 100%;
    height: 100%;
    position: absolute;
}.statistical_report::after {
    position: absolute;
    left: -50%;
    transform: rotate(15deg);
    background: repeating-linear-gradient(
        rgba(rgb(153,159,173,0.5), 0.03) 0px,
        transparent 1px,
        transparent 30px
    ), 
    repeating-linear-gradient(
        90deg,
        rgba(rgb(153,159,173,0.5), 0.03) 0px,
        transparent 1px,
        transparent 30px
    );
    animation: gridMove 35s linear infinite;
    z-index: -1;
    width: 200%;
    content: "";
    height: 200%;
    top: -50%;
}@keyframes gridMove {
    0% {
        transform: rotate(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(17deg) translate(-5%, -2%);
    }
    100% {
        transform: rotate(15deg) translate(0, 0);
    }
}

.statistical_report .container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 15px;
}.statistical_report .container::before {
    height: 200px;
    width: 200px;
    position: absolute;
    top: -80px;
    opacity: 0.4;
    content: "";
    filter: blur(50px);
    animation: pulseEffect 8s ease-in-out infinite;
    background: radial-gradient(circle, rgb(153,159,173,0.5) 0%, transparent 70%);
    right: -20px;
    border-radius: 50%;
}@keyframes pulseEffect {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

.statistical_report h2 {
    position: relative;
    padding-left: 20px;
    display: inline-block;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}.statistical_report h2::before {
    transform: translateY(-50%);
    position: absolute;
    content: "";
    left: 0;
    width: 6px;
    height: 90%;
    top: 50%;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgb(153,159,173), rgb(118,121,134));
}.statistical_report h2::after {
    content: "";
    background: linear-gradient(to right, rgb(153,159,173), transparent);
    bottom: -15px;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}.statistical_report ul {
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 40px;
    justify-content: space-between;
    display: flex;
    list-style: none;
}.statistical_report .extra_pro {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    min-width: 240px;
    position: relative;
    flex: 1 1 240px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100%;
}.statistical_report .extra_pro::before {
    content: "";
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    top: 0;
    position: absolute;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100%;
}.statistical_report .extra_pro::after {
    background: radial-gradient(circle, rgb(153,159,173,0.5) 0%, transparent 60%);
    z-index: -1;
    transition: opacity 0.5s ease;
    content: "";
    transform: scale(0.5);
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
    opacity: 0;
}.statistical_report .extra_pro:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    border-color: rgba(rgb(153,159,173,0.5), 0.2);
}.statistical_report .extra_pro:hover::after {
    opacity: 0.1;
    transform: scale(1);
}.statistical_report .extra_pro p {
    line-height: 1;
    font-size: 3.5rem;
    display: inline-block;
    position: relative;
    color: #ffffff;
    margin: 0 0 20px;
    font-weight: 700;
}.statistical_report .extra_pro p::before {
    height: 40px;
    position: absolute;
    background: rgb(153,159,173,0.5);
    opacity: 0.2;
    z-index: -1;
    top: -10px;
    width: 40px;
    border-radius: 50%;
    left: -20px;
    filter: blur(10px);
    content: "";
}.statistical_report .extra_pro span {
    font-size: 14px;
    position: relative;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}.statistical_report .extra_pro span::after {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    height: 2px;
    width: 40px;
    background: rgb(153,159,173,0.5);
    bottom: -15px;
    content: "";
    position: absolute;
}.statistical_report ul:has(.extra_pro:only-child) .extra_pro {
    flex: 0 0 100%;
    margin: 0 auto;
    max-width: 500px;
}.statistical_report ul:has(.extra_pro:nth-child(2):last-child) .extra_pro {
    max-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
}.statistical_report ul:has(.extra_pro:nth-child(3):last-child) .extra_pro {
    flex: 0 0 calc(33.33% - 27px);
    max-width: calc(33.33% - 27px);
}.statistical_report ul:has(.extra_pro:nth-child(4):last-child) .extra_pro {
    max-width: calc(25% - 30px);
    flex: 0 0 calc(25% - 30px);
}.statistical_report ul:has(.extra_pro:nth-child(5):nth-last-child(-n+1)) .extra_pro {
    max-width: calc(20% - 32px);
    flex: 0 0 calc(20% - 32px);
}.statistical_report ul:has(.extra_pro:nth-child(n+6):nth-child(-n+10)) .extra_pro {
    max-width: calc(33.33% - 27px);
    flex: 0 0 calc(33.33% - 27px);
}.statistical_report svg {
    margin-bottom: 15px;
    height: 40px;
    fill: rgb(153,159,173);
    transition: transform 0.3s ease;
    width: 40px;
}.statistical_report svg path {
    fill: rgb(153,159,173);
}.statistical_report .extra_pro:hover svg {
    transform: scale(1.2) rotate(5deg);
}

@media screen and (min-width: 1441px) {.statistical_report {
    padding: 150px 0;
}.statistical_report h2 {
    font-size: calc(45px * 1.2);
    margin-bottom: 80px;
}.statistical_report .extra_pro {
    padding: 45px 40px;
}.statistical_report .extra_pro p {
    font-size: 4rem;
}
}

@media screen and (max-width: 1440px) {.statistical_report {
    padding: 100px 0;
}.statistical_report ul {
    gap: 30px;
}.statistical_report .extra_pro {
    padding: 30px 25px;
}.statistical_report .extra_pro p {
    font-size: 3rem;
}
}

@media screen and (max-width: 1200px) {.statistical_report {
    padding: 90px 0;
}.statistical_report ul:has(.extra_pro:nth-child(4):last-child) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(5):nth-last-child(-n+1)) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(n+6):nth-child(-n+10)) .extra_pro {
    max-width: calc(33.33% - 20px);
    flex: 0 0 calc(33.33% - 20px);
}.statistical_report .extra_pro p {
    font-size: 2.8rem;
}
}

@media screen and (max-width: 991px) {.statistical_report {
    padding: 80px 0;
}.statistical_report h2 {
    font-size: calc(45px * 0.9);
    margin-bottom: 50px;
}.statistical_report ul {
    gap: 25px;
}.statistical_report ul:has(.extra_pro:nth-child(3):last-child) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(4):last-child) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(5):nth-last-child(-n+1)) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(n+6):nth-child(-n+10)) .extra_pro {
    max-width: calc(50% - 13px);
    flex: 0 0 calc(50% - 13px);
}.statistical_report .extra_pro {
    padding: 25px 20px;
}.statistical_report .extra_pro p {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
}

@media screen and (max-width: 767px) {.statistical_report {
    padding: 70px 0;
}.statistical_report h2 {
    margin-bottom: 40px;
    font-size: calc(45px * 0.8);
    padding-left: 15px;
}.statistical_report h2::before {
    width: 4px;
}.statistical_report ul {
    flex-direction: column;
    gap: 20px;
}.statistical_report .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(2):last-child) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(3):last-child) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(4):last-child) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(5):nth-last-child(-n+1)) .extra_pro,
    .statistical_report ul:has(.extra_pro:nth-child(n+6):nth-child(-n+10)) .extra_pro {
    flex: 0 0 100%;
    max-width: 100%;
}.statistical_report .extra_pro p {
    font-size: 2.2rem;
}.statistical_report svg {
    height: 35px;
    width: 35px;
}
}

@media screen and (max-width: 480px) {.statistical_report {
    padding: 60px 0;
}.statistical_report h2 {
    padding-left: 12px;
    font-size: calc(45px * 0.7);
    margin-bottom: 30px;
}.statistical_report h2::before {
    width: 3px;
}.statistical_report ul {
    gap: 15px;
}.statistical_report .extra_pro {
    padding: 20px 15px;
}.statistical_report .extra_pro p {
    margin-bottom: 10px;
    font-size: 2rem;
}.statistical_report .extra_pro span {
    font-size: calc(14px * 0.9);
}.statistical_report svg {
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
}}.newsletter {
    z-index: 1;
    padding: 6rem 3rem;
    background: rgb(188,194,213);
    position: relative;
    overflow: hidden;
}.newsletter::before {
    top: -150px;
    animation: morphShape 15s ease-in-out infinite alternate;
    background: rgb(153,159,173);
    content: "";
    height: 350px;
    right: -150px;
    z-index: -1;
    width: 350px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.07;
    position: absolute;
}.newsletter::after {
    animation: morphShape 15s ease-in-out infinite alternate-reverse;
    width: 250px;
    background: rgb(118,121,134);
    content: "";
    left: -100px;
    border-radius: 67% 33% 33% 67% / 33% 67% 33% 67%;
    z-index: -1;
    position: absolute;
    bottom: -100px;
    opacity: 0.07;
    height: 250px;
}.newsletter .container {
    z-index: 2;
    max-width: 1140px;
    position: relative;
    margin: 0 auto;
}.newsletter .academy_team {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}.newsletter .academy_team::before {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    content: "";
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5) 0,
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    opacity: 0.03;
}.newsletter p {
    font-size: 29px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 3rem;
    transform: translateX(15%) rotateZ(-2deg);
    max-width: 70%;
    font-family: Arial, sans-serif;
    z-index: 2;
    position: relative;
}.newsletter p::before,
.newsletter p::after {
    z-index: -1;
    opacity: 0.2;
    position: absolute;
    background: rgb(153,159,173);
    content: "";
}.newsletter p::before {
    left: -10%;
    animation: slideLeft 5s cubic-bezier(0.33, 1, 0.68, 1) infinite alternate;
    height: 30%;
    width: 120%;
    top: 30%;
    transform: skewX(-20deg);
}.newsletter p::after {
    height: 10px;
    width: 40%;
    animation: growLine 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: left;
    left: 0;
    bottom: -15px;
}.newsletter .input_holder {
    transform: translateX(-15%) rotateZ(2deg);
    position: relative;
    display: flex;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    z-index: 2;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    backdrop-filter: blur(5px);
}.newsletter .input_holder:hover {
    transform: translateX(-15%) rotateZ(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.newsletter .input_holder::before,
.newsletter .input_holder::after {
    transition: all 0.3s ease;
    position: absolute;
    z-index: -1;
    border-radius: 20px;
    opacity: 0.3;
    content: "";
    border: 2px dashed rgb(153,159,173,0.5);
}.newsletter .input_holder::before {
    animation: pulseBoxShadow 3s ease-in-out infinite alternate;
    left: -8px;
    bottom: 8px;
    top: -8px;
    right: 8px;
}.newsletter .input_holder::after {
    animation: pulseBoxShadow 3s ease-in-out 1.5s infinite alternate;
    bottom: -8px;
    top: 8px;
    left: 8px;
    right: -8px;
}.newsletter .input_holder:hover::before,
.newsletter .input_holder:hover::after {
    border-color: rgb(118,121,134,0.5);
}.newsletter .subscribe_now {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
    border-top-left-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    border-bottom-left-radius: 10px;
    color: #000000;
    flex: 1;
    font-size: 16px;
    font-family: Arial, sans-serif;
    outline: none;
    background: #ffffff;
    padding: 1.2rem 1.5rem;
}.newsletter .subscribe_now:focus {
    box-shadow: inset 0 0 0 2px rgb(153,159,173);
}.newsletter .feedback_widget {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    padding: 1.2rem 2rem;
    font-size: 16px;
    background: #000000;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    border: none;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}.newsletter .feedback_widget::before {
    width: 120%;
    z-index: -1;
    position: absolute;
    background: linear-gradient(
        90deg,
        rgb(153,159,173) 0%,
        rgb(118,121,134) 50%,
        rgb(153,159,173) 100%
    );
    height: 150%;
    left: -10%;
    transition: opacity 0.3s ease;
    top: -25%;
    opacity: 0;
    transform: rotate(25deg);
    content: "";
}.newsletter .feedback_widget:hover {
    color: #ffffff;
}.newsletter .feedback_widget:hover::before {
    animation: slideGradient 2s linear infinite;
    opacity: 1;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 67% 33% 33% 67% / 33% 67% 33% 67%;
    }
}

@keyframes slideLeft {
    0% {
        transform: skewX(-20deg) translateX(-10%);
    }
    100% {
        transform: skewX(-20deg) translateX(10%);
    }
}

@keyframes growLine {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes pulseBoxShadow {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes slideGradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (max-width: 992px) {.newsletter {
    padding: 5rem 2rem;
}.newsletter p {
    max-width: 80%;
    transform: translateX(10%) rotateZ(-2deg);
    font-size: calc(29px * 0.9);
}.newsletter .input_holder {
    transform: translateX(-10%) rotateZ(2deg);
}.newsletter .input_holder:hover {
    transform: translateX(-10%) rotateZ(0deg);
}
}

@media (max-width: 768px) {.newsletter {
    padding: 4rem 1.5rem;
}.newsletter p {
    max-width: 90%;
    transform: translateX(5%) rotateZ(-1deg);
    font-size: 23px;
    margin-bottom: 2.5rem;
}.newsletter .input_holder {
    flex-direction: column;
    transform: translateX(-5%) rotateZ(1deg);
    padding: 10px;
}.newsletter .input_holder:hover {
    transform: translateX(-5%) rotateZ(0deg);
}.newsletter .subscribe_now {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 0.5rem;
}.newsletter .feedback_widget {
    border-radius: 10px;
    width: 100%;
}
}

@media (max-width: 576px) {.newsletter {
    padding: 3rem 1rem;
    margin: 5rem 0;
}.newsletter p {
    max-width: 100%;
    text-align: center;
    transform: none;
}.newsletter .input_holder {
    padding: 8px;
    transform: none;
}.newsletter .input_holder:hover {
    transform: none;
}.newsletter .subscribe_now,
    .newsletter .feedback_widget {
    padding: 1rem;
}}.course_suitability {
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
    position: relative;
    padding: 130px 0;
}.course_suitability::before {
    content: "";
    background: 
        linear-gradient(45deg, rgb(153,159,173,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(118,121,134,0.5) 25%, transparent 25%);
    position: absolute;
    background-size: 60px 60px;
    left: 0;
    opacity: 0.05;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 0;
}.course_suitability .container {
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
}.course_suitability .academy_team {
    position: relative;
}.course_suitability h4 {
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
    font-size: 34px;
    padding-bottom: 20px;
    position: relative;
    color: #000000;
}.course_suitability h4::after {
    bottom: 0;
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    left: 50%;
    border-radius: 2px;
    content: "";
    width: 70px;
    position: absolute;
    height: 4px;
    transform: translateX(-50%);
}.course_suitability div {
    justify-content: center;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}.course_suitability div p {
    transition: all 0.3s ease;
    border-radius: 14px;
    font-size: 16px;
    padding: 25px 25px 25px 75px;
    background: #ffffff;
    line-height: 1.6;
    min-width: 280px;
    position: relative;
    margin: 0;
    flex: 0 0 calc(33.333% - 20px);
    color: #000000;
    z-index: 1;
}.course_suitability div p::before {
    position: absolute;
    width: calc(100% - 10px);
    top: 5px;
    border: 1px solid rgb(153,159,173,0.5);
    z-index: -1;
    border-radius: calc(14px - 5px);
    background: #ffffff;
    transition: all 0.3s ease;
    opacity: 0.4;
    height: calc(100% - 10px);
    content: "";
    left: 5px;
}.course_suitability div p::after {
    background: #ffffff;
    position: absolute;
    width: calc(100% - 20px);
    border: 1px solid rgb(118,121,134,0.5);
    content: "";
    left: 10px;
    height: calc(100% - 20px);
    opacity: 0.2;
    border-radius: calc(14px - 10px);
    transition: all 0.3s ease;
    z-index: -2;
    top: 10px;
}.course_suitability div p:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}.course_suitability div p:hover::before {
    left: 10px;
    top: 10px;
}.course_suitability div p:hover::after {
    left: 15px;
    top: 15px;
}.course_suitability div p svg {
    height: 35px;
    padding: 8px;
    border-radius: 50%;
    top: 25px;
    width: 35px;
    background: rgb(188,194,213);
    left: 25px;
    transition: all 0.3s ease;
    position: absolute;
}.course_suitability div p:hover svg {
    background: rgb(153,159,173,0.5);
    transform: rotate(15deg);
}.course_suitability div p svg path {
    fill: rgb(153,159,173);
    transition: all 0.3s ease;
}.course_suitability div p:hover svg path {
    fill: rgb(118,121,134);
}

@media (max-width: 991px) {.course_suitability {
    padding: 100px 0;
}.course_suitability h4 {
    margin-bottom: 60px;
    font-size: calc(34px - 2px);
}.course_suitability div {
    gap: 25px;
}.course_suitability div p {
    padding: 20px 20px 20px 65px;
    min-width: 250px;
    flex: 0 0 calc(50% - 15px);
}.course_suitability div p svg {
    left: 20px;
    height: 30px;
    top: 20px;
    width: 30px;
}
}

@media (max-width: 767px) {.course_suitability {
    padding: 80px 0;
}.course_suitability h4 {
    font-size: calc(34px - 4px);
    margin-bottom: 50px;
}.course_suitability div {
    gap: 20px;
}.course_suitability div p {
    padding: 18px 18px 18px 60px;
    flex: 0 0 100%;
}.course_suitability div p svg {
    height: 28px;
    width: 28px;
}
}

@media (max-width: 479px) {.course_suitability {
    padding: 60px 0;
}.course_suitability h4 {
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-size: calc(34px - 6px);
}.course_suitability div {
    gap: 15px;
}.course_suitability div p {
    font-size: calc(16px - 1px);
    padding: 15px 15px 15px 55px;
}.course_suitability div p svg {
    top: 15px;
    width: 25px;
    left: 15px;
    height: 25px;
    padding: 6px;
}}.education_experience {
    overflow: hidden;
    padding: 7rem 0;
    position: relative;
    background: rgb(188,194,213);
    min-height: 700px;
}.education_experience::before {
    background-size: 50px 50px;
    content: "";
    animation: gridMove 20s linear infinite;
    background: 
        linear-gradient(0deg, transparent 49.5%, rgb(153,159,173,0.5) 49.5%, rgb(153,159,173,0.5) 50.5%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgb(153,159,173,0.5) 49.5%, rgb(153,159,173,0.5) 50.5%, transparent 50.5%);
    opacity: 0.15;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    top: 0;
}.education_experience .container {
    z-index: 2;
    position: relative;
    padding: 0 2rem;
    margin: 0 auto;
    max-width: 1200px;
}.education_experience .review_corner {
    margin: 0 auto;
    display: flex;
    position: relative;
    perspective: 2000px;
    flex-direction: column;
    max-width: 1000px;
    height: 650px;
}.education_experience .image_shadow {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 17px;
    filter: contrast(1.1) brightness(1.05);
    position: absolute;
    z-index: 3;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.5);
    width: 400px;
    top: -20px;
    height: 400px;
    transform: translateZ(100px) rotateY(-15deg);
    right: 0;
}.education_experience .review_corner:hover .image_shadow {
    transform: translateZ(120px) rotateY(-10deg) translateX(-20px);
}.education_experience .name {
    font-weight: 700;
    background: rgb(153,159,173);
    left: 0;
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 1.5rem 2rem;
    position: absolute;
    transform: translateZ(70px) rotateY(5deg);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    color: #ffffff;
    border-radius: 10px;
    top: 100px;
    z-index: 4;
}.education_experience .review_corner:hover .name {
    transform: translateZ(90px) rotateY(0deg) translateX(20px);
}.education_experience .review_corner span:not(.name) {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateZ(50px) rotateY(5deg);
    position: absolute;
    font-size: 22px;
    background: #ffffff;
    top: 190px;
    font-weight: 600;
    z-index: 3;
    padding: 1rem 1.5rem;
    color: #000000;
    left: 40px;
    border-radius: 10px;
}.education_experience .review_corner:hover span:not(.name) {
    transform: translateZ(70px) rotateY(0deg) translateX(30px);
}.education_experience .career_record {
    border-bottom: 4px solid rgb(153,159,173);
    padding: 3rem;
    right: 0;
    color: #000000;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 2;
    transform: translateZ(30px);
    line-height: 1.8;
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    left: 0;
    border-top: 4px solid rgb(118,121,134);
    position: absolute;
    backdrop-filter: blur(10px);
    bottom: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    font-size: 14px;
}.education_experience .review_corner:hover .career_record {
    transform: translateZ(40px) translateY(-10px);
}.education_experience .career_record::before {
    mix-blend-mode: overlay;
    position: absolute;
    height: 100%;
    opacity: 0.1;
    content: "";
    background-size: 20px 20px;
    left: 0;
    top: 0;
    width: 100%;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(118,121,134,0.5) 49.5%, rgb(118,121,134,0.5) 50.5%, transparent 50.5%);
}.education_experience .container::after {
    z-index: -1;
    background: 
        radial-gradient(circle at 80% 20%, rgb(153,159,173,0.5) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgb(118,121,134,0.5) 0%, transparent 50%);
    left: 0;
    height: 100%;
    animation: colorPulse 10s ease-in-out infinite alternate;
    content: "";
    width: 100%;
    position: absolute;
    filter: blur(100px);
    top: 0;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes colorPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

@media (max-width: 992px) {.education_experience .review_corner {
    height: auto;
    padding: 20px 0;
    flex-direction: column;
}.education_experience .image_shadow {
    height: 300px;
    transform: none;
    width: 300px;
    position: relative;
    top: auto;
    margin: 0 auto 30px;
    right: auto;
    border-radius: 20px;
}.education_experience .review_corner:hover .image_shadow {
    transform: translateY(-10px);
}.education_experience .name {
    left: auto;
    transform: none;
    position: relative;
    text-align: center;
    top: auto;
    width: 90%;
    margin: 0 auto 30px;
}.education_experience .review_corner:hover .name {
    transform: translateY(-5px);
}.education_experience .review_corner span:not(.name) {
    display: block;
    text-align: center;
    margin: 0 auto 45px;
    position: relative;
    width: max-content;
    top: auto;
    transform: none;
    left: auto;
}.education_experience .review_corner:hover span:not(.name) {
    transform: translateY(-5px);
}.education_experience .career_record {
    position: relative;
    transform: none;
    bottom: auto;
}.education_experience .review_corner:hover .career_record {
    transform: translateY(-5px);
}
}

@media (max-width: 576px) {.education_experience {
    padding: 4rem 0;
}.education_experience .image_shadow {
    width: 220px;
    margin-bottom: 35px;
    height: 220px;
}.education_experience .name {
    width: 100%;
    min-width: auto;
    margin-bottom: 25px;
    font-size: 22px;
    padding: 1rem 1.5rem;
}.education_experience .review_corner span:not(.name) {
    margin-bottom: 35px;
    font-size: 14px;
    padding: 0.5rem 1rem;
}.education_experience .career_record {
    padding: 2rem 1.5rem;
    font-size: calc(14px * 0.9);
}}.contact_form_box {
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(120deg, rgb(188,194,213), rgba(rgb(153,159,173), 0.03));
    position: relative;
}.contact_form_box::before {
    left: 0;
    z-index: 1;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(rgb(153,159,173), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(rgb(118,121,134), 0.05) 0%, transparent 50%);
}.contact_form_box::after {
    content: "";
    animation: backgroundShift 30s linear infinite;
    background-image: 
        linear-gradient(90deg, rgba(rgb(153,159,173), 0.03) 1px, transparent 1px),
        linear-gradient(rgba(rgb(153,159,173), 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(rgb(118,121,134), 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(rgb(153,159,173), 0.04) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(rgb(118,121,134), 0.04) 0%, transparent 30%);
    position: absolute;
    height: 100%;
    z-index: 1;
    background-size: 30px 30px, 30px 30px, 600px 600px, 400px 400px, 300px 300px;
    top: 0;
    background-position: center center;
    width: 100%;
    left: 0;
}@keyframes backgroundShift {
    0% {
        background-position: 0px 0px, 0px 0px, center center, 80% 20%, 20% 80%;
    }
    100% {
        background-position: 30px 30px, 30px 30px, center center, 85% 15%, 15% 85%;
    }
}

.contact_form_box .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    position: relative;
    padding: 0 30px;
}.contact_form_box h2 {
    font-weight: 700;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 34px;
    position: relative;
    letter-spacing: 1px;
    margin-bottom: 15px;
    perspective: 1000px;
    display: inline-block;
    color: #000000;
}.contact_form_box h2::before {
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(153,159,173), transparent);
    height: 2px;
    content: "";
    left: 0;
    bottom: -10px;
    position: absolute;
}.contact_form_box .query_list {
    display: flex;
    border-radius: 16px;
    perspective: 1000px;
    transform-style: preserve-3d;
    background: #ffffff;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}.contact_form_box .query_list::before {
    content: "";
    z-index: 3;
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    left: 0;
    width: 100%;
    height: 5px;
}.contact_form_box .image_shadow {
    overflow: hidden;
    transform: translateZ(0);
    position: relative;
    min-height: 500px;
    flex: 0 0 45%;
}.contact_form_box .image_shadow::before {
    position: absolute;
    inset: 0;
    content: "";
    z-index: 1;
    mix-blend-mode: multiply;
    background: linear-gradient(210deg, rgba(rgb(153,159,173), 0.5), rgba(rgb(118,121,134), 0.5));
}.contact_form_box .image_shadow::after {
    height: 300%;
    z-index: 2;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    top: -100%;
    width: 300%;
    animation: shine 6s infinite ease-in-out;
    position: absolute;
    content: "";
    left: -100%;
}@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    30%, 100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.contact_form_box .inquiry_section {
    flex: 0 0 55%;
    position: relative;
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
}.contact_form_box .inquiry_section::before {
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
    background: 
        radial-gradient(circle, rgba(rgb(153,159,173), 0.03) 0%, transparent 70%);
    height: 500px;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 500px;
}.contact_form_box form {
    z-index: 3;
    position: relative;
}.contact_form_box form h3 {
    letter-spacing: 0.5px;
    position: relative;
    font-size: 20px;
    margin-bottom: 35px;
    color: #000000;
    font-weight: 600;
}.contact_form_box form h3::after {
    left: 0;
    height: 2px;
    background: rgb(153,159,173);
    bottom: -15px;
    width: 30px;
    position: absolute;
    content: "";
}.contact_form_box form input[type="text"] {
    border: 1px solid rgba(rgb(153,159,173), 0.1);
    backdrop-filter: blur(5px);
    color: #000000;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(rgb(188,194,213), 0.5);
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 25px;
}.contact_form_box form input[type="text"]:focus {
    border-color: rgb(153,159,173);
    background: rgba(#ffffff, 0.9);
    box-shadow: 0 0 0 4px rgba(rgb(153,159,173), 0.1);
    outline: none;
}.contact_form_box form input[type="text"]::placeholder {
    color: rgba(#000000, 0.5);
    transition: all 0.3s ease;
}.contact_form_box form input[type="text"]:focus::placeholder {
    transform: translateX(5px);
    opacity: 0.7;
}.contact_form_box .feedback_request {
    position: relative;
    margin-bottom: 30px;
    display: flex;
}.contact_form_box .feedback_request input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_form_box .feedback_request label {
    line-height: 1.5;
    font-size: 16px;
    padding-left: 35px;
    cursor: pointer;
    color: #000000;
    position: relative;
}.contact_form_box .feedback_request label::before {
    background: rgba(#ffffff, 0.6);
    position: absolute;
    transition: all 0.3s ease;
    border: 1px solid rgba(rgb(153,159,173), 0.3);
    width: 22px;
    left: 0;
    height: 22px;
    border-radius: 4px;
    top: 0;
    content: "";
}.contact_form_box .feedback_request input[type="checkbox"]:checked + label::before {
    background: rgb(153,159,173);
    border-color: rgb(153,159,173);
}.contact_form_box .feedback_request input[type="checkbox"]:checked + label::after {
    left: 8px;
    border: solid #ffffff;
    top: 4px;
    transform: rotate(45deg);
    width: 6px;
    height: 12px;
    content: "";
    border-width: 0 2px 2px 0;
    position: absolute;
}.contact_form_box .feedback_request label a {
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgb(153,159,173);
    position: relative;
    text-decoration: none;
}.contact_form_box .feedback_request label a::after {
    background: rgb(153,159,173);
    transform-origin: right;
    content: "";
    bottom: -2px;
    transform: scaleX(0);
    height: 1px;
    transition: transform 0.3s ease;
    left: 0;
    position: absolute;
    width: 100%;
}.contact_form_box .feedback_request label a:hover {
    color: rgb(118,121,134);
}.contact_form_box .feedback_request label a:hover::after {
    transform-origin: left;
    background: rgb(118,121,134);
    transform: scaleX(1);
}.contact_form_box .feedback_widget {
    transition: all 0.3s ease;
    color: #ffffff;
    background: rgb(153,159,173);
    border: none;
    font-weight: 600;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    padding: 16px 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
}.contact_form_box .feedback_widget::before {
    background: linear-gradient(45deg, rgb(153,159,173), rgb(118,121,134));
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 0.3s ease;
    content: "";
    left: 0;
    position: absolute;
}.contact_form_box .feedback_widget:hover::before {
    opacity: 1;
}.contact_form_box .feedback_widget::after {
    width: 50px;
    border-radius: 50%;
    top: -50%;
    z-index: -1;
    transform: scale(0);
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    content: "";
    left: -10px;
    transition: all 0.5s ease;
}.contact_form_box .feedback_widget:hover::after {
    transform: scale(4);
    opacity: 0;
}.contact_form_box svg {
    height: 22px;
    fill: none;
    transition: all 0.3s ease;
    width: 22px;
    stroke: rgb(153,159,173);
    filter: drop-shadow(0 2px 2px rgba(rgb(153,159,173), 0.3));
    stroke-width: 2;
}.contact_form_box svg path {
    stroke: rgb(153,159,173);
    stroke-width: 2;
    transition: all 0.3s ease;
}.contact_form_box svg:hover,
.contact_form_box svg:hover path {
    stroke: rgb(118,121,134);
    transform: translateY(-2px);
}.contact_form_box form input {
    border: 1px solid rgb(153,159,173);
}

@media (max-width: 1024px) {.contact_form_box {
    padding: 80px 0;
}.contact_form_box .query_list {
    margin-top: 50px;
}.contact_form_box .image_shadow {
    min-height: 450px;
}.contact_form_box .inquiry_section {
    padding: 50px 40px;
}
}

@media (max-width: 768px) {.contact_form_box {
    padding: 60px 0;
}.contact_form_box .query_list {
    flex-direction: column;
    margin-top: 40px;
}.contact_form_box .image_shadow {
    width: 100%;
    min-height: 300px;
}.contact_form_box .inquiry_section {
    width: 100%;
    padding: 40px 30px;
}.contact_form_box form h3 {
    margin-bottom: 30px;
}.contact_form_box form input[type="text"] {
    padding: 15px 20px;
    margin-bottom: 20px;
}.contact_form_box .feedback_request {
    margin-bottom: 25px;
}.contact_form_box .feedback_widget {
    width: 100%;
    padding: 14px 30px;
}
}

@media (max-width: 480px) {.contact_form_box {
    padding: 50px 0;
}.contact_form_box h2 {
    font-size: calc(34px * 0.85);
}.contact_form_box .query_list {
    border-radius: 12px;
    margin-top: 30px;
}.contact_form_box .image_shadow {
    min-height: 220px;
}.contact_form_box .inquiry_section {
    padding: 30px 20px;
}.contact_form_box form h3 {
    margin-bottom: 25px;
    font-size: calc(20px * 0.9);
}.contact_form_box form input[type="text"] {
    margin-bottom: 15px;
    padding: 12px 15px;
}.contact_form_box .feedback_request {
    margin-bottom: 20px;
}.contact_form_box .feedback_request label {
    font-size: calc(16px * 0.9);
}.contact_form_box .feedback_widget {
    padding: 12px 20px;
}}.instructional_approach {
    padding: 7rem 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, rgb(188,194,213), #ffffff);
}.instructional_approach::before {
    opacity: 0.3;
    background-image: radial-gradient(circle at 10% 20%, rgb(153,159,173,0.5) 0%, transparent 40%);
    height: 100%;
    content: "";
    z-index: 0;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}.instructional_approach::after {
    z-index: 0;
    opacity: 0.3;
    right: 0;
    background-image: radial-gradient(circle at 90% 80%, rgb(118,121,134,0.5) 0%, transparent 40%);
    content: "";
    bottom: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}.instructional_approach .academy_team {
    padding: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 850px;
    border-radius: 25px;
    z-index: 2;
    gap: 4px;
    margin: 0 auto;
    display: flex;
    position: relative;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
}.instructional_approach h3 {
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    padding: 1.5rem 2rem;
    text-align: left;
    animation: tabSlideDown 0.6s ease-out forwards;
    font-size: 32px;
    color: #ffffff;
    border-radius: 25px 25px 0 0;
    font-weight: 700;
    margin: 0;
    position: relative;
}.instructional_approach h3::before {
    position: absolute;
    width: 20px;
    animation: pulse 2s infinite;
    border-radius: 50%;
    height: 20px;
    background: #ffffff;
    right: 2rem;
    content: "";
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
}.instructional_approach h3::after {
    position: absolute;
    animation: shine 3s infinite ease-in-out;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: inherit;
    background: 
        linear-gradient(
            90deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0) 50%, 
            rgba(255, 255, 255, 0.1) 100%
        );
}.instructional_approach span {
    animation: tabContent 0.8s 0.3s ease-out forwards;
    color: #000000;
    border-radius: 0 0 25px 25px;
    padding: 2rem;
    line-height: 1.8;
    opacity: 0;
    font-size: 14px;
    background: #ffffff;
    position: relative;
    transform-origin: top center;
}.instructional_approach span::before {
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    background: linear-gradient(
        90deg,
        rgb(153,159,173,0.5),
        rgb(118,121,134,0.5)
    );
    position: absolute;
    z-index: 1;
    height: 5px;
}.instructional_approach span::after {
    height: 40px;
    opacity: 0.3;
    position: absolute;
    width: 40px;
    bottom: 1rem;
    border-radius: 50%;
    border: 2px solid rgb(153,159,173,0.5);
    animation: rotate 15s linear infinite;
    right: 1rem;
    background: 
        linear-gradient(
            45deg,
            transparent 45%,
            rgb(153,159,173) 45%,
            rgb(153,159,173) 55%,
            transparent 55%
        );
    content: "";
    background-size: 10px 10px;
}

@keyframes tabSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tabContent {
    from {
        opacity: 0;
        transform: scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {.instructional_approach {
    padding: 6rem 1.5rem;
}.instructional_approach h3 {
    font-size: calc(32px * 0.9);
    padding: 1.3rem 2rem;
}.instructional_approach span {
    padding: 1.8rem;
}.instructional_approach h3::before {
    width: 16px;
    height: 16px;
}
}

@media (max-width: 768px) {.instructional_approach {
    padding: 5rem 1rem;
}.instructional_approach h3 {
    padding: 1.2rem 1.5rem;
    font-size: calc(32px * 0.8);
    text-align: center;
}.instructional_approach span {
    padding: 1.5rem;
    font-size: calc(14px * 0.95);
}.instructional_approach h3::before {
    height: 14px;
    width: 14px;
    right: 1.5rem;
}.instructional_approach span::after {
    height: 30px;
    width: 30px;
}}.pricing_bucket {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}.pricing_bucket::before {
    left: 0;
    content: "";
    z-index: 1;
    top: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
}.pricing_bucket .container {
    z-index: 2;
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
    max-width: 1320px;
}.pricing_bucket .pay_plans {
    align-items: center;
    display: flex;
    flex-direction: column;
}.pricing_bucket h2 {
    animation: fadeInUp 0.8s ease-out forwards;
    transform: translateY(20px);
    font-weight: 700;
    text-align: center;
    opacity: 0;
    color: #ffffff;
    font-size: 29px;
    margin-bottom: 20px;
}.pricing_bucket .study_offers {
    text-align: center;
    font-size: 17px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    color: rgb(255, 255, 255, 0.5);
    max-width: 800px;
    margin-bottom: 50px;
    transform: translateY(20px);
    opacity: 0;
}.pricing_bucket .pricing_schemes {
    list-style: none;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    width: 100%;
    padding: 0;
}.pricing_bucket .pricing_schemes li {
    transform: translateY(30px);
    animation-delay: calc(0.3s + (0.15s * var(--li-index, 0)));
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}.pricing_bucket .pricing_schemes li:nth-child(1) {
    --li-index: 0;
}.pricing_bucket .pricing_schemes li:nth-child(2) {
    --li-index: 1;
}.pricing_bucket .pricing_schemes li:nth-child(3) {
    --li-index: 2;
}.pricing_bucket .pricing_schemes li:nth-child(4) {
    --li-index: 3;
}.pricing_bucket .price_tiers {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    transform: perspective(1000px) rotateX(0deg);
    height: 100%;
    display: block;
    will-change: transform;
}.pricing_bucket .price_tiers:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
}.pricing_bucket .pricing_offers {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
}.pricing_bucket .price_tiers:hover .pricing_offers {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 15px rgba(rgb(153,159,173,0.5), 0.5);
}.pricing_bucket .pricing_offers::before {
    opacity: 0.1;
    position: absolute;
    transform: rotate(-45deg);
    left: -10%;
    width: 40%;
    background: linear-gradient(135deg, rgb(153,159,173,0.5) 0%, transparent 70%);
    content: "";
    height: 50%;
    transition: all 0.6s ease;
    top: -10%;
}.pricing_bucket .price_tiers:hover .pricing_offers::before {
    transform: rotate(-45deg) translateY(-20%);
    opacity: 0.15;
}.pricing_bucket .enroll_cost {
    box-sizing: border-box;
    min-height: 280px;
    flex-direction: column;
    display: flex;
    padding: 35px 30px;
    height: 100%;
}.pricing_bucket .enroll_cost h4 {
    font-size: calc(23px * 1.1);
    color: #ffffff;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
}.pricing_bucket .enroll_cost h4::after {
    position: absolute;
    width: 40px;
    bottom: 0;
    transition: width 0.4s ease;
    height: 3px;
    content: "";
    left: 0;
    background: rgb(153,159,173);
}.pricing_bucket .price_tiers:hover .enroll_cost h4::after {
    width: 60px;
}.pricing_bucket .enroll_cost p {
    word-wrap: break-word;
    font-size: calc(17px * 0.9);
    margin-bottom: 25px;
    flex-grow: 1;
    overflow-wrap: break-word;
    line-height: 1.7;
    hyphens: auto;
    white-space: normal;
    color: rgb(255, 255, 255, 0.5);
}.pricing_bucket .pricing_fees {
    border-radius: 4px;
    font-weight: 700;
    align-self: flex-start;
    position: relative;
    font-size: calc(23px * 1.2);
    display: inline-block;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    color: rgb(153,159,173);
}.pricing_bucket .pricing_fees::before {
    top: 0;
    transition: left 0.7s ease;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    height: 100%;
    left: -100%;
    width: 100%;
    content: "";
    position: absolute;
}.pricing_bucket .price_tiers:hover .pricing_fees::before {
    left: 100%;
}

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

@media (max-width: 1200px) {.pricing_bucket {
    padding: 100px 0;
}.pricing_bucket .pricing_schemes {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}
}

@media (max-width: 992px) {.pricing_bucket {
    padding: 80px 0;
}.pricing_bucket h2 {
    font-size: calc(29px * 0.9);
}.pricing_bucket .pricing_schemes {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.pricing_bucket .enroll_cost {
    padding: 25px 20px;
}
}

@media (max-width: 768px) {.pricing_bucket {
    padding: 70px 0;
}.pricing_bucket h2 {
    font-size: calc(29px * 0.8);
    margin-bottom: 15px;
}.pricing_bucket .study_offers {
    margin-bottom: 35px;
    font-size: calc(17px * 0.95);
}.pricing_bucket .pricing_schemes {
    margin: 0 auto;
    max-width: 450px;
    grid-template-columns: 1fr;
}.pricing_bucket .enroll_cost {
    min-height: auto;
}
}

@media (max-width: 576px) {.pricing_bucket {
    padding: 60px 0;
}.pricing_bucket h2 {
    font-size: calc(29px * 0.7);
}.pricing_bucket .study_offers {
    font-size: calc(17px * 0.9);
}.pricing_bucket .enroll_cost {
    padding: 20px 15px;
}.pricing_bucket .enroll_cost h4 {
    font-size: 23px;
}.pricing_bucket .enroll_cost p {
    font-size: calc(17px * 0.85);
}.pricing_bucket .pricing_fees {
    font-size: 23px;
    padding: 8px 15px;
}
}