* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.app_store {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}svg {
    height: 30px;
    width: 30px;
}a {
    text-decoration: none;
    color: inherit;
}html,body {
    font-family: Arial, sans-serif;
    color: #000000;
    height: 100%;
    min-height: 100%;
}.segment-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}.main_know {
    flex: 1 0 auto;
}.container {
    width: 1259px;
    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;
}}
.opening_page {
    overflow: hidden;
    align-items: center;
    position: relative;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, rgb(191,208,201,0.5), rgb(152,173,164));
}.opening_page::before {
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0.7;
    width: 100%;
    background: 
    radial-gradient(circle at 20% 30%, rgb(191,208,201,0.5) 0%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgb(152,173,164,0.5) 0%, transparent 70%);
    position: absolute;
    content: "";
    z-index: 1;
}.opening_page::after {
    content: "";
    z-index: 0;
    background: rgb(255, 255, 255, 0.5);
    height: 100%;
    right: -50%;
    top: -50%;
    filter: blur(70px);
    transform: rotate(45deg);
    position: absolute;
    width: 100%;
}.opening_page .tech_master {
    max-width: 1200px;
    grid-template-columns: 1fr;
    z-index: 2;
    display: grid;
    transform: translateY(-2%);
    width: 100%;
    position: relative;
    gap: 2rem;
}.opening_page .tech_master > div:first-child {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid rgb(191,208,201);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(-5%);
}.opening_page .tech_master > div:first-child:hover {
    transform: translateX(0) scale(1.02);
}.opening_page .tech_master > div:first-child p {
    color: #ffffff;
    line-height: 1.4;
    font-family: Arial, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: 0.02em;
}.opening_page .academy_team {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.4, 1.5);
    position: relative;
}.opening_page .academy_team:hover {
    transform: translateY(-10px);
}.opening_page .academy_team > div {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    padding: 3rem 2rem;
    justify-content: space-between;
    flex-direction: column;
}.opening_page .academy_team > div::before {
    left: 0;
    width: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
    content: "";
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
    height: 100%;
}.opening_page .academy_team h3 {
    letter-spacing: 0.01em;
    font-family: Arial, sans-serif;
    z-index: 2;
    backdrop-filter: blur(5px);
    padding: 1.2rem;
    position: relative;
    line-height: 1.5;
    transform: translateX(5%);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    border-radius: 10px;
    margin: 0 0 2rem 0;
    color: #ffffff;
    background: linear-gradient(120deg, rgb(191,208,201,0.5), rgb(152,173,164,0.5));
    max-width: 90%;
    font-weight: 400;
    transition: transform 0.4s ease-out;
}.opening_page .academy_team:hover h3 {
    transform: translateX(0);
}.opening_page .academy_team > div > div {
    z-index: 2;
    margin-top: auto;
    position: relative;
}.opening_page .academy_team > div > div > div {
    transform: translateY(10px);
    animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
    animation-delay: 0.3s;
}.opening_page .title_style_header {
    font-size: clamp(1.8rem, 4vw, 43px);
    position: relative;
    margin: 0;
    letter-spacing: 0.03em;
    padding: 1rem 0;
    font-family: Arial, sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}.opening_page .title_style_header::after {
    transition: width 0.5s ease;
    position: absolute;
    background: linear-gradient(to right, rgb(191,208,201), rgb(152,173,164));
    height: 6px;
    content: "";
    width: 80px;
    left: 0;
    bottom: 0;
}.opening_page .academy_team:hover .title_style_header::after {
    width: 150px;
}

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


@media (min-width: 768px) {.opening_page .tech_master {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 3rem;
}.opening_page .tech_master > div:first-child {
    margin-top: 10%;
    align-self: center;
}.opening_page .academy_team > div {
    min-height: 500px;
    padding: 4rem 3rem;
}.opening_page .academy_team h3 {
    max-width: 80%;
}
}

@media (min-width: 992px) {.opening_page {
    padding: 4rem;
}.opening_page .tech_master {
    grid-template-columns: 0.35fr 0.65fr;
}.opening_page .tech_master > div:first-child {
    transform: translateX(-10%);
    padding: 2rem;
}.opening_page .academy_team > div {
    min-height: 550px;
}.opening_page .title_style_header::after {
    height: 8px;
}
}

@media (max-width: 767px) {.opening_page {
    padding: 1.5rem;
}.opening_page .tech_master > div:first-child {
    padding: 1.2rem;
}.opening_page .academy_team > div {
    min-height: 350px;
    padding: 2rem 1.5rem;
}.opening_page .academy_team h3 {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    padding: 1rem;
}.opening_page .title_style_header {
    padding: 0.75rem 0;
}.opening_page .title_style_header::after {
    width: 60px;
    height: 4px;
}}.customer_experience {
    background: linear-gradient(135deg, rgb(225,233,230) 0%, rgba(rgb(191,208,201,0.5), 0.05) 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}.customer_experience::before {
    top: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgb(152,173,164), transparent);
    opacity: 0.7;
    position: absolute;
    height: 3px;
    content: "";
    left: 0;
}.customer_experience::after {
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.05;
    bottom: 0;
    background: radial-gradient(circle at 50% 120%, rgb(191,208,201,0.5) 0%, transparent 70%);
    position: absolute;
    content: "";
    z-index: 0;
    height: 100%;
}.customer_experience h2.container {
    margin-bottom: 3.5rem;
    transition: transform 0.5s ease-out;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #000000;
    font-size: calc(28px * 1.1);
    text-align: center;
    transform: perspective(1000px) translateZ(0);
}.customer_experience h2.container::after {
    transform: translateX(-50%);
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(152,173,164), transparent);
    bottom: -15px;
    position: absolute;
    width: 80px;
    content: "";
    left: 50%;
}.customer_experience .container.belief_core {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
}.customer_experience .client_ratings {
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    perspective: 1000px;
}.customer_experience .feedback_stars {
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
                0 1px 4px rgba(rgba(0, 0, 0, 0.5), 0.03);
    transform: translateY(0) scale(1) rotate(0);
    display: flex;
    transform-style: preserve-3d;
    padding: 2rem;
    border: 1px solid rgba(rgb(255, 255, 255, 0.5), 0.2);
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.customer_experience .feedback_stars::before {
    position: absolute;
    top: 0;
    height: 3px;
    transform-origin: left;
    transition: transform 0.5s ease-out;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(191,208,201), rgb(152,173,164));
    left: 0;
    opacity: 0.8;
    width: 100%;
    content: "";
}.customer_experience .feedback_stars:hover {
    transform: translateY(-10px) scale(1.01) rotate(0.5deg);
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
                0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.04);
}.customer_experience .feedback_stars:hover::before {
    transform: scaleX(1);
}.customer_experience .feedback_stars h3 {
    font-size: calc(18px * 1.1);
    transition: transform 0.3s ease;
    z-index: 2;
    margin-bottom: 0.75rem;
    color: #000000;
    font-weight: 600;
    position: relative;
    transform-origin: left;
}.customer_experience .feedback_stars:hover h3 {
    transform: translateX(5px);
    color: rgb(191,208,201);
}.customer_experience .feedback_stars .description {
    font-size: 14px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #000000;
}.customer_experience .feedback_stars div {
    transition: transform 0.4s ease;
    height: 0;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    transform-origin: bottom;
    border-radius: 4px;
    position: relative;
}.customer_experience .feedback_stars:hover div {
    transform: scale(1.03);
}.customer_experience .feedback_stars img {
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    transition: transform 0.6s ease;
    object-fit: cover;
}.customer_experience .feedback_stars:hover img {
    transform: scale(1.05);
}.customer_experience .feedback_stars:nth-child(odd) {
    transform: translateY(0) rotate(-0.5deg);
}.customer_experience .feedback_stars:nth-child(odd):hover {
    transform: translateY(-10px) rotate(0);
}.customer_experience .feedback_stars:nth-child(even) {
    transform: translateY(0) rotate(0.5deg);
}.customer_experience .feedback_stars:nth-child(even):hover {
    transform: translateY(-10px) rotate(0);
}.customer_experience .feedback_stars::after {
    top: 0.5rem;
    opacity: 0.1;
    position: absolute;
    content: "";
    transform: translateY(-10px);
    transition: all 0.4s ease;
    right: 1rem;
    font-family: serif;
    font-size: 5rem;
    color: rgb(152,173,164);
    z-index: 1;
    line-height: 1;
}.customer_experience .feedback_stars:hover::after {
    opacity: 0.15;
    transform: translateY(0) rotate(5deg);
}

@media (max-width: 991px) {.customer_experience {
    padding: 4rem 0;
}.customer_experience h2.container {
    margin-bottom: 2.5rem;
    font-size: 28px;
}.customer_experience .client_ratings {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}
}

@media (max-width: 767px) {.customer_experience {
    padding: 3rem 0;
}.customer_experience h2.container {
    font-size: calc(28px * 0.9);
    margin-bottom: 2rem;
}.customer_experience h2.container::after {
    width: 60px;
    bottom: -10px;
}.customer_experience .client_ratings {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}.customer_experience .feedback_stars {
    padding: 1.5rem;
}
}

@media (max-width: 480px) {.customer_experience {
    padding: 2.5rem 0;
}.customer_experience h2.container {
    padding: 0 1rem;
    font-size: calc(28px * 0.8);
}.customer_experience .feedback_stars {
    padding: 1.25rem;
}.customer_experience .feedback_stars h3 {
    font-size: 18px;
}.customer_experience .feedback_stars .description {
    font-size: calc(14px * 0.95);
    margin-bottom: 1rem;
}
}

@media (hover: none) {.customer_experience .feedback_stars:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
                    0 1px 4px rgba(rgba(0, 0, 0, 0.5), 0.03);
}.customer_experience .feedback_stars:hover::before {
    transform: scaleX(0.3);
}.customer_experience .feedback_stars:hover h3 {
    transform: none;
}.customer_experience .feedback_stars:hover div,
    .customer_experience .feedback_stars:hover img {
    transform: none;
}}.program_offerings {
    background: linear-gradient(135deg, rgb(225,233,230) 0%, rgba(245, 247, 251, 0.92) 100%);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.program_offerings::before {
    opacity: 0.15;
    position: absolute;
    background: linear-gradient(210deg, rgb(191,208,201,0.5) 0%, transparent 80%);
    z-index: 1;
    pointer-events: none;
    content: "";
    width: 40%;
    top: -10%;
    transform: rotate(-15deg) skewX(20deg);
    height: 70%;
    right: -5%;
}.program_offerings::after {
    background: linear-gradient(150deg, rgb(152,173,164,0.5) 0%, transparent 90%);
    left: -5%;
    height: 60%;
    transform: rotate(10deg) skewX(-15deg);
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
    width: 50%;
    z-index: 1;
    bottom: -10%;
    content: "";
}.program_offerings .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}.program_offerings .learn_skills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}.program_offerings .photo_gallery {
    transition: transform 0.6s cubic-bezier(0.21, 1.05, 0.81, 1), 
                box-shadow 0.6s cubic-bezier(0.21, 1.05, 0.81, 1);
    height: 350px;
    transform: perspective(1000px) rotateY(3deg) rotateX(1deg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 
                0 5px 20px -5px rgba(0, 0, 0, 0.1);
    position: relative;
}.program_offerings .photo_gallery:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2), 
                0 10px 30px -5px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}.program_offerings .photo_gallery::before {
    position: absolute;
    background: linear-gradient(135deg, 
                transparent 0%, 
                rgba(rgb(191,208,201), 0.05) 50%, 
                rgba(rgb(152,173,164), 0.1) 100%);
    left: 0;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}.program_offerings .photo_gallery::after {
    content: "";
    left: -20%;
    z-index: 2;
    position: absolute;
    opacity: 0;
    top: -20%;
    transform: scale(1.2);
    height: 140%;
    pointer-events: none;
    width: 140%;
    background: radial-gradient(ellipse at center, 
                rgba(255, 255, 255, 0.2) 0%, 
                transparent 60%);
    transition: opacity 0.8s ease, transform 0.8s ease;
}.program_offerings .photo_gallery:hover::after {
    transform: scale(1);
    opacity: 1;
}.program_offerings .text_column {
    background: linear-gradient(120deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(252, 252, 255, 0.98) 100%);
    transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
    border-left: 4px solid rgb(191,208,201);
    position: relative;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08), 
                0 5px 15px -5px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.21, 1.05, 0.81, 1);
    padding: 30px;
}.program_offerings .text_column:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
}.program_offerings .text_column::before {
    left: -30px;
    z-index: -1;
    width: 60px;
    content: "";
    top: 30px;
    height: 60px;
    transform: rotate(45deg);
    position: absolute;
    background-color: rgb(191,208,201);
    opacity: 0.15;
}.program_offerings h3 {
    color: #000000;
    font-weight: 700;
    transform: translateX(-5px);
    margin-bottom: 25px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
    font-size: calc(19px * 1.1);
}.program_offerings h3::after {
    position: absolute;
    left: 0;
    content: "";
    height: 3px;
    bottom: 0;
    width: 80px;
    transition: transform 0.4s ease;
    background: linear-gradient(90deg, 
                rgb(191,208,201) 0%, 
                rgb(152,173,164) 100%);
    transform-origin: left center;
}.program_offerings .text_column:hover h3::after {
    transform: scaleX(1.5);
}.program_offerings .description {
    margin-bottom: 25px;
    opacity: 0.95;
    font-size: 16px;
    color: #000000;
    position: relative;
    line-height: 1.7;
}.program_offerings p.description {
    scrollbar-width: thin;
    display: block;
    overflow-y: auto;
    padding-right: 15px;
    max-height: 250px;
    scrollbar-color: rgb(191,208,201,0.5) transparent;
    margin-bottom: 30px;
}.program_offerings p.description::-webkit-scrollbar {
    width: 4px;
}.program_offerings p.description::-webkit-scrollbar-track {
    background: transparent;
}.program_offerings p.description::-webkit-scrollbar-thumb {
    background-color: rgb(191,208,201,0.5);
    border-radius: 27px;
}.program_offerings span.description {
    display: none;
}

@media (min-width: 768px) {.program_offerings .learn_skills {
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}.program_offerings .photo_gallery {
    height: 450px;
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
}.program_offerings h3 {
    font-size: 31px;
    margin-bottom: 30px;
}
}

@media (min-width: 992px) {.program_offerings {
    padding: 150px 0;
}.program_offerings .learn_skills {
    gap: 80px;
}.program_offerings .photo_gallery {
    transform: perspective(1200px) rotateY(8deg) rotateX(3deg);
    height: 500px;
}.program_offerings .text_column {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    padding: 40px 50px 40px 40px;
}.program_offerings p.description {
    max-height: 300px;
}
}

@media (min-width: 1200px) {.program_offerings .learn_skills {
    gap: 100px;
}.program_offerings .photo_gallery {
    height: 550px;
}.program_offerings h3 {
    font-size: calc(31px * 1.1);
}.program_offerings .text_column {
    padding: 50px 60px 50px 50px;
}.program_offerings p.description {
    line-height: 1.8;
    max-height: 350px;
    font-size: calc(16px * 1.05);
}
}

@media (max-width: 767px) {.program_offerings {
    padding: 80px 0;
}.program_offerings .text_column {
    padding: 25px 20px;
}.program_offerings h3 {
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: calc(19px * 1.05);
}.program_offerings .photo_gallery {
    height: 250px;
}.program_offerings p.description {
    font-size: calc(16px * 0.95);
    max-height: 200px;
    line-height: 1.6;
}}.ty_block {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(225,233,230) 0%, rgb(191,208,201,0.5) 100%);
    overflow: hidden;
}.ty_block::before {
    background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: "";
}.ty_block::after {
    right: -50%;
    background: linear-gradient(
    to bottom right,
    transparent,
    rgba(var(--primary-color-rgb), 0.05) 30%,
    rgba(var(--primary-color-rgb), 0.1) 60%,
    transparent
  );
    height: 200%;
    transform: rotate(35deg);
    position: absolute;
    content: "";
    top: -50%;
    width: 80%;
    pointer-events: none;
    z-index: 2;
}.ty_block .container {
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    z-index: 3;
}.ty_block .belief_core {
    background: #ffffff;
    transform: perspective(1000px) rotateX(2deg);
    grid-template-columns: 1fr;
    display: grid;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    transform-origin: center top;
    padding: 50px 40px;
}.ty_block .belief_core::before {
    background: linear-gradient(to bottom, rgb(191,208,201), rgb(152,173,164));
    left: 0;
    height: 100%;
    position: absolute;
    content: "";
    width: 5px;
    top: 0;
    transform: scaleY(1.03);
}.ty_block .belief_core:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: perspective(1000px) rotateX(0deg);
}.ty_block h5 {
    font-weight: 700;
    transform: translateX(15px);
    position: relative;
    color: rgb(191,208,201);
    transition: transform 0.4s ease-out;
    line-height: 1.4;
    margin: 0 0 10px;
    font-size: 24px;
}.ty_block h5::after {
    height: 3px;
    transform-origin: left;
    left: 0;
    width: 80px;
    content: "";
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scaleX(0.7);
    background: rgb(152,173,164);
    bottom: -10px;
}.ty_block .belief_core:hover h5 {
    transform: translateX(0);
}.ty_block .belief_core:hover h5::after {
    transform: scaleX(1);
}.ty_block p {
    margin: 0;
    color: #000000;
    position: relative;
    font-size: 18px;
    transition: color 0.3s ease;
    line-height: 1.7;
}.ty_block a {
    padding: 15px 20px;
    position: relative;
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.03), transparent);
    display: block;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 4px;
}.ty_block a::before {
    top: 0;
    height: 100%;
    width: 3px;
    left: 0;
    content: "";
    opacity: 0.5;
    transition: width 0.3s ease;
    background: rgb(191,208,201);
    position: absolute;
}.ty_block a:hover {
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.07), transparent 70%);
}.ty_block a:hover::before {
    width: 5px;
}.ty_block a:hover p {
    color: rgb(191,208,201);
}.ty_block a::after {
    position: absolute;
    width: 30px;
    right: 0;
    content: "";
    background: linear-gradient(135deg, transparent 50%, rgba(var(--secondary-color-rgb), 0.1) 50%);
    bottom: 0;
    height: 30px;
    transition: all 0.3s ease;
}.ty_block a:hover::after {
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, rgba(var(--secondary-color-rgb), 0.2) 50%);
    width: 40px;
}

@media (min-width: 768px) {.ty_block {
    padding: 120px 0;
}.ty_block .belief_core {
    gap: 50px;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    padding: 60px 70px 60px 60px;
}.ty_block h5 {
    font-size: calc(24px * 1.1);
    transform: translateX(25px);
}.ty_block p {
    font-size: calc(18px * 1.05);
}
}

@media (max-width: 767px) {.ty_block {
    padding: 60px 0;
}.ty_block .belief_core {
    padding: 35px 25px;
    transform: perspective(1000px) rotateX(1deg);
}.ty_block h5 {
    font-size: calc(24px * 0.9);
    transform: translateX(10px);
}.ty_block a {
    padding: 10px 15px;
}.ty_block a::after {
    height: 20px;
    width: 20px;
}
}

@media (hover: none) {.ty_block .belief_core {
    transform: none;
}.ty_block .belief_core:hover {
    transform: none;
}.ty_block h5 {
    transform: none;
}.ty_block h5::after {
    transform: scaleX(1);
}
}

@media (prefers-reduced-motion: reduce) {.ty_block .belief_core,
  .ty_block h5,
  .ty_block h5::after,
  .ty_block a,
  .ty_block a::before,
  .ty_block a::after {
    transition: none;
}}.check_it_out_now {
    overflow: hidden;
    background: linear-gradient(165deg, rgb(191,208,201) 0%, rgb(152,173,164) 100%);
    position: relative;
    padding: 130px 0;
    z-index: 1;
}.check_it_out_now::before {
    top: 0;
    z-index: -1;
    backdrop-filter: blur(100px);
    content: '';
    position: absolute;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    left: 0;
    height: 100%;
}.check_it_out_now::after {
    content: '';
    height: 100%;
    width: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
}.check_it_out_now .belief_core {
    background-color: rgba(255, 255, 255, 0.06);
    position: relative;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 80px 60px;
    max-width: 800px;
    flex-direction: column;
    border-radius: 16px;
    margin: 0 auto;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    z-index: 2;
    backdrop-filter: blur(10px);
    align-items: center;
}.check_it_out_now .belief_core::before {
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}.check_it_out_now .belief_core::after {
    bottom: 0;
    height: 1px;
    content: '';
    left: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    position: absolute;
    z-index: 1;
    width: 100%;
}.check_it_out_now .belief_core:hover {
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.check_it_out_now h3 {
    color: #ffffff;
    font-weight: 300;
    opacity: 0.9;
    font-size: 29px;
    letter-spacing: 8px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}.check_it_out_now h3::before {
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    content: '';
    width: 40px;
    height: 1px;
}.check_it_out_now h3::after {
    content: '';
    border-radius: 50%;
    bottom: -27px;
    left: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: #ffffff;
    height: 6px;
    transform: translateX(-50%);
    position: absolute;
    width: 6px;
}.check_it_out_now .talk_contact {
    letter-spacing: 3px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: 16px 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    color: rgb(191,208,201);
    text-decoration: none;
    display: inline-block;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
}.check_it_out_now .talk_contact::before {
    left: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    content: '';
    height: 100%;
    position: absolute;
    opacity: 0;
    background: linear-gradient(
        to right,
        rgb(191,208,201),
        rgb(152,173,164)
    );
    width: 100%;
    top: 0;
}.check_it_out_now .talk_contact::after {
    transition: width 0.6s ease, height 0.6s ease;
    height: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 0;
    content: '';
    position: absolute;
    top: 50%;
    border-radius: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.3);
}.check_it_out_now .talk_contact:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}.check_it_out_now .talk_contact:hover::before {
    opacity: 1;
}.check_it_out_now .talk_contact:hover::after {
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease 0.2s;
    height: 300px;
    opacity: 0;
    width: 300px;
}

@media screen and (max-width: 992px) {.check_it_out_now {
    padding: 110px 0;
}.check_it_out_now .belief_core {
    padding: 70px 50px;
    max-width: 85%;
}.check_it_out_now h3 {
    font-size: calc(29px * 0.9);
    margin-bottom: 55px;
    letter-spacing: 6px;
}.check_it_out_now .talk_contact {
    font-size: calc(15px * 0.95);
    letter-spacing: 2.5px;
    padding: 14px 45px;
}
}

@media screen and (max-width: 768px) {.check_it_out_now {
    padding: 90px 0;
}.check_it_out_now .belief_core {
    padding: 60px 40px;
}.check_it_out_now h3 {
    font-size: calc(29px * 0.8);
    letter-spacing: 5px;
    margin-bottom: 50px;
}.check_it_out_now h3::before {
    width: 35px;
    bottom: -20px;
}.check_it_out_now h3::after {
    width: 5px;
    bottom: -22px;
    height: 5px;
}.check_it_out_now .talk_contact {
    padding: 12px 40px;
    letter-spacing: 2px;
    font-size: calc(15px * 0.9);
}
}

@media screen and (max-width: 576px) {.check_it_out_now {
    padding: 70px 0;
}.check_it_out_now .belief_core {
    padding: 50px 30px;
}.check_it_out_now h3 {
    font-size: calc(29px * 0.7);
    letter-spacing: 4px;
    margin-bottom: 45px;
}.check_it_out_now h3::before {
    bottom: -15px;
    width: 30px;
}.check_it_out_now h3::after {
    width: 4px;
    height: 4px;
    bottom: -17px;
}.check_it_out_now .talk_contact {
    letter-spacing: 1.5px;
    font-size: calc(15px * 0.85);
    padding: 10px 35px;
}}header {
    position: relative;
    width: 100%;
    z-index: 100;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}header::before {
    width: 35%;
    content: '';
    z-index: 0;
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgb(191,208,201), rgb(152,173,164));
    left: 0;
}header .container {
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 100%;
    z-index: 1;
    width: 100%;
}header .head_section {
    height: 100%;
    display: flex;
    align-items: stretch;
}header .head_skill {
    justify-content: center;
    padding: 1.2rem 0;
    align-items: center;
    display: flex;
    text-decoration: none;
    width: 35%;
    position: relative;
}header .head_skill svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    height: auto;
    width: 150px;
    transition: all 0.3s ease;
}header .head_skill:hover svg {
    transform: scale(1.05);
}header .main_skill {
    justify-content: flex-start;
    gap: 0.5rem;
    width: 65%;
    display: flex;
    position: relative;
    padding: 1.2rem 3%;
    align-items: center;
}header .main_skill::before {
    background: linear-gradient(to bottom, transparent, rgb(191,208,201,0.5), transparent);
    content: '';
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}header .header_pagewrap {
    font-weight: 600;
    background: #ffffff;
    z-index: 1;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    font-size: 19px;
    color: #000000;
    overflow: hidden;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
}header .header_pagewrap::before {
    left: 0;
    content: '';
    border-radius: 10px;
    z-index: -1;
    width: 100%;
    position: absolute;
    opacity: 0;
    top: 0;
    background: linear-gradient(135deg, rgb(191,208,201,0.5), rgb(152,173,164,0.5));
    transition: opacity 0.3s ease;
    height: 100%;
}header .header_pagewrap:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}header .header_pagewrap:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {header::before {
    width: 30%;
}header .head_skill {
    width: 30%;
    padding: 1rem 0;
}header .head_skill svg {
    width: 130px;
}header .main_skill {
    padding: 1rem 2.5%;
    gap: 0.5rem;
    width: 70%;
}header .header_pagewrap {
    padding: 0.5rem 1rem;
    font-size: calc(19px);
}
}

@media (max-width: 767px) {header {
    background: rgb(225,233,230);
}header::before {
    top: 0;
    bottom: 50%;
    height: auto;
    width: 100%;
}header .head_section {
    flex-direction: column;
    align-items: center;
}header .head_skill {
    width: 100%;
    padding: 0.8rem 0;
}header .head_skill svg {
    width: 120px;
}header .main_skill {
    width: 95%;
    gap: 0.6rem;
    padding: 0.8rem 0;
    justify-content: center;
    flex-wrap: wrap;
}header .main_skill::before {
    width: 100%;
    left: 0;
    background: linear-gradient(to right, transparent, rgb(191,208,201,0.5), transparent);
    top: 0;
    height: 1px;
}header .header_pagewrap {
    padding: 0.5rem 0.9rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
}

@media (max-width: 480px) {header .head_skill {
    padding: 0.7rem 0;
}header .head_skill svg {
    width: 110px;
}header .main_skill {
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0.7rem 2%;
}header .main_skill::-webkit-scrollbar {
    height: 3px;
}header .main_skill::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(191,208,201);
}header .header_pagewrap {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.45rem 0.9rem;
    margin-right: 2px;
    font-size: calc(19px - 1px);
}}.course_fit_for {
    background-color: rgb(225,233,230);
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
}.course_fit_for::before {
    left: 0;
    z-index: 1;
    width: 100%;
    top: 0;
    content: '';
    background: 
        radial-gradient(circle at 20% 20%, #ffffff 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgb(152,173,164,0.5) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgb(191,208,201,0.5) 0%, transparent 40%);
    opacity: 0.2;
    height: 100%;
    position: absolute;
}.course_fit_for::after {
    background: linear-gradient(135deg, #ffffff 0%, transparent 100%);
    position: absolute;
    opacity: 0.1;
    top: 0;
    width: 100%;
    z-index: 1;
    left: 0;
    height: 100%;
    content: '';
}.course_fit_for .belief_core {
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.course_fit_for h3 {
    font-size: 44px;
    position: relative;
    color: rgb(191,208,201);
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 4rem;
}.course_fit_for h3::after {
    border-radius: 50px;
    content: '';
    opacity: 0.8;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    left: 50%;
    height: 3px;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(191,208,201), transparent);
}.course_fit_for ul {
    margin: 0;
    gap: 2.5rem;
    display: grid;
    list-style-type: none;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
}.course_fit_for li {
    padding: 2.5rem 2rem;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    backdrop-filter: blur(10px);
    position: relative;
}.course_fit_for li::before {
    transition: opacity 0.5s ease;
    background: 
        radial-gradient(circle at 90% 10%, rgb(191,208,201,0.5) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgb(152,173,164,0.5) 0%, transparent 30%);
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    position: absolute;
    opacity: 0.1;
    content: '';
}.course_fit_for li::after {
    z-index: -1;
    position: absolute;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    content: '';
    height: 200%;
    transition: all 0.5s ease;
    width: 200%;
    opacity: 0;
    top: -50%;
    transform: scale(0.8);
    left: -50%;
}.course_fit_for li:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgb(191,208,201,0.5);
    transform: translateY(-10px);
}.course_fit_for li:hover::before {
    opacity: 0.2;
}.course_fit_for li:hover::after {
    transform: scale(1);
    opacity: 0.1;
}.course_fit_for li svg {
    transition: all 0.5s ease;
    filter: drop-shadow(0 3px 6px rgb(152,173,164,0.5));
    height: 70px;
    width: 70px;
    fill: rgb(152,173,164);
    margin-bottom: 1.5rem;
    animation: float 8s ease-in-out infinite;
}.course_fit_for li:hover svg {
    fill: rgb(191,208,201);
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 15px rgb(191,208,201,0.5));
}.course_fit_for li svg path {
    transition: all 0.5s ease;
}.course_fit_for li:hover svg path {
    fill: rgb(191,208,201);
}.course_fit_for li {
    color: #000000;
    font-weight: 300;
    margin-top: 1rem;
    line-height: 1.7;
    font-size: calc(14px * 1.1);
}.course_fit_for li:nth-child(1) {
    animation-delay: 0s;
}.course_fit_for li:nth-child(2) {
    animation-delay: 0.3s;
}.course_fit_for li:nth-child(3) {
    animation-delay: 0.6s;
}.course_fit_for li:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {.course_fit_for {
    padding: 5rem 0;
}.course_fit_for h3 {
    margin-bottom: 3rem;
    font-size: calc(44px * 0.8);
}.course_fit_for ul {
    gap: 2rem;
}.course_fit_for li {
    padding: 2rem 1.5rem;
}.course_fit_for li svg {
    margin-bottom: 1.2rem;
    height: 60px;
    width: 60px;
}
}

@media (max-width: 767px) {.course_fit_for {
    padding: 4rem 0;
}.course_fit_for h3 {
    font-size: calc(44px * 0.7);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}.course_fit_for ul {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.course_fit_for li {
    padding: 1.8rem 1.2rem;
}.course_fit_for li svg {
    margin-bottom: 1rem;
    height: 50px;
    width: 50px;
}}.app_store {
    z-index: 1;
    color: #ffffff;
    background-attachment: fixed;
    padding: 6rem 0 3rem;
    position: relative;
}.app_store::before {
    height: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgb(191,208,201,0.5) 100%);
    content: "";
    z-index: -1;
    top: 0;
    position: absolute;
}.app_store::after {
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
    z-index: -1;
    left: 0;
    content: "";
    top: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
}@keyframes gridMovement {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.app_store .container {
    flex-direction: column;
    position: relative;
    display: flex;
}.app_store .company_holder {
    position: relative;
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}.app_store .company_holder::before,
.app_store .company_holder::after {
    background: linear-gradient(90deg, transparent, rgb(152,173,164), transparent);
    height: 2px;
    animation: slide 3s infinite alternate;
    position: absolute;
    content: "";
    width: 20%;
    bottom: -1px;
}.app_store .company_holder::before {
    animation-delay: 0s;
    left: 0;
}.app_store .company_holder::after {
    right: 0;
    animation-delay: 1.5s;
}@keyframes slide {
    0% {
        width: 0;
        opacity: 0.5;
    }
    100% {
        width: 40%;
        opacity: 1;
    }
}

.app_store .company_holder h3 {
    font-size: calc(28px * 1.3);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
}.app_store .company_holder h3::after {
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    position: absolute;
    background: rgb(152,173,164);
    height: 3px;
    content: "";
    left: 50%;
}.app_store .enroll_info {
    font-size: 16px;
    line-height: 1.7;
    margin: 1.5rem auto 0;
    opacity: 0.8;
    color: #ffffff;
    max-width: 600px;
}.app_store .progress_bar {
    display: flex;
    justify-content: center;
}.app_store .main_navbar {
    display: flex;
    gap: 6rem;
    position: relative;
}.app_store .main_navbar::before {
    top: -30px;
    transform: translateX(-50%);
    left: 50%;
    content: "";
    height: 20px;
    position: absolute;
    background: rgb(191,208,201);
    width: 1px;
}.app_store .main_skill {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    background: rgba(255,255,255,0.05);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}.app_store .main_skill:hover {
    transform: translateY(-5px);
    background: rgba(rgb(191,208,201,0.5), 0.1);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2);
}.app_store .main_skill h5 {
    font-size: 19px;
    color: rgb(152,173,164);
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 0.8rem;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}.app_store .main_skill .main_navbar {
    display: flex;
    gap: 0.8rem;
    position: static;
    flex-direction: column;
}.app_store .main_skill .main_navbar a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    z-index: 1;
    position: relative;
    opacity: 0.75;
    padding: 0.4rem 0;
}.app_store .main_skill .main_navbar a::before {
    transform-origin: center;
    content: "";
    bottom: 0;
    height: 1px;
    transform: scaleX(0);
    width: 100%;
    position: absolute;
    transition: transform 0.4s ease;
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(191,208,201), transparent);
    z-index: -1;
}.app_store .main_skill .main_navbar a:hover {
    color: rgb(152,173,164);
    opacity: 1;
}.app_store .main_skill .main_navbar a:hover::before {
    transform: scaleX(1);
}.whatsapp_grp {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: 4rem;
}.whatsapp_grp::before {
    animation: bgMove 20s linear infinite;
    position: absolute;
    background-size: 4px 4px;
    left: 0;
    height: 100%;
    top: 0;
    opacity: 0.3;
    width: 100%;
    content: "";
    background-image: linear-gradient(45deg, rgba(rgb(191,208,201,0.5), 0.05) 25%, transparent 25%, transparent 50%, rgba(rgb(191,208,201,0.5), 0.05) 50%, rgba(rgb(191,208,201,0.5), 0.05) 75%, transparent 75%, transparent);
}@keyframes bgMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.whatsapp_grp .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.whatsapp_grp .footer_benefit {
    position: relative;
    letter-spacing: 0.5px;
    color: #ffffff;
    opacity: 0.8;
    font-size: 12px;
    text-align: center;
}.whatsapp_grp .footer_benefit::before,
.whatsapp_grp .footer_benefit::after {
    content: "•";
    margin: 0 0.6rem;
    color: rgb(191,208,201);
}

@media screen and (max-width: 992px) {.app_store {
    padding: 4rem 0 2rem;
}.app_store .company_holder {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}.app_store .company_holder h3 {
    font-size: 28px;
}.app_store .main_navbar {
    gap: 3rem;
}
}

@media screen and (max-width: 768px) {.app_store .progress_bar {
    align-items: center;
    flex-direction: column;
}.app_store .main_navbar {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 450px;
}.app_store .main_skill {
    width: 100%;
}
}

@media screen and (max-width: 576px) {.app_store {
    padding: 3rem 0 1.5rem;
}.app_store .company_holder h3 {
    font-size: calc(28px * 0.9);
}.app_store .enroll_info {
    font-size: calc(16px * 0.9);
}.app_store .main_skill {
    padding: 1rem;
}.app_store .main_skill h5 {
    font-size: calc(19px * 0.9);
}.whatsapp_grp {
    margin-top: 2rem;
    padding: 1rem 0;
}.whatsapp_grp .footer_benefit {
    font-size: calc(12px * 0.9);
}.whatsapp_grp .footer_benefit::before,
    .whatsapp_grp .footer_benefit::after {
    display: none;
}}.training_specialist {
    background: rgb(225,233,230);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    padding: 5rem 2rem;
}.training_specialist::before {
    transform: rotate(15deg);
    top: -20%;
    position: absolute;
    height: 140%;
    right: -5%;
    filter: blur(3px);
    z-index: -1;
    background: rgb(191,208,201,0.5);
    content: "";
    width: 60%;
}.training_specialist::after {
    z-index: -1;
    height: 30%;
    bottom: -5%;
    animation: morph 15s linear infinite alternate;
    position: absolute;
    content: "";
    left: -5%;
    background: rgb(152,173,164,0.5);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 30%;
}@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.training_specialist .feedback_stars {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    display: grid;
    position: relative;
    gap: 0;
}.training_specialist .photo_gallery {
    width: 100%;
    z-index: 2;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    position: relative;
    border-radius: 0;
    grid-row: 1 / 2;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 450px;
    transform: translateX(-5%);
    grid-column: 1 / 2;
}.training_specialist .photo_gallery::after {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    position: absolute;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 50%
    );
    left: 0;
}.training_specialist .feedback_stars:hover .photo_gallery {
    filter: contrast(1.1);
    transform: translateX(0) scale(1.02);
}.training_specialist .job_skills {
    grid-column: 2 / 3;
    background: #ffffff;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-direction: column;
    justify-content: center;
    display: flex;
    z-index: 1;
    transform: translateX(-15%);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    padding: 3rem 3rem 3rem 5rem;
    grid-row: 1 / 2;
}.training_specialist .feedback_stars:hover .job_skills {
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.5);
    transform: translateX(-10%) translateY(-5px);
}.training_specialist .name {
    font-weight: 700;
    margin-bottom: 0.7rem;
    display: inline-block;
    position: relative;
    font-size: 36px;
    color: rgb(191,208,201);
}.training_specialist .name::before {
    content: "";
    z-index: -1;
    background: rgb(152,173,164,0.5);
    transform: rotate(45deg) scale(0);
    left: -20px;
    transition: transform 0.4s ease 0.2s;
    top: -10px;
    width: 30px;
    border-radius: 10px;
    position: absolute;
    height: 30px;
}.training_specialist .feedback_stars:hover .name::before {
    transform: rotate(45deg) scale(1);
}.training_specialist .job_skills > div:nth-child(2) {
    font-weight: 600;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-20px);
    opacity: 0.9;
    transition: all 0.5s ease 0.3s;
    color: rgb(152,173,164);
    margin-bottom: 2rem;
}.training_specialist .feedback_stars:hover .job_skills > div:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
}.training_specialist .emp_section {
    padding-top: 20px;
    line-height: 1.7;
    transition: all 0.5s ease 0.5s;
    position: relative;
    opacity: 0;
    font-size: 16px;
    transform: translateY(20px);
    font-weight: 400;
    color: #000000;
    font-style: italic;
}.training_specialist .feedback_stars:hover .emp_section {
    opacity: 1;
    transform: translateY(0);
}.training_specialist .emp_section::before {
    position: absolute;
    left: 0;
    width: 60px;
    content: "";
    height: 3px;
    background: linear-gradient(to right, rgb(191,208,201), transparent);
    top: 0;
}@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.training_specialist .job_skills::after {
    height: 40px;
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    bottom: 20px;
    width: 40px;
    right: 20px;
    background: rgb(191,208,201,0.5);
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 992px) {.training_specialist .feedback_stars {
    gap: 2rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}.training_specialist .photo_gallery {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    transform: none;
    height: 300px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}.training_specialist .photo_gallery::after {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}.training_specialist .job_skills {
    grid-column: 1 / 2;
    clip-path: none;
    grid-row: 2 / 3;
    transform: none;
    padding: 2rem;
}.training_specialist .feedback_stars:hover .job_skills {
    transform: translateY(-5px);
}}.cookie_popup_overlay {
    background: rgb(225,233,230);
    z-index: 90;
    bottom: 0;
    width: 100%;
    border-top: 2px solid rgb(191,208,201);
    position: fixed;
}.privacy_opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}#cookieBannerAlert {
    display: none;
}#cookieBannerAlert:checked ~ .cookie_popup_overlay {
    visibility: hidden;
    opacity: 0;
}.cookie_popup_overlay h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.cookie_popup_overlay p {
    font-size: 18px;
}.cookies_tech {
    margin-right: 10px;
    flex-shrink: 0;
}.cookies_tech svg, .cookies_tech svg path, .cookies_tech img {
    width: 100px;
    fill: rgb(191,208,201);
    height: 100px;
}.cookie_all {
    font-size: 24px;
    line-height: 35px;
    color: rgb(191,208,201);
    white-space: nowrap;
    margin-left: 10px;
    border-bottom: 2px solid rgb(191,208,201);
    text-align: center;
    text-decoration: none;
    min-width: 120px;
    flex-shrink: 0;
    cursor: pointer;
}.cookie_popup_overlay p a {
    text-decoration: none;
    color: rgb(191,208,201);
}
@media only screen and (max-width: 1200px) {.cookie_popup_overlay {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.cookies_tech {
    display: none;
}.privacy_opt {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.cookie_popup_overlay h5 {
    text-align: center;
}.cookie_popup_overlay p {
    text-align: center;
}.cookie_controls {
    margin-bottom: 20px;
}body .segment-wrapper .cookie_all {
    margin-left: 0;
    margin-bottom: 10px;
}}
.segment-wrapper .cookie_popup_overlay {
    box-shadow: rgb(191,208,201,0.5) 0px 0px 40px 39px;
    background: #ffffff;
    border: none;
}.segment-wrapper .cookie_all {
    background: rgb(191,208,201);
    margin-left: 30px;
    padding: 10px;
    font-weight: 400;
    color: #ffffff;
    border: none;
    font-size: 20px;
}.segment-wrapper .cookies_tech {
    height: 80px;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 80px;
    border-radius: 50%;
    background:rgb(191,208,201);
}.segment-wrapper .cookies_tech svg, .segment-wrapper .cookies_tech svg path, .segment-wrapper .cookies_tech img {
    fill:#000000;
    height: 40px;
    width: 40px;
}.segment-wrapper .cookie_controls h5, .segment-wrapper .cookie_controls p {
    color: #000000;
}
@media only screen and (max-width: 800px){.segment-wrapper .cookies_tech {
    margin-bottom: 14px;
    margin: 0;
}}.our_background {
    padding: 90px 0;
    background: rgb(225,233,230);
    overflow: hidden;
    position: relative;
}.our_background::before {
    height: 5px;
    background: linear-gradient(90deg, rgb(191,208,201), rgb(152,173,164));
    top: 0;
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
}.our_background .container {
    z-index: 2;
    position: relative;
}.our_background h2 {
    left: 50%;
    padding: 0 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    font-size: 34px;
    transform: translateX(-50%);
    background: #ffffff;
    position: relative;
    color: #000000;
    display: inline-block;
}.our_background h2::after {
    height: 2px;
    width: 40px;
    content: "";
    position: absolute;
    background: rgb(191,208,201);
    bottom: -10px;
    transform: translateX(-50%);
    left: 50%;
}.our_background .learning_studio {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    display: grid;
}.our_background .learning_studio::before {
    z-index: 3;
    width: 50px;
    border-radius: 50%;
    background: #ffffff;
    height: 50px;
    content: "";
    left: 50%;
    border: 3px solid rgb(191,208,201);
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}.our_background .learning_studio::after {
    background: rgb(191,208,201,0.5);
    height: 100%;
    transform: translateX(-50%);
    width: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    content: "";
}.our_background .corp_culture {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 35px;
    border-radius: 21px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}.our_background .corp_culture:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.our_background .corp_culture:first-child {
    border-bottom: 3px solid rgb(191,208,201);
}.our_background .corp_culture:last-child {
    border-bottom: 3px solid rgb(152,173,164);
}.our_background .corp_culture h3 {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: rgb(191,208,201);
    padding-bottom: 15px;
    position: relative;
}.our_background .corp_culture h3::after {
    content: "";
    bottom: 0;
    left: 0;
    background: rgb(152,173,164);
    width: 60px;
    height: 2px;
    position: absolute;
}.our_background .corp_culture p {
    color: #000000;
    line-height: 1.7;
    font-size: 12px;
    margin-bottom: 0;
}.our_background .corp_culture:first-child::before {
    right: 20px;
    font-size: 70px;
    font-weight: 700;
    position: absolute;
    line-height: 1;
    top: 20px;
    opacity: 0.2;
    content: "01";
    color: rgb(191,208,201,0.5);
}.our_background .corp_culture:last-child::before {
    font-weight: 700;
    position: absolute;
    content: "02";
    font-size: 70px;
    top: 20px;
    color: rgb(152,173,164,0.5);
    opacity: 0.2;
    line-height: 1;
    right: 20px;
}.our_background .container::before {
    position: absolute;
    z-index: -1;
    left: -100px;
    opacity: 0.1;
    border-radius: 50%;
    width: 200px;
    border: 30px solid rgb(191,208,201,0.5);
    top: -100px;
    content: "";
    height: 200px;
}.our_background .container::after {
    border: 30px solid rgb(152,173,164,0.5);
    height: 150px;
    content: "";
    z-index: -1;
    right: -70px;
    border-radius: 50%;
    width: 150px;
    bottom: -70px;
    position: absolute;
    opacity: 0.1;
}

@media screen and (max-width: 991px) {.our_background {
    padding: 70px 0;
}.our_background h2 {
    margin-bottom: 40px;
}.our_background .learning_studio {
    grid-template-columns: 1fr;
    gap: 25px;
}.our_background .learning_studio::before,
    .our_background .learning_studio::after {
    display: none;
}.our_background .corp_culture {
    padding: 30px;
}
}

@media screen and (max-width: 767px) {.our_background {
    padding: 60px 0;
}.our_background h2 {
    margin-bottom: 35px;
    font-size: calc(34px * 0.9);
}.our_background .corp_culture {
    padding: 25px;
}.our_background .corp_culture h3 {
    font-size: calc(20px * 0.9);
    margin-bottom: 15px;
}.our_background .corp_culture p {
    font-size: calc(12px * 0.95);
}.our_background .corp_culture:first-child::before,
    .our_background .corp_culture:last-child::before {
    right: 15px;
    top: 15px;
    font-size: 60px;
}
}

@media screen and (max-width: 575px) {.our_background {
    padding: 50px 0;
}.our_background h2 {
    margin-bottom: 30px;
    font-size: calc(34px * 0.8);
}.our_background .corp_culture {
    padding: 20px;
}.our_background .corp_culture h3 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    font-size: calc(20px * 0.85);
}.our_background .corp_culture p {
    line-height: 1.6;
    font-size: calc(12px * 0.9);
}.our_background .corp_culture:first-child::before,
    .our_background .corp_culture:last-child::before {
    font-size: 50px;
    top: 10px;
    right: 10px;
}.our_background .container::before,
    .our_background .container::after {
    border-width: 20px;
    width: 100px;
    height: 100px;
}}.plan_wrapper {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.plan_wrapper::before {
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    content: "";
}.plan_wrapper .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
}.plan_wrapper .cost_summary {
    position: relative;
}.plan_wrapper h2 {
    overflow: hidden;
    font-size: 34px;
    margin-bottom: 20px;
    transform: perspective(1000px) translateZ(0);
    text-align: center;
    font-weight: 700;
    position: relative;
    color: #ffffff;
}.plan_wrapper h2::after {
    background: rgb(191,208,201);
    height: 3px;
    bottom: -10px;
    width: 80px;
    position: absolute;
    transform: translateX(-50%);
    content: "";
    left: 50%;
}.plan_wrapper .fee_pricing {
    text-align: center;
    color: rgb(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0 auto 50px;
    font-size: 14px;
    max-width: 700px;
}.plan_wrapper .plan_rates {
    padding: 0;
    gap: 30px;
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.plan_wrapper .plan_rates li {
    perspective: 1000px;
    transform-style: preserve-3d;
}.plan_wrapper .rate_options {
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), 
                box-shadow 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-left: 3px solid rgb(191,208,201);
    -webkit-backdrop-filter: blur(10px);
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
}.plan_wrapper .rate_options:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px) scale(1.02);
}.plan_wrapper .rate_options::before {
    background: linear-gradient(45deg, transparent 0%, rgba(rgb(191,208,201), 0.05) 100%);
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    position: absolute;
}.plan_wrapper .cost_fee {
    height: 100%;
    padding: 35px 25px;
}.plan_wrapper .training_fees {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 2;
    height: 100%;
}.plan_wrapper .training_fees h4 {
    padding-bottom: 15px;
    margin: 0 0 20px;
    position: relative;
    color: #ffffff;
    overflow-wrap: break-word;
    font-weight: 700;
    word-break: break-word;
    font-size: calc(20px * 1.2);
}.plan_wrapper .training_fees h4::after {
    transition: width 0.3s ease;
    width: 40px;
    left: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    content: "";
    background: rgb(191,208,201);
}.plan_wrapper .rate_options:hover .training_fees h4::after {
    width: 60px;
}.plan_wrapper .training_fees p {
    max-height: 250px;
    scrollbar-width: thin;
    word-break: break-word;
    scrollbar-color: rgb(191,208,201) transparent;
    color: rgb(255, 255, 255, 0.5);
    flex-grow: 1;
    line-height: 1.6;
    margin: 0 0 25px;
    overflow-y: auto;
    font-size: 14px;
    overflow-wrap: break-word;
}.plan_wrapper .training_fees p::-webkit-scrollbar {
    width: 4px;
}.plan_wrapper .training_fees p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(191,208,201);
}.plan_wrapper .pricing_offers {
    padding: 10px 25px;
    font-size: calc(20px * 1.5);
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
    margin-top: auto;
    align-self: flex-start;
    transform: translateZ(10px);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgb(191,208,201) 0%, rgb(152,173,164) 100%);
}.plan_wrapper .rate_options:hover .pricing_offers {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {.plan_wrapper {
    padding: 80px 0;
}.plan_wrapper .plan_rates {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.plan_wrapper .cost_fee {
    padding: 25px 20px;
}.plan_wrapper .training_fees h4 {
    font-size: 20px;
}.plan_wrapper .pricing_offers {
    padding: 8px 20px;
    font-size: 20px;
}
}

@media (max-width: 767px) {.plan_wrapper {
    padding: 60px 0;
}.plan_wrapper h2 {
    font-size: calc(34px * 0.85);
}.plan_wrapper .fee_pricing {
    margin-bottom: 40px;
    font-size: calc(14px * 0.95);
}.plan_wrapper .plan_rates {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 450px;
}.plan_wrapper .training_fees p {
    max-height: 180px;
}
}

@media (max-width: 480px) {.plan_wrapper {
    padding: 50px 0;
}.plan_wrapper h2 {
    font-size: calc(34px * 0.75);
}.plan_wrapper .cost_fee {
    padding: 20px 15px;
}.plan_wrapper .training_fees h4 {
    font-size: calc(20px * 0.9);
    margin-bottom: 15px;
    padding-bottom: 10px;
}.plan_wrapper .training_fees p {
    margin-bottom: 20px;
    max-height: 150px;
    font-size: calc(14px * 0.9);
}.plan_wrapper .pricing_offers {
    font-size: calc(20px * 0.9);
    padding: 8px 15px;
}}.contact {
    overflow: hidden;
    padding: 120px 0;
    background: rgb(225,233,230);
    position: relative;
}.contact::before {
    width: 100%;
    content: "";
    background: linear-gradient(90deg, rgb(191,208,201), rgb(152,173,164));
    height: 5px;
    left: 0;
    top: 0;
    position: absolute;
}.contact .container {
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}.contact h2 {
    color: #000000;
    text-align: left;
    font-weight: 700;
    padding-left: 20px;
    display: inline-block;
    margin-bottom: 60px;
    font-size: 30px;
    position: relative;
    font-family: Arial, sans-serif;
}.contact h2::before {
    width: 5px;
    border-radius: 10px;
    background: rgb(191,208,201);
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
}.contact .message_widget {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    display: grid;
    gap: 60px;
}.contact .photo_gallery {
    position: relative;
    order: 2;
    overflow: hidden;
    min-height: 500px;
    border-radius: 24px;
    box-shadow: -15px 15px 0 rgb(191,208,201,0.5);
}.contact .contact_feedbackMxU1 {
    order: 1;
}.contact form {
    border-radius: 24px;
    padding: 50px;
    background: #ffffff;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}.contact form h3 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    font-size: 21px;
    font-family: Arial, sans-serif;
    margin-bottom: 35px;
}.contact form input[type="text"] {
    font-family: Arial, sans-serif;
    background: rgb(225,233,230);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    width: 100%;
    margin-bottom: 25px;
    color: #000000;
    padding: 18px 25px;
    transition: all 0.3s ease;
}.contact form input[type="text"]:focus {
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 2px rgb(191,208,201,0.5);
}.contact form input[type="text"]::placeholder {
    opacity: 0.5;
    color: #000000;
}.contact .feedback_reach {
    align-items: flex-start;
    display: flex;
    margin-bottom: 30px;
}.contact .feedback_reach input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact .feedback_reach label {
    line-height: 1.5;
    color: #000000;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    font-size: 15px;
}.contact .feedback_reach label::before {
    left: 0;
    background: rgb(225,233,230);
    top: 2px;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: absolute;
    width: 22px;
    height: 22px;
    content: "";
}.contact .feedback_reach input[type="checkbox"]:checked + label::before {
    background: rgb(191,208,201);
}.contact .feedback_reach input[type="checkbox"]:checked + label::after {
    content: "";
    border-right: 2px solid #ffffff;
    position: absolute;
    border-bottom: 2px solid #ffffff;
    left: 8px;
    width: 6px;
    transform: rotate(45deg);
    top: 6px;
    height: 10px;
}.contact .feedback_reach label a {
    color: rgb(191,208,201);
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}.contact .feedback_reach label a:hover {
    color: rgb(152,173,164);
}.contact form .contact_query {
    overflow: hidden;
    font-size: 20px;
    position: relative;
    background: #000000;
    display: inline-block;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 18px 40px;
    color: #ffffff;
}.contact form .contact_query:hover {
    background: rgb(191,208,201);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}.contact svg {
    fill: rgb(191,208,201);
    height: 20px;
    width: 20px;
}.contact svg path {
    fill: rgb(191,208,201);
    transition: fill 0.3s ease;
}

@media screen and (max-width: 991px) {.contact {
    padding: 90px 0;
}.contact .message_widget {
    grid-template-columns: 1fr;
    gap: 40px;
}.contact .photo_gallery {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
    min-height: 400px;
}.contact .contact_feedbackMxU1 {
    order: 2;
}.contact form {
    max-width: 600px;
    margin: 0 auto;
}
}

@media screen and (max-width: 767px) {.contact {
    padding: 70px 0;
}.contact h2 {
    margin-bottom: 40px;
    font-size: calc(30px * 0.9);
}.contact .photo_gallery {
    box-shadow: -10px 10px 0 rgb(191,208,201,0.5);
    min-height: 300px;
    width: 100%;
}.contact form {
    padding: 40px 30px;
}
}

@media screen and (max-width: 576px) {.contact {
    padding: 50px 0;
}.contact h2 {
    margin-bottom: 30px;
    font-size: calc(30px * 0.8);
}.contact .photo_gallery {
    box-shadow: -8px 8px 0 rgb(191,208,201,0.5);
    min-height: 250px;
}.contact form {
    padding: 30px 20px;
}.contact form h3 {
    font-size: calc(21px * 0.9);
    margin-bottom: 25px;
}.contact form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}.contact form .contact_query {
    padding: 15px 20px;
    width: 100%;
}}.privacy_enclosure {
    height: auto;
    color: #ffffff;
    padding: 60px;
    width: 100%;
}.privacy_enclosure h1 {
    text-align: center;
    color: rgb(191,208,201);
    margin-bottom: 40px;
    border-bottom: 3px solid rgb(152,173,164);
    font-weight: 700;
    grid-column: span 2;
    padding-bottom: 15px;
    font-size: 45px;
}.privacy_enclosure h2 {
    margin-bottom: 25px;
    font-size: 28px;
    margin-top: 0;
    border-bottom: 2px solid rgb(191,208,201);
    font-weight: 600;
    padding-bottom: 10px;
    color: rgb(152,173,164);
}.privacy_enclosure ul, .privacy_enclosure ol {
    list-style: none;
    padding-left: 0;
    margin: 0;
}.privacy_enclosure li {
    border-radius: 10px;
    background: rgb(191,208,201,0.5);
    padding: 10px 20px;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    border-left: 4px solid rgb(191,208,201);
    margin-bottom: 15px;
}.privacy_enclosure section {
    padding: 30px;
    border-radius: 15px;
    background: rgb(152,173,164,0.5);
    width: 100%;
}.privacy_enclosure p, .privacy_enclosure span, .privacy_enclosure div {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
    font-size: 15px;
}

@media only screen and (max-width: 800px) {.privacy_enclosure {
    grid-template-columns: 1fr;
    padding: 30px 15px;
}.privacy_enclosure h1 {
    font-size: calc(20px - 10px);
}.privacy_enclosure h2 {
    font-size: calc(20px - 8px);
}.privacy_enclosure li {
    font-size: calc(15px - 2px);
    padding: 8px 15px;
}}.location_details {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(191,208,201) 0%, rgb(152,173,164) 100%);
    overflow: hidden;
    position: relative;
}.location_details::before {
    left: -50%;
    z-index: 1;
    position: absolute;
    top: -50%;
    content: "";
    transform: rotate(45deg);
    animation: bgAnimation 20s linear infinite;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
}@keyframes bgAnimation {
  0% {
    transform: rotate(45deg) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(1.5);
  }
  100% {
    transform: rotate(45deg) scale(1);
  }
}

.location_details .container {
    z-index: 2;
    position: relative;
}.location_details .get_contact {
    background-color: #ffffff;
    flex-direction: column;
    text-align: center;
    border-radius: 17px;
    align-items: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin: auto;
    padding: 50px;
    max-width: 500px;
    display: flex;
}.location_details .help_form {
    color: rgb(152,173,164);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 34px;
    margin-bottom: 30px;
    text-transform: uppercase;
}.location_details .photo_gallery {
    margin-bottom: 30px;
    width: 200px;
    height: 200px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border: 5px solid rgb(152,173,164);
}.location_details .ask_team {
    width: 100%;
    margin-bottom: 30px;
}.location_details .ask_team p {
    font-size: 13px;
    margin-bottom: 15px;
    justify-content: center;
    display: flex;
    color: #000000;
    transition: transform 0.3s ease;
    align-items: center;
}.location_details .ask_team p:hover {
    transform: translateY(-3px);
}.location_details .ask_team p svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin: 0 10px;
}.location_details .ask_team p svg path {
    fill: rgb(152,173,164);
    transition: fill 0.3s ease;
}.location_details .ask_team p:hover svg path {
    fill: rgb(191,208,201);
}.location_details .ask_team p span {
    font-weight: 600;
}.location_details .ask_team a {
    transition: color 0.3s;
    text-decoration: none;
    color: rgb(152,173,164);
}.location_details .ask_team a:hover {
    color: rgb(191,208,201);
}.location_details .info_request {
    margin-top: 50px;
    width: 100%;
}.location_details .contact_form {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    justify-content: center;
    color: rgb(152,173,164);
    font-weight: 600;
}.location_details .contact_form svg {
    margin-right: 10px;
    height: 22px;
    width: 22px;
}.location_details .contact_form svg path {
    transition: fill 0.3s ease;
    fill: rgb(152,173,164);
}.location_details .message_section {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}.location_details .msg_details {
    color: #ffffff;
    background-color: rgb(152,173,164,0.5);
    font-size: 20px;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s;
    justify-content: center;
    display: flex;
}.location_details .msg_details svg {
    opacity: 0;
    height: 16px;
    margin-right: 0;
    width: 0;
    transition: all 0.3s ease;
}.location_details .msg_details svg path {
    fill: #ffffff;
}.location_details .msg_details:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgb(152,173,164);
    transform: translateY(-3px);
}.location_details .msg_details:hover svg {
    margin-right: 6px;
    opacity: 1;
    width: 16px;
}

@media screen and (max-width: 991px) {.location_details .get_contact {
    margin-right: auto;
    max-width: 100%;
}.location_details .ask_team p svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}.location_details .contact_form svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
}

@media screen and (max-width: 767px) {.location_details {
    padding: 70px 0;
}.location_details .get_contact {
    padding: 30px;
}.location_details .help_form {
    margin-bottom: 20px;
    font-size: 20px;
}.location_details .photo_gallery {
    height: 150px;
    width: 150px;
    margin-bottom: 20px;
}.location_details .message_section {
    grid-template-columns: 1fr;
}.location_details .ask_team p svg {
    margin-right: 6px;
    height: 16px;
    width: 16px;
}.location_details .contact_form svg {
    height: 18px;
    margin-right: 6px;
    width: 18px;
}
}