* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}.hZdx-abuse-ctrl {
    flex: 0 0 auto;
}.container {
    max-width: 100%;
    width: 1128px;
    margin: auto;
}svg {
    width: 30px;
    height: 30px;
}header,footer {
    width: 100%;
}html,body {
    color: #000000;
    height: 100%;
    scroll-behavior: auto;
    font-family: Arial, sans-serif;
    min-height: 100%;
}.PNcY-top-header {
    flex: 1 0 auto;
}a {
    color: inherit;
    text-decoration: none;
}.rDdY-core-container {
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    display: flex;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.luXP-primary-page {
    --title-glow: 0 0 10px rgba(255, 255, 255, 0.15);
    min-height: 100vh;
    width: 100%;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    --primary-accent: hsla(215, 75%, 53%, 0.9);
    --secondary-accent: hsla(190, 85%, 57%, 0.85);
    overflow: hidden;
    position: relative;
}.luXP-primary-page .bdki-learn-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    height: 100vh;
}.luXP-primary-page .bdki-learn-start::before {
    backdrop-filter: blur(2px) brightness(0.85);
    z-index: 1;
    top: 0;
    content: '';
    height: 100%;
    left: 0;
    background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(25, 28, 41, 0.8) 40%,
    rgba(28, 31, 44, 0.9) 100%
  );
    width: 100%;
    position: absolute;
}.luXP-primary-page .bdki-learn-start::after {
    left: 0;
    width: 100%;
    opacity: 0.15;
    z-index: 2;
    mix-blend-mode: overlay;
    content: '';
    background: 
    radial-gradient(
      circle at 75% 25%,
      rgb(156,190,203,0.5) 0%,
      transparent 35%
    ),
    linear-gradient(
      45deg,
      transparent 0%,
      rgb(129,160,174,0.5) 100%
    );
    height: 100%;
    top: 0;
    position: absolute;
}.luXP-primary-page .VBQs-skill-pro {
    animation: titleFadeIn 1.2s ease-out forwards;
    padding: 4rem 0;
    max-width: 1200px;
    z-index: 5;
    margin-left: 10%;
    width: 90%;
    transform: translateY(-2%);
    position: relative;
}.luXP-primary-page .VBQs-skill-pro > div {
    opacity: 0;
    margin-bottom: 2.5rem;
    position: relative;
    transform: translateY(20px);
}.luXP-primary-page .VBQs-skill-pro > div:nth-child(1) {
    animation: slideUp 0.6s 0.2s ease-out forwards;
}.luXP-primary-page .VBQs-skill-pro > div:nth-child(2) {
    animation: slideUp 0.6s 0.4s ease-out forwards;
}.luXP-primary-page .VBQs-skill-pro > div:nth-child(3) {
    animation: slideUp 0.6s 0.6s ease-out forwards;
}.luXP-primary-page .VBQs-skill-pro p {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    text-shadow: var(--text-shadow);
}.luXP-primary-page .VBQs-skill-pro p::before {
    top: 50%;
    position: absolute;
    background: rgb(156,190,203);
    width: 1.5rem;
    content: '';
    height: 2px;
    left: 0;
    transform: translateY(-50%);
}.luXP-primary-page .title_style_header {
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    max-width: 90%;
    transform-origin: left center;
    margin: 0;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    background: linear-gradient(
    to right,
    #ffffff 0%,
    rgb(129,160,174) 100%
  );
    line-height: 1.1;
    text-shadow: var(--title-glow);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    position: relative;
}.luXP-primary-page .title_style_header::after {
    background: linear-gradient(
    to right,
    rgb(156,190,203) 0%,
    rgb(129,160,174) 100%
  );
    position: absolute;
    animation: lineExpand 0.8s 0.8s ease-out forwards;
    height: 0.25rem;
    transform-origin: left;
    width: 6rem;
    content: '';
    transform: scaleX(0);
    left: 0;
    bottom: -0.8rem;
}.luXP-primary-page .VBQs-skill-pro h3 {
    color: #ffffff;
    position: relative;
    max-width: 700px;
    text-shadow: var(--text-shadow);
    opacity: 0.9;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    padding-top: 1rem;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}.luXP-primary-page .VBQs-skill-pro h3::before {
    width: 3rem;
    opacity: 0.7;
    background: rgb(129,160,174);
    height: 1px;
    top: 0;
    position: absolute;
    content: '';
    left: 0;
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@keyframes lineExpand {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 1200px) {.luXP-primary-page .VBQs-skill-pro {
    margin-left: 8%;
    width: 84%;
}.luXP-primary-page .title_style_header {
    max-width: 95%;
}
}

@media (max-width: 992px) {.luXP-primary-page .VBQs-skill-pro {
    width: 88%;
    margin-left: 6%;
}.luXP-primary-page .title_style_header {
    max-width: 100%;
}.luXP-primary-page .VBQs-skill-pro h3 {
    max-width: 600px;
}
}

@media (max-width: 768px) {.luXP-primary-page .VBQs-skill-pro {
    width: 90%;
    padding: 3rem 0;
    margin-left: 5%;
}.luXP-primary-page .VBQs-skill-pro > div {
    margin-bottom: 2rem;
}.luXP-primary-page .VBQs-skill-pro p {
    padding-left: 1.5rem;
}.luXP-primary-page .VBQs-skill-pro p::before {
    width: 1.2rem;
}.luXP-primary-page .title_style_header::after {
    width: 4rem;
}
}

@media (max-width: 576px) {.luXP-primary-page .bdki-learn-start {
    min-height: 100vh;
    height: auto;
}.luXP-primary-page .VBQs-skill-pro {
    padding: 2.5rem 0;
    width: 90%;
    margin: 0 auto;
}.luXP-primary-page .VBQs-skill-pro > div {
    margin-bottom: 1.5rem;
}.luXP-primary-page .VBQs-skill-pro p {
    font-size: 0.9rem;
    padding-left: 1.2rem;
}.luXP-primary-page .VBQs-skill-pro p::before {
    width: 1rem;
}.luXP-primary-page .VBQs-skill-pro h3 {
    font-size: 1.1rem;
}
}

@media (hover: hover) {.luXP-primary-page .bdki-learn-start:hover::after {
    animation: backgroundShift 20s infinite alternate ease-in-out;
}}

@keyframes backgroundShift {
  0% {
    opacity: 0.15;
    background-position: 0% 0%;
  }
  50% {
    opacity: 0.25;
    background-position: 100% 0%;
  }
  100% {
    opacity: 0.15;
    background-position: 0% 0%;
  }
}.qfaI-secure-depot {
    color: #000000;
    background-color: rgb(185,222,233);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    padding: 40px;
}.qfaI-secure-depot h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(156,190,203);
    text-transform: uppercase;
}.qfaI-secure-depot h2 {
    margin-bottom: 15px;
    color: rgb(129,160,174);
    font-weight: 600;
    font-size: 29px;
}.qfaI-secure-depot h3,
.qfaI-secure-depot h4,
.qfaI-secure-depot h5,
.qfaI-secure-depot h6 {
    margin-bottom: 10px;
    color: rgb(156,190,203);
    font-size: 23px;
    font-weight: 300;
}.qfaI-secure-depot ul,
.qfaI-secure-depot ol {
    padding: 0 0 0 20px;
    margin: 0;
}.qfaI-secure-depot ul {
    list-style-type: disc;
}.qfaI-secure-depot ol {
    list-style-type: decimal;
}.qfaI-secure-depot li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #000000;
}.qfaI-secure-depot p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 15px;
}.qfaI-secure-depot div {
    margin-bottom: 20px;
}.qfaI-secure-depot span {
    color: rgb(156,190,203);
    font-weight: 600;
}
@media only screen and (max-width: 800px) {.qfaI-secure-depot {
    padding: 20px;
    border-radius: 10px;
    box-shadow: none;
}.qfaI-secure-depot h1 {
    font-size: calc(23px * 0.8);
}.qfaI-secure-depot h2 {
    font-size: calc(23px * 0.8);
}.qfaI-secure-depot ul,
    .qfaI-secure-depot ol {
    padding-left: 15px;
}}header {
    position: relative;
    padding: 1.2rem 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgb(185,222,233), #ffffff);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
}header::before {
    content: '';
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, 
        transparent 65%, 
        rgb(156,190,203,0.5) 65%, 
        rgb(156,190,203,0.5) 70%, 
        transparent 70%),
        linear-gradient(135deg, 
        transparent 75%, 
        rgb(129,160,174,0.5) 75%, 
        rgb(129,160,174,0.5) 80%, 
        transparent 80%);
    opacity: 0.5;
    left: 0;
    height: 100%;
    position: absolute;
    z-index: 0;
}header .container {
    position: relative;
    z-index: 1;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 3%;
}header .aWzj-main-teach {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    display: flex;
}header .cuNL-top-train {
    position: relative;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(156,190,203,0.5), rgb(129,160,174,0.5));
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 1.5rem;
    display: flex;
    border-radius: 29px;
    text-decoration: none;
}header .cuNL-top-train::before {
    position: absolute;
    content: '';
    transition: opacity 0.3s ease;
    left: -50%;
    width: 200%;
    top: -50%;
    opacity: 0;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}header .cuNL-top-train:hover::before {
    opacity: 1;
}header .cuNL-top-train svg {
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    width: 150px;
}header .cuNL-top-train:hover svg {
    transform: scale(1.03);
}header .cmeV-head-info {
    gap: 0.6rem;
    margin-top: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    display: flex;
    width: 100%;
}header .joHz-nav-wrap {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #000000;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    background: #ffffff;
    padding: 0.6rem 1.2rem;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}header .joHz-nav-wrap::before {
    transform-origin: left;
    transform: scaleX(0);
    content: '';
    transition: transform 0.3s ease;
    top: 0;
    width: 100%;
    height: 3px;
    left: 0;
    background: linear-gradient(to right, rgb(156,190,203), rgb(129,160,174));
    position: absolute;
}header .joHz-nav-wrap:hover {
    color: rgb(156,190,203);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}header .joHz-nav-wrap:hover::before {
    transform: scaleX(1);
}

@media (max-width: 991px) {header {
    padding: 1rem 0;
}header .cuNL-top-train {
    padding: 0.5rem 1.2rem;
}header .cuNL-top-train svg {
    width: 140px;
}header .cmeV-head-info {
    gap: 0.5rem;
}header .joHz-nav-wrap {
    padding: 0.5rem 1rem;
}
}

@media (max-width: 767px) {header .aWzj-main-teach {
    gap: 1.5rem;
}header .cuNL-top-train {
    padding: 0.4rem 1rem;
}header .cuNL-top-train svg {
    width: 130px;
}header .cmeV-head-info {
    gap: 0.5rem;
}header .joHz-nav-wrap {
    font-size: calc(14px - 1px);
    padding: 0.5rem 0.9rem;
}
}

@media (max-width: 480px) {header {
    padding: 1rem 0;
}header .aWzj-main-teach {
    gap: 1rem;
}header .cuNL-top-train svg {
    width: 120px;
}header .cmeV-head-info {
    justify-content: flex-start;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
}header .cmeV-head-info::-webkit-scrollbar {
    height: 3px;
}header .cmeV-head-info::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(156,190,203);
}header .joHz-nav-wrap {
    margin-right: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}}header .top_plank {
    background: rgb(156,190,203);
    color:  #ffffff;
}header .top_plank .hVan-skill-trackpro div svg, header .top_plank .hVan-skill-trackpro div svg path {
    fill: #ffffff;
}header .top_plank .hVan-skill-trackpro div span {
    color: #ffffff;
}header .top_plank .hVan-skill-trackpro {
    font-size: 13px;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0 10px 0;
    line-height: 21px;
    justify-content: flex-start;
    display: flex;
    width: 100%;
}header .top_plank .hVan-skill-trackpro div {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    margin-right: 24px;
}header .top_plank .hVan-skill-trackpro div img, header .top_plank .hVan-skill-trackpro div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}.pQYI-thanksFrame {
    background: linear-gradient(135deg, rgb(185,222,233) 0%, rgba(rgb(156,190,203,0.5), 0.05) 100%);
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}.pQYI-thanksFrame::before {
    top: -5%;
    content: "";
    background: linear-gradient(225deg, rgb(156,190,203) 0%, transparent 70%);
    opacity: 0.07;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 85%);
    transform: rotate(-15deg) translateZ(0);
    position: absolute;
    height: 40%;
    z-index: 1;
    left: -5%;
    width: 40%;
}.pQYI-thanksFrame::after {
    position: absolute;
    right: -5%;
    content: "";
    width: 50%;
    height: 50%;
    z-index: 1;
    transform: rotate(15deg) translateZ(0);
    background: linear-gradient(45deg, transparent 40%, rgb(129,160,174) 100%);
    clip-path: polygon(20% 0, 100% 15%, 100% 100%, 0 100%);
    bottom: -5%;
    opacity: 0.07;
}.pQYI-thanksFrame .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 2;
    width: 100%;
    position: relative;
}.pQYI-thanksFrame .NTCk-pro-study {
    transform-origin: center top;
    padding: 3.5rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    flex-direction: column;
    display: flex;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 10px 40px rgba(rgba(0, 0, 0, 0.5), 0.1), 
                0 2px 10px rgba(rgb(156,190,203,0.5), 0.05),
                0 30px 60px -10px rgba(rgb(129,160,174,0.5), 0.12);
    background: #ffffff;
}.pQYI-thanksFrame .NTCk-pro-study:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 15px 50px rgba(rgba(0, 0, 0, 0.5), 0.15), 
                0 5px 20px rgba(rgb(156,190,203,0.5), 0.1),
                0 40px 80px -15px rgba(rgb(129,160,174,0.5), 0.18);
}.pQYI-thanksFrame .NTCk-pro-study > div:first-child {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    position: relative;
}.pQYI-thanksFrame .NTCk-pro-study > div:first-child::after {
    position: absolute;
    transform: scaleX(1) translateZ(0);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: linear-gradient(90deg, rgb(156,190,203), rgb(129,160,174));
    transform-origin: left center;
    content: "";
    bottom: 0;
    height: 3px;
    width: 20%;
    left: 0;
}.pQYI-thanksFrame .NTCk-pro-study:hover > div:first-child::after {
    transform: scaleX(2) translateZ(0);
}.pQYI-thanksFrame h5 {
    margin: 0;
    color: #000000;
    font-size: 24px;
    line-height: 1.4;
    transform: translateZ(0);
    font-weight: 700;
    transition: transform 0.4s ease-out;
}.pQYI-thanksFrame .NTCk-pro-study:hover h5 {
    transform: translateY(-3px) translateZ(0);
}.pQYI-thanksFrame a {
    position: relative;
    display: block;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}.pQYI-thanksFrame a:hover {
    transform: translateY(-5px);
}.pQYI-thanksFrame a::before {
    content: "";
    right: -10px;
    transform-origin: center;
    width: 50px;
    background: linear-gradient(135deg, transparent 45%, rgb(156,190,203) 55%);
    height: 50px;
    z-index: 1;
    transform: rotate(45deg) scale(0);
    top: -10px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    opacity: 0.1;
}.pQYI-thanksFrame a:hover::before {
    transform: rotate(45deg) scale(1);
}.pQYI-thanksFrame p {
    margin: 0;
    background: linear-gradient(to right, rgba(rgb(129,160,174,0.5), 0.03), rgba(rgb(156,190,203,0.5), 0.03));
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    padding: 1.5rem;
    color: #000000;
    border-left: 2px solid rgba(rgb(156,190,203,0.5), 0.2);
    font-weight: 400;
    transition: all 0.4s ease;
}.pQYI-thanksFrame a:hover p {
    border-left: 2px solid rgb(156,190,203);
    background: linear-gradient(to right, rgba(rgb(129,160,174,0.5), 0.07), rgba(rgb(156,190,203,0.5), 0.07));
}

@media (min-width: 768px) {.pQYI-thanksFrame .NTCk-pro-study {
    padding: 4rem 5rem;
}.pQYI-thanksFrame h5 {
    font-size: calc(24px * 1.2);
}.pQYI-thanksFrame p {
    padding: 2rem;
    font-size: calc(16px * 1.05);
}
}

@media (min-width: 992px) {.pQYI-thanksFrame {
    padding: 8rem 0;
}.pQYI-thanksFrame .NTCk-pro-study {
    margin: 0 auto;
    max-width: 90%;
    padding: 5rem 6rem;
}.pQYI-thanksFrame .NTCk-pro-study > div:first-child {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}.pQYI-thanksFrame .NTCk-pro-study > div:first-child::after {
    width: 15%;
}
}

@media (max-width: 767px) {.pQYI-thanksFrame {
    padding: 3rem 0;
}.pQYI-thanksFrame .NTCk-pro-study {
    padding: 2rem;
    transform: perspective(1000px) rotateX(1deg);
}.pQYI-thanksFrame h5 {
    font-size: calc(24px * 0.9);
}.pQYI-thanksFrame p {
    line-height: 1.6;
    font-size: calc(16px * 0.95);
    padding: 1rem;
}.pQYI-thanksFrame .NTCk-pro-study > div:first-child {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
}

@media (max-width: 480px) {.pQYI-thanksFrame {
    padding: 2rem 0;
}.pQYI-thanksFrame .NTCk-pro-study {
    padding: 1.5rem;
    transform: none;
}.pQYI-thanksFrame h5 {
    font-size: calc(24px * 0.85);
}.pQYI-thanksFrame p {
    padding: 0.75rem;
    font-size: calc(16px * 0.9);
    line-height: 1.5;
}}.QnrK-instructor-history {
    background: rgb(185,222,233);
    overflow: hidden;
    position: relative;
    padding: 6rem 2rem;
}.QnrK-instructor-history::before {
    width: 40%;
    height: 1px;
    transform-origin: left center;
    top: 40%;
    background: linear-gradient(to right, transparent, rgb(156,190,203,0.5), transparent);
    left: 0;
    content: "";
    animation: lineExpand 5s ease-in-out infinite alternate;
    position: absolute;
}.QnrK-instructor-history::after {
    animation: lineExpand 5s ease-in-out infinite alternate 2.5s;
    transform-origin: right center;
    right: 0;
    width: 40%;
    bottom: 40%;
    position: absolute;
    background: linear-gradient(to left, transparent, rgb(129,160,174,0.5), transparent);
    height: 1px;
    content: "";
}.QnrK-instructor-history .mMHu-user-opinions {
    display: grid;
    z-index: 1;
    grid-template-columns: 1fr 2fr;
    position: relative;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}.QnrK-instructor-history .UFSG-img-circular {
    border-radius: 0;
    position: relative;
    height: 400px;
    transform: scale(1);
    clip-path: polygon(0 10%, 100% 0%, 85% 100%, 0% 90%);
    filter: grayscale(100%);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    width: 100%;
}.QnrK-instructor-history .UFSG-img-circular::after {
    opacity: 0.5;
    background: linear-gradient(135deg, rgb(156,190,203,0.5) 0%, transparent 50%);
    left: 0;
    top: 0;
    mix-blend-mode: overlay;
    position: absolute;
    transition: all 0.7s ease;
    height: 100%;
    width: 100%;
    content: "";
}.QnrK-instructor-history .PbEV-job-background {
    flex-direction: column;
    display: flex;
    opacity: 0.9;
    justify-content: center;
    transition: all 0.7s ease;
    position: relative;
}.QnrK-instructor-history .PbEV-job-background::before {
    left: -2rem;
    top: 15%;
    content: "";
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5), transparent);
    height: 70%;
    position: absolute;
}.QnrK-instructor-history .name {
    color: #000000;
    transition: all 0.5s ease;
    margin-bottom: 1rem;
    font-size: calc(45px * 1.2);
    position: relative;
    font-weight: 700;
    transform: translateX(0);
}.QnrK-instructor-history .name::after {
    bottom: -0.5rem;
    transform-origin: left;
    height: 2px;
    transform: scaleX(0);
    background: rgb(156,190,203);
    transition: transform 0.5s ease 0.2s;
    position: absolute;
    left: 0;
    width: 50px;
    content: "";
}.QnrK-instructor-history .PbEV-job-background div:nth-child(2) {
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 3rem;
    transition: all 0.5s ease 0.1s;
    transform: translateX(0);
    font-weight: 300;
    color: rgb(129,160,174);
    text-transform: uppercase;
}.QnrK-instructor-history .jVUp-experience-data {
    line-height: 1.8;
    font-weight: 300;
    padding-left: 2rem;
    font-size: 23px;
    position: relative;
    transition: all 0.5s ease 0.2s;
    transform: translateX(0);
    color: #000000;
}.QnrK-instructor-history .jVUp-experience-data::before {
    font-size: 4rem;
    position: absolute;
    font-family: serif;
    color: rgb(156,190,203,0.5);
    left: 0;
    top: -1rem;
    content: "";
    line-height: 1;
}.QnrK-instructor-history .mMHu-user-opinions:hover .UFSG-img-circular {
    filter: grayscale(0%);
    transform: scale(1.05);
}.QnrK-instructor-history .mMHu-user-opinions:hover .UFSG-img-circular::after {
    opacity: 0.3;
}.QnrK-instructor-history .mMHu-user-opinions:hover .name {
    transform: translateX(10px);
}.QnrK-instructor-history .mMHu-user-opinions:hover .name::after {
    transform: scaleX(1);
}.QnrK-instructor-history .mMHu-user-opinions:hover .PbEV-job-background div:nth-child(2) {
    transform: translateX(20px);
}.QnrK-instructor-history .mMHu-user-opinions:hover .jVUp-experience-data {
    transform: translateX(5px);
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0.3);
        opacity: 0.3;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media screen and (max-width: 991px) {.QnrK-instructor-history .mMHu-user-opinions {
    grid-template-columns: 1fr;
    gap: 3rem;
}.QnrK-instructor-history .UFSG-img-circular {
    height: 350px;
    margin: 0 auto;
    clip-path: polygon(0 5%, 100% 0%, 95% 100%, 0% 95%);
    width: 80%;
}.QnrK-instructor-history .PbEV-job-background::before {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
    width: 60%;
    left: 20%;
    top: -1.5rem;
}.QnrK-instructor-history .mMHu-user-opinions:hover .name,
    .QnrK-instructor-history .mMHu-user-opinions:hover .PbEV-job-background div:nth-child(2),
    .QnrK-instructor-history .mMHu-user-opinions:hover .jVUp-experience-data {
    transform: translateX(0);
}}.ZxHQ-who-we-are {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    z-index: 1;
}.ZxHQ-who-we-are::before {
    z-index: -1;
    top: 0;
    width: 100%;
    opacity: 0.85;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, rgb(156,190,203,0.5), rgba(0, 0, 0, 0.5));
    position: absolute;
    content: "";
}.ZxHQ-who-we-are::after {
    bottom: -50px;
    animation: float 15s infinite ease-in-out;
    border: 2px solid rgb(129,160,174);
    content: "";
    width: 250px;
    z-index: -1;
    transform: rotate(15deg);
    position: absolute;
    right: -50px;
    opacity: 0.2;
    height: 250px;
}.ZxHQ-who-we-are h4 {
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 40px;
    font-size: calc(18px * 1.2);
    transform: translateY(20px);
    text-align: center;
    letter-spacing: 3px;
    opacity: 0;
    position: relative;
    font-family: Arial, sans-serif;
    animation: fadeInUp 0.8s 0.2s forwards;
}.ZxHQ-who-we-are h4::after {
    content: "";
    transform: translateX(-50%);
    left: 50%;
    bottom: -15px;
    position: absolute;
    background: rgb(129,160,174);
    height: 3px;
    width: 60px;
}.ZxHQ-who-we-are .container {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap {
    transform: translateY(30px);
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards;
    position: relative;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.ZxHQ-who-we-are .YTLG-text-frame-wrap::before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    background: linear-gradient(to bottom, rgb(156,190,203), rgb(129,160,174));
    width: 5px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap h6 {
    color: rgb(156,190,203);
    font-weight: 700;
    transform: translateX(-10px);
    opacity: 0;
    padding-bottom: 15px;
    animation: fadeInRight 0.8s 0.6s forwards;
    position: relative;
    margin-bottom: 25px;
    font-size: calc(22px * 1.3);
    font-family: Arial, sans-serif;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap h6::after {
    width: 80px;
    position: absolute;
    content: "";
    bottom: 0;
    height: 2px;
    background: rgb(129,160,174);
    left: 0;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap div {
    z-index: 1;
    position: relative;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap span {
    line-height: 1.8;
    position: relative;
    opacity: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    display: block;
    font-size: 14px;
    animation: fadeInUp 0.8s 0.8s forwards;
    transform: translateY(20px);
}.ZxHQ-who-we-are .YTLG-text-frame-wrap::after {
    right: 0;
    height: 100px;
    z-index: 0;
    width: 100px;
    background: linear-gradient(135deg, transparent 50%, rgb(129,160,174,0.5) 50%);
    content: "";
    position: absolute;
    bottom: 0;
}

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

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

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

@media (max-width: 992px) {.ZxHQ-who-we-are {
    padding: 80px 0 60px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap {
    padding: 40px 30px;
}.ZxHQ-who-we-are h4 {
    font-size: calc(18px * 1.1);
}.ZxHQ-who-we-are .YTLG-text-frame-wrap h6 {
    margin-bottom: 20px;
    font-size: calc(22px * 1.2);
}
}

@media (max-width: 768px) {.ZxHQ-who-we-are {
    padding: 60px 0 40px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap {
    padding: 30px 25px;
}.ZxHQ-who-we-are h4 {
    font-size: 18px;
    margin-bottom: 30px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap h6 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 22px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap span {
    font-size: calc(14px * 0.95);
    line-height: 1.7;
}.ZxHQ-who-we-are::after {
    width: 180px;
    height: 180px;
}
}

@media (max-width: 576px) {.ZxHQ-who-we-are {
    padding: 50px 0 30px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap {
    padding: 25px 20px;
}.ZxHQ-who-we-are h4 {
    letter-spacing: 2px;
    font-size: calc(18px * 0.9);
}.ZxHQ-who-we-are h4::after {
    bottom: -10px;
    width: 40px;
}.ZxHQ-who-we-are .YTLG-text-frame-wrap h6 {
    font-size: calc(22px * 0.95);
}.ZxHQ-who-we-are .YTLG-text-frame-wrap span {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}.ZxHQ-who-we-are::after {
    right: -30px;
    height: 120px;
    width: 120px;
    bottom: -30px;
}}.hZdx-abuse-ctrl {
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 6rem 0 3rem;
}.hZdx-abuse-ctrl::before {
    content: "";
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgb(156,190,203,0.5) 100%);
    height: 100%;
    position: absolute;
}.hZdx-abuse-ctrl::after {
    width: 100%;
    left: 0;
    content: "";
    z-index: -1;
    pointer-events: none;
    top: 0;
    position: absolute;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
}@keyframes gridMovement {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hZdx-abuse-ctrl .container {
    flex-direction: column;
    position: relative;
    display: flex;
}.hZdx-abuse-ctrl .company_holder {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}.hZdx-abuse-ctrl .company_holder::before,
.hZdx-abuse-ctrl .company_holder::after {
    position: absolute;
    bottom: -1px;
    animation: slide 3s infinite alternate;
    width: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(129,160,174), transparent);
    content: "";
}.hZdx-abuse-ctrl .company_holder::before {
    animation-delay: 0s;
    left: 0;
}.hZdx-abuse-ctrl .company_holder::after {
    animation-delay: 1.5s;
    right: 0;
}@keyframes slide {
    0% {
        width: 0;
        opacity: 0.5;
    }
    100% {
        width: 40%;
        opacity: 1;
    }
}

.hZdx-abuse-ctrl .company_holder h3 {
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
    font-size: calc(32px * 1.3);
    display: inline-block;
}.hZdx-abuse-ctrl .company_holder h3::after {
    height: 3px;
    background: rgb(129,160,174);
    left: 50%;
    bottom: -10px;
    width: 60px;
    transform: translateX(-50%);
    position: absolute;
    content: "";
}.hZdx-abuse-ctrl .SIHh-ssl-info {
    max-width: 600px;
    opacity: 0.8;
    line-height: 1.7;
    margin: 1.5rem auto 0;
    font-size: 17px;
    color: #ffffff;
}.hZdx-abuse-ctrl .IzRn-contest-info {
    display: flex;
    justify-content: center;
}.hZdx-abuse-ctrl .poYn-nav-begin {
    display: flex;
    gap: 6rem;
    position: relative;
}.hZdx-abuse-ctrl .poYn-nav-begin::before {
    height: 20px;
    background: rgb(156,190,203);
    top: -30px;
    position: absolute;
    content: "";
    width: 1px;
    transform: translateX(-50%);
    left: 50%;
}.hZdx-abuse-ctrl .cmeV-head-info {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.3s ease;
}.hZdx-abuse-ctrl .cmeV-head-info:hover {
    transform: translateY(-5px);
    background: rgba(rgb(156,190,203,0.5), 0.1);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2);
}.hZdx-abuse-ctrl .cmeV-head-info h5 {
    color: rgb(129,160,174);
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    font-size: 19px;
    font-weight: 600;
    padding-bottom: 0.8rem;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}.hZdx-abuse-ctrl .cmeV-head-info .poYn-nav-begin {
    position: static;
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}.hZdx-abuse-ctrl .cmeV-head-info .poYn-nav-begin a {
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    padding: 0.4rem 0;
    position: relative;
    font-size: 17px;
    z-index: 1;
    overflow: hidden;
    opacity: 0.75;
    transition: all 0.3s ease;
}.hZdx-abuse-ctrl .cmeV-head-info .poYn-nav-begin a::before {
    bottom: 0;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgb(156,190,203), transparent);
    width: 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    height: 1px;
    transform-origin: center;
    left: 0;
    content: "";
    position: absolute;
}.hZdx-abuse-ctrl .cmeV-head-info .poYn-nav-begin a:hover {
    opacity: 1;
    color: rgb(129,160,174);
}.hZdx-abuse-ctrl .cmeV-head-info .poYn-nav-begin a:hover::before {
    transform: scaleX(1);
}.HaVx-guide-section {
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
    padding: 1.2rem 0;
    background-color: rgba(0, 0, 0, 0.8);
}.HaVx-guide-section::before {
    left: 0;
    top: 0;
    height: 100%;
    background-size: 4px 4px;
    opacity: 0.3;
    content: "";
    width: 100%;
    background-image: linear-gradient(45deg, rgba(rgb(156,190,203,0.5), 0.05) 25%, transparent 25%, transparent 50%, rgba(rgb(156,190,203,0.5), 0.05) 50%, rgba(rgb(156,190,203,0.5), 0.05) 75%, transparent 75%, transparent);
    animation: bgMove 20s linear infinite;
    position: absolute;
}@keyframes bgMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.HaVx-guide-section .container {
    justify-content: center;
    display: flex;
    align-items: center;
}.HaVx-guide-section .XAHx-intern-ship {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
    text-align: center;
    position: relative;
    letter-spacing: 0.5px;
}.HaVx-guide-section .XAHx-intern-ship::before,
.HaVx-guide-section .XAHx-intern-ship::after {
    color: rgb(156,190,203);
    content: "•";
    margin: 0 0.6rem;
}

@media screen and (max-width: 992px) {.hZdx-abuse-ctrl {
    padding: 4rem 0 2rem;
}.hZdx-abuse-ctrl .company_holder {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}.hZdx-abuse-ctrl .company_holder h3 {
    font-size: 32px;
}.hZdx-abuse-ctrl .poYn-nav-begin {
    gap: 3rem;
}
}

@media screen and (max-width: 768px) {.hZdx-abuse-ctrl .IzRn-contest-info {
    flex-direction: column;
    align-items: center;
}.hZdx-abuse-ctrl .poYn-nav-begin {
    gap: 2rem;
    width: 100%;
    max-width: 450px;
    flex-direction: column;
}.hZdx-abuse-ctrl .cmeV-head-info {
    width: 100%;
}
}

@media screen and (max-width: 576px) {.hZdx-abuse-ctrl {
    padding: 3rem 0 1.5rem;
}.hZdx-abuse-ctrl .company_holder h3 {
    font-size: calc(32px * 0.9);
}.hZdx-abuse-ctrl .SIHh-ssl-info {
    font-size: calc(17px * 0.9);
}.hZdx-abuse-ctrl .cmeV-head-info {
    padding: 1rem;
}.hZdx-abuse-ctrl .cmeV-head-info h5 {
    font-size: calc(19px * 0.9);
}.HaVx-guide-section {
    padding: 1rem 0;
    margin-top: 2rem;
}.HaVx-guide-section .XAHx-intern-ship {
    font-size: calc(14px * 0.9);
}.HaVx-guide-section .XAHx-intern-ship::before,
    .HaVx-guide-section .XAHx-intern-ship::after {
    display: none;
}}.nlKh-client-comments {
    overflow: hidden;
    position: relative;
    background: rgb(185,222,233);
    padding: 7rem 1rem;
}.nlKh-client-comments::before {
    background: linear-gradient(0deg, transparent 40%, rgb(156,190,203,0.5) 100%);
    left: 0;
    content: "";
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 30%);
    position: absolute;
    height: 100%;
    width: 100%;
}.nlKh-client-comments::after {
    width: 100%;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgb(129,160,174,0.5) 100%);
    right: 0;
    clip-path: polygon(0 70%, 100% 90%, 100% 100%, 0 100%);
    height: 100%;
    content: "";
    position: absolute;
}.nlKh-client-comments .container {
    position: relative;
    z-index: 2;
}.nlKh-client-comments h2 {
    font-size: 34px;
    margin-bottom: 4rem;
    text-align: left;
    color: #000000;
    font-weight: 700;
    padding: 1rem 0;
    width: fit-content;
    position: relative;
}.nlKh-client-comments h2::before {
    transform: skewY(45deg);
    left: -20px;
    top: 0;
    height: 100%;
    width: 5px;
    position: absolute;
    content: "";
    background: rgb(156,190,203);
}.nlKh-client-comments h2::after {
    width: 80%;
    height: 3px;
    content: "";
    left: 0;
    position: absolute;
    background: rgb(129,160,174);
    bottom: 0;
}.nlKh-client-comments .qajt-student-feedback {
    max-width: 800px;
    margin: 0 auto;
    gap: 5rem;
    display: flex;
    flex-direction: column;
}.nlKh-client-comments .mMHu-user-opinions {
    border-radius: 22px;
    position: relative;
    padding: 2.5rem 2rem 2rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    transform: translateY(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    background: #ffffff;
}.nlKh-client-comments .mMHu-user-opinions:nth-child(odd) {
    transform: translateX(-30px);
    align-self: flex-start;
}.nlKh-client-comments .mMHu-user-opinions:nth-child(even) {
    transform: translateX(30px);
    align-self: flex-end;
}.nlKh-client-comments .mMHu-user-opinions:hover {
    transform: translateY(-10px) translateX(0);
}.nlKh-client-comments .mMHu-user-opinions::before {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    position: absolute;
    transition: all 0.3s ease;
    z-index: -1;
    top: 15px;
    left: 15px;
    content: "";
    background: rgb(156,190,203,0.5);
}.nlKh-client-comments .mMHu-user-opinions:hover::before {
    left: 10px;
    top: 10px;
    background: rgb(129,160,174,0.5);
}.nlKh-client-comments .mMHu-user-opinions img {
    border: 4px solid #ffffff;
    top: -25px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    left: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 70px;
}.nlKh-client-comments .mMHu-user-opinions p {
    font-size: calc(18px + 0.1rem);
    padding-left: 60px;
    font-weight: 600;
    color: #000000;
    margin: 0.5rem 0;
}.nlKh-client-comments .mMHu-user-opinions .description {
    border-top: 1px solid rgb(185,222,233);
    position: relative;
    color: #000000;
    padding: 1.5rem 0 0.5rem;
    font-size: 18px;
    margin-top: 1rem;
    line-height: 1.7;
    font-weight: 400;
}.nlKh-client-comments .mMHu-user-opinions .description::before {
    line-height: 1;
    top: 0.5rem;
    font-size: 3rem;
    left: 0;
    position: absolute;
    content: "";
    color: rgb(156,190,203,0.5);
}.nlKh-client-comments .mMHu-user-opinions .description::after {
    font-size: 3rem;
    line-height: 1;
    right: 0;
    color: rgb(156,190,203,0.5);
    content: "";
    bottom: -1.5rem;
    position: absolute;
}

@media (max-width: 991px) {.nlKh-client-comments {
    padding: 5rem 1rem;
}.nlKh-client-comments .qajt-student-feedback {
    gap: 4rem;
}
}

@media (max-width: 767px) {.nlKh-client-comments h2 {
    font-size: calc(34px - 0.3rem);
    margin-bottom: 3rem;
}.nlKh-client-comments .qajt-student-feedback {
    gap: 3.5rem;
}.nlKh-client-comments .mMHu-user-opinions:nth-child(odd),
    .nlKh-client-comments .mMHu-user-opinions:nth-child(even) {
    transform: none;
    align-self: center;
    width: 100%;
}.nlKh-client-comments .mMHu-user-opinions:hover {
    transform: translateY(-5px);
}.nlKh-client-comments .mMHu-user-opinions p {
    padding-left: 50px;
}}.olSr-consentSettingsDialog {
    bottom: 0;
    z-index: 90;
    width: 100%;
    border-top: 2px solid rgb(156,190,203);
    position: fixed;
    background: rgb(185,222,233);
}#CkXr-cookie-alert-notice {
    display: none;
}#CkXr-cookie-alert-notice:checked ~ .olSr-consentSettingsDialog {
    opacity: 0;
    visibility: hidden;
}.WOzS-cookie-alerts {
    align-items: center;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}.olSr-consentSettingsDialog h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.olSr-consentSettingsDialog p {
    font-size: 18px;
}.uDEf-data-approve {
    margin-right: 10px;
    flex-shrink: 0;
}.uDEf-data-approve svg, .uDEf-data-approve svg path, .uDEf-data-approve img {
    height: 100px;
    fill: rgb(156,190,203);
    width: 100px;
}.bNVf-visitor-acceptance {
    cursor: pointer;
    margin-left: 10px;
    line-height: 35px;
    flex-shrink: 0;
    border-bottom: 2px solid rgb(156,190,203);
    min-width: 120px;
    text-align: center;
    color: rgb(156,190,203);
    text-decoration: none;
    font-size: 24px;
    white-space: nowrap;
}.olSr-consentSettingsDialog p a {
    color: rgb(156,190,203);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {.olSr-consentSettingsDialog {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.uDEf-data-approve {
    display: none;
}.WOzS-cookie-alerts {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.olSr-consentSettingsDialog h5 {
    text-align: center;
}.olSr-consentSettingsDialog p {
    text-align: center;
}.EGdJ-track-prefs {
    margin-bottom: 20px;
}body .rDdY-core-container .bNVf-visitor-acceptance {
    margin-bottom: 10px;
    margin-left: 0;
}}
.rDdY-core-container .olSr-consentSettingsDialog {
    box-shadow: rgb(129,160,174,0.5) 0px 0px 10px 10px;
    background: rgb(156,190,203);
}.rDdY-core-container .WOzS-cookie-alerts {
    justify-content: space-between;
    padding: 40px 0;
}.rDdY-core-container .bNVf-visitor-acceptance {
    font-size: 20px;
    color: rgb(156,190,203);
    background: #ffffff;
    margin-left: 30px;
    padding: 10px;
    border: none;
}.rDdY-core-container .EGdJ-track-prefs {
    text-align: left;
    color: #ffffff;
}.rDdY-core-container .EGdJ-track-prefs h5 {
    font-weight: 700;
}.rDdY-core-container .EGdJ-track-prefs h5, .rDdY-core-container .EGdJ-track-prefs p {
    color: #ffffff;
}.rDdY-core-container .olSr-consentSettingsDialog p a {
    text-decoration: underline;
    color: rgb(129,160,174);
}.RwkH-contact-form-box {
    position: relative;
    color: #ffffff;
    background: #000000;
    padding: 100px 0;
    overflow: hidden;
}.RwkH-contact-form-box::before {
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgb(156,190,203,0.5) 0%, transparent 50%, rgb(129,160,174,0.5) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    content: "";
    opacity: 0.2;
}.RwkH-contact-form-box::after {
    left: 0;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgb(156,190,203), transparent);
    width: 100%;
    position: absolute;
    height: 1px;
    bottom: 0;
    content: "";
}.RwkH-contact-form-box .UFSG-img-circular {
    opacity: 0.15;
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    mix-blend-mode: luminosity;
    width: 100%;
    filter: saturate(0.6) contrast(1.3);
    height: 100%;
}.RwkH-contact-form-box .container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.RwkH-contact-form-box h3 {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: 43px;
    text-shadow: 0 0 10px rgb(156,190,203,0.5), 0 0 20px rgb(156,190,203,0.5);
    color: #ffffff;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 3px;
}.RwkH-contact-form-box h3::before {
    width: 200px;
    content: "";
    box-shadow: 0 0 10px rgb(156,190,203), 0 0 20px rgb(156,190,203);
    bottom: -20px;
    height: 3px;
    background: rgb(156,190,203);
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    left: calc(50% - 100px);
}.RwkH-contact-form-box .OLwX-connect-grid {
    position: relative;
    overflow: hidden;
    background: rgba(15, 15, 20, 0.8);
    border-radius: 0;
    display: flex;
    border: 1px solid rgb(156,190,203,0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 15px rgb(156,190,203,0.5);
    flex-wrap: wrap;
    clip-path: polygon(
        0 0, 
        calc(100% - 20px) 0, 
        100% 20px, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        20px 100%, 
        0 calc(100% - 20px)
    );
}.RwkH-contact-form-box .OLwX-connect-grid::before {
    height: 2px;
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(156,190,203), transparent);
    position: absolute;
    top: 0;
    content: "";
    z-index: 3;
    right: 0;
}.RwkH-contact-form-box .OLwX-connect-grid::after {
    content: "";
    background: linear-gradient(90deg, transparent, rgb(129,160,174), transparent);
    left: 0;
    z-index: 3;
    bottom: 0;
    position: absolute;
    right: 0;
    height: 2px;
}.RwkH-contact-form-box .HLwi-request-links {
    position: relative;
    z-index: 2;
    flex: 1 1 60%;
    padding: 50px;
}.RwkH-contact-form-box .HLwi-request-links h3 {
    font-weight: 600;
    text-shadow: none;
    font-size: 20px;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
    color: rgb(156,190,203);
    margin-bottom: 30px;
}.RwkH-contact-form-box .HLwi-request-links h3::before {
    display: none;
}.RwkH-contact-form-box .HLwi-request-links input[type="text"],
.RwkH-contact-form-box .HLwi-request-links textarea {
    border-radius: 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border-left: 3px solid rgb(156,190,203);
    margin-bottom: 20px;
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgb(156,190,203,0.5);
    color: #ffffff;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}.RwkH-contact-form-box .HLwi-request-links input[type="text"]::placeholder,
.RwkH-contact-form-box .HLwi-request-links textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}.RwkH-contact-form-box .HLwi-request-links input[type="text"]:focus,
.RwkH-contact-form-box .HLwi-request-links textarea:focus {
    border-color: rgb(156,190,203);
    box-shadow: 0 0 15px rgb(156,190,203,0.5);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
}.RwkH-contact-form-box .HLwi-request-links textarea {
    resize: vertical;
    min-height: 150px;
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding-left: 35px;
    position: relative;
    cursor: pointer;
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help label::before {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 2px;
    transition: all 0.3s ease;
    height: 20px;
    left: 0;
    content: "";
    border: 1px solid rgb(156,190,203,0.5);
    width: 20px;
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help input[type="checkbox"]:checked + label::before {
    border-color: rgb(156,190,203);
    background: rgb(156,190,203);
    box-shadow: 0 0 10px rgb(156,190,203,0.5);
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help input[type="checkbox"]:checked + label::after {
    position: absolute;
    top: 4px;
    width: 6px;
    border: solid #ffffff;
    left: 7px;
    height: 12px;
    transform: rotate(45deg);
    content: "";
    border-width: 0 2px 2px 0;
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help a {
    text-decoration: none;
    font-weight: 600;
    color: rgb(156,190,203);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgb(156,190,203,0.5);
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help a:hover {
    border-bottom-color: rgb(129,160,174);
    color: rgb(129,160,174);
    text-shadow: 0 0 5px rgb(129,160,174);
}.RwkH-contact-form-box .HLwi-request-links .ucKn-feedback-section {
    overflow: hidden;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    padding: 16px 30px;
    letter-spacing: 1px;
    background: rgb(156,190,203);
    font-size: 14px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
}.RwkH-contact-form-box .HLwi-request-links .ucKn-feedback-section::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: 0;
    left: -100%;
    content: "";
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    height: 100%;
}.RwkH-contact-form-box .HLwi-request-links .ucKn-feedback-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgb(129,160,174,0.5);
    background: rgb(129,160,174);
}.RwkH-contact-form-box .HLwi-request-links .ucKn-feedback-section:hover::before {
    left: 100%;
}.RwkH-contact-form-box .hwxf-contact-message {
    border-left: 1px solid rgb(156,190,203,0.5);
    padding: 50px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    flex: 1 1 35%;
    position: relative;
}.RwkH-contact-form-box .hwxf-contact-message h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
    color: rgb(129,160,174);
    letter-spacing: 1px;
    font-size: 20px;
    position: relative;
}.RwkH-contact-form-box .hwxf-contact-message h4::after {
    box-shadow: 0 0 10px rgb(129,160,174);
    content: "";
    bottom: -10px;
    width: 50px;
    left: 0;
    position: absolute;
    height: 2px;
    background: rgb(129,160,174);
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid {
    padding: 0;
    margin: 0;
    list-style: none;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li {
    display: flex;
    padding: 15px;
    border: 1px solid rgb(129,160,174,0.5);
    align-items: center;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 20px;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li::after {
    opacity: 0.7;
    background: rgb(129,160,174);
    width: 3px;
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    height: 100%;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li:hover {
    box-shadow: 0 0 15px rgb(129,160,174,0.5);
    border-color: rgb(129,160,174);
    transform: translateX(5px);
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li svg {
    transition: all 0.3s ease;
    height: 22px;
    margin-right: 15px;
    width: 22px;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li:hover svg {
    transform: scale(1.1);
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li svg path {
    transition: all 0.3s ease;
    fill: rgb(129,160,174);
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li:hover svg path {
    fill: #ffffff;
    filter: drop-shadow(0 0 3px rgb(129,160,174));
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li span {
    color: #ffffff;
    font-size: 18px;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li a {
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li a:hover {
    text-shadow: 0 0 5px rgb(129,160,174,0.5);
    color: rgb(129,160,174);
}

@keyframes flicker {
    0% { opacity: 1; }
    3% { opacity: 0.8; }
    6% { opacity: 1; }
    7% { opacity: 0.9; }
    9% { opacity: 1; }
    11% { opacity: 0.7; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    83% { opacity: 0.8; }
    87% { opacity: 1; }
    100% { opacity: 1; }
}

@media (max-width: 992px) {.RwkH-contact-form-box {
    padding: 70px 0;
}.RwkH-contact-form-box h3 {
    font-size: calc(43px * 0.8);
}.RwkH-contact-form-box .OLwX-connect-grid {
    clip-path: polygon(
            0 0, 
            calc(100% - 20px) 0, 
            100% 20px, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
    flex-direction: column;
}.RwkH-contact-form-box .hwxf-contact-message {
    border-top: 1px solid rgb(129,160,174,0.5);
    border-left: none;
}
}

@media (max-width: 768px) {.RwkH-contact-form-box {
    padding: 60px 0;
}.RwkH-contact-form-box h3 {
    font-size: calc(43px * 0.7);
    margin-bottom: 40px;
}.RwkH-contact-form-box h3::before {
    bottom: -15px;
    left: calc(50% - 75px);
    width: 150px;
}.RwkH-contact-form-box .HLwi-request-links,
    .RwkH-contact-form-box .hwxf-contact-message {
    padding: 40px 30px;
}.RwkH-contact-form-box .HLwi-request-links input[type="text"],
    .RwkH-contact-form-box .HLwi-request-links textarea {
    padding: 14px 16px;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li {
    padding: 12px;
}
}

@media (max-width: 576px) {.RwkH-contact-form-box {
    padding: 50px 0;
}.RwkH-contact-form-box h3 {
    margin-bottom: 35px;
    font-size: calc(43px * 0.5);
}.RwkH-contact-form-box h3::before {
    width: 100px;
    left: calc(50% - 50px);
    height: 2px;
    bottom: -12px;
}.RwkH-contact-form-box .OLwX-connect-grid {
    clip-path: polygon(
            0 0, 
            calc(100% - 15px) 0, 
            100% 15px, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
}.RwkH-contact-form-box .HLwi-request-links,
    .RwkH-contact-form-box .hwxf-contact-message {
    padding: 30px 20px;
}.RwkH-contact-form-box .HLwi-request-links input[type="text"],
    .RwkH-contact-form-box .HLwi-request-links textarea {
    padding: 12px 15px;
    margin-bottom: 15px;
}.RwkH-contact-form-box .HLwi-request-links .UQLN-query-help label {
    font-size: calc(12px * 0.9);
}.RwkH-contact-form-box .HLwi-request-links .ucKn-feedback-section {
    padding: 14px 20px;
    width: 100%;
}.RwkH-contact-form-box .hwxf-contact-message .jxmJ-reach-grid li {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    padding: 10px;
    margin-bottom: 15px;
}}.rfAw-course-fit-for {
    padding: 110px 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}.rfAw-course-fit-for::before {
    height: 100%;
    content: "";
    background: linear-gradient(135deg, 
                rgb(156,190,203,0.5) 0%, 
                transparent 30%, 
                transparent 70%, 
                rgb(129,160,174,0.5) 100%);
    width: 100%;
    opacity: 0.1;
    position: absolute;
    left: 0;
    z-index: 1;
    top: 0;
}.rfAw-course-fit-for .container {
    z-index: 2;
    margin: 0 auto;
    max-width: 1140px;
    position: relative;
    padding: 0 15px;
}.rfAw-course-fit-for .NTCk-pro-study {
    position: relative;
}.rfAw-course-fit-for h4 {
    color: #000000;
    text-align: center;
    font-size: 36px;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}.rfAw-course-fit-for h4::after {
    content: "";
    background: rgb(156,190,203);
    width: 80px;
    border-radius: 10px;
    height: 3px;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
}.rfAw-course-fit-for div > div {
    flex-direction: column;
    display: flex;
    gap: 20px;
}.rfAw-course-fit-for p {
    align-items: center;
    overflow: hidden;
    color: #000000;
    border-radius: 20px;
    margin: 0;
    font-size: 14px;
    display: flex;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    position: relative;
    transition: all 0.3s ease;
    background: #ffffff;
}.rfAw-course-fit-for p::before {
    height: 100%;
    position: absolute;
    width: 5px;
    left: 0;
    transition: width 0.3s ease;
    top: 0;
    background: rgb(156,190,203);
    content: "";
}.rfAw-course-fit-for p::after {
    height: 100%;
    transition: opacity 0.3s ease;
    width: 100%;
    position: absolute;
    left: 0;
    opacity: 0;
    background: linear-gradient(90deg, 
                rgb(156,190,203,0.5) 0%, 
                transparent 30%);
    content: "";
    top: 0;
    z-index: -1;
}.rfAw-course-fit-for p:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}.rfAw-course-fit-for p:hover::before {
    width: 8px;
}.rfAw-course-fit-for p:hover::after {
    opacity: 0.2;
}.rfAw-course-fit-for p svg {
    transition: all 0.3s ease;
    width: 28px;
    margin-right: 20px;
    flex-shrink: 0;
    height: 28px;
}.rfAw-course-fit-for p svg path {
    transition: fill 0.3s ease;
    fill: rgb(156,190,203);
}.rfAw-course-fit-for p:hover svg {
    transform: scale(1.2);
}.rfAw-course-fit-for p:hover svg path {
    fill: rgb(129,160,174);
}.rfAw-course-fit-for p:nth-child(even)::before {
    background: rgb(129,160,174);
}.rfAw-course-fit-for p:nth-child(even)::after {
    background: linear-gradient(90deg, 
                rgb(129,160,174,0.5) 0%, 
                transparent 30%);
}@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rfAw-course-fit-for .NTCk-pro-study > div p {
    animation: fadeInSlide 0.5s ease forwards;
    opacity: 0;
}.rfAw-course-fit-for .NTCk-pro-study > div p:nth-child(1) {
    animation-delay: 0.1s;
}.rfAw-course-fit-for .NTCk-pro-study > div p:nth-child(2) {
    animation-delay: 0.2s;
}.rfAw-course-fit-for .NTCk-pro-study > div p:nth-child(3) {
    animation-delay: 0.3s;
}.rfAw-course-fit-for .NTCk-pro-study > div p:nth-child(4) {
    animation-delay: 0.4s;
}.rfAw-course-fit-for .NTCk-pro-study > div p:nth-child(5) {
    animation-delay: 0.5s;
}.rfAw-course-fit-for .NTCk-pro-study > div p:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 991px) {.rfAw-course-fit-for {
    padding: 90px 0;
}.rfAw-course-fit-for h4 {
    margin-bottom: 40px;
    font-size: calc(36px * 0.9);
}.rfAw-course-fit-for div > div {
    gap: 18px;
}.rfAw-course-fit-for p {
    padding: 20px 25px;
}.rfAw-course-fit-for p svg {
    height: 25px;
    width: 25px;
    margin-right: 15px;
}
}

@media (max-width: 768px) {.rfAw-course-fit-for {
    padding: 70px 0;
}.rfAw-course-fit-for h4 {
    font-size: calc(36px * 0.8);
    margin-bottom: 30px;
}.rfAw-course-fit-for h4::after {
    width: 60px;
}.rfAw-course-fit-for div > div {
    gap: 15px;
}.rfAw-course-fit-for p {
    padding: 18px 20px;
}
}

@media (max-width: 576px) {.rfAw-course-fit-for {
    padding: 60px 0;
}.rfAw-course-fit-for h4 {
    padding-bottom: 10px;
    font-size: calc(36px * 0.7);
    margin-bottom: 25px;
}.rfAw-course-fit-for h4::after {
    width: 50px;
    height: 2px;
}.rfAw-course-fit-for div > div {
    gap: 12px;
}.rfAw-course-fit-for p {
    padding: 15px;
    font-size: calc(14px * 0.9);
}.rfAw-course-fit-for p svg {
    margin-right: 12px;
    width: 22px;
    height: 22px;
}.rfAw-course-fit-for p:hover {
    transform: translateX(5px);
}}.Bkbu-course-program-info {
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(185,222,233) 0%, rgba(249, 249, 249, 0.95) 100%);
    position: relative;
}.Bkbu-course-program-info::before {
    z-index: 1;
    content: "";
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.02) 15px,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.02) 30px
    );
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}.Bkbu-course-program-info .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
    z-index: 2;
}.Bkbu-course-program-info .GjJT-fast-development {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    display: grid;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}.Bkbu-course-program-info .GjJT-fast-development:hover {
    transform: perspective(1000px) rotateX(1deg);
}.Bkbu-course-program-info .UFSG-img-circular {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    height: 300px;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    position: relative;
    transform: translateZ(20px);
}.Bkbu-course-program-info .UFSG-img-circular::after {
    z-index: 1;
    content: '';
    inset: 0;
    position: absolute;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.3) 100%
    );
}.Bkbu-course-program-info .UFSG-img-circular:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateZ(30px);
}.Bkbu-course-program-info .YTLG-text-frame-wrap {
    transform: translateZ(10px);
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    border-left: 4px solid rgb(156,190,203);
}.Bkbu-course-program-info .YTLG-text-frame-wrap::before {
    content: '';
    height: 30px;
    position: absolute;
    transform: rotate(45deg);
    z-index: -1;
    width: 30px;
    background-color: rgb(156,190,203);
    left: 30px;
    top: -15px;
}.Bkbu-course-program-info .YTLG-text-frame-wrap:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateZ(15px);
}.Bkbu-course-program-info h3 {
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding-bottom: 0.75rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 21px;
}.Bkbu-course-program-info h3::after {
    background: linear-gradient(
        to right,
        rgb(156,190,203) 0%,
        rgb(129,160,174) 100%
    );
    width: 50px;
    bottom: 0;
    transition: width 0.4s ease;
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
}.Bkbu-course-program-info .YTLG-text-frame-wrap:hover h3 {
    transform: translateY(-5px);
}.Bkbu-course-program-info .YTLG-text-frame-wrap:hover h3::after {
    width: 100px;
}.Bkbu-course-program-info .description {
    animation: fadeInUp 0.8s forwards 0.2s;
    opacity: 0;
    font-size: 15px;
    transform: translateY(20px);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    color: #000000;
}.Bkbu-course-program-info span.description {
    display: none;
}

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

@media (min-width: 768px) {.Bkbu-course-program-info {
    padding: 7rem 0;
}.Bkbu-course-program-info .GjJT-fast-development {
    grid-template-columns: 40% 1fr;
    gap: 3.5rem;
    align-items: center;
}.Bkbu-course-program-info .UFSG-img-circular {
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    height: 450px;
}.Bkbu-course-program-info h3 {
    font-size: calc(21px * 1.2);
}.Bkbu-course-program-info .description {
    column-gap: 2.5rem;
    column-count: 2;
}
}

@media (min-width: 992px) {.Bkbu-course-program-info {
    padding: 8rem 0;
}.Bkbu-course-program-info .GjJT-fast-development {
    gap: 4rem;
    grid-template-columns: 45% 1fr;
}.Bkbu-course-program-info .UFSG-img-circular {
    height: 550px;
}.Bkbu-course-program-info .YTLG-text-frame-wrap {
    padding: 3.5rem;
}.Bkbu-course-program-info h3 {
    margin-bottom: 2rem;
    font-size: calc(21px * 1.4);
}
}

@media (max-width: 767px) {.Bkbu-course-program-info .container {
    padding: 0 15px;
}.Bkbu-course-program-info .UFSG-img-circular {
    margin-top: 1rem;
    margin-bottom: 1rem;
}.Bkbu-course-program-info .YTLG-text-frame-wrap {
    padding: 1.5rem;
}.Bkbu-course-program-info h3 {
    font-size: calc(21px * 0.9);
}.Bkbu-course-program-info .description {
    font-size: calc(15px * 0.95);
}}.ZLkW-pricing-plan-card {
    background: linear-gradient(135deg, rgb(185,222,233) 0%, rgba(245, 247, 250, 0.95) 100%);
    overflow: hidden;
    padding: 7rem 0;
    position: relative;
}.ZLkW-pricing-plan-card::before {
    height: 70%;
    content: "";
    border-radius: 10px;
    width: 40%;
    transform: rotate(-15deg);
    top: -10%;
    position: absolute;
    background: linear-gradient(120deg, rgb(156,190,203,0.5) 20%, rgb(129,160,174,0.5) 80%);
    right: -5%;
    opacity: 0.1;
    z-index: 0;
}.ZLkW-pricing-plan-card::after {
    width: 35%;
    height: 50%;
    bottom: -5%;
    z-index: 0;
    opacity: 0.08;
    position: absolute;
    border-radius: 10px;
    transform: rotate(10deg);
    content: "";
    left: -3%;
    background: linear-gradient(45deg, rgb(129,160,174,0.5) 30%, rgb(156,190,203,0.5) 70%);
}.ZLkW-pricing-plan-card .container {
    max-width: 1400px;
    position: relative;
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 2;
}.ZLkW-pricing-plan-card .VgOx-premium-cost {
    flex-direction: column;
    display: flex;
}.ZLkW-pricing-plan-card .XBkd-pricing-options {
    margin-bottom: 3.5rem;
    position: relative;
    text-align: center;
    order: 1;
}.ZLkW-pricing-plan-card .XBkd-pricing-options h2 {
    font-weight: 700;
    position: relative;
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 32px;
    display: inline-block;
}.ZLkW-pricing-plan-card .XBkd-pricing-options h2::after {
    bottom: -0.75rem;
    content: "";
    transform: translateX(-50%);
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(156,190,203), transparent);
    position: absolute;
    width: 70%;
    height: 3px;
}.ZLkW-pricing-plan-card .YFxb-plan-deals {
    max-width: 800px;
    font-size: 17px;
    color: #000000;
    margin: 0 auto;
    line-height: 1.6;
}.ZLkW-pricing-plan-card .lKwQ-fee-plans {
    order: 2;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    width: 100%;
}.ZLkW-pricing-plan-card .VvxK-training-fees {
    color: #000000;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    overflow: hidden;
    background: #ffffff;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    height: 100%;
}.ZLkW-pricing-plan-card .VvxK-training-fees:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}.ZLkW-pricing-plan-card .VvxK-training-fees::before {
    top: 0;
    transition: transform 0.3s ease;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, rgb(156,190,203), rgb(129,160,174));
    content: "";
    transform: translateY(-5px);
    left: 0;
    position: absolute;
}.ZLkW-pricing-plan-card .VvxK-training-fees:hover::before {
    transform: translateY(0);
}.ZLkW-pricing-plan-card .eVZq-fee-schemes {
    display: flex;
    height: 100%;
    box-sizing: border-box;
    flex-direction: column;
}.ZLkW-pricing-plan-card .jBiz-learning-price {
    flex-direction: column;
    flex: 1;
    padding: 2rem 1.75rem;
    position: relative;
    display: flex;
}.ZLkW-pricing-plan-card .jBiz-learning-price h3 {
    color: #000000;
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: calc(19px * 1.1);
    margin-bottom: 1rem;
}.ZLkW-pricing-plan-card .jBiz-learning-price .FLId-fee-choices {
    font-size: calc(19px * 1.3);
    color: rgb(156,190,203);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}.ZLkW-pricing-plan-card .jBiz-learning-price .FLId-fee-choices::after {
    width: 40px;
    height: 2px;
    bottom: -0.75rem;
    left: 0;
    background: rgb(156,190,203,0.5);
    position: absolute;
    content: "";
}.ZLkW-pricing-plan-card .jBiz-learning-price p {
    color: #000000;
    font-size: 17px;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.65;
}.ZLkW-pricing-plan-card .UFSG-img-circular {
    position: relative;
    transition: transform 0.5s ease;
    overflow: hidden;
    width: 100%;
    height: 180px;
}.ZLkW-pricing-plan-card .UFSG-img-circular::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    left: 0;
}.ZLkW-pricing-plan-card .VvxK-training-fees:hover .UFSG-img-circular {
    transform: scale(1.05);
}.ZLkW-pricing-plan-card .VvxK-training-fees:nth-child(odd) .jBiz-learning-price::before {
    right: 1rem;
    top: 1rem;
    width: 2.5rem;
    background: rgb(156,190,203,0.5);
    content: "";
    opacity: 0.1;
    z-index: -1;
    height: 2.5rem;
    position: absolute;
    border-radius: 50%;
}.ZLkW-pricing-plan-card .VvxK-training-fees:nth-child(even) .jBiz-learning-price::before {
    left: 1rem;
    position: absolute;
    opacity: 0.1;
    bottom: 1rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    z-index: -1;
    background: rgb(129,160,174,0.5);
    content: "";
}

@media (min-width: 992px) {.ZLkW-pricing-plan-card .VgOx-premium-cost {
    flex-direction: row;
}.ZLkW-pricing-plan-card .XBkd-pricing-options {
    flex-direction: column;
    flex: 0 0 30%;
    display: flex;
    margin-bottom: 0;
    justify-content: center;
    padding-left: 3rem;
    text-align: left;
    order: 2;
}.ZLkW-pricing-plan-card .XBkd-pricing-options h2 {
    text-align: left;
    margin-bottom: 2rem;
}.ZLkW-pricing-plan-card .XBkd-pricing-options h2::after {
    transform: none;
    left: 0;
    width: 40%;
}.ZLkW-pricing-plan-card .YFxb-plan-deals {
    text-align: left;
    margin: 0;
}.ZLkW-pricing-plan-card .lKwQ-fee-plans {
    order: 1;
    grid-template-columns: repeat(2, 1fr);
    flex: 0 0 70%;
}
}

@media (max-width: 991px) {.ZLkW-pricing-plan-card {
    padding: 5rem 0;
}.ZLkW-pricing-plan-card .VvxK-training-fees {
    margin-bottom: 1.5rem;
}.ZLkW-pricing-plan-card .XBkd-pricing-options {
    padding: 0 1rem;
}
}

@media (max-width: 767px) {.ZLkW-pricing-plan-card {
    padding: 4rem 0;
}.ZLkW-pricing-plan-card .XBkd-pricing-options h2 {
    font-size: calc(32px * 0.9);
}.ZLkW-pricing-plan-card .jBiz-learning-price h3 {
    font-size: 19px;
}.ZLkW-pricing-plan-card .jBiz-learning-price .FLId-fee-choices {
    font-size: calc(19px * 1.15);
}.ZLkW-pricing-plan-card .UFSG-img-circular {
    height: 160px;
}
}

@media (max-width: 575px) {.ZLkW-pricing-plan-card {
    padding: 3rem 0;
}.ZLkW-pricing-plan-card .container {
    padding: 0 1.5rem;
}.ZLkW-pricing-plan-card .lKwQ-fee-plans {
    gap: 1.5rem;
}.ZLkW-pricing-plan-card .jBiz-learning-price {
    padding: 1.5rem;
}.ZLkW-pricing-plan-card .UFSG-img-circular {
    height: 140px;
}
}

@media (hover: none) {.ZLkW-pricing-plan-card .VvxK-training-fees:hover {
    transform: none;
}.ZLkW-pricing-plan-card .VvxK-training-fees:hover .UFSG-img-circular {
    transform: none;
}
}