﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}.forum_link {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}.main_head {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
    color: #000000;
}.container {
    max-width: 100%;
    width: 1208px;
    margin: auto;
}header,footer {
    width: 100%;
}.wrapper-padding {
    flex-direction: column;
    min-height: 100%;
    display: flex;
    height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_instructor {
    position: relative;
    background: linear-gradient(125deg, #000000 0%, rgb(213,226,223) 100%);
    overflow: hidden;
    padding: 120px 0;
}.course_instructor::before {
    top: 0;
    content: "";
    position: absolute;
    background: 
    radial-gradient(circle at 20% 30%, rgb(163,200,193,0.5) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgb(100,180,167,0.5) 0%, transparent 30%);
    left: 0;
    height: 100%;
    animation: pulse 20s infinite alternate;
    width: 100%;
}.course_instructor .container {
    perspective: 1200px;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.course_instructor .review_praise {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 10px 30px;
    grid-template-columns: 1.2fr 0.8fr;
    display: grid;
    grid-template-areas:
    "quote photo"
    "quote name"
    "quote job";
    position: relative;
    grid-template-rows: auto auto auto;
    transform: rotateY(-10deg);
}.course_instructor .review_praise:hover {
    transform: rotateY(0deg) translateZ(10px);
}.course_instructor .career_progress {
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgb(163,200,193,0.5);
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    line-height: 1.7;
    z-index: 1;
    grid-area: quote;
    position: relative;
    transform: translateZ(20px);
    border-radius: 21px;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    margin: 0;
    font-weight: 300;
}.course_instructor .career_progress::before {
    color: rgb(163,200,193);
    font-size: calc(43px * 2);
    content: "";
    top: 15px;
    position: absolute;
    line-height: 1;
    left: 20px;
}.course_instructor .pic_hover {
    grid-area: photo;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: translateZ(40px);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
    box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.5),
    -5px -5px 30px rgb(163,200,193,0.5);
    border-radius: 10px;
    height: 280px;
}.course_instructor .review_praise:hover .pic_hover {
    transform: translateZ(60px) translateX(-10px);
    box-shadow: 
    15px 15px 25px rgba(0, 0, 0, 0.5),
    -8px -8px 35px rgb(163,200,193,0.5);
}.course_instructor .name {
    transform: translateZ(30px);
    margin: 0;
    padding: 15px 20px;
    transition: transform 0.3s ease;
    font-weight: 700;
    border-radius: 10px;
    font-size: 24px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    background: rgb(163,200,193);
    z-index: 2;
    grid-area: name;
    color: #ffffff;
}.course_instructor .review_praise:hover .name {
    transform: translateZ(45px) translateY(-5px);
}.course_instructor .review_praise > span:not(.name) {
    background: #ffffff;
    grid-area: job;
    transform: translateZ(25px);
    padding: 10px 15px;
    transition: transform 0.3s ease;
    font-weight: 600;
    color: rgb(100,180,167);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    font-size: 14px;
    z-index: 2;
}.course_instructor .review_praise:hover > span:not(.name) {
    transform: translateZ(35px) translateY(-5px);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

@media (max-width: 992px) {.course_instructor {
    padding: 80px 0;
}.course_instructor .review_praise {
    grid-template-areas:
      "pic_hover"
      "name"
      "career_record"
      "career_progress";
    grid-template-rows: auto auto auto auto;
    transform: none;
    grid-template-columns: 1fr;
    gap: 15px;
}.course_instructor .career_progress,
  .course_instructor .pic_hover,
  .course_instructor .name,
  .course_instructor .review_praise > span:not(.name) {
    transform: none;
}.course_instructor .review_praise:hover .career_progress,
  .course_instructor .review_praise:hover .pic_hover,
  .course_instructor .review_praise:hover .name,
  .course_instructor .review_praise:hover > span:not(.name) {
    transform: none;
}.course_instructor .pic_hover {
    width: 90%;
    height: 240px;
    margin: 0 auto;
}.course_instructor .career_progress {
    padding: 30px;
}.course_instructor .name,
  .course_instructor .review_praise > span:not(.name) {
    text-align: center;
    margin: 0 auto;
    width: 90%;
}
}

@media (max-width: 576px) {.course_instructor {
    padding: 60px 0;
}.course_instructor .pic_hover {
    width: 100%;
    height: 200px;
}.course_instructor .career_progress {
    padding: 25px 20px;
    font-size: calc(14px * 0.95);
}.course_instructor .name {
    font-size: calc(24px * 0.9);
}.course_instructor .review_praise > span:not(.name) {
    font-size: calc(14px * 0.9);
}}.course_rewards {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 70%, rgb(213,226,223), #ffffff);
    font-family: Arial, sans-serif;
}.course_rewards::before {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.05;
    content: "";
    background-image: repeating-linear-gradient(
    45deg,
    #ffffff,
    #ffffff 10px,
    transparent 10px,
    transparent 20px
  );
}.course_rewards::after {
    right: -150px;
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
    top: -150px;
    width: 400px;
    height: 400px;
    content: "";
    background: rgb(163,200,193,0.5);
    opacity: 0.3;
    filter: blur(80px);
    position: absolute;
}@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

.course_rewards .container {
    position: relative;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}.course_rewards .skills_center {
    flex-direction: row-reverse;
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
}.course_rewards .pic_hover {
    transform-origin: right center;
    z-index: 1;
    flex: 0 0 45%;
    border-radius: 0;
    object-fit: cover;
    max-height: 400px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s ease;
}.course_rewards .pic_hover:hover {
    transform: scale(1.03);
}.course_rewards .paragraph_box {
    position: relative;
    flex: 1;
    padding: 35px;
}.course_rewards h3 {
    color: rgb(163,200,193);
    position: relative;
    font-size: 29px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 700;
}.course_rewards h3::before {
    position: absolute;
    left: 0;
    background: rgb(100,180,167);
    height: 2px;
    content: "";
    width: 30px;
    top: -10px;
}.course_rewards h3::after {
    height: 2px;
    background: rgb(163,200,193);
    left: 20px;
    position: absolute;
    bottom: -10px;
    width: 60px;
    content: "";
}.course_rewards ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.course_rewards li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}.course_rewards li::before {
    width: 3px;
    content: "";
    left: -3px;
    background: linear-gradient(to bottom, rgb(163,200,193), rgb(100,180,167));
    height: 0;
    top: 0;
    position: absolute;
    transition: height 0.3s ease;
}.course_rewards li:hover {
    transform: translateX(5px);
    border-left-color: rgb(100,180,167,0.5);
}.course_rewards li:hover::before {
    height: 100%;
}.course_rewards li p {
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #000000;
    padding: 10px 0;
    margin: 0;
    display: flex;
}.course_rewards svg {
    flex-shrink: 0;
    padding: 8px;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom right, rgb(163,200,193,0.5), rgb(100,180,167,0.5));
    border-radius: 50%;
}.course_rewards svg path {
    transition: fill 0.3s ease;
    fill: rgb(163,200,193);
}.course_rewards li:hover svg {
    transform: rotate(-15deg);
    background: linear-gradient(to bottom right, rgb(163,200,193), rgb(100,180,167));
}.course_rewards li:hover svg path {
    fill: #ffffff;
}

@media (max-width: 992px) {.course_rewards .skills_center {
    flex-direction: column;
}.course_rewards .pic_hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    flex: 0 0 auto;
    max-height: 300px;
}.course_rewards .paragraph_box {
    width: 100%;
    padding: 30px;
}
}

@media (max-width: 768px) {.course_rewards {
    padding: 60px 0;
}.course_rewards .pic_hover {
    max-height: 250px;
}.course_rewards h3 {
    font-size: calc(29px * 0.9);
}
}

@media (max-width: 576px) {.course_rewards {
    padding: 40px 0;
}.course_rewards .pic_hover {
    max-height: 200px;
}.course_rewards .paragraph_box {
    padding: 25px 20px;
}.course_rewards h3 {
    font-size: calc(29px * 0.85);
}.course_rewards li {
    margin-bottom: 10px;
}.course_rewards li p {
    padding: 8px 0;
    gap: 10px;
    font-size: calc(13px * 0.9);
}.course_rewards svg {
    padding: 6px;
    height: 18px;
    width: 18px;
}}.course_offering {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(213,226,223) 0%, rgba(255,255,255,0.92) 100%);
}.course_offering::before {
    background: 
        radial-gradient(circle at 10% 20%, rgba(var(--primary-color-opacity), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(var(--secondary-color-opacity), 0.08) 0%, transparent 60%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    content: "";
    position: absolute;
}.course_offering::after {
    right: -5%;
    content: "";
    background: linear-gradient(120deg, rgb(163,200,193) 0%, rgb(100,180,167) 100%);
    opacity: 0.05;
    top: -5%;
    transform: rotate(-15deg);
    filter: blur(50px);
    z-index: 0;
    position: absolute;
    width: 40%;
    height: 40%;
}.course_offering .container {
    margin: 0 auto;
    z-index: 1;
    padding: 0 1.5rem;
    position: relative;
    max-width: 1200px;
}.course_offering h2 {
    transform: translateY(20px);
    position: relative;
    line-height: 1.3;
    font-size: 32px;
    color: #000000;
    animation: fadeUp 0.8s ease-out forwards;
    font-weight: 700;
    opacity: 0;
    max-width: 90%;
    margin-bottom: 3rem;
}.course_offering h2::after {
    bottom: -1rem;
    background: linear-gradient(90deg, rgb(163,200,193) 0%, rgb(100,180,167) 100%);
    content: "";
    left: 0;
    animation: scaleIn 1s 0.3s ease-out forwards;
    transform: scaleX(0);
    width: 80px;
    transform-origin: left;
    position: absolute;
    height: 4px;
}.course_offering .learn_skills {
    animation: fadeUp 0.8s 0.2s ease-out forwards;
    transform: translateY(0);
    flex-direction: column;
    opacity: 0;
    display: flex;
    gap: 2rem;
}.course_offering .pic_hover {
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    transform: translateY(20px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 350px;
}.course_offering .pic_hover::before {
    background: linear-gradient(180deg, 
        rgba(var(--primary-color-opacity), 0.2) 0%, 
        rgba(var(--secondary-color-opacity), 0.4) 100%);
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    opacity: 0;
}.course_offering .pic_hover:hover {
    transform: translateY(0);
}.course_offering .pic_hover:hover::before {
    opacity: 1;
}.course_offering .paragraph_box {
    position: relative;
    flex-direction: column;
    transition: transform 0.4s ease;
    gap: 1.5rem;
    transform: translateX(0);
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    background: rgba(255,255,255,0.7);
}.course_offering .paragraph_box::before {
    left: 0;
    top: 0;
    transition: height 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: absolute;
    width: 5px;
    background: rgb(163,200,193);
    height: 0;
    content: "";
}.course_offering .paragraph_box:hover::before {
    height: 100%;
}.course_offering .description {
    overflow-y: auto;
    font-size: 12px;
    max-height: 200px;
    position: relative;
    line-height: 1.7;
    margin: 0;
    color: #000000;
    padding-right: 10px;
    transition: color 0.3s ease;
}.course_offering .description:first-of-type {
    font-weight: 600;
}.course_offering .description::-webkit-scrollbar {
    width: 4px;
}.course_offering .description::-webkit-scrollbar-track {
    background: rgba(var(--dark-color-opacity), 0.05);
    border-radius: 10px;
}.course_offering .description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(to bottom, rgb(163,200,193), rgb(100,180,167));
}

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

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


@media (min-width: 768px) {.course_offering {
    padding: 6rem 0;
}.course_offering h2 {
    max-width: 80%;
    font-size: calc(32px * 1.1);
}.course_offering .learn_skills {
    align-items: flex-start;
    flex-direction: row;
}.course_offering .pic_hover {
    height: 450px;
    width: 45%;
    flex-shrink: 0;
}.course_offering .paragraph_box {
    z-index: 2;
    margin-left: -3rem;
    padding: 2.5rem;
    width: 55%;
    margin-top: 3rem;
}.course_offering .paragraph_box:hover {
    transform: translateX(10px);
}.course_offering .description {
    max-height: 350px;
}
}

@media (min-width: 992px) {.course_offering {
    padding: 8rem 0;
}.course_offering h2 {
    max-width: 70%;
    font-size: calc(32px * 1.2);
}.course_offering .pic_hover {
    height: 500px;
    width: 50%;
}.course_offering .paragraph_box {
    margin-left: -5rem;
    padding: 3rem;
    width: 60%;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.05);
}.course_offering .description {
    font-size: calc(12px * 1.05);
    line-height: 1.8;
    max-height: 400px;
}
}

@media (min-width: 1200px) {.course_offering .container {
    padding: 0 2rem;
}.course_offering h2 {
    margin-bottom: 4rem;
    font-size: calc(32px * 1.3);
}.course_offering .learn_skills {
    gap: 3rem;
}.course_offering .pic_hover {
    height: 550px;
    transition: transform 0.7s cubic-bezier(0.17, 0.67, 0.83, 0.67), box-shadow 0.7s ease;
}.course_offering .pic_hover:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}.course_offering .paragraph_box {
    margin-left: -8rem;
    padding: 3.5rem;
}
}

@media (max-width: 767px) {.course_offering {
    padding: 4rem 0;
}.course_offering h2 {
    font-size: calc(32px * 0.9);
    margin-bottom: 2rem;
}.course_offering h2::after {
    height: 3px;
    width: 60px;
}.course_offering .learn_skills {
    gap: 1.5rem;
}.course_offering .pic_hover {
    height: 250px;
}.course_offering .paragraph_box {
    padding: 1.5rem;
}.course_offering .description {
    max-height: 150px;
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}}.forum_link {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 5rem 0 3rem;
}.forum_link::before {
    height: 100%;
    z-index: -1;
    left: 0;
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgb(163,200,193,0.5) 100%);
    backdrop-filter: blur(8px);
}.forum_link .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
}.forum_link .company_holder {
    position: relative;
    animation: borderPulse 4s infinite alternate;
    padding-left: 2rem;
    border-left: 2px solid rgb(163,200,193);
}@keyframes borderPulse {
    0% {
        border-left-color: rgb(163,200,193);
    }
    50% {
        border-left-color: rgb(100,180,167);
    }
    100% {
        border-left-color: rgb(163,200,193);
    }
}

.forum_link .company_holder h3 {
    background: linear-gradient(to right, #ffffff, rgb(100,180,167));
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    -webkit-background-clip: text !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    font-size: calc(31px * 1.2);
}.forum_link .pledge_block {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 1rem;
}.forum_link .privacy_cta {
    justify-content: flex-end;
    display: flex;
}.forum_link .top_page {
    display: flex;
    gap: 4rem;
}.forum_link .main_master {
    position: relative;
}.forum_link .main_master::before {
    left: -20px;
    top: -10px;
    border-top: 1px solid rgb(163,200,193);
    width: 40px;
    opacity: 0.4;
    position: absolute;
    border-left: 1px solid rgb(163,200,193);
    height: 40px;
    content: "";
}.forum_link .main_master::after {
    bottom: -10px;
    content: "";
    position: absolute;
    border-bottom: 1px solid rgb(163,200,193);
    right: -20px;
    width: 40px;
    height: 40px;
    opacity: 0.4;
    border-right: 1px solid rgb(163,200,193);
}.forum_link .main_master h5 {
    font-size: 23px;
    text-transform: uppercase;
    color: rgb(100,180,167);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}.forum_link .main_master .top_page {
    gap: 0.8rem;
    flex-direction: column;
    display: flex;
}.forum_link .main_master .top_page a {
    position: relative;
    opacity: 0.8;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    padding-left: 1rem;
}.forum_link .main_master .top_page a::before {
    left: 0;
    transform: translateY(-50%);
    top: 50%;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(163,200,193);
    position: absolute;
    width: 5px;
    transition: all 0.3s ease;
    content: "";
}.forum_link .main_master .top_page a:hover {
    color: rgb(163,200,193);
    opacity: 1;
    transform: translateX(5px);
}.forum_link .main_master .top_page a:hover::before {
    height: 7px;
    background-color: rgb(100,180,167);
    width: 7px;
}.cloud_lab {
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding: 1.5rem 0;
    position: relative;
}.cloud_lab::before {
    height: 1px;
    content: "";
    width: 100%;
    background: linear-gradient(to right, transparent, rgb(163,200,193), transparent);
    opacity: 0.5;
    left: 0;
    position: absolute;
    top: 0;
}.cloud_lab .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.cloud_lab .review_block {
    opacity: 0.7;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
}

@media screen and (max-width: 992px) {.forum_link .container {
    gap: 2rem;
    grid-template-columns: 1fr;
}.forum_link .company_holder {
    margin-bottom: 2rem;
    padding-left: 1rem;
}.forum_link .privacy_cta {
    justify-content: flex-start;
}.forum_link .top_page {
    gap: 2rem;
}
}

@media screen and (max-width: 768px) {.forum_link {
    padding: 3rem 0 2rem;
}.forum_link .top_page {
    gap: 2rem;
    flex-direction: column;
}.forum_link .main_master::before,
    .forum_link .main_master::after {
    display: none;
}.forum_link .main_master {
    margin-bottom: 1.5rem;
}.cloud_lab {
    padding: 1rem 0;
}
}

@media screen and (max-width: 576px) {.forum_link .company_holder h3 {
    font-size: 31px;
}.forum_link .main_master h5 {
    font-size: calc(16px * 1.1);
}.forum_link .main_master .top_page a {
    font-size: calc(13px * 0.9);
}}.data_insights {
    background: linear-gradient(135deg, rgb(213,226,223) 0%, rgb(100,180,167,0.5) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}.data_insights::before {
    content: "";
    top: -10%;
    width: 40%;
    z-index: 1;
    position: absolute;
    right: -5%;
    transform: rotate(-15deg) skew(15deg);
    height: 70%;
    background: linear-gradient(225deg, rgb(163,200,193,0.5) 0%, transparent 70%);
}.data_insights::after {
    width: 30%;
    z-index: 1;
    position: absolute;
    background: linear-gradient(45deg, rgb(100,180,167,0.5) 0%, transparent 70%);
    transform: rotate(15deg) skew(-15deg);
    content: "";
    height: 60%;
    bottom: -10%;
    left: -5%;
}.data_insights .container {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}.data_insights ul {
    list-style: none;
    margin: 0 0 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 0;
    gap: 2rem;
}.data_insights .knowledge_gains {
    position: relative;
    transform: perspective(1000px) rotateX(2deg) translateZ(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    backdrop-filter: blur(5px);
}.data_insights .knowledge_gains::before {
    content: "";
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    background: linear-gradient(135deg, 
                rgb(255, 255, 255, 0.5) 0%, 
                rgb(100,180,167,0.5) 30%, 
                rgb(100,180,167,0.5) 70%, 
                rgb(255, 255, 255, 0.5) 100%);
    transition: opacity 0.3s ease;
    opacity: 0.85;
    inset: 0;
    position: absolute;
}.data_insights .knowledge_gains:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgb(100,180,167,0.5);
    transform: perspective(1000px) rotateX(2deg) translateZ(10px) scale(1.02);
}.data_insights .knowledge_gains:hover::before {
    opacity: 1;
}.data_insights .knowledge_gains div {
    flex-direction: column;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
    padding: 2rem 1.5rem;
    align-items: center;
    transform: translateY(0);
    text-align: center;
    justify-content: center;
}.data_insights .knowledge_gains:hover div {
    transform: translateY(-5px);
}.data_insights .knowledge_gains p {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-background-clip: text;
    position: relative;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(163,200,193) 0%, rgb(100,180,167) 100%);
    font-size: calc(41px * 1.2);
    background-clip: text;
    line-height: 1;
    font-weight: 700;
    color: transparent;
    margin: 0 0 0.5rem;
}.data_insights .knowledge_gains:hover p {
    transform: scale(1.1);
}.data_insights .knowledge_gains p::after {
    width: 0;
    position: absolute;
    transition: width 0.3s ease;
    background: rgb(163,200,193);
    content: "";
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
}.data_insights .knowledge_gains:hover p::after {
    width: 50%;
}.data_insights .knowledge_gains span {
    max-width: 90%;
    letter-spacing: 0.02em;
    font-size: 14px;
    color: #000000;
    line-height: 1.4;
    transition: letter-spacing 0.3s ease;
    font-weight: 600;
}.data_insights .knowledge_gains:hover span {
    letter-spacing: 0.04em;
}.data_insights h4 {
    font-weight: 700;
    padding-bottom: 1rem;
    transform: translateY(0);
    text-align: center;
    font-size: 18px;
    margin: 1rem 0 0;
    position: relative;
    color: #000000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.data_insights h4::before {
    transform: translateX(-50%);
    left: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgb(163,200,193), transparent);
    bottom: 0;
    content: "";
    width: 30%;
    position: absolute;
}.data_insights:hover h4 {
    transform: translateY(5px);
}

@media (max-width: 1200px) {.data_insights ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}.data_insights .knowledge_gains p {
    font-size: calc(33px * 1.1);
}
}

@media (max-width: 992px) {.data_insights {
    padding: 4rem 0;
}.data_insights::before, 
    .data_insights::after {
    height: 50%;
    width: 50%;
}.data_insights ul {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
}

@media (max-width: 768px) {.data_insights {
    padding: 3rem 0;
}.data_insights ul {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
}.data_insights .knowledge_gains div {
    padding: 1.5rem 1rem;
}.data_insights .knowledge_gains p {
    font-size: 33px;
}.data_insights .knowledge_gains span {
    font-size: calc(14px * 0.9);
}
}

@media (max-width: 576px) {.data_insights {
    padding: 2.5rem 0;
}.data_insights ul {
    max-width: 320px;
    margin-left: auto;
    grid-template-columns: 1fr;
    margin-right: auto;
}.data_insights .knowledge_gains {
    transform: perspective(1000px) rotateX(0) translateZ(0);
}.data_insights .knowledge_gains:hover {
    transform: perspective(1000px) rotateX(0) translateZ(5px) scale(1.01);
}.data_insights .knowledge_gains::before {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}.data_insights h4 {
    font-size: calc(19px * 1.1);
}}.stay_updated {
    font-family: Arial, sans-serif;
    position: relative;
    background: linear-gradient(120deg, rgb(163,200,193,0.5) 0%, rgb(213,226,223) 50%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
    padding: 5rem 2rem;
}.stay_updated::before {
    left: 0;
    content: "";
    z-index: 0;
    height: 100%;
    filter: blur(40px);
    top: 0;
    position: absolute;
    width: 100%;
    background: 
        radial-gradient(circle at 70% 20%, rgb(100,180,167,0.5) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgb(163,200,193,0.5) 0%, transparent 25%);
}.stay_updated .skills_center {
    margin: 0 auto;
    z-index: 1;
    perspective: 1500px;
    max-width: 1200px;
    position: relative;
}.stay_updated .feedback_card {
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: rotateX(10deg) rotateY(-5deg);
    backdrop-filter: blur(10px);
    max-width: 800px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    margin: 0 auto;
    transform-style: preserve-3d;
    padding: 3rem;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    width: 90%;
}.stay_updated .feedback_card:hover {
    transform: rotateX(0deg) rotateY(0deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}.stay_updated h3 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
    transform: translateZ(30px);
    position: relative;
    margin-bottom: 2rem;
    width: fit-content;
}.stay_updated h3::before {
    background: linear-gradient(90deg, rgb(163,200,193), transparent);
    height: 3px;
    bottom: -10px;
    left: 0;
    width: 50%;
    content: "";
    position: absolute;
    transform: translateZ(35px);
}.stay_updated .input_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
    transform: translateZ(20px);
    position: relative;
}.stay_updated input[type="email"] {
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}.stay_updated input[type="email"]:focus {
    outline: none;
    box-shadow: 0 5px 20px rgb(163,200,193,0.5);
    transform: translateZ(40px) scale(1.02);
    border-color: rgb(163,200,193);
}.stay_updated input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}.stay_updated .sub_verification {
    border: none;
    background: rgb(163,200,193);
    transform: translateZ(20px) translateX(0);
    font-weight: 600;
    align-self: flex-start;
    padding: 1.2rem 2.5rem;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    border-radius: 10px;
}.stay_updated .sub_verification::before {
    position: absolute;
    content: "";
    width: 120%;
    transition: all 0.5s ease;
    transform: rotate(45deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 120%;
    top: -10%;
    left: -150%;
}.stay_updated .sub_verification:hover {
    background: linear-gradient(to right, rgb(163,200,193), rgb(100,180,167));
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateZ(40px) translateX(10px);
}.stay_updated .sub_verification:hover::before {
    left: 150%;
}

@media (min-width: 768px) {.stay_updated {
    padding: 7rem 3rem;
}.stay_updated .feedback_card {
    padding: 4rem;
}.stay_updated .input_holder {
    align-items: center;
    gap: 1.5rem;
    flex-direction: row;
}.stay_updated input[type="email"] {
    margin-bottom: 0;
    flex: 1;
}.stay_updated .sub_verification {
    align-self: center;
}
}

@media (max-width: 767px) {.stay_updated {
    padding: 4rem 1.5rem;
}.stay_updated h3 {
    font-size: 19px;
    transform: translateZ(20px);
}.stay_updated .feedback_card {
    transform: rotateX(5deg) rotateY(-3deg);
    padding: 2rem;
    width: 100%;
}.stay_updated .sub_verification {
    width: 100%;
}}.education_framework {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(213,226,223) 0%, rgb(100,180,167,0.5) 100%);
    padding: 8rem 2rem;
    position: relative;
}.education_framework::before {
    opacity: 0.4;
    height: 120%;
    animation: gradientShift 15s ease-in-out infinite alternate;
    position: absolute;
    left: -10%;
    z-index: 0;
    content: "";
    width: 120%;
    top: -5%;
    background: radial-gradient(circle at 75% 25%, rgb(163,200,193,0.5) 0%, transparent 60%);
    transform: translateZ(0);
}.education_framework::after {
    content: "";
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(163,200,193), transparent);
    left: 0;
    z-index: 1;
    height: 2px;
    transform: translateZ(0);
    position: absolute;
}.education_framework .container {
    padding: 3rem;
    position: relative;
    flex-direction: column;
    margin: 0 auto;
    display: flex;
    animation: container-entrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: linear-gradient(to bottom, #ffffff, rgb(255, 255, 255, 0.5));
    max-width: 1200px;
    z-index: 2;
    transform: perspective(1000px) rotateX(1deg);
    transform-origin: center top;
}.education_framework .container > div {
    position: relative;
}.education_framework h3 {
    transform: translateY(20px);
    font-weight: 700;
    line-height: 1.3;
    display: inline-block;
    color: #000000;
    position: relative;
    animation: text-entrance 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
    margin-bottom: 2rem;
    font-size: calc(34px * 0.85);
}.education_framework h3::after {
    content: "";
    bottom: -10px;
    width: 60%;
    position: absolute;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(163,200,193), transparent);
    animation: line-draw 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards;
    left: 0;
    transform: scaleX(0);
    height: 3px;
}.education_framework p {
    color: #000000;
    opacity: 0;
    position: relative;
    font-size: 14px;
    transform: translateY(30px);
    animation: text-entrance 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}.education_framework p span {
    padding-left: 1.5rem;
    position: relative;
    display: block;
}.education_framework p span::before {
    top: 0.6rem;
    width: 6px;
    border-radius: 50%;
    animation: dot-entrance 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
    content: "";
    position: absolute;
    height: 6px;
    left: 0;
    transform: scale(0);
    background: rgb(163,200,193);
}

@media (min-width: 768px) {.education_framework {
    padding: 10rem 3rem;
}.education_framework .container {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 0, 0, 0.03);
    transform: perspective(1200px) rotateX(1deg);
    padding: 4rem;
}.education_framework h3 {
    margin-bottom: 3rem;
    font-size: 34px;
}.education_framework p {
    font-size: calc(14px * 1.1);
    padding-right: 2rem;
}.education_framework p span {
    padding-left: 2rem;
}.education_framework p span::before {
    width: 8px;
    height: 8px;
}
}

@media (min-width: 992px) {.education_framework {
    padding: 12rem 4rem;
}.education_framework .container {
    padding: 5rem;
}.education_framework::before {
    animation: gradientShift 20s ease-in-out infinite alternate;
}.education_framework h3 {
    margin-bottom: 3.5rem;
}.education_framework p {
    max-width: 90%;
    margin: 0 auto;
}.education_framework .container:hover {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: perspective(1200px) rotateX(1.5deg) translateY(-5px);
}
}

@media (max-width: 767px) {.education_framework {
    padding: 6rem 1.5rem;
}.education_framework .container {
    padding: 2rem;
    transform: perspective(800px) rotateX(0.5deg);
}.education_framework h3 {
    margin-bottom: 1.5rem;
    font-size: calc(34px * 0.7);
}.education_framework p {
    font-size: calc(14px * 0.95);
}.education_framework p span {
    padding-left: 1rem;
}.education_framework p span::before {
    top: 0.5rem;
    height: 4px;
    width: 4px;
}}

@keyframes container-entrance {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(5deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(1deg) translateY(0);
    }
}

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

@keyframes line-draw {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes dot-entrance {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% {
        opacity: 0.3;
        transform: translateX(-5%) translateY(-5%) scale(1.05);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
        transform: translateX(5%) translateY(5%) scale(1);
    }
}.plan {
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
}.plan::before {
    top: 0;
    position: absolute;
    background: linear-gradient(135deg, rgba(36, 48, 94, 0.95), rgba(26, 35, 72, 0.97));
    height: 100%;
    width: 100%;
    z-index: -1;
    left: 0;
    content: "";
}.plan .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.plan .study_costs {
    flex-direction: column;
    justify-content: center;
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
}.plan h2 {
    color: #ffffff;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(0);
    font-size: calc(28px * 1.1);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}.plan h2::after {
    bottom: -12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 3px;
    background: rgb(163,200,193);
    border-radius: 1px;
    width: 80px;
}.plan .tuition_grid {
    text-align: center;
    font-size: calc(18px * 1.05);
    letter-spacing: 0.2px;
    max-width: 80%;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 auto 50px;
    color: rgb(255, 255, 255, 0.5);
}.plan .payment_deals {
    list-style: none;
    gap: 30px;
    padding: 0;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0;
    display: grid;
}.plan .payment_deals li {
    display: flex;
    height: 100%;
}.plan .rate_plans {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 
                0 2px 5px rgba(0, 0, 0, 0.05),
                0 1px 3px rgba(0, 0, 0, 0.03);
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    width: 100%;
    transform: translateY(0) scale(1);
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
}.plan .rate_plans::before {
    background: linear-gradient(90deg, rgb(163,200,193), rgb(100,180,167));
    transform: translateY(-5px);
    position: absolute;
    left: 0;
    height: 5px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    content: "";
    width: 100%;
    top: 0;
}.plan .rate_plans:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18), 
                0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px) scale(1.02);
}.plan .rate_plans:hover::before {
    transform: translateY(0);
}.plan .fee_board {
    flex-direction: column;
    display: flex;
    padding: 35px 30px;
    position: relative;
    height: 100%;
}.plan .learning_plan {
    flex-direction: column;
    display: flex;
    height: 100%;
}.plan .rate_plans h4 {
    margin: 0 0 20px;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: calc(23px * 1.1);
    position: relative;
    color: #ffffff;
    padding-bottom: 15px;
    letter-spacing: 0.3px;
}.plan .rate_plans:hover h4 {
    color: rgb(163,200,193);
}.plan .rate_plans h4::after {
    position: absolute;
    width: 40px;
    transition: width 0.4s ease, background-color 0.4s ease;
    background-color: rgba(255, 255, 255, 0.2);
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
}.plan .rate_plans:hover h4::after {
    background-color: rgb(163,200,193);
    width: 60px;
}.plan .rate_plans p {
    white-space: normal;
    margin: 0 0 30px;
    overflow-wrap: break-word;
    flex-grow: 1;
    font-weight: 300;
    line-height: 1.7;
    hyphens: auto;
    color: rgba(255, 255, 255, 0.75);
    word-break: normal;
    font-size: 18px;
}.plan .cost_schemes {
    font-weight: 700;
    display: block;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 15px 0 0;
    margin-top: auto;
    font-size: calc(23px * 1.15);
    color: rgb(163,200,193);
    position: relative;
}.plan .cost_schemes::before {
    width: 25px;
    content: "";
    top: 0;
    height: 2px;
    left: 0;
    position: absolute;
    background-color: rgb(163,200,193);
    opacity: 0.6;
    transition: width 0.4s ease, opacity 0.3s ease;
}.plan .rate_plans:hover .cost_schemes {
    color: rgb(100,180,167);
    transform: translateY(-3px);
}.plan .rate_plans:hover .cost_schemes::before {
    opacity: 1;
    width: 40px;
}


@media (max-width: 1200px) {.plan {
    padding: 80px 0;
}.plan .tuition_grid {
    max-width: 90%;
}.plan .payment_deals {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}

@media (max-width: 992px) {.plan h2 {
    font-size: 28px;
}.plan .fee_board {
    padding: 30px 25px;
}.plan .rate_plans h4 {
    font-size: 23px;
}
}

@media (max-width: 768px) {.plan {
    padding: 60px 0;
}.plan h2 {
    font-size: calc(28px * 0.9);
}.plan .tuition_grid {
    max-width: 100%;
    font-size: 18px;
    margin-bottom: 40px;
}.plan .payment_deals {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
}.plan .rate_plans {
    max-height: none;
}.plan .rate_plans p {
    font-size: calc(18px * 0.95);
    margin-bottom: 25px;
}
}

@media (max-width: 480px) {.plan {
    padding: 50px 0;
}.plan h2 {
    font-size: calc(28px * 0.85);
}.plan .tuition_grid {
    font-size: calc(18px * 0.95);
}.plan .fee_board {
    padding: 25px 20px;
}.plan .rate_plans h4 {
    font-size: calc(23px * 0.95);
    margin-bottom: 15px;
}.plan .cost_schemes {
    font-size: 23px;
}}.find_support {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(213,226,223) 0%, rgba(255,255,255,0.95) 100%);
    position: relative;
    padding: 5rem 0;
}.find_support::before {
    right: -10%;
    position: absolute;
    width: 300px;
    animation: float 15s infinite ease-in-out;
    top: -10%;
    border-radius: 50%;
    z-index: 0;
    height: 300px;
    background: linear-gradient(225deg, rgb(163,200,193,0.5) 0%, transparent 70%);
    content: "";
    transform: rotate(-15deg);
}.find_support::after {
    height: 200px;
    bottom: -5%;
    z-index: 0;
    width: 200px;
    background: linear-gradient(45deg, rgb(100,180,167,0.5) 0%, transparent 70%);
    left: -5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 20s infinite ease-in-out reverse;
    content: "";
    position: absolute;
}.find_support .container {
    position: relative;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
}.find_support .reach_out {
    padding: 3rem;
    transform: perspective(1000px) rotateY(1deg) rotateX(1deg);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03);
    background: #ffffff;
    position: relative;
}.find_support .reach_out:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}.find_support h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgb(163,200,193);
    display: inline-block;
    font-size: calc(36px * 1.1);
    position: relative;
}.find_support h3::after {
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(163,200,193) 0%, rgb(100,180,167) 100%);
    transform-origin: left;
    bottom: -8px;
    position: absolute;
    width: 100%;
    height: 3px;
    transition: transform 0.4s ease;
    transform: scaleX(0.3);
}.find_support .reach_out:hover h3::after {
    transform: scaleX(1);
}.find_support p {
    max-width: 90%;
    font-size: 17px;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}.find_support h5 {
    align-items: center;
    color: #000000;
    display: flex;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 24px;
    text-transform: capitalize;
}.find_support h5 svg {
    transition: transform 0.3s ease;
    width: 22px;
    height: 22px;
    margin-left: 10px;
}.find_support .inquire_now {
    display: flex;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0 0;
}.find_support .inquire_now li {
    transition: transform 0.3s ease;
    position: relative;
}.find_support .inquire_now li:hover {
    transform: translateY(-5px);
}.find_support .write_form {
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.05));
    align-items: center;
    display: flex;
    font-weight: 600;
    border-left: 3px solid rgb(163,200,193);
    font-size: calc(17px * 0.95);
    color: rgb(163,200,193);
}.find_support .write_form:hover {
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.15), rgba(var(--secondary-color-rgb), 0.1));
    padding-left: 1.5rem;
}.find_support .write_form svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}.find_support .write_form:hover svg {
    transform: scale(1.1) rotate(5deg);
}.find_support svg path {
    transition: fill 0.3s ease;
    fill: rgb(163,200,193);
}.find_support .write_form:hover svg path {
    fill: rgb(100,180,167);
}

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

@media (max-width: 992px) {.find_support {
    padding: 4rem 0;
}.find_support .reach_out {
    transform: none;
    padding: 2.5rem;
}.find_support h3 {
    font-size: calc(36px * 0.9);
}.find_support p {
    max-width: 100%;
}
}

@media (max-width: 768px) {.find_support {
    padding: 3rem 0;
}.find_support .reach_out {
    padding: 2rem;
}.find_support .inquire_now {
    gap: 1rem;
    flex-direction: column;
}.find_support h3 {
    font-size: 36px;
}.find_support::before,
    .find_support::after {
    width: 150px;
    height: 150px;
}
}

@media (max-width: 576px) {.find_support {
    padding: 2.5rem 0;
}.find_support .reach_out {
    padding: 1.5rem;
}.find_support h3 {
    font-size: calc(36px * 0.8);
}.find_support h5 {
    font-size: calc(24px * 0.9);
}.find_support p {
    font-size: calc(17px * 0.95);
}.find_support .write_form {
    padding: 0.6rem 1rem;
    font-size: calc(17px * 0.9);
}.find_support .write_form svg,
    .find_support h5 svg {
    width: 18px;
    height: 18px;
}}.title_greeting {
    min-height: 100vh;
    padding: 4rem 2rem;
    overflow: hidden;
    align-items: center;
    position: relative;
    display: flex;
    justify-content: flex-start;
}.title_greeting::before {
    position: absolute;
    top: 0;
    z-index: 1;
    background: linear-gradient(135deg, 
    rgba(rgba(0, 0, 0, 0.5), 0.85) 0%,
    rgba(rgba(0, 0, 0, 0.5), 0.65) 40%,
    rgba(rgb(163,200,193,0.5), 0.5) 100%);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    content: "";
    left: 0;
}.title_greeting::after {
    right: -5%;
    width: 30%;
    z-index: 2;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    bottom: -5%;
    height: 30%;
    background: rgb(163,200,193);
    transform: rotate(-5deg);
    content: "";
    position: absolute;
    opacity: 0.15;
}.title_greeting > div {
    position: relative;
    width: 100%;
    z-index: 5;
    gap: 3rem;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    max-width: 1200px;
}.title_greeting > div > div:first-child {
    opacity: 0;
    margin-bottom: 1rem;
    transform: translateY(20px);
    padding-left: 2rem;
    position: relative;
    animation: slideUpFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}.title_greeting > div > div:first-child::before {
    width: 6px;
    transform: translateY(-50%);
    border-radius: 3px;
    position: absolute;
    top: 50%;
    content: "";
    background: linear-gradient(to bottom, rgb(163,200,193), rgb(100,180,167));
    height: 70%;
    left: 0;
}.title_greeting .title_style_header {
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: clamp(2.5rem, 5vw, 47px);
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}.title_greeting .learn_home {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    grid-template-columns: 1fr;
    background: rgba(rgb(255, 255, 255, 0.5), 0.07);
    border-left: 4px solid rgb(100,180,167);
    position: relative;
    backdrop-filter: blur(12px);
    display: grid;
    opacity: 0;
    padding: 2.5rem;
    animation: slideUpFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    gap: 2rem;
    transform: translateY(30px);
}.title_greeting .learn_home::before {
    width: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, 
    rgba(rgb(163,200,193,0.5), 0.03) 0%,
    rgba(rgb(100,180,167,0.5), 0.05) 100%);
    height: 100%;
    top: 0;
}.title_greeting .principles_list {
    position: relative;
}.title_greeting .principles_list h3 {
    padding-bottom: 1.25rem;
    margin: 0;
    line-height: 1.4;
    position: relative;
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 20px);
    color: #ffffff;
}.title_greeting .principles_list h3::after {
    content: "";
    background: linear-gradient(to right, rgb(163,200,193), rgb(100,180,167));
    bottom: 0;
    left: 0;
    position: absolute;
    width: 80px;
    height: 2px;
}.title_greeting .learn_home > div:last-child {
    display: flex;
    align-items: center;
    position: relative;
}.title_greeting .learn_home > div:last-child span {
    padding-left: 1.5rem;
    position: relative;
    display: block;
}.title_greeting .learn_home > div:last-child span::before {
    height: 8px;
    background: rgb(163,200,193);
    border-radius: 1px;
    position: absolute;
    box-shadow: 0 0 15px rgb(163,200,193);
    transform: translateY(-50%);
    content: "";
    width: 8px;
    top: 50%;
    left: 0;
}.title_greeting .learn_home p {
    font-size: clamp(1rem, 2vw, 17px);
    line-height: 1.6;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin: 0;
    font-weight: 400;
}

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

@media (min-width: 768px) {.title_greeting {
    justify-content: center;
    padding: 5rem 3rem;
}.title_greeting > div {
    gap: 4rem;
}.title_greeting .learn_home {
    padding: 3rem;
    border-left: 6px solid rgb(100,180,167);
    grid-template-columns: 2fr 1fr;
}.title_greeting .title_style_header {
    max-width: 80%;
}.title_greeting .principles_list h3::after {
    width: 120px;
}.title_greeting > div > div:first-child::before {
    width: 8px;
}
}

@media (min-width: 1200px) {.title_greeting {
    padding: 6rem 4rem;
}.title_greeting > div > div:first-child {
    padding-left: 3rem;
}.title_greeting > div > div:first-child::before {
    height: 80%;
    width: 10px;
}.title_greeting .learn_home {
    padding: 4rem;
    gap: 3rem;
}.title_greeting::after {
    bottom: -10%;
    height: 40%;
    right: -10%;
    width: 40%;
}
}

@media (max-width: 767px) {.title_greeting {
    padding: 3rem 1.5rem;
    min-height: auto;
}.title_greeting > div {
    gap: 2rem;
}.title_greeting .learn_home {
    padding: 2rem 1.5rem;
}.title_greeting .principles_list h3 {
    padding-bottom: 1rem;
}}.meet_us {
    background: rgb(213,226,223);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}.meet_us::before {
    position: absolute;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(163,200,193,0.5) 0%, transparent 50%);
    content: "";
    left: 0;
    right: 0;
    z-index: 1;
}.meet_us::after {
    animation: pulse 15s infinite alternate;
    left: 0;
    width: 100%;
    position: absolute;
    background: radial-gradient(circle at 70% 30%, rgb(100,180,167,0.5) 0%, transparent 60%);
    content: "";
    z-index: 2;
    top: 0;
    height: 100%;
}.meet_us .container {
    position: relative;
    z-index: 10;
}.meet_us .skills_center {
    position: relative;
    gap: 60px;
    display: flex;
    flex-direction: column;
}.meet_us .skills_center::before {
    content: "";
    top: 80px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, rgb(163,200,193), transparent);
    position: absolute;
    z-index: -1;
    width: 2px;
    height: 85%;
    left: 50%;
}.meet_us h3 {
    color: rgb(163,200,193);
    margin-bottom: 40px;
    transition: transform 0.5s ease;
    font-size: 32px;
    font-weight: 700;
    transform: perspective(1000px) rotateX(0deg);
    position: relative;
    text-align: center;
}.meet_us h3::after {
    bottom: -15px;
    left: 50%;
    background: rgb(163,200,193);
    position: absolute;
    border-radius: 10px;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    content: "";
}.meet_us h3:hover {
    transform: perspective(1000px) rotateX(5deg);
}.meet_us .who_weare {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 40px;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
    border-radius: 22px;
    border-left: 3px solid rgb(163,200,193);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}.meet_us .who_weare::before {
    background: radial-gradient(circle, rgb(163,200,193,0.5) 0%, transparent 70%);
    height: 200px;
    animation: float 8s infinite ease-in-out;
    top: -100px;
    border-radius: 50%;
    width: 200px;
    position: absolute;
    right: -100px;
    content: "";
}.meet_us .who_weare:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.meet_us .who_weare span {
    font-size: 21px;
    grid-column: 1 / 2;
    color: rgb(163,200,193);
    padding-left: 15px;
    display: block;
    position: relative;
    margin-bottom: 20px;
    font-weight: 600;
}.meet_us .who_weare span::before {
    background: rgb(163,200,193);
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    content: "";
    width: 5px;
    left: 0;
}.meet_us .who_weare p {
    line-height: 1.8;
    grid-column: 1 / 2;
    color: #000000;
    position: relative;
    font-size: 15px;
}.meet_us .who_weare .pic_hover {
    overflow: hidden;
    position: relative;
    height: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    grid-column: 2 / 3;
    border-radius: 22px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    grid-row: 1 / 3;
}.meet_us .who_weare .pic_hover::before {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    content: "";
    height: 100%;
    z-index: 1;
    position: absolute;
}.meet_us .who_weare .pic_hover::after {
    content: "";
    top: 0;
    background: linear-gradient(to right, rgb(163,200,193), rgb(100,180,167));
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
}.meet_us .who_weare .pic_hover:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}.meet_us .teach_style {
    align-items: center;
    backdrop-filter: blur(10px);
    display: grid;
    border-right: 3px solid rgb(100,180,167);
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    gap: 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
}.meet_us .teach_style::before {
    border-radius: 50%;
    background: radial-gradient(circle, rgb(100,180,167,0.5) 0%, transparent 70%);
    height: 200px;
    bottom: -100px;
    animation: float 8s infinite ease-in-out reverse;
    width: 200px;
    position: absolute;
    content: "";
    left: -100px;
}.meet_us .teach_style:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.meet_us .teach_style p {
    position: relative;
    color: #000000;
    font-size: 15px;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    line-height: 1.8;
}.meet_us .teach_style .value_vision {
    height: 350px;
    grid-column: 1 / 2;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    grid-row: 1 / 2;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 22px;
}.meet_us .teach_style .value_vision::before {
    content: "";
    z-index: 1;
    width: 100%;
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    height: 100%;
}.meet_us .teach_style .value_vision::after {
    height: 5px;
    background: linear-gradient(to right, rgb(100,180,167), rgb(163,200,193));
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    width: 100%;
}.meet_us .teach_style .value_vision:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.4;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 992px) {.meet_us {
    padding: 80px 0;
}.meet_us .skills_center::before {
    height: 90%;
}.meet_us .who_weare,
    .meet_us .teach_style {
    grid-template-columns: 1fr;
    gap: 30px;
}.meet_us .who_weare span,
    .meet_us .who_weare p {
    grid-column: 1 / -1;
}.meet_us .who_weare .pic_hover {
    height: 300px;
    grid-row: 3 / 4;
    grid-column: 1 / -1;
}.meet_us .teach_style p {
    grid-row: 2 / 3;
    grid-column: 1 / -1;
}.meet_us .teach_style .value_vision {
    grid-column: 1 / -1;
    height: 300px;
    grid-row: 1 / 2;
}
}

@media (max-width: 768px) {.meet_us {
    padding: 60px 0;
}.meet_us h3 {
    font-size: calc(32px * 0.9);
}.meet_us .skills_center {
    gap: 40px;
}.meet_us .skills_center::before {
    display: none;
}.meet_us .who_weare,
    .meet_us .teach_style {
    padding: 30px;
}.meet_us .who_weare span {
    font-size: calc(21px * 0.9);
}.meet_us .who_weare .pic_hover,
    .meet_us .teach_style .value_vision {
    height: 250px;
}
}

@media (max-width: 576px) {.meet_us {
    padding: 40px 0;
}.meet_us h3 {
    margin-bottom: 30px;
    font-size: calc(32px * 0.8);
}.meet_us .who_weare,
    .meet_us .teach_style {
    gap: 20px;
    padding: 20px;
}.meet_us .who_weare span {
    margin-bottom: 15px;
}.meet_us .who_weare .pic_hover,
    .meet_us .teach_style .value_vision {
    height: 200px;
}}.cookieAgreementModal {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px 0px;
    padding: 20px 0;
    z-index: 90;
    bottom: 0;
    border-top: 2px solid rgb(163,200,193);
    background: rgb(100,180,167);
    transition: all 0.3s ease-in-out;
    position: fixed;
    width: 100%;
}.consent_comply {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}.cookieAgreementModal h5 {
    font-weight: 700;
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 6px;
    transition: color 0.3s ease-in-out;
}.cookieAgreementModal p {
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
}.cookie_box {
    margin-right: 20px;
    flex-shrink: 0;
}.cookie_box svg, .cookie_box svg path {
    transition: transform 0.3s ease-in-out;
    height: 80px;
    fill: rgb(163,200,193);
    width: 80px;
}.cookie_box:hover svg {
    transform: rotate(10deg);
}.web_tracking {
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    background: rgb(163,200,193);
    box-shadow: rgb(163,200,193,0.5) 0px 4px 10px 0px;
    line-height: 35px;
    padding: 10px 20px;
    color: #ffffff;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-size: 15px;
    border-radius: 20px;
}.cookie_button.cookies_terms {
    background: rgb(163,200,193);
}.cookie_button.user_default {
    background: rgb(100,180,167);
}.web_tracking:hover {
    box-shadow: rgb(163,200,193,0.5) 0px 6px 15px 0px;
    transform: scale(1.05);
}.cookieAgreementModal p a {
    text-decoration: none;
    font-weight: 600;
    color: rgb(163,200,193);
    transition: color 0.3s ease-in-out;
}.cookieAgreementModal p a:hover {
    color: rgb(100,180,167);
}.wrapper-padding .cookieAgreementModal {
    background: rgb(100,180,167);
    border: none;
    padding: 40px 0;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 40px 39px;
}.wrapper-padding .web_tracking {
    padding: 10px;
    background: rgb(163,200,193);
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    color: #ffffff;
    border: none;
    font-weight: 400;
    border-radius: 10px;
    margin-left: 30px;
    font-size: 15px;
}.wrapper-padding .consent_box h5, .wrapper-padding .consent_box p {
    color: #ffffff;
}
@media only screen and (max-width: 1200px) {.cookieAgreementModal {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.cookie_box {
    display: none;
}.consent_comply {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}.cookieAgreementModal h5 {
    text-align: center;
}.cookieAgreementModal p {
    text-align: center;
}.consent_box {
    text-align: center;
    margin-bottom: 20px;
}.web_tracking {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    max-width: 300px;
}}
#bannerCookieNotice {
    display: none;
}#bannerCookieNotice:checked ~ .cookieAgreementModal {
    opacity: 0;
    visibility: hidden;
}.sign_up_now {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: linear-gradient(120deg, rgb(100,180,167,0.5) 0%, #ffffff 100%);
}.sign_up_now::before {
    z-index: 1;
    right: -20%;
    opacity: 0.1;
    transform: rotate(-15deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -50%;
    width: 80%;
    content: '';
    height: 200%;
    position: absolute;
    background: rgb(163,200,193,0.5);
}.sign_up_now::after {
    content: '';
    opacity: 0.1;
    height: 150%;
    width: 60%;
    z-index: 1;
    background: rgb(100,180,167,0.5);
    left: -10%;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    position: absolute;
    transform: rotate(15deg);
    bottom: -30%;
}.sign_up_now .skills_center {
    display: flex;
    z-index: 10;
    flex-direction: column;
    align-items: center;
    padding: 0;
    position: relative;
}.sign_up_now .container p {
    max-width: 800px;
    position: relative;
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    font-size: 32px;
    z-index: 5;
    margin: 0 0 60px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    font-weight: 700;
    background: #ffffff;
    color: #000000;
    text-align: center;
    padding: 40px 60px;
    line-height: 1.4;
}.sign_up_now .support_help {
    overflow: hidden;
    position: relative;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    background: linear-gradient(90deg, rgb(163,200,193), rgb(100,180,167));
    border-radius: 30px;
    z-index: 5;
    padding: 20px 50px;
    transition: all 0.4s ease;
    color: #ffffff;
    text-decoration: none;
}.sign_up_now .support_help::before {
    z-index: -1;
    position: absolute;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    background: linear-gradient(90deg, rgb(100,180,167), rgb(163,200,193));
}.sign_up_now .support_help:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.05);
}.sign_up_now .support_help:hover::before {
    opacity: 1;
}.sign_up_now .container p::before {
    animation: morph 8s ease-in-out infinite;
    top: -10%;
    content: '';
    left: -20%;
    opacity: 0.4;
    width: 140%;
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    background: #ffffff;
    z-index: -1;
    height: 120%;
    position: absolute;
}.sign_up_now .support_help::after {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 6s infinite;
    top: 0;
    content: '';
    left: -100px;
    height: 100%;
    width: 30px;
    transform: skewX(-15deg);
    position: absolute;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

@media (max-width: 991px) {.sign_up_now {
    padding: 90px 0;
}.sign_up_now .container p {
    margin-bottom: 50px;
    font-size: calc(18px * 1.2);
    padding: 35px 50px;
}.sign_up_now .support_help {
    padding: 18px 40px;
}
}

@media (max-width: 767px) {.sign_up_now {
    padding: 70px 0;
}.sign_up_now .container p {
    font-size: 18px;
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    padding: 30px 40px;
    margin-bottom: 40px;
}.sign_up_now .support_help {
    padding: 15px 35px;
}.sign_up_now .container p::before {
    animation: none;
}
}

@media (max-width: 480px) {.sign_up_now {
    padding: 50px 0;
}.sign_up_now .container p {
    padding: 25px 30px;
    border-radius: 30px;
    font-size: calc(14px * 1.2);
    margin-bottom: 30px;
}.sign_up_now .support_help {
    padding: 12px 30px;
    font-size: calc(20px * 0.9);
}}.privacy_block {
    font-family: Arial, sans-serif;
    padding: 40px;
    overflow: hidden;
    width: 100%;
    background-color: rgb(100,180,167,0.5);
    height: 100%;
    color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}.privacy_block h1 {
    margin-top: 40px;
    color: rgb(163,200,193);
    margin-bottom: 30px;
    font-size: 46px;
    border-bottom: 2px solid rgb(163,200,193,0.5);
    padding-bottom: 10px;
    font-weight: 700;
}.privacy_block h2 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    color: rgb(100,180,167);
}.privacy_block h3, .privacy_block h4, .privacy_block h5, .privacy_block h6 {
    color: rgb(163,200,193);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 25px;
}.privacy_block ul, .privacy_block ol {
    list-style-position: inside;
    line-height: 1.6;
    padding: 15px 0;
    font-size: 12px;
    padding-left: 20px;
}.privacy_block li {
    padding-left: 5px;
    margin-bottom: 12px;
    border-left: 3px solid rgb(163,200,193);
}.privacy_block section {
    padding: 20px;
    background: rgb(213,226,223);
    border-radius: 10px;
}.privacy_block p, .privacy_block span, .privacy_block div {
    line-height: 1.8;
    color: #000000;
    font-size: 12px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 800px) {.privacy_block {
    padding: 20px;
}.privacy_block h1 {
    font-size: calc(19px - 10px);
}.privacy_block h2 {
    font-size: calc(19px - 8px);
}.privacy_block h3, .privacy_block h4, .privacy_block h5, .privacy_block h6 {
    font-size: calc(19px - 6px);
}.privacy_block ul, .privacy_block ol {
    padding-left: 10px;
}}

.privacy_block a {
    text-decoration: none;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 1px solid rgb(163,200,193,0.5);
    color: rgb(163,200,193);
}.privacy_block a:hover {
    border-bottom-color: rgb(100,180,167,0.5);
    color: rgb(100,180,167);
}.connect_with_us {
    background: linear-gradient(160deg, rgb(213,226,223) 0%, rgb(163,200,193,0.5) 100%);
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}.connect_with_us::before {
    content: "";
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(163,200,193,0.5),
        rgb(163,200,193,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.03;
    position: absolute;
    width: 100%;
    height: 100%;
}.connect_with_us .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 20px;
}.connect_with_us h2 {
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 40px;
    text-align: center;
}.connect_with_us .support_support {
    border-radius: 21px;
    max-width: 800px;
    overflow: hidden;
    display: flex;
    margin: 0 auto;
    background: #ffffff;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}.connect_with_us .pic_hover {
    width: 100%;
    height: 200px;
    position: relative;
}.connect_with_us .reach_inquiry {
    position: relative;
    width: 100%;
    padding: 50px;
}.connect_with_us form {
    width: 100%;
}.connect_with_us form h3 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    position: relative;
    font-size: 24px;
    display: inline-block;
    color: #000000;
    margin-bottom: 30px;
}.connect_with_us form h3::after {
    bottom: -10px;
    position: absolute;
    height: 3px;
    background: rgb(163,200,193);
    left: 0;
    border-radius: 1.5px;
    content: "";
    width: 100%;
}.connect_with_us form input[type="text"] {
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    padding: 15px 20px;
    width: 100%;
    font-size: 14px;
    background: rgb(213,226,223);
    color: #000000;
    border: 2px solid transparent;
}.connect_with_us form input[type="text"]:focus {
    outline: none;
    border-color: rgb(163,200,193);
}.connect_with_us form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}.connect_with_us .reach_widget {
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
}.connect_with_us .reach_widget input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.connect_with_us .reach_widget label {
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
}.connect_with_us .reach_widget label::before {
    position: absolute;
    background: rgb(213,226,223);
    top: 2px;
    border-radius: 10px;
    left: 0;
    content: "";
    transition: all 0.3s ease;
    height: 22px;
    width: 22px;
}.connect_with_us .reach_widget input[type="checkbox"]:checked + label::before {
    background: rgb(163,200,193);
}.connect_with_us .reach_widget input[type="checkbox"]:checked + label::after {
    border-right: 2px solid #ffffff;
    position: absolute;
    height: 12px;
    top: 5px;
    left: 8px;
    width: 6px;
    transform: rotate(45deg);
    border-bottom: 2px solid #ffffff;
    content: "";
}.connect_with_us .reach_widget label a {
    text-decoration: none;
    color: rgb(163,200,193);
    transition: all 0.3s ease;
}.connect_with_us .reach_widget label a:hover {
    text-decoration: underline;
}.connect_with_us form .support_help {
    border: none;
    overflow: hidden;
    padding: 16px 20px;
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
    position: relative;
    background: rgb(163,200,193);
    text-align: center;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}.connect_with_us form .support_help:hover {
    background: rgb(100,180,167);
}.connect_with_us svg {
    fill: rgb(163,200,193);
    height: 20px;
    width: 20px;
}.connect_with_us svg path {
    transition: fill 0.3s ease;
    fill: rgb(163,200,193);
}

@media screen and (min-width: 768px) {.connect_with_us .support_support {
    max-width: 1000px;
    flex-direction: row;
}.connect_with_us .pic_hover {
    width: 40%;
    min-height: 400px;
    height: auto;
}.connect_with_us .reach_inquiry {
    width: 60%;
}
}

@media screen and (min-width: 992px) {.connect_with_us .pic_hover {
    width: 50%;
}.connect_with_us .reach_inquiry {
    padding: 60px;
    width: 50%;
}
}

@media screen and (min-width: 1200px) {.connect_with_us .support_support {
    max-width: 1100px;
}.connect_with_us .pic_hover {
    min-height: 500px;
}
}

@media screen and (max-width: 576px) {.connect_with_us {
    padding: 60px 0;
}.connect_with_us h2 {
    font-size: calc(40px * 0.7);
    margin-bottom: 30px;
}.connect_with_us .reach_inquiry {
    padding: 30px 20px;
}.connect_with_us form h3 {
    font-size: calc(24px * 0.9);
}}.appNote {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(213,226,223) 0%, rgb(100,180,167,0.5) 100%);
    position: relative;
    padding: 5rem 0;
}.appNote::before {
    pointer-events: none;
    background-image: 
        linear-gradient(90deg, rgb(163,200,193,0.5) 1px, transparent 1px),
        linear-gradient(0deg, rgb(163,200,193,0.5) 1px, transparent 1px);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background-size: 35px 35px;
    position: absolute;
    content: "";
    transform: perspective(1000px) rotateX(5deg);
    opacity: 0.07;
}.appNote::after {
    z-index: 0;
    filter: blur(30px);
    top: -20%;
    right: -10%;
    height: 70%;
    opacity: 0.15;
    position: absolute;
    animation: float 15s infinite ease-in-out;
    content: "";
    width: 60%;
    background: radial-gradient(circle, rgb(163,200,193,0.5) 0%, transparent 70%);
}.appNote .container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    position: relative;
}.appNote h2 {
    font-weight: 700;
    color: #000000;
    position: relative;
    max-width: 80%;
    animation: slideUp 0.8s forwards ease-out 0.2s;
    margin-bottom: 2.5rem;
    font-size: 32px;
    transform: translateY(20px);
    opacity: 0;
}.appNote h2::after {
    left: 0;
    position: absolute;
    animation: expandLine 1s forwards ease-out 1s;
    height: 3px;
    transform: scaleX(0);
    content: "";
    transform-origin: left;
    bottom: -12px;
    background: linear-gradient(90deg, rgb(163,200,193) 0%, rgb(163,200,193,0.5) 100%);
    width: 80px;
}.appNote .skills_center {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 
                0 0 0 1px rgba(0, 0, 0, 0.03);
    position: relative;
    opacity: 0;
    background: #ffffff;
    padding: 3.5rem;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards ease-out 0.5s;
}.appNote .skills_center::before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgb(163,200,193,0.5) 0%, transparent 100%);
    width: 100%;
    opacity: 0.03;
    left: 0;
}.appNote .skills_center ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.appNote .skills_center li {
    padding-left: 2rem;
    position: relative;
}.appNote .skills_center li::before {
    background-color: rgb(163,200,193);
    position: absolute;
    transform: scale(0);
    content: "";
    border-radius: 50%;
    height: 8px;
    animation: pulseIn 0.6s forwards ease-out 1.2s;
    left: 0;
    width: 8px;
    top: 8px;
}.appNote .skills_center span {
    color: #000000;
    position: relative;
    display: block;
    opacity: 0;
    animation: fadeIn 0.8s forwards ease-out 0.9s;
    line-height: 1.7;
    transform: translateX(10px);
    font-size: 13px;
    font-family: Arial, sans-serif;
}

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

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

@keyframes pulseIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

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

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

@media (max-width: 991px) {.appNote {
    padding: 4rem 0;
}.appNote h2 {
    max-width: 100%;
    font-size: calc(32px * 0.9);
}.appNote .skills_center {
    padding: 2.5rem;
}
}

@media (max-width: 767px) {.appNote {
    padding: 3rem 0;
}.appNote::before {
    background-size: 25px 25px;
}.appNote h2 {
    margin-bottom: 2rem;
    font-size: calc(32px * 0.8);
}.appNote .skills_center {
    padding: 2rem;
}.appNote .skills_center li {
    padding-left: 1.5rem;
}.appNote .skills_center li::before {
    height: 6px;
    width: 6px;
    top: 6px;
}
}

@media (max-width: 480px) {.appNote {
    padding: 2.5rem 0;
}.appNote h2 {
    font-size: calc(32px * 0.7);
    margin-bottom: 1.5rem;
}.appNote .skills_center {
    padding: 1.5rem;
}.appNote h2::after {
    width: 60px;
    bottom: -8px;
    height: 2px;
}}header {
    overflow: visible;
    z-index: 99;
    background: linear-gradient(135deg, rgb(213,226,223), #ffffff);
    position: relative;
    width: 100%;
}header::before {
    width: 100%;
    background-size: 20px 20px;
    position: absolute;
    bottom: 0;
    opacity: 0.3;
    height: 15px;
    content: "";
    background: 
        radial-gradient(
            circle at 0% 50%,
            transparent 6px,
            rgb(163,200,193,0.5) 6px,
            rgb(163,200,193,0.5) 10px,
            transparent 10px
        ) repeat-x;
    left: 0;
}header .head_lesson {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}header .head_lesson::before,
header .head_lesson::after {
    background: linear-gradient(to right, rgb(163,200,193), transparent);
    content: "";
    position: absolute;
    width: 30%;
    height: 2px;
}header .head_lesson::before {
    top: 10px;
    left: 0;
}header .head_lesson::after {
    bottom: 10px;
    right: 0;
    background: linear-gradient(to left, rgb(100,180,167), transparent);
}header .head_lesson .head_guide {
    z-index: 2;
    position: relative;
}header .head_lesson .head_guide::before {
    content: "";
    background: rgb(163,200,193,0.5);
    position: absolute;
    z-index: -1;
    transition: transform 0.5s ease-in-out;
    width: 140%;
    opacity: 0.05;
    height: 140%;
    top: -20%;
    border-radius: 60% 40% 50% 30% / 40% 50% 60% 50%;
    left: -20%;
}header .head_lesson .head_guide:hover::before {
    transform: rotate(15deg) scale(1.1);
}header .head_lesson .head_guide .top_pagewrap {
    display: block;
    transition: transform 0.3s ease;
}header .head_lesson .head_guide:hover .top_pagewrap {
    transform: translateY(-3px);
}header .head_lesson .head_guide .top_pagewrap svg {
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
    height: 45px;
    width: auto;
}header .head_lesson .main_master {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}header .head_lesson .main_master::before {
    z-index: -1;
    height: 100%;
    width: 100%;
    left: 0;
    background: rgb(100,180,167,0.5);
    content: "";
    opacity: 0.05;
    position: absolute;
    top: 0;
    transition: all 0.5s ease;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}header .head_lesson .main_master:hover::before {
    opacity: 0.08;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}header .head_lesson .main_master .top_info {
    position: relative;
    margin: 0 8px;
}header .head_lesson .main_master .top_info a {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    color: #000000;
    transition: all 0.4s ease;
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 16px;
    overflow: hidden;
    text-decoration: none;
}header .head_lesson .main_master .top_info a:hover {
    color: #ffffff;
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}header .head_lesson .main_master .top_info a::before {
    border-radius: 0% 0% 0% 0% / 0% 0% 0% 0%;
    transition: transform 0.4s ease, border-radius 0.4s ease;
    width: 100%;
    transform-origin: right top;
    background: rgb(163,200,193);
    left: 0;
    transform: scale(0);
    z-index: -1;
    content: "";
    height: 100%;
    top: 0;
    position: absolute;
}header .head_lesson .main_master .top_info a:hover::before {
    transform: scale(1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}header .head_lesson .main_master .top_info:nth-child(2n) a::before {
    transform-origin: left bottom;
    background: rgb(100,180,167);
}header .head_lesson .main_master .top_info:nth-child(2n) a:hover::before {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}header .head_lesson .main_master .top_info:hover {
    animation: menu-wobble 1s ease;
}

@keyframes menu-wobble {
    0%, 100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-3px) rotate(-1deg);
    }
    30% {
        transform: translateX(2px) rotate(1deg);
    }
    45% {
        transform: translateX(-2px) rotate(-0.5deg);
    }
    60% {
        transform: translateX(1px) rotate(0.5deg);
    }
    75% {
        transform: translateX(-1px) rotate(-0.25deg);
    }
}

@media (max-width: 992px) {header .head_lesson {
    flex-direction: column;
    padding: 20px 15px;
}header .head_lesson .head_guide {
    margin-bottom: 15px;
}header .head_lesson .main_master {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}header .head_lesson .main_master .top_info {
    margin: 5px;
}header .head_lesson .main_master .top_info a {
    padding: 8px 12px;
    font-size: calc(16px - 1px);
}
}

@media (max-width: 767px) {header .head_lesson {
    padding: 15px 10px;
}header .head_lesson .head_guide .top_pagewrap svg {
    height: 40px;
}header .head_lesson .main_master .top_info a {
    padding: 6px 10px;
    font-size: calc(16px - 2px);
}
}