* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}.content-wrapper-OmQRg {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}svg {
    height: 30px;
    width: 30px;
}header,footer {
    width: 100%;
}.scholar-cta-Xw5o0 {
    flex: 0 0 auto;
}a {
    color: inherit;
    text-decoration: none;
}.container {
    max-width: 100%;
    width: 1108px;
    margin: auto;
}html,body {
    color: #000000;
    min-height: 100%;
    scroll-behavior: smooth;
    height: 100%;
    font-family: Arial, sans-serif;
}.top-learn-HjcKF {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.welcome-page-vqVYI {
    z-index: 1;
    min-height: 100vh;
    overflow: hidden;
    perspective: 1000px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}.welcome-page-vqVYI::before {
    left: 0;
    content: "";
    top: 0;
    right: 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%);
    z-index: -1;
    bottom: 0;
    position: absolute;
}.welcome-page-vqVYI > div {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    transform: translateZ(0);
    width: 100%;
    transform-style: preserve-3d;
    max-width: 1200px;
    padding: 2rem;
}.welcome-page-vqVYI > div > div:first-child {
    transform: translateZ(50px) translateY(-20px);
    opacity: 0;
    animation: fadeSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}.welcome-page-vqVYI .title_style_header {
    position: relative;
    transform: skewX(-5deg);
    font-weight: 700;
    line-height: 1.1;
    padding: 0;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
    font-size: calc(46px * 1.2);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}.welcome-page-vqVYI .title_style_header::after {
    content: "";
    left: 0;
    bottom: -15px;
    animation: lineExpand 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67) 0.4s forwards;
    transform-origin: left;
    position: absolute;
    width: 100px;
    transform: scaleX(0);
    background: rgb(208,191,208);
    height: 5px;
}.welcome-page-vqVYI .quick-edu-rxgjt {
    animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    opacity: 0;
    position: relative;
    grid-template-columns: 1fr;
    gap: 2rem;
    display: grid;
    transform: translateZ(25px);
}.welcome-page-vqVYI .study-guides-Yv21B {
    background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
    border-left: 4px solid rgb(208,191,208);
    padding: 2rem;
}.welcome-page-vqVYI .study-guides-Yv21B:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(10px);
    box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}.welcome-page-vqVYI .study-guides-Yv21B h3 {
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    position: relative;
    font-size: calc(21px * 1.1);
}.welcome-page-vqVYI .quick-edu-rxgjt > div:last-child {
    padding: 1.5rem;
    background: linear-gradient(
    45deg,
    rgb(208,191,208,0.5) 0%,
    rgb(174,152,173,0.5) 100%
  );
    border-radius: 10px;
    transform: perspective(1000px) rotateX(-2deg) rotateY(1deg);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}.welcome-page-vqVYI .quick-edu-rxgjt > div:last-child:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(10px);
}.welcome-page-vqVYI .quick-edu-rxgjt > div:last-child span {
    display: block;
    position: relative;
}.welcome-page-vqVYI .quick-edu-rxgjt > div:last-child p {
    position: relative;
    color: #ffffff;
    font-size: calc(14px * 1.1);
    font-weight: 600;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateZ(50px) translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateZ(50px) translateY(0);
  }
}

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

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

@media (min-width: 768px) {.welcome-page-vqVYI > div {
    gap: 5rem;
    padding: 3rem;
}.welcome-page-vqVYI .title_style_header {
    max-width: 80%;
    font-size: calc(46px * 1.5);
}.welcome-page-vqVYI .quick-edu-rxgjt {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}.welcome-page-vqVYI .study-guides-Yv21B {
    padding: 2.5rem;
}.welcome-page-vqVYI .study-guides-Yv21B h3 {
    font-size: calc(21px * 1.2);
}
}

@media (min-width: 1024px) {.welcome-page-vqVYI > div {
    padding: 4rem;
}.welcome-page-vqVYI .title_style_header {
    max-width: 70%;
    font-size: calc(46px * 1.8);
}.welcome-page-vqVYI .title_style_header::after {
    width: 150px;
    height: 6px;
}.welcome-page-vqVYI .quick-edu-rxgjt {
    grid-template-columns: 5fr 2fr;
}.welcome-page-vqVYI .study-guides-Yv21B {
    padding: 3rem;
    transform: perspective(1000px) rotateX(3deg) rotateY(-2deg);
}.welcome-page-vqVYI .quick-edu-rxgjt > div:last-child {
    transform: perspective(1000px) rotateX(-3deg) rotateY(2deg);
}
}

@media (max-width: 767px) {.welcome-page-vqVYI {
    min-height: 90vh;
}.welcome-page-vqVYI > div {
    padding: 1.5rem;
    gap: 2rem;
}.welcome-page-vqVYI .title_style_header {
    font-size: calc(46px * 1.1);
}.welcome-page-vqVYI .study-guides-Yv21B,
  .welcome-page-vqVYI .quick-edu-rxgjt > div:last-child {
    padding: 1.5rem;
    transform: none;
}.welcome-page-vqVYI .study-guides-Yv21B h3 {
    font-size: 21px;
}.welcome-page-vqVYI .quick-edu-rxgjt > div:last-child p {
    font-size: 14px;
}}.company-overview-a8YDX {
    padding: 80px 0;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.05),
                -12px -12px 24px rgba(255, 255, 255, 0.8);
    position: relative;
    background: linear-gradient(145deg, rgb(233,225,233), #f8f9fa);
    overflow: hidden;
}.company-overview-a8YDX::before {
    top: -50px;
    width: 300px;
    position: absolute;
    background: linear-gradient(135deg, rgb(208,191,208,0.5), transparent 70%);
    right: -50px;
    filter: blur(20px);
    z-index: 0;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    content: "";
    height: 300px;
    animation: float 15s ease-in-out infinite alternate;
}.company-overview-a8YDX::after {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    left: -100px;
    filter: blur(25px);
    width: 400px;
    bottom: -100px;
    position: absolute;
    background: linear-gradient(225deg, rgb(174,152,173,0.5), transparent 70%);
    content: "";
    z-index: 0;
    animation: float 18s ease-in-out infinite alternate-reverse;
    height: 400px;
}.company-overview-a8YDX .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 1;
}.company-overview-a8YDX h1 {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    transform: perspective(1000px) translateZ(0);
    transition: transform 0.5s ease-out;
    margin-bottom: 50px;
}.company-overview-a8YDX h1::before {
    height: 4px;
    content: "";
    transform: translateX(-50%);
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    bottom: -15px;
    width: 80px;
    left: 50%;
    background: linear-gradient(90deg, rgb(208,191,208), rgb(174,152,173));
    position: absolute;
}.company-overview-a8YDX h1:hover {
    transform: perspective(1000px) translateZ(10px);
}.company-overview-a8YDX h1:hover::before {
    width: 120px;
}.company-overview-a8YDX .skill-program-aLKF1 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.05),
                -8px -8px 16px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(255, 255, 255, 0.6),
                inset -1px -1px 2px rgba(0, 0, 0, 0.05);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
}.company-overview-a8YDX .skill-program-aLKF1:hover {
    box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.08),
                -12px -12px 20px rgba(255, 255, 255, 0.9),
                inset 1px 1px 2px rgba(255, 255, 255, 0.6),
                inset -1px -1px 2px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}.company-overview-a8YDX ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0;
}.company-overview-a8YDX .learning-lab-VrKdq {
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.06),
                -8px -8px 16px rgba(255, 255, 255, 0.7),
                inset 1px 1px 2px rgba(255, 255, 255, 0.3),
                inset -1px -1px 2px rgba(0, 0, 0, 0.02);
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    overflow: hidden;
}.company-overview-a8YDX .learning-lab-VrKdq::before {
    content: "";
    left: 0;
    position: absolute;
    transition: height 0.5s ease;
    height: 0;
    top: 0;
    background: linear-gradient(180deg, rgb(208,191,208), rgb(174,152,173));
    width: 4px;
}.company-overview-a8YDX .learning-lab-VrKdq:hover {
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.08),
                -12px -12px 24px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(255, 255, 255, 0.3),
                inset -1px -1px 2px rgba(0, 0, 0, 0.02);
    transform: translateY(-5px) scale(1.01);
}.company-overview-a8YDX .learning-lab-VrKdq:hover::before {
    height: 100%;
}.company-overview-a8YDX .learning-lab-VrKdq h4 {
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    font-size: 22px;
    position: relative;
}.company-overview-a8YDX .learning-lab-VrKdq h4::after {
    left: 0;
    bottom: -8px;
    position: absolute;
    content: "";
    transition: width 0.4s ease;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(208,191,208), rgb(174,152,173));
}.company-overview-a8YDX .learning-lab-VrKdq:hover h4 {
    transform: translateX(10px);
    color: rgb(208,191,208);
}.company-overview-a8YDX .learning-lab-VrKdq:hover h4::after {
    width: 100%;
}.company-overview-a8YDX .learning-lab-VrKdq div {
    font-weight: 400;
    margin-left: 5px;
    max-height: 300px;
    transition: color 0.3s ease;
    color: #000000;
    padding-right: 10px;
    overflow-y: auto;
    font-size: 17px;
    line-height: 1.7;
}.company-overview-a8YDX .learning-lab-VrKdq:hover div {
    color: #000000;
}.company-overview-a8YDX .learning-lab-VrKdq div::-webkit-scrollbar {
    width: 4px;
}.company-overview-a8YDX .learning-lab-VrKdq div::-webkit-scrollbar-track {
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
}.company-overview-a8YDX .learning-lab-VrKdq div::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: linear-gradient(180deg, rgb(208,191,208), rgb(174,152,173));
}

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

@media (min-width: 768px) {.company-overview-a8YDX {
    padding: 100px 0;
}.company-overview-a8YDX ul {
    grid-template-columns: repeat(2, 1fr);
}.company-overview-a8YDX h1 {
    font-size: calc(38px * 1.2);
    margin-bottom: 70px;
}.company-overview-a8YDX .learning-lab-VrKdq {
    height: 100%;
    padding: 35px 30px;
}.company-overview-a8YDX .learning-lab-VrKdq div {
    max-height: 400px;
}
}

@media (min-width: 992px) {.company-overview-a8YDX .container {
    padding: 0 40px;
}.company-overview-a8YDX .skill-program-aLKF1 {
    padding: 40px;
}.company-overview-a8YDX .learning-lab-VrKdq {
    padding: 40px 35px;
}.company-overview-a8YDX .learning-lab-VrKdq div {
    line-height: 1.8;
    max-height: 500px;
}
}

@media (max-width: 767px) {.company-overview-a8YDX {
    padding: 60px 0;
}.company-overview-a8YDX h1 {
    margin-bottom: 40px;
    font-size: calc(38px * 0.9);
}.company-overview-a8YDX .learning-lab-VrKdq {
    padding: 20px;
}.company-overview-a8YDX .learning-lab-VrKdq div {
    max-height: 250px;
}
}

@media (hover: none) {.company-overview-a8YDX h1:hover,
    .company-overview-a8YDX .learning-lab-VrKdq:hover,
    .company-overview-a8YDX .skill-program-aLKF1:hover {
    transform: none;
}.company-overview-a8YDX .learning-lab-VrKdq:hover::before {
    height: 70px;
}.company-overview-a8YDX .learning-lab-VrKdq:hover h4 {
    transform: translateX(5px);
}}.developer-experience-aTMhn {
    overflow: hidden;
    position: relative;
    background: rgb(233,225,233);
    padding: 5rem 2rem;
}.developer-experience-aTMhn::before {
    z-index: 1;
    top: 0;
    background: linear-gradient(120deg, transparent 30%, rgb(208,191,208,0.5) 100%);
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
}.developer-experience-aTMhn::after {
    opacity: 0.5;
    z-index: 1;
    height: 70%;
    position: absolute;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    right: 0;
    width: 40%;
    bottom: 0;
    content: "";
    background: rgb(174,152,173,0.5);
}.developer-experience-aTMhn .client-experiences-LsGdI {
    z-index: 2;
    gap: 3rem;
    display: grid;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    grid-template-columns: 1fr 1.5fr;
}.developer-experience-aTMhn .pic-img-wrap-G0vnD {
    width: 100%;
    position: relative;
    filter: grayscale(100%);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 0;
    aspect-ratio: 3/4;
    overflow: hidden;
}.developer-experience-aTMhn .pic-img-wrap-G0vnD::before {
    content: "";
    z-index: 1;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgb(208,191,208,0.5) 100%);
    width: 100%;
}.developer-experience-aTMhn .pic-img-wrap-G0vnD:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}.developer-experience-aTMhn .work-area-vgjO7 {
    justify-content: center;
    flex-direction: column;
    display: flex;
    padding: 2rem;
    position: relative;
}.developer-experience-aTMhn .work-area-vgjO7::before {
    width: 2px;
    content: "";
    background: rgb(208,191,208);
    height: 0;
    left: 0;
    transition: height 0.8s ease-out;
    top: 0;
    position: absolute;
}.developer-experience-aTMhn .client-experiences-LsGdI:hover .work-area-vgjO7::before {
    height: 100%;
}.developer-experience-aTMhn .name {
    position: relative;
    font-size: 47px;
    color: #000000;
    overflow: hidden;
    font-weight: 700;
    margin-bottom: 0.5rem;
}.developer-experience-aTMhn .name::after {
    content: "";
    background: rgb(174,152,173);
    transition: transform 0.6s ease-out 0.2s;
    width: 100%;
    height: 1px;
    left: 0;
    transform: translateX(-101%);
    position: absolute;
    bottom: 0;
}.developer-experience-aTMhn .client-experiences-LsGdI:hover .name::after {
    transform: translateX(0);
}.developer-experience-aTMhn .work-area-vgjO7 > div:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease-out 0.4s;
    color: rgb(174,152,173);
    text-transform: uppercase;
}.developer-experience-aTMhn .client-experiences-LsGdI:hover .work-area-vgjO7 > div:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
}.developer-experience-aTMhn .career-section-GhIpM {
    font-size: 13px;
    transform: translateY(20px);
    opacity: 0;
    color: #000000;
    line-height: 1.8;
    font-weight: 300;
    padding: 0 0 0 20px;
    transition: all 0.5s ease-out 0.6s;
    position: relative;
}.developer-experience-aTMhn .client-experiences-LsGdI:hover .career-section-GhIpM {
    opacity: 1;
    transform: translateY(0);
}.developer-experience-aTMhn .career-section-GhIpM::first-letter {
    font-weight: 700;
    font-size: 1.5em;
    color: rgb(208,191,208);
}@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

.developer-experience-aTMhn:hover .name {
    white-space: nowrap;
    animation: 
        typing 2.5s steps(40, end),
        blink .75s step-end infinite;
    overflow: hidden;
}

@media (max-width: 992px) {.developer-experience-aTMhn .client-experiences-LsGdI {
    grid-template-columns: 1fr;
    gap: 2rem;
}.developer-experience-aTMhn .pic-img-wrap-G0vnD {
    max-height: 300px;
    aspect-ratio: 16/9;
}.developer-experience-aTMhn .work-area-vgjO7 {
    padding: 1rem 0;
}.developer-experience-aTMhn .work-area-vgjO7::before {
    transition: width 0.8s ease-out;
    height: 2px;
    width: 0;
}.developer-experience-aTMhn .client-experiences-LsGdI:hover .work-area-vgjO7::before {
    width: 100%;
    height: 2px;
}}.education-framework-Pc8gf {
    background: linear-gradient(140deg, rgb(233,225,233) 0%, rgb(208,191,208,0.5) 100%);
    overflow: hidden;
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}.education-framework-Pc8gf::before {
    z-index: -1;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: float 12s infinite ease-in-out;
    background: rgb(208,191,208);
    position: absolute;
    content: "";
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
}.education-framework-Pc8gf::after {
    z-index: -1;
    position: absolute;
    left: -80px;
    background: rgb(174,152,173);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -80px;
    opacity: 0.05;
    width: 300px;
    height: 300px;
    animation: morph 15s infinite alternate ease-in-out;
    content: "";
}.education-framework-Pc8gf .container {
    padding: 0 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.education-framework-Pc8gf .expert-network-rDcKA {
    flex-direction: column;
    position: relative;
    transform: perspective(1000px) rotateY(2deg);
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}.education-framework-Pc8gf .expert-network-rDcKA:hover {
    transform: perspective(1000px) rotateY(0deg);
}.education-framework-Pc8gf .expert-network-rDcKA > div {
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03),
        0 1px 0 rgba(255,255,255,0.8) inset;
    padding: 3.5rem 3rem;
    border-left: 5px solid rgb(208,191,208);
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
}.education-framework-Pc8gf .expert-network-rDcKA > div:hover {
    transform: translateX(5px) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.08),
        0 10px 20px rgba(0,0,0,0.05),
        0 1px 0 rgba(255,255,255,0.9) inset;
}.education-framework-Pc8gf .expert-network-rDcKA > div::before {
    position: absolute;
    background: linear-gradient(135deg, rgb(208,191,208,0.5) 0%, transparent 100%);
    mix-blend-mode: overlay;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
}.education-framework-Pc8gf .expert-network-rDcKA > div:hover::before {
    opacity: 0.3;
}.education-framework-Pc8gf h3 {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: calc(29px * 0.8);
    color: rgb(208,191,208);
    font-family: Arial, sans-serif;
    transform: translateX(0);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}.education-framework-Pc8gf .expert-network-rDcKA > div:hover h3 {
    transform: translateX(5px);
}.education-framework-Pc8gf h3::after {
    background: rgb(208,191,208);
    height: 3px;
    width: 60px;
    transition: width 0.4s ease-out;
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
}.education-framework-Pc8gf .expert-network-rDcKA > div:hover h3::after {
    width: 100px;
}.education-framework-Pc8gf p {
    position: relative;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    transform: translateY(0);
    font-size: 15px;
    line-height: 1.7;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}.education-framework-Pc8gf .expert-network-rDcKA > div:hover p {
    transform: translateY(3px);
}.education-framework-Pc8gf p span {
    border-left: 2px solid rgba(rgb(208,191,208,0.5), 0.2);
    display: block;
    padding-left: 1rem;
    position: relative;
}

@keyframes float {
    0%, 100% {
        transform: rotate(45deg) translate(0px, 0px);
    }
    50% {
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    100% {
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 40%;
    }
}

@media (min-width: 768px) {.education-framework-Pc8gf {
    padding: 8rem 0;
}.education-framework-Pc8gf .expert-network-rDcKA > div {
    transform: translateX(0) skewX(-2deg);
    padding: 4rem 5rem;
}.education-framework-Pc8gf .expert-network-rDcKA > div:hover {
    transform: translateX(8px) translateY(-8px) skewX(-2deg);
}.education-framework-Pc8gf h3 {
    font-size: 29px;
}.education-framework-Pc8gf p span {
    padding-left: 2rem;
}
}

@media (min-width: 992px) {.education-framework-Pc8gf {
    padding: 10rem 0;
}.education-framework-Pc8gf .expert-network-rDcKA {
    transform: perspective(1000px) rotateY(3deg);
}.education-framework-Pc8gf .expert-network-rDcKA > div {
    padding: 5rem 6rem;
}.education-framework-Pc8gf h3 {
    margin-bottom: 2.5rem;
}.education-framework-Pc8gf p {
    line-height: 1.8;
    font-size: calc(15px * 1.05);
}
}

@media (max-width: 767px) {.education-framework-Pc8gf {
    padding: 5rem 0;
}.education-framework-Pc8gf .expert-network-rDcKA > div {
    padding: 2.5rem 1.5rem;
}.education-framework-Pc8gf h3 {
    margin-bottom: 1.5rem;
    font-size: calc(29px * 0.7);
}.education-framework-Pc8gf p {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
}.education-framework-Pc8gf p span {
    padding-left: 0.75rem;
}}.stay-connected-9T68a {
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgb(233,225,233) 0%, rgb(174,152,173,0.5) 100%);
    padding: 4rem 2rem;
    overflow: hidden;
}.stay-connected-9T68a::before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, rgb(208,191,208,0.5) 0%, transparent 70%);
    left: -20%;
    height: 200%;
    top: -50%;
    z-index: 1;
    transform: rotate(15deg);
    width: 100%;
}.stay-connected-9T68a::after {
    content: "";
    animation: pulse 8s infinite alternate ease-in-out;
    z-index: 1;
    width: 40%;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    right: -10%;
    bottom: -10%;
    background: linear-gradient(to right, rgb(174,152,173,0.5) 0%, rgb(174,152,173) 100%);
    height: 40%;
}.stay-connected-9T68a .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.stay-connected-9T68a .expert-network-rDcKA {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    gap: 2rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    padding: 3rem;
    flex-direction: column;
    transform: perspective(1000px) rotateX(2deg);
}.stay-connected-9T68a .expert-network-rDcKA:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.08);
}.stay-connected-9T68a h3 {
    margin: 0;
    color: #000000;
    font-size: 19px;
    font-weight: 700;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.4;
    padding-left: 1rem;
    transform: translateY(0);
    border-left: 4px solid rgb(208,191,208);
    font-family: Arial, sans-serif;
}.stay-connected-9T68a .expert-network-rDcKA:hover h3 {
    transform: translateY(-5px);
}.stay-connected-9T68a .input_holder {
    gap: 1.2rem;
    flex-direction: column;
    width: 100%;
    display: flex;
    position: relative;
}.stay-connected-9T68a .input_holder div {
    position: relative;
    flex: 1;
}.stay-connected-9T68a .input_holder div::before {
    content: "";
    background: rgb(208,191,208);
    left: 0;
    transition: width 0.4s ease;
    z-index: 2;
    bottom: -2px;
    height: 2px;
    width: 0;
    position: absolute;
}.stay-connected-9T68a .input_holder div:focus-within::before {
    width: 100%;
}.stay-connected-9T68a input[type="email"] {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 1rem;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}.stay-connected-9T68a input[type="email"]:focus {
    border-color: rgb(174,152,173);
    outline: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}.stay-connected-9T68a input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}.stay-connected-9T68a input[type="email"]:focus::placeholder {
    opacity: 0.5;
}.stay-connected-9T68a .sub-transition-nSwix {
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    cursor: pointer;
    color: #ffffff;
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, rgb(208,191,208) 0%, rgb(174,152,173) 100%);
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
}.stay-connected-9T68a .sub-transition-nSwix::before {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
    transition: left 0.7s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    left: -100%;
}.stay-connected-9T68a .sub-transition-nSwix:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}.stay-connected-9T68a .sub-transition-nSwix:hover::before {
    left: 100%;
}.stay-connected-9T68a .sub-transition-nSwix:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 768px) {.stay-connected-9T68a {
    padding: 6rem 3rem;
}.stay-connected-9T68a .expert-network-rDcKA {
    align-items: center;
    flex-direction: row;
    gap: 3rem;
    padding: 4rem;
    justify-content: space-between;
}.stay-connected-9T68a h3 {
    max-width: 60%;
    font-size: calc(19px * 1.1);
}.stay-connected-9T68a .input_holder {
    width: auto;
    flex-wrap: nowrap;
    flex-direction: row;
}.stay-connected-9T68a .input_holder div {
    min-width: 300px;
}.stay-connected-9T68a .sub-transition-nSwix {
    flex-shrink: 0;
}
}

@media (max-width: 767px) {.stay-connected-9T68a {
    padding: 3rem 1.5rem;
}.stay-connected-9T68a .expert-network-rDcKA {
    gap: 1.5rem;
    padding: 2rem;
}.stay-connected-9T68a h3 {
    font-size: calc(19px * 0.9);
    padding-left: 0.75rem;
    border-left-width: 3px;
}.stay-connected-9T68a input[type="email"] {
    padding: 0.8rem;
}.stay-connected-9T68a .sub-transition-nSwix {
    text-align: center;
    padding: 0.8rem 1.5rem;
    width: 100%;
}
}

@media (max-width: 480px) {.stay-connected-9T68a {
    padding: 2.5rem 1rem;
}.stay-connected-9T68a .expert-network-rDcKA {
    gap: 1.2rem;
    padding: 1.5rem;
}.stay-connected-9T68a h3 {
    font-size: calc(19px * 0.8);
}}.program-overview-mPJW0 {
    display: flex;
    position: relative;
    background-color: rgb(233,225,233);
    min-height: 100vh;
    flex-direction: column;
    overflow: hidden;
}.program-overview-mPJW0::before {
    pointer-events: none;
    content: "";
    position: absolute;
    background: linear-gradient(180deg, transparent 30%, #000000 100%);
    height: 100%;
    width: 100%;
    z-index: 2;
}.program-overview-mPJW0 .education-map-tFa6Q {
    z-index: 1;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}.program-overview-mPJW0 .learn-now-Wp8Iq {
    display: flex;
    width: calc(100% * 5);
    animation: carousel-slide 35s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    height: 100%;
}.program-overview-mPJW0 .education-map-tFa6Q:hover .learn-now-Wp8Iq {
    animation-play-state: paused;
}.program-overview-mPJW0 .learn-professional-VKIET {
    position: relative;
    width: calc(100% / 5);
    height: 100%;
}.program-overview-mPJW0 .learn-professional-VKIET img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    filter: brightness(0.7);
}.program-overview-mPJW0 .container {
    padding-bottom: 80px;
    margin-top: auto;
    z-index: 3;
    position: relative;
}.program-overview-mPJW0 .expert-network-rDcKA {
    display: flex;
    justify-content: center;
}.program-overview-mPJW0 .learn-path-Ojo5p {
    animation: float-up 1s forwards;
    max-width: 800px;
    padding: 50px;
    transform: translateY(30px);
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(8px);
    border-radius: 0;
    width: 100%;
    position: relative;
    border-top: 4px solid rgb(208,191,208);
}.program-overview-mPJW0 .learn-path-Ojo5p::before,
.program-overview-mPJW0 .learn-path-Ojo5p::after {
    content: "";
    border-radius: 50%;
    z-index: -1;
    background: rgb(208,191,208);
    position: absolute;
    opacity: 0.3;
}.program-overview-mPJW0 .learn-path-Ojo5p::before {
    width: 300px;
    top: -150px;
    right: -150px;
    height: 300px;
}.program-overview-mPJW0 .learn-path-Ojo5p::after {
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
}.program-overview-mPJW0 .learn-path-Ojo5p h3 {
    position: relative;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 48px;
}.program-overview-mPJW0 .learn-path-Ojo5p p {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.8;
    color: #ffffff;
    text-align: center;
    line-height: 1.7;
}.program-overview-mPJW0 .learn-path-Ojo5p .connect-links-iTswR {
    display: block;
    color: #ffffff;
    margin: 0 auto;
    transition: all 0.3s ease;
    padding: 15px 0;
    overflow: hidden;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    background: rgb(208,191,208);
    width: 200px;
}.program-overview-mPJW0 .learn-path-Ojo5p .connect-links-iTswR::before {
    height: 100%;
    width: 100%;
    content: "";
    transition: transform 0.3s ease;
    position: absolute;
    background: rgb(174,152,173);
    transform: translateX(-100%);
    left: 0;
    top: 0;
    z-index: -1;
}.program-overview-mPJW0 .learn-path-Ojo5p .connect-links-iTswR:hover {
    color: #ffffff;
}.program-overview-mPJW0 .learn-path-Ojo5p .connect-links-iTswR:hover::before {
    transform: translateX(0);
}

@keyframes carousel-slide {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-20%);
    }
    40%, 56% {
        transform: translateX(-40%);
    }
    60%, 76% {
        transform: translateX(-60%);
    }
    80%, 96% {
        transform: translateX(-80%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {.program-overview-mPJW0 {
    min-height: 100vh;
}.program-overview-mPJW0 .container {
    padding-bottom: 60px;
}.program-overview-mPJW0 .learn-path-Ojo5p {
    padding: 40px 30px;
}.program-overview-mPJW0 .learn-path-Ojo5p h3 {
    font-size: calc(30px * 1.1);
}
}

@media (max-width: 768px) {.program-overview-mPJW0 {
    padding-top: 50vh;
    min-height: auto;
    height: auto;
}.program-overview-mPJW0::before {
    background: linear-gradient(180deg, transparent 40%, #000000 70%);
}.program-overview-mPJW0 .education-map-tFa6Q {
    height: 50vh;
    position: fixed;
    top: 0;
}.program-overview-mPJW0 .container {
    margin-top: 0;
    padding-bottom: 50px;
}.program-overview-mPJW0 .learn-path-Ojo5p {
    padding: 30px 25px;
}.program-overview-mPJW0 .learn-path-Ojo5p h3 {
    font-size: 30px;
}.program-overview-mPJW0 .learn-path-Ojo5p .connect-links-iTswR {
    width: 100%;
}
}

@media (max-width: 576px) {.program-overview-mPJW0 {
    padding-top: 45vh;
}.program-overview-mPJW0 .education-map-tFa6Q {
    height: 45vh;
}.program-overview-mPJW0 .container {
    padding-bottom: 40px;
}.program-overview-mPJW0 .learn-path-Ojo5p {
    padding: 25px 20px;
}.program-overview-mPJW0 .learn-path-Ojo5p h3 {
    font-size: calc(19px * 1.1);
    margin-bottom: 15px;
}.program-overview-mPJW0 .learn-path-Ojo5p p {
    margin-bottom: 25px;
}.program-overview-mPJW0 .learn-path-Ojo5p .connect-links-iTswR {
    padding: 12px 0;
}}.pricing-offer-box-kuyQz {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: rgb(233,225,233);
}.pricing-offer-box-kuyQz::before {
    top: -50px;
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 0;
    animation: float-effect 12s infinite alternate ease-in-out;
    background: rgb(208,191,208,0.5);
    right: -50px;
    filter: blur(80px);
    content: "";
}.pricing-offer-box-kuyQz::after {
    width: 250px;
    content: "";
    filter: blur(60px);
    left: -50px;
    animation: float-effect 15s infinite alternate-reverse ease-in-out;
    height: 250px;
    background: rgb(174,152,173,0.5);
    z-index: 0;
    bottom: -50px;
    position: absolute;
}.pricing-offer-box-kuyQz .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 15px;
    position: relative;
}.pricing-offer-box-kuyQz .learn-fees-9zQS2 {
    display: flex;
    gap: 60px;
    flex-direction: column;
}.pricing-offer-box-kuyQz .cost-options-jtfIh {
    margin: 0 auto;
    max-width: 700px;
    padding: 0 20px;
    text-align: center;
    order: -1;
    position: relative;
}.pricing-offer-box-kuyQz .cost-options-jtfIh h2 {
    display: inline-block;
    font-weight: 700;
    color: #000000;
    position: relative;
    margin-bottom: 20px;
    font-size: 28px;
}.pricing-offer-box-kuyQz .cost-options-jtfIh h2::after {
    width: 80px;
    content: "";
    background: rgb(208,191,208);
    height: 3px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    bottom: -10px;
}.pricing-offer-box-kuyQz .learning-cost-ZuSPH {
    color: #000000;
    opacity: 0.85;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}.pricing-offer-box-kuyQz .learning-packages-b42Oa {
    gap: 30px;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc {
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    color: inherit;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover {
    transform: translateY(-10px) scale(1.02);
}.pricing-offer-box-kuyQz .member-fees-pKA4Z {
    background: #ffffff;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: box-shadow 0.4s ease;
    overflow: hidden;
    border-radius: 10px;
    transform-style: preserve-3d;
    flex-direction: column;
    position: relative;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover .member-fees-pKA4Z {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 20px rgb(208,191,208,0.5);
}.pricing-offer-box-kuyQz .skill-pricing-i1fak {
    flex-grow: 1;
    z-index: 2;
    position: relative;
    display: flex;
    padding: 30px;
    flex-direction: column;
    overflow: hidden;
}.pricing-offer-box-kuyQz .skill-pricing-i1fak::before {
    height: 5px;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(208,191,208), rgb(174,152,173));
    transition: transform 0.5s ease;
    left: 0;
    content: "";
    position: absolute;
    transform-origin: left;
    right: 0;
    top: 0;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover .skill-pricing-i1fak::before {
    transform: scaleX(1);
}.pricing-offer-box-kuyQz .skill-pricing-i1fak h3 {
    white-space: normal;
    color: #000000;
    font-weight: 700;
    font-size: calc(22px + 2px);
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    transition: transform 0.4s ease, color 0.3s ease;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover .skill-pricing-i1fak h3 {
    transform: translateX(5px);
    color: rgb(208,191,208);
}.pricing-offer-box-kuyQz .price-grid-dkiR6 {
    white-space: normal;
    display: block;
    font-weight: 700;
    position: relative;
    word-break: break-word;
    transition: transform 0.4s ease;
    margin: 10px 0 20px;
    overflow-wrap: break-word;
    color: rgb(174,152,173);
    font-size: 22px;
}.pricing-offer-box-kuyQz .price-grid-dkiR6::before {
    transition: width 0.4s ease;
    left: 0;
    height: 2px;
    width: 40px;
    background: rgb(174,152,173,0.5);
    bottom: -8px;
    content: "";
    position: absolute;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover .price-grid-dkiR6::before {
    width: 80px;
}.pricing-offer-box-kuyQz .skill-pricing-i1fak p {
    word-break: break-word;
    white-space: normal;
    margin-bottom: 0;
    overflow-wrap: break-word;
    color: #000000;
    flex-grow: 1;
    transition: color 0.3s ease;
    line-height: 1.6;
    font-size: calc(14px - 1px);
}.pricing-offer-box-kuyQz .pic-img-wrap-G0vnD {
    overflow: hidden;
    position: relative;
    transition: transform 0.6s ease, filter 0.6s ease;
    transform: translateZ(-10px);
    height: 200px;
}.pricing-offer-box-kuyQz .pic-img-wrap-G0vnD::after {
    opacity: 0.6;
    transition: opacity 0.5s ease;
    content: "";
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover .pic-img-wrap-G0vnD {
    filter: brightness(1.1) contrast(1.05);
    transform: translateZ(0);
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover .pic-img-wrap-G0vnD::after {
    opacity: 0.4;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc::after {
    filter: blur(10px);
    left: 30px;
    right: 30px;
    top: 100%;
    transition: opacity 0.4s ease;
    position: absolute;
    border-radius: 50%;
    height: 15px;
    background: rgb(208,191,208,0.5);
    z-index: -1;
    content: "";
    opacity: 0;
}.pricing-offer-box-kuyQz .premium-cost-EfsBc:hover::after {
    opacity: 0.5;
}

@keyframes float-effect {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
    100% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}

@media (min-width: 992px) {.pricing-offer-box-kuyQz .learn-fees-9zQS2 {
    align-items: center;
    flex-direction: row;
}.pricing-offer-box-kuyQz .cost-options-jtfIh {
    flex: 0 0 30%;
    text-align: left;
    order: 0;
    padding-right: 40px;
}.pricing-offer-box-kuyQz .cost-options-jtfIh h2::after {
    left: 0;
    transform: none;
}.pricing-offer-box-kuyQz .learning-packages-b42Oa {
    grid-template-columns: repeat(2, 1fr);
    flex: 0 0 70%;
}
}

@media (min-width: 1200px) {.pricing-offer-box-kuyQz .learning-packages-b42Oa {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.pricing-offer-box-kuyQz .skill-pricing-i1fak {
    padding: 35px;
}.pricing-offer-box-kuyQz .pic-img-wrap-G0vnD {
    height: 220px;
}
}

@media (max-width: 991px) {.pricing-offer-box-kuyQz {
    padding: 80px 0;
}.pricing-offer-box-kuyQz .cost-options-jtfIh {
    margin-bottom: 20px;
}
}

@media (max-width: 767px) {.pricing-offer-box-kuyQz {
    padding: 60px 0;
}.pricing-offer-box-kuyQz .learning-packages-b42Oa {
    gap: 25px;
    grid-template-columns: 1fr;
}.pricing-offer-box-kuyQz .cost-options-jtfIh h2 {
    font-size: calc(28px - 4px);
}.pricing-offer-box-kuyQz .pic-img-wrap-G0vnD {
    height: 180px;
}.pricing-offer-box-kuyQz .skill-pricing-i1fak {
    padding: 25px;
}
}

@media (max-width: 480px) {.pricing-offer-box-kuyQz {
    padding: 50px 0;
}.pricing-offer-box-kuyQz .skill-pricing-i1fak h3 {
    font-size: 22px;
}.pricing-offer-box-kuyQz .price-grid-dkiR6 {
    font-size: calc(22px - 2px);
}.pricing-offer-box-kuyQz .pic-img-wrap-G0vnD {
    height: 160px;
}.pricing-offer-box-kuyQz .skill-pricing-i1fak {
    padding: 20px;
}}header .top_plank {
    color:  #ffffff;
    background: rgb(208,191,208);
}header .top_plank .plank-strip-npJYP div svg, header .top_plank .plank-strip-npJYP div svg path {
    fill: #ffffff;
}header .top_plank .plank-strip-npJYP div span {
    color: #ffffff;
}header .top_plank .plank-strip-npJYP {
    display: flex;
    line-height: 21px;
    justify-content: flex-start;
    padding: 15px 0 10px 0;
    flex-wrap: wrap;
    align-items: center;
    font-size: 15px;
    width: 100%;
}header .top_plank .plank-strip-npJYP div {
    margin-right: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}header .top_plank .plank-strip-npJYP div img, header .top_plank .plank-strip-npJYP div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}.info-details-CAQcn {
    padding: 6rem 0;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    background: rgb(233,225,233);
}.info-details-CAQcn::before {
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(rgb(208,191,208,0.5), 0.02) 10px,
        rgba(rgb(208,191,208,0.5), 0.02) 20px
    );
    z-index: -1;
    top: 0;
    position: absolute;
}.info-details-CAQcn::after {
    height: 500px;
    content: '';
    top: -250px;
    right: -250px;
    position: absolute;
    filter: blur(50px);
    opacity: 0.1;
    z-index: -2;
    background: radial-gradient(circle, rgb(208,191,208,0.5) 0%, transparent 70%);
    width: 500px;
}.info-details-CAQcn .container {
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    max-width: 1200px;
}.info-details-CAQcn .help-now-WDv3x {
    overflow: hidden;
    background: transparent;
    border-radius: 26px;
    gap: 0;
    grid-template-columns: 1fr;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    position: relative;
}.info-details-CAQcn .help-now-WDv3x::before {
    z-index: -1;
    inset: 0;
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}.info-details-CAQcn .help-now-WDv3x h3 {
    justify-content: center;
    font-size: 37px;
    align-items: center;
    margin: 0;
    position: relative;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgb(208,191,208);
    gap: 0.75rem;
    padding: 2rem;
    display: flex;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}.info-details-CAQcn .help-now-WDv3x h3 svg {
    stroke: #ffffff;
    stroke-width: 2;
    height: 1.75rem;
    stroke-linejoin: round;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    animation: floatIcon 3s ease-in-out infinite;
    width: 1.75rem;
}@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.info-details-CAQcn .help-now-WDv3x h3::before {
    z-index: 0;
    content: '';
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    animation: rotateGradient 20s linear infinite;
    width: 200%;
    height: 200%;
    position: absolute;
    top: -50%;
    left: -50%;
}@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.info-details-CAQcn .msg-info-KdS1v {
    padding: 2rem 2rem 1rem;
    position: relative;
    color: #000000;
    line-height: 1.7;
    max-width: 80%;
    font-size: calc(12px * 1.05);
    margin: 0 auto;
    text-align: center;
}.info-details-CAQcn .msg-info-KdS1v::after {
    left: 50%;
    bottom: 0;
    background: rgb(208,191,208);
    content: '';
    border-radius: 10px;
    position: absolute;
    height: 3px;
    width: 50px;
    transform: translateX(-50%);
}.info-details-CAQcn .contact-help-o9bXr {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    position: relative;
}.info-details-CAQcn .contact-help-o9bXr span {
    border-radius: 10px;
    overflow: hidden;
    padding-left: 3.5rem;
    position: relative;
    flex-direction: column;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(rgb(208,191,208,0.5), 0.1);
    display: flex;
    background: #ffffff;
    justify-content: center;
}.info-details-CAQcn .contact-help-o9bXr span svg {
    width: 1.5rem;
    stroke: rgb(208,191,208);
    height: 1.5rem;
    left: 1.25rem;
    stroke-width: 2;
    position: absolute;
    margin: auto;
    transition: all 0.3s ease;
    fill: none;
    stroke-linejoin: round;
    stroke-linecap: round;
    z-index: 1;
}.info-details-CAQcn .contact-help-o9bXr span svg path,
.info-details-CAQcn .contact-help-o9bXr span svg circle,
.info-details-CAQcn .contact-help-o9bXr span svg line,
.info-details-CAQcn .contact-help-o9bXr span svg polyline,
.info-details-CAQcn .contact-help-o9bXr span svg rect {
    transition: all 0.3s ease;
}.info-details-CAQcn .contact-help-o9bXr span:hover svg {
    transform: scale(1.2);
}.info-details-CAQcn .contact-help-o9bXr span:nth-child(odd) svg {
    stroke: rgb(208,191,208);
}.info-details-CAQcn .contact-help-o9bXr span:nth-child(even) svg {
    stroke: rgb(174,152,173);
}.info-details-CAQcn .contact-help-o9bXr span::before {
    width: 5px;
    background: rgb(208,191,208);
    left: 0;
    content: '';
    transition: width 0.3s ease;
    height: 100%;
    position: absolute;
    top: 0;
}.info-details-CAQcn .contact-help-o9bXr span:nth-child(even)::before {
    background: rgb(174,152,173);
}.info-details-CAQcn .contact-help-o9bXr span::after {
    border-width: 0 0 30px 30px;
    position: absolute;
    width: 0;
    border-style: solid;
    border-color: transparent transparent rgb(208,191,208,0.5) transparent;
    opacity: 0.2;
    height: 0;
    content: '';
    right: 0;
    bottom: 0;
}.info-details-CAQcn .contact-help-o9bXr span:nth-child(even)::after {
    border-color: transparent transparent rgb(174,152,173,0.5) transparent;
}.info-details-CAQcn .contact-help-o9bXr span:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}.info-details-CAQcn .contact-help-o9bXr span:hover::before {
    width: 7px;
}.info-details-CAQcn .contact-help-o9bXr span:hover svg path,
.info-details-CAQcn .contact-help-o9bXr span:hover svg circle,
.info-details-CAQcn .contact-help-o9bXr span:hover svg line,
.info-details-CAQcn .contact-help-o9bXr span:hover svg polyline,
.info-details-CAQcn .contact-help-o9bXr span:hover svg rect {
    animation: dash 1.5s linear forwards;
    stroke-dashoffset: 100;
    stroke-dasharray: 100;
}@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
.info-details-CAQcn .contact-help-o9bXr span p {
    margin: 0 0 0.5rem;
    color: #000000;
    font-weight: 600;
    font-size: 12px;
}.info-details-CAQcn .contact-help-o9bXr span > span {
    box-shadow: none;
    margin: 0;
    font-weight: 400;
    border: none;
    color: #000000;
    background: transparent;
    padding: 0;
}.info-details-CAQcn .contact-help-o9bXr span > span:hover {
    box-shadow: none;
    transform: none;
}.info-details-CAQcn .contact-help-o9bXr span > span::before,
.info-details-CAQcn .contact-help-o9bXr span > span::after {
    display: none;
}.info-details-CAQcn .contact-help-o9bXr span a {
    display: inline-block;
    color: rgb(208,191,208);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}.info-details-CAQcn .contact-help-o9bXr span a:hover {
    color: rgb(174,152,173);
    transform: translateX(3px);
}.info-details-CAQcn .connect-now-tOPDc {
    overflow: hidden;
    border-radius: 10px;
    background: rgba(rgb(174,152,173,0.5), 0.1);
    grid-column: 1 / -1;
    margin-top: 1rem;
    border: 1px solid rgba(rgb(174,152,173,0.5), 0.2);
    position: relative;
}.info-details-CAQcn .connect-now-tOPDc::before {
    width: 100px;
    border-radius: 50%;
    top: -50px;
    background: rgb(174,152,173,0.5);
    position: absolute;
    content: '';
    right: -50px;
    height: 100px;
    opacity: 0.1;
}.info-details-CAQcn .connect-now-tOPDc h4 {
    margin: 0 0 1.5rem;
    color: rgb(174,152,173);
    border-bottom: 1px solid rgba(rgb(174,152,173,0.5), 0.2);
    position: relative;
    font-size: 18px;
    display: flex;
    font-weight: 600;
    padding-bottom: 0.75rem;
    align-items: center;
    gap: 0.75rem;
}.info-details-CAQcn .connect-now-tOPDc h4 svg {
    transition: transform 0.3s ease;
    height: 1.25rem;
    stroke: rgb(174,152,173);
    stroke-linecap: round;
    stroke-width: 2;
    width: 1.25rem;
    fill: none;
    stroke-linejoin: round;
}.info-details-CAQcn .connect-now-tOPDc h4:hover svg {
    transform: rotate(20deg);
}.info-details-CAQcn .connect-now-tOPDc h4::after {
    background: rgb(174,152,173);
    width: 60px;
    bottom: -1px;
    position: absolute;
    border-radius: 10px;
    content: '';
    left: 0;
    height: 3px;
}.info-details-CAQcn .connect-now-tOPDc span {
    position: relative;
    color: #000000;
    border-bottom: 1px dashed rgba(#000000, 0.1);
    padding: 0.75rem 0;
    align-items: center;
    font-size: 12px;
    display: flex;
}.info-details-CAQcn .connect-now-tOPDc span svg {
    height: 1rem;
    stroke-linejoin: round;
    fill: none;
    width: 1rem;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
    stroke-width: 2;
    stroke: rgb(174,152,173);
    stroke-linecap: round;
}.info-details-CAQcn .connect-now-tOPDc span:hover svg {
    transform: scale(1.2);
}.info-details-CAQcn .connect-now-tOPDc span:last-child {
    border-bottom: none;
}@keyframes pulseElement {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}
.info-details-CAQcn .contact-help-o9bXr span:nth-child(odd)::after {
    animation: pulseElement 4s infinite ease-in-out;
}.info-details-CAQcn .contact-help-o9bXr span:nth-child(even)::after {
    animation: pulseElement 4s infinite ease-in-out 2s;
}
@media (max-width: 991px) {.info-details-CAQcn {
    padding: 5rem 0;
}.info-details-CAQcn .help-now-WDv3x h3 {
    padding: 1.75rem;
    font-size: calc(37px * 0.9);
}.info-details-CAQcn .help-now-WDv3x h3 svg {
    height: 1.5rem;
    width: 1.5rem;
}.info-details-CAQcn .msg-info-KdS1v {
    padding: 1.75rem 1.75rem 1rem;
    max-width: 90%;
    font-size: 12px;
}.info-details-CAQcn .contact-help-o9bXr {
    padding: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}.info-details-CAQcn .contact-help-o9bXr span svg {
    height: 1.4rem;
    width: 1.4rem;
}.info-details-CAQcn .connect-now-tOPDc h4 svg {
    height: 1.2rem;
    width: 1.2rem;
}.info-details-CAQcn .connect-now-tOPDc span svg {
    height: 0.9rem;
    width: 0.9rem;
}
}
@media (max-width: 767px) {.info-details-CAQcn {
    padding: 4rem 0;
}.info-details-CAQcn .help-now-WDv3x h3 {
    font-size: calc(37px * 0.85);
    padding: 1.5rem;
}.info-details-CAQcn .help-now-WDv3x h3 svg {
    height: 1.4rem;
    width: 1.4rem;
}.info-details-CAQcn .msg-info-KdS1v {
    padding: 1.5rem 1.5rem 0.875rem;
    max-width: 100%;
}.info-details-CAQcn .contact-help-o9bXr {
    grid-template-columns: 1fr;
    padding: 1.5rem;
}.info-details-CAQcn .contact-help-o9bXr span {
    padding: 1.25rem;
    padding-left: 3.25rem;
}.info-details-CAQcn .contact-help-o9bXr span svg {
    left: 1.1rem;
    width: 1.3rem;
    height: 1.3rem;
}.info-details-CAQcn .connect-now-tOPDc h4 svg {
    height: 1.1rem;
    width: 1.1rem;
}.info-details-CAQcn .connect-now-tOPDc span svg {
    height: 0.85rem;
    width: 0.85rem;
}
}
@media (max-width: 575px) {.info-details-CAQcn {
    padding: 3rem 0;
}.info-details-CAQcn .help-now-WDv3x h3 {
    padding: 1.25rem;
    font-size: calc(37px * 0.8);
}.info-details-CAQcn .help-now-WDv3x h3 svg {
    height: 1.3rem;
    width: 1.3rem;
}.info-details-CAQcn .msg-info-KdS1v {
    padding: 1.25rem 1.25rem 0.75rem;
    font-size: calc(12px * 0.95);
}.info-details-CAQcn .contact-help-o9bXr {
    padding: 1.25rem;
}.info-details-CAQcn .contact-help-o9bXr span {
    padding-left: 3rem;
    padding: 1.25rem;
}.info-details-CAQcn .contact-help-o9bXr span svg {
    left: 1rem;
    height: 1.2rem;
    width: 1.2rem;
}.info-details-CAQcn .connect-now-tOPDc h4 {
    font-size: calc(18px * 0.9);
    margin-bottom: 1.25rem;
}.info-details-CAQcn .connect-now-tOPDc h4 svg {
    height: 1rem;
    width: 1rem;
}.info-details-CAQcn .connect-now-tOPDc span svg {
    margin-right: 0.5rem;
    width: 0.8rem;
    height: 0.8rem;
}
}
@media (prefers-reduced-motion: reduce) {.info-details-CAQcn .help-now-WDv3x h3::before,
    .info-details-CAQcn .help-now-WDv3x h3 svg,
    .info-details-CAQcn .contact-help-o9bXr span:nth-child(odd)::after,
    .info-details-CAQcn .contact-help-o9bXr span:nth-child(even)::after,
    .info-details-CAQcn .contact-help-o9bXr span:hover svg path,
    .info-details-CAQcn .contact-help-o9bXr span:hover svg circle,
    .info-details-CAQcn .contact-help-o9bXr span:hover svg line,
    .info-details-CAQcn .contact-help-o9bXr span:hover svg polyline,
    .info-details-CAQcn .contact-help-o9bXr span:hover svg rect {
    animation: none;
}.info-details-CAQcn .connect-now-tOPDc h4:hover svg,
    .info-details-CAQcn .connect-now-tOPDc span:hover svg {
    transform: none;
}}.gratPanel-CkV5t {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(208,191,208,0.5), rgb(174,152,173) 120%);
    position: relative;
    padding: 7rem 0;
}.gratPanel-CkV5t::before {
    content: "";
    animation: float 8s ease-in-out infinite;
    opacity: 0.2;
    width: 300px;
    position: absolute;
    right: -5%;
    background: radial-gradient(circle, rgb(255, 255, 255, 0.5) 10%, transparent 70%);
    top: -10%;
    transform: rotate(-15deg);
    height: 300px;
}.gratPanel-CkV5t::after {
    transform: rotate(15deg);
    animation: float 9s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgb(174,152,173) 10%, transparent 70%);
    width: 250px;
    position: absolute;
    bottom: -5%;
    opacity: 0.15;
    height: 250px;
    content: "";
    left: -5%;
}.gratPanel-CkV5t .container {
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.gratPanel-CkV5t .expert-network-rDcKA {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateX(1deg);
    backdrop-filter: blur(10px);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    position: relative;
    padding: 3.5rem;
}.gratPanel-CkV5t .expert-network-rDcKA:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 15px 25px rgba(0, 0, 0, 0.06);
}.gratPanel-CkV5t .expert-network-rDcKA > div:first-child {
    margin-bottom: 2rem;
    position: relative;
}.gratPanel-CkV5t .expert-network-rDcKA > div:first-child::before {
    width: 0.5rem;
    left: -2rem;
    transform: translateY(-50%);
    top: 50%;
    background: linear-gradient(to bottom, rgb(208,191,208), rgb(174,152,173));
    height: 70%;
    position: absolute;
    content: "";
}.gratPanel-CkV5t h5 {
    transform: translateX(0);
    transition: transform 0.4s ease;
    font-weight: 700;
    padding-bottom: 0.5rem;
    color: #000000;
    margin: 0;
    position: relative;
    line-height: 1.4;
    font-size: 18px;
}.gratPanel-CkV5t .expert-network-rDcKA:hover h5 {
    transform: translateX(10px);
}.gratPanel-CkV5t h5::after {
    position: absolute;
    width: 80px;
    left: 0;
    background: linear-gradient(to right, rgb(208,191,208), transparent);
    transition: width 0.4s ease;
    content: "";
    height: 3px;
    bottom: 0;
}.gratPanel-CkV5t .expert-network-rDcKA:hover h5::after {
    width: 120px;
}.gratPanel-CkV5t .expert-network-rDcKA > div:last-child {
    overflow: hidden;
    position: relative;
}.gratPanel-CkV5t p {
    transition: color 0.3s ease;
    color: #000000;
    font-size: 12px;
    position: relative;
    line-height: 1.7;
    margin: 0;
}.gratPanel-CkV5t a {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 0.5rem 0;
    display: block;
    transform: translateY(0);
    text-decoration: none;
    position: relative;
}.gratPanel-CkV5t a::before {
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    content: "";
    position: absolute;
    height: 1px;
    background: rgb(208,191,208);
    left: 0;
    bottom: 0;
    width: 0;
}.gratPanel-CkV5t a:hover {
    transform: translateY(-3px);
}.gratPanel-CkV5t a:hover::before {
    width: 100%;
}.gratPanel-CkV5t a:hover p {
    color: rgb(208,191,208);
}.gratPanel-CkV5t a:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(208,191,208,0.5);
}

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

@media screen and (max-width: 992px) {.gratPanel-CkV5t {
    padding: 5rem 0;
}.gratPanel-CkV5t .expert-network-rDcKA {
    padding: 2.5rem;
}.gratPanel-CkV5t h5 {
    font-size: calc(18px * 0.95);
}
}

@media screen and (max-width: 768px) {.gratPanel-CkV5t {
    padding: 4rem 0;
}.gratPanel-CkV5t .expert-network-rDcKA {
    padding: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 97%, 97% 100%, 0 100%);
}.gratPanel-CkV5t .expert-network-rDcKA > div:first-child::before {
    left: -1.5rem;
    width: 0.3rem;
}.gratPanel-CkV5t h5 {
    font-size: calc(18px * 0.9);
}
}

@media screen and (max-width: 576px) {.gratPanel-CkV5t {
    padding: 3rem 0;
}.gratPanel-CkV5t .expert-network-rDcKA {
    clip-path: polygon(0 0, 100% 0, 100% 98%, 98% 100%, 0 100%);
    padding: 1.75rem;
}.gratPanel-CkV5t .expert-network-rDcKA > div:first-child {
    margin-bottom: 1.5rem;
}.gratPanel-CkV5t .expert-network-rDcKA > div:first-child::before {
    height: 60%;
    left: -1.2rem;
}.gratPanel-CkV5t h5 {
    font-size: calc(18px * 0.85);
}.gratPanel-CkV5t p {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}}header {
    padding: 1.2rem 0;
    z-index: 100;
    background: rgb(233,225,233);
    position: relative;
}header::before {
    left: 0;
    opacity: 0.5;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    content: '';
    background: linear-gradient(135deg, 
        rgb(208,191,208,0.5) 0%, 
        transparent 50%, 
        rgb(174,152,173,0.5) 100%);
}header .container {
    z-index: 1;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 0 1.5rem;
}header .head-core-yPVhH {
    border-radius: 23px;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1rem;
    flex-direction: column;
    padding: 1rem;
}header .page-nav-N0lAO {
    justify-content: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: flex;
    margin-bottom: 0.5rem;
    position: relative;
}header .page-nav-N0lAO::before {
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, 
        transparent, 
        rgb(208,191,208,0.5), 
        rgb(174,152,173,0.5), 
        rgb(208,191,208,0.5), 
        transparent);
    position: absolute;
    height: 1px;
}header .page-nav-N0lAO svg {
    width: 160px;
    transition: all 0.3s ease;
    height: auto;
}header .page-nav-N0lAO:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgb(208,191,208,0.5));
}header .page-head-rayOQ {
    background: rgb(233,225,233);
    border-radius: 10px;
    flex-wrap: wrap;
    padding: 0.6rem;
    gap: 0.4rem;
    display: flex;
    width: 100%;
    justify-content: center;
}header .nav-header-VlvfY {
    text-decoration: none;
    padding: 0.5rem 1rem;
    color: #000000;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 1;
    font-weight: 400;
}header .nav-header-VlvfY::before {
    top: 0;
    background: linear-gradient(135deg, rgb(208,191,208), rgb(174,152,173));
    height: 100%;
    opacity: 0;
    content: '';
    left: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    transition: opacity 0.3s ease;
}header .nav-header-VlvfY:hover {
    color: #ffffff;
}header .nav-header-VlvfY:hover::before {
    opacity: 1;
}header .nav-header-VlvfY::after {
    content: '';
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    bottom: 0;
    height: 2px;
    background: linear-gradient(to right, rgb(208,191,208), rgb(174,152,173));
    left: 0;
    width: 100%;
}header .nav-header-VlvfY:hover::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {header {
    padding: 1rem 0;
}header .head-core-yPVhH {
    gap: 0.8rem;
    padding: 0.8rem;
}header .page-nav-N0lAO svg {
    width: 140px;
}header .page-head-rayOQ {
    padding: 0.5rem;
}header .nav-header-VlvfY {
    padding: 0.4rem 0.8rem;
    font-size: calc(16px - 1px);
}
}

@media (max-width: 767px) {header {
    padding: 0.8rem 0;
}header .head-core-yPVhH {
    gap: 0.7rem;
    padding: 0.7rem;
}header .page-nav-N0lAO svg {
    width: 120px;
}header .page-head-rayOQ {
    padding: 0.4rem;
    gap: 0.3rem;
}header .nav-header-VlvfY {
    padding: 0.3rem 0.7rem;
    font-size: calc(16px - 2px);
}
}

@media (max-width: 480px) {header {
    padding: 0.7rem 0;
}header .head-core-yPVhH {
    padding: 0.6rem;
    gap: 0.6rem;
}header .page-nav-N0lAO svg {
    width: 110px;
}header .page-head-rayOQ {
    flex-wrap: nowrap;
    padding: 0.4rem;
    justify-content: flex-start;
    overflow-x: auto;
}header .page-head-rayOQ::-webkit-scrollbar {
    height: 2px;
}header .page-head-rayOQ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(208,191,208);
}header .nav-header-VlvfY {
    flex-shrink: 0;
    white-space: nowrap;
}}footer {
    position: relative;
}footer::before {
    opacity: 0.92;
    z-index: 1;
    top: 0;
    position: absolute;
    content: '';
    left: 0;
    background: linear-gradient(210deg, #000000 0%, rgb(208,191,208) 100%);
    bottom: 0;
    right: 0;
}.scholar-cta-Xw5o0 {
    position: relative;
    color: #ffffff;
    z-index: 2;
    padding: 90px 0 50px;
    font-family: Arial, sans-serif;
}.scholar-cta-Xw5o0::before {
    content: '';
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    opacity: 0.1;
    position: absolute;
}.scholar-cta-Xw5o0 .container {
    display: flex;
    flex-direction: column;
}.scholar-cta-Xw5o0 .company_holder {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    transform: perspective(1000px) rotateX(2deg);
    animation: shiftGradient 15s ease infinite;
    background-size: 200% 200%;
    margin-top: 70px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    order: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.scholar-cta-Xw5o0 .company_holder h3 {
    font-weight: 700;
    font-size: 38px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
}.scholar-cta-Xw5o0 .company_holder h3::after {
    margin: 15px auto 0;
    display: block;
    background: rgb(208,191,208);
    border-radius: 3px;
    width: 60px;
    height: 3px;
    content: '';
}.scholar-cta-Xw5o0 .conduct-code-qOyS1 {
    font-size: 15px;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    padding-top: 15px;
    text-align: center;
}.scholar-cta-Xw5o0 .code-labs-SUkOd {
    position: relative;
    order: 1;
}.scholar-cta-Xw5o0 .header-top-Z1XRP {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 60px;
    display: flex;
}.scholar-cta-Xw5o0 .page-head-rayOQ {
    transition: transform 0.3s ease;
    max-width: calc(50% - 30px);
    transform: translateZ(0);
    min-width: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    flex: 1;
}.scholar-cta-Xw5o0 .page-head-rayOQ:nth-child(odd) {
    transform: perspective(1000px) rotateY(2deg);
}.scholar-cta-Xw5o0 .page-head-rayOQ:nth-child(even) {
    transform: perspective(1000px) rotateY(-2deg);
}.scholar-cta-Xw5o0 .page-head-rayOQ:hover {
    transform: perspective(1000px) rotateY(0);
}.scholar-cta-Xw5o0 .page-head-rayOQ::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 10px;
    content: '';
}.scholar-cta-Xw5o0 .page-head-rayOQ h5 {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    word-wrap: break-word;
    position: relative;
    font-weight: 600;
}.scholar-cta-Xw5o0 .page-head-rayOQ h5::before {
    height: 1px;
    position: absolute;
    width: 50px;
    background: rgb(174,152,173);
    bottom: -1px;
    content: '';
    left: 0;
}.scholar-cta-Xw5o0 .page-head-rayOQ .header-top-Z1XRP {
    gap: 12px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 10px;
}.scholar-cta-Xw5o0 .page-head-rayOQ .header-top-Z1XRP a {
    font-size: 15px;
    text-decoration: none;
    word-break: break-word;
    transition: all 0.3s ease;
    opacity: 0.8;
    display: flex;
    align-items: center;
    white-space: normal;
    color: #ffffff;
}.scholar-cta-Xw5o0 .page-head-rayOQ .header-top-Z1XRP a::before {
    transition: all 0.3s ease;
    opacity: 0;
    height: 6px;
    border-radius: 50%;
    transform: scale(0);
    content: '';
    margin-right: 10px;
    background: rgb(174,152,173);
    min-width: 6px;
    flex-shrink: 0;
}.scholar-cta-Xw5o0 .page-head-rayOQ .header-top-Z1XRP a:hover {
    transform: translateX(5px);
    opacity: 1;
    color: #ffffff;
}.scholar-cta-Xw5o0 .page-head-rayOQ .header-top-Z1XRP a:hover::before {
    transform: scale(1);
    opacity: 1;
}.grant-cta-K4EJW {
    padding: 25px 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    position: relative;
}.grant-cta-K4EJW::before {
    position: absolute;
    content: '';
    height: 1px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(174,152,173,0.5), transparent);
    top: 0;
}.grant-cta-K4EJW .container {
    text-align: center;
}.grant-cta-K4EJW .cert-block-lZsMm {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.7;
}@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.scholar-cta-Xw5o0 .code-labs-SUkOd::before {
    background: rgb(174,152,173);
    left: -5%;
    width: 250px;
    bottom: -10%;
    animation: pulse 10s infinite ease-in-out reverse;
    position: absolute;
    content: '';
    z-index: -1;
    opacity: 0.1;
    filter: blur(100px);
    height: 250px;
    border-radius: 50%;
}footer::after {
    z-index: 1;
    bottom: 0;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    pointer-events: none;
    right: 0;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
}

@media (max-width: 992px) {.scholar-cta-Xw5o0 {
    padding: 70px 0 40px;
}.scholar-cta-Xw5o0 .header-top-Z1XRP {
    gap: 40px;
}.scholar-cta-Xw5o0 .company_holder {
    margin-top: 50px;
}
}

@media (max-width: 768px) {.scholar-cta-Xw5o0 {
    padding: 50px 0 30px;
}.scholar-cta-Xw5o0 .header-top-Z1XRP {
    gap: 30px;
    flex-direction: column;
}.scholar-cta-Xw5o0 .page-head-rayOQ {
    min-width: 100%;
    max-width: 100%;
}.scholar-cta-Xw5o0 .company_holder {
    padding: 20px;
}.scholar-cta-Xw5o0 .conduct-code-qOyS1 {
    max-width: 100%;
}
}

@media (max-width: 576px) {.scholar-cta-Xw5o0 {
    padding: 40px 0 20px;
}.scholar-cta-Xw5o0 .company_holder h3 {
    font-size: calc(38px * 0.8);
}.scholar-cta-Xw5o0 .page-head-rayOQ h5 {
    font-size: calc(18px * 0.9);
}}.contact-section-PnEhZ {
    background: rgb(233,225,233);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.contact-section-PnEhZ::before {
    height: 100%;
    content: "";
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgb(208,191,208,0.5) 0,
        rgb(208,191,208,0.5) 1px,
        transparent 1px,
        transparent 30px
    );
    z-index: 1;
    left: 0;
    opacity: 0.07;
    top: 0;
    width: 100%;
}.contact-section-PnEhZ::after {
    height: 100%;
    background-image: 
        linear-gradient(rgb(174,152,173,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgb(174,152,173,0.5) 1px, transparent 1px);
    z-index: 1;
    position: absolute;
    opacity: 0.07;
    content: "";
    top: 0;
    width: 100%;
    background-size: 30px 30px;
    left: 0;
}.contact-section-PnEhZ .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}.contact-section-PnEhZ h2 {
    font-weight: 700;
    transform: translateX(-50%);
    display: inline-block;
    left: 50%;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 34px;
    color: #000000;
}.contact-section-PnEhZ h2::before {
    bottom: 0;
    content: "";
    background: rgb(208,191,208);
    position: absolute;
    height: 4px;
    width: 80px;
    left: calc(50% - 40px);
}.contact-section-PnEhZ h2::after {
    left: calc(50% - 15px);
    position: absolute;
    width: 30px;
    background: rgb(174,152,173);
    bottom: 0;
    height: 4px;
    content: "";
}.contact-section-PnEhZ .inquiry-request-bUWjC {
    display: flex;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    border-radius: 0;
    background: #ffffff;
}.contact-section-PnEhZ .pic-img-wrap-G0vnD {
    min-height: 550px;
    position: relative;
    flex: 0 0 45%;
}.contact-section-PnEhZ .pic-img-wrap-G0vnD::before {
    inset: 0;
    z-index: 1;
    position: absolute;
    content: "";
    background: linear-gradient(
        135deg, 
        rgba(rgb(208,191,208), 0.4), 
        rgba(rgb(174,152,173), 0.4)
    );
}.contact-section-PnEhZ .support-links-rYjkM {
    padding: 60px;
    flex: 0 0 55%;
    position: relative;
    flex-direction: column;
    justify-content: center;
    display: flex;
}.contact-section-PnEhZ .support-links-rYjkM::before {
    z-index: 0;
    right: -75px;
    content: "";
    top: -75px;
    border-radius: 50%;
    width: 150px;
    border: 30px solid rgb(208,191,208,0.5);
    height: 150px;
    position: absolute;
}.contact-section-PnEhZ .support-links-rYjkM::after {
    width: 100px;
    bottom: -50px;
    position: absolute;
    background: rgb(174,152,173,0.5);
    z-index: 0;
    content: "";
    height: 100px;
    border-radius: 0;
    transform: rotate(45deg);
    left: -50px;
}.contact-section-PnEhZ form {
    position: relative;
    z-index: 2;
}.contact-section-PnEhZ form h3 {
    color: #000000;
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    margin-bottom: 40px;
}.contact-section-PnEhZ form h3::after {
    content: "";
    height: 2px;
    width: 50%;
    bottom: -15px;
    position: absolute;
    background: rgb(208,191,208);
    left: 0;
}.contact-section-PnEhZ form input[type="text"] {
    margin-bottom: 25px;
    background: transparent;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgb(233,225,233);
    padding: 20px 25px;
    font-size: 16px;
    color: #000000;
}.contact-section-PnEhZ form input[type="text"]:focus {
    outline: none;
    border-bottom-color: rgb(208,191,208);
}.contact-section-PnEhZ form input[type="text"]::placeholder {
    color: rgba(#000000, 0.5);
    transition: all 0.3s ease;
}.contact-section-PnEhZ form input[type="text"]:focus::placeholder {
    opacity: 0;
    transform: translateY(-10px);
}.contact-section-PnEhZ .help-grid-1tMIm {
    position: relative;
    margin-bottom: 40px;
}.contact-section-PnEhZ .help-grid-1tMIm input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact-section-PnEhZ .help-grid-1tMIm label {
    color: #000000;
    cursor: pointer;
    font-size: 16px;
    padding-left: 35px;
    line-height: 1.5;
    position: relative;
}.contact-section-PnEhZ .help-grid-1tMIm label::before {
    width: 22px;
    transition: all 0.3s ease;
    top: 0;
    height: 22px;
    left: 0;
    background: transparent;
    position: absolute;
    content: "";
    border: 2px solid rgb(233,225,233);
}.contact-section-PnEhZ .help-grid-1tMIm input[type="checkbox"]:checked + label::before {
    background: rgb(208,191,208);
    border-color: rgb(208,191,208);
}.contact-section-PnEhZ .help-grid-1tMIm input[type="checkbox"]:checked + label::after {
    content: "";
    height: 12px;
    border-width: 0 2px 2px 0;
    width: 6px;
    transform: rotate(45deg);
    border: solid #ffffff;
    left: 8px;
    top: 4px;
    position: absolute;
}.contact-section-PnEhZ .help-grid-1tMIm label a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgb(208,191,208);
}.contact-section-PnEhZ .help-grid-1tMIm label a::after {
    position: absolute;
    transform-origin: left;
    transform: scaleX(1);
    background: rgb(208,191,208);
    bottom: -1px;
    transition: transform 0.3s ease;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
}.contact-section-PnEhZ .help-grid-1tMIm label a:hover {
    color: rgb(174,152,173);
}.contact-section-PnEhZ .help-grid-1tMIm label a:hover::after {
    background: rgb(174,152,173);
    transform: scaleX(0);
}.contact-section-PnEhZ .connect-links-iTswR {
    font-weight: 600;
    cursor: pointer;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 70%,
        90% 100%,
        0 100%
    );
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-size: 19px;
    display: inline-block;
    width: auto;
    padding: 18px 40px;
    border: none;
    background: rgb(208,191,208);
    z-index: 1;
    transition: all 0.3s ease;
}.contact-section-PnEhZ .connect-links-iTswR::before {
    width: 0;
    z-index: -1;
    left: -10px;
    top: 0;
    height: 100%;
    transform: skewX(-25deg);
    transition: width 0.5s ease;
    background: rgb(174,152,173);
    position: absolute;
    content: "";
}.contact-section-PnEhZ .connect-links-iTswR:hover::before {
    width: 150%;
}.contact-section-PnEhZ svg {
    height: 24px;
    fill: none;
    transition: all 0.3s ease;
    width: 24px;
    stroke-width: 2;
    stroke: rgb(208,191,208);
}.contact-section-PnEhZ svg path {
    stroke: rgb(208,191,208);
    transition: all 0.3s ease;
    fill: none;
}.contact-section-PnEhZ svg:hover,
.contact-section-PnEhZ svg:hover path {
    stroke: rgb(174,152,173);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1024px) {.contact-section-PnEhZ {
    padding: 80px 0;
}.contact-section-PnEhZ .pic-img-wrap-G0vnD {
    min-height: 500px;
}.contact-section-PnEhZ .support-links-rYjkM {
    padding: 50px 40px;
}
}

@media (max-width: 768px) {.contact-section-PnEhZ {
    padding: 60px 0;
}.contact-section-PnEhZ .inquiry-request-bUWjC {
    flex-direction: column;
}.contact-section-PnEhZ .pic-img-wrap-G0vnD {
    width: 100%;
    min-height: 300px;
}.contact-section-PnEhZ .support-links-rYjkM {
    padding: 40px 30px;
    width: 100%;
}.contact-section-PnEhZ form h3 {
    margin-bottom: 30px;
}.contact-section-PnEhZ form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}.contact-section-PnEhZ .help-grid-1tMIm {
    margin-bottom: 30px;
}.contact-section-PnEhZ .connect-links-iTswR {
    width: 100%;
    padding: 15px 30px;
}
}

@media (max-width: 480px) {.contact-section-PnEhZ {
    padding: 50px 0;
}.contact-section-PnEhZ h2 {
    font-size: calc(34px * 0.85);
}.contact-section-PnEhZ .inquiry-request-bUWjC {
    margin-top: 30px;
}.contact-section-PnEhZ .pic-img-wrap-G0vnD {
    min-height: 200px;
}.contact-section-PnEhZ .support-links-rYjkM {
    padding: 30px 20px;
}.contact-section-PnEhZ form h3 {
    font-size: calc(20px * 0.9);
    margin-bottom: 25px;
}.contact-section-PnEhZ form input[type="text"] {
    padding: 12px 15px;
    margin-bottom: 15px;
}.contact-section-PnEhZ .help-grid-1tMIm {
    margin-bottom: 25px;
}.contact-section-PnEhZ .help-grid-1tMIm label {
    font-size: calc(16px * 0.9);
}.contact-section-PnEhZ .connect-links-iTswR {
    padding: 12px 25px;
}}.modalDataProtection-ulZSr {
    z-index: 90;
    border-top: 2px solid rgb(208,191,208);
    position: fixed;
    background: rgb(233,225,233);
    width: 100%;
    bottom: 0;
}.track-edu-zDwQ4 {
    justify-content: space-between;
    padding: 20px 0;
    display: flex;
    align-items: center;
}#popupPrivacyTerms-ofPeH {
    display: none;
}#popupPrivacyTerms-ofPeH:checked ~ .modalDataProtection-ulZSr {
    opacity: 0;
    visibility: hidden;
}.modalDataProtection-ulZSr h5 {
    font-size: 22px;
    margin-bottom: 6px;
}.modalDataProtection-ulZSr p {
    font-size: 18px;
}.edu-settings-kY7d2 {
    margin-right: 10px;
    flex-shrink: 0;
}.edu-settings-kY7d2 svg, .edu-settings-kY7d2 svg path, .edu-settings-kY7d2 img {
    fill: rgb(208,191,208);
    height: 100px;
    width: 100px;
}.data-settings-xkSv0 {
    white-space: nowrap;
    font-size: 24px;
    text-decoration: none;
    margin-left: 10px;
    border-bottom: 2px solid rgb(208,191,208);
    min-width: 120px;
    line-height: 35px;
    color: rgb(208,191,208);
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
}.modalDataProtection-ulZSr p a {
    text-decoration: none;
    color: rgb(208,191,208);
}
@media only screen and (max-width: 1200px) {.modalDataProtection-ulZSr {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.edu-settings-kY7d2 {
    display: none;
}.track-edu-zDwQ4 {
    align-items: center;
    flex-direction: column;
    justify-content: center;
}.modalDataProtection-ulZSr h5 {
    text-align: center;
}.modalDataProtection-ulZSr p {
    text-align: center;
}.cookie-window-nBojy {
    margin-bottom: 20px;
}body .content-wrapper-OmQRg .data-settings-xkSv0 {
    margin-bottom: 10px;
    margin-left: 0;
}}
.content-wrapper-OmQRg .modalDataProtection-ulZSr {
    border: none;
    background: #ffffff;
    box-shadow: rgb(208,191,208,0.5) 0px 0px 40px 39px;
}.content-wrapper-OmQRg .data-settings-xkSv0 {
    margin-left: 30px;
    font-weight: 400;
    color: #ffffff;
    border: none;
    background: rgb(208,191,208);
    padding: 10px;
    font-size: 20px;
}.content-wrapper-OmQRg .edu-settings-kY7d2 {
    justify-content: center;
    background:rgb(208,191,208);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
}.content-wrapper-OmQRg .edu-settings-kY7d2 svg, .content-wrapper-OmQRg .edu-settings-kY7d2 svg path, .content-wrapper-OmQRg .edu-settings-kY7d2 img {
    height: 40px;
    width: 40px;
    fill:#000000;
}.content-wrapper-OmQRg .cookie-window-nBojy h5, .content-wrapper-OmQRg .cookie-window-nBojy p {
    color: #000000;
}
@media only screen and (max-width: 800px){.content-wrapper-OmQRg .edu-settings-kY7d2 {
    margin-bottom: 14px;
    margin: 0;
}}.secure-preserve-mI9iP {
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding: 40px;
    background: rgb(233,225,233);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #000000;
}.secure-preserve-mI9iP h1 {
    font-weight: 700;
    border-bottom: 2px solid rgb(208,191,208,0.5);
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
    -webkit-background-clip: text !important;
    color: rgb(208,191,208);
    margin-bottom: 20px;
    background: linear-gradient(to right, rgb(208,191,208), rgb(208,191,208,0.5));
    font-size: 38px;
}.secure-preserve-mI9iP h2 {
    background: linear-gradient(to right, rgb(174,152,173), rgb(174,152,173,0.5));
    margin-top: 30px;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    color: rgb(174,152,173);
    font-weight: 600;
    margin-bottom: 15px;
}.secure-preserve-mI9iP h3,
.secure-preserve-mI9iP h4,
.secure-preserve-mI9iP h5,
.secure-preserve-mI9iP h6 {
    margin-top: 20px;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, rgb(174,152,173), rgb(174,152,173,0.5));
    color: rgb(174,152,173,0.5);
    font-weight: 400;
}.secure-preserve-mI9iP ul {
    margin: 20px 0;
    list-style: none;
    padding: 0;
}.secure-preserve-mI9iP ul li {
    background: linear-gradient(to right, #ffffff, rgb(208,191,208,0.5));
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid rgb(208,191,208);
}.secure-preserve-mI9iP ol {
    counter-reset: li;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}.secure-preserve-mI9iP ol li {
    border-radius: 10px;
    background: linear-gradient(to right, #ffffff, rgb(174,152,173,0.5));
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 15px 10px 40px;
    margin-bottom: 10px;
}.secure-preserve-mI9iP ol li:before {
    color: #ffffff;
    left: 10px;
    content: counter(li);
    background-color: rgb(208,191,208);
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    height: 25px;
    width: 25px;
    counter-increment: li;
    position: absolute;
    align-items: center;
    border-radius: 50%;
    display: flex;
}.secure-preserve-mI9iP p {
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 300;
}.secure-preserve-mI9iP span {
    color: rgb(208,191,208);
    font-weight: 600;
}.secure-preserve-mI9iP div {
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {.secure-preserve-mI9iP {
    padding: 20px;
}.secure-preserve-mI9iP h1 {
    font-size: calc(18px * 0.8);
}.secure-preserve-mI9iP h2 {
    font-size: calc(18px * 0.8);
}.secure-preserve-mI9iP ul li,
    .secure-preserve-mI9iP ol li {
    padding: 10px;
}.secure-preserve-mI9iP ol li:before {
    height: 20px;
    width: 20px;
    font-size: 0.8em;
}.secure-preserve-mI9iP p {
    font-size: calc(13px * 0.9);
}}
.customer-opinions-VC4iY {
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(120deg, rgb(233,225,233), #ffffff);
    position: relative;
}.customer-opinions-VC4iY::before {
    left: 0;
    z-index: 0;
    opacity: 0.6;
    background: 
        radial-gradient(ellipse at top left, rgb(208,191,208,0.5) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgb(174,152,173,0.5) 0%, transparent 50%);
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
}.customer-opinions-VC4iY::after {
    position: absolute;
    height: 100%;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
    background-size: 100px 100px;
    left: 0;
    width: 100%;
    opacity: 0.03;
    background: 
        linear-gradient(45deg, rgb(208,191,208,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(208,191,208,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(208,191,208,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(208,191,208,0.5) 75%);
    content: "";
    top: 0;
    z-index: 0;
}.customer-opinions-VC4iY .expert-network-rDcKA {
    z-index: 1;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
}.customer-opinions-VC4iY h4 {
    font-weight: 700;
    position: relative;
    text-align: center;
    color: #000000;
    margin-bottom: 80px;
    font-size: 36px;
    letter-spacing: 1px;
}.customer-opinions-VC4iY h4::before {
    width: 100px;
    bottom: -15px;
    position: absolute;
    background: rgb(208,191,208);
    content: "";
    left: 50%;
    height: 2px;
    transform: translateX(-50%);
}.customer-opinions-VC4iY h4::after {
    height: 12px;
    border-radius: 50%;
    position: absolute;
    width: 12px;
    content: "";
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(208,191,208);
}.customer-opinions-VC4iY .user-reviews-9L6qw {
    position: relative;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    display: flex;
}.customer-opinions-VC4iY .client-experiences-LsGdI {
    -webkit-backdrop-filter: blur(10px);
    width: calc(33.33% - 40px);
    overflow: hidden;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 1;
    border-radius: 12px;
    margin: 0 20px 40px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover {
    height: 280px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 2;
}.customer-opinions-VC4iY .client-experiences-LsGdI::before {
    border-radius: inherit;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.4) 0%, 
            rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    width: 100%;
    top: 0;
}.customer-opinions-VC4iY .client-experiences-LsGdI::after {
    width: 30px;
    top: 15px;
    z-index: 0;
    border: 2px solid rgb(208,191,208,0.5);
    height: 30px;
    transition: all 0.4s ease;
    opacity: 0.3;
    position: absolute;
    border-radius: 50%;
    right: 15px;
    content: "";
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover::after {
    transform: scale(0.8);
    opacity: 0.6;
}.customer-opinions-VC4iY .pic-img-wrap-G0vnD {
    width: 70px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    float: left;
    border-radius: 50%;
    transition: all 0.4s ease;
    height: 70px;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 25px 20px;
    z-index: 1;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover .pic-img-wrap-G0vnD {
    transform: scale(1.1);
    margin-bottom: 10px;
    border-color: rgb(208,191,208,0.5);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}.customer-opinions-VC4iY .client-experiences-LsGdI span {
    transition: all 0.4s ease;
    margin-top: 40px;
    color: #000000;
    text-overflow: ellipsis;
    font-weight: 600;
    overflow: hidden;
    padding-right: 60px;
    white-space: nowrap;
    font-size: calc(18px * 1.1);
    display: block;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover span {
    margin-top: 15px;
    white-space: normal;
    margin-left: 20px;
    color: rgb(208,191,208);
}.customer-opinions-VC4iY .client-experiences-LsGdI p {
    line-height: 1.6;
    font-size: 18px;
    opacity: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    color: #000000;
    transition: all 0.5s ease;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    max-height: 0;
    margin: 0 20px;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover p {
    max-height: 150px;
    margin-top: 15px;
    opacity: 1;
}.customer-opinions-VC4iY .client-experiences-LsGdI:nth-child(3n+1) {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
}.customer-opinions-VC4iY .client-experiences-LsGdI:nth-child(3n+2) {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(rgb(208,191,208,0.5), 0.05) 100%
    );
}.customer-opinions-VC4iY .client-experiences-LsGdI:nth-child(3n+3) {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(rgb(174,152,173,0.5), 0.05) 100%
    );
}

@media (max-width: 1200px) {.customer-opinions-VC4iY .client-experiences-LsGdI {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
}
}

@media (max-width: 992px) {.customer-opinions-VC4iY .client-experiences-LsGdI {
    height: 100px;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover {
    height: 250px;
}.customer-opinions-VC4iY .pic-img-wrap-G0vnD {
    width: 60px;
    margin: 20px 15px;
    height: 60px;
}.customer-opinions-VC4iY .client-experiences-LsGdI span {
    margin-top: 32px;
    font-size: 18px;
}
}

@media (max-width: 768px) {.customer-opinions-VC4iY {
    padding: 70px 0;
}.customer-opinions-VC4iY h4 {
    margin-bottom: 60px;
}.customer-opinions-VC4iY .client-experiences-LsGdI {
    max-width: 400px;
    margin: 0 auto 25px;
    width: 100%;
    height: auto;
    min-height: 100px;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover {
    min-height: 250px;
    height: auto;
}.customer-opinions-VC4iY .client-experiences-LsGdI:last-child {
    margin-bottom: 0;
}.customer-opinions-VC4iY .client-experiences-LsGdI::after {
    right: 10px;
    top: 10px;
}.customer-opinions-VC4iY .pic-img-wrap-G0vnD {
    margin: 15px;
}.customer-opinions-VC4iY .client-experiences-LsGdI span {
    margin-top: 28px;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover span {
    margin-top: 10px;
}.customer-opinions-VC4iY .client-experiences-LsGdI:hover p {
    margin-top: 10px;
}}.educational-yield-enkJI {
    padding: 8rem 0;
    background: rgb(233,225,233);
    position: relative;
    overflow: hidden;
}.educational-yield-enkJI::before {
    right: -10%;
    height: 140%;
    position: absolute;
    background: rgb(208,191,208,0.5);
    z-index: 1;
    width: 60%;
    top: -20%;
    transform: rotate(-20deg);
    content: '';
}.educational-yield-enkJI::after {
    bottom: -20%;
    height: 140%;
    left: -10%;
    z-index: 1;
    width: 60%;
    background: rgb(174,152,173,0.5);
    opacity: 0.4;
    transform: rotate(-20deg);
    position: absolute;
    content: '';
}.educational-yield-enkJI .expert-network-rDcKA {
    padding: 0 2rem;
    margin: 0 auto;
    grid-gap: 2rem;
    position: relative;
    display: grid;
    z-index: 2;
    grid-template-columns: repeat(12, 1fr);
    max-width: 1200px;
}.educational-yield-enkJI .pic-img-wrap-G0vnD {
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 21px;
    transform: translateY(30px);
    animation: float 6s ease-in-out infinite;
    grid-row: 1;
    position: relative;
    height: 500px;
    grid-column: 1 / span 7;
}.educational-yield-enkJI .pic-img-wrap-G0vnD::after {
    top: 0;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgb(208,191,208,0.5) 0%,
        transparent 40%,
        transparent 60%,
        rgb(174,152,173,0.5) 100%
    );
    position: absolute;
    left: 0;
    width: 100%;
    content: '';
}.educational-yield-enkJI .textual-box-JbIEZ {
    border-radius: 21px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    align-self: center;
    z-index: 3;
    grid-column: 6 / span 7;
    padding: 3rem;
    grid-row: 1;
}.educational-yield-enkJI h2 {
    position: relative;
    padding-left: 1.5rem;
    color: #000000;
    margin-bottom: 2.5rem;
    border-left: 5px solid rgb(208,191,208);
    font-size: 32px;
    font-weight: 700;
}.educational-yield-enkJI .text_main_holder {
    gap: 2rem;
    display: grid;
}.educational-yield-enkJI .text_main_holder > div {
    position: relative;
    display: flex;
    transition: all 0.3s ease;
    align-items: flex-start;
}.educational-yield-enkJI .text_main_holder > div::before {
    width: 2rem;
    transition: transform 0.3s ease;
    transform-origin: right;
    background: rgb(208,191,208);
    top: 1.2rem;
    position: absolute;
    transform: scaleX(0);
    content: '';
    height: 1px;
    left: -3rem;
}.educational-yield-enkJI .text_main_holder > div:hover::before {
    transform: scaleX(1);
}.educational-yield-enkJI .text_main_holder > div:hover {
    transform: translateX(5px);
}.educational-yield-enkJI .text_main_holder svg {
    transition: all 0.3s ease;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 21px;
    background: rgb(208,191,208,0.5);
    margin-right: 1.5rem;
    padding: 0.6rem;
    flex-shrink: 0;
}.educational-yield-enkJI .text_main_holder > div:hover svg {
    transform: scale(1.1);
    background: rgb(208,191,208);
}.educational-yield-enkJI .text_main_holder svg path {
    transition: fill 0.3s ease;
    fill: #000000;
}.educational-yield-enkJI .text_main_holder > div:hover svg path {
    fill: #ffffff;
}.educational-yield-enkJI .text_main_holder p {
    color: #000000;
    font-size: 17px;
    padding-top: 0.3rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes float {
    0% {
        transform: translateY(30px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(30px);
    }
}

@media (max-width: 1100px) {.educational-yield-enkJI .pic-img-wrap-G0vnD {
    grid-column: 1 / span 5;
}.educational-yield-enkJI .textual-box-JbIEZ {
    grid-column: 4 / span 9;
}
}

@media (max-width: 992px) {.educational-yield-enkJI .expert-network-rDcKA {
    grid-template-columns: 1fr;
    grid-gap: 0;
}.educational-yield-enkJI .pic-img-wrap-G0vnD {
    grid-column: 1;
    height: 400px;
    grid-row: 1;
    margin-bottom: -50px;
}.educational-yield-enkJI .textual-box-JbIEZ {
    margin: 0 2rem;
    grid-column: 1;
    width: auto;
    grid-row: 2;
}
}

@media (max-width: 768px) {.educational-yield-enkJI {
    padding: 6rem 0;
}.educational-yield-enkJI .pic-img-wrap-G0vnD {
    height: 350px;
    transform: translateY(0);
    animation: none;
    margin-bottom: -30px;
}.educational-yield-enkJI .textual-box-JbIEZ {
    padding: 2rem;
}.educational-yield-enkJI h2 {
    font-size: calc(32px * 0.9);
    margin-bottom: 2rem;
}
}

@media (max-width: 576px) {.educational-yield-enkJI {
    padding: 5rem 0;
}.educational-yield-enkJI .expert-network-rDcKA {
    padding: 0 1rem;
}.educational-yield-enkJI .pic-img-wrap-G0vnD {
    margin-bottom: -20px;
    height: 250px;
}.educational-yield-enkJI .textual-box-JbIEZ {
    margin: 0 1rem;
    padding: 1.5rem;
}.educational-yield-enkJI .text_main_holder > div {
    align-items: center;
}.educational-yield-enkJI .text_main_holder > div::before {
    display: none;
}.educational-yield-enkJI .text_main_holder svg {
    height: 2rem;
    margin-right: 1rem;
    width: 2rem;
}.educational-yield-enkJI .text_main_holder p {
    font-size: calc(17px * 0.9);
}
}