* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}svg {
    height: 30px;
    width: 30px;
}.peer_help {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}.container {
    width: 1272px;
    max-width: 100%;
    margin: auto;
}.panel-container {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}html,body {
    font-family: Arial, sans-serif;
    height: 100%;
    min-height: 100%;
    color: #000000;
}header,footer {
    width: 100%;
}.nav_info {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_program_details {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(239,237,234) 0%, rgba(250, 250, 255, 0.95) 100%);
    padding: 6rem 0;
}.course_program_details::before {
    content: "";
    width: 40%;
    transform: translateX(30%) skewX(-15deg);
    right: 0;
    opacity: 0.1;
    height: 100%;
    top: 0;
    position: absolute;
    background: linear-gradient(45deg, transparent, rgb(179,168,161,0.5), transparent);
    z-index: 0;
}.course_program_details::after {
    height: 5px;
    width: 100%;
    content: "";
    z-index: 1;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(212,203,198) 0%, transparent 100%);
    position: absolute;
}.course_program_details .container {
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.course_program_details h2 {
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    font-size: calc(30px * 1.05);
    color: #000000;
    animation: slideInTitle 0.8s ease-out 0.2s forwards;
    transform: translateX(-2rem);
    opacity: 0;
}.course_program_details h2::after {
    animation: expandLine 1.2s ease-out 0.7s forwards;
    bottom: -0.8rem;
    transform: scaleX(0);
    background: rgb(212,203,198);
    height: 3px;
    transform-origin: left;
    position: absolute;
    left: 0;
    content: "";
    width: 6rem;
}.course_program_details .program_flow {
    transform: translateY(2rem);
    display: grid;
    grid-template-columns: 1fr;
    opacity: 0;
    animation: fadeUpContent 1s ease-out 0.5s forwards;
    gap: 2.5rem;
}.course_program_details .img_flex {
    transform: perspective(1000px) rotateX(3deg);
    position: relative;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 320px;
    transition: transform 0.5s ease-out;
}.course_program_details .img_flex::before {
    background: linear-gradient(
        to bottom,
        transparent 70%,
        rgb(179,168,161,0.5) 100%
    );
    width: 100%;
    top: 0;
    height: 100%;
    position: absolute;
    content: "";
    left: 0;
    z-index: 1;
}.course_program_details .img_flex::after {
    transition: all 0.5s ease-out;
    content: "";
    top: 0;
    transform: translateX(-20px);
    height: 100%;
    position: absolute;
    opacity: 0;
    width: 20px;
    background: rgb(212,203,198);
    left: 0;
}.course_program_details .img_flex:hover {
    transform: perspective(1000px) rotateX(0deg);
}.course_program_details .img_flex:hover::after {
    transform: translateX(0);
    opacity: 0.7;
}.course_program_details .post_container {
    scrollbar-color: rgb(212,203,198) transparent;
    overflow-y: auto;
    max-height: 400px;
    padding-right: 1.5rem;
    scrollbar-width: thin;
}.course_program_details .post_container::-webkit-scrollbar {
    width: 6px;
}.course_program_details .post_container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
}.course_program_details .post_container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(212,203,198);
}.course_program_details .description {
    color: #000000;
    padding-left: 1rem;
    border-left: 2px solid rgb(212,203,198,0.5);
    font-size: 12px;
    position: relative;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}.course_program_details .description:first-of-type::first-letter {
    color: rgb(212,203,198);
    margin-right: 0.8rem;
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: 700;
}.course_program_details .description:last-of-type {
    position: relative;
    padding-top: 1.5rem;
}.course_program_details .description:last-of-type::before {
    width: 80%;
    position: absolute;
    height: 1px;
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgb(179,168,161,0.5) 0%, transparent 100%);
    top: 0;
}

@keyframes slideInTitle {
    0% {
        transform: translateX(-2rem);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

@media (min-width: 768px) {.course_program_details {
    padding: 8rem 0;
}.course_program_details h2 {
    font-size: calc(30px * 1.1);
    max-width: 80%;
    margin-bottom: 4rem;
}.course_program_details .program_flow {
    align-items: flex-start;
    grid-template-columns: 45% 1fr;
    gap: 4rem;
}.course_program_details .img_flex {
    top: 2rem;
    position: sticky;
    height: 450px;
}.course_program_details .post_container {
    max-height: 600px;
}
}

@media (min-width: 1024px) {.course_program_details {
    padding: 10rem 0;
}.course_program_details::before {
    width: 60%;
}.course_program_details h2 {
    font-size: calc(30px * 1.2);
    max-width: 70%;
}.course_program_details .program_flow {
    gap: 5rem;
    grid-template-columns: 40% 1fr;
}.course_program_details .img_flex {
    height: 500px;
}.course_program_details .description {
    font-size: calc(12px * 1.05);
    line-height: 1.8;
}
}

@media (max-width: 767px) {.course_program_details {
    padding: 4rem 0;
}.course_program_details h2 {
    font-size: calc(30px * 0.9);
    margin-bottom: 2rem;
}.course_program_details .img_flex {
    margin-bottom: 1rem;
    height: 250px;
}.course_program_details .post_container {
    max-height: 350px;
}.course_program_details .description:first-of-type::first-letter {
    font-size: 2.5rem;
}}.primary_page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    justify-content: center;
    z-index: 1;
}.primary_page::before {
    z-index: -1;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
    position: absolute;
    top: 0;
    content: "";
    right: 0;
    left: 0;
    bottom: 0;
}.primary_page::after {
    position: absolute;
    background: repeating-linear-gradient(
    45deg,
    rgb(212,203,198,0.5) 0px,
    transparent 2px,
    transparent 10px,
    rgb(212,203,198,0.5) 12px
  );
    opacity: 0.07;
    left: -50%;
    height: 200%;
    transform-origin: center;
    z-index: -1;
    width: 200%;
    animation: backgroundShift 30s linear infinite;
    content: "";
    top: -50%;
}.primary_page > div {
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
    width: 100%;
    flex-direction: column;
    padding: 2rem;
    gap: 4rem;
    display: flex;
}.primary_page > div > div:first-child {
    animation: slideInFromLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-1rem) translateZ(50px);
    position: relative;
}.primary_page .title_style_header {
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    font-size: clamp(2.5rem, 5vw, 38px);
    letter-spacing: 0.02em;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3), 0 0 20px rgb(212,203,198,0.5);
}.primary_page .title_style_header::after {
    position: absolute;
    animation: lineGrow 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform-origin: left;
    width: 50%;
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(212,203,198), transparent);
    height: 4px;
    bottom: -0.5rem;
}.primary_page .page_base {
    position: relative;
    transform: translateX(1rem) translateZ(20px);
    gap: 2rem;
    background: linear-gradient(
    to right,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.1) 100%
  );
    animation: slideInFromRight 1.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    box-shadow: 20px 20px 40px rgba(0,0,0,0.2), 
              inset 0 0 30px rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    padding: 2rem;
    flex-direction: column;
    border-left: 4px solid rgb(179,168,161);
}.primary_page .study_growth {
    position: relative;
    margin-bottom: 1rem;
}.primary_page .study_growth::before {
    left: -1rem;
    height: 1.5rem;
    background: rgb(179,168,161);
    width: 1.5rem;
    top: -0.75rem;
    content: "";
    animation: pulse 3s infinite alternate;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}.primary_page .study_growth h3 {
    font-size: clamp(1.25rem, 3vw, 18px);
    letter-spacing: 0.01em;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}.primary_page .page_base > div:last-child {
    transform: translateZ(10px);
    position: relative;
    animation: fadeIn 2s forwards;
}.primary_page .page_base span {
    display: block;
    position: relative;
    padding-left: 1rem;
}.primary_page .page_base span::before {
    background: linear-gradient(to bottom, rgb(212,203,198), transparent);
    top: 0;
    width: 3px;
    position: absolute;
    left: 0;
    height: 100%;
    content: "";
}.primary_page p {
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-size: clamp(1rem, 2vw, 18px);
    margin: 0;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-6rem) translateZ(50px);
  }
  to {
    opacity: 1;
    transform: translateX(-1rem) translateZ(50px);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(6rem) translateZ(20px);
  }
  to {
    opacity: 1;
    transform: translateX(1rem) translateZ(20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes backgroundShift {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {.primary_page > div {
    gap: 6rem;
    padding: 4rem;
    transform: perspective(1200px) rotateX(3deg);
}.primary_page .page_base {
    max-width: 80%;
    margin-left: auto;
}.primary_page .title_style_header::after {
    width: 60%;
}
}

@media (min-width: 992px) {.primary_page > div {
    transform: perspective(1500px) rotateX(5deg);
    gap: 3rem;
    flex-direction: row;
    align-items: center;
}.primary_page > div > div:first-child {
    flex: 1;
    transform: translateX(-2rem) translateZ(80px);
}.primary_page .page_base {
    margin-left: 0;
    transform: translateX(2rem) translateZ(40px);
    max-width: none;
    flex: 1.2;
}.primary_page .title_style_header {
    font-size: 38px;
}.primary_page .title_style_header::after {
    height: 6px;
}
}

@media (max-width: 767px) {.primary_page {
    align-items: flex-start;
    padding: 3rem 1rem;
}.primary_page > div {
    padding: 1.5rem;
    transform: perspective(800px) rotateX(1deg);
    gap: 3rem;
}.primary_page .title_style_header {
    font-size: 2.25rem;
}.primary_page .page_base {
    padding: 1.5rem;
}
}

@media (hover: hover) {.primary_page .page_base:hover {
    transform: translateX(0.5rem) translateZ(30px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}.primary_page .title_style_header:hover::after {
    animation: lineShift 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}@keyframes lineShift {
    0% {
      transform: scaleX(1);
      background: linear-gradient(90deg, rgb(212,203,198), transparent);
    }
    50% {
      transform: scaleX(1.2);
      background: linear-gradient(90deg, rgb(179,168,161), transparent);
    }
    100% {
      transform: scaleX(1);
      background: linear-gradient(90deg, rgb(212,203,198), transparent);
    }
  }
}.our_mission {
    position: relative;
    overflow: hidden;
    background: rgb(239,237,234);
    padding: 110px 0;
}.our_mission::before {
    top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    background-image: linear-gradient(120deg, rgb(212,203,198,0.5) 0%, transparent 75%);
}.our_mission .container {
    z-index: 2;
    position: relative;
}.our_mission .edu_heritage {
    grid-gap: 30px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}.our_mission h3 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
    grid-column: 1 / -1;
    display: inline-block;
    font-size: 48px;
}.our_mission h3::after {
    width: 60%;
    background: rgb(212,203,198);
    bottom: -15px;
    height: 5px;
    content: "";
    position: absolute;
    left: 0;
}.our_mission .expert_track {
    z-index: 1;
    position: relative;
    grid-column: 1 / 7;
}.our_mission .achieve_goals {
    position: relative;
    z-index: 1;
    grid-column: 7 / -1;
}.our_mission .expert_track span {
    letter-spacing: 1px;
    display: block;
    color: rgb(212,203,198);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}.our_mission .expert_track p,
.our_mission .achieve_goals p {
    font-size: 14px;
    line-height: 1.8;
    padding-right: 20px;
    color: #000000;
    margin-bottom: 30px;
}.our_mission .img_flex,
.our_mission .pro_training {
    border-radius: 0;
    box-shadow: 15px 15px 0 rgb(212,203,198,0.5);
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    height: 360px;
}.our_mission .pro_training {
    box-shadow: 15px 15px 0 rgb(179,168,161,0.5);
}.our_mission .img_flex:hover,
.our_mission .pro_training:hover {
    box-shadow: 20px 20px 0 rgb(212,203,198,0.5);
    transform: translateY(-10px);
}.our_mission .pro_training:hover {
    box-shadow: 20px 20px 0 rgb(179,168,161,0.5);
}.our_mission .expert_track,
.our_mission .achieve_goals {
    position: relative;
}.our_mission .expert_track::before {
    z-index: -1;
    width: 100px;
    content: "";
    height: 100px;
    bottom: -20px;
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgb(212,203,198,0.5),
        rgb(212,203,198,0.5) 5px,
        transparent 5px,
        transparent 10px
    );
    left: -20px;
}.our_mission .achieve_goals::before {
    position: absolute;
    height: 100px;
    z-index: -1;
    top: -20px;
    content: "";
    background: repeating-linear-gradient(
        -45deg,
        rgb(179,168,161,0.5),
        rgb(179,168,161,0.5) 5px,
        transparent 5px,
        transparent 10px
    );
    right: -20px;
    width: 100px;
}.our_mission .img_flex::after,
.our_mission .pro_training::after {
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5));
}.our_mission .img_flex::before,
.our_mission .pro_training::before {
    transition: all 0.6s;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    left: -100%;
    content: "";
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
}.our_mission .img_flex:hover::before,
.our_mission .pro_training:hover::before {
    left: 100%;
}.our_mission .edu_heritage::after {
    right: -100px;
    height: 200px;
    position: absolute;
    top: -100px;
    animation: rotate 60s linear infinite;
    z-index: -1;
    border-radius: 50%;
    width: 200px;
    content: "";
    border: 2px dashed rgb(212,203,198,0.5);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {.our_mission {
    padding: 90px 0;
}.our_mission h3 {
    margin-bottom: 50px;
}.our_mission .img_flex,
    .our_mission .pro_training {
    height: 320px;
}
}

@media (max-width: 992px) {.our_mission .edu_heritage {
    grid-template-columns: 1fr;
}.our_mission .expert_track,
    .our_mission .achieve_goals {
    margin-bottom: 50px;
    grid-column: 1 / -1;
}.our_mission .achieve_goals {
    margin-bottom: 0;
}.our_mission h3 {
    margin-bottom: 40px;
}.our_mission .img_flex,
    .our_mission .pro_training {
    height: 400px;
}.our_mission .expert_track p,
    .our_mission .achieve_goals p {
    padding-right: 0;
}
}

@media (max-width: 768px) {.our_mission {
    padding: 70px 0;
}.our_mission h3 {
    margin-bottom: 35px;
    font-size: calc(48px * 0.8);
}.our_mission .expert_track,
    .our_mission .achieve_goals {
    margin-bottom: 40px;
}.our_mission .img_flex,
    .our_mission .pro_training {
    height: 350px;
    box-shadow: 10px 10px 0 rgb(212,203,198,0.5);
}.our_mission .pro_training {
    box-shadow: 10px 10px 0 rgb(179,168,161,0.5);
}.our_mission .img_flex:hover,
    .our_mission .pro_training:hover {
    box-shadow: 15px 15px 0 rgb(212,203,198,0.5);
}.our_mission .pro_training:hover {
    box-shadow: 15px 15px 0 rgb(179,168,161,0.5);
}
}

@media (max-width: 576px) {.our_mission {
    padding: 50px 0;
}.our_mission h3 {
    font-size: calc(48px * 0.7);
    margin-bottom: 30px;
}.our_mission h3::after {
    height: 4px;
    width: 50%;
    bottom: -10px;
}.our_mission .expert_track span {
    font-size: calc(20px * 0.9);
    margin-bottom: 15px;
}.our_mission .expert_track p,
    .our_mission .achieve_goals p {
    font-size: calc(14px * 0.95);
    margin-bottom: 20px;
    line-height: 1.7;
}.our_mission .img_flex,
    .our_mission .pro_training {
    height: 280px;
    box-shadow: 8px 8px 0 rgb(212,203,198,0.5);
}.our_mission .pro_training {
    box-shadow: 8px 8px 0 rgb(179,168,161,0.5);
}.our_mission .img_flex:hover,
    .our_mission .pro_training:hover {
    box-shadow: 10px 10px 0 rgb(212,203,198,0.5);
}.our_mission .pro_training:hover {
    box-shadow: 10px 10px 0 rgb(179,168,161,0.5);
}.our_mission .expert_track::before,
    .our_mission .achieve_goals::before {
    height: 80px;
    width: 80px;
}}

.our_mission .achieve_goals p {
    font-style: italic;
    padding-left: 20px;
    position: relative;
}.our_mission .achieve_goals p::before {
    top: 0;
    width: 4px;
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    background: rgb(179,168,161);
}.educational_yield {
    overflow: hidden;
    z-index: 1;
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(239,237,234) 30%, rgba(255,255,255,0.9) 100%);
}.educational_yield::before {
    width: 30%;
    filter: blur(40px);
    position: absolute;
    left: -2%;
    top: -5%;
    z-index: -1;
    transform: rotate(-15deg);
    height: 40%;
    background: rgb(212,203,198,0.5);
    content: "";
}.educational_yield::after {
    bottom: -5%;
    filter: blur(50px);
    background: rgb(179,168,161,0.5);
    content: "";
    position: absolute;
    height: 45%;
    transform: rotate(15deg);
    width: 35%;
    right: -2%;
    z-index: -1;
}.educational_yield .container {
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    grid-template-columns: 1fr;
    display: grid;
    padding: 0 1.5rem;
    margin: 0 auto;
}.educational_yield .img_flex {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    clip-path: polygon(0 0, 100% 3%, 98% 97%, 2% 100%);
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: perspective(1000px) rotateY(-5deg);
    filter: saturate(1.1) contrast(1.05);
    height: 300px;
}.educational_yield .img_flex:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
}.educational_yield .edu_heritage {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    position: relative;
    transform: translateY(-20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}.educational_yield .post_container {
    position: relative;
}.educational_yield h1 {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-size: 35px;
    font-weight: 700;
    transform: translateX(-5px);
    animation: fadeIn 0.7s ease-out forwards;
    position: relative;
}.educational_yield h1::before {
    animation: scaleIn 0.6s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    position: absolute;
    top: 0.5rem;
    content: "";
    width: 4px;
    transform-origin: top;
    left: -10px;
    background: rgb(212,203,198);
    height: 85%;
    transform: scaleY(0);
}.educational_yield ul {
    list-style: none;
    padding: 0;
    gap: 1.25rem;
    display: grid;
    margin: 0;
}.educational_yield li {
    padding-left: 2.5rem;
    transform: translateY(10px);
    position: relative;
    opacity: 0;
    animation: itemAppear 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}.educational_yield li:nth-child(1) {
    animation-delay: 0.3s;
}.educational_yield li:nth-child(2) {
    animation-delay: 0.45s;
}.educational_yield li:nth-child(3) {
    animation-delay: 0.6s;
}.educational_yield li:nth-child(4) {
    animation-delay: 0.75s;
}.educational_yield li:nth-child(5) {
    animation-delay: 0.9s;
}.educational_yield li p {
    line-height: 1.5;
    color: #000000;
    margin: 0;
    display: flex;
    font-size: calc(15px - 0.1rem);
    font-weight: 400;
    align-items: flex-start;
}.educational_yield li svg {
    transform: scale(0);
    height: 22px;
    left: 0;
    flex-shrink: 0;
    margin-right: 0.75rem;
    animation: iconPop 0.4s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    top: 2px;
    width: 22px;
    position: absolute;
}.educational_yield li svg path {
    transition: fill 0.3s;
    fill: rgb(212,203,198);
}.educational_yield li:hover svg {
    transform: scale(1.1) rotate(5deg);
}.educational_yield li:hover svg path {
    fill: rgb(179,168,161);
}.educational_yield li:hover p {
    color: #000000;
}

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

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

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

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

@keyframes iconPop {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 768px) {.educational_yield {
    padding: 8rem 0;
}.educational_yield .container {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}.educational_yield .img_flex {
    transform: perspective(1200px) rotateY(-8deg) translateZ(30px);
    clip-path: polygon(0 0, 100% 5%, 95% 95%, 5% 100%);
    height: 400px;
}.educational_yield .edu_heritage {
    z-index: 2;
    padding: 3rem;
    transform: perspective(1000px) rotateY(2deg);
    margin-left: -3rem;
}.educational_yield h1 {
    margin-bottom: 2rem;
    font-size: 45px;
}.educational_yield ul {
    gap: 1.5rem 2rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (min-width: 992px) {.educational_yield .container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
}.educational_yield .img_flex {
    height: 450px;
    transform: perspective(1500px) rotateY(-12deg) translateZ(50px);
}.educational_yield .edu_heritage {
    padding: 3.5rem;
    margin-left: -5rem;
    max-width: 650px;
}.educational_yield h1::before {
    left: -20px;
    width: 6px;
}.educational_yield li p {
    font-size: 15px;
}
}

@media (min-width: 1200px) {.educational_yield .img_flex {
    height: 500px;
}.educational_yield .edu_heritage {
    margin-left: -8rem;
    padding: 4rem;
}
}

@media (max-width: 767px) {.educational_yield h1 {
    font-size: calc(35px - 0.2rem);
}.educational_yield .edu_heritage {
    padding: 2rem 1.5rem;
}}.help_center {
    background: rgb(239,237,234);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}.help_center::before {
    content: '';
    z-index: 1;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(212,203,198,0.5) 0%, transparent 100%);
    top: 0;
}.help_center::after {
    width: 100%;
    position: absolute;
    background: radial-gradient(circle at 30% 70%, rgb(179,168,161,0.5) 0%, transparent 70%);
    top: 0;
    content: '';
    left: 0;
    height: 100%;
    z-index: 1;
}.help_center .container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 15px;
    margin: 0 auto;
}.help_center .message_form {
    padding: 40px;
    border-radius: 23px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    align-items: stretch;
    flex-direction: column;
    display: flex;
    border: 1px solid rgb(179,168,161,0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}.help_center .message_form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.help_center .message_info {
    font-size: 37px;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    color: rgb(212,203,198);
    margin-bottom: 30px;
}.help_center .img_flex {
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    position: relative;
    border-radius: 23px;
    height: 280px;
    overflow: hidden;
}.help_center .img_flex::before {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    left: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    content: '';
    height: 100%;
}.help_center .img_flex::after {
    width: 200%;
    left: -50%;
    animation: shine 6s infinite linear;
    z-index: 2;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    position: absolute;
    content: '';
    height: 200%;
    top: -50%;
}@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.help_center .contact_team {
    position: relative;
    padding: 30px;
    border: 1px solid rgb(179,168,161,0.5);
    background: rgb(239,237,234);
    border-radius: 23px;
}.help_center .contact_team::before {
    border-radius: 23px;
    content: '';
    top: 0;
    position: absolute;
    left: 0;
    height: 100%;
    opacity: 0.05;
    background: linear-gradient(135deg, rgb(212,203,198,0.5) 0%, transparent 100%);
    z-index: -1;
    width: 100%;
}.help_center .contact_team p {
    font-size: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    position: relative;
    display: flex;
    color: #000000;
    padding-left: 30px;
}.help_center .contact_team p::before {
    height: 24px;
    width: 24px;
    justify-content: center;
    display: flex;
    top: 0px;
    align-items: center;
    content: '';
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
    left: -3px;
    background: rgb(212,203,198,0.5);
    position: absolute;
}.help_center .contact_team p:hover::before {
    transform: scale(1.2);
    background-color: rgb(212,203,198);
}.help_center .contact_team p span {
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}.help_center .contact_team p span::after {
    height: 1px;
    content: '';
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    width: 0;
    background: rgb(212,203,198);
    bottom: 0;
}.help_center .contact_team p:hover span::after {
    width: 100%;
}.help_center .contact_team p span a {
    text-decoration: none;
    color: rgb(179,168,161);
    transition: color 0.3s ease;
}.help_center .contact_team p span a:hover {
    color: rgb(212,203,198);
}.help_center .contact_team p svg {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    fill: rgb(212,203,198);
    transition: transform 0.3s ease, fill 0.3s ease;
    width: 18px;
}.help_center .contact_team p:hover svg {
    fill: rgb(179,168,161);
    transform: scale(1.2);
}.help_center .contact_team p svg path {
    fill: inherit;
    transition: fill 0.3s ease;
}.help_center .reach_experts {
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgb(179,168,161,0.5);
}.help_center .reach_out {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: rgb(212,203,198);
}.help_center .reach_out::before {
    height: 20px;
    content: '';
    transition: transform 0.3s ease;
    width: 20px;
    left: 0;
    border-radius: 50%;
    background: rgb(212,203,198,0.5);
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}.help_center .reach_out:hover::before {
    transform: translateY(-50%) scale(1.2);
}.help_center .reach_out svg {
    top: 50%;
    fill: rgb(212,203,198);
    height: 20px;
    width: 20px;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, fill 0.3s ease;
}.help_center .reach_out:hover svg {
    fill: rgb(179,168,161);
    transform: translateY(-50%) scale(1.2);
}.help_center .reach_out svg path {
    transition: fill 0.3s ease;
    fill: inherit;
}.help_center .online_form {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    display: grid;
}.help_center .request_team {
    overflow: hidden;
    font-size: 15px;
    position: relative;
    background: rgb(179,168,161,0.5);
    padding: 10px 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    color: #000000;
}.help_center .request_team::before {
    position: absolute;
    height: 100%;
    top: 0;
    width: 4px;
    left: 0;
    transition: width 0.3s ease;
    content: '';
    background: rgb(212,203,198);
}.help_center .request_team:hover {
    transform: translateX(5px);
    background: rgb(179,168,161);
}.help_center .request_team:hover::before {
    width: 8px;
}.help_center .request_team svg {
    fill: rgb(212,203,198);
    height: 14px;
    width: 14px;
    transition: transform 0.3s ease, fill 0.3s ease;
    vertical-align: middle;
    margin-right: 5px;
}.help_center .request_team:hover svg {
    transform: rotate(15deg);
    fill: #ffffff;
}.help_center .request_team svg path {
    fill: inherit;
    transition: fill 0.3s ease;
}@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.help_center .container::before {
    right: -100px;
    top: -100px;
    z-index: -1;
    animation: pulse 10s infinite linear;
    opacity: 0.2;
    border-radius: 50%;
    width: 300px;
    background-size: 15px 15px;
    background-image: linear-gradient(
        45deg,
        rgb(179,168,161,0.5) 25%,
        transparent 25%,
        transparent 50%,
        rgb(179,168,161,0.5) 50%,
        rgb(179,168,161,0.5) 75%,
        transparent 75%,
        transparent
    );
    position: absolute;
    height: 300px;
    content: '';
}.help_center .container::after {
    height: 200px;
    border-radius: 50%;
    background-size: 10px 10px;
    z-index: -1;
    content: '';
    bottom: -50px;
    background-image: linear-gradient(
        45deg,
        rgb(212,203,198,0.5) 25%,
        transparent 25%,
        transparent 50%,
        rgb(212,203,198,0.5) 50%,
        rgb(212,203,198,0.5) 75%,
        transparent 75%,
        transparent
    );
    left: -50px;
    position: absolute;
    opacity: 0.1;
    animation: pulse 15s infinite linear;
    width: 200px;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 0%, 100% 100%;
    }
    50% {
        background-position: 100% 0%, 0% 100%;
    }
    100% {
        background-position: 0% 0%, 100% 100%;
    }
}

@media (min-width: 992px) {.help_center .message_form {
    gap: 40px;
    flex-direction: row;
}.help_center .img_flex {
    height: 350px;
    margin-bottom: 0;
    flex: 0 0 350px;
}.help_center .contact_team {
    flex: 1;
}.help_center .online_form {
    grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 768px) and (max-width: 991px) {.help_center {
    padding: 60px 0;
}.help_center .message_form {
    padding: 30px;
}.help_center .message_info {
    font-size: 18px;
    margin-bottom: 25px;
}.help_center .img_flex {
    height: 240px;
}.help_center .contact_team {
    padding: 25px;
}.help_center .online_form {
    grid-template-columns: repeat(2, 1fr);
}.help_center .contact_team p svg {
    height: 16px;
    width: 16px;
}.help_center .reach_out svg {
    width: 18px;
    height: 18px;
}
}

@media (max-width: 767px) {.help_center {
    padding: 40px 0;
}.help_center .message_form {
    padding: 20px;
}.help_center .message_info {
    margin-bottom: 20px;
    font-size: 17px;
}.help_center .img_flex {
    height: 200px;
}.help_center .contact_team {
    padding: 20px;
}.help_center .contact_team p {
    margin-bottom: 15px;
    font-size: 15px;
}.help_center .reach_out {
    font-size: 17px;
}.help_center .online_form {
    grid-template-columns: 1fr;
}.help_center .contact_team p svg {
    height: 15px;
    width: 15px;
    top: 4px;
}.help_center .reach_out svg {
    height: 16px;
    width: 16px;
}.help_center .request_team svg {
    width: 12px;
    height: 12px;
}}.ty_content {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(239,237,234) 0%, rgba(255,255,255,0.95) 100%);
}.ty_content::before {
    z-index: 0;
    right: -10%;
    content: "";
    animation: float 18s infinite ease-in-out;
    background: rgb(212,203,198,0.5);
    width: 50%;
    position: absolute;
    transform: rotate(-15deg) skew(15deg);
    height: 80%;
    filter: blur(60px);
    opacity: 0.3;
    top: -20%;
}.ty_content::after {
    z-index: 0;
    bottom: -10%;
    opacity: 0.2;
    content: "";
    left: -5%;
    position: absolute;
    filter: blur(50px);
    background: rgb(179,168,161,0.5);
    transform: rotate(10deg) skew(-10deg);
    height: 60%;
    animation: float 15s infinite ease-in-out reverse;
    width: 40%;
}.ty_content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}.ty_content h2 {
    margin-bottom: 2.5rem;
    font-weight: 700;
    transform: perspective(1000px) translateZ(0);
    font-family: Arial, sans-serif;
    position: relative;
    font-size: calc(36px * 1.1);
    color: #000000;
    line-height: 1.3;
    text-align: center;
}.ty_content h2::after {
    background: linear-gradient(90deg, rgb(212,203,198), rgb(179,168,161));
    bottom: -15px;
    content: "";
    transform: translateX(-50%);
    width: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    left: 50%;
    position: absolute;
    height: 3px;
}.ty_content .edu_heritage {
    position: relative;
    border-left: 5px solid rgb(212,203,198);
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.95) 100%);
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 
                0 5px 15px rgba(0,0,0,0.03),
                0 0 0 1px rgba(0,0,0,0.02);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 40px;
}.ty_content .edu_heritage:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08),
                0 10px 20px rgba(0,0,0,0.05),
                0 0 0 1px rgba(0,0,0,0.02);
    transform: perspective(1000px) rotateX(2deg) translateY(-5px);
}.ty_content ul {
    padding: 0;
    list-style: none;
    margin: 0;
}.ty_content li {
    position: relative;
    padding-left: 25px;
}.ty_content li::before {
    transform: rotate(45deg);
    border-radius: 2px;
    background: linear-gradient(135deg, rgb(212,203,198) 0%, rgb(179,168,161) 100%);
    height: 12px;
    left: 0;
    width: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    top: 8px;
    position: absolute;
    content: "";
}.ty_content span {
    color: #000000;
    font-family: Arial, sans-serif;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

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

@media (max-width: 991px) {.ty_content {
    padding: 90px 0;
}.ty_content h2 {
    margin-bottom: 2rem;
    font-size: calc(36px * 0.9);
}.ty_content .edu_heritage {
    padding: 30px;
}
}

@media (max-width: 767px) {.ty_content {
    padding: 70px 0;
}.ty_content h2 {
    line-height: 1.4;
    font-size: calc(36px * 0.8);
}.ty_content h2::after {
    width: 60px;
    bottom: -12px;
}.ty_content .edu_heritage {
    padding: 25px 20px;
    border-left: 4px solid rgb(212,203,198);
}.ty_content li {
    padding-left: 20px;
}.ty_content li::before {
    width: 10px;
    height: 10px;
    top: 7px;
}.ty_content span {
    font-size: calc(14px - 1px);
    line-height: 1.7;
}
}

@media (max-width: 480px) {.ty_content {
    padding: 50px 0;
}.ty_content h2 {
    font-size: calc(36px * 0.7);
    margin-bottom: 1.5rem;
}.ty_content .edu_heritage {
    padding: 20px 15px;
    border-left: 3px solid rgb(212,203,198);
}.ty_content li::before {
    height: 8px;
    width: 8px;
    top: 8px;
}.ty_content span {
    line-height: 1.6;
    font-size: calc(14px - 2px);
}}header .top_plank {
    background: rgb(212,203,198);
    color:  #ffffff;
}header .top_plank .learning_panel div svg, header .top_plank .learning_panel div svg path {
    fill: #ffffff;
}header .top_plank .learning_panel div span {
    color: #ffffff;
}header .top_plank .learning_panel {
    flex-wrap: wrap;
    align-items: center;
    line-height: 21px;
    justify-content: flex-start;
    font-size: 14px;
    display: flex;
    width: 100%;
    padding: 15px 0 10px 0;
}header .top_plank .learning_panel div {
    align-items: center;
    display: flex;
    margin-right: 24px;
    justify-content: flex-start;
}header .top_plank .learning_panel div img, header .top_plank .learning_panel div svg {
    height: 16px;
    width: 16px;
    margin-right: 8px;
}footer {
    position: relative;
}footer::before {
    top: 0;
    background: linear-gradient(45deg, rgb(179,168,161,0.5) 0%, rgb(212,203,198,0.5) 100%);
    bottom: 0;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    content: '';
}.peer_help {
    font-family: Arial, sans-serif;
    position: relative;
    color: #ffffff;
    padding: 80px 0 40px;
    z-index: 2;
}.peer_help .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
}.peer_help .company_holder {
    z-index: 3;
    position: relative;
    grid-column: 1 / 5;
}.peer_help .company_holder h3 {
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 10px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    font-size: 36px;
    display: inline-block;
    text-transform: uppercase;
}.peer_help .company_holder h3::after {
    width: 40px;
    left: 0;
    height: 4px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    background: rgb(212,203,198);
    content: '';
}.peer_help .report_abuse {
    line-height: 1.6;
    border-left: 4px solid rgb(212,203,198);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 15px;
    transform: translateZ(0);
    padding: 20px;
}.peer_help .gift_card {
    position: relative;
    grid-column: 5 / 13;
}.peer_help .head_edu {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 40px;
}.peer_help .first_section {
    position: relative;
}.peer_help .first_section h5 {
    font-size: 23px;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
}.peer_help .first_section h5::before {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    width: 8px;
    background: rgb(212,203,198);
    height: 8px;
    border-radius: 50%;
    left: -15px;
    content: '';
}.peer_help .first_section .head_edu {
    flex-direction: column;
    gap: 15px;
    display: flex;
}.peer_help .first_section .head_edu a {
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
    overflow: hidden;
    font-size: 15px;
    padding: 8px 15px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
}.peer_help .first_section .head_edu a::before {
    position: absolute;
    background: rgb(212,203,198);
    height: 100%;
    content: '';
    transition: all 0.3s ease;
    top: 0;
    width: 3px;
    left: 0;
    z-index: -1;
}.peer_help .first_section .head_edu a:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}.peer_help .first_section .head_edu a:hover::before {
    width: 100%;
    background: rgb(212,203,198,0.5);
}.eng_center {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    margin-top: 60px;
}.eng_center::before {
    opacity: 0.2;
    left: 15%;
    right: 15%;
    position: absolute;
    content: '';
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    top: 0;
    height: 1px;
}.eng_center .container {
    display: flex;
    justify-content: center;
    align-items: center;
}.eng_center .footer_classes {
    letter-spacing: 0.5px;
    text-align: center;
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
}@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

footer::after {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    position: absolute;
    top: 0;
    z-index: 1;
    bottom: 0;
    content: '';
    right: 0;
    left: 0;
}

@media (max-width: 992px) {.peer_help .container {
    grid-template-columns: repeat(1, 1fr);
}.peer_help .company_holder {
    grid-column: 1 / -1;
    margin-bottom: 40px;
}.peer_help .gift_card {
    grid-column: 1 / -1;
}.peer_help .head_edu {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {.peer_help {
    padding: 60px 0 30px;
}.peer_help .head_edu {
    grid-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}.peer_help .first_section {
    padding: 0;
}}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.peer_help::before {
    width: 100%;
    animation: gradientShift 5s infinite;
    content: '';
    background-size: 200% 200%;
    height: 5px;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(212,203,198), rgb(179,168,161), rgb(212,203,198));
}.peer_help .company_holder::after {
    right: -50px;
    background: rgb(212,203,198,0.5);
    border-radius: 50%;
    top: 40px;
    filter: blur(60px);
    height: 150px;
    width: 150px;
    position: absolute;
    content: '';
    z-index: -1;
    opacity: 0.4;
}.peer_help .company_holder::before {
    z-index: -1;
    left: -30px;
    filter: blur(40px);
    position: absolute;
    background: rgb(179,168,161,0.5);
    width: 100px;
    height: 100px;
    opacity: 0.3;
    border-radius: 50%;
    bottom: 0;
    content: '';
}.peer_help .gift_card::after {
    border-radius: 50%;
    filter: blur(50px);
    position: absolute;
    content: '';
    top: -20px;
    height: 120px;
    right: 100px;
    background: rgb(212,203,198,0.5);
    opacity: 0.2;
    z-index: -1;
    width: 120px;
}.peer_help .gift_card::before {
    left: 80px;
    opacity: 0.25;
    position: absolute;
    background: rgb(179,168,161,0.5);
    filter: blur(70px);
    border-radius: 50%;
    z-index: -1;
    width: 180px;
    bottom: -50px;
    content: '';
    height: 180px;
}@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.3);
    }
}

.peer_help .first_section {
    animation: borderPulse 4s infinite;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}.peer_help .first_section h5 {
    letter-spacing: 0.5px;
}.peer_help .first_section h5::after {
    width: 30px;
    height: 2px;
    position: absolute;
    background: rgb(179,168,161);
    left: 0;
    bottom: -5px;
    content: '';
}@keyframes movingGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.eng_center {
    background-size: 200% 200%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    animation: movingGradient 10s ease infinite;
}.windowPrivacySettings {
    border-top: 2px solid rgb(212,203,198);
    z-index: 90;
    bottom: 0;
    position: fixed;
    background: rgb(239,237,234);
    width: 100%;
}.online_tracking {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.windowPrivacySettings h5 {
    font-size: 22px;
    margin-bottom: 6px;
}.windowPrivacySettings p {
    font-size: 18px;
}.cookie_overlay {
    margin-right: 10px;
    flex-shrink: 0;
}.cookie_overlay svg, .cookie_overlay svg path, .cookie_overlay img {
    height: 100px;
    fill: rgb(212,203,198);
    width: 100px;
}.consent_track {
    white-space: nowrap;
    cursor: pointer;
    color: rgb(212,203,198);
    flex-shrink: 0;
    font-size: 24px;
    min-width: 120px;
    border-bottom: 2px solid rgb(212,203,198);
    text-align: center;
    margin-left: 10px;
    line-height: 35px;
    text-decoration: none;
}.windowPrivacySettings p a {
    color: rgb(212,203,198);
    text-decoration: none;
}#consentPolicyBanner {
    display: none;
}#consentPolicyBanner:checked ~ .windowPrivacySettings {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.windowPrivacySettings {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.cookie_overlay {
    display: none;
}.online_tracking {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}.windowPrivacySettings h5 {
    text-align: center;
}.windowPrivacySettings p {
    text-align: center;
}.manage_cookies {
    margin-bottom: 20px;
}body .panel-container .consent_track {
    margin-left: 0;
}}
.panel-container .online_tracking {
    justify-content: flex-end;
}.panel-container .consent_track {
    font-size: 20px;
    color: #ffffff;
    margin-left: 30px;
    background: rgb(212,203,198);
    padding: 10px;
}.panel-container .manage_cookies {
    text-align: right;
}
@media only screen and (max-width: 800px)  {.panel-container .consent_track {
    margin-bottom: 10px;
    margin-left: 0;
}}.training_specialist {
    background: linear-gradient(135deg, rgb(239,237,234), rgba(245, 247, 250, 0.92));
    padding: 7rem 0;
    overflow: hidden;
    position: relative;
}.training_specialist::before {
    transform: rotate(-15deg);
    top: -5%;
    z-index: 0;
    width: 40%;
    position: absolute;
    content: "";
    left: -5%;
    background: linear-gradient(225deg, rgb(212,203,198,0.5), transparent);
    opacity: 0.15;
    height: 40%;
}.training_specialist::after {
    bottom: -5%;
    height: 50%;
    opacity: 0.1;
    position: absolute;
    z-index: 0;
    width: 30%;
    transform: rotate(10deg);
    right: -5%;
    content: "";
    background: linear-gradient(45deg, rgb(179,168,161,0.5), transparent);
}.training_specialist .container {
    margin: 0 auto;
    z-index: 1;
    max-width: 1140px;
    position: relative;
    padding: 0 1.5rem;
}.training_specialist .edu_stories {
    display: grid;
    gap: 2.5rem;
    padding: 3rem 2rem;
    background: #ffffff;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    grid-template-columns: 1fr;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 
                0 1px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(0);
}.training_specialist .edu_stories:hover {
    transform: translateY(-5px);
}.training_specialist .edu_stories > div:first-child {
    position: relative;
    width: 100%;
}.training_specialist .edu_stories .img_flex {
    position: relative;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    padding-bottom: 85%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    height: 0;
    overflow: hidden;
}.training_specialist .edu_stories:hover .img_flex {
    transform: scale(1.02);
}.training_specialist .edu_stories .img_flex::after {
    position: absolute;
    top: 0;
    width: 100%;
    content: "";
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.2));
    left: 0;
}.training_specialist .edu_stories > div:nth-child(2) {
    text-align: left;
    position: relative;
}.training_specialist .edu_stories .name {
    font-size: calc(20px * 1.1);
    font-weight: 700;
    color: #000000;
    position: relative;
    display: inline-block;
    margin: 0 0 0.5rem;
}.training_specialist .edu_stories .name::after {
    width: 2.5rem;
    left: 0;
    position: absolute;
    transform-origin: left;
    height: 2px;
    transform: scaleX(1);
    transition: transform 0.4s ease-out;
    bottom: -0.35rem;
    content: "";
    background: rgb(212,203,198);
}.training_specialist .edu_stories:hover .name::after {
    transform: scaleX(1.5);
}.training_specialist .edu_stories > div:nth-child(2) > div {
    letter-spacing: 0.02em;
    font-weight: 600;
    color: rgb(212,203,198);
    font-size: calc(12px * 0.95);
    margin-top: 0.75rem;
}.training_specialist .edu_stories > div:nth-child(3) {
    position: relative;
}.training_specialist .edu_stories .emp_skills {
    margin: 0;
    font-size: 12px;
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.7;
    color: #000000;
    border-left: 3px solid rgb(179,168,161,0.5);
}.training_specialist .edu_stories .emp_skills::before {
    top: -15px;
    left: -8px;
    position: absolute;
    z-index: 1;
    opacity: 0;
    content: "";
    border-radius: 50%;
    width: 25px;
    box-shadow: 0 0 0 3px rgb(179,168,161,0.5);
    background: #ffffff;
    height: 25px;
    transition: all 0.4s ease-out 0.2s;
    transform: scale(0);
}.training_specialist .edu_stories:hover .emp_skills::before {
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 768px) {.training_specialist {
    padding: 8rem 0;
}.training_specialist .edu_stories {
    grid-template-rows: auto 1fr;
    gap: 2rem 3.5rem;
    grid-template-columns: 280px 1fr;
    padding: 3.5rem;
}.training_specialist .edu_stories > div:first-child {
    grid-row: span 2;
}.training_specialist .edu_stories .img_flex {
    padding-bottom: 130%;
}.training_specialist .edu_stories > div:nth-child(2) {
    align-self: end;
}.training_specialist .edu_stories .name {
    font-size: calc(20px * 1.2);
}.training_specialist .edu_stories > div:nth-child(3) {
    grid-column: 2;
}.training_specialist .edu_stories .emp_skills {
    font-size: calc(12px * 1.05);
    padding-left: 1.5rem;
}
}

@media (min-width: 1024px) {.training_specialist {
    padding: 10rem 0;
}.training_specialist .edu_stories {
    gap: 2.5rem 4rem;
    padding: 4rem;
    grid-template-columns: 320px 1fr;
}.training_specialist .edu_stories .name {
    font-size: calc(20px * 1.3);
}.training_specialist .edu_stories > div:nth-child(2) > div {
    font-size: 12px;
}.training_specialist .edu_stories .emp_skills {
    font-size: calc(12px * 1.1);
    line-height: 1.8;
}.training_specialist .edu_stories::before {
    top: 3.5rem;
    height: 80px;
    transition: all 0.5s ease-out;
    border-radius: 0 10px 0 100px;
    right: 3.5rem;
    background: linear-gradient(135deg, rgb(212,203,198,0.5), transparent 70%);
    position: absolute;
    transform: rotate(45deg);
    z-index: 0;
    content: "";
    width: 80px;
    opacity: 0.1;
}.training_specialist .edu_stories:hover::before {
    opacity: 0.15;
    transform: rotate(55deg) scale(1.2);
}
}

@media (min-width: 1280px) {.training_specialist .edu_stories {
    padding: 5rem;
    gap: 3rem 5rem;
    grid-template-columns: 380px 1fr;
}.training_specialist .edu_stories .emp_skills {
    border-left: 4px solid rgb(179,168,161,0.5);
    padding-left: 2rem;
}}.pricing_plan {
    padding: 120px 0 100px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}.pricing_plan::before {
    height: 100%;
    z-index: -1;
    top: 0;
    width: 100%;
    left: 0;
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(179,168,161,0.5), rgba(0, 0, 0, 0.5) 80%);
}.pricing_plan::after {
    z-index: -1;
    pointer-events: none;
    animation: rotateBackground 180s linear infinite;
    background: radial-gradient(circle at center, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
    left: -50%;
    height: 200%;
    top: -50%;
    position: absolute;
    content: "";
    width: 200%;
}.pricing_plan .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
}.cost_card {
    position: relative;
}.pricing_plan h2 {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) translateZ(20px);
    font-weight: 700;
    font-size: 35px;
    color: #ffffff;
}.pricing_plan h2::after {
    height: 3px;
    bottom: -10px;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(212,203,198), transparent);
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
}.pricing_plan .payment_deals {
    transform: perspective(1000px) translateZ(10px);
    opacity: 0.9;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.6;
    font-size: 12px;
    margin: 0 auto 60px;
}.pricing_plan .study_costs {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    list-style: none;
    gap: 30px;
    padding: 0;
    perspective: 1000px;
}.pricing_plan .study_costs li {
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}.pricing_plan .package_rates {
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    display: block;
}.pricing_plan .cost_deals {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2),
              -10px -10px 30px rgba(255, 255, 255, 0.05),
              inset 2px 2px 4px rgba(255, 255, 255, 0.05),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}.pricing_plan .cost_deals::before {
    height: 80px;
    right: -40px;
    content: "";
    background: rgb(212,203,198);
    transition: transform 0.5s ease-out;
    opacity: 0.1;
    position: absolute;
    top: -40px;
    width: 80px;
    border-radius: 50%;
}.pricing_plan .cost_deals::after {
    transition: transform 0.5s ease-out;
    content: "";
    transform-origin: left;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(212,203,198), transparent);
    width: 100%;
    bottom: 0;
    transform: scaleX(0.7);
    height: 3px;
}.pricing_plan .price_schemes {
    position: relative;
    transform: translateZ(20px);
    z-index: 2;
}.pricing_plan .package_rates h4 {
    margin: 0 0 20px;
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    font-size: calc(23px + 2px);
}.pricing_plan .package_rates h4::after {
    position: absolute;
    content: "";
    width: 40px;
    background: rgb(212,203,198);
    bottom: -8px;
    height: 2px;
    left: 0;
    transition: width 0.3s ease;
}.pricing_plan .package_rates p {
    scrollbar-width: thin;
    overflow-y: auto;
    scrollbar-color: rgb(212,203,198) transparent;
    max-height: 240px;
    color: #ffffff;
    padding-right: 10px;
    font-size: calc(12px - 1px);
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.6;
}.pricing_plan .package_rates p::-webkit-scrollbar {
    width: 4px;
}.pricing_plan .package_rates p::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}.pricing_plan .package_rates p::-webkit-scrollbar-thumb {
    background: rgb(212,203,198);
    border-radius: 10px;
}.pricing_plan .pricing_options {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: block;
    text-align: right;
    font-weight: 700;
    margin-top: 20px;
    color: #ffffff;
    font-size: calc(23px + 6px);
    position: relative;
}.pricing_plan .pricing_options::before {
    background: rgb(212,203,198);
    bottom: -10px;
    transition: transform 0.3s ease;
    width: 60px;
    right: 0;
    transform-origin: right;
    transform: scaleX(0);
    position: absolute;
    height: 2px;
    content: "";
}.pricing_plan .package_rates:hover .cost_deals {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.25),
              -15px -15px 40px rgba(255, 255, 255, 0.07),
              inset 2px 2px 4px rgba(255, 255, 255, 0.05),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
}.pricing_plan .package_rates:hover .cost_deals::before {
    transform: scale(3);
    opacity: 0.05;
}.pricing_plan .package_rates:hover .cost_deals::after {
    transform: scaleX(1);
}.pricing_plan .package_rates:hover h4::after {
    width: 100%;
}.pricing_plan .package_rates:hover .pricing_options::before {
    transform: scaleX(1);
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 1200px) {.pricing_plan .study_costs {
    grid-template-columns: repeat(4, 1fr);
}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {.pricing_plan .study_costs {
    grid-template-columns: repeat(3, 1fr);
}.pricing_plan {
    padding: 100px 0 80px;
}
}

@media screen and (min-width: 768px) and (max-width: 991px) {.pricing_plan .study_costs {
    grid-template-columns: repeat(2, 1fr);
}.pricing_plan {
    padding: 80px 0 60px;
}.pricing_plan .payment_deals {
    margin-bottom: 50px;
}
}

@media screen and (max-width: 767px) {.pricing_plan .study_costs {
    max-width: 400px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.pricing_plan {
    padding: 60px 0 40px;
}.pricing_plan h2 {
    font-size: calc(35px - 4px);
}.pricing_plan .payment_deals {
    margin-bottom: 40px;
    font-size: calc(12px - 1px);
}.pricing_plan .cost_deals {
    padding: 25px 20px;
}
}

@media (hover: none) {.pricing_plan .cost_deals {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2),
                -8px -8px 20px rgba(255, 255, 255, 0.05);
}.pricing_plan .package_rates:active .cost_deals {
    transform: translateY(-5px);
}
}

@media (prefers-reduced-motion: reduce) {.pricing_plan::after {
    animation: none;
}.pricing_plan .package_rates:hover .cost_deals {
    transform: none;
}.pricing_plan .package_rates:hover .cost_deals::before {
    transform: none;
}}.get_in_touch {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(239,237,234) 0%, rgba(0, 0, 0, 0.03) 100%);
    padding: 80px 0;
}.get_in_touch::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(rgb(212,203,198), 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(rgb(179,168,161), 0.05) 0%, transparent 30%);
    content: "";
    z-index: 0;
    top: 0;
}.get_in_touch::after {
    width: 100%;
    position: absolute;
    content: "";
    background-size: 20px 20px;
    top: 0;
    height: 100%;
    z-index: 1;
    background-image: 
        linear-gradient(90deg, rgba(rgb(212,203,198), 0.03) 1px, transparent 1px),
        linear-gradient(rgba(rgb(212,203,198), 0.03) 1px, transparent 1px);
    left: 0;
    animation: gridMove 20s linear infinite;
    opacity: 0.6;
}@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

.get_in_touch .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}.get_in_touch h2 {
    font-size: 29px;
    display: inline-block;
    left: 50%;
    font-weight: 700;
    position: relative;
    margin-bottom: 50px;
    color: #000000;
    transform: translateX(-50%);
    text-align: center;
}.get_in_touch h2::after {
    bottom: -15px;
    left: 15%;
    background: linear-gradient(90deg, transparent, rgb(212,203,198), transparent);
    width: 70%;
    position: absolute;
    height: 3px;
    content: "";
}.get_in_touch .query_query {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(rgb(212,203,198), 0.05);
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    transform: translateY(0);
    overflow: hidden;
    display: flex;
    position: relative;
}.get_in_touch .query_query:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
                0 10px 20px rgba(rgb(212,203,198), 0.1);
    transform: translateY(-5px);
}.get_in_touch .query_query::before {
    content: "";
    width: 5px;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, rgb(212,203,198), rgb(179,168,161));
    height: 100%;
    left: 0;
}.get_in_touch .img_flex {
    position: relative;
    width: 45%;
    overflow: hidden;
}.get_in_touch .img_flex::after {
    mix-blend-mode: overlay;
    height: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, 
                rgba(rgb(212,203,198), 0.3) 0%, 
                rgba(rgb(179,168,161), 0.3) 100%);
    width: 100%;
    left: 0;
    top: 0;
}.get_in_touch .img_flex::before {
    position: absolute;
    top: -100px;
    transform: rotate(45deg);
    content: "";
    width: 150%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    height: 150px;
    animation: shine 6s infinite;
    left: -100px;
}@keyframes shine {
    0% { top: -100px; left: -100px; }
    100% { top: 100%; left: 100%; }
}

.get_in_touch .inquiry_box {
    padding: 50px 40px;
    width: 55%;
    position: relative;
}.get_in_touch .inquiry_box::before {
    height: 200px;
    right: -50px;
    top: -50px;
    z-index: 0;
    background: radial-gradient(circle, rgba(rgb(212,203,198), 0.05) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    content: "";
    width: 200px;
}.get_in_touch form {
    position: relative;
    z-index: 2;
}.get_in_touch form h3 {
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    color: #000000;
    font-size: 23px;
    position: relative;
}.get_in_touch form h3::after {
    background: rgb(212,203,198);
    content: "";
    bottom: -10px;
    height: 2px;
    position: absolute;
    left: 0;
    width: 40px;
}.get_in_touch form input[type="text"] {
    font-size: 13px;
    margin-bottom: 20px;
    background: rgba(#ffffff, 0.8);
    border-radius: 10px;
    font-family: Arial, sans-serif;
    border: 1px solid rgba(#000000, 0.1);
    position: relative;
    padding: 15px 20px;
    width: 100%;
    transition: all 0.3s ease;
    color: #000000;
}.get_in_touch form input[type="text"]:focus {
    background: #ffffff;
    border-color: rgb(212,203,198);
    outline: none;
    box-shadow: 0 0 0 3px rgba(rgb(212,203,198), 0.1);
}.get_in_touch form input[type="text"]::placeholder {
    transition: all 0.3s ease;
    color: rgba(#000000, 0.5);
}.get_in_touch form input[type="text"]:focus::placeholder {
    transform: translateX(5px);
    opacity: 0.5;
}.get_in_touch .help_form {
    display: flex;
    position: relative;
    align-items: flex-start;
    margin-bottom: 30px;
}.get_in_touch .help_form input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    cursor: pointer;
    height: 0;
}.get_in_touch .help_form label {
    cursor: pointer;
    padding-left: 35px;
    color: #000000;
    font-size: 13px;
    position: relative;
    line-height: 1.4;
    user-select: none;
}.get_in_touch .help_form label::before {
    width: 22px;
    top: 0;
    content: "";
    position: absolute;
    transition: all 0.3s ease;
    height: 22px;
    background: rgba(#ffffff, 0.8);
    border-radius: 10px;
    left: 0;
    border: 1px solid rgba(#000000, 0.2);
}.get_in_touch .help_form input[type="checkbox"]:checked + label::before {
    background: rgb(212,203,198);
    border-color: rgb(212,203,198);
}.get_in_touch .help_form input[type="checkbox"]:checked + label::after {
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 8px;
    border: solid #ffffff;
    position: absolute;
    width: 6px;
    content: "";
    height: 12px;
    top: 4px;
}.get_in_touch .help_form label a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    color: rgb(212,203,198);
}.get_in_touch .help_form label a::after {
    content: "";
    bottom: -2px;
    position: absolute;
    background: rgb(212,203,198);
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    transition: transform 0.3s ease;
    transform-origin: left;
}.get_in_touch .help_form label a:hover {
    color: rgb(179,168,161);
}.get_in_touch .help_form label a:hover::after {
    transform: scaleX(1);
    background: rgb(179,168,161);
}.get_in_touch .feedback_request {
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
    border: none;
    font-weight: 600;
    position: relative;
    color: #ffffff;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 10px;
    width: 100%;
    background: linear-gradient(90deg, rgb(212,203,198), rgb(179,168,161));
    padding: 15px 20px;
}.get_in_touch .feedback_request::before {
    top: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
    background: linear-gradient(90deg, rgb(179,168,161), rgb(212,203,198));
}.get_in_touch .feedback_request:hover::before {
    opacity: 1;
}.get_in_touch .feedback_request:active {
    transform: translateY(2px);
}.get_in_touch svg {
    width: 20px;
    margin-right: 10px;
    fill: rgb(212,203,198);
    transition: fill 0.3s ease;
    height: 20px;
}.get_in_touch svg path {
    transition: fill 0.3s ease;
    fill: rgb(212,203,198);
}.get_in_touch svg:hover,
.get_in_touch svg:hover path {
    fill: rgb(179,168,161);
}.get_in_touch form input {
    background: rgb(239,237,234);
}
@media (max-width: 1024px) {.get_in_touch {
    padding: 60px 0;
}.get_in_touch .container {
    padding: 0 15px;
}.get_in_touch h2 {
    margin-bottom: 40px;
}.get_in_touch .inquiry_box {
    padding: 40px 30px;
}
}

@media (max-width: 768px) {.get_in_touch {
    padding: 50px 0;
}.get_in_touch h2 {
    margin-bottom: 30px;
}.get_in_touch .query_query {
    flex-direction: column;
}.get_in_touch .img_flex {
    height: 250px;
    width: 100%;
}.get_in_touch .inquiry_box {
    width: 100%;
    padding: 30px 25px;
}.get_in_touch form h3 {
    margin-bottom: 25px;
}.get_in_touch form input[type="text"] {
    padding: 12px 15px;
    margin-bottom: 15px;
}.get_in_touch .help_form {
    margin-bottom: 25px;
}.get_in_touch .feedback_request {
    padding: 12px 15px;
}
}

@media (max-width: 480px) {.get_in_touch {
    padding: 40px 0;
}.get_in_touch h2 {
    font-size: calc(29px * 0.85);
    margin-bottom: 25px;
}.get_in_touch .img_flex {
    height: 200px;
}.get_in_touch .inquiry_box {
    padding: 25px 20px;
}.get_in_touch form h3 {
    margin-bottom: 20px;
    font-size: calc(23px * 0.9);
}.get_in_touch form input[type="text"] {
    margin-bottom: 12px;
    padding: 10px 12px;
}.get_in_touch .help_form {
    margin-bottom: 20px;
}.get_in_touch .help_form label {
    padding-left: 30px;
    font-size: calc(13px * 0.9);
}.get_in_touch .help_form label::before {
    width: 18px;
    height: 18px;
}.get_in_touch .help_form input[type="checkbox"]:checked + label::after {
    width: 5px;
    left: 6px;
    height: 10px;
    top: 3px;
}.get_in_touch .feedback_request {
    padding: 10px 12px;
}
}

@media (prefers-reduced-motion: reduce) {.get_in_touch::after,
    .get_in_touch .img_flex::before {
    animation: none;
}.get_in_touch .query_query:hover {
    transform: none;
}}.privacy_cordon {
    width: 100%;
    display: flex;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgb(212,203,198) 30%, rgb(179,168,161) 100%);
    font-family: Arial, sans-serif;
    gap: 20px;
    flex-direction: column;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    height: auto;
}.privacy_cordon h1 {
    text-transform: uppercase;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 40px;
    border-bottom: 2px solid #ffffff;
    font-weight: 700;
}.privacy_cordon h2 {
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}.privacy_cordon h3, .privacy_cordon h4, .privacy_cordon h5, .privacy_cordon h6 {
    margin-bottom: 10px;
    margin-top: 15px;
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
}.privacy_cordon ul, .privacy_cordon ol {
    list-style: none;
    border-left: 2px solid #ffffff;
    margin: 20px 0;
    padding: 0;
}.privacy_cordon li {
    margin-left: 10px;
    padding: 10px 0;
    color: #ffffff;
    border-bottom: 1px dashed #ffffff;
    font-size: 12px;
}.privacy_cordon section {
    margin-bottom: 20px;
    padding: 20px;
    color: #ffffff;
    border-radius: 10px;
}.privacy_cordon p, .privacy_cordon span, .privacy_cordon div {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}

@media only screen and (max-width: 800px) {.privacy_cordon {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}.privacy_cordon h1 {
    font-size: calc(20px - 10px);
}.privacy_cordon h2 {
    font-size: calc(20px - 5px);
}.privacy_cordon ul, .privacy_cordon ol {
    border-left: 1px solid #ffffff;
}.privacy_cordon li {
    font-size: calc(12px - 2px);
}}header {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    position: relative;
    background: linear-gradient(to right, #ffffff, rgb(239,237,234));
    padding: 0;
    width: 100%;
    z-index: 100;
}header::before {
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    top: 0;
    width: 100%;
    left: 0;
    position: absolute;
    content: '';
    background-size: 20px 20px;
    height: 100%;
    z-index: 0;
}header::after {
    left: 0;
    position: absolute;
    top: 0;
    width: 5px;
    background: linear-gradient(to bottom, rgb(212,203,198), rgb(179,168,161));
    content: '';
    z-index: 1;
    height: 100%;
}header .container {
    width: 100%;
    position: relative;
    margin: 0;
    z-index: 2;
    max-width: 100%;
    padding: 0;
}header .header_guide {
    margin-left: 5px;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 3%;
    display: flex;
}header .head_main {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.4);
}header .head_main:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}header .head_main svg {
    transition: all 0.3s ease;
    width: 140px;
    height: auto;
}header .first_section {
    display: flex;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    align-items: center;
    gap: 0.4rem;
}header .first_section::before {
    left: -2px;
    position: absolute;
    border-radius: calc(10px + 2px);
    bottom: -2px;
    z-index: -1;
    top: -2px;
    background: linear-gradient(135deg, rgb(212,203,198,0.5), rgb(179,168,161,0.5));
    right: -2px;
    content: '';
    opacity: 0.5;
}header .nav_top {
    padding: 0.4rem 0.7rem;
    text-decoration: none;
    font-weight: 400;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    color: #000000;
    position: relative;
    background: #ffffff;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    font-size: 14px;
}header .nav_top::before {
    transition: opacity 0.3s ease;
    background: linear-gradient(45deg, rgb(212,203,198,0.5), rgb(179,168,161,0.5));
    top: 0;
    opacity: 0;
    z-index: -1;
    content: '';
    height: 100%;
    position: absolute;
    left: 0;
    width: 100%;
}header .nav_top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    color: #ffffff;
}header .nav_top:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {header .header_guide {
    padding: 0.8rem 2.5%;
}header .head_main svg {
    width: 130px;
}header .first_section {
    padding: 0.35rem 0.5rem;
    gap: 0.3rem;
}header .nav_top {
    font-size: calc(14px - 1px);
    padding: 0.35rem 0.6rem;
}
}

@media (max-width: 767px) {header::after {
    width: 3px;
}header .header_guide {
    align-items: flex-start;
    margin-left: 3px;
    gap: 0.7rem;
    flex-direction: column;
    padding: 0.8rem 2%;
}header .head_main {
    padding: 0.4rem;
}header .head_main svg {
    width: 120px;
}header .first_section {
    width: 98%;
    overflow-x: auto;
    padding: 0.4rem;
    justify-content: flex-start;
}header .first_section::-webkit-scrollbar {
    height: 2px;
}header .first_section::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(212,203,198);
}header .nav_top {
    padding: 0.3rem 0.5rem;
    font-size: calc(14px - 1px);
    white-space: nowrap;
}
}

@media (max-width: 480px) {header::after {
    width: 2px;
}header .header_guide {
    padding: 0.7rem 1.5%;
    margin-left: 2px;
}header .head_main svg {
    width: 110px;
}header .first_section {
    padding: 0.3rem;
}header .nav_top {
    font-size: calc(14px - 2px);
    padding: 0.3rem 0.4rem;
}
}