* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}svg {
    width: 30px;
    height: 30px;
}a {
    color: inherit;
    text-decoration: none;
}.top_edu {
    flex: 1 0 auto;
}html,body {
    height: 100%;
    min-height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
    scroll-behavior: auto;
}header,footer {
    width: 100%;
}.art_portal {
    flex: 0 0 auto;
}.wrapper-segment {
    min-height: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}.container {
    width: 1155px;
    max-width: 100%;
    margin: auto;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_fit_for {
    overflow: hidden;
    padding: 120px 0 100px;
    background: rgb(244,220,204);
    position: relative;
}.course_fit_for::before {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -50%;
    z-index: 1;
    top: -50%;
    transform: rotate(35deg);
    background: rgb(231,183,159,0.5);
    content: "";
}.course_fit_for::after {
    left: -50%;
    position: absolute;
    background: rgb(217,144,112,0.5);
    bottom: -50%;
    width: 100%;
    z-index: 1;
    content: "";
    transform: rotate(-35deg);
    height: 100%;
}.course_fit_for .container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1140px;
    z-index: 2;
    position: relative;
}.course_fit_for .training_track {
    overflow: hidden;
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-radius: 11px;
}.course_fit_for .training_track::before {
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, rgb(231,183,159), rgb(217,144,112));
    position: absolute;
    content: "";
}.course_fit_for .training_track::after {
    border: 2px solid rgb(231,183,159,0.5);
    content: "";
    top: 20px;
    width: 120px;
    right: 20px;
    height: 120px;
    position: absolute;
    opacity: 0.5;
    z-index: -1;
    border-radius: 50%;
}.course_fit_for h4 {
    font-weight: 700;
    color: #000000;
    font-size: 34px;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}.course_fit_for h4::before {
    width: 40px;
    position: absolute;
    left: 50%;
    content: "";
    transform: translateX(-50%);
    height: 4px;
    bottom: -20px;
    background: rgb(231,183,159);
    border-radius: 10px;
}.course_fit_for h4::after {
    transform: translateX(-20px);
    bottom: -20px;
    position: absolute;
    left: 50%;
    height: 4px;
    background: rgb(217,144,112,0.5);
    content: "";
    width: 80px;
    border-radius: 10px;
}.course_fit_for div > div {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    position: relative;
    display: grid;
    gap: 30px;
}.course_fit_for div > div::before {
    opacity: 0.5;
    top: 50%;
    position: absolute;
    content: "";
    left: 0;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(217,144,112,0.5) 20%, 
        rgb(217,144,112,0.5) 80%, 
        transparent 100%);
    width: 100%;
}.course_fit_for p {
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: #000000;
    display: flex;
    font-size: 17px;
    align-items: center;
    background: #ffffff;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}.course_fit_for p::before {
    opacity: 0;
    width: 100%;
    content: "";
    top: 0;
    position: absolute;
    border-radius: 10px;
    z-index: -1;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, rgb(244,220,204) 100%);
    transition: opacity 0.4s ease;
}.course_fit_for p:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgb(231,183,159,0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.course_fit_for p:hover::before {
    opacity: 1;
}.course_fit_for p svg {
    transition: all 0.4s ease;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-right: 18px;
}.course_fit_for p svg path {
    fill: rgb(231,183,159);
    transition: fill 0.3s ease;
}.course_fit_for p:hover svg {
    transform: rotate(10deg) scale(1.2);
}.course_fit_for p:hover svg path {
    fill: rgb(217,144,112);
}@keyframes dotAnimation {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.5);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.course_fit_for .training_track::before {
    animation: dotAnimation 8s infinite;
}@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.course_fit_for .training_track > div p {
    animation: fadeSlideIn 0.6s ease forwards;
    opacity: 0;
}.course_fit_for .training_track > div p:nth-child(1) {
    animation-delay: 0.1s;
}.course_fit_for .training_track > div p:nth-child(2) {
    animation-delay: 0.3s;
}.course_fit_for .training_track > div p:nth-child(3) {
    animation-delay: 0.5s;
}.course_fit_for .training_track > div p:nth-child(4) {
    animation-delay: 0.7s;
}.course_fit_for .training_track > div p:nth-child(5) {
    animation-delay: 0.9s;
}.course_fit_for .training_track > div p:nth-child(6) {
    animation-delay: 1.1s;
}.course_fit_for p::after {
    content: "";
    background: rgb(217,144,112,0.5);
    transition: all 0.4s ease;
    border-radius: 50%;
    opacity: 0;
    position: absolute;
    z-index: -1;
    bottom: 10px;
    width: 30px;
    height: 30px;
    right: 10px;
}.course_fit_for p:hover::after {
    transform: scale(2);
    opacity: 0.3;
}

@media (max-width: 991px) {.course_fit_for {
    padding: 90px 0 80px;
}.course_fit_for .training_track {
    padding: 50px 30px;
}.course_fit_for h4 {
    margin-bottom: 40px;
    font-size: calc(34px * 0.9);
}.course_fit_for div > div {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}.course_fit_for p {
    padding: 20px;
}.course_fit_for .training_track::after {
    width: 100px;
    height: 100px;
}
}

@media (max-width: 768px) {.course_fit_for {
    padding: 80px 0 70px;
}.course_fit_for .training_track {
    padding: 40px 25px;
}.course_fit_for h4 {
    margin-bottom: 35px;
    font-size: calc(34px * 0.8);
}.course_fit_for div > div {
    gap: 20px;
    grid-template-columns: 1fr;
}.course_fit_for div > div::before {
    display: none;
}.course_fit_for p {
    padding: 18px;
}.course_fit_for p svg {
    margin-right: 15px;
    width: 24px;
    height: 24px;
}.course_fit_for .training_track::after {
    right: auto;
    height: 80px;
    top: auto;
    width: 80px;
    bottom: 20px;
    left: 20px;
}
}

@media (max-width: 576px) {.course_fit_for {
    padding: 60px 0 50px;
}.course_fit_for .training_track {
    padding: 35px 20px;
}.course_fit_for h4 {
    font-size: calc(34px * 0.7);
    margin-bottom: 30px;
}.course_fit_for h4::before {
    width: 30px;
    height: 3px;
}.course_fit_for h4::after {
    height: 3px;
    width: 60px;
}.course_fit_for p {
    font-size: calc(17px * 0.9);
    padding: 15px;
}.course_fit_for p svg {
    height: 20px;
    width: 20px;
    margin-right: 12px;
}.course_fit_for p:hover {
    transform: translateY(-5px) scale(1.01);
}.course_fit_for .training_track::after {
    width: 60px;
    height: 60px;
}}.our_mission {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    overflow: hidden;
}.our_mission::before {
    left: 0;
    content: "";
    width: 100%;
    z-index: -1;
    backdrop-filter: blur(5px);
    position: absolute;
    background: linear-gradient(135deg, 
        rgb(231,183,159,0.5) 0%, 
        rgba(255, 255, 255, 0.85) 55%, 
        rgb(217,144,112,0.5) 100%);
    height: 100%;
    top: 0;
}.our_mission .container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}.our_mission .text_widget {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.1),
        -10px -10px 30px rgba(255, 255, 255, 0.8),
        inset 5px 5px 10px rgba(255, 255, 255, 0.5),
        inset -5px -5px 15px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(2deg);
    background: linear-gradient(to right bottom, 
        rgba(255, 255, 255, 0.9), 
        rgba(255, 255, 255, 0.7));
    position: relative;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}.our_mission .text_widget:hover {
    box-shadow: 
        25px 25px 50px rgba(0, 0, 0, 0.15),
        -15px -15px 35px rgba(255, 255, 255, 0.9),
        inset 3px 3px 8px rgba(255, 255, 255, 0.6),
        inset -3px -3px 8px rgba(0, 0, 0, 0.03);
    transform: perspective(1000px) rotateX(0deg);
}.our_mission h1 {
    margin-bottom: 30px;
    display: inline-block;
    transform: translateZ(30px);
    font-weight: 700;
    position: relative;
    color: rgb(231,183,159);
    transition: transform 0.4s ease-out;
    font-size: 38px;
}.our_mission h1::after {
    transform: scaleX(1);
    content: "";
    height: 4px;
    width: 60%;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: linear-gradient(90deg, rgb(231,183,159), transparent);
    left: 0;
    bottom: -10px;
    transform-origin: left;
    position: absolute;
}.our_mission .text_widget:hover h1::after {
    transform: scaleX(1.5);
}.our_mission ul {
    padding: 0;
    list-style: none;
    margin: 0;
}.our_mission li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease-out forwards;
}.our_mission li:nth-child(1) {
    animation-delay: 0.3s;
}.our_mission li:nth-child(2) {
    animation-delay: 0.5s;
}.our_mission h4 {
    margin-bottom: 15px;
    display: inline-block;
    color: rgb(217,144,112);
    position: relative;
    font-weight: 600;
    font-size: calc(22px * 1.2);
    padding-left: 15px;
}.our_mission h4::before {
    content: "";
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
                -2px -2px 4px rgba(255, 255, 255, 0.8);
    height: 8px;
    position: absolute;
    background: rgb(231,183,159);
    width: 8px;
    left: 0;
    top: 50%;
}.our_mission span {
    font-weight: 400;
    color: #000000;
    text-align: justify;
    column-count: 2;
    column-gap: 40px;
    position: relative;
    display: block;
    padding: 5px 0;
    line-height: 1.7;
    font-size: 17px;
}.our_mission span::first-letter {
    font-size: 1.5em;
    color: rgb(231,183,159);
    font-weight: 700;
}

@media (max-width: 992px) {.our_mission {
    padding: 80px 0;
}.our_mission .text_widget {
    transform: perspective(800px) rotateX(1deg);
    padding: 30px;
}.our_mission h1 {
    font-size: calc(38px * 0.9);
}.our_mission span {
    column-count: 1;
}
}

@media (max-width: 768px) {.our_mission {
    padding: 60px 0;
}.our_mission .text_widget {
    transform: perspective(600px) rotateX(0.5deg);
    box-shadow: 
            15px 15px 30px rgba(0, 0, 0, 0.1),
            -8px -8px 20px rgba(255, 255, 255, 0.8),
            inset 3px 3px 8px rgba(255, 255, 255, 0.5),
            inset -3px -3px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}.our_mission h1 {
    margin-bottom: 20px;
    font-size: calc(38px * 0.8);
}.our_mission h4 {
    font-size: 22px;
}.our_mission span {
    font-size: calc(17px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 576px) {.our_mission {
    padding: 40px 0;
}.our_mission .text_widget {
    box-shadow: 
            10px 10px 20px rgba(0, 0, 0, 0.1),
            -5px -5px 15px rgba(255, 255, 255, 0.8),
            inset 2px 2px 5px rgba(255, 255, 255, 0.5),
            inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    transform: none;
    padding: 20px;
}.our_mission h1 {
    margin-bottom: 15px;
    font-size: calc(38px * 0.7);
}.our_mission h1::after {
    height: 3px;
}.our_mission h4 {
    margin-bottom: 10px;
    font-size: calc(22px * 0.9);
}.our_mission span {
    line-height: 1.5;
    font-size: calc(17px * 0.9);
}}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}.course_program_info {
    background: linear-gradient(135deg, rgb(244,220,204) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}.course_program_info::before {
    animation: backgroundPulse 15s infinite alternate;
    left: 0;
    width: 100%;
    top: 0;
    position: absolute;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgb(231,183,159,0.5) 5%, transparent 10%),
        radial-gradient(circle at 70% 65%, rgb(217,144,112,0.5) 5%, transparent 10%),
        radial-gradient(circle at 40% 80%, rgb(231,183,159,0.5) 4%, transparent 8%),
        radial-gradient(circle at 80% 10%, rgb(217,144,112,0.5) 4%, transparent 8%);
    opacity: 0.6;
    content: "";
    z-index: 1;
}.course_program_info::after {
    background: linear-gradient(45deg, rgb(231,183,159,0.5) 0%, transparent 70%);
    left: -50%;
    transform: rotate(45deg);
    height: 200%;
    animation: gradientRotate 20s infinite linear;
    z-index: 0;
    top: -50%;
    width: 200%;
    opacity: 0.2;
    position: absolute;
    content: "";
}.course_program_info .container {
    z-index: 5;
    position: relative;
}.course_program_info .training_track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 19px;
    backdrop-filter: blur(10px);
    display: flex;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 
                0 8px 15px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgb(231,183,159,0.5);
    flex-wrap: wrap;
    transition: all 0.5s ease;
    overflow: hidden;
    align-items: center;
    position: relative;
}.course_program_info .training_track::before {
    top: 0;
    background: linear-gradient(135deg, rgb(231,183,159,0.5) 0%, transparent 100%);
    height: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    left: 0;
    width: 100%;
    content: "";
}.course_program_info .learn_challenge {
    z-index: 2;
    padding: 40px 50px;
    position: relative;
    flex: 1 1 55%;
}.course_program_info .nav_page {
    transition: transform 0.6s ease;
    transform: perspective(1000px) rotateY(0deg);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}.course_program_info .nav_page:hover {
    transform: perspective(1000px) rotateY(10deg);
}.course_program_info .nav_page svg {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    width: 120px;
    height: auto;
}.course_program_info .nav_page svg path {
    transition: fill 0.3s ease;
    fill: rgb(231,183,159);
}.course_program_info .nav_page:hover svg path {
    fill: rgb(217,144,112);
}.course_program_info .learn_challenge h3 {
    margin-bottom: 25px;
    transform-style: preserve-3d;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    font-weight: 700;
    font-size: 32px;
    color: #ffffff;
}.course_program_info .learn_challenge h3::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(231,183,159) 0%, rgb(217,144,112) 100%);
    transform: translateZ(-5px);
    content: "";
    bottom: -12px;
    filter: blur(1px);
    border-radius: 10px;
    width: 80px;
    height: 3px;
    left: 0;
}.course_program_info .learn_challenge p {
    max-width: 100%;
    position: relative;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}.course_program_info .portfolio_image {
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
    min-height: 450px;
    flex: 1 1 45%;
    transition: all 0.5s ease;
}.course_program_info .portfolio_image::before {
    background: linear-gradient(45deg, rgb(231,183,159,0.5) 0%, transparent 70%);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: overlay;
    animation: overlayPulse 8s infinite alternate;
    width: 100%;
    content: "";
}.course_program_info .portfolio_image::after {
    border: 1px solid #ffffff;
    content: "";
    transform: translateZ(20px);
    box-shadow: 0 0 30px rgb(231,183,159,0.5);
    position: absolute;
    top: 20px;
    opacity: 0.2;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    left: 20px;
}

@keyframes backgroundPulse {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes overlayPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

@media (hover: hover) {.course_program_info .training_track:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
                    0 12px 20px rgba(0, 0, 0, 0.5), 
                    0 0 0 1px rgb(231,183,159);
    transform: translateY(-5px);
}.course_program_info .portfolio_image:hover {
    transform: rotateY(-5deg) translateZ(10px);
}
}

@media screen and (max-width: 992px) {.course_program_info {
    padding: 60px 0;
}.course_program_info .learn_challenge {
    padding: 30px 40px;
}.course_program_info .portfolio_image {
    min-height: 380px;
}.course_program_info .nav_page svg {
    width: 100px;
}.course_program_info .learn_challenge h3 {
    font-size: calc(32px * 0.9);
}
}

@media screen and (max-width: 768px) {.course_program_info {
    padding: 50px 0;
}.course_program_info .training_track {
    flex-direction: column-reverse;
}.course_program_info .learn_challenge {
    flex: 1 1 100%;
    padding: 30px 25px;
}.course_program_info .portfolio_image {
    flex: 1 1 100%;
    min-height: 300px;
    width: 100%;
}.course_program_info .learn_challenge h3 {
    font-size: calc(32px * 0.8);
    margin-bottom: 20px;
}.course_program_info .learn_challenge p {
    margin-bottom: 20px;
}.course_program_info .nav_page {
    margin-bottom: 15px;
}.course_program_info .nav_page svg {
    width: 90px;
}.course_program_info .learn_challenge h3::after {
    height: 2px;
    bottom: -10px;
    width: 60px;
}
}

@media screen and (max-width: 480px) {.course_program_info {
    padding: 40px 0;
}.course_program_info .portfolio_image {
    min-height: 250px;
}.course_program_info .learn_challenge {
    padding: 25px 20px;
}.course_program_info .learn_challenge h3 {
    font-size: calc(19px * 1.2);
}.course_program_info .nav_page svg {
    width: 80px;
}}header {
    margin-top: 0;
    padding: 0;
    overflow: visible;
    z-index: 100;
    background: linear-gradient(120deg, rgb(231,183,159) 0%, rgb(217,144,112) 100%);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
    position: relative;
}header::before {
    bottom: 2px;
    position: absolute;
    left: 2px;
    content: '';
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
    top: 2px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: -1;
    right: 2px;
}header .head_study {
    z-index: 5;
    padding: 1.2rem 3rem;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}header .nav_page {
    position: relative;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    margin-right: 2rem;
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    background: rgba(255, 255, 255, 0.15);
}header .nav_page::before {
    border: 1px dashed rgba(255, 255, 255, 0.3);
    left: 3px;
    top: 3px;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    position: absolute;
    right: 3px;
    z-index: -1;
    bottom: 3px;
    content: '';
}header .nav_page:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
}header .header_know {
    display: block;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}header .header_know img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    max-height: 40px;
}header .head_pro {
    margin: 0;
    list-style: none;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 2;
}header .head_pagewrap {
    position: relative;
    margin: 0 0.5rem;
}header .head_pagewrap a {
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 0 1.2rem;
    height: 40px;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    justify-content: center;
    clip-path: polygon(
        10px 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        10px 100%,
        0 calc(100% - 10px),
        0 10px
    );
    border: 1px solid transparent;
    position: relative;
}header .head_pagewrap a::before {
    position: absolute;
    transition: left 0.7s ease;
    left: -100%;
    content: '';
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    height: 100%;
    top: 0;
}header .head_pagewrap a:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
}header .head_pagewrap a:hover::before {
    left: 100%;
}header .head_pagewrap::after {
    transition: width 0.3s ease;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    content: '';
    bottom: -5px;
    position: absolute;
    background: #ffffff;
    height: 2px;
}header .head_pagewrap:hover::after {
    width: 80%;
}header .head_study::before {
    border-right: none;
    position: absolute;
    right: 10px;
    content: '';
    width: 40px;
    top: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    opacity: 0.5;
    height: 40px;
}header .head_study::after {
    height: 40px;
    border-top: none;
    border-left: none;
    width: 40px;
    position: absolute;
    content: '';
    opacity: 0.5;
    bottom: 10px;
    left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}header .top_edu {
    z-index: 1;
    background: rgb(244,220,204);
    position: relative;
    padding-top: 2rem;
    margin-top: -15px;
}@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

header::after {
    background: #ffffff;
    position: absolute;
    box-shadow: 0 0 10px #ffffff;
    right: 15px;
    animation: pulse 2s infinite;
    border-radius: 50%;
    content: '';
    width: 8px;
    height: 8px;
    top: 15px;
}

@media (min-width: 1400px) {header .head_study {
    max-width: 1320px;
    margin: 0 auto;
}header .head_pagewrap {
    margin: 0 0.7rem;
}header .head_pagewrap a {
    padding: 0 1.5rem;
}
}

@media (max-width: 991px) {header {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
}header .head_study {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .nav_page {
    margin-bottom: 0;
    margin-right: 0;
}header .head_pro {
    margin-top: 1rem;
    flex-basis: 100%;
    justify-content: flex-end;
}header .head_pagewrap a {
    font-size: calc(14px - 1px);
    height: 35px;
    padding: 0 1rem;
}header .head_study::before,
    header .head_study::after {
    display: none;
}.top_edu {
    margin-top: -10px;
}
}

@media (max-width: 767px) {header {
    padding: 0;
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 5px), 
            calc(100% - 5px) 100%, 
            5px 100%, 
            0 calc(100% - 5px)
        );
}header .head_study {
    padding: 0.8rem 1.5rem;
}header .nav_page {
    clip-path: polygon(
            0 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% 100%,
            5px 100%,
            0 calc(100% - 5px)
        );
    padding: 0.5rem 0.8rem;
}header .header_know img {
    max-height: 35px;
}header .head_pro {
    padding-bottom: 0.5rem;
    justify-content: flex-start;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    margin-top: 0.8rem;
}header .head_pro::-webkit-scrollbar {
    height: 3px;
}header .head_pro::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}header .head_pagewrap {
    margin: 0 0.25rem;
    flex: 0 0 auto;
}header .head_pagewrap a {
    height: 32px;
    font-size: calc(14px - 2px);
    clip-path: polygon(
            5px 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% calc(100% - 5px),
            calc(100% - 5px) 100%,
            5px 100%,
            0 calc(100% - 5px),
            0 5px
        );
    padding: 0 0.8rem;
    white-space: nowrap;
}header .head_pagewrap::after {
    display: none;
}header::after {
    width: 5px;
    right: 10px;
    top: 10px;
    height: 5px;
}.top_edu {
    margin-top: -5px;
}
}

@media (max-width: 479px) {header .head_study {
    padding: 0.7rem 1.2rem;
}header .nav_page {
    max-width: 120px;
    padding: 0.4rem 0.6rem;
}header .head_pagewrap a {
    height: 30px;
    font-size: calc(14px - 3px);
    padding: 0 0.6rem;
}}.course_instructor {
    background: linear-gradient(135deg, rgb(244,220,204) 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.course_instructor::before {
    height: 400px;
    background: rgb(231,183,159,0.5);
    position: absolute;
    width: 400px;
    filter: blur(120px);
    content: "";
    right: -100px;
    top: -100px;
    z-index: 0;
}.course_instructor::after {
    position: absolute;
    width: 300px;
    filter: blur(100px);
    z-index: 0;
    bottom: -50px;
    content: "";
    background: rgb(217,144,112,0.5);
    height: 300px;
    left: -50px;
}.course_instructor .container {
    max-width: 1200px;
    padding: 0 20px;
    z-index: 1;
    margin: 0 auto;
    position: relative;
}.course_instructor .testimonial_space {
    display: grid;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
              0 4px 8px rgba(0, 0, 0, 0.04);
    padding: 40px;
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 30px;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    grid-template-columns: 1fr;
}.course_instructor .testimonial_space:hover {
    transform: perspective(1000px) rotateY(0deg);
}.course_instructor .testimonial_space > div:first-child {
    align-items: center;
    justify-content: center;
    display: flex;
}.course_instructor .testimonial_space .portfolio_image {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 180px;
    width: 180px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}.course_instructor .testimonial_space:hover .portfolio_image {
    transform: translateZ(20px) scale(1.05);
}.course_instructor .testimonial_space .portfolio_image::before {
    z-index: 1;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    45deg,
    transparent 60%,
    rgb(231,183,159,0.5) 100%
  );
}.course_instructor .testimonial_space > div:nth-child(2) {
    transform: translateZ(10px);
    text-align: center;
}.course_instructor .testimonial_space .name {
    color: rgb(231,183,159);
    font-size: calc(23px * 1.1);
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
}.course_instructor .testimonial_space .name::after {
    transform: translateX(-50%);
    height: 2px;
    position: absolute;
    background: rgb(217,144,112);
    left: 50%;
    content: "";
    width: 80px;
    bottom: -8px;
}.course_instructor .testimonial_space > div:nth-child(2) > div {
    font-style: italic;
    margin-top: 15px;
    font-weight: 600;
    font-size: calc(15px * 0.95);
    color: #000000;
}.course_instructor .testimonial_space > div:nth-child(3) {
    position: relative;
}.course_instructor .testimonial_space .experience_area {
    color: #000000;
    font-size: 15px;
    position: relative;
    padding: 20px 0;
    line-height: 1.7;
    margin: 0;
    transform: translateZ(5px);
}.course_instructor .testimonial_space .experience_area::before,
.course_instructor .testimonial_space .experience_area::after {
    position: absolute;
    color: rgb(231,183,159,0.5);
    content: "";
    line-height: 1;
    font-family: Georgia, serif;
    font-size: 80px;
}.course_instructor .testimonial_space .experience_area::before {
    top: -20px;
    left: -15px;
}.course_instructor .testimonial_space .experience_area::after {
    content: "";
    bottom: -60px;
    right: -15px;
}

@media (min-width: 768px) {.course_instructor .testimonial_space {
    grid-template-columns: 220px 1fr;
    padding: 50px;
    gap: 30px 40px;
    grid-template-rows: auto 1fr;
}.course_instructor .testimonial_space > div:first-child {
    grid-row: span 2;
}.course_instructor .testimonial_space > div:nth-child(2) {
    align-self: end;
    text-align: left;
}.course_instructor .testimonial_space .name::after {
    transform: none;
    left: 0;
}.course_instructor .testimonial_space .experience_area {
    padding: 10px 0 10px 30px;
    border-left: 3px solid rgb(217,144,112,0.5);
}
}

@media (min-width: 992px) {.course_instructor {
    padding: 140px 0;
}.course_instructor .testimonial_space {
    grid-template-columns: 260px 1fr;
    gap: 40px 60px;
    padding: 60px;
}.course_instructor .testimonial_space .portfolio_image {
    height: 220px;
    width: 220px;
}.course_instructor .testimonial_space .name {
    font-size: calc(23px * 1.2);
}.course_instructor .testimonial_space .experience_area {
    line-height: 1.8;
    font-size: calc(15px * 1.05);
}
}

@media (max-width: 767px) {.course_instructor {
    padding: 80px 0;
}.course_instructor .testimonial_space {
    padding: 30px 25px;
}.course_instructor .testimonial_space .portfolio_image {
    width: 150px;
    height: 150px;
}.course_instructor .testimonial_space .experience_area {
    font-size: calc(15px * 0.95);
    line-height: 1.6;
}.course_instructor .testimonial_space .experience_area::before,
  .course_instructor .testimonial_space .experience_area::after {
    font-size: 60px;
}
}

@media (max-width: 480px) {.course_instructor {
    padding: 60px 0;
}.course_instructor .testimonial_space {
    padding: 25px 20px;
    gap: 20px;
}.course_instructor .testimonial_space .portfolio_image {
    height: 120px;
    width: 120px;
}.course_instructor .testimonial_space .name {
    font-size: 23px;
}.course_instructor .testimonial_space > div:nth-child(2) > div {
    font-size: calc(15px * 0.9);
}}.contact_us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: rgb(244,220,204);
}.contact_us::before {
    background: linear-gradient(120deg, rgb(231,183,159,0.5) 0%, transparent 75%);
    content: "";
    position: absolute;
    opacity: 0.15;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
}.contact_us::after {
    bottom: 0;
    content: "";
    background: linear-gradient(240deg, rgb(217,144,112,0.5) 0%, transparent 70%);
    position: absolute;
    height: 70%;
    opacity: 0.1;
    width: 70%;
    right: 0;
}.contact_us .container {
    max-width: 1200px;
    z-index: 1;
    position: relative;
    margin: 0 auto;
    padding: 0 30px;
}.contact_us h2 {
    color: #000000;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
}.contact_us .request_widget {
    flex-direction: row-reverse;
    margin-top: 50px;
    overflow: hidden;
    display: flex;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    flex-wrap: wrap;
}.contact_us .portfolio_image {
    position: relative;
    min-height: 500px;
    flex: 0 0 40%;
    overflow: hidden;
}.contact_us .portfolio_image::after {
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.4));
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    content: "";
}.contact_us .query_panel {
    padding: 60px;
    flex: 0 0 60%;
    position: relative;
}.contact_us .query_panel::before {
    border-radius: 2.5px;
    background: linear-gradient(to bottom, rgb(231,183,159), rgb(217,144,112));
    position: absolute;
    top: 40px;
    width: 5px;
    height: calc(100% - 80px);
    content: "";
    left: 0;
}.contact_us form {
    padding-left: 25px;
    width: 100%;
}.contact_us form h3 {
    font-family: Arial, sans-serif;
    font-size: 21px;
    margin-bottom: 35px;
    color: #000000;
    font-weight: 600;
}.contact_us form input[type="text"] {
    font-size: 14px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background: rgb(244,220,204);
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 10px;
    color: #000000;
}.contact_us form input[type="text"]:focus {
    box-shadow: 0 0 0 2px rgb(231,183,159,0.5);
    outline: none;
    background: rgba(rgb(231,183,159), 0.05);
}.contact_us form input[type="text"]::placeholder {
    color: rgba(#000000, 0.4);
}.contact_us .help_query {
    display: flex;
    margin: 10px 0 30px;
    align-items: flex-start;
}.contact_us .help_query input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_us .help_query label {
    font-size: 12px;
    position: relative;
    cursor: pointer;
    color: #000000;
    padding-left: 35px;
    line-height: 1.5;
}.contact_us .help_query label::before {
    width: 22px;
    border-radius: 10px;
    left: 0;
    border: 2px solid rgb(231,183,159,0.5);
    transition: all 0.2s ease;
    content: "";
    height: 22px;
    position: absolute;
    top: 2px;
}.contact_us .help_query input[type="checkbox"]:checked + label::before {
    border-color: rgb(231,183,159);
    background-color: rgb(231,183,159);
}.contact_us .help_query input[type="checkbox"]:checked + label::after {
    height: 11px;
    transform: rotate(45deg);
    width: 6px;
    position: absolute;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    left: 8px;
    content: "";
    top: 9px;
}.contact_us .help_query label a {
    transition: all 0.3s ease;
    color: rgb(231,183,159);
    text-decoration: none;
}.contact_us .help_query label a:hover {
    color: rgb(217,144,112);
    text-decoration: underline;
}.contact_us form .reach_grid {
    color: #ffffff;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(45deg, rgb(231,183,159), rgb(217,144,112));
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    padding: 15px 35px;
    font-size: 19px;
}.contact_us form .reach_grid::before {
    left: -10%;
    height: 120%;
    width: 120%;
    position: absolute;
    top: -10%;
    transform: rotate(45deg) translateX(-200%);
    content: "";
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.2);
}.contact_us form .reach_grid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(rgb(231,183,159), 0.3);
}.contact_us form .reach_grid:hover::before {
    transform: rotate(45deg) translateX(200%);
}.contact_us svg {
    height: 22px;
    fill: rgb(231,183,159);
    width: 22px;
}.contact_us svg path {
    fill: rgb(231,183,159);
    transition: fill 0.3s ease;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.1;
    }
}

@media screen and (max-width: 1024px) {.contact_us .query_panel {
    padding: 50px 40px;
}
}

@media screen and (max-width: 991px) {.contact_us .portfolio_image {
    min-height: 300px;
    flex: 0 0 100%;
}.contact_us .query_panel {
    flex: 0 0 100%;
}.contact_us .query_panel::before {
    left: 40px;
    height: 5px;
    top: 0;
    background: linear-gradient(to right, rgb(231,183,159), rgb(217,144,112));
    width: calc(100% - 80px);
}.contact_us form {
    padding-top: 25px;
    padding-left: 0;
}
}

@media screen and (max-width: 767px) {.contact_us {
    padding: 70px 0;
}.contact_us .portfolio_image {
    min-height: 250px;
}.contact_us .query_panel {
    padding: 40px 30px;
}.contact_us .query_panel::before {
    width: calc(100% - 60px);
    left: 30px;
}
}

@media screen and (max-width: 480px) {.contact_us {
    padding: 50px 0;
}.contact_us h2 {
    font-size: calc(28px * 0.8);
}.contact_us .portfolio_image {
    min-height: 200px;
}.contact_us .query_panel {
    padding: 30px 20px;
}.contact_us .query_panel::before {
    width: calc(100% - 40px);
    left: 20px;
}.contact_us form h3 {
    font-size: calc(21px * 0.9);
    margin-bottom: 25px;
}.contact_us form input[type="text"] {
    padding: 15px 20px;
}.contact_us form .reach_grid {
    width: 100%;
    text-align: center;
}}.privacy_encasement {
    background: linear-gradient(135deg, rgb(244,220,204) 0%, rgba(245, 245, 250, 0.95) 100%);
    font-family: Arial, sans-serif;
    overflow: hidden;
    padding: 5rem 2rem;
    position: relative;
    color: #000000;
}.privacy_encasement::before {
    position: absolute;
    right: 0;
    background: linear-gradient(90deg, rgb(231,183,159) 0%, rgb(217,144,112) 100%);
    content: "";
    left: 0;
    height: 8px;
    top: 0;
    z-index: 1;
}.privacy_encasement::after {
    left: 0;
    height: 100%;
    position: absolute;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    width: 100%;
    z-index: -1;
    content: "";
    top: 0;
}.privacy_encasement .container {
    max-width: 1140px;
    position: relative;
    transform: translateZ(0);
    z-index: 2;
    margin: 0 auto;
}.privacy_encasement h1 {
    position: relative;
    transform: perspective(1000px) translateZ(10px);
    color: rgb(231,183,159);
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: calc(46px * 1.2);
    padding-bottom: 1rem;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.privacy_encasement h1::after {
    height: 4px;
    position: absolute;
    width: 80px;
    transform-origin: left;
    content: "";
    bottom: 0;
    transition: width 0.4s ease-out;
    left: 0;
    background: linear-gradient(90deg, rgb(231,183,159), rgb(217,144,112,0.5));
}.privacy_encasement h1:hover::after {
    width: 120px;
}.privacy_encasement h2 {
    padding-left: 1.2rem;
    color: rgb(217,144,112);
    transition: transform 0.35s ease-out;
    font-weight: 600;
    font-size: 38px;
    margin: 3rem 0 1.5rem;
    transform: translateX(0);
    position: relative;
}.privacy_encasement h2::before {
    width: 8px;
    transform: translateY(-50%);
    left: 0;
    background: rgb(231,183,159,0.5);
    top: 50%;
    content: "";
    height: 85%;
    position: absolute;
}.privacy_encasement h2:hover {
    transform: translateX(5px);
}.privacy_encasement h3 {
    padding-left: 1rem;
    position: relative;
    font-weight: 600;
    color: #000000;
    font-size: calc(38px * 0.85);
    margin: 2.5rem 0 1.2rem;
}.privacy_encasement h3::before {
    transform: translateY(-50%);
    left: 0;
    background: rgb(217,144,112,0.5);
    content: "";
    width: 6px;
    height: 70%;
    top: 50%;
    position: absolute;
}.privacy_encasement h4 {
    margin: 2rem 0 1rem;
    color: #000000;
    position: relative;
    padding-left: 0.8rem;
    font-size: calc(19px * 1.1);
    font-weight: 600;
}.privacy_encasement h4::before {
    left: 0;
    top: 50%;
    background: rgb(217,144,112,0.5);
    position: absolute;
    transform: translateY(-50%);
    content: "";
    height: 60%;
    width: 4px;
}.privacy_encasement p {
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    transition: transform 0.35s ease;
    color: #000000;
    transform: translateZ(0);
    font-size: 15px;
    max-width: 90%;
    position: relative;
}.privacy_encasement p strong {
    position: relative;
    color: #000000;
    padding-bottom: 2px;
    display: inline-block;
}.privacy_encasement p strong::after {
    transition: transform 0.35s ease-out;
    transform: scaleX(0);
    content: "";
    background: rgb(231,183,159,0.5);
    width: 100%;
    left: 0;
    position: absolute;
    transform-origin: right;
    height: 1px;
    bottom: 0;
}.privacy_encasement p:hover strong::after {
    transform: scaleX(1);
    transform-origin: left;
}.privacy_encasement ul {
    list-style: none;
    margin: 1.5rem 0 2rem;
    position: relative;
    padding-left: 1.5rem;
}.privacy_encasement ul::before {
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    width: 2px;
    content: "";
    background: linear-gradient(to bottom, rgb(231,183,159,0.5), transparent);
}.privacy_encasement li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    font-size: calc(15px * 0.97);
    position: relative;
    line-height: 1.7;
}.privacy_encasement li::before {
    top: 1.2rem;
    position: absolute;
    content: "";
    border: 2px solid rgb(231,183,159);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0.8;
    height: 10px;
    left: 0;
    width: 10px;
}.privacy_encasement li:hover {
    transform: translateX(5px);
}.privacy_encasement li:hover::before {
    background-color: rgb(231,183,159,0.5);
    transform: rotate(225deg);
}.privacy_encasement span {
    transform: translateZ(0);
    padding: 1rem 1.5rem;
    border-left: 3px solid rgb(217,144,112);
    color: #000000;
    background-color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    font-size: calc(15px * 0.95);
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}.privacy_encasement span:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

@media (min-width: 992px) {.privacy_encasement {
    padding: 7rem 3rem;
}.privacy_encasement h1 {
    margin-bottom: 3rem;
    font-size: calc(46px * 1.3);
}.privacy_encasement p {
    max-width: 80%;
}.privacy_encasement h2 {
    padding-left: 1.5rem;
}.privacy_encasement h2::before {
    width: 10px;
}.privacy_encasement span {
    max-width: calc(100% - 6rem);
    margin-left: 3rem;
}
}

@media (max-width: 991px) {.privacy_encasement h1 {
    font-size: calc(46px * 1.1);
}.privacy_encasement h2 {
    font-size: calc(38px * 0.95);
}.privacy_encasement p, .privacy_encasement span {
    max-width: 100%;
}
}

@media (max-width: 767px) {.privacy_encasement {
    padding: 4rem 1.5rem;
}.privacy_encasement h1 {
    font-size: 46px;
    margin-bottom: 2rem;
}.privacy_encasement h2 {
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
}.privacy_encasement h3, .privacy_encasement h4 {
    padding-left: 0.7rem;
}.privacy_encasement ul {
    padding-left: 0.5rem;
}.privacy_encasement li {
    padding: 0.7rem 0 0.7rem 1.8rem;
}.privacy_encasement li::before {
    width: 8px;
    height: 8px;
}.privacy_encasement span {
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.2rem;
}
}

@media (max-width: 480px) {.privacy_encasement {
    padding: 3rem 1rem;
}.privacy_encasement h1 {
    font-size: calc(46px * 0.9);
}.privacy_encasement h2 {
    font-size: calc(38px * 0.9);
}.privacy_encasement h3 {
    font-size: calc(19px * 1.1);
}.privacy_encasement h4 {
    font-size: 19px;
}.privacy_encasement p, .privacy_encasement li, .privacy_encasement span {
    font-size: calc(15px * 0.95);
    line-height: 1.6;
}}.start_now {
    background: linear-gradient(180deg, rgb(231,183,159) 0%, rgb(217,144,112) 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}.start_now::before {
    top: 0;
    opacity: 0.05;
    transform: perspective(500px) rotateX(60deg);
    left: 0;
    transform-origin: center top;
    position: absolute;
    height: 100%;
    z-index: -1;
    width: 100%;
    content: '';
    background-size: 30px 30px;
    background-image: 
        linear-gradient(0deg, #ffffff 1px, transparent 1px),
        linear-gradient(90deg, #ffffff 1px, transparent 1px);
    animation: gridMove 20s linear infinite;
}.start_now::after {
    top: 0;
    width: 100%;
    background: 
        linear-gradient(0deg, transparent 0%, #ffffff 50%, transparent 100%),
        linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    z-index: -1;
    animation: gridGlow 8s ease-in-out infinite alternate;
    height: 100%;
    opacity: 0.05;
    background-size: 100% 30px, 30px 100%;
    left: 0;
    position: absolute;
    content: '';
}.start_now .training_track {
    position: relative;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    z-index: 2;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    justify-content: center;
    padding: 50px;
    overflow: hidden;
    max-width: 1000px;
    border-radius: 15px;
}.start_now .training_track::before {
    content: '';
    width: 100%;
    left: 0;
    animation: patternShift 15s linear infinite;
    background-size: 30px 30px;
    z-index: -1;
    top: 0;
    background: 
        linear-gradient(135deg, transparent 45%, #ffffff 50%, transparent 55%),
        linear-gradient(45deg, transparent 45%, #ffffff 50%, transparent 55%);
    opacity: 0.05;
    height: 100%;
    position: absolute;
}.start_now .training_track::after {
    position: absolute;
    animation: pulseRadial 10s ease-in-out infinite;
    z-index: -1;
    top: -50%;
    width: 200%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 60%
    );
    opacity: 0.1;
    content: '';
    height: 200%;
    left: -50%;
}.start_now h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 37px;
    color: #ffffff;
}.start_now h3::before {
    left: 50%;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    width: 60px;
    animation: orbitRotate 10s linear infinite;
    transform: translateX(-50%);
    position: absolute;
    top: -80px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    content: '';
    z-index: -1;
}.start_now h3::after {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent);
    bottom: -20px;
    left: 50%;
    height: 1px;
    transform: translateX(-50%);
    content: '';
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 100px;
    position: absolute;
}.start_now .get_help {
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    padding: 16px 45px;
    overflow: hidden;
    font-size: 20px;
    color: rgb(231,183,159);
    position: relative;
    text-decoration: none;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 15px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-block;
    letter-spacing: 2px;
}.start_now .get_help::before {
    height: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    background-size: 10px 10px;
    background-image: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%);
    content: '';
    width: 100%;
    top: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}.start_now .get_help::after {
    z-index: 1;
    left: -100px;
    height: 200%;
    transform: rotate(35deg);
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );
    position: absolute;
    top: -50%;
    content: '';
    width: 20px;
    transition: all 0.6s ease;
}.start_now .get_help:hover {
    color: #ffffff;
    background: linear-gradient(45deg, rgb(231,183,159), rgb(217,144,112));
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.3);
}.start_now .get_help:hover::before {
    opacity: 0.5;
}.start_now .get_help:hover::after {
    left: 200%;
}

@media screen and (max-width: 992px) {.start_now {
    padding: 100px 0;
}.start_now .training_track {
    padding: 40px;
    max-width: 90%;
}.start_now h3 {
    font-size: calc(37px * 0.9);
    margin-bottom: 50px;
}.start_now h3::before {
    width: 50px;
    height: 50px;
    top: -70px;
}.start_now h3::after {
    width: 80px;
}.start_now .get_help {
    padding: 14px 40px;
    font-size: calc(20px * 0.95);
}
}

@media screen and (max-width: 768px) {.start_now {
    padding: 80px 0;
}.start_now .training_track {
    padding: 30px;
}.start_now h3 {
    letter-spacing: 2px;
    font-size: calc(37px * 0.8);
    margin-bottom: 45px;
}.start_now h3::before {
    top: -60px;
    height: 40px;
    width: 40px;
}.start_now h3::after {
    bottom: -15px;
    width: 70px;
}.start_now .get_help {
    font-size: calc(20px * 0.9);
    letter-spacing: 1.5px;
    padding: 12px 35px;
}
}

@media screen and (max-width: 576px) {.start_now {
    padding: 60px 0;
}.start_now .training_track {
    padding: 25px 20px;
}.start_now h3 {
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    font-size: calc(37px * 0.7);
}.start_now h3::before {
    width: 30px;
    height: 30px;
    top: -50px;
}.start_now h3::after {
    width: 60px;
    bottom: -12px;
}.start_now .get_help {
    letter-spacing: 1px;
    font-size: calc(20px * 0.85);
    padding: 10px 30px;
}}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 30px;
    }
}

@keyframes gridGlow {
    0% {
        opacity: 0.03;
        filter: blur(3px);
    }
    50% {
        opacity: 0.05;
        filter: blur(5px);
    }
    100% {
        opacity: 0.03;
        filter: blur(3px);
    }
}

@keyframes patternShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

@keyframes pulseRadial {
    0% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.05;
        transform: scale(1);
    }
}

@keyframes orbitRotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}.opening_page {
    background: linear-gradient(135deg, rgb(244,220,204) 0%, rgb(231,183,159,0.5) 100%);
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;
    padding: 4rem 2rem;
}.opening_page::before {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    background: 
    radial-gradient(circle at 20% 30%, rgb(217,144,112,0.5) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgb(231,183,159,0.5) 0%, transparent 30%);
    opacity: 0.6;
    animation: ambientLight 10s infinite alternate ease-in-out;
    width: 100%;
    height: 100%;
    content: "";
}.opening_page::after {
    transform: skewY(-5deg) scale(1.2);
    z-index: -1;
    background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 10px,
    rgb(217,144,112,0.5) 10px,
    rgb(217,144,112,0.5) 11px
  );
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    pointer-events: none;
    content: "";
    left: 0;
    opacity: 0.05;
}.opening_page > div {
    max-width: 1200px;
    grid-template-columns: 1fr;
    width: 100%;
    display: grid;
    gap: 4rem;
    transform-style: preserve-3d;
}.opening_page h1.study_express {
    animation: titleFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    font-size: clamp(2.5rem, 5vw, 44px);
    position: relative;
    color: #000000;
    transform: translateZ(50px);
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}.opening_page h1.study_express::after {
    bottom: -15px;
    animation: expandLine 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: left center;
    background: linear-gradient(90deg, rgb(231,183,159), rgb(217,144,112));
    width: 80px;
    left: 0;
    content: "";
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: absolute;
    height: 6px;
}.opening_page p {
    max-width: 80%;
    margin-top: 0.5rem;
    font-size: clamp(1rem, 2vw, 12px);
    transform: translateZ(30px);
    line-height: 1.6;
    color: #000000;
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}.opening_page .edu_head {
    width: 100%;
    transform: translateZ(20px) rotateX(5deg);
    overflow: hidden;
    animation: floatIn 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
    transform-style: preserve-3d;
}.opening_page .edu_beliefs {
    overflow: hidden;
    display: flex;
    transform-style: preserve-3d;
    width: 100%;
    justify-content: flex-start;
    position: relative;
    align-items: flex-end;
    height: 100%;
}.opening_page .edu_beliefs::before {
    left: 0;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    content: "";
    background: linear-gradient(
    to top,
    #000000 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
    z-index: 1;
}.opening_page .edu_beliefs span {
    animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.8s both;
    width: 90%;
    padding: 2.5rem;
    background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
    border-left: 4px solid rgb(231,183,159);
    backdrop-filter: blur(4px);
    z-index: 2;
    transform: translateZ(30px);
    position: relative;
}.opening_page .edu_beliefs h3 {
    text-shadow: 0 2px 4px #000000;
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.5vw, 20px);
    line-height: 1.4;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateZ(0) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateZ(50px) translateY(0);
  }
}

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateZ(-50px) rotateX(15deg) translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateZ(20px) rotateX(5deg) translateY(0);
  }
}

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

@keyframes ambientLight {
  0%, 100% {
    opacity: 0.6;
    background-position: 0% 0%, 100% 100%;
  }
  50% {
    opacity: 0.8;
    background-position: 10% 20%, 90% 80%;
  }
}

@media (min-width: 768px) {.opening_page {
    padding: 6rem 3rem;
}.opening_page > div {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}.opening_page h1.study_express::after {
    width: 120px;
}.opening_page .edu_head {
    transform: translateZ(30px) rotateX(5deg) rotateY(-2deg);
}.opening_page .edu_beliefs span {
    padding: 3rem;
    width: 80%;
}
}

@media (min-width: 1200px) {.opening_page {
    padding: 6rem 4rem;
}.opening_page > div {
    gap: 6rem;
}.opening_page h1.study_express {
    transform: translateZ(80px);
}.opening_page p {
    transform: translateZ(50px);
}.opening_page .edu_head {
    transform: translateZ(40px) rotateX(3deg) rotateY(-3deg);
}.opening_page .edu_head:hover {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(45px) rotateX(1deg) rotateY(-1deg);
}.opening_page .edu_beliefs span {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(40px);
}.opening_page .edu_beliefs:hover span {
    transform: translateZ(50px) translateY(-10px);
}
}

@media (max-width: 767px) {.opening_page {
    padding: 3rem 1.5rem;
}.opening_page h1.study_express {
    transform: translateZ(20px);
}.opening_page p {
    transform: translateZ(10px);
    max-width: 100%;
}.opening_page .edu_head {
    margin-top: 2rem;
    transform: translateZ(10px) rotateX(3deg);
    aspect-ratio: 4 / 3;
}.opening_page .edu_beliefs span {
    padding: 1.5rem;
    width: 100%;
}}.data_exploration {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(244,220,204) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 4rem 2rem;
    position: relative;
}.data_exploration::before {
    content: "";
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(231,183,159,0.5) 0px,
        rgb(231,183,159,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    width: 100%;
    opacity: 0.05;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
}.data_exploration::after {
    position: absolute;
    transform: rotate(-15deg);
    top: -50%;
    width: 80%;
    content: "";
    right: -50%;
    height: 200%;
    opacity: 0.1;
    background: linear-gradient(45deg, rgb(231,183,159,0.5) 0%, transparent 70%);
    z-index: 0;
}.data_exploration h3 {
    margin-bottom: 3rem;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 34px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    transform: translateY(0);
    color: #000000;
}.data_exploration h3::after {
    background: rgb(231,183,159);
    transition: transform 0.6s ease-out;
    content: "";
    width: 60px;
    transform: translateX(-50%) scaleX(0.8);
    left: 50%;
    bottom: -12px;
    height: 3px;
    position: absolute;
}.data_exploration:hover h3::after {
    transform: translateX(-50%) scaleX(1.2);
}.data_exploration .container {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
}.data_exploration ul {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    list-style: none;
    perspective: 1000px;
    gap: 2rem;
    padding: 0;
    display: grid;
}.data_exploration .statistics_benefit {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.3, 0.98), 
                box-shadow 0.5s ease;
    justify-content: center;
    transform: translateY(0) rotateX(0);
    background: #ffffff;
    padding: 2rem 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    align-items: center;
    isolation: isolate;
    position: relative;
}.data_exploration .statistics_benefit::before {
    top: 0;
    background: rgb(231,183,159);
    content: "";
    position: absolute;
    left: 0;
    transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 0;
    width: 6px;
}.data_exploration .statistics_benefit:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) rotateX(2deg);
}.data_exploration .statistics_benefit:hover::before {
    height: 100%;
}.data_exploration .statistics_benefit span {
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s ease, color 0.3s ease;
    z-index: 2;
    position: relative;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
}.data_exploration .statistics_benefit:hover span {
    color: rgb(231,183,159);
    transform: translateX(8px);
}.data_exploration .statistics_benefit p {
    color: rgb(217,144,112);
    font-size: 2.5rem;
    position: relative;
    margin: 0;
    animation-delay: calc(0.1s * var(--i, 1));
    transform: translateY(20px);
    font-family: Arial, sans-serif;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}.data_exploration .statistics_benefit:nth-child(1) p {
    --i: 1;
}.data_exploration .statistics_benefit:nth-child(2) p {
    --i: 2;
}.data_exploration .statistics_benefit:nth-child(3) p {
    --i: 3;
}.data_exploration .statistics_benefit:nth-child(4) p {
    --i: 4;
}.data_exploration .statistics_benefit:nth-child(5) p {
    --i: 5;
}.data_exploration .statistics_benefit:nth-child(6) p {
    --i: 6;
}.data_exploration .statistics_benefit:nth-child(7) p {
    --i: 7;
}.data_exploration .statistics_benefit::after {
    height: 50%;
    mix-blend-mode: overlay;
    z-index: 1;
    right: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(225deg, rgb(231,183,159,0.5) 0%, transparent 70%);
    bottom: 0;
    content: "";
    width: 50%;
}.data_exploration .statistics_benefit:hover::after {
    opacity: 0.2;
}

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

@media (max-width: 992px) {.data_exploration {
    padding: 3rem 1.5rem;
}.data_exploration h3 {
    font-size: calc(34px * 0.9);
    margin-bottom: 2.5rem;
}.data_exploration ul {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
}

@media (max-width: 768px) {.data_exploration {
    padding: 2.5rem 1.25rem;
}.data_exploration h3 {
    font-size: calc(34px * 0.8);
    margin-bottom: 2rem;
}.data_exploration ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}.data_exploration .statistics_benefit {
    padding: 1.75rem 1.25rem;
}.data_exploration .statistics_benefit p {
    font-size: 2.2rem;
}
}

@media (max-width: 576px) {.data_exploration {
    padding: 2rem 1rem;
}.data_exploration h3 {
    font-size: calc(34px * 0.7);
    margin-bottom: 1.5rem;
}.data_exploration ul {
    gap: 1rem;
    grid-template-columns: 1fr;
}.data_exploration .statistics_benefit {
    padding: 1.5rem 1rem;
}.data_exploration .statistics_benefit p {
    font-size: 2rem;
}.data_exploration .statistics_benefit:hover {
    transform: translateY(-5px) rotateX(1deg);
}
}

@media (prefers-reduced-motion: reduce) {.data_exploration .statistics_benefit,
    .data_exploration h3,
    .data_exploration h3::after,
    .data_exploration .statistics_benefit::before,
    .data_exploration .statistics_benefit::after,
    .data_exploration .statistics_benefit span,
    .data_exploration .statistics_benefit p {
    animation: none;
    transform: none;
    transition: none;
}.data_exploration .statistics_benefit p {
    opacity: 1;
}}.thxFrame {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(244,220,204) 0%, #ffffff 100%);
    padding: 120px 0;
}.thxFrame::before {
    filter: blur(80px);
    height: 300px;
    width: 300px;
    top: -50px;
    animation: float 12s ease-in-out infinite;
    z-index: 0;
    left: -50px;
    background: rgb(217,144,112,0.5);
    content: "";
    position: absolute;
}.thxFrame::after {
    height: 280px;
    position: absolute;
    bottom: -80px;
    content: "";
    right: -80px;
    animation: float 15s ease-in-out infinite reverse;
    width: 280px;
    filter: blur(70px);
    background: rgb(231,183,159,0.5);
    z-index: 0;
}.thxFrame .container {
    z-index: 2;
    position: relative;
}.thxFrame .training_track {
    gap: 2rem;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.8),
                inset 5px 5px 10px rgba(255, 255, 255, 0.8),
                inset -5px -5px 10px rgba(0, 0, 0, 0.05);
    clip-path: polygon(
        0% 0%, 
        97% 0%, 
        100% 3%, 
        100% 100%, 
        3% 100%, 
        0% 97%
    );
    position: relative;
    grid-template-columns: 1fr;
    backdrop-filter: blur(15px);
    display: grid;
    transform: perspective(1000px) rotateX(2deg);
    background: rgba(255, 255, 255, 0.85);
    padding: 3.5rem;
}.thxFrame .training_track::before {
    opacity: 0.08;
    pointer-events: none;
    height: 100%;
    left: 0;
    position: absolute;
    background-size: 10px 10px;
    content: "";
    background: linear-gradient(45deg, transparent 48%, rgb(217,144,112,0.5) 49%, transparent 51%);
    width: 100%;
    top: 0;
}.thxFrame .training_track > div:first-child {
    position: relative;
}.thxFrame .training_track > div:first-child::after {
    background: linear-gradient(90deg, rgb(231,183,159) 0%, rgb(217,144,112) 100%);
    left: 0;
    content: "";
    width: 80px;
    height: 4px;
    bottom: -1rem;
    transform-origin: left center;
    position: absolute;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}.thxFrame .training_track:hover > div:first-child::after {
    transform: scaleX(1.5);
}.thxFrame h5 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    transform: translateX(0);
    margin-bottom: 0.5rem;
    color: #000000;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: Arial, sans-serif;
}.thxFrame .training_track:hover h5 {
    transform: translateX(10px);
}.thxFrame a {
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
    text-decoration: none;
    display: block;
    position: relative;
}.thxFrame a:hover {
    transform: translateY(-5px);
}.thxFrame a::before {
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    position: absolute;
    content: "";
    z-index: -1;
    transition: height 0.5s ease, opacity 0.5s ease;
    background: linear-gradient(to top, rgb(231,183,159,0.5) 0%, transparent 100%);
    opacity: 0;
}.thxFrame a:hover::before {
    opacity: 0.1;
    height: 100%;
}.thxFrame p {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.7;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(0, -40px);
    }
    75% {
        transform: translate(-20px, -20px);
    }
}

@media (min-width: 768px) {.thxFrame {
    padding: 150px 0;
}.thxFrame .training_track {
    padding: 4rem;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}.thxFrame h5 {
    margin-bottom: 0;
    font-size: calc(21px * 1.1);
}.thxFrame p {
    font-size: calc(13px * 1.05);
}
}

@media (min-width: 992px) {.thxFrame {
    padding: 180px 0;
}.thxFrame .training_track {
    padding: 5rem;
}.thxFrame h5 {
    font-size: calc(21px * 1.2);
}.thxFrame .training_track > div:first-child::after {
    width: 100px;
}
}

@media (max-width: 767px) {.thxFrame {
    padding: 80px 0;
}.thxFrame .training_track {
    padding: 2.5rem;
}.thxFrame h5 {
    font-size: calc(21px * 0.9);
}.thxFrame p {
    font-size: calc(13px * 0.95);
}.thxFrame .training_track > div:first-child::after {
    width: 60px;
}
}

@media (max-width: 480px) {.thxFrame {
    padding: 60px 0;
}.thxFrame .training_track {
    padding: 2rem;
    clip-path: polygon(
            0% 0%, 
            95% 0%, 
            100% 5%, 
            100% 100%, 
            5% 100%, 
            0% 95%
        );
}.thxFrame h5 {
    font-size: calc(21px * 0.85);
}.thxFrame p {
    font-size: calc(13px * 0.9);
}}.customer_opinions {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgb(244,220,204) 0%, rgba(245, 248, 255, 0.95) 100%);
}.customer_opinions::before {
    content: "";
    background: radial-gradient(circle at center, rgb(231,183,159,0.5) 0%, transparent 70%);
    right: -5%;
    height: 40%;
    width: 35%;
    top: -5%;
    opacity: 0.15;
    position: absolute;
    animation: float 15s infinite alternate ease-in-out;
}.customer_opinions::after {
    position: absolute;
    transform: rotate(-15deg);
    opacity: 0.12;
    width: 25%;
    animation: float 18s infinite alternate-reverse ease-in-out;
    content: "";
    height: 30%;
    left: -3%;
    background: radial-gradient(ellipse at center, rgb(217,144,112,0.5) 0%, transparent 75%);
    bottom: -8%;
}.customer_opinions .container {
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1280px;
}.customer_opinions h2 {
    position: relative;
    margin-bottom: 3.5rem;
    line-height: 1.3;
    font-weight: 700;
    font-size: calc(33px * 1.05);
    letter-spacing: -0.5px;
    color: #000000;
    text-align: center;
    transform: perspective(1000px) rotateX(2deg);
}.customer_opinions h2::after {
    content: "";
    height: 3px;
    transform: translateX(-50%);
    position: absolute;
    width: 5rem;
    left: 50%;
    background: linear-gradient(90deg, rgb(231,183,159) 0%, rgb(217,144,112) 100%);
    bottom: -1rem;
}.customer_opinions .edu_testimonials {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    padding: 0;
    margin: 0;
    gap: 2.5rem;
    list-style: none;
}.customer_opinions .testimonial_space {
    padding: 2.2rem 2rem;
    transform: translateY(0);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.08);
    z-index: 1;
    isolation: isolate;
    background: #ffffff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}.customer_opinions .testimonial_space::before {
    position: absolute;
    opacity: 0.07;
    color: rgb(217,144,112);
    content: "";
    font-size: 8rem;
    z-index: -1;
    font-family: Georgia, serif;
    top: 1.2rem;
    right: 1.5rem;
    line-height: 0;
}.customer_opinions .testimonial_space::after {
    background: linear-gradient(90deg, rgb(231,183,159) 0%, rgb(217,144,112) 100%);
    left: 0;
    position: absolute;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 3px;
    bottom: 0;
    content: "";
    width: 0;
}.customer_opinions .testimonial_space:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px -15px rgba(0, 0, 0, 0.1);
}.customer_opinions .testimonial_space:hover::after {
    width: 100%;
}.customer_opinions .testimonial_space div {
    margin-bottom: 1.5rem;
    align-items: center;
    display: flex;
}.customer_opinions .testimonial_space img {
    width: 55px;
    margin-right: 1rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.9);
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}.customer_opinions .testimonial_space:hover img {
    transform: scale(1.08) rotate(3deg);
}.customer_opinions .testimonial_space h4 {
    font-size: calc(19px * 0.95);
    margin: 0;
    font-weight: 600;
    color: #000000;
    position: relative;
}.customer_opinions .testimonial_space h4::after {
    bottom: -5px;
    content: "";
    height: 2px;
    transition: width 0.3s ease;
    left: 0;
    position: absolute;
    width: 25px;
    background-color: rgb(231,183,159,0.5);
}.customer_opinions .testimonial_space:hover h4::after {
    width: 40px;
}.customer_opinions .description {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: calc(13px * 0.95);
    line-height: 1.6;
    margin: 0;
    z-index: 2;
    color: #000000;
}.customer_opinions a {
    border-radius: 3px;
    color: #ffffff;
    background: linear-gradient(90deg, rgb(231,183,159) 0%, rgb(231,183,159) 100%);
    transform: translateX(-50%);
    box-shadow: 0 10px 25px -10px rgb(231,183,159,0.5);
    position: relative;
    text-decoration: none;
    font-size: 20px;
    left: 50%;
    transition: all 0.4s ease;
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
    margin-top: 3.5rem;
    display: inline-block;
    padding: 0.9rem 2.2rem;
}.customer_opinions a::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    height: 100%;
    top: 0;
    z-index: -1;
    transition: left 0.7s ease;
    position: absolute;
    left: -100%;
    width: 100%;
    content: "";
}.customer_opinions a:hover {
    box-shadow: 0 15px 30px -10px rgb(231,183,159,0.5);
    transform: translateX(-50%) translateY(-3px);
}.customer_opinions a:hover::before {
    left: 100%;
}

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

@media (max-width: 992px) {.customer_opinions {
    padding: 6rem 0;
}.customer_opinions h2 {
    margin-bottom: 3rem;
    font-size: calc(33px * 0.95);
}.customer_opinions .edu_testimonials {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 768px) {.customer_opinions {
    padding: 5rem 0;
}.customer_opinions h2 {
    transform: none;
    margin-bottom: 2.5rem;
    font-size: calc(33px * 0.9);
}.customer_opinions .edu_testimonials {
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}.customer_opinions .testimonial_space {
    padding: 1.8rem 1.6rem;
}.customer_opinions .testimonial_space:hover {
    transform: translateY(-5px);
}.customer_opinions a {
    padding: 0.8rem 2rem;
    margin-top: 2.5rem;
}
}

@media (max-width: 480px) {.customer_opinions {
    padding: 4rem 0;
}.customer_opinions h2 {
    font-size: calc(33px * 0.8);
    margin-bottom: 2rem;
}.customer_opinions .container {
    padding: 0 1.5rem;
}.customer_opinions .testimonial_space {
    padding: 1.6rem 1.4rem;
}.customer_opinions .testimonial_space img {
    width: 45px;
    height: 45px;
}.customer_opinions .testimonial_space::before {
    font-size: 6rem;
}.customer_opinions a {
    margin-top: 2rem;
    padding: 0.7rem 1.8rem;
}}.art_portal {
    background-position: center center;
    color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 5rem 0 3rem;
}.art_portal::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(0deg, #000000 20%, transparent 100%);
    z-index: -1;
}.art_portal::after {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3) 0px,
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 20px
    );
    z-index: -1;
    left: 0;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
}.art_portal .container {
    position: relative;
    display: flex;
    flex-direction: column;
}.art_portal .container::before {
    clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
    opacity: 0.3;
    width: 100%;
    top: -80px;
    content: "";
    left: 0;
    background: linear-gradient(0deg, rgb(231,183,159) 0%, transparent 100%);
    position: absolute;
    height: 80px;
}.art_portal .company_holder {
    clip-path: polygon(
        0 0,
        calc(100% - 30px) 0,
        100% 30px,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
    border: 1px solid rgba(rgb(231,183,159), 0.3);
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    position: relative;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-bottom: 4rem;
}.art_portal .company_holder::before {
    left: -5px;
    content: "";
    height: calc(100% + 10px);
    clip-path: polygon(
        0 0,
        calc(100% - 40px) 0,
        100% 40px,
        100% 100%,
        40px 100%,
        0 calc(100% - 40px)
    );
    position: absolute;
    filter: blur(5px);
    opacity: 0.5;
    top: -5px;
    width: calc(100% + 10px);
    z-index: -1;
    background: linear-gradient(45deg, rgb(231,183,159), transparent 70%);
}.art_portal .company_holder h3 {
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    text-shadow: 0 0 10px rgb(231,183,159), 0 0 20px rgb(231,183,159), 0 0 30px rgb(231,183,159);
    letter-spacing: 2px;
    font-size: calc(37px * 1.2);
    position: relative;
}.art_portal .company_holder h3::before {
    opacity: 0.7;
    filter: blur(1px);
    left: 2px;
    z-index: -1;
    color: rgb(231,183,159);
    top: 2px;
    position: absolute;
    content: attr(data-text);
}.art_portal .linkedin_ref {
    color: #ffffff;
    line-height: 1.6;
    font-size: 18px;
    padding-left: 1rem;
    margin-top: 1.5rem;
    border-left: 2px solid rgb(231,183,159);
    opacity: 0.8;
}.art_portal .case_study {
    position: relative;
    justify-content: space-between;
    display: flex;
}.art_portal .case_study::before {
    width: 100%;
    top: -20px;
    background: linear-gradient(90deg, transparent, rgb(231,183,159), transparent);
    left: 0;
    position: absolute;
    height: 1px;
    content: "";
}.art_portal .site_head {
    justify-content: space-between;
    gap: 2rem;
    display: flex;
    width: 100%;
}.art_portal .head_pro {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-left: 2px solid rgb(231,183,159);
    flex: 1;
    border-bottom: 2px solid rgb(231,183,159);
    background: rgba(0, 0, 0, 0.2);
}.art_portal .head_pro:hover {
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.4);
    background: rgba(rgb(231,183,159,0.5), 0.1);
    transform: translateY(-5px);
}.art_portal .head_pro h5 {
    margin-bottom: 1.5rem;
    font-size: 19px;
    text-transform: uppercase;
    color: rgb(217,144,112);
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
}.art_portal .head_pro h5::after {
    background: rgb(231,183,159);
    left: 0;
    height: 2px;
    bottom: -8px;
    box-shadow: 0 0 10px rgb(231,183,159);
    content: "";
    position: absolute;
    width: 40px;
}.art_portal .head_pro .site_head {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}.art_portal .head_pro .site_head a {
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    opacity: 0.7;
    overflow: hidden;
    position: relative;
}.art_portal .head_pro .site_head a::before {
    transition: all 0.3s ease;
    left: 0;
    content: "//";
    font-size: 0.8em;
    position: absolute;
    color: rgb(231,183,159);
}.art_portal .head_pro .site_head a:hover {
    opacity: 1;
    text-shadow: 0 0 5px rgb(231,183,159);
    color: rgb(231,183,159);
}.art_portal .head_pro .site_head a:hover::before {
    color: rgb(217,144,112);
}.hackathon {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    margin-top: 3rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}.hackathon::before {
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    background-image: 
        linear-gradient(90deg, transparent, rgb(231,183,159), transparent);
    height: 1px;
    width: 100%;
}.hackathon .container {
    display: flex;
    align-items: center;
    justify-content: center;
}.hackathon .cert_display {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.7;
    text-align: center;
}.hackathon .cert_display::before,
.hackathon .cert_display::after {
    margin: 0 10px;
    color: rgb(231,183,159);
    content: "//";
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgb(231,183,159), 0 0 20px rgb(231,183,159);
    }
    20%, 24%, 55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

@keyframes scan-lines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@media screen and (max-width: 992px) {.art_portal .case_study {
    flex-direction: column;
}.art_portal .site_head {
    flex-direction: column;
}.art_portal .head_pro {
    margin-bottom: 1rem;
    width: 100%;
}.hackathon {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
}

@media screen and (max-width: 768px) {.art_portal {
    padding: 4rem 0 2rem;
}.art_portal .company_holder {
    padding: 1.5rem;
    margin-bottom: 3rem;
}.art_portal .company_holder h3 {
    font-size: 37px;
}.art_portal .head_pro h5 {
    font-size: calc(19px * 0.9);
}.hackathon {
    margin-top: 2rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    padding: 1.2rem 0;
}
}

@media screen and (max-width: 576px) {.art_portal {
    padding: 3rem 0 2rem;
}.art_portal .company_holder {
    clip-path: polygon(
            0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            20px 100%,
            0 calc(100% - 20px)
        );
}.art_portal .company_holder h3 {
    font-size: calc(37px * 0.85);
    letter-spacing: 1px;
}.art_portal .linkedin_ref {
    font-size: calc(18px * 0.9);
}.art_portal .head_pro {
    padding: 1rem;
}.art_portal .head_pro .site_head a {
    font-size: calc(18px * 0.9);
}.hackathon {
    padding: 1rem 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}.hackathon .cert_display::before,
    .hackathon .cert_display::after {
    display: none;
}}.location_info {
    overflow: hidden;
    position: relative;
    color: #000000;
    background: linear-gradient(135deg, rgb(244,220,204) 0%, rgb(231,183,159,0.5) 100%);
    font-family: Arial, sans-serif;
    padding: 4rem 2rem;
}.location_info::before {
    height: 120%;
    content: "";
    opacity: 0.4;
    left: -10%;
    width: 120%;
    position: absolute;
    animation: pulse 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at 30% 70%, rgb(231,183,159,0.5) 0%, transparent 60%);
    z-index: 0;
    top: -10%;
}.location_info::after {
    background-image: radial-gradient(circle at 80% 20%, rgb(217,144,112,0.5) 0%, transparent 40%);
    position: absolute;
    animation: float 20s infinite alternate ease-in-out;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
}.location_info h1 {
    position: relative;
    margin-bottom: 3rem;
    z-index: 2;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: rgb(231,183,159);
    transform: translateY(-5px);
    font-size: 38px;
}.location_info h1::after {
    left: 50%;
    bottom: -10px;
    border-radius: 10px;
    width: 80px;
    height: 4px;
    transform: translateX(-50%);
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgb(231,183,159), rgb(217,144,112));
}.location_info .container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}.location_info .write_feedback {
    grid-template-columns: 1fr;
    border-radius: 26px;
    transition: transform 0.5s ease;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06),
                0 5px 15px rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
    gap: 2rem;
}.location_info .write_feedback:hover {
    transform: perspective(1000px) rotateX(0deg);
}.location_info .write_feedback > div {
    transition: transform 0.3s ease-out;
    position: relative;
}.location_info .write_feedback > div:hover {
    transform: translateY(-5px);
}.location_info .write_feedback > div:first-child {
    font-size: calc(13px * 1.1);
    line-height: 1.6;
    color: #000000;
    padding: 0 0 1.5rem 0;
    border-bottom: 1px solid rgb(231,183,159,0.5);
}.location_info .write_feedback h6 {
    letter-spacing: 0.5px;
    font-weight: 600;
    color: rgb(231,183,159);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 22px;
    text-transform: uppercase;
}.location_info .write_feedback span {
    font-size: 13px;
    padding-left: 2rem;
    display: block;
    color: #000000;
}.location_info .support_contact {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}.location_info .support_contact > div {
    position: relative;
    transition: all 0.3s ease;
}.location_info .support_contact > div:hover {
    transform: translateX(5px);
}.location_info .get_help {
    font-size: calc(13px * 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    text-decoration: none;
    align-items: center;
    transition: color 0.3s ease;
    color: rgb(231,183,159);
}.location_info .get_help:hover {
    color: rgb(217,144,112);
}.location_info .get_help:hover svg {
    transform: scale(1.1) rotate(5deg);
}.location_info svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    height: 22px;
    width: 22px;
}.location_info svg path {
    fill: rgb(231,183,159);
    transition: fill 0.3s ease;
}.location_info .get_help:hover svg path {
    fill: rgb(217,144,112);
}

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

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@media screen and (min-width: 768px) {.location_info {
    padding: 6rem 3rem;
}.location_info .write_feedback {
    padding: 3rem;
    gap: 3rem;
    grid-template-columns: 2fr 1fr 1fr;
}.location_info .write_feedback > div:first-child {
    border-right: 1px solid rgb(231,183,159,0.5);
    padding: 0 2rem 0 0;
    border-bottom: none;
}.location_info h1 {
    margin-bottom: 4rem;
    font-size: calc(38px * 1.2);
}.location_info h1::after {
    width: 120px;
}
}

@media screen and (min-width: 992px) {.location_info .write_feedback {
    transform: perspective(1500px) rotateX(3deg);
}.location_info .support_contact {
    gap: 1.5rem;
}
}

@media screen and (max-width: 767px) {.location_info .write_feedback > div:nth-child(2) {
    border-bottom: 1px solid rgb(231,183,159,0.5);
    padding: 1.5rem 0;
}.location_info svg {
    height: 20px;
    width: 20px;
}.location_info h1 {
    font-size: calc(38px * 0.9);
}
}

@media screen and (max-width: 480px) {.location_info {
    padding: 3rem 1.5rem;
}.location_info .write_feedback {
    padding: 1.5rem;
}.location_info h1 {
    margin-bottom: 2rem;
}}.plan_chooser {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: rgb(244,220,204);
}.plan_chooser::before {
    background: linear-gradient(135deg, 
        rgba(var(--secondary-color-rgb), 0.03) 0%,
        rgba(var(--secondary-color-rgb), 0.01) 40%, 
        rgba(var(--primary-color-rgb), 0.02) 60%, 
        rgba(var(--primary-color-rgb), 0.05) 100%);
    top: -10%;
    left: -5%;
    z-index: 0;
    position: absolute;
    transform: rotate(-3deg);
    height: 120%;
    content: "";
    width: 110%;
}.plan_chooser .container {
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
}.plan_chooser .fee_plan {
    display: flex;
    flex-direction: column;
}.plan_chooser .fee_choices {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
    order: 1;
}.plan_chooser .fee_choices h2 {
    -webkit-background-clip: text !important;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-text-fill-color: transparent;
    font-size: 37px;
    font-weight: 700;
    background: linear-gradient(120deg, rgb(217,144,112), rgb(231,183,159));
    color: #000000;
    margin-bottom: 15px;
    transform: translateY(0);
}.plan_chooser .fee_choices:hover h2 {
    transform: translateY(-5px);
}.plan_chooser .rate_panel {
    line-height: 1.6;
    font-size: 13px;
    color: #000000;
    position: relative;
    margin: 0 auto;
    max-width: 700px;
}.plan_chooser .rate_panel::after {
    position: absolute;
    transform: translateX(-50%) scaleX(0.7);
    bottom: -15px;
    left: 50%;
    transition: transform 0.5s ease;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, rgb(217,144,112), rgb(231,183,159));
    content: "";
}.plan_chooser .fee_choices:hover .rate_panel::after {
    transform: translateX(-50%) scaleX(1);
}.plan_chooser .pay_options {
    display: grid;
    width: 100%;
    gap: 30px;
    order: 2;
    grid-template-columns: repeat(1, 1fr);
}.plan_chooser .fee_deals {
    transform-style: preserve-3d;
    position: relative;
    display: block;
    perspective: 1000px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    border-radius: 15px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: #ffffff;
}.plan_chooser .fee_deals::before {
    top: 0;
    transform: scaleX(0.85);
    transform-origin: left;
    content: "";
    left: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    height: 5px;
    background: linear-gradient(90deg, rgb(217,144,112), rgb(231,183,159));
    z-index: 2;
    width: 100%;
}.plan_chooser .fee_deals:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--secondary-color-rgb), 0.12);
}.plan_chooser .fee_deals:hover::before {
    transform: scaleX(1);
}.plan_chooser .rate_packages {
    flex-direction: column;
    height: 100%;
    display: flex;
}.plan_chooser .fee_schemes {
    z-index: 1;
    flex-direction: column;
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 30px;
}.plan_chooser .fee_schemes::before {
    background: linear-gradient(135deg, 
        rgba(var(--white-color-rgb), 0.7) 0%, 
        rgba(var(--white-color-rgb), 1) 60%);
    position: absolute;
    z-index: -1;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
}.plan_chooser .fee_schemes h3 {
    font-weight: 700;
    font-size: calc(21px + 2px);
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    color: #000000;
    position: relative;
}.plan_chooser .fee_deals:hover .fee_schemes h3 {
    transform: translateX(5px);
}.plan_chooser .access_rates {
    color: rgb(231,183,159);
    position: relative;
    font-weight: 700;
    transition: transform 0.4s ease, color 0.4s ease;
    display: inline-block;
    padding: 5px 10px;
    font-size: calc(21px + 8px);
    margin-bottom: 20px;
}.plan_chooser .access_rates::before {
    transform-origin: left;
    transform: scaleX(0.3);
    bottom: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(217,144,112), rgb(231,183,159));
    content: "";
}.plan_chooser .fee_deals:hover .access_rates {
    color: rgb(217,144,112);
    transform: translateY(-5px);
}.plan_chooser .fee_deals:hover .access_rates::before {
    transform: scaleX(1);
}.plan_chooser .fee_schemes p {
    max-width: 100%;
    overflow-wrap: break-word;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 13px;
    hyphens: auto;
    margin-bottom: 0;
    color: #000000;
    word-wrap: break-word;
}.plan_chooser .portfolio_image {
    height: 200px;
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}.plan_chooser .portfolio_image::after {
    position: absolute;
    background: linear-gradient(0deg, 
        rgba(var(--dark-color-rgb), 0.4) 0%, 
        rgba(var(--dark-color-rgb), 0) 40%);
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 1;
    content: "";
    left: 0;
}.plan_chooser .fee_deals:hover .portfolio_image {
    transform: scale(1.05);
}

@media (min-width: 768px) {.plan_chooser .pay_options {
    grid-template-columns: repeat(2, 1fr);
}.plan_chooser .fee_schemes {
    padding: 35px;
}.plan_chooser .portfolio_image {
    height: 220px;
}
}

@media (min-width: 992px) {.plan_chooser .fee_plan {
    gap: 60px;
    flex-direction: row;
    align-items: center;
}.plan_chooser .fee_choices {
    text-align: left;
    flex: 0 0 30%;
    margin-bottom: 0;
    order: 2;
}.plan_chooser .pay_options {
    grid-template-columns: repeat(2, 1fr);
    order: 1;
    flex: 0 0 65%;
}.plan_chooser .rate_panel::after {
    left: 0;
    transform: translateX(0) scaleX(0.7);
}.plan_chooser .fee_choices:hover .rate_panel::after {
    transform: translateX(0) scaleX(1);
}
}

@media (min-width: 1200px) {.plan_chooser {
    padding: 150px 0;
}.plan_chooser .pay_options {
    gap: 40px;
}.plan_chooser .fee_deals {
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), 
                    box-shadow 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}.plan_chooser .fee_deals:hover {
    transform: translateY(-15px) scale(1.02);
}.plan_chooser .fee_deals:nth-child(even) {
    transform: translateY(15px);
}.plan_chooser .fee_deals:nth-child(even):hover {
    transform: translateY(0) scale(1.02);
}.plan_chooser .portfolio_image {
    height: 250px;
}
}