* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}.container {
    width: 1178px;
    max-width: 100%;
    margin: auto;
}.wrapper-skeleton {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-height: 100%;
}html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
    color: #000000;
    scroll-behavior: smooth;
}.enroll_info {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    height: 30px;
    width: 30px;
}::-webkit-scrollbar {
    width: 8px;
    height: 10px;
    padding: 5px;
}::-webkit-scrollbar-track {
    background: rgb(234,239,237);
    box-shadow: inset 5px -2px 3px 7px rgba(0, 0, 0, 0.8);
    margin: 3px 0;
}::-webkit-scrollbar-track:active {
    background: rgb(198,212,202,0.5);
}::-webkit-scrollbar-thumb {
    border: 3px ridge rgb(234,239,237);
    background: rgb(198,212,202);
    border-radius: 9999px;
}::-webkit-scrollbar-thumb:active {
    background: rgb(161,179,166);
    box-shadow: inset -3px 5px 9px 5px rgba(0, 0, 0, 0.3);
}::-webkit-scrollbar-corner {
    background: rgb(255, 255, 255, 0.5);
    border-radius: 1px;
}

@media (max-width: 768px) {::-webkit-scrollbar {
    width: 6px;
}::-webkit-scrollbar-thumb {
    background: rgb(161,179,166,0.5);
}}

.main_class {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header .header_bar {
    background: rgb(234,239,237);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 100;
    position: relative;
}header .header_bar::before {
    height: 100%;
    content: "";
    background: 
        radial-gradient(circle at 10% 20%, rgb(198,212,202,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(161,179,166,0.5) 0%, transparent 30%);
    z-index: -1;
    left: 0;
    opacity: 0.2;
    width: 100%;
    top: 0;
    position: absolute;
}header .header_bar::after {
    width: 40%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    top: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(135deg, transparent 25%, rgb(198,212,202,0.5) 100%);
    content: "";
    height: 100%;
    opacity: 0.1;
    position: absolute;
}header .container {
    padding: 1.8rem 2rem;
    position: relative;
}header .header_guide {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 3rem;
}header .top_guide {
    z-index: 2;
    position: relative;
}header .head_sitebar {
    position: relative;
    display: block;
    z-index: 2;
}header .head_sitebar::before,
header .head_sitebar::after {
    content: "";
    background: rgb(198,212,202,0.5);
    border-radius: 50%;
    transition: all 0.5s ease;
    opacity: 0;
    position: absolute;
    z-index: -1;
}header .head_sitebar::before {
    width: 50px;
    top: -15px;
    left: -15px;
    height: 50px;
}header .head_sitebar::after {
    width: 25px;
    bottom: -5px;
    height: 25px;
    background: rgb(161,179,166,0.5);
    right: -10px;
}header .head_sitebar:hover::before,
header .head_sitebar:hover::after {
    transform: scale(1.2);
    opacity: 0.6;
}header .head_sitebar svg {
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
    height: 50px;
    transition: all 0.3s ease;
    width: auto;
}header .head_sitebar:hover svg {
    transform: rotate(-5deg);
}header .page_top {
    justify-content: flex-end;
    margin: 0;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    position: relative;
    list-style: none;
    padding: 10px 20px;
    background: linear-gradient(to right, transparent, #ffffff);
    border-radius: 0 25px 25px 0;
    flex-wrap: wrap;
    display: flex;
}header .page_top::after {
    height: 100%;
    background-size: 10px 10px;
    position: absolute;
    background-image: 
        linear-gradient(45deg, rgb(198,212,202,0.5) 25%, transparent 25%, transparent 50%, 
        rgb(198,212,202,0.5) 50%, rgb(198,212,202,0.5) 75%, transparent 75%, transparent);
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0.05;
    animation: moveStripes 20s linear infinite;
}header .head_train {
    position: relative;
    perspective: 800px;
    margin: 5px 8px;
}header .head_train::before {
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
    border-left: 5px solid rgb(198,212,202);
    transform: translateY(-50%) scale(0);
    height: 0;
    border-bottom: 5px solid transparent;
    position: absolute;
    content: "";
    left: -10px;
    top: 50%;
    opacity: 0;
    width: 0;
}header .head_train:hover::before {
    transform: translateY(-50%) scale(1);
    left: -15px;
    opacity: 1;
}header .head_train a {
    transition: all 0.3s ease;
    font-weight: 600;
    transform-style: preserve-3d;
    border: 1px solid transparent;
    padding: 10px 18px;
    display: block;
    overflow: hidden;
    background: transparent;
    font-size: 17px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #000000;
    border-radius: 10px;
    position: relative;
}header .head_train a::before {
    top: 0;
    z-index: -1;
    width: 100%;
    background: #ffffff;
    position: absolute;
    height: 100%;
    content: "";
    transform: translateZ(-1px);
    left: 0;
}header .head_train a::after {
    bottom: 0;
    height: 2px;
    left: 50%;
    position: absolute;
    transition: width 0.3s ease;
    background: rgb(198,212,202);
    width: 0;
    content: "";
    transform: translateX(-50%);
}header .head_train a:hover {
    transform: translateZ(20px);
    color: rgb(198,212,202);
    border-color: rgb(198,212,202,0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}header .head_train a:hover::after {
    width: 80%;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@media (max-width: 991px) {header .header_guide {
    gap: 2rem;
    justify-items: center;
    grid-template-columns: 1fr;
}header .page_top {
    justify-content: center;
    background: #ffffff;
    clip-path: none;
    border-radius: 25px;
    width: 100%;
}
}

@media (max-width: 767px) {header .container {
    padding: 1.5rem 1rem;
}header .head_train {
    margin: 3px 5px;
}header .head_train a {
    padding: 8px 15px;
    font-size: calc(17px - 1px);
}
}

@media (max-width: 480px) {header .page_top {
    align-items: center;
    flex-direction: column;
    padding: 15px;
}header .head_train {
    width: 100%;
    margin: 3px 0;
}header .head_train a {
    text-align: center;
    width: 100%;
}header .head_train::before {
    display: none;
}header .head_sitebar svg {
    height: 40px;
}}.tariff_package {
    overflow: hidden;
    padding: 120px 0;
    background: rgb(234,239,237);
    position: relative;
}.tariff_package::before {
    top: 0;
    width: 100%;
    opacity: 0.08;
    height: 100%;
    background: linear-gradient(135deg, rgb(198,212,202,0.5), rgb(161,179,166,0.5));
    content: "";
    left: 0;
    z-index: 0;
    position: absolute;
}.tariff_package .container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 1320px;
    padding: 0 15px;
}.tariff_package .learning_pricing {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
}.tariff_package .study_cost {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}.tariff_package .study_cost h2 {
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 28px;
    position: relative;
    color: #000000;
}.tariff_package .study_cost h2::after {
    width: 80px;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 3px;
    content: "";
    background: linear-gradient(90deg, rgb(198,212,202), rgb(161,179,166));
    height: 3px;
    left: 50%;
    position: absolute;
}.tariff_package .plan_fee {
    font-size: 17px;
    margin-top: 20px;
    color: #000000;
    max-width: 600px;
    margin-left: auto;
    line-height: 1.7;
    margin-right: auto;
}.tariff_package .skill_pricing {
    margin: 0 auto;
    width: 100%;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}.tariff_package .price_tiers {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    text-decoration: none;
    position: relative;
    display: block;
    z-index: 1;
}.tariff_package .price_tiers:hover {
    transform: translateY(-8px);
}.tariff_package .cost_fee {
    flex-direction: column;
    background: linear-gradient(145deg, #f6f6f6, #ffffff);
    display: flex;
    border-radius: 16px;
    box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.05),
              -16px -16px 32px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
}.tariff_package .price_tiers:hover .cost_fee {
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.08),
              -8px -8px 24px rgba(255, 255, 255, 1);
}.tariff_package .enroll_cost {
    flex: 1;
    padding: 30px;
    z-index: 2;
    position: relative;
}.tariff_package .enroll_cost h3 {
    display: inline-block;
    font-weight: 600;
    padding-bottom: 10px;
    font-size: 24px;
    color: #000000;
    position: relative;
    margin-bottom: 15px;
}.tariff_package .enroll_cost h3::after {
    transition: width 0.3s ease;
    bottom: 0;
    width: 40px;
    border-radius: 2px;
    position: absolute;
    height: 3px;
    content: "";
    background: rgb(198,212,202);
    left: 0;
}.tariff_package .price_tiers:hover .enroll_cost h3::after {
    width: 60px;
}.tariff_package .class_rates {
    color: rgb(198,212,202);
    display: inline-block;
    background: linear-gradient(135deg, rgb(198,212,202), rgb(161,179,166));
    background-clip: text !important;
    font-weight: 700;
    color: transparent;
    margin-bottom: 20px;
    -webkit-background-clip: text !important;
    position: relative;
    font-size: 1.8rem;
}.tariff_package .class_rates::before {
    content: "";
    width: 100%;
    background: linear-gradient(90deg, rgb(198,212,202,0.5), transparent);
    bottom: -5px;
    left: 0;
    height: 1px;
    position: absolute;
}.tariff_package .enroll_cost p {
    position: relative;
    line-height: 1.6;
    word-break: break-word;
    font-size: calc(17px - 2px);
    overflow-wrap: break-word;
    margin-bottom: 20px;
    color: #000000;
}.tariff_package .img_container {
    transition: all 0.5s ease;
    width: 100%;
    overflow: hidden;
    height: 220px;
    border-radius: 0 0 12px 12px;
    position: relative;
}.tariff_package .img_container::after {
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: opacity 0.3s ease;
    opacity: 0.6;
    content: "";
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    top: 0;
}.tariff_package .price_tiers:hover .img_container::after {
    opacity: 0.3;
}

@media (min-width: 768px) {.tariff_package .skill_pricing {
    grid-template-columns: repeat(2, 1fr);
}.tariff_package .cost_fee {
    height: 100%;
}.tariff_package .img_container {
    height: 240px;
}
}

@media (min-width: 992px) {.tariff_package {
    padding: 160px 0;
}.tariff_package .learning_pricing {
    flex-direction: row;
    align-items: center;
    gap: 80px;
}.tariff_package .study_cost {
    text-align: left;
    padding: 0;
    flex: 0 0 30%;
}.tariff_package .study_cost h2 {
    font-size: calc(28px + 4px);
}.tariff_package .study_cost h2::after {
    left: 0;
    transform: none;
}.tariff_package .plan_fee {
    margin-left: 0;
}.tariff_package .skill_pricing {
    flex: 0 0 70%;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {.tariff_package .skill_pricing {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}.tariff_package .enroll_cost {
    padding: 40px;
}.tariff_package .img_container {
    height: 260px;
}.tariff_package .price_tiers:nth-child(odd) {
    transform: translateY(20px);
}.tariff_package .price_tiers:nth-child(odd):hover {
    transform: translateY(12px);
}.tariff_package .price_tiers:nth-child(even):hover {
    transform: translateY(-8px);
}
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

@media (prefers-reduced-motion: no-preference) {.tariff_package .price_tiers:active .cost_fee {
    transition: transform 0.2s ease;
    transform: scale(0.98);
}
}

@media (max-width: 767px) {.tariff_package {
    padding: 80px 0;
}.tariff_package .learning_pricing {
    gap: 40px;
}.tariff_package .study_cost h2 {
    font-size: calc(28px - 4px);
}.tariff_package .img_container {
    height: 200px;
}.tariff_package .enroll_cost {
    padding: 25px;
}.tariff_package .class_rates {
    font-size: 1.5rem;
}}.info_details {
    padding: 120px 0 80px;
    perspective: 1000px;
    background: linear-gradient(135deg, rgb(234,239,237) 0%, rgba(245, 245, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}.info_details::before {
    position: absolute;
    width: 120%;
    left: -10%;
    background: linear-gradient(120deg, rgb(198,212,202,0.5) 0%, transparent 70%);
    top: -50%;
    pointer-events: none;
    transform: rotate(-15deg) translateZ(-10px);
    content: "";
    opacity: 0.05;
    z-index: 0;
    height: 200%;
}.info_details::after {
    background: radial-gradient(circle at bottom right, rgb(161,179,166,0.5) 0%, transparent 70%);
    height: 40%;
    bottom: 0;
    position: absolute;
    right: 0;
    opacity: 0.1;
    width: 60%;
    z-index: 0;
    pointer-events: none;
    content: "";
}.info_details .container {
    padding: 0 20px;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    margin: 0 auto;
    max-width: 1200px;
}.info_details .edu_form {
    position: relative;
    transform: translateZ(0);
    grid-template-columns: 1fr;
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    background: #ffffff;
    gap: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    display: grid;
}.info_details h3 {
    font-size: calc(33px * 1.1);
    letter-spacing: -0.02em;
    color: #000000;
    font-weight: 700;
    transform: translateZ(10px);
    margin: 0 0 30px;
    position: relative;
}.info_details h3::after {
    transform-origin: left;
    left: 0;
    bottom: -10px;
    transform: scaleX(1);
    height: 3px;
    width: 80px;
    position: absolute;
    background: rgb(198,212,202);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    content: "";
}.info_details h3:hover::after {
    transform: scaleX(1.5);
}.info_details p {
    line-height: 1.7;
    transform: translateZ(5px);
    margin-bottom: 20px;
    color: #000000;
    max-width: 90%;
    font-size: 18px;
}.info_details h5 {
    display: flex;
    font-weight: 600;
    gap: 10px;
    color: #000000;
    font-size: 23px;
    letter-spacing: 0.01em;
    align-items: center;
    text-transform: capitalize;
    margin: 0 0 10px;
    transform: translateZ(7px);
}.info_details svg {
    transform: translateY(2px);
    transition: transform 0.3s ease, fill 0.3s ease;
    height: 22px;
    width: 22px;
}.info_details svg path {
    fill: rgb(198,212,202);
    transition: fill 0.3s ease;
}.info_details .edu_asknow {
    transform: translateZ(8px);
    list-style: none;
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 0;
    margin: 20px 0 0;
}.info_details .edu_asknow li {
    position: relative;
    transition: transform 0.3s ease;
}.info_details .edu_asknow li:hover {
    transform: translateX(5px);
}.info_details .learn_faq {
    padding: 10px 15px;
    font-size: calc(18px * 1.05);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    gap: 10px;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}.info_details .learn_faq:hover {
    color: rgb(198,212,202);
    border-left-color: rgb(198,212,202);
}.info_details .learn_faq:hover svg {
    transform: translateY(2px) scale(1.1);
}.info_details .learn_faq:hover svg path {
    fill: rgb(161,179,166);
}.info_details .learn_faq:active {
    transform: scale(0.98);
}

@media (min-width: 768px) {.info_details .edu_form {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 70px;
    gap: 40px 60px;
}.info_details h3 {
    margin-bottom: 10px;
    grid-column: 1 / -1;
}.info_details .edu_form > div:first-of-type {
    grid-column: 1 / -1;
}.info_details .edu_asknow {
    grid-column: 2 / 3;
    align-self: start;
}
}

@media (min-width: 1024px) {.info_details {
    padding: 140px 0 100px;
}.info_details .edu_form {
    gap: 40px 80px;
    padding: 70px 80px;
    grid-template-columns: 1.5fr 1fr;
}.info_details h3 {
    font-size: calc(33px * 1.2);
}.info_details h3::after {
    width: 100px;
}.info_details p {
    font-size: calc(18px * 1.05);
    line-height: 1.8;
}.info_details .learn_faq {
    padding: 12px 20px;
}
}

@media (max-width: 767px) {.info_details {
    padding: 80px 0 60px;
}.info_details .edu_form {
    padding: 40px 30px;
}.info_details h3 {
    font-size: calc(33px * 0.9);
    margin-bottom: 25px;
}.info_details p {
    max-width: 100%;
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 480px) {.info_details {
    padding: 60px 0 40px;
}.info_details .edu_form {
    padding: 30px 20px;
}.info_details h3 {
    font-size: calc(33px * 0.85);
}.info_details .learn_faq {
    padding: 8px 12px;
    font-size: calc(18px * 0.95);
}.info_details svg {
    height: 20px;
    width: 20px;
}}.title_page {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    color: #ffffff;
    font-family: Arial, sans-serif;
}.title_page .learn_base {
    display: flex;
    width: 100%;
    min-height: 100vh;
    position: relative;
    justify-content: center;
    align-items: center;
}.title_page .learn_base::before {
    background: linear-gradient(135deg, 
        rgba(#000000, 0.85) 0%,
        rgba(rgb(161,179,166), 0.75) 50%,
        rgba(rgb(198,212,202), 0.65) 100%);
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    content: "";
}.title_page .knowledge_center {
    position: relative;
    animation: fadeInUp 1.2s ease-out forwards;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transform: perspective(1000px) rotateX(2deg);
    width: 90%;
    padding: 4rem 2rem;
    z-index: 2;
    grid-template-columns: 1fr;
    max-width: 1200px;
    display: grid;
    gap: 3rem;
    background: linear-gradient(165deg, 
        rgba(rgb(161,179,166), 0.15) 0%,
        rgba(rgb(198,212,202), 0.2) 100%);
}.title_page .knowledge_center > div:first-child {
    transform: translateX(-20px);
    position: relative;
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out forwards 0.2s;
}.title_page .knowledge_center > div:last-child {
    animation: slideInFromRight 0.8s ease-out forwards 0.4s;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
}.title_page .title_style_header {
    background: linear-gradient(90deg, 
        #ffffff 0%, 
        rgb(161,179,166) 70%, 
        rgb(198,212,202) 100%);
    -webkit-background-clip: text !important;
    line-height: 1.2;
    transform-origin: left center;
    transform: scale(1);
    font-weight: 700;
    color: transparent;
    transition: transform 0.3s ease;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: clamp(2.5rem, 5vw, 41px);
    margin-bottom: 1.5rem;
    background-clip: text !important;
}.title_page h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    color: #ffffff;
    line-height: 1.4;
    font-size: clamp(1.25rem, 3vw, 20px);
    position: relative;
}.title_page h3::before {
    left: 0;
    position: absolute;
    animation: scaleUp 0.6s ease-out forwards 0.8s;
    top: 0.5rem;
    content: "";
    bottom: 0.5rem;
    transform: scaleY(0);
    background: rgb(161,179,166);
    width: 3px;
    transform-origin: bottom;
}.title_page p {
    font-size: clamp(1rem, 2vw, 12px);
    margin-top: 1.5rem;
    line-height: 1.6;
    max-width: 90%;
    padding-bottom: 0.5rem;
    position: relative;
    color: rgba(#ffffff, 0.9);
    font-weight: 400;
}.title_page p::after {
    width: 50%;
    background: linear-gradient(90deg, 
        rgb(161,179,166) 0%, 
        transparent 100%);
    transform: scaleX(0);
    bottom: 0;
    animation: scaleWidth 0.8s ease-out forwards 1s;
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    transform-origin: left;
}@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(5deg) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(2deg) translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

.title_page.course_head:hover .title_style_header {
    transform: scale(1.02);
}

@media (min-width: 768px) {.title_page .knowledge_center {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    padding: 5rem 3rem;
}.title_page .title_style_header {
    margin-bottom: 0;
}.title_page .knowledge_center > div:first-child {
    display: flex;
    align-items: center;
}.title_page p {
    max-width: 80%;
}
}

@media (min-width: 1200px) {.title_page .knowledge_center {
    padding: 6rem 4rem;
}.title_page .title_style_header {
    font-size: 41px;
}.title_page h3 {
    font-size: 20px;
}.title_page p {
    font-size: 12px;
    max-width: 75%;
}
}

@media (max-width: 767px) {.title_page .learn_base {
    min-height: 80vh;
}.title_page .knowledge_center {
    gap: 2rem;
    width: 95%;
    padding: 3rem 1.5rem;
}.title_page h3 {
    font-size: 1.1rem;
}.title_page p {
    margin-top: 1rem;
}
}

@media (prefers-reduced-motion: reduce) {.title_page .knowledge_center,
    .title_page .knowledge_center > div:first-child,
    .title_page .knowledge_center > div:last-child,
    .title_page h3::before,
    .title_page p::after {
    transform: none;
    opacity: 1;
    animation: none;
}}footer {
    width: 100%;
    position: relative;
}.enroll_info {
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    padding: 0 0 30px;
}footer .sponsor_logo {
    z-index: 1;
    position: relative;
}footer .feedback_formbs5 {
    background-color: rgb(161,179,166);
    color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 70px;
    gap: 20px;
    flex-wrap: wrap;
    display: flex;
    padding: 40px 20px;
    position: relative;
    justify-content: center;
}footer .feedback_formbs5::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    left: 0;
    top: 0;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
}footer .info_item {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex: 1 1 200px;
    transition: all 0.3s ease;
    max-width: 300px;
    align-items: center;
}footer .info_item:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.3);
}footer .info_item svg {
    height: 22px;
    width: 22px;
    flex-shrink: 0;
    fill: #ffffff;
    margin-right: 15px;
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    font-size: 12px;
    color: #ffffff;
}footer .info_item a:hover {
    text-decoration: underline;
}footer .text_main_holder {
    grid-template-columns: 1fr;
    display: grid;
    gap: 40px;
    position: relative;
    margin-top: -30px;
}footer .text_main_holder::before {
    top: 0;
    left: 0;
    height: 100%;
    content: "";
    width: 100%;
    position: absolute;
    z-index: -1;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    background-color: #ffffff;
}footer .top_guide {
    text-align: center;
    padding-top: 60px;
}footer .top_guide svg {
    width: auto;
    margin-bottom: 15px;
    height: 45px;
}footer .design_res {
    line-height: 1.6;
    color: #000000;
    margin: 0 auto;
    font-size: 13px;
    max-width: 350px;
    text-align: center;
}footer .page_top {
    padding: 30px;
    position: relative;
    margin: 0 20px;
    background-color: rgb(234,239,237);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}footer .page_top h5 {
    color: #000000;
    font-size: 21px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}footer .page_top h5::after {
    left: 0;
    bottom: -8px;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(198,212,202), transparent);
    height: 2px;
    width: 100%;
}footer .header_wrap {
    margin-bottom: 25px;
    display: flex;
    gap: 10px 30px;
    flex-direction: column;
    flex-wrap: wrap;
}footer .header_wrap a {
    padding: 8px 0;
    flex: 1 0 calc(50% - 30px);
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    position: relative;
    transition: all 0.3s ease;
}footer .header_wrap a::after {
    bottom: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
    left: 0;
    height: 1px;
    background-color: rgb(198,212,202);
    content: "";
}footer .header_wrap a:hover {
    padding-left: 5px;
    color: rgb(198,212,202);
}footer .header_wrap a:hover::after {
    width: 100%;
}footer .subscribe_holder {
    color: #ffffff;
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    background-color: rgb(198,212,202);
    padding: 30px;
    margin: 0 20px;
}footer .subscribe_holder::before {
    position: absolute;
    width: 100%;
    content: "";
    pointer-events: none;
    top: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    left: 0;
    height: 100%;
}footer .subscribe_holder h5 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
}footer .subscribe_holder p {
    font-size: 12px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}footer .input_holder {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    font-size: 12px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}footer .email_panel {
    transition: all 0.3s ease;
    background-color: #000000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    border-radius: 10px;
    padding: 15px;
}footer .email_panel:hover {
    background-color: rgb(161,179,166);
}footer .footer_clients {
    padding-top: 20px;
    margin-top: 60px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}footer .footer_subscribe {
    font-size: 13px;
    color: #000000;
    text-align: center;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
}footer .email_panel {
    white-space: nowrap;
}footer .top_guide {
    padding-top: 80px;
}
}

@media (max-width: 767px) {footer .feedback_formbs5 {
    padding: 30px 15px 50px;
}footer .page_top, footer .subscribe_holder {
    padding: 25px 20px;
    margin: 0 10px;
}footer .footer_clients {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .feedback_formbs5 {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}footer .page_top h5, footer .subscribe_holder h5 {
    font-size: calc(21px - 2px);
}footer .header_wrap a {
    flex: 1 0 100%;
}footer .input_holder input[type="email"],
    footer .email_panel {
    padding: 12px;
}}.course_offering {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(234,239,237) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 5rem 0;
    position: relative;
}.course_offering::before {
    z-index: 1;
    content: "";
    position: absolute;
    transform: rotate(15deg);
    width: 20vw;
    height: 20vw;
    right: -5%;
    background: linear-gradient(225deg, rgb(198,212,202) 0%, transparent 70%);
    opacity: 0.15;
    top: -5%;
}.course_offering::after {
    background: linear-gradient(45deg, rgb(161,179,166) 0%, transparent 70%);
    z-index: 1;
    opacity: 0.1;
    left: -5%;
    height: 15vw;
    width: 15vw;
    bottom: -5%;
    position: absolute;
    content: "";
    transform: rotate(-10deg);
}.course_offering .container {
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
}.course_offering h2 {
    line-height: 1.3;
    font-size: 32px;
    position: relative;
    color: #000000;
    margin-bottom: 3rem;
    transform: translateX(-0.5rem);
    font-weight: 700;
    max-width: 90%;
}.course_offering h2::after {
    content: "";
    bottom: -1rem;
    height: 0.35rem;
    background: rgb(198,212,202);
    position: absolute;
    width: 6rem;
    transform-origin: left center;
    left: 0;
    animation: expandWidth 4s ease-in-out infinite alternate;
}.course_offering .lesson_map {
    grid-template-columns: 1fr;
    position: relative;
    gap: 2rem;
    display: grid;
}.course_offering .img_container {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    position: relative;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 93% 100%, 0 100%);
    transform: translateY(0);
    height: 350px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}.course_offering .img_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}.course_offering .img_container::before {
    content: "";
    left: 0;
    position: absolute;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.5));
    width: 100%;
    z-index: 1;
    height: 100%;
    top: 0;
}.course_offering .description_card {
    padding: 0.5rem 0;
    position: relative;
}.course_offering .description_card::before {
    height: 100%;
    background: rgb(161,179,166);
    position: absolute;
    left: -2rem;
    width: 0.3rem;
    opacity: 0.5;
    top: 0;
    content: "";
}.course_offering .description {
    margin-bottom: 1.5rem;
    position: relative;
    max-height: 300px;
    color: #000000;
    overflow-y: auto;
    padding-right: 1rem;
    line-height: 1.7;
    font-size: 16px;
}.course_offering .description::-webkit-scrollbar {
    width: 6px;
}.course_offering .description::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgb(234,239,237);
}.course_offering .description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(198,212,202,0.5);
}.course_offering .description::-webkit-scrollbar-thumb:hover {
    background: rgb(198,212,202);
}.course_offering .description:first-of-type::first-letter {
    line-height: 1;
    font-size: 1.5rem;
    margin-right: 0.5rem;
    float: left;
    border-radius: 10px;
    font-weight: 700;
    color: rgb(198,212,202);
    padding: 0.5rem;
    background: rgb(234,239,237);
}.course_offering .description:last-child {
    margin-bottom: 0;
}

@keyframes expandWidth {
  0% {
    width: 6rem;
  }
  50% {
    width: 10rem;
  }
  100% {
    width: 6rem;
  }
}

@media screen and (min-width: 768px) {.course_offering {
    padding: 7rem 0;
}.course_offering h2 {
    max-width: 70%;
    font-size: calc(32px * 1.1);
}.course_offering .lesson_map {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}.course_offering .img_container {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
    height: 450px;
}.course_offering .description_card {
    padding: 1rem 0;
}.course_offering .description {
    max-height: 450px;
    padding-right: 1.5rem;
}
}

@media screen and (min-width: 992px) {.course_offering {
    padding: 8rem 0;
}.course_offering h2 {
    font-size: calc(32px * 1.2);
    max-width: 60%;
    margin-bottom: 4rem;
}.course_offering .img_container {
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.7s ease;
    height: 500px;
}.course_offering .lesson_map {
    gap: 4rem;
}.course_offering .description_card::before {
    left: -3rem;
    width: 0.4rem;
}.course_offering .description {
    font-size: calc(16px * 1.05);
    padding-right: 2rem;
    max-height: 500px;
    line-height: 1.8;
}.course_offering .description:first-of-type::first-letter {
    font-size: 2rem;
    padding: 0.7rem;
}
}

@media screen and (min-width: 1200px) {.course_offering h2 {
    transform: translateX(-1rem);
}.course_offering .lesson_map {
    gap: 5rem;
}.course_offering .img_container {
    height: 550px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
}.course_offering .description {
    max-height: 550px;
}
}

@media (hover: hover) {.course_offering .img_container {
    cursor: pointer;
}
}

@media (prefers-reduced-motion: reduce) {.course_offering h2::after {
    animation: none;
}.course_offering .img_container {
    transition: none;
}}.privacy_module {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: rgb(234,239,237);
    padding: 50px;
    font-family: Arial, sans-serif;
}.privacy_module h1 {
    color: #000000;
    margin: 20px 0;
    font-weight: 700;
    font-size: 46px;
}.privacy_module h2 {
    font-weight: 600;
    margin: 15px 0;
    font-size: 35px;
    color: rgb(198,212,202);
}.privacy_module h3, .privacy_module h4, .privacy_module h5, .privacy_module h6 {
    margin: 1rem 0;
}.privacy_module ul {
    padding: 0;
    margin: 1rem 0;
    list-style-type: none;
}.privacy_module ul li {
    line-height: 1.6;
    color: #000000;
    font-size: 12px;
    margin-bottom: 10px;
}.privacy_module div {
    margin-top: 30px;
}
@media only screen and (max-width: 800px) {.privacy_module {
    padding: 30px;
}.privacy_module h1 {
    font-size: 35px;
}.privacy_module h2 {
    font-size: 20px;
}}.thanksBox {
    background: linear-gradient(135deg, rgb(234,239,237) 0%, rgba(rgb(198,212,202,0.5), 0.05) 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}.thanksBox::before {
    height: 80%;
    background: linear-gradient(225deg, rgb(161,179,166) 0%, rgba(rgb(161,179,166,0.5), 0.2) 100%);
    width: 40%;
    top: -15%;
    opacity: 0.2;
    transform: rotate(-15deg) skew(5deg);
    position: absolute;
    animation: float 18s ease-in-out infinite alternate;
    right: -5%;
    filter: blur(60px);
    content: "";
    z-index: 0;
}.thanksBox::after {
    z-index: 0;
    position: absolute;
    animation: float 15s ease-in-out infinite alternate-reverse;
    content: "";
    bottom: -10%;
    left: -5%;
    opacity: 0.15;
    width: 35%;
    filter: blur(50px);
    height: 70%;
    transform: rotate(15deg) skew(-5deg);
    background: linear-gradient(45deg, rgb(198,212,202) 0%, rgba(rgb(198,212,202,0.5), 0.1) 100%);
}.thanksBox .container {
    z-index: 1;
    margin: 0 auto;
    max-width: 1140px;
    position: relative;
    padding: 0 1.5rem;
}.thanksBox .learn_studio {
    gap: calc(14px * 1.5);
    position: relative;
    background: rgba(rgb(255, 255, 255, 0.5), 0.95);
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
                0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.05);
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
    grid-template-rows: auto auto;
    opacity: 0;
    display: grid;
    transform: translateY(20px);
    padding: clamp(2rem, 5vw, 3.5rem);
}.thanksBox .learn_studio::before {
    transform: scaleY(0);
    top: 0;
    transform-origin: top;
    background: linear-gradient(180deg, rgb(198,212,202) 0%, rgb(161,179,166) 100%);
    width: 5px;
    animation: growDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
}.thanksBox h5 {
    font-weight: 700;
    font-size: 23px;
    line-height: 1.3;
    color: #000000;
    padding-bottom: 0.75rem;
    margin: 0;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}.thanksBox h5::after {
    bottom: 0;
    content: "";
    position: absolute;
    left: 0;
    background: rgb(161,179,166);
    width: 80px;
    animation: slideRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 1s;
    height: 3px;
    transform: translateX(-100%);
}.thanksBox a {
    text-decoration: none;
    transition: transform 0.4s ease-out;
    overflow: hidden;
    display: block;
    position: relative;
}.thanksBox a:hover {
    transform: translateY(-5px);
}.thanksBox a::before {
    height: 80px;
    border-radius: 50% 0 50% 0;
    content: "";
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: absolute;
    opacity: 0;
    bottom: -20px;
    right: -20px;
    width: 80px;
    transform: scale(0);
    background: linear-gradient(135deg, transparent 50%, rgba(rgb(161,179,166,0.5), 0.1) 50%);
}.thanksBox a:hover::before {
    transform: scale(1);
    opacity: 1;
}.thanksBox p {
    transform: translateY(10px);
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
    animation: fadeIn 0.8s ease-out forwards 1.2s;
    line-height: 1.7;
    color: #000000;
    opacity: 0;
}

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

@keyframes growDown {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

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

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

@media screen and (min-width: 768px) {.thanksBox {
    padding: 8rem 0;
}.thanksBox .learn_studio {
    border-radius: 10px;
    gap: calc(14px * 2);
    padding: clamp(2.5rem, 6vw, 4rem);
}.thanksBox h5 {
    font-size: calc(23px * 1.1);
    padding-bottom: 1rem;
}.thanksBox h5::after {
    height: 4px;
    width: 120px;
}
}

@media screen and (min-width: 992px) {.thanksBox {
    padding: 10rem 0;
}.thanksBox .learn_studio {
    grid-template-columns: 1fr 1fr;
    padding: clamp(3rem, 7vw, 5rem);
    gap: calc(14px * 3);
}.thanksBox h5 {
    padding-bottom: 0;
    font-size: calc(23px * 1.2);
}.thanksBox h5::after {
    bottom: -0.75rem;
}.thanksBox p {
    font-size: calc(14px * 1.05);
}
}

@media screen and (max-width: 767px) {.thanksBox {
    padding: 4rem 0;
}.thanksBox .learn_studio {
    padding: 1.75rem;
}.thanksBox h5 {
    font-size: calc(23px * 0.9);
}.thanksBox p {
    font-size: calc(14px * 0.95);
}
}

@media (prefers-reduced-motion: reduce) {.thanksBox::before,
    .thanksBox::after {
    animation: none;
}.thanksBox .learn_studio,
    .thanksBox h5::after,
    .thanksBox p {
    animation-duration: 0.1s;
}.thanksBox a:hover {
    transform: none;
}}.join_our_mailing_list {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgb(198,212,202,0.5), rgb(234,239,237));
    position: relative;
    overflow: hidden;
}.join_our_mailing_list::before {
    animation: float 15s infinite ease-in-out;
    opacity: 0.7;
    top: -10%;
    content: "";
    z-index: 0;
    height: 300px;
    position: absolute;
    background: radial-gradient(circle, rgb(161,179,166,0.5) 0%, transparent 70%);
    width: 300px;
    right: -5%;
}.join_our_mailing_list::after {
    z-index: 0;
    content: "";
    bottom: -10%;
    animation: float 20s infinite ease-in-out reverse;
    width: 250px;
    opacity: 0.5;
    height: 250px;
    left: -5%;
    position: absolute;
    background: radial-gradient(circle, rgb(198,212,202,0.5) 0%, transparent 70%);
}.join_our_mailing_list .container {
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}.join_our_mailing_list .learn_studio {
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    transform: perspective(1000px) rotateX(2deg);
}.join_our_mailing_list .learn_studio:hover {
    transform: perspective(1000px) rotateX(0deg);
}.join_our_mailing_list h3 {
    transform: translateY(0);
    position: relative;
    color: #000000;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    font-family: Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
}.join_our_mailing_list h3::after {
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
    content: "";
    transform: scaleX(1);
    bottom: -10px;
    transform-origin: left;
    transition: transform 0.5s ease-out;
    background: rgb(198,212,202);
}.join_our_mailing_list .learn_studio:hover h3 {
    transform: translateY(-5px);
}.join_our_mailing_list .learn_studio:hover h3::after {
    transform: scaleX(1.5);
}.join_our_mailing_list .input_holder {
    gap: 1rem;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}.join_our_mailing_list .input_holder div {
    overflow: hidden;
    position: relative;
    flex: 1 1 300px;
}.join_our_mailing_list .input_holder input[type="email"] {
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    outline: none;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    font-family: Arial, sans-serif;
    background: #ffffff;
    width: 100%;
}.join_our_mailing_list .input_holder input[type="email"]:focus {
    transform: translateY(-2px);
    border-color: rgb(198,212,202);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}.join_our_mailing_list .input_holder input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease;
}.join_our_mailing_list .input_holder input[type="email"]:focus::placeholder {
    transform: translateX(5px);
    color: rgba(0, 0, 0, 0.2);
}.join_our_mailing_list .input_holder .email_panel {
    border: none;
    color: #ffffff;
    background: rgb(198,212,202);
    overflow: hidden;
    z-index: 1;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.8rem;
    font-family: Arial, sans-serif;
    position: relative;
    flex: 0 0 auto;
}.join_our_mailing_list .input_holder .email_panel::before {
    width: 100%;
    z-index: -1;
    left: -100%;
    height: 100%;
    content: "";
    position: absolute;
    transition: all 0.6s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 0;
}.join_our_mailing_list .input_holder .email_panel:hover {
    transform: translateY(-3px);
    background: rgb(161,179,166);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}.join_our_mailing_list .input_holder .email_panel:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}.join_our_mailing_list .input_holder .email_panel:hover::before {
    left: 100%;
}

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

@media screen and (max-width: 768px) {.join_our_mailing_list {
    padding: 3rem 0;
}.join_our_mailing_list .learn_studio {
    transform: perspective(1000px) rotateX(0deg);
    padding: 2rem;
}.join_our_mailing_list h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 1.5rem;
}.join_our_mailing_list .input_holder {
    flex-direction: column;
    gap: 1rem;
}.join_our_mailing_list .input_holder div {
    flex: 1 1 100%;
}.join_our_mailing_list .input_holder .email_panel {
    padding: 0.9rem 1.5rem;
    width: 100%;
}.join_our_mailing_list::before {
    height: 150px;
    width: 150px;
}.join_our_mailing_list::after {
    width: 120px;
    height: 120px;
}
}

@media screen and (max-width: 480px) {.join_our_mailing_list {
    padding: 2.5rem 0;
}.join_our_mailing_list .learn_studio {
    padding: 1.5rem;
}.join_our_mailing_list h3 {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}.join_our_mailing_list h3::after {
    width: 40px;
    height: 2px;
}.join_our_mailing_list .input_holder input[type="email"] {
    padding: 0.9rem 1.2rem;
}.join_our_mailing_list .input_holder .email_panel {
    padding: 0.8rem 1.2rem;
}}.our_story {
    position: relative;
    font-family: Arial, sans-serif;
    color: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}.our_story::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 57, 80, 0.92), rgba(32, 42, 68, 0.85));
    right: 0;
}.our_story::after {
    animation: float 15s ease-in-out infinite;
    background: linear-gradient(145deg, rgb(198,212,202,0.5), rgb(161,179,166,0.5));
    z-index: 0;
    transform: rotate(15deg);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    right: -5%;
    content: "";
    position: absolute;
    opacity: 0.15;
    height: 70%;
    top: -10%;
    width: 40%;
}.our_story h4 {
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    font-size: calc(18px * 1.2);
    position: relative;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    opacity: 1;
    letter-spacing: 2px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}.our_story h4::after {
    position: absolute;
    bottom: -12px;
    height: 3px;
    left: 50%;
    width: 60px;
    content: "";
    transition: width 0.4s ease;
    background: rgb(198,212,202);
    transform: translateX(-50%);
}.our_story:hover h4::after {
    width: 100px;
}.our_story .container {
    max-width: 1200px;
    z-index: 2;
    position: relative;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    padding: 0 15px;
}.our_story .description_card {
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    max-width: 900px;
    transform: translateY(0);
    overflow: hidden;
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}.our_story .description_card::before {
    content: "";
    top: 0;
    transform-origin: center;
    background: linear-gradient(to bottom, rgb(198,212,202), rgb(161,179,166));
    transform: scaleY(0.6);
    height: 100%;
    left: 0;
    position: absolute;
    transition: transform 0.5s ease;
    width: 5px;
}.our_story .description_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}.our_story .description_card:hover::before {
    transform: scaleY(1);
}.our_story h6 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: transform 0.4s ease;
    letter-spacing: 0.5px;
    transform: translateX(0);
    padding-bottom: 0.75rem;
    text-transform: capitalize;
    color: #000000;
    position: relative;
    font-size: calc(21px * 1.5);
}.our_story h6::after {
    background: rgb(161,179,166);
    width: 40px;
    transition: width 0.4s ease;
    height: 2px;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
}.our_story .description_card:hover h6 {
    transform: translateX(10px);
}.our_story .description_card:hover h6::after {
    width: 80px;
}.our_story span {
    column-gap: 2.5rem;
    column-count: 1;
    transform: translateY(0);
    line-height: 1.8;
    color: #000000;
    opacity: 0.9;
    hyphens: auto;
    position: relative;
    text-align: justify;
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: block;
    font-size: 17px;
}.our_story .description_card:hover span {
    opacity: 1;
    transform: translateY(-5px);
}

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

@media screen and (min-width: 768px) {.our_story span {
    column-count: 2;
}.our_story h4 {
    font-size: calc(18px * 1.4);
}.our_story h6 {
    font-size: calc(21px * 1.8);
}.our_story .description_card {
    padding: 4rem;
}
}

@media screen and (min-width: 992px) {.our_story {
    padding: 150px 0;
}.our_story .description_card {
    padding: 4.5rem 5rem;
}.our_story h4 {
    font-size: calc(18px * 1.6);
}.our_story h4::after {
    height: 4px;
}.our_story h6 {
    margin-bottom: 2rem;
}
}

@media screen and (max-width: 767px) {.our_story {
    padding: 80px 0;
}.our_story h4 {
    margin-bottom: 1.5rem;
    font-size: calc(18px * 1.1);
}.our_story .description_card {
    padding: 2rem;
}.our_story h6 {
    font-size: 21px;
    margin-bottom: 1rem;
}.our_story span {
    font-size: calc(17px * 0.95);
    line-height: 1.7;
}.our_story .description_card::before {
    width: 3px;
}
}

@media screen and (max-width: 480px) {.our_story {
    padding: 60px 0;
}.our_story .description_card {
    padding: 1.5rem;
}.our_story h4 {
    letter-spacing: 1px;
}.our_story h4::after {
    width: 40px;
    height: 2px;
}.our_story:hover h4::after {
    width: 60px;
}.our_story h6 {
    padding-bottom: 0.5rem;
}.our_story span {
    font-size: calc(17px * 0.9);
    line-height: 1.6;
}}.course_instructor {
    background-color: rgb(234,239,237);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}.course_instructor::before {
    width: 45%;
    position: absolute;
    height: 70%;
    content: "";
    top: -10%;
    filter: blur(50px);
    background: linear-gradient(135deg, rgb(198,212,202,0.5), rgb(161,179,166,0.5));
    z-index: 0;
    right: -10%;
    transform: rotate(-15deg);
}.course_instructor::after {
    filter: blur(40px);
    left: -10%;
    background: linear-gradient(225deg, rgb(161,179,166,0.5), rgb(198,212,202,0.5));
    content: "";
    z-index: 0;
    bottom: -10%;
    width: 50%;
    transform: rotate(15deg);
    height: 60%;
    position: absolute;
}.course_instructor .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}.course_instructor .feedback_panel {
    transform: perspective(1000px) rotateX(2deg);
    backdrop-filter: blur(10px);
    border-left: 4px solid rgb(198,212,202);
    display: grid;
    padding: 3rem;
    gap: 2rem;
    grid-template-columns: 1fr;
    position: relative;
    background: linear-gradient(to right bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
}.course_instructor .feedback_panel > div:nth-child(1) {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-1rem);
}.course_instructor .feedback_panel > div:nth-child(1):hover {
    transform: translateY(-1.5rem) scale(1.02);
}.course_instructor .feedback_panel .img_container {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 300px;
    position: relative;
}.course_instructor .feedback_panel .img_container:hover {
    clip-path: polygon(0% 5%, 100% 0%, 95% 95%, 5% 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 15px 25px rgba(0,0,0,0.1);
}.course_instructor .feedback_panel .img_container::after {
    inset: 0;
    background: linear-gradient(to top, rgb(198,212,202,0.5) 0%, transparent 50%);
    z-index: 1;
    position: absolute;
    content: "";
}.course_instructor .feedback_panel > div:nth-child(2) {
    transform: translateY(1rem);
    border-left: 2px solid rgb(161,179,166);
    animation: fadeSlideUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
    align-self: flex-start;
    opacity: 0;
    padding-left: 1rem;
}.course_instructor .feedback_panel .name {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: calc(18px * 1.2);
    color: rgb(198,212,202);
}.course_instructor .feedback_panel .name::after {
    transition: width 0.4s ease;
    position: absolute;
    height: 2px;
    width: 0;
    background-color: rgb(161,179,166);
    content: "";
    left: 0;
    bottom: -5px;
}.course_instructor .feedback_panel .name:hover::after {
    width: 100%;
}.course_instructor .feedback_panel > div:nth-child(2) > div {
    padding-left: 0.5rem;
    font-style: italic;
    position: relative;
    font-weight: 600;
    color: rgb(161,179,166);
    font-size: calc(14px * 0.95);
    margin-top: 0.5rem;
}.course_instructor .feedback_panel > div:nth-child(2) > div::before {
    content: "★";
    opacity: 0.7;
    color: rgb(198,212,202);
    left: -10px;
    position: absolute;
}.course_instructor .feedback_panel > div:nth-child(3) {
    opacity: 0;
    position: relative;
    animation: fadeSlideUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
    transform: translateY(1rem);
}.course_instructor .feedback_panel .career_progress {
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 14px;
    line-height: 1.8;
    position: relative;
    color: #000000;
    padding: 1.5rem;
}.course_instructor .feedback_panel .career_progress::before {
    content: "";
    position: absolute;
    top: -20px;
    color: rgb(198,212,202,0.5);
    z-index: -1;
    font-size: 6rem;
    font-family: Georgia, serif;
    left: -20px;
}.course_instructor .feedback_panel .career_progress::after {
    color: rgb(198,212,202,0.5);
    right: -20px;
    font-family: Georgia, serif;
    position: absolute;
    bottom: -60px;
    font-size: 6rem;
    content: "";
    z-index: -1;
}

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

@media (min-width: 768px) {.course_instructor .feedback_panel {
    gap: 2rem 3rem;
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto 1fr;
}.course_instructor .feedback_panel > div:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}.course_instructor .feedback_panel > div:nth-child(2) {
    align-self: flex-end;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}.course_instructor .feedback_panel > div:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}.course_instructor .feedback_panel .img_container {
    min-height: 400px;
    height: 100%;
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
}.course_instructor .feedback_panel .img_container:hover {
    clip-path: polygon(5% 0%, 95% 0%, 100% 95%, 0% 100%);
}.course_instructor .feedback_panel .name {
    font-size: calc(18px * 1.5);
}.course_instructor .feedback_panel .career_progress {
    font-size: calc(14px * 1.05);
    padding: 2rem;
}
}

@media (min-width: 1024px) {.course_instructor {
    padding: 8rem 0;
}.course_instructor .feedback_panel {
    transform: perspective(1200px) rotateX(1deg) rotateY(-1deg);
    padding: 4rem;
    grid-template-columns: 400px 1fr;
    gap: 3rem 4rem;
    margin: 0 2rem;
}.course_instructor .feedback_panel:hover {
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
}.course_instructor .feedback_panel .img_container {
    min-height: 500px;
}.course_instructor .feedback_panel > div:nth-child(2) {
    padding-left: 1.5rem;
}.course_instructor .feedback_panel .name {
    margin-bottom: 1rem;
    font-size: calc(18px * 1.7);
}.course_instructor .feedback_panel > div:nth-child(2) > div {
    font-size: calc(14px * 1.1);
}.course_instructor .feedback_panel .career_progress {
    line-height: 1.9;
    padding: 2.5rem;
    font-size: calc(14px * 1.1);
}}.cookie_notice_window {
    position: fixed;
    bottom: 0;
    background: rgb(234,239,237);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 90;
    border-top: 3px solid rgb(198,212,202);
    width: 100%;
    transition: transform 0.3s ease-in-out;
}.user_default {
    padding: 20px 15px;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
}.digital_tracking {
    flex-shrink: 0;
    margin-right: 15px;
}.digital_tracking svg {
    fill: rgb(198,212,202);
    transition: fill 0.3s ease;
    height: 60px;
    width: 60px;
}.digital_tracking svg:hover {
    fill: rgb(161,179,166);
}.edu_track {
    margin-right: 15px;
    flex-grow: 1;
    color: #000000;
}.cookie_notice_window h5 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(198,212,202);
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}.cookie_notice_window p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #000000;
}.cookie_tab {
    text-decoration: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    margin-left: 10px;
    text-align: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    line-height: 35px;
    background: rgb(198,212,202);
    border-radius: 29px;
    padding: 10px 20px;
}.cookie_tab:hover {
    background: rgb(161,179,166);
    box-shadow: 0 0 10px rgb(161,179,166,0.5);
}#cookies_allowance_approval {
    background: rgb(198,212,202);
}#do_not_accept_cookies_usage {
    background: rgba(0, 0, 0, 0.5);
}.cookie_notice_window p a {
    color: rgb(198,212,202);
    transition: color 0.3s ease;
    text-decoration: underline;
}.cookie_notice_window p a:hover {
    color: rgb(161,179,166);
}
@media only screen and (max-width: 1200px) {.user_default {
    align-items: center;
    flex-direction: column;
}.digital_tracking {
    margin-bottom: 15px;
}.edu_track {
    margin-bottom: 15px;
    text-align: center;
    margin-right: 0;
}.cookie_tab {
    width: 100%;
    margin-bottom: 10px;
    max-width: 200px;
    margin-left: 0;
}
}
@media only screen and (max-width: 800px) {.user_default {
    padding: 15px;
}.digital_tracking {
    display: none;
}.cookie_notice_window h5 {
    font-size: 22px;
}.cookie_notice_window p {
    font-size: 13px;
}}
#cookieWarningBanner {
    display: none;
}#cookieWarningBanner:checked ~ .cookie_notice_window {
    visibility: hidden;
    opacity: 0;
}.customer_opinions {
    background: linear-gradient(135deg, #ffffff 0%, rgb(234,239,237) 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}.customer_opinions::before {
    position: absolute;
    width: 35%;
    content: "";
    left: -5%;
    transform: rotate(-15deg) skew(10deg);
    height: 70%;
    z-index: 1;
    background: linear-gradient(225deg, rgb(161,179,166,0.5) 0%, transparent 80%);
    pointer-events: none;
    top: -10%;
}.customer_opinions::after {
    content: "";
    z-index: 1;
    bottom: -15%;
    height: 70%;
    transform: rotate(15deg) skew(-5deg);
    background: linear-gradient(135deg, transparent 30%, rgb(198,212,202,0.5) 100%);
    right: -10%;
    width: 50%;
    position: absolute;
    pointer-events: none;
}.customer_opinions h2 {
    margin-bottom: 3rem;
    color: #000000;
    letter-spacing: 0.5px;
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: perspective(1000px) rotateX(5deg);
    z-index: 2;
}.customer_opinions h2::after {
    right: 25%;
    position: absolute;
    left: 25%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(198,212,202), transparent);
    bottom: -15px;
}.customer_opinions .container.learn_studio {
    max-width: 1200px;
    padding: 0 20px;
    z-index: 3;
    margin: 0 auto;
    position: relative;
}.customer_opinions .learner_quotes {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    perspective: 1000px;
}.customer_opinions .feedback_panel {
    background: linear-gradient(145deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    opacity: 0;
    animation: revealCard 0.7s forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transform: translateY(20px);
    overflow: hidden;
}.customer_opinions .feedback_panel:nth-child(odd) {
    transform: translateY(20px) rotate(1deg);
}.customer_opinions .feedback_panel:nth-child(even) {
    transform: translateY(20px) rotate(-1deg);
}.customer_opinions .feedback_panel:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                0 10px 20px rgba(0, 0, 0, 0.05);
}.customer_opinions .feedback_panel::before {
    position: absolute;
    font-family: serif;
    top: -20px;
    z-index: 1;
    line-height: 1;
    color: rgb(161,179,166,0.5);
    opacity: 0.1;
    font-size: 150px;
    content: "";
    left: 10px;
}.customer_opinions .feedback_panel h3 {
    position: relative;
    color: rgb(198,212,202);
    margin-bottom: 0.75rem;
    letter-spacing: 0.8px;
    font-weight: 600;
    border-bottom: 2px solid rgb(161,179,166,0.5);
    font-size: calc(18px + 2px);
    z-index: 2;
    padding-bottom: 10px;
}.customer_opinions .feedback_panel p.description {
    position: relative;
    line-height: 1.6;
    z-index: 2;
    font-style: italic;
    color: #000000;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 13px;
}.customer_opinions .feedback_panel div {
    width: 60px;
    margin-top: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 60px;
    border-radius: 50%;
    position: relative;
    transition: transform 0.5s ease;
    border: 3px solid #ffffff;
    z-index: 2;
}.customer_opinions .feedback_panel:hover div {
    transform: scale(1.1) rotate(5deg);
}.customer_opinions .feedback_panel div img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}.customer_opinions .feedback_panel:hover div img {
    transform: scale(1.1);
}

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

@media screen and (max-width: 1200px) {.customer_opinions {
    padding: 4rem 0;
}.customer_opinions .learner_quotes {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media screen and (max-width: 992px) {.customer_opinions h2 {
    font-size: calc(28px - 2px);
}.customer_opinions .feedback_panel {
    padding: 1.75rem;
}
}

@media screen and (max-width: 768px) {.customer_opinions {
    padding: 3rem 0;
}.customer_opinions h2 {
    margin-bottom: 2rem;
}.customer_opinions .learner_quotes {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.customer_opinions .feedback_panel::before {
    top: -15px;
    font-size: 120px;
}
}

@media screen and (max-width: 576px) {.customer_opinions {
    padding: 2.5rem 0;
}.customer_opinions .learner_quotes {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.customer_opinions h2 {
    transform: none;
    font-size: calc(28px - 4px);
}.customer_opinions .feedback_panel {
    padding: 1.5rem;
}.customer_opinions .feedback_panel h3 {
    font-size: 18px;
}
}

@media (prefers-reduced-motion: reduce) {.customer_opinions .feedback_panel {
    opacity: 1;
    animation: none;
    transform: none !important;
}.customer_opinions .feedback_panel:hover {
    transform: none !important;
}}.reach_out {
    overflow: hidden;
    position: relative;
    background: linear-gradient(120deg, rgb(234,239,237) 0%, #1a1e2e 100%);
    padding: 90px 0;
}.reach_out::before {
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    z-index: 0;
    top: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 40%),
        linear-gradient(0deg, transparent 80%, rgba(rgb(198,212,202), 0.05) 100%);
    position: absolute;
}.reach_out::after {
    position: absolute;
    height: 100px;
    z-index: 1;
    background: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
    left: 0;
    content: "";
    bottom: 0;
    width: 100%;
}.reach_out .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}.reach_out h2 {
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    font-size: 36px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 70px;
}.reach_out h2::before {
    background: rgb(198,212,202);
    bottom: -20px;
    left: calc(50% - 50px);
    position: absolute;
    height: 2px;
    content: "";
    width: 30px;
}.reach_out h2::after {
    width: 70px;
    content: "";
    left: calc(50% - 10px);
    bottom: -20px;
    position: absolute;
    height: 2px;
    background: rgb(198,212,202);
}.reach_out .feedback_formyI5 {
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    grid-template-columns: 6fr 4fr;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    display: grid;
}.reach_out .img_container {
    min-height: 100%;
    position: relative;
}.reach_out .img_container::before {
    top: 0;
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}.reach_out .img_container::after {
    z-index: 2;
    left: 0;
    width: 100%;
    animation: scanLines 5s linear infinite;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(rgb(198,212,202), 0.1) 10px, rgba(rgb(198,212,202), 0.1) 11px);
    top: 0;
    position: absolute;
    height: 100%;
    content: "";
}@keyframes scanLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.reach_out .request_map {
    padding: 50px;
    position: relative;
}.reach_out .request_map::before {
    z-index: -1;
    top: 0;
    content: "";
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}.reach_out #contact {
    display: flex;
    gap: 25px;
    flex-direction: column;
}.reach_out h3 {
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 19px;
    position: relative;
}.reach_out h3::after {
    content: "";
    bottom: -10px;
    left: 0;
    height: 2px;
    background: rgb(198,212,202);
    position: absolute;
    width: 50px;
}.reach_out input[type="text"] {
    font-size: 16px;
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}.reach_out input[type="text"]:focus {
    box-shadow: 0 0 15px rgba(rgb(198,212,202), 0.2);
    border-color: rgb(198,212,202);
    outline: none;
    background: rgba(0, 0, 0, 0.3);
}.reach_out input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}.reach_out .help_form {
    gap: 12px;
    margin-top: 5px;
    display: flex;
    align-items: flex-start;
}.reach_out .help_form input[type="checkbox"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    height: 24px;
    margin-top: 2px;
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    width: 24px;
    appearance: none;
}.reach_out .help_form input[type="checkbox"]:checked {
    background: rgb(198,212,202);
    border-color: rgb(198,212,202);
}.reach_out .help_form input[type="checkbox"]:checked::after {
    top: 6px;
    width: 6px;
    left: 9px;
    border-width: 0 2px 2px 0;
    border: solid #ffffff;
    position: absolute;
    content: "";
    transform: rotate(45deg);
    height: 10px;
}.reach_out .help_form label {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    font-size: calc(16px - 2px);
}.reach_out .help_form a {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgb(198,212,202);
}.reach_out .help_form a:hover {
    color: #ffffff;
}.reach_out .help_form a::after {
    height: 1px;
    transition: all 0.3s ease;
    background: rgb(198,212,202);
    position: absolute;
    content: "";
    bottom: -2px;
    width: 100%;
    left: 0;
}.reach_out .help_form a:hover::after {
    background: #ffffff;
}.reach_out .connect_support {
    padding: 16px 35px;
    border: none;
    text-transform: uppercase;
    background: rgb(198,212,202);
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 20px;
    margin-top: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    overflow: hidden;
    letter-spacing: 1px;
}.reach_out .connect_support::before {
    width: 100%;
    content: "";
    height: 100%;
    left: -100%;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    position: absolute;
}.reach_out .connect_support:hover {
    transform: translateY(-3px);
    background: rgb(161,179,166);
}.reach_out .connect_support:hover::before {
    left: 100%;
}.reach_out svg {
    height: 22px;
    width: 22px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(rgb(198,212,202), 0.5));
    fill: rgb(198,212,202);
}.reach_out svg path {
    transition: all 0.3s ease;
    fill: rgb(198,212,202);
}.reach_out svg:hover {
    transform: scale(1.1);
    fill: #ffffff;
}.reach_out svg:hover path {
    fill: #ffffff;
}

@media (max-width: 992px) {.reach_out {
    padding: 70px 0;
}.reach_out .feedback_formyI5 {
    grid-template-columns: 1fr;
}.reach_out .img_container {
    min-height: 300px;
}.reach_out .request_map {
    padding: 40px 30px 50px;
}
}

@media (max-width: 768px) {.reach_out {
    padding: 50px 0;
}.reach_out h2 {
    font-size: calc(36px - 4px);
    margin-bottom: 50px;
}.reach_out .img_container {
    min-height: 250px;
}
}

@media (max-width: 576px) {.reach_out {
    padding: 40px 0;
}.reach_out .container {
    padding: 0 15px;
}.reach_out h2 {
    margin-bottom: 40px;
    font-size: calc(36px - 6px);
}.reach_out h2::before {
    left: calc(50% - 35px);
    width: 20px;
}.reach_out h2::after {
    width: 50px;
}.reach_out .request_map {
    padding: 30px 20px 40px;
}.reach_out #contact {
    gap: 20px;
}.reach_out .connect_support {
    width: 100%;
}.reach_out .img_container {
    min-height: 200px;
}
}