* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Merriweather, sans-serif;
    color: #000000;
}
.wrapper-section {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(246,246,246);
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.greeting_page .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.greeting_page .style_element h1 {
    color: rgb(86,85,110);
}

.greeting_page .style_element h3 {
    color: rgb(86,85,110);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.greeting_page .style_element p {
    color: #000000;
    text-align: right;
}

.greeting_page {
    width: 100%;
}

.greeting_page .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.greeting_page .style_element {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.greeting_page .style_element h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.greeting_page .style_element p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .greeting_page .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .greeting_page .style_element {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .greeting_page .style_element h1 {
        font-size: 18px;
    }

    .greeting_page .style_element h3 {
        font-size: 16px;
    }

    .greeting_page .style_element p {
        font-size: 14px;
    }


}

.wrapper-section .greeting_page .style_element {
    width: 100%;
    clip-path: none;
    height: auto;
    border-radius: 0 !important;
    padding: 30px;
    padding-bottom: 45px;
    justify-content: center;
    align-items: center;
    background: rgb(187,209,150,0.5);
}

.wrapper-section .greeting_page .style_element h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.wrapper-section .greeting_page .style_element h3 {
    color: #ffffff;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.wrapper-section .greeting_page .style_element p {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 800px) {
    .wrapper-section .greeting_page .style_element {
        position: static;
        padding-top: 50px;
    }
}.mentorship_profile {
    padding: 60px 0;
    background: rgb(246,246,246);
    color: #000000;
    font-family: Merriweather, sans-serif;
}

.mentorship_profile .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.mentorship_profile .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.mentorship_profile .review {
    flex: 1 1 calc(33.333% - 30px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.mentorship_profile .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mentorship_profile .photo {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.mentorship_profile .worker_description {
    padding: 20px;
    text-align: center;
}

.mentorship_profile .review .name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(86,85,110);
    margin-bottom: 10px;
}

.mentorship_profile .review span {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: rgb(187,209,150);
    margin-bottom: 15px;
}

.mentorship_profile .review .quote {
    font-size: 17px;
    font-style: italic;
    color: #000000;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .mentorship_profile .review {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .mentorship_profile .review {
        flex: 1 1 100%;
    }
}

.wrapper-section .mentorship_profile {
    background: rgb(187,209,150,0.5);
    padding: 80px 0;
}

.wrapper-section .mentorship_profile .holder {
    flex-direction: column;
    align-items: center;
}

.wrapper-section .mentorship_profile .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.wrapper-section .mentorship_profile .photo:hover {
    transform: scale(1.1);
}

.wrapper-section .worker_description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper-section .mentorship_profile .review .quote {
    color: #000000;
    font-size: 21px;
}

.wrapper-section .mentorship_profile .review .name {
    font-size: 21px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .wrapper-section .mentorship_profile .photo {
        width: 120px;
        height: 120px;
    }
}
.program_overview {
    padding: 100px 0;
    background-color: rgb(86,85,110,0.5);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}

.program_overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, rgb(187,209,150,0.5) 20%, rgb(86,85,110,0.5) 80%);
    animation: rotateBg 15s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.program_overview h2 {
    color: rgb(187,209,150);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.program_overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
    position: relative;
}

.program_overview .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.program_overview .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.program_overview .course {
    padding: 15px;
    max-width: 45%;
    margin: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 20px rgb(187,209,150,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program_overview .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(187,209,150,0.5);
}

.program_overview .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.program_overview .photo {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.program_overview .text_holder {
    text-align: center;
    z-index: 1;
    position: relative;
}

.program_overview h3 {
    color: rgb(86,85,110);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(86,85,110,0.5);
}

.program_overview p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.program_overview .button {
    display: inline-block;
    background: rgb(187,209,150);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 20px rgb(187,209,150,0.5);
}

.program_overview .button:hover {
    background: rgb(86,85,110);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgb(86,85,110,0.5);
}

@media (max-width: 768px) {
    .program_overview .course {
        max-width: 90%;
        margin: 10px;
    }

    .program_overview h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

.wrapper-section .program_overview {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.wrapper-section .program_overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wrapper-section .program_overview .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.wrapper-section .program_overview .course {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 20px rgb(187,209,150,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: 100%;
}

.wrapper-section .program_overview .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper-section .program_overview .photo {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.wrapper-section .program_overview .text_holder {
    text-align: center;
    z-index: 1;
    position: relative;
}

.wrapper-section .program_overview h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(86,85,110,0.5);
}

.wrapper-section .program_overview p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.wrapper-section .program_overview .button {
    display: inline-block;
    background: rgb(187,209,150);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 20px rgb(187,209,150,0.5);
}

.wrapper-section .program_overview .button:hover {
    background: rgb(86,85,110);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgb(86,85,110,0.5);
}

@media (max-width: 908px) {
    .wrapper-section .program_overview .course {
        max-width: 90%;
        margin: 10px;
    }

    .wrapper-section .program_overview h3 {
        font-size: 23px;
        margin-bottom: 30px;
    }
}.enroll_instantly {
    padding: 60px 0;
    background: linear-gradient(135deg, rgb(187,209,150), rgba(0, 0, 0, 0.5));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.enroll_instantly::before, .enroll_instantly::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(86,85,110,0.5), transparent 70%);
    border-radius: 50%;
}

.enroll_instantly::before {
    top: -100px;
    left: -100px;
}

.enroll_instantly::after {
    bottom: -100px;
    right: -100px;
}

.enroll_instantly .container {
    max-width: 85%;
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(86,85,110);
    border-radius: 20px;
    background: rgba(rgba(0, 0, 0, 0.5), 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 0;
}

.enroll_instantly .holder {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(187,209,150,0.5), rgb(86,85,110,0.5));
    position: relative;
    overflow: hidden;
}

.enroll_instantly .holder::before,
.enroll_instantly .holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.enroll_instantly .holder::before {
    background: inherit;
    filter: blur(10px);
    opacity: 0.7;
    animation: ultraSlowPulse 120s ease-in-out infinite;
}

.enroll_instantly .holder::after {
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgb(187,209,150,0.5) 45%, 
        rgb(86,85,110,0.5) 55%, 
        transparent 100%
    );
    mix-blend-mode: overlay;
    opacity: 0.1;
    animation: subtleGlitch 180s infinite linear alternate, ultraSlowMove 240s ease-in-out infinite alternate;
}

@keyframes subtleGlitch {
    0% { transform: translate(0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(-2px, -2px); }
    75% { transform: translate(2px, 2px); }
    100% { transform: translate(2px, -2px); }
}

@keyframes ultraSlowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.8; }
}

@keyframes ultraSlowMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.enroll_instantly .holder svg {
    padding: 15px;
    background: rgb(86,85,110,0.5);
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    z-index: 2;
}

.enroll_instantly .holder svg path {
    fill: #ffffff;
}

.enroll_instantly .holder h2 {
    font-size: 35px;
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    font-weight: 700;
    margin: 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.enroll_instantly .holder .button {
    padding: 18px 35px;
    background: linear-gradient(45deg, rgb(86,85,110), rgb(187,209,150));
    color: #ffffff;
    text-decoration: none;
    font-size: 19px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.enroll_instantly .holder .button::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.7s;
}

.enroll_instantly .holder .button:hover::before {
    left: 100%;
}

@media only screen and (max-width: 1024px) {
    .enroll_instantly {
        padding: 50px 0;
    }
    .enroll_instantly .container {
        max-width: 95%;
        width: 95%;
    }
    .enroll_instantly .holder {
        padding: 40px 20px;
    }
    .enroll_instantly .holder svg {
        width: 100px;
        height: 100px;
    }
    .enroll_instantly .holder h2 {
        font-size: calc(35px * 0.9);
        margin: 20px 0;
    }
    .enroll_instantly .holder .button {
        padding: 15px 30px;
    }
}

@media only screen and (max-width: 800px) {
    .enroll_instantly {
        padding: 40px 0;
    }
    .enroll_instantly .container {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
    }
    .enroll_instantly .holder {
        padding: 30px 15px;
    }
    .enroll_instantly .holder svg {
        width: 90px;
        height: 90px;
    }
    .enroll_instantly .holder h2 {
        font-size: 23px;
        margin: 15px 0;
    }
    .enroll_instantly .holder .button {
        padding: 12px 25px;
        font-size: 21px;
    }
}.privacy_armory {
    padding: 60px;
    width: 100%;
    overflow: hidden;
    height: auto;
    border: 2px solid rgb(187,209,150);
    font-family: Merriweather, sans-serif;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy_armory h1 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
    color: rgb(187,209,150);
    border-bottom: 3px solid rgb(187,209,150);
    padding-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.privacy_armory h2 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(86,85,110);
    border-bottom: 2px solid rgb(86,85,110);
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
}

.privacy_armory h3, .privacy_armory h4, .privacy_armory h5, .privacy_armory h6 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    color: rgb(187,209,150);
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgb(187,209,150);
    padding-bottom: 5px;
}


.privacy_armory li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    padding-left: 20px;
    position: relative;
    border-left: 3px solid rgb(187,209,150);
    padding-left: 10px;
}

.privacy_armory section {
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    width: 100%;
    border: 1px solid rgb(187,209,150);
    box-shadow: 0 0 15px rgb(187,209,150,0.5);
    text-align: center;
}

.privacy_armory p, .privacy_armory span, .privacy_armory div {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 18px;
    color: #000000;
    font-weight: 300;
    width: 100%;
    padding-bottom: 5px;
    margin: 0 auto 15px auto;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .privacy_armory {
        padding: 20px 10px;
    }

    .privacy_armory h1 {
        font-size: calc(24px * 0.8);
        width: 100%;
    }

    .privacy_armory h2 {
        font-size: calc(24px * 0.8);
        width: 100%;
    }

    .privacy_armory h3, .privacy_armory h4, .privacy_armory h5, .privacy_armory h6 {
        font-size: calc(24px * 0.8);
        width: 100%;
    }

    .privacy_armory p, .privacy_armory span, .privacy_armory div {
        font-size: calc(18px * 0.9);
        width: 100%;
    }

    .privacy_armory ul, .privacy_armory ol {
        width: 100%;
    }

    .privacy_armory section {
        width: 100%;
    }
}.appDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(246,246,246);
    color: #000000;
    font-family: Merriweather, sans-serif;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}
.appDiv .container {
    background: #ffffff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.appDiv h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: rgb(187,209,150);
    border-bottom: 3px solid rgb(86,85,110);
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    box-sizing: border-box;
}
.appDiv p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
    box-sizing: border-box;
}
@media only screen and (max-width: 800px) {
    .appDiv .container {
        padding: 30px;
    }
    .appDiv h2 {
        font-size: 35px;
    }
    .appDiv p {
        font-size: 14px;
    }
}
.potential_enrollees {
    padding-bottom: 80px;
    padding-top: 80px;
}

.potential_enrollees .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.potential_enrollees ul {
    list-style: none;
}

.potential_enrollees ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.potential_enrollees ul svg, .potential_enrollees ul svg path {
    fill: rgb(187,209,150);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.potential_enrollees h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .potential_enrollees {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.wrapper-section .potential_enrollees {
    background: linear-gradient(135deg, rgb(187,209,150) 0%, rgb(86,85,110) 100%);
    padding: 50px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.wrapper-section .potential_enrollees .holder {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.wrapper-section .potential_enrollees h2 {
    color: #ffffff;
    font-size: 31px;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.wrapper-section .potential_enrollees ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.wrapper-section .potential_enrollees ul li {
    width: 30%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    background: rgb(187,209,150,0.5);
    display: flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.wrapper-section .potential_enrollees ul li:hover {
    background: rgb(86,85,110,0.5);
    transform: translateY(-5px);
}

.wrapper-section .potential_enrollees ul svg, .wrapper-section .potential_enrollees ul svg path {
    position: static;
    fill: #ffffff;
    margin-right: 5px;
    margin-left: 5px;
    width: 24px;
    height: 24px;
}

@media only screen and (max-width: 800px) {
    .wrapper-section .potential_enrollees ul li {
        width: 100%;
        margin-bottom: 0;
    }

    .wrapper-section .potential_enrollees h2 {
        font-size: 31px;
        margin-bottom: 20px;
    }

    .wrapper-section .potential_enrollees ul {
        flex-direction: column;
        align-items: center;
    }
}

.wrapper-section .potential_enrollees .holder::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: #ffffff;
    margin: 30px auto 0;
    border-radius: 10px;
}

.wrapper-section .potential_enrollees ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px dashed #ffffff;
    border-radius: 10px;
    opacity: 0.5;
}

.wrapper-section .potential_enrollees ul li:hover::before {
    border-color: rgb(86,85,110);
    opacity: 1;
}

.wrapper-section .potential_enrollees ul li::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: rgb(86,85,110);
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(86,85,110,0.5);
}header .main_header {
    background:  #ffffff;
    color:  #000000;
}
header .logo_holder svg,header .logo_holder svg path, header .logo_holder img {
    fill: rgb(187,209,150);
}
header .menu a {
    color: rgb(86,85,110);
}
header .menu a:hover {
    color: rgb(187,209,150);
}
header .menu a.active {
    border: 2px solid rgb(86,85,110);
    border-radius: 100px;
}
header .menu a.active:hover {
    color: #ffffff;
    background: rgb(187,209,150);
    border: 2px solid rgb(187,209,150);
}
header {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .175);
}
header .main_header {
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo_holder {
    padding: 5px 0;
    display: flex;
    align-items: center;
    text-decoration: none;

}
header .logo_caption {
    display: flex;
    flex-direction: column;
    height: 100%;

}
header .logo_desc {
    font-size: 16px;
    font-weight: 700;
}
header .logo_holder .logo_desc {
    text-transform: uppercase;
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}
header .menu {
    display: flex;
}
header .menu a {
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
}
body .wrapper-section header .opened {
    display: flex;
}
@media only screen and (max-width: 1200px)  {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 30px;
        position: static;
        top:100%;
        left:0;
        z-index: 90;
        background: #ffffff;
        width: 100%;
    }
    header .menu a.active {
        border: none;
    }
    header .menu a.active:hover {
        color: rgb(187,209,150);
        background: none;
        border: none;
    }
    header .main_header {
        position: relative;
        z-index: 99;
    }
    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype {
        margin-right: 0;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.wrapper-section header .main_header {
    background: rgb(187,209,150);
}
.wrapper-section header .top_plank .top_plank_content {
    border-bottom: 1px solid #ffffff;
}
.wrapper-section header .header_content {
    position: relative;
    border-radius: 50px;
    background: #ffffff;
    padding: 10px 30px;
    justify-content: space-around;
    bottom:-30px;
    z-index: 5;
}
.wrapper-section header .logo_holder .logotype svg, .wrapper-section header .logo_holder .logotype img {
    width: 65px;
    height: 65px;
}
.wrapper-section header .menu a {
    font-weight: 700;
    font-size: 16px;
}
@media only screen and (max-width: 800px)  {
    .wrapper-section header .logo_holder .logotype svg, .wrapper-section header .logo_holder .logotype img {
        width: 40px;
        height: 40px;
    }
    .wrapper-section header .logo_holder {
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 95;
    }
    header .logo_holder .logotype {
        margin-right: 0;
    }
    .wrapper-section header .menu {
       padding-top: 30px;
        top:0;
        border-radius:50px;
        align-items: center;
    }
}footer {
    background: rgb(86,85,110);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    padding: 60px 0;
    border-top: 4px solid rgb(187,209,150);
}
footer .footer_info {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: start;
}
footer .logo_holder {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 100px;
    width: 100px;
    fill: rgb(187,209,150);
}
footer h5 {
    color: rgb(187,209,150);
    font-size: 21px;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(187,209,150);
    padding-bottom: 8px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    padding: 10px;
    background: rgb(187,209,150,0.5);
    border-radius: 14px;
}
footer .menu a:hover {
    background: rgb(187,209,150);
}
footer .contact_info {
    display: grid;
    gap: 10px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 16px;
    color: #ffffff;
}
footer .contact_info div svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: rgb(187,209,150);
}
footer .footer_agreement {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    color: #ffffff;
}
footer .copyright_info {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}
footer .copyright_info a {
    color: rgb(187,209,150);
    text-decoration: underline;
}
footer .footer {
    padding: 60px 0;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    footer h5 {
        text-align: center;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu a {
        padding: 10px 5px;
    }
}
.learning_process {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learning_process::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(86,85,110), transparent 70%);
    z-index: 0;
}

.learning_process .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    position: relative;
    z-index: 1;
}

.learning_process h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: rgb(187,209,150);
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.learning_process h2::before, .learning_process h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 50%;
    background: rgb(187,209,150);
}

.learning_process h2::before {
    left: 0;
}

.learning_process h2::after {
    right: 0;
}

.learning_process p {
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(187,209,150,0.5);
}

@media only screen and (max-width: 800px) {
    .learning_process {
        padding: 30px 0;
        border-radius: 10px;
    }

    .learning_process .holder {
        width: 100%;
        padding: 0 20px;
    }

    .learning_process h2 {
        font-size: 24px;
    }

    .learning_process p {
        font-size: 14px;
    }
}

.wrapper-section .learning_process .holder {
    width: 70%;
    justify-content: center;
    align-items: center;
    margin-bottom: auto;
}

.wrapper-section .learning_process h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    margin: 0 0 10px;
    color: rgb(187,209,150);
}

.wrapper-section .learning_process p {
    text-align: center;
    font-size: 12px;
    margin: 0 0 20px;
}

@media only screen and (max-width: 800px) {
    .wrapper-section .learning_process {
        padding: 0;
    }

    .wrapper-section .learning_process .holder {
        width: 100%;
        padding: 20px 10px;
    }

    .wrapper-section .learning_process h2 {
        font-size: 24px;
    }
}
.contact_information {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact_information h3 {
    color: rgb(86,85,110);
}

.contact_information .form {
    background: rgb(246,246,246);
    border-radius: 10px;
}

.contact_information .info svg, .contact_information .info svg path {
    fill: rgb(187,209,150);
}

.contact_information .info .contact_info h5 {
    color: rgb(187,209,150);
}

.contact_information .info span {
    color: #000000;
}

.contact_information .info .contact_info svg, .contact_information .info .contact_info svg path {
    fill: #000000;
}

.contact_information form input {
    color: #000000;
    border-radius: 6px;
    background: #ffffff;
}

.contact_information form .button {
    background: rgb(86,85,110);
    color: #ffffff;
    border-radius: 100px;
}

.contact_information form .button:hover {
    background: rgb(187,209,150);
}


.contact_information .holder {
    display: flex;
}

.contact_information .holder > div {
    width: 50%;
    padding: 40px;
}

.contact_information .form {

}

.contact_information .form form {
    display: flex;
    flex-direction: column;
}

.contact_information h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact_information .info {
    padding-top: 40px;
}

.contact_information form input {
    border: none;
    padding: 13px;
    width: 100%;
    margin-bottom: 24px;
    line-height: 24px;
    outline: none;
    border: 1px solid transparent;
}

.contact_information form .button {
    font-weight: 400;
    cursor: pointer;
}

.contact_information .info .contact_info h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact_information .info svg, .contact_information .info img {
    margin-right: 16px;
    width: 16px;
    height: 16px;
}

.contact_information .info span {
    font-size: 18px;
}

.contact_information .logo_holder {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
    margin-right: 30px;
}

.contact_information .logo_holder svg, .contact_information .logo_holder img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    margin-right: 0;
}

.contact_information .info .contact_info span {
    font-weight: 300;
}

.contact_information .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact_information .name_holder {
    display: flex;
    justify-content: space-between;
}

.contact_information .name_holder #surname {
    margin-left: 24px;
}

.contact_information .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_information .agree label {
    display: block;
}

.contact_information .agree a {
    margin-left: 5px;
    color: rgb(187,209,150);
}

.contact_information .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px) {
    .contact_information .holder {
        flex-direction: column;
    }

    .contact_information .holder > div {
        width: 100%;
    }

    .contact_information {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact_information h3 {
        font-size: 30px;
    }
}

.wrapper-section .contact_information {
    background: rgb(246,246,246);
}

.wrapper-section .contact_information .holder {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.wrapper-section .contact_information .form_text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.wrapper-section .contact_information .holder > div {
    width: 100%;
    border-radius: 0 !important;
}

.wrapper-section .contact_information .holder .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.wrapper-section .contact_information .holder .form {
    background: #ffffff;
}

.wrapper-section .contact_information h3 {

    font-size: 32px;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgb(86,85,110,0.5);
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.wrapper-section .contact_information h3::after {
    content: "";
    position: absolute;
    width: 30%;
    border-bottom: 3px solid rgb(187,209,150);
    bottom: -1px;
}

.wrapper-section .contact_information .info .contact_info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: #ffffff;
    padding: 40px;
    justify-content: space-around;
}

.wrapper-section .contact_information .info .contact_info svg, .wrapper-section .contact_information .info .contact_info svg path {
    padding: 10px;
    background: rgb(187,209,150,0.5);
    fill: rgb(187,209,150);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 16px;
    flex-shrink: 0;
}

.wrapper-section .contact_information .info .contact_info > div {
    width: 33%;
    margin: 0;
}

.wrapper-section .contact_information form input {
    border: 1px solid rgb(86,85,110,0.5);
}

.wrapper-section .contact_information .agree a {
    color: rgb(187,209,150);
}

.wrapper-section .contact_information form .button {
    width: fit-content;
    padding: 10px 30px;
    align-self: center;
    margin-bottom: 0;
    margin-top: 20px;
}

@media only screen and (max-width: 800px) {
    .wrapper-section .contact_information .holder > div {
        width: 100%;
    }

    .wrapper-section .contact_information .holder {
        flex-direction: column;
    }

    .wrapper-section .contact_information .info .contact_info > div:nth-child(3) {
        margin-bottom: 24px;
    }

    .wrapper-section .contact_information .info .contact_info {
        flex-direction: column;
    }

    .wrapper-section .contact_information .info .contact_info > div {
        width: 100%;
        margin-bottom: 24px;
    }

    .wrapper-section .contact_information .info .contact_info > div:last-child {
        margin-bottom: 0;
    }
}
.benefits_overview .advantages_content h2 {
    color: rgb(86,85,110);
}

.benefits_overview .advantage_item svg, .benefits_overview .advantage_item svg path {
    fill: rgb(187,209,150);
}

.benefits_overview .advantage_item p {
    color: #000000;
}

.benefits_overview .advantage_item b {
    color: rgb(187,209,150);
}

.benefits_overview {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_overview .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_overview .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_overview .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 600;
}

.benefits_overview .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_overview .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_overview .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_overview .advantage_item svg, .benefits_overview .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-section .benefits_overview .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_overview .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_overview .advantages_holder {
        flex-direction: column;
    }

    .benefits_overview {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-section .benefits_overview .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-section .benefits_overview {
    padding: 80px 0;
    background-color: rgb(246,246,246);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.wrapper-section .benefits_overview .advantages_content h2 {
    text-align: center;
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.wrapper-section .benefits_overview .advantages_description {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    color: rgb(86,85,110);
}

.wrapper-section .benefits_overview .advantages_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1%;
    position: relative;
    z-index: 1;
}

.wrapper-section .benefits_overview .advantage_item {
    background: rgb(187,209,150,0.5);
    padding: 20px;
    border-radius: 30px;
    flex: 1 1 calc(25% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    width: 24%;
}

.wrapper-section .benefits_overview .advantage_item:hover {
    transform: translateY(-5px);
    background: rgb(187,209,150);
}

.wrapper-section .benefits_overview .advantage_image {
    width: 80px;
    height: 80px;
    background: rgb(86,85,110);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease-in-out;
    overflow: hidden;
}

.wrapper-section .benefits_overview .advantage_item:hover .advantage_image {
    background: #ffffff;
}

.wrapper-section .benefits_overview .advantage_item img, .wrapper-section .benefits_overview .advantage_item svg {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.wrapper-section .benefits_overview .advantage_item h4 {
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.wrapper-section .benefits_overview .advantage_item:hover h4 {
    color: #ffffff;
}

@media only screen and (max-width: 1200px) {
    .wrapper-section .benefits_overview .advantage_item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-section .benefits_overview {
        padding: 50px 0;
    }

    .wrapper-section .benefits_overview .advantages_content h2 {
        font-size: 36px;
    }

    .wrapper-section .benefits_overview .advantages_holder {
        gap: 10px;
        flex-direction: column;
    }

    .wrapper-section .benefits_overview .advantage_item {
        flex: 1 1 100%;
    }

    .wrapper-section .benefits_overview .advantages_description {
        font-size: 16px;
        margin-bottom: 20px;
    }
}.company_overview {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgb(86,85,110) 0%, rgb(187,209,150,0.5) 100%);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}
.company_overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, rgb(187,209,150,0.5), rgb(86,85,110,0.5), rgb(187,209,150,0.5));
    animation: rotate 15s linear infinite;
    z-index: 0;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.wrapper-section .company_overview .holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.wrapper-section .company_overview .caption_holder {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 14px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.wrapper-section .company_overview .photo {
    flex: 1;
    margin-right: 40px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
}
.wrapper-section .company_overview .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}
.wrapper-section .company_overview .style_element {
    flex: 1;
    color: #ffffff;
    padding: 20px;
}
.wrapper-section .company_overview h2 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(187,209,150);
    display: inline-block;
    padding-bottom: 10px;
}
.wrapper-section .company_overview p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}
@media (max-width: 1200px) {
    .wrapper-section .company_overview .caption_holder {
        flex-direction: column;
        padding: 14px;
    }
    .wrapper-section .company_overview .photo {
        margin-right: 0;
        margin-bottom: 20px;
        height: 200px;
        flex: auto;
    }
}
@media (max-width: 800px) {
    .wrapper-section .company_overview {
        padding: 60px 10px;
    }
    .wrapper-section .company_overview .photo {
        width: 100%;
    }
    .wrapper-section .company_overview .style_element {
        padding: 10px;
    }
}