﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
header,footer {
    width: 100%;
}
section {
    background-color: rgb(202,208,180);
}
.footer {
    flex: 0 0 auto;
}
svg {
    width: 30px;
    height: 30px;
}
a {
    color: inherit;
    text-decoration: none;
}
.top_expert {
    flex: 1 0 auto;
}
.container {
    margin: auto;
    width: 1133px;
    max-width: 100%;
}

html,body {
    min-height: 100%;
    height: 100%;
    font-family: Roboto, sans-serif;
    color: #000000;
}
.grid-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}.course_candidates {
    position: relative;
    width: 100%;
}

.course_candidates .recommended {
    position: relative;
    padding: 180px 0 220px;
    background: rgb(202,208,180);
}

.course_candidates .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.course_candidates .target_audience {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course_candidates .target_audience h3 {
    font-size: 33px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    max-width: 700px;
    margin-bottom: 100px;
    line-height: 1.3;
    position: relative;
    padding: 40px;
    border: 4px solid #000000;
    background: var(--white-color_opacity);
}

.course_candidates .target_audience h3::before,
.course_candidates .target_audience h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid rgb(155,168,155);
}

.course_candidates .target_audience h3::before {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}

.course_candidates .target_audience h3::after {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
}

.course_candidates .lessons_right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.course_candidates .lessons_who {
    position: relative;
    padding: 40px;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s ease;
}

.course_candidates .lessons_who:nth-child(odd) {
    transform: translateY(-30px);
}

.course_candidates .lessons_who:nth-child(even) {
    transform: translateY(30px);
}

.course_candidates .lessons_who::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid rgb(155,168,155);
    opacity: 0;
    transition: all 0.4s ease;
}

.course_candidates .lessons_who svg {
    width: 44px;
    height: 44px;
    fill: rgb(155,168,155);
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
}

.course_candidates .lessons_who span {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    line-height: 1.6;
    position: relative;
}

.course_candidates .lessons_who::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(111,118,110,0.5);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.course_candidates .lessons_who:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.course_candidates .lessons_who:hover::before {
    inset: 0;
    opacity: 1;
}

.course_candidates .lessons_who:hover svg {
    fill: #ffffff;
    transform: scale(1.1) rotate(-10deg);
}

.course_candidates .lessons_who:hover span {
    color: #ffffff;
}

.course_candidates .lessons_who svg,
.course_candidates .lessons_who span {
    z-index: 1;
}

@media (max-width: 1200px) {
    .course_candidates .recommended {
        padding: 150px 0 190px;
    }

    .course_candidates .target_audience h3 {
        font-size: calc(33px * 0.9);
        margin-bottom: 80px;
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .course_candidates .recommended {
        padding: 130px 0 160px;
    }

    .course_candidates .container {
        padding: 0 30px;
    }

    .course_candidates .target_audience h3 {
        font-size: calc(33px * 0.85);
        margin-bottom: 70px;
        padding: 30px;
    }

    .course_candidates .lessons_who {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .course_candidates .recommended {
        padding: 100px 0;
    }

    .course_candidates .target_audience h3 {
        font-size: calc(33px * 0.8);
        margin-bottom: 60px;
        padding: 25px;
    }

    .course_candidates .lessons_right {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .course_candidates .lessons_who:nth-child(odd),
    .course_candidates .lessons_who:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 576px) {
    .course_candidates .recommended {
        padding: 80px 0;
    }

    .course_candidates .container {
        padding: 0 20px;
    }

    .course_candidates .target_audience h3 {
        font-size: calc(33px * 0.75);
        margin-bottom: 50px;
        padding: 20px;
        border-width: 3px;
    }

    .course_candidates .target_audience h3::before,
    .course_candidates .target_audience h3::after {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }

    .course_candidates .lessons_who {
        padding: 25px;
        gap: 20px;
    }

    .course_candidates .lessons_who svg {
        width: 36px;
        height: 36px;
    }
}.instructor_history {
    padding-top: 80px;
    padding-bottom: 80px;
}

.instructor_history .student_praise .name {
    color: rgb(111,118,110);
}

.instructor_history .student_praise span {
    color: rgb(155,168,155);
}

.instructor_history .about_section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructor_history .student_praise {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.instructor_history .img_showcase {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.instructor_history .student_praise .name {
    font-size: 22px;
    margin-bottom: 8px;
}

.instructor_history .student_praise span {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 14px;
}

.instructor_history .student_praise .career_record {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .instructor_history .student_praise {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .instructor_history .about_section {
        flex-direction: column;
    }

    .instructor_history .student_praise {
        max-width: unset;
        width: 100%;
    }

    .instructor_history {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.grid-container .instructor_history .student_praise {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.grid-container .instructor_history .img_showcase {
    width: 300px;
    height: 220px;
    margin: 0 50px;
    border-radius: 0 !important;
    flex-shrink: 0;
}

.grid-container .instructor_history .work_timeline {

    padding: 20px;
    padding-left: 0;
}

.grid-container .instructor_history .work_timeline .career_record::before {
    content: "“";
    font-size: 64px;
    line-height: 64px;
    position: absolute;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    top: 0;
    left: 0;
}

.grid-container .instructor_history .work_timeline .career_record::after {
    content: "”";
    font-size: 64px;
    line-height: 64px;
    position: absolute;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    right: 0;
    bottom: -32px;
}

.grid-container .work_timeline {
    text-align: center;
}

.grid-container .instructor_history .student_praise .career_record {
    text-align: center;
    margin-top: 20px;
    color: #000000;
    font-size: 22px;
    position: relative;
    padding: 30px;
}

.grid-container .instructor_history .student_praise .name {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    color: #000000;

}

.grid-container .instructor_history .student_praise span {
    font-weight: 700;
}

@media only screen and (max-width: 800px) {
    .grid-container .instructor_history .student_praise {
        padding: 20px 10px;
        flex-direction: column;
    }

    .grid-container .instructor_history .img_showcase {
        width: 200px;
        height: 160px;
        margin: 0 20px;
    }

    .grid-container .instructor_history .work_timeline {
        padding: 10px;
        margin-top: 20px;
    }

    .grid-container .instructor_history .work_timeline .career_record::before {
        font-size: 32px;
        line-height: 32px;
        width: 16px;
        height: 16px;
        left: -16px;
    }

    .grid-container .instructor_history .work_timeline .career_record::after {
        font-size: 32px;
        line-height: 32px;
        width: 16px;
        height: 16px;
        right: 0px;
    }

    .grid-container .instructor_history .student_praise .career_record {
        padding: 10px 0;
    }
}.secure_retreat {
    background-color: rgb(155,168,155);
    padding: 2em;
    font-family: Roboto, sans-serif;
    color: #ffffff;
    box-shadow: 0 0 20px rgb(155,168,155,0.5);
    margin: 0 auto;
    border: 1px solid rgb(155,168,155,0.5);
}
.secure_retreat h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5em;
    text-shadow: 0 0 10px rgb(155,168,155,0.5);
}
.secure_retreat h2 {
    font-size: 37px;
    color: rgb(111,118,110);
    font-weight: 600;
    margin-bottom: 1em;
    text-shadow: 0 0 8px rgb(111,118,110,0.5);
}
.secure_retreat h3,
.secure_retreat h4,
.secure_retreat h5,
.secure_retreat h6 {
    margin-bottom: 0.75em;
    color: #ffffff;
}
.secure_retreat h3 {
    font-size: calc(18px - 0.2em);
    font-weight: 400;
}
.secure_retreat h4 {
    font-size: calc(18px - 0.4em);
    font-weight: 400;
}
.secure_retreat h5 {
    font-size: 18px;
    font-weight: 300;
}
.secure_retreat h6 {
    font-size: 17px;
    font-weight: 300;
}
.secure_retreat ul,
.secure_retreat ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}
.secure_retreat ul {
    list-style-type: circle;
}
.secure_retreat ol {
    list-style-type: decimal;
}
.secure_retreat li {
    margin-bottom: 0.75em;
    font-size: 17px;
    color: #ffffff;
}
.secure_retreat p {
    font-size: 17px;
    margin-bottom: 1.5em;
    line-height: 1.7;
    color: #ffffff;
}
.secure_retreat span {
    color: rgb(155,168,155);
    font-weight: 600;
}
.secure_retreat div {
    margin-bottom: 1.5em;
}
@media only screen and (max-width: 800px) {
    .secure_retreat {
        padding: 1em;
        border-radius: 10px;
    }
    .secure_retreat h1 {
        font-size: calc(18px - 0.5em);
    }
    .secure_retreat h2 {
        font-size: calc(18px - 0.4em);
    }
    .secure_retreat p,
    .secure_retreat li {
        font-size: calc(17px - 0.2em);
    }
}
.secure_retreat h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: rgb(155,168,155);
    margin: 0.5em auto 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(155,168,155,0.5);
}
.secure_retreat h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: rgb(111,118,110);
    margin: 0.5em auto 0;
    border-radius: 10px;
    box-shadow: 0 0 8px rgb(111,118,110,0.5);
}
.secure_retreat ul li::before,
.secure_retreat ol li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgb(155,168,155);
    border-radius: 50%;
    margin-right: 0.5em;
    box-shadow: 0 0 5px rgb(155,168,155,0.5);
}
.secure_retreat a {
    color: rgb(155,168,155);
    text-decoration: underline;
    box-shadow: 0 0 5px rgb(155,168,155,0.5);
}
.secure_retreat a:hover {
    color: rgb(111,118,110);
    box-shadow: 0 0 5px rgb(111,118,110,0.5);
}
.secure_retreat blockquote {
    margin: 1em 0;
    padding: 1.5em;
    border-left: 5px solid rgb(155,168,155);
    background-color: rgba(0, 0, 0, 0.5);
    font-style: italic;
    color: #ffffff;
    box-shadow: 0 0 10px rgb(155,168,155,0.5);
}footer {
    background: rgb(111,118,110);
    color: #ffffff;
}
footer .collab_space {
    background: rgb(155,168,155);
}
footer .site_study svg, footer .site_study svg path{
    fill: rgb(155,168,155);
}
footer h5 {
    color: rgb(155,168,155);
}
footer .head_guide a {
    color: #ffffff;
}
footer .terms_legal {
    color: #ffffff;
}
footer .terms_legal a {
    color: #ffffff;
    text-decoration: underline;
}
footer .message_feedback div svg, footer .message_feedback div svg path {
    fill: #ffffff;
}
footer .message_feedback div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}
footer .collab_space {
    padding-top: 25px;
    padding-bottom: 25px;
}
footer .app_store {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
footer .site_study svg, footer .site_study img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}
footer h5 {
    font-size: 23px;
    margin-bottom: 16px;

}
footer .message_feedback {
    display: flex;
    flex-direction: column;
}
footer .message_feedback div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}
footer .message_feedback div img, footer .message_feedback div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
footer .top_site {
    display: flex;
    flex-direction: column;
}
footer .head_guide a {
    text-decoration: none;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 5px;
}
footer .collab_space {
    font-size: 13px;
}
@media only screen and (max-width: 1200px)  {
    footer .app_store {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    footer .head_guide, footer .top_site, footer .app_store {
        flex-direction: column;
    }
    footer .message_feedback {
        margin-top: 10px;
    }
    footer h5 {
        margin-top: 5px;
    }

}
.benefits_outline {
  padding: 8vh 0;
  background: linear-gradient(45deg, #000000 0%, rgb(111,118,110) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.benefits_outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.benefits_outline .container {
  max-width: 90vw;
  margin: 0 auto;
}

.benefits_outline .learning_edge {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 4vh 4vw;
  background: rgba(#000000, 0.7);
  border: 3px solid rgb(155,168,155);
  border-radius: 0;
  box-shadow: 10px 10px 0 rgb(155,168,155,0.5);
  transition: all 0.3s ease;
}

.benefits_outline .learning_wins {
  display: flex;
  flex-direction: column-reverse;
  gap: 4vh;
  width: 100%;
  margin-top: 4vh;
}

.benefits_outline .learning_wins .img_showcase {
  width: 100%;
  height: 50vh;
  border: 2px solid rgb(155,168,155);
  box-shadow: 5px 5px 0 rgb(111,118,110,0.5);
  position: relative;
  overflow: hidden;
}

.benefits_outline .learning_wins .img_showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, transparent 20%, #000000 150%);
  mix-blend-mode: multiply;
}

.benefits_outline .study_extras {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3vh;
  width: 100%;
}

.benefits_outline .study_extras .pro_growth {
  flex: 1 1 calc(50% - 1.5vh);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3vh 2vw;
  background: rgb(202,208,180);
  border: 2px solid rgb(111,118,110);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefits_outline .study_extras .pro_growth .learn_value {
  margin-bottom: 2vh;
  filter: drop-shadow(3px 3px 0 rgb(111,118,110));
}

.benefits_outline .study_extras .pro_growth svg, .benefits_outline .study_extras .pro_growth svg path {
  width: 8vw;
  height: 8vw;
  max-width: 80px;
  max-height: 80px;
  fill: rgb(155,168,155);
  transition: all 0.3s ease;
}

.benefits_outline .study_extras .pro_growth h4 {
  font-size: calc(19px * 1.2);
  color: #000000;
  text-align: center;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits_outline .learning_edge h2 {
  font-size: calc(28px * 1.5);
  color: rgb(155,168,155);
  text-align: center;
  margin: 0 0 6vh;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 2vh;
}

.benefits_outline .learning_edge h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: rgb(111,118,110);
  transform: skew(-20deg);
}

@media only screen and (max-width: 1024px) {
  .benefits_outline .study_extras {
    flex-direction: column;
  }
  
  .benefits_outline .study_extras .pro_growth {
    flex: 1 1 100%;
  }
}

@media only screen and (max-width: 768px) {
  .benefits_outline {
    padding: 6vh 0;
  }
  
  .benefits_outline .learning_edge {
    padding: 3vh 3vw;
  }
  
  .benefits_outline .learning_edge h2 {
    font-size: calc(28px * 1.2);
  }
  
  .benefits_outline .study_extras .pro_growth svg {
    width: 12vw;
    height: 12vw;
  }
}

@media only screen and (max-width: 480px) {
  .benefits_outline {
    padding: 4vh 0;
  }
  
  .benefits_outline .learning_edge {
    padding: 2vh 2vw;
  }
  
  .benefits_outline .learning_edge h2 {
    font-size: 28px;
  }
  
  .benefits_outline .study_extras .pro_growth {
    min-width: unset;
  }
  
  .benefits_outline .study_extras .pro_growth svg {
    width: 15vw;
    height: 15vw;
  }
}.company_overview {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    isolation: isolate;
}

.company_overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(155,168,155), rgb(111,118,110));
    opacity: 0.92;
    z-index: -2;
}

.company_overview::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 20px 20px,
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 20px 20px,
        radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px) 0 0 / 40px 40px;
    z-index: -1;
}

.company_overview .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
}

.company_overview .tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.company_overview .circuit-line {
    position: absolute;
    background: rgba(255,255,255,0.07);
}

.company_overview .circuit-line:nth-child(1) {
    top: 10%;
    left: 0;
    width: 100%;
    height: 1px;
}

.company_overview .circuit-line:nth-child(2) {
    top: 0;
    left: 25%;
    width: 1px;
    height: 100%;
}

.company_overview .circuit-line:nth-child(3) {
    top: 40%;
    left: 0;
    width: 100%;
    height: 1px;
}

.company_overview .circuit-line:nth-child(4) {
    top: 70%;
    left: 0;
    width: 100%;
    height: 1px;
}

.company_overview .circuit-line:nth-child(5) {
    top: 0;
    left: 75%;
    width: 1px;
    height: 100%;
}

.company_overview .circuit-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.company_overview .circuit-node:nth-child(6) {
    top: 10%;
    left: 25%;
}

.company_overview .circuit-node:nth-child(7) {
    top: 40%;
    left: 25%;
}

.company_overview .circuit-node:nth-child(8) {
    top: 40%;
    left: 75%;
}

.company_overview .circuit-node:nth-child(9) {
    top: 70%;
    left: 75%;
}

.company_overview .circuit-node::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 3s infinite alternate;
}

.company_overview .data-stream {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: dataMove 8s linear infinite;
}

.company_overview .data-stream:nth-child(10) {
    top: 25%;
    left: 0;
    width: 100%;
}

.company_overview .data-stream:nth-child(11) {
    top: 55%;
    left: 0;
    width: 100%;
}

.company_overview .data-stream:nth-child(12) {
    top: 85%;
    left: 0;
    width: 100%;
}

.company_overview .text_placeholder {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1);
    grid-column: 5 / 13;
    margin: 0;
}

.company_overview .tech-decoration {
    grid-column: 1 / 5;
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company_overview .text_placeholder::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgb(155,168,155), 
        transparent, 
        rgb(111,118,110), 
        transparent);
    z-index: -1;
    border-radius: 6px;
    opacity: 0.7;
    filter: blur(5px);
}

.company_overview .detail-corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.company_overview .detail-corner:nth-child(1) {
    top: 0;
    left: 0;
    border-top: 2px solid rgb(155,168,155);
    border-left: 2px solid rgb(155,168,155);
}

.company_overview .detail-corner:nth-child(2) {
    top: 0;
    right: 0;
    border-top: 2px solid rgb(155,168,155);
    border-right: 2px solid rgb(155,168,155);
}

.company_overview .detail-corner:nth-child(3) {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid rgb(111,118,110);
    border-left: 2px solid rgb(111,118,110);
}

.company_overview .detail-corner:nth-child(4) {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgb(111,118,110);
    border-right: 2px solid rgb(111,118,110);
}

.company_overview .text_placeholder h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.company_overview .text_placeholder h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, rgb(155,168,155), rgb(111,118,110));
}

.company_overview .text_placeholder span {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 15px 0;
    background: rgb(155,168,155);
    padding: 6px 15px;
    position: relative;
}

.company_overview .text_placeholder span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 10px solid rgb(155,168,155);
}

.company_overview .text_placeholder p {
    font-size: 17px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
}

.company_overview .tech-circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.company_overview .tech-circle:nth-child(1) {
    width: 160px;
    height: 160px;
    border-width: 2px;
    animation: rotate 30s linear infinite;
    transform: translate(-50%, -50%);
}

.company_overview .tech-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    border-width: 1px;
    animation: rotate 20s linear infinite reverse;
    transform: translate(-50%, -50%);
}

.company_overview .tech-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    border-width: 1px;
    animation: rotate 15s linear infinite;
    transform: translate(-50%, -50%);
}

.company_overview .dot-decoration {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.6;
}

.company_overview .tech-circle:nth-child(1) .dot-decoration:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.company_overview .tech-circle:nth-child(1) .dot-decoration:nth-child(2) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.company_overview .tech-circle:nth-child(1) .dot-decoration:nth-child(3) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.company_overview .tech-circle:nth-child(1) .dot-decoration:nth-child(4) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.company_overview .tech-circle:nth-child(2) .dot-decoration:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.company_overview .tech-circle:nth-child(2) .dot-decoration:nth-child(2) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.company_overview .tech-circle:nth-child(3) .dot-decoration:nth-child(1) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.company_overview .tech-circle:nth-child(3) .dot-decoration:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.company_overview .tech-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.company_overview .tech-square {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

.company_overview .tech-square:nth-child(1) {
    top: 10%;
    left: 0;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
}

.company_overview .tech-square:nth-child(2) {
    top: 30%;
    right: 10%;
    width: 20px;
    height: 20px;
    transform: rotate(30deg);
}

.company_overview .tech-square:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 15px;
    height: 15px;
    transform: rotate(60deg);
}

.company_overview .connection-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.company_overview .connection-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.company_overview .connection-dot:nth-child(1) {
    top: 15%;
    left: 15%;
}

.company_overview .connection-dot:nth-child(2) {
    top: 45%;
    left: 10%;
}

.company_overview .connection-dot:nth-child(3) {
    top: 75%;
    left: 20%;
}

.company_overview .connection-dot:nth-child(4) {
    top: 20%;
    right: 15%;
}

.company_overview .connection-dot:nth-child(5) {
    top: 60%;
    right: 10%;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
}

@keyframes dataMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 991px) {
    .company_overview {
        padding: 70px 0;
    }
    
    .company_overview .container {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    
    .company_overview .text_placeholder {
        grid-column: 1 / -1;
        padding: 30px;
    }
    
    .company_overview .tech-decoration {
        grid-column: 1 / -1;
        height: 200px;
        order: -1;
    }
}

@media (max-width: 767px) {
    .company_overview {
        padding: 60px 0;
    }
    
    .company_overview .text_placeholder {
        padding: 25px;
    }
    
    .company_overview .text_placeholder h3 {
        font-size: calc(28px * 0.8);
        letter-spacing: 1px;
        padding-bottom: 12px;
    }
    
    .company_overview .text_placeholder span {
        font-size: 17px;
        margin: 12px 0;
        padding: 5px 12px;
    }
    
    .company_overview .text_placeholder p {
        font-size: calc(17px * 0.95);
        line-height: 1.6;
    }
    
    .company_overview .tech-decoration {
        height: 180px;
    }
    
    .company_overview .tech-circle:nth-child(1) {
        width: 140px;
        height: 140px;
    }
    
    .company_overview .tech-circle:nth-child(2) {
        width: 100px;
        height: 100px;
    }
    
    .company_overview .tech-circle:nth-child(3) {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .company_overview {
        padding: 50px 0;
    }
    
    .company_overview .text_placeholder {
        padding: 20px;
    }
    
    .company_overview .detail-corner {
        width: 15px;
        height: 15px;
    }
    
    .company_overview .text_placeholder h3 {
        font-size: calc(28px * 0.7);
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .company_overview .text_placeholder span {
        font-size: calc(17px * 0.95);
        margin: 10px 0;
        padding: 4px 10px;
    }
    
    .company_overview .text_placeholder span::before {
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-right: 8px solid rgb(155,168,155);
    }
    
    .company_overview .text_placeholder p {
        font-size: calc(17px * 0.9);
        line-height: 1.5;
    }
    
    .company_overview .tech-decoration {
        height: 150px;
    }
    
    .company_overview .tech-circle:nth-child(1) {
        width: 120px;
        height: 120px;
    }
    
    .company_overview .tech-circle:nth-child(2) {
        width: 80px;
        height: 80px;
    }
    
    .company_overview .tech-circle:nth-child(3) {
        width: 50px;
        height: 50px;
    }
}.contact_form_section {
    padding: 100px 20px;
    background: #000000;
    color: #ffffff;
    font-family: Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}
.contact_form_section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgb(111,118,110,0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseBackground 10s infinite alternate;
    z-index: 0;
}
@keyframes pulseBackground {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
    }
}
.contact_form_section h3 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.contact_form_section .request_feedback {
    background: rgb(155,168,155);
    border: 1px solid rgb(111,118,110);
    padding: 40px;
    max-width: 600px;
    margin: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}
@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.contact_form_section form input, .contact_form_section form textarea {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(155,168,155,0.5);
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.contact_form_section form input:focus, .contact_form_section form textarea:focus {
    border-color: rgb(111,118,110);
    outline: none;
}
.contact_form_section form .help_info {
    background: rgb(111,118,110);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.contact_form_section form .help_info:hover {
    transform: translateY(-5px);
}
.contact_form_section .about_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.contact_form_section .holder>div {
    width: 100%;
    padding: 40px;
}
.contact_form_section .request_feedback form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact_form_section .reach_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.contact_form_section .reach_box input {
    width: 100%;
}
.contact_form_section .query_message {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 17px;
    color: #ffffff;
}
.contact_form_section .query_message label {
    display: flex;
    align-items: center;
}
.contact_form_section .query_message a {
    margin-left: 5px;
    color: rgb(111,118,110);
    text-decoration: underline;
}
.contact_form_section .reach_message {
    margin-bottom: 40px;
    text-align: center;
    font-size: 17px;
    color: var(--white-color_opacity);
}
.contact_form_section .query_message input[type=checkbox] {
    width: auto;
    margin: 0 10px 0 0;
}

@media only screen and (max-width: 800px) {
    .contact_form_section {
        padding: 70px 20px;
    }
    .contact_form_section h3 {
        font-size: 35px;
    }
    .contact_form_section .holder>div {
        padding: 15px;
    }
    .contact_form_section .reach_box {
        flex-direction: column;
    }
    .contact_form_section .reach_box input {
        width: 100%;
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 600px) {
    .contact_form_section {
        padding: 50px 20px;
    }
    .contact_form_section .request_feedback {
        padding: 20px;
    }
}header .site_core {
    background: rgb(111,118,110);
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    border-bottom: 2px solid rgb(155,168,155);
}
header .site_study {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-right: 25px;
    border: 2px solid rgb(155,168,155);
    border-radius: 11px;
    box-shadow: 0 0 15px rgb(155,168,155);
}
header .site_study .nav_mainwrap svg, header .site_study .nav_mainwrap img {
    height: 60px;
    width: 60px;
    fill: rgb(155,168,155);
}
header .main_edu {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(155,168,155);
}
header .top_know {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
header .head_guide {
    display: flex;
    gap: 30px;
}
header .head_guide a {
    color: rgb(155,168,155);
    font-family: Roboto, sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgb(155,168,155,0.5);
    transition: all 0.3s ease;
}
header .head_guide a:before, header .head_guide a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgb(155,168,155);
    transition: transform 0.3s ease;
}
header .head_guide a:before {
    top: 0;
    left: 0;
    transform: scaleX(0);
}
header .head_guide a:after {
    bottom: 0;
    right: 0;
    transform: scaleX(0);
}
header .head_guide a:hover:before, header .head_guide a:hover:after {
    transform: scaleX(1);
}
header .head_guide a.active {
    color: rgb(155,168,155);
    border: 2px solid rgb(155,168,155);
    background: rgba(0, 0, 0, 0.5);
}
header .site_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}
header .site_top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(155,168,155);
}
header .site_top:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(155,168,155);
}
@media only screen and (max-width: 1200px) {
    header .site_top {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    header .head_guide {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    header .head_guide a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgb(111,118,110,0.5);
    }
    header .site_core {
        padding: 20px 0;
    }
    header .site_study {
        margin-bottom: 20px;
        justify-content: center;
        width: 100%;
        margin-right: 0;
    }
}
.grid-container header .site_core {
    padding: 30px 0;
}
.grid-container header .site_top {
    padding: 25px 25px;
    justify-content: space-between;
    border-radius: 11px;
    position: relative;
}
.grid-container header .site_study .nav_mainwrap svg, .grid-container header .site_study .nav_mainwrap img {
    width: 60px;
    height: 60px;
}
.grid-container header .head_guide a {
    font-weight: 700;
    font-size: 16px;
    box-shadow: inset 0 0 10px rgb(155,168,155,0.5);
}
.grid-container header .site_top:before,
.grid-container header .site_top:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(155,168,155,0.5);
}
.grid-container header .site_top:before {
    top: 0;
}
.grid-container header .site_top:after {
    bottom: 0;
}
@media only screen and (max-width: 800px) {
    .grid-container header .site_study .nav_mainwrap svg, .grid-container header .site_study .nav_mainwrap img {
        width: 50px;
        height: 50px;
    }
    .grid-container header .site_study {
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 95;
    }
    .grid-container header .head_guide {
        padding-top: 30px;
        top: 0;
        align-items: center;
    }
}.info_hub {
    position: relative;
    background-color: rgb(202,208,180);
    padding: 5rem 0;
    overflow: hidden;
}
.info_hub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.info_hub::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 120%;
    height: 200%;
    background: linear-gradient(135deg, rgb(155,168,155,0.5) 0%, transparent 70%);
    z-index: 0;
    transform: rotate(-15deg);
    opacity: 0.2;
}
.info_hub .container {
    position: relative;
    z-index: 2;
}
.info_hub .request_feedback {
    display: flex;
    flex-direction: column;
    position: relative;
}
.info_hub .request_feedback h3 {
    color: rgb(155,168,155);
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: auto;
    max-width: 70%;
}
.info_hub .request_feedback h3::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: rgb(155,168,155);
    border-radius: 10px;
}
.info_hub .chat_form {
    color: #000000;
    font-size: calc(17px * 1.1);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 80%;
}
.info_hub .reach_experts {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}
.info_hub .reach_experts > span {
    flex: 1 0 calc(33.333% - 2rem);
    margin: 1rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 1;
    min-width: 250px;
    opacity: 1;
}
.info_hub .reach_experts > span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 98%, rgb(155,168,155) 0), 
                linear-gradient(-45deg, transparent 98%, rgb(155,168,155) 0), 
                linear-gradient(135deg, transparent 98%, rgb(155,168,155) 0), 
                linear-gradient(-135deg, transparent 98%, rgb(155,168,155) 0);
    background-size: 20px 20px;
    background-position: 0 0, 0 100%, 100% 0, 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.4;
}
.info_hub .reach_experts > span:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.info_hub .reach_experts > span svg {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 28px;
    height: 28px;
    fill: rgb(155,168,155);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.info_hub .reach_experts > span svg path {
    stroke: #ffffff;
    stroke-width: 0.5;
    transition: all 0.3s ease;
}
.info_hub .reach_experts > span:hover svg path {
    stroke-width: 1;
}
.info_hub .reach_experts p {
    color: #000000;
    font-size: 17px;
    margin: 0;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
}
.info_hub .reach_experts p svg {
    position: static;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: rgb(155,168,155);
    opacity: 0.8;
}
.info_hub .reach_experts span > span {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: calc(17px * 1.1);
    font-weight: 600;
    color: rgb(155,168,155);
}
.info_hub .reach_experts span > span svg {
    position: static;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    opacity: 0.8;
}
.info_hub .reach_experts a {
    color: rgb(155,168,155);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.info_hub .reach_experts a svg {
    position: static;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    transition: transform 0.3s ease;
}
.info_hub .reach_experts a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(155,168,155);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.info_hub .reach_experts a:hover {
    color: rgb(111,118,110);
}
.info_hub .reach_experts a:hover svg {
    transform: translateX(3px);
    fill: rgb(111,118,110);
}
.info_hub .reach_experts a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
    background-color: rgb(111,118,110);
}
.info_hub .get_assist {
    margin-top: 3rem;
    width: 100%;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}
.info_hub .get_assist::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 98%, rgb(111,118,110) 0), 
                linear-gradient(-45deg, transparent 98%, rgb(111,118,110) 0), 
                linear-gradient(135deg, transparent 98%, rgb(111,118,110) 0), 
                linear-gradient(-135deg, transparent 98%, rgb(111,118,110) 0);
    background-size: 20px 20px;
    background-position: 0 0, 0 100%, 100% 0, 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.4;
}
.info_hub .get_assist h4 {
    color: rgb(111,118,110);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    position: relative;
}
.info_hub .get_assist h4 svg {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    fill: rgb(111,118,110);
    transition: transform 0.5s ease;
}
.info_hub .get_assist:hover h4 svg {
    transform: rotate(360deg);
}
.info_hub .get_assist h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: rgb(111,118,110);
    border-radius: 10px;
}
.info_hub .get_assist span {
    display: inline-flex;
    align-items: center;
    margin: 0.5rem 1rem 0.5rem 0;
    padding: 0.5rem 1rem;
    background-color: rgba(rgb(111,118,110,0.5), 0.1);
    border-radius: 10px;
    font-size: 17px;
    color: #000000;
    transition: all 0.3s ease;
}
.info_hub .get_assist span:hover {
    background-color: rgba(rgb(111,118,110,0.5), 0.2);
    transform: translateY(-2px);
}
.info_hub .get_assist span svg {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    fill: rgb(111,118,110);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.info_hub .get_assist span:hover svg {
    opacity: 1;
    transform: scale(1.2);
}
.info_hub .reach_experts > span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, rgb(155,168,155), rgb(111,118,110));
    transition: width 0.5s ease;
    z-index: 2;
}
.info_hub .reach_experts > span:hover::after {
    width: 100%;
}

.info_hub .reach_experts > span:nth-child(1) {
    animation-delay: 0.1s;
}
.info_hub .reach_experts > span:nth-child(2) {
    animation-delay: 0.2s;
}
.info_hub .reach_experts > span:nth-child(3) {
    animation-delay: 0.3s;
}
.info_hub .reach_experts > span:nth-child(4) {
    animation-delay: 0.4s;
}
.info_hub .reach_experts > span:nth-child(5) {
    animation-delay: 0.5s;
}
.info_hub .reach_experts > span:nth-child(6) {
    animation-delay: 0.6s;
}
.info_hub .get_assist {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}
@media (min-width: 1200px) {
    .info_hub .reach_experts > span {
        flex: 1 0 calc(33.333% - 2rem);
    }
    
    .info_hub {
        padding: 7rem 0;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .info_hub .reach_experts > span {
        flex: 1 0 calc(50% - 2rem);
    }
    
    .info_hub .reach_experts > span svg {
        width: 24px;
        height: 24px;
    }
}
@media (max-width: 991px) {
    .info_hub {
        padding: 5rem 0;
    }
    
    .info_hub .reach_experts > span {
        flex: 1 0 calc(50% - 2rem);
    }
    
    .info_hub .request_feedback h3 {
        max-width: 90%;
        font-size: calc(46px * 0.9);
    }
    
    .info_hub .chat_form {
        max-width: 100%;
    }
    
    .info_hub .reach_experts > span svg {
        width: 22px;
        height: 22px;
        top: 1.2rem;
        right: 1.2rem;
    }
    
    .info_hub .get_assist h4 svg {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 767px) {
    .info_hub {
        padding: 4rem 0;
    }
    
    .info_hub .reach_experts > span {
        flex: 1 0 calc(100% - 2rem);
    }
    
    .info_hub .request_feedback h3 {
        max-width: 100%;
        font-size: calc(46px * 0.8);
    }
    
    .info_hub .chat_form {
        font-size: 17px;
    }
    
    .info_hub .get_assist {
        padding: 2rem;
    }
    
    .info_hub .reach_experts > span {
        padding: 2rem;
    }
    
    .info_hub .reach_experts > span svg {
        width: 20px;
        height: 20px;
        top: 1rem;
        right: 1rem;
    }
    
    .info_hub .get_assist span svg {
        width: 12px;
        height: 12px;
    }
}
@media (max-width: 575px) {
    .info_hub {
        padding: 3rem 0;
    }
    
    .info_hub .request_feedback h3 {
        font-size: 37px;
        margin-bottom: 2rem;
    }
    
    .info_hub .chat_form {
        margin-bottom: 2rem;
    }
    
    .info_hub .reach_experts {
        margin: -0.5rem;
    }
    
    .info_hub .reach_experts > span {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .info_hub .get_assist {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .info_hub .get_assist span {
        margin: 0.3rem 0.5rem 0.3rem 0;
        padding: 0.3rem 0.7rem;
    }
    
    .info_hub .reach_experts > span svg {
        width: 18px;
        height: 18px;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .info_hub .get_assist h4 svg {
        width: 18px;
        height: 18px;
    }
    
    .info_hub .get_assist span svg {
        width: 10px;
        height: 10px;
        margin-right: 5px;
    }
}
.info_hub .container::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -15%;
    width: 300px;
    height: 300px;
    border: 30px solid rgb(155,168,155,0.5);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: rotate 40s linear infinite;
}
.info_hub .container::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 200px;
    height: 200px;
    border: 20px solid rgb(111,118,110,0.5);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;

}
.info_hub .reach_experts > span:hover::after {
    background: linear-gradient(90deg, rgb(155,168,155), rgb(111,118,110), rgb(155,168,155));
    background-size: 200% 200%;

}.thanksCard {
    background-color: rgb(202,208,180);
    color: #000000;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.thanksCard .container {
    max-width: 1200px;
    padding: 50px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}
.thanksCard h2 {
    font-family: Roboto, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgb(155,168,155);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(155,168,155);
}
.thanksCard p {
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
}
@media only screen and (max-width: 800px) {
    .thanksCard {
        padding: 60px 0;
    }
    .thanksCard .container {
        padding: 30px;
    }
    .thanksCard h2 {
        font-size: 24px;
    }
    .thanksCard p {
        font-size: 17px;
    }
}
.thanksCard::before, .thanksCard::after {
    content: '';
    position: absolute;
    background: rgb(155,168,155,0.5);
    z-index: 0;
}
.thanksCard::before {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -100px;
    left: -100px;
}
.thanksCard::after {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    background: rgb(111,118,110,0.5);
}
.thanksCard .container::before, .thanksCard .container::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    border-radius: 10px;
}
.thanksCard .container::before {
    width: 100%;
    height: 4px;
    top: -10px;
    left: 0;
}
.thanksCard .container::after {
    width: 4px;
    height: 100%;
    right: -10px;
    top: 0;
}
.thanksCard h2::before, .thanksCard h2::after {
    content: '';
    position: absolute;
    background: rgb(155,168,155);
    z-index: -1;
}
.thanksCard h2::before {
    width: 60px;
    height: 4px;
    bottom: -4px;
    left: 0;
}
.thanksCard h2::after {
    width: 30px;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.primary_page {
    font-family: Roboto, sans-serif;
    background-color: #ffffff;
    color: #000000;
    padding: 4rem 0;
    position: relative;
}

.primary_page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(155,168,155), rgb(111,118,110));
}

.primary_page .about_section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.primary_page .img_showcase {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 40%;
    margin-right: 20px;
}


.primary_page .img_showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.primary_page .text_placeholder {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.primary_page .course_home {
    margin-bottom: 2rem;
}

.primary_page .course_home svg {
    width: 60px;
    height: 60px;
    fill: rgb(155,168,155);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.primary_page .course_home h2 {
    font-size: 33px;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.primary_page .course_home h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: rgb(155,168,155);
    transition: width 0.3s ease;
}

.primary_page .course_home span {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    display: block;
}

.primary_page .help_info {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgb(155,168,155);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary_page .help_info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.primary_page .help_info:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(155,168,155,0.5);
}

@media (max-width: 992px) {
    .primary_page .about_section {
        flex-direction: column;
    }

    .primary_page .img_showcase {
        flex: unset;
        width: 100%;
        margin-right: 0;
    }
    .primary_page .text_placeholder {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .primary_page .img_showcase {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .primary_page {
        padding: 3rem 0;
    }

    .primary_page .course_home h2 {
        font-size: 21px;
    }

    .primary_page .course_home span {
        font-size: 14px;
    }

    .primary_page .help_info {
        padding: 10px 20px;
        font-size: 14px;
    }
}.program_overview {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: rgb(202,208,180);
}

.program_overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgb(155,168,155,0.5) 0%, transparent 40%),
        linear-gradient(225deg, rgb(111,118,110,0.5) 0%, transparent 40%);
    opacity: 0.4;
    z-index: 0;
}

.program_overview::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='rgba(0,0,0,0.03)' stroke-width='1' d='M10,10 L90,10 L90,90 L10,90 Z'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

.program_overview .container {
    position: relative;
    z-index: 1;
}

.program_overview .about_section {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.program_overview .img_showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.program_overview .img_showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    mix-blend-mode: multiply;
    z-index: 1;
}

.program_overview .learn_more {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-areas: 
        "logo logo"
        "title photo1"
        "desc photo2";
    grid-template-columns: 60% 40%;
    grid-template-rows: auto auto 1fr;
    gap: 30px;
}

.program_overview .site_study {
    grid-area: logo;
    justify-self: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0px 10px 30px rgba(0, 0, 0, 0.1),
        0px 4px 10px rgb(155,168,155,0.5);
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program_overview .site_study::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg, 
        rgb(155,168,155,0.5), 
        rgb(111,118,110,0.5), 
        rgb(155,168,155,0.5)
    );
    z-index: -1;
    opacity: 0.6;
    animation: spin 10s linear infinite;
}

.program_overview .site_study::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 1px solid rgb(155,168,155,0.5);
    z-index: -2;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.program_overview .site_study:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0px 15px 40px rgba(0, 0, 0, 0.15),
        0px 6px 15px rgb(155,168,155,0.5);
}

.program_overview .site_study svg {
    width: 45px;
    height: 45px;
    transition: transform 0.5s ease;
}

.program_overview .site_study:hover svg {
    transform: rotate(-10deg);
}

.program_overview .site_study svg path {
    fill: rgb(155,168,155);
    transition: fill 0.3s ease;
}

.program_overview .site_study:hover svg path {
    fill: rgb(111,118,110);
}

.program_overview h3 {
    grid-area: title;
    position: relative;
    font-size: 33px;
    color: #000000;
    font-weight: 700;
    margin: 0;
    padding: 30px 40px;
    background: #ffffff;
    border-radius: 0 22px 22px 0;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    transform: translateX(-5%);
    z-index: 5;
    transition: all 0.5s ease;
}

.program_overview h3::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgb(155,168,155,0.5);
    border-radius: 0 10px 10px 0;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    z-index: -1;
    opacity: 0.5;
}

.program_overview h3::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 40px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(155,168,155), rgb(111,118,110));
    border-radius: 10px;
    transition: width 0.4s ease;
}

.program_overview .learn_more:hover h3 {
    transform: translateX(0%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.program_overview .learn_more:hover h3::after {
    width: 100px;
}

.program_overview p {
    grid-area: desc;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin: 0;
    padding: 35px 40px;
    padding-right: 70px;
    background: #ffffff;
    border-radius: 0 22px 22px 0;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0% 0%, 93% 0%, 100% 50%, 93% 100%, 0% 100%);
    transform: translateX(-10%);
    z-index: 4;
    transition: all 0.5s ease 0.1s;
}

.program_overview p::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgb(111,118,110,0.5);
    border-radius: 0 10px 10px 0;
    clip-path: polygon(0% 0%, 93% 0%, 100% 50%, 93% 100%, 0% 100%);
    z-index: -1;
    opacity: 0.5;
}

.program_overview .learn_more:hover p {
    transform: translateX(-5%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.program_overview .img_showcase::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.program_overview .learn_more::after {
    content: "";
    grid-area: photo2;
    position: relative;
    height: 100%;
    background: inherit;
    background-position: center bottom;
    background-size: cover;
    border-radius: 22px 0 0 22px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateX(15%);
    z-index: 2;
    transition: all 0.5s ease 0.1s;
}

.program_overview .learn_more:hover::before {
    transform: translateX(5%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.program_overview .learn_more:hover::after {
    transform: translateX(10%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .program_overview {
        padding: 80px 0;
    }
    
    .program_overview .learn_more {
        grid-template-columns: 55% 45%;
        gap: 25px;
    }
    
    .program_overview h3 {
        font-size: calc(33px - 2px);
        padding: 25px 35px;
    }
    
    .program_overview p {
        padding: 30px 35px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .program_overview {
        padding: 70px 0;
    }
    
    .program_overview .about_section {
        min-height: auto;
    }
    
    .program_overview .learn_more {
        grid-template-areas: 
            "logo logo"
            "title title"
            "desc desc"
            "photo1 photo2";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto 250px;
        gap: 20px;
    }
    
    .program_overview h3 {
        font-size: calc(33px - 4px);
        padding: 25px 30px;
        clip-path: none;
        border-radius: 22px;
        transform: none;
    }
    
    .program_overview h3::before {
        clip-path: none;
        border-radius: 10px;
    }
    
    .program_overview p {
        padding: 25px 30px;
        clip-path: none;
        border-radius: 22px;
        transform: none;
    }
    
    .program_overview p::before {
        clip-path: none;
        border-radius: 10px;
    }
    
    .program_overview .learn_more::before,
    .program_overview .learn_more::after {
        height: 250px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
        transform: none;
        border-radius: 22px;
    }
    
    .program_overview .learn_more::after {
        clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .program_overview .learn_more:hover h3,
    .program_overview .learn_more:hover p,
    .program_overview .learn_more:hover::before,
    .program_overview .learn_more:hover::after {
        transform: none;
    }
    
    .program_overview .site_study {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .program_overview .site_study svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .program_overview {
        padding: 60px 0;
    }
    
    .program_overview .about_section {
        min-height: auto;
    }
    
    .program_overview .learn_more {
        grid-template-areas: 
            "logo"
            "title"
            "desc"
            "photo1";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto 200px;
        gap: 15px;
    }
    
    .program_overview h3 {
        font-size: calc(33px - 6px);
        padding: 20px 25px;
        clip-path: none;
        border-radius: 22px;
        transform: none;
    }
    
    .program_overview h3::before {
        display: none;
    }
    
    .program_overview h3::after {
        bottom: 10px;
        left: 25px;
        width: 50px;
        height: 2px;
    }
    
    .program_overview p {
        padding: 20px 25px;
        font-size: calc(14px - 1px);
        line-height: 1.6;
        clip-path: none;
        border-radius: 22px;
        transform: none;
    }
    
    .program_overview p::before {
        display: none;
    }
    
    .program_overview .learn_more::before {
        height: 200px;
        clip-path: none;
        transform: none;
        border-radius: 22px;
    }
    
    .program_overview .learn_more::after {
        display: none;
    }
    
    .program_overview .learn_more:hover h3,
    .program_overview .learn_more:hover p,
    .program_overview .learn_more:hover::before {
        transform: none;
    }
    
    .program_overview .site_study {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .program_overview .site_study::before,
    .program_overview .site_study::after {
        display: none;
    }
    
    .program_overview .site_study svg {
        width: 35px;
        height: 35px;
    }
}.course_benefits {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(202,208,180) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
}

.course_benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(155,168,155,0.5) 25%, transparent 25%),
                linear-gradient(-45deg, rgb(111,118,110,0.5) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.1;
    z-index: 1;
}

.course_benefits .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course_benefits .about_section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.course_benefits .img_showcase {
    position: relative;
    height: 600px;
    width: 600px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.course_benefits .img_showcase::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: rgb(155,168,155,0.5);
    border-radius: 25px;
    z-index: -1;
    transition: transform 0.3s ease;
}

.course_benefits .img_showcase:hover {
    transform: translateY(-10px);
}

.course_benefits .img_showcase:hover::after {
    transform: translate(10px, 10px);
}

.course_benefits .text_placeholder {
    padding: 40px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.course_benefits .text_placeholder h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.course_benefits .text_placeholder ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course_benefits .text_placeholder li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(202,208,180);
}

.course_benefits .text_placeholder li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.course_benefits .text_placeholder svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: rgb(155,168,155);
}

@media (max-width: 1024px) {
    .course_benefits {
        padding: 80px 0;
    }

    .course_benefits .about_section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .course_benefits .img_showcase {
        height: 400px;
        width: 400px;
        margin: 0 auto;
        max-width: 600px;
    }

    .course_benefits .text_placeholder {
        padding: 30px;
    }

    .course_benefits .text_placeholder h2 {
        font-size: calc(38px * 0.9);
    }
}

@media (max-width: 768px) {
    .course_benefits {
        padding: 60px 0;
    }

    .course_benefits .img_showcase {
        height: 300px;
        width: 300px;
    }

    .course_benefits .text_placeholder {
        padding: 25px;
    }

    .course_benefits .text_placeholder h2 {
        font-size: calc(38px * 0.8);
        margin-bottom: 20px;
    }

    .course_benefits .text_placeholder li {
        font-size: calc(14px * 0.95);
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .course_benefits {
        padding: 40px 0;
    }

    .course_benefits .img_showcase {
        height: 250px;
        width: 250px;
    }

    .course_benefits .text_placeholder {
        padding: 20px;
    }

    .course_benefits .text_placeholder li {
        gap: 10px;
    }

    .course_benefits .text_placeholder svg {
        width: 20px;
        height: 20px;
    }
}