﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.main_master {
    flex: 1 0 auto;
}
.wrapper-template {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
section {
    background-color: rgb(201,231,219);
}
svg {
    width: 30px;
    height: 30px;
}
.container {
    margin: auto;
    width: 1122px;
    max-width: 100%;
}

header,footer {
    width: 100%;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Merriweather, sans-serif;
    color: #000000;
}
.footer {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}footer {
    background: #000000;
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    padding: 60px 0;
    border-top: 3px solid rgb(154,202,186);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
footer .footer {
    padding: 50px 0;
    background: rgb(106,174,157,0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}
footer .case_study {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}
footer .head_primary {
    display: flex;
    align-items: center;
    gap: 20px;
}
footer .head_primary svg,
footer .head_primary img {
    height: 80px;
    width: 80px;
}
footer .top_teach {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .top_teach a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
    border: 1px solid transparent;
}
footer .top_teach a:hover {
    background: rgb(154,202,186,0.5);
    color: #000000;
    border-color: rgb(154,202,186);
}
footer .diploma_cta {
    background: rgb(154,202,186,0.5);
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
footer .skill_links {
    color: #ffffff;
    margin-top: 10px;
}
footer .skill_links a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}
footer .skill_links a:hover {
    color: rgb(154,202,186);
    border-color: rgb(154,202,186);
}
@media only screen and (max-width: 1200px) {
    footer .case_study {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .case_study {
        flex-direction: column;
        align-items: center;
    }
    footer .top_teach {
        width: 100%;
        align-items: center;
    }
    footer .nav_class {
        justify-content: center;
    }
    footer .skill_links {
        text-align: center;
    }
}
.wrapper-template footer {
    padding: 60px 0;
    background: rgb(106,174,157,0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}
.wrapper-template footer .footer {
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.wrapper-template footer .case_study {
    flex-direction: column;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}
.wrapper-template footer .top_teach {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
}
.wrapper-template footer .nav_class {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 20px;
}
.wrapper-template footer .top_teach a {
    font-weight: 600;
    margin-right: 24px;
}
.wrapper-template footer .top_teach a:last-child {
    margin-right: 0;
}
.wrapper-template footer .top_teach a:hover {
    background: rgb(154,202,186,0.5);
    border-color: rgb(154,202,186);
    color: #000000;
}
.wrapper-template footer .diploma_cta {
    background: rgb(154,202,186,0.5);
    padding: 10px 0;
}
.wrapper-template footer .skill_links {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .wrapper-template footer .case_study {
        padding: 0;
        align-items: center;
    }
    .wrapper-template footer h5 {
        display: none;
    }
    .wrapper-template footer .nav_class {
        justify-content: center;
    }
    .wrapper-template footer .skill_links {
        text-align: center;
    }
}
.attempt_now {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(154,202,186), rgb(106,174,157));
    position: relative;
    overflow: hidden;
}

.attempt_now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(154,202,186,0.5),
        rgb(154,202,186,0.5) 10px,
        rgb(106,174,157,0.5) 10px,
        rgb(106,174,157,0.5) 20px
    );
    opacity: 0.1;
    z-index: 1;
}

.attempt_now .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.attempt_now .pro_learning {
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 2px solid rgb(154,202,186);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.attempt_now .pro_learning::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: radial-gradient(circle, rgb(154,202,186,0.5), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    z-index: -1;
}

.attempt_now .pro_learning svg {
    width: 150px;
    height: 150px;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgb(154,202,186);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
}

.attempt_now .pro_learning svg path {
    fill: rgb(154,202,186);
}

.attempt_now .pro_learning h2 {
    font-size: 45px;
    text-align: center;
    margin: 30px 0;
    color: #000000;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
}

.attempt_now .pro_learning h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, rgb(154,202,186), rgb(106,174,157));
    border-radius: 10px;
}

.attempt_now .pro_learning .query_grid {
    padding: 20px 50px;
    background: linear-gradient(45deg, rgb(154,202,186), rgb(106,174,157));
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid rgb(154,202,186);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease-in-out;
}

.attempt_now .pro_learning .query_grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(154,202,186,0.5);
    opacity: 0.2;
    transition: opacity 0.3s ease-in-out;
}

.attempt_now .pro_learning .query_grid::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.2em;
    vertical-align: middle;
}

.attempt_now .pro_learning .query_grid:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(106,174,157,0.5);
}

@media only screen and (max-width: 800px) {
    .attempt_now .pro_learning {
        flex-direction: column;
        padding: 30px;
    }
    .attempt_now .pro_learning h2 {
        font-size: 19px;
    }
    .attempt_now .pro_learning .query_grid {
        padding: 15px 30px;
        font-size: 16px;
    }
    .attempt_now .pro_learning svg {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
}.locate {
    position: relative;
    background: #a7c7dd;
    padding: 100px 0;
    overflow: hidden;
}

.locate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgb(154,202,186,0.5);
    z-index: 1;
}

.locate .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.locate .msg_support {
    font-size: 39px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: left;
    margin-left: 30px;
}

.locate .msg_support::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: rgb(154,202,186);
}

.locate .reach_us {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    width: 80%;
    margin: 0 auto;
}

.locate .info_wrapper {
    display: flex;
    flex-direction: column;
}

.locate .pic_overlay {
    width: 100%;
    height: 300px;
    position: relative;
    display: block;
    background-position: center !important;
    background-size: cover !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.locate .pic_overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
    opacity: 0.7;
    z-index: 1;
}

.locate .msg_info {
    padding: 40px;
    background: #ffffff;
}

.locate .msg_info p {
    margin: 0 0 25px 0;
    padding: 0;
    font-size: 17px;
    color: #000000;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.locate .msg_info p:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.locate .msg_info p::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(201,231,219);
}

.locate .msg_info p:last-child::after {
    display: none;
}

.locate .msg_info p svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    fill: rgb(154,202,186);
    order: -1;
}

.locate .msg_info p svg path {
    fill: rgb(154,202,186);
    transition: fill 0.3s ease;
}

.locate .msg_info p:hover svg path {
    fill: rgb(106,174,157);
}

.locate .msg_info p span {
    position: relative;
    transition: transform 0.3s ease;
}

.locate .msg_info p span:first-child {
    font-weight: 400;
    color: #000000;
    margin-right: auto;
}

.locate .msg_info p span:last-child {
    margin-left: 10px;
}

.locate .msg_info p:hover span:last-child {
    transform: translateX(10px);
}

.locate .msg_info p span a {
    color: rgb(154,202,186);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.locate .msg_info p span a:hover {
    color: rgb(106,174,157);
}

.locate .join_conversation {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgb(201,231,219);
}

.locate .contact_query {
    font-size: 21px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.locate .contact_query::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: rgb(154,202,186);
}

.locate .online_contact {
    display: grid;
    gap: 15px;
}

.locate .contact_assistance {
    padding: 15px 20px;
    background: rgb(201,231,219);
    font-size: 17px;
    color: #000000;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.locate .contact_assistance:hover {
    background: rgb(154,202,186);
    color: #ffffff;
}

.locate .join_conversation svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(154,202,186);
    vertical-align: middle;
}

.locate .contact_assistance:hover svg path {
    fill: #ffffff;
}

.locate .shape_one {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgb(106,174,157,0.5);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.locate .shape_two {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(154,202,186,0.5);
    bottom: -100px;
    left: 10%;
    z-index: 0;
}

@media (min-width: 992px) {
    .locate .info_wrapper {
        flex-direction: row;
    }

    .locate .pic_overlay {
        order: 2;
    }
    
    .locate .msg_info {
        width: 60%;
        order: 1;
    }
    
    .locate .online_contact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .locate {
        padding: 80px 0;
    }
    
    .locate .msg_support {
        font-size: 29px;
        margin-bottom: 50px;
    }
    
    .locate .online_contact {
        grid-template-columns: repeat(2, 1fr);
    }

    .locate .msg_info p svg {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .locate {
        padding: 60px 0;
    }
    
    .locate .msg_support {
        font-size: 21px;
        margin-bottom: 40px;
    }
    
    .locate .msg_info {
        padding: 30px;
    }
    
    .locate .contact_query {
        font-size: 19px;
    }

    .locate .msg_info p svg {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}.program_overview {
    padding: 80px 0;
    background: rgb(201,231,219);
    position: relative;
    overflow: hidden;
}

.program_overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(106,174,157,0.5) 25%, transparent 25%, transparent 50%, rgb(154,202,186,0.5) 50%, rgb(106,174,157,0.5) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.program_overview h2 {
    color: rgb(154,202,186);
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.program_overview .main_master {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.program_overview h3 {
    color: rgb(106,174,157);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.program_overview p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.program_overview .query_grid {
    background: rgb(106,174,157);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.program_overview .query_grid:hover {
    background: rgb(154,202,186);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgb(154,202,186);
}

.program_overview .pro_learning {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.program_overview .grow_skills {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.program_overview .education_map {
    padding: 20px;
    max-width: 100%;
    flex: 1;
    margin: 0 10px;
}

.program_overview .pic_overlay {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.program_overview .info_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

@media only screen and (max-width: 600px) {
    .program_overview {
        padding: 60px 0;
    }
    .program_overview h2 {
        font-size: 35px;
    }
    .program_overview h3 {
        font-size: 20px;
    }
    .program_overview .education_map {
        max-width: 100%;
        width: 100%;
        padding: 10px;
    }
    .program_overview .grow_skills {
        flex-direction: column;
        padding: 0;
    }
    .program_overview .pic_overlay {
        height: 250px;
    }
}

.wrapper-template .program_overview .container {
    width: 100%;
    padding: 0;
}

.wrapper-template .program_overview .grow_skills {
    width: 100%;
}

.wrapper-template .program_overview .grow_skills .education_map {
    padding: 0;
    width: 100%;
}

.wrapper-template .program_overview .pic_overlay {
    height: 300px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 50% !important;
}

.wrapper-template .program_overview .education_map .main_master {
    border-radius: 0 !important;
    box-shadow: none;
    background: rgb(154,202,186);
}

.wrapper-template .program_overview .info_wrapper {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
    background: none;
    padding: 20px;
}

.wrapper-template .program_overview p {
    margin-top: 20px;
    text-align: center;
}

.wrapper-template .program_overview .query_grid {
    margin-top: 30px;
    width: fit-content;
}

.wrapper-template .program_overview h3 {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .program_overview h2 {
        font-size: 20px;
    }
    .program_overview h3 {
        font-size: 20px;
    }
    .program_overview .pic_overlay {
        height: 200px;
    }
    .wrapper-template .program_overview .education_map .main_master {
        padding: 10px;
    }
}
.learning_system {
    position: relative;
    width: 100%;
    background: rgb(201,231,219);
    padding: 120px 0;
    overflow: hidden;
}

.learning_system .edu_steps {
    position: relative;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.learning_system .edu_steps .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 0;
}

.learning_system .edu_steps .pic_overlay {
    position: relative;
    min-height: 600px;
    border-radius: 16px 0 0 16px;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.learning_system .edu_steps .pic_overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), transparent);
    border-radius: 16px 0 0 16px;
}

.learning_system .edu_steps .pro_learning {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.learning_system .edu_steps .pro_learning h3 {
    color: #000000;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
}

.learning_system .edu_steps .pro_learning h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: rgb(154,202,186);
    border-radius: 10px;
}

.learning_system .edu_steps .pro_learning span {
    color: #000000;
    font-size: 12px;
    line-height: 1.8;
    font-family: Merriweather, sans-serif;
    font-weight: 400;
}

.learning_system .edu_steps:hover .pic_overlay {
    transform: scale(1);
}

@media (max-width: 1200px) {
    .learning_system {
        padding: 80px 0;
    }

    .learning_system .edu_steps .container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .learning_system .edu_steps .pic_overlay {
        min-height: 400px;
        border-radius: 16px 16px 0 0;
    }

    .learning_system .edu_steps .pic_overlay::after {
        border-radius: 16px 16px 0 0;
    }

    .learning_system .edu_steps .pro_learning {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .learning_system {
        padding: 60px 0;
    }

    .learning_system .edu_steps .pic_overlay {
        min-height: 300px;
    }

    .learning_system .edu_steps .pro_learning {
        padding: 30px 20px;
    }

    .learning_system .edu_steps .pro_learning h3 {
        font-size: calc(31px * 0.85);
        margin-bottom: 25px;
    }

    .learning_system .edu_steps .pro_learning span {
        font-size: calc(12px * 0.95);
    }
}.secure_protection {
    padding: 40px;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: Merriweather, sans-serif;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.secure_protection:before, .secure_protection:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgb(154,202,186,0.5);
    z-index: 0;
}

.secure_protection:before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.secure_protection:after {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
}

.secure_protection h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 39px;
    color: #000000;
    font-weight: 700;
    border-bottom: 2px solid rgb(154,202,186);
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.secure_protection h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 31px;
    color: rgb(106,174,157);
    font-weight: 600;
    border-bottom: 1px solid rgb(106,174,157,0.5);
    padding-bottom: 5px;
    position: relative;
    z-index: 1;
}

.secure_protection ul, .secure_protection ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.secure_protection li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.secure_protection li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(154,202,186);
    font-size: 1.2em;
    line-height: 1;
}

.secure_protection div {
    margin-bottom: 20px;
    line-height: 1.8;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.secure_protection .container {
    position: relative;
    z-index: 1;
}

.secure_protection h3, .secure_protection h4, .secure_protection h5, .secure_protection h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 23px;
    color: rgb(154,202,186);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.secure_protection p, .secure_protection span {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.secure_protection a {
    color: rgb(106,174,157);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid rgb(106,174,157,0.5);
    position: relative;
    z-index: 1;
}

.secure_protection a:hover {
    color: rgb(154,202,186);
    border-bottom: 1px solid rgb(154,202,186);
}

.secure_protection button {
    background: rgb(106,174,157);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.secure_protection button:hover {
    background: rgb(154,202,186);
}

@media only screen and (max-width: 800px) {
    .secure_protection {
        padding: 20px;
        width: 90%;
    }

    .secure_protection h1 {
        font-size: calc(23px - 5px);
    }

    .secure_protection h2 {
        font-size: calc(23px - 3px);
    }

    .secure_protection ul, .secure_protection ol {
        padding-left: 10px;
    }

    .secure_protection li {
        padding-left: 15px;
    }

    .secure_protection li:before {
        left: -10px;
    }

    .secure_protection button {
        padding: 8px 15px;
    }
}.contact_section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgb(154,202,186), rgb(106,174,157));
    position: relative;
    overflow: hidden;
}

.contact_section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgb(154,202,186,0.5), transparent);
    z-index: 0;
}

.contact_section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgb(106,174,157,0.5), transparent);
    z-index: 0;
}

.contact_section h3 {
    color: #ffffff;
    font-size: 29px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact_section .request_help {
    background: #ffffff;
    border-radius: 29px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 40px;
    margin: auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact_section .request_help::before,
.contact_section .request_help::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.contact_section .request_help::before {
    top: -50px;
    left: -50px;
    background: rgb(154,202,186,0.5);
}

.contact_section .request_help::after {
    bottom: -50px;
    right: -50px;
    background: rgb(106,174,157,0.5);
}

.contact_section form input,
.contact_section form select,
.contact_section form textarea {
    color: #000000;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(154,202,186);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    font-size: 17px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact_section form input:focus,
.contact_section form select:focus,
.contact_section form textarea:focus {
    background: #ffffff;
    border: 1px solid rgb(106,174,157);
}

.contact_section form .query_grid {
    background: rgb(106,174,157);
    color: #ffffff;
    border-radius: 29px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 30px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact_section form .query_grid:hover {
    background: rgb(154,202,186);
}

.contact_section .pro_learning {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact_section .pro_learning > div {
    width: 100%;
    padding: 30px;
}

.contact_section .request_help form {
    display: flex;
    flex-direction: column;
}

.contact_section .message_reach {
    display: flex;
    justify-content: space-between;
}

.contact_section .message_reach input {
    width: 100%;
}

.contact_section .feedback_reach {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.contact_section .feedback_reach label {
    display: flex;
    align-items: center;
}

.contact_section .feedback_reach a {
    margin-left: 5px;
    color: rgb(154,202,186);
    text-decoration: none;
    font-weight: 600;
}

.contact_section .connect_support {
    margin-bottom: 30px;
    text-align: center;
    color: #000000;
    font-size: 17px;
    z-index: 1;
    position: relative;
}

.contact_section .feedback_reach input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px) {
    .contact_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact_section h3 {
        font-size: 22px;
    }
    .contact_section .message_reach {
        flex-direction: column;
    }
    .contact_section .message_reach input {
        width: 100%;
        margin-bottom: 20px;
    }
    .contact_section .request_help {
        padding: 20px;
    }
}

.wrapper-template .contact_section .pro_learning {
    justify-content: center;
    position: relative;
}

.wrapper-template .contact_section .pro_learning::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: none;
    border-radius: 50%;
    top: -50px;
    right: 10%;
    border: 50px solid rgb(201,231,219);
}

.wrapper-template .contact_section .connect_support {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #000000;
}

.wrapper-template .contact_section {
    background: rgb(154,202,186);
    padding-top: 100px;
}

.wrapper-template .contact_section .request_help {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    background: #ffffff;
    width: 80%;
    position: relative;
    z-index: 1;
}

.wrapper-template .contact_section form input {
    background: rgb(201,231,219);
    border: 1px solid rgb(106,174,157);
    border-radius: 10px;
}

.wrapper-template .contact_section form label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.wrapper-template .contact_section .message_reach {
    flex-direction: column;
}

.wrapper-template .contact_section h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #000000;
}

.wrapper-template .contact_section .feedback_reach a {
    text-decoration: none;
    color: rgb(154,202,186);
}

.wrapper-template .contact_section form .query_grid {
    background: rgb(106,174,157);
    border: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    width: 50%;
    margin: auto;
}

@media only screen and (max-width: 800px) {
    .wrapper-template .contact_section {
        padding-top: 80px;
    }
    .wrapper-template .contact_section .pro_learning > div {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
    .wrapper-template .contact_section form .query_grid {
        width: 100%;
    }
}.user_reviews {
    background: rgb(201,231,219);
    padding: 80px 0;
    border-top: 4px solid rgb(154,202,186);
    border-bottom: 4px solid rgb(154,202,186);
    position: relative;
    overflow: hidden;
}

.user_reviews::before,
.user_reviews::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgb(154,202,186,0.5) 8%, transparent 8%);
    background-size: 30px 30px;
    animation: backgroundMove 60s linear infinite;
    z-index: 0;
}

.user_reviews::after {
    background-size: 20px 20px;
    animation-duration: 40s;
    opacity: 0.5;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.user_reviews h3 {
    font-size: clamp(24px, 5vw, 33px);
    color: rgb(154,202,186);
    font-weight: 700;
    text-align: center;
    margin: 0 0 50px 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.user_reviews h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(154,202,186), transparent);
}

.user_reviews .pro_learning {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.user_reviews .feedback_quotes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 20px;
    perspective: 1000px;
}

.user_reviews .feedback_quotes .success_testimonials {
    flex: 1 1 calc(33.333% - 40px);
    max-width: 320px;
    border-radius: 25px;
    background: #ffffff;
    border: 2px solid rgb(154,202,186,0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.user_reviews .feedback_quotes .success_testimonials:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.5);
    border-color: rgb(154,202,186);
}

.user_reviews .feedback_quotes .pic_overlay {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid rgb(154,202,186);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.user_reviews .feedback_quotes .pic_overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user_reviews .feedback_quotes .success_testimonials:hover .pic_overlay::before {
    opacity: 1;
}

.user_reviews .feedback_quotes .text {
    padding: 25px 20px 35px;
    text-align: center;
    background: #ffffff;
    position: relative;
    transition: transform 0.3s ease;
}

.user_reviews .feedback_quotes .text::before,
.user_reviews .feedback_quotes .text::after {
    content: "\201C";
    font-size: 60px;
    color: rgb(154,202,186,0.5);
    position: absolute;
    z-index: 0;
    transition: all 0.3s ease;
}

.user_reviews .feedback_quotes .text::before {
    top: 10px;
    left: 10px;
}

.user_reviews .feedback_quotes .text::after {
    bottom: -10px;
    right: 10px;
    transform: rotate(180deg);
}

.user_reviews .feedback_quotes .success_testimonials:hover .text::before {
    transform: translateY(-5px) rotate(-10deg);
}

.user_reviews .feedback_quotes .success_testimonials:hover .text::after {
    transform: translateY(5px) rotate(170deg);
}

.user_reviews .feedback_quotes .text p {
    font-size: 21px;
    color: #000000;
    font-weight: 600;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.user_reviews .feedback_quotes .text span {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.user_reviews .feedback_quotes .success_testimonials:hover .text p {
    transform: translateZ(20px);
}

.user_reviews .feedback_quotes .success_testimonials:hover .text span {
    transform: translateZ(15px);
}

@media only screen and (max-width: 1200px) {
    .user_reviews .feedback_quotes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 20px;
    }
    .user_reviews .feedback_quotes .success_testimonials {
        flex: 1 1 calc(50% - 40px);
        max-width: 600px;
    }
}

@media only screen and (max-width: 768px) {
    .user_reviews {
        padding: 60px 0;
    }
    .user_reviews h3 {
        margin-bottom: 30px;
    }
    .user_reviews .feedback_quotes {
        gap: 20px;
    }
    .user_reviews .feedback_quotes .success_testimonials {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .user_reviews .feedback_quotes .pic_overlay {
        height: 150px;
    }
    .user_reviews .feedback_quotes .text {
        padding: 20px 15px 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .user_reviews::before,
    .user_reviews::after {
        animation: none;
    }
    .user_reviews .feedback_quotes .success_testimonials,
    .user_reviews .feedback_quotes .text::before,
    .user_reviews .feedback_quotes .text::after,
    .user_reviews .feedback_quotes .text p,
    .user_reviews .feedback_quotes .text span {
        transition: none;
    }
    .user_reviews .feedback_quotes .success_testimonials:hover {
        transform: none;
        box-shadow: none;
    }
}
.advantages_overview {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(201,231,219) 0%, rgb(106,174,157,0.5) 100%);
    position: relative;
    overflow: hidden;
}

.advantages_overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(154,202,186,0.5) 10%, transparent 10%);
    background-size: 50px 50px;
    transform: rotate(30deg);
    opacity: 0.1;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: rotate(30deg) translateY(0); }
    100% { transform: rotate(30deg) translateY(-50px); }
}

.advantages_overview .smart_advantages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(#ffffff, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(#000000, 0.1);
    transition: all 0.3s ease;
}

.advantages_overview .smart_advantages:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(#000000, 0.15);
}

.advantages_overview .study_gain {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
}

.advantages_overview .study_gain .pic_overlay {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.advantages_overview .study_gain .pic_overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(154,202,186,0.5) 0%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.advantages_overview .study_gain .pic_overlay:hover::after {
    opacity: 0.3;
}

.advantages_overview .knowledge_gain {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.advantages_overview .knowledge_gain .learning_boost {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(#000000, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.advantages_overview .knowledge_gain .learning_boost:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(#000000, 0.1);
}

.advantages_overview .knowledge_gain .learning_boost .success_points {
    margin-bottom: 20px;
    position: relative;
}

.advantages_overview .knowledge_gain .learning_boost svg, .advantages_overview .knowledge_gain .learning_boost svg path {
    width: 70px;
    height: 70px;
    fill: rgb(154,202,186);
    transition: all 0.3s ease;
}

.advantages_overview .knowledge_gain .learning_boost:hover svg {
    transform: scale(1.1) rotate(5deg);
    fill: rgb(106,174,157);
}

.advantages_overview .knowledge_gain .learning_boost h4 {
    font-size: 22px;
    color: #000000;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.advantages_overview .knowledge_gain .learning_boost:hover h4 {
    color: rgb(154,202,186);
}

.advantages_overview .smart_advantages h2 {
    font-size: 31px;
    color: rgb(154,202,186);
    text-align: center;
    margin: 0 0 50px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.advantages_overview .smart_advantages h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(106,174,157);
    border-radius: 2px;
}

@media only screen and (max-width: 1024px) {
    .advantages_overview {
        padding: 80px 0;
    }

    .advantages_overview .study_gain {
        grid-template-columns: 1fr;
    }

    .advantages_overview .study_gain .pic_overlay {
        height: 300px;
    }

    .advantages_overview .knowledge_gain {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .advantages_overview {
        padding: 60px 0;
    }

    .advantages_overview .smart_advantages {
        padding: 30px;
    }

    .advantages_overview .smart_advantages h2 {
        font-size: calc(31px * 0.8);
        margin-bottom: 30px;
    }

    .advantages_overview .knowledge_gain .learning_boost {
        padding: 20px;
    }

    .advantages_overview .knowledge_gain .learning_boost svg {
        width: 50px;
        height: 50px;
    }

    .advantages_overview .knowledge_gain .learning_boost h4 {
        font-size: calc(22px * 0.9);
    }
}

@media only screen and (max-width: 480px) {
    .advantages_overview {
        padding: 40px 0;
    }

    .advantages_overview .smart_advantages {
        padding: 20px;
    }

    .advantages_overview .smart_advantages h2 {
        font-size: calc(31px * 0.7);
    }

    .advantages_overview .knowledge_gain {
        grid-template-columns: 1fr;
    }
}.education_experience {
    background: linear-gradient(135deg, #ffffff 0%, rgb(201,231,219) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.education_experience::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgb(154,202,186,0.5) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.education_experience .pro_learning {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.education_experience .success_testimonials {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: linear-gradient(to right, #ffffff, #ffffff 60%, rgb(201,231,219));
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.1);
    position: relative;
}

.education_experience .pic_overlay {
    height: 600px;
    border-radius: 100px 100px 0 100px;
    position: relative;
    transition: all 0.5s ease;
}

.education_experience .pic_overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgb(154,202,186,0.5) 100%);
    border-radius: inherit;
    opacity: 0.6;
}

.education_experience .work_background {
    padding: 40px 0;
    position: relative;
}

.education_experience .name {
    font-size: 44px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.education_experience .career_exp {
    font-size: 19px;
    color: rgb(154,202,186);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.education_experience .worker_info {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, rgb(201,231,219) 100%);
    border-radius: 15px;
    grid-column: span 2;
}

.education_experience .exp_section {
    font-size: 17px;
    font-weight: 600;
    color: rgb(154,202,186);
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.education_experience .career_area {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .education_experience {
        padding: 80px 0;
    }

    .education_experience .success_testimonials {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 0;
    }

    .education_experience .pic_overlay {
        height: 500px;
        border-radius: 80px 80px 0 80px;
    }
    .education_experience .worker_info {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .education_experience {
        padding: 60px 0;
    }

    .education_experience .success_testimonials {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .education_experience .pic_overlay {
        height: 400px;
        border-radius: 60px 60px 0 60px;
    }

    .education_experience .work_background {
        padding: 20px 0;
        text-align: center;
    }

    .education_experience .name {
        font-size: calc(36px * 1.1);
    }

    .education_experience .worker_info {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .education_experience {
        padding: 40px 0;
    }

    .education_experience .success_testimonials {
        padding: 20px;
    }

    .education_experience .pic_overlay {
        height: 300px;
        border-radius: 40px 40px 0 40px;
    }

    .education_experience .worker_info {
        padding: 20px;
    }

    .education_experience .name {
        font-size: 36px;
        letter-spacing: 0.5px;
    }

    .education_experience .career_exp {
        letter-spacing: 1px;
    }

    .education_experience .exp_section {
        font-size: calc(17px * 1.1);
    }
}.join_our_community {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.join_our_community .pro_learning {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.join_our_community input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(106,174,157,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.join_our_community h2 {
    margin-bottom: 20px;
    text-align: center;
}

.join_our_community .query_grid {
    background: rgb(106,174,157);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.join_our_community .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .join_our_community .pro_learning {
        flex-direction: column;
    }

    .join_our_community {
        padding: 30px 20px;
    }

    .join_our_community input {
        min-width: unset;
    }

    .join_our_community .query_grid {
        flex-shrink: unset;
    }

    .join_our_community .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .join_our_community input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrapper-template .join_our_community .pro_learning h2 {
        font-size: 20px;
    }
}

.wrapper-template .join_our_community {
    background: rgb(106,174,157);
    padding: 50px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.wrapper-template .join_our_community .pro_learning {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.wrapper-template .join_our_community h2 {
    color: rgb(154,202,186);
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.wrapper-template .join_our_community input {
    width: auto;
    max-width: 400px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #ffffff;
    background: rgb(106,174,157);
    border: 2px solid rgb(154,202,186);
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.wrapper-template .join_our_community input::placeholder {
    color: rgb(154,202,186);
    opacity: 0.7;
}

.wrapper-template .join_our_community input:focus {
    border-color: rgb(106,174,157);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    outline: none;
}

.wrapper-template .join_our_community .query_grid {
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 30px;
    background: rgb(154,202,186);
    color: #000000;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.wrapper-template .join_our_community .query_grid:hover {
    background: rgb(106,174,157);
    transform: translateY(-2px);
}

@media only screen and (max-width: 800px) {
    .wrapper-template .join_our_community {
        padding: 30px 15px;
    }

    .wrapper-template .join_our_community h2 {
        font-size: 29px;
        margin-bottom: 20px;
    }

    .wrapper-template .join_our_community input {
        width: 100%;
        margin-bottom: 15px;
    }

    .wrapper-template .join_our_community .query_grid {
        width: 100%;
        padding: 15px;
    }
}.title_opener {
    background-color: rgb(201,231,219);
    font-family: Merriweather, sans-serif;
}
.title_opener .pro_learning {
    display: flex;
    flex-direction: row;
}
.title_opener .pic_overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.title_opener .pic_overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(154,202,186,0.5), transparent);
}
.title_opener .info_wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #ffffff;
    position: relative;
}
.title_opener .info_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: rgb(154,202,186);
}
.title_opener .tech_master {
    margin-bottom: 2rem;
}
.title_opener .tech_master svg {
    width: 60px;
    height: 60px;
    fill: rgb(154,202,186);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.title_opener .tech_master svg:hover {
    transform: scale(1.1);
}
.title_opener .tech_master h2 {
    font-size: 38px;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.title_opener .tech_master h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: rgb(106,174,157);
}
.title_opener .tech_master span {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    display: block;
}
.title_opener .query_grid {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background-color: rgb(154,202,186);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.title_opener .query_grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgb(106,174,157,0.5), transparent);
    transition: left 0.5s ease;
}
.title_opener .query_grid:hover::before {
    left: 100%;
}
.title_opener .query_grid:hover {
    background-color: rgb(106,174,157);
}
.title_opener .query_grid:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(106,174,157,0.5);
}
@media only screen and (max-width: 1024px) {
    .title_opener .pro_learning {
        flex-direction: column;
    }
    .title_opener .pic_overlay {
        height: 40vh;
    }
    .title_opener .info_wrapper {
        padding: 3rem;
    }
}
@media only screen and (max-width: 768px) {
    .title_opener .info_wrapper {
        padding: 2rem;
    }
    .title_opener .tech_master h2 {
        font-size: 24px;
    }
    .title_opener .tech_master span {
        font-size: 12px;
    }
    .title_opener .query_grid {
        padding: 0.6rem 1.2rem;
        font-size: 12px;
    }
}.company_info {
    position: relative;
    padding: 100px 0;
    background: rgb(201,231,219);
    overflow: hidden;
}

.company_info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgb(154,202,186,0.5) 0%, transparent 30%),
                linear-gradient(240deg, rgb(106,174,157,0.5) 0%, transparent 30%);
    z-index: 1;
}

.company_info .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company_info h2 {
    font-size: 35px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 1px;
}

.company_info h2::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, rgb(154,202,186), rgb(106,174,157));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.company_info .pro_training {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.company_info .virtual_academy {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 23px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid rgb(154,202,186);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company_info .virtual_academy:nth-child(2) {
    border-left-color: rgb(106,174,157);
}

.company_info .virtual_academy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: -1;
}

.company_info .virtual_academy::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(154,202,186,0.5);
    border-radius: 50%;
    top: 30px;
    right: 30px;
    animation: pulse 4s infinite;
}

.company_info .virtual_academy:nth-child(2)::after {
    border-color: rgb(106,174,157,0.5);
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.company_info .virtual_academy:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, rgba(rgb(154,202,186,0.5), 0.03), rgba(255, 255, 255, 0.05));
}

.company_info .virtual_academy h3 {
    font-size: 21px;
    color: rgb(154,202,186);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.company_info .virtual_academy:nth-child(2) h3 {
    color: rgb(106,174,157);
}

.company_info .virtual_academy h3::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: currentColor;
    left: 0;
    bottom: -8px;
    transition: width 0.3s ease;
}

.company_info .virtual_academy:hover h3::before {
    width: 100%;
}

.company_info .virtual_academy p {
    font-size: 12px;
    color: #000000;
    line-height: 1.8;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.company_info .virtual_academy:first-child {
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.6s forwards 0.2s;
}

.company_info .virtual_academy:last-child {
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.6s forwards 0.5s;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.company_info::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: 1;
}

.company_info .container::before,
.company_info .container::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(154,202,186,0.5) 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
}

.company_info .container::before {
    top: -100px;
    right: -100px;
}

.company_info .container::after {
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgb(106,174,157,0.5) 0%, transparent 70%);
}

@media (max-width: 992px) {
    .company_info {
        padding: 80px 0;
    }
    
    .company_info h2 {
        margin-bottom: 50px;
    }
    
    .company_info .virtual_academy {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .company_info {
        padding: 60px 0;
    }
    
    .company_info h2 {
        font-size: calc(35px * 0.9);
        margin-bottom: 40px;
    }
    
    .company_info .virtual_academy {
        padding: 25px;
    }
    
    .company_info .virtual_academy h3 {
        font-size: calc(21px * 0.9);
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .company_info {
        padding: 40px 0;
    }
    
    .company_info h2 {
        font-size: calc(35px * 0.8);
        margin-bottom: 30px;
    }
    
    .company_info .virtual_academy {
        padding: 20px;
        border-left-width: 3px;
    }
    
    .company_info .virtual_academy::after {
        width: 15px;
        height: 15px;
        top: 20px;
        right: 20px;
    }
    
    .company_info .virtual_academy p {
        font-size: calc(12px * 0.95);
        line-height: 1.6;
    }
    
    .company_info .container::before,
    .company_info .container::after {
        width: 150px;
        height: 150px;
    }
}.appNote {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: rgb(201,231,219);
    padding: 80px 20px;
    border-top: 5px solid rgb(154,202,186);
    border-bottom: 5px solid rgb(154,202,186);
}
.appNote .container {
    width: 100%;
    max-width: 800px;
    padding: 50px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.appNote h2 {
    margin-bottom: 20px;
    font-size: 45px;
    font-family: Merriweather, sans-serif;
    font-weight: 700;
    color: #000000;
    border-bottom: 2px solid rgb(154,202,186);
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.appNote p {
    font-size: 15px;
    font-family: Merriweather, sans-serif;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    padding: 15px;
    background: rgb(201,231,219);
    border-radius: 10px;
    border: 1px solid #000000;
    margin-bottom: 30px;
}
@media only screen and (max-width: 800px) {
    .appNote {
        padding: 40px 10px;
    }
    .appNote .container {
        padding: 30px;
    }
    .appNote h2 {
        font-size: 34px;
    }
    .appNote p {
        font-size: 15px;
    }
}
.head_edu {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}
.head_edu .header_nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.head_edu .head_primary {
    display: flex;
    align-items: center;
}
.head_edu .top_learn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(154,202,186);
    font-weight: 700;
    font-size: 24px;
    transition: color 0.3s ease;
}
.head_edu .top_learn:hover {
    color: rgb(106,174,157);
}
.head_edu .top_learn svg,
.head_edu .top_learn img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(154,202,186);
    transition: fill 0.3s ease;
}
.head_edu .top_learn:hover svg,
.head_edu .top_learn:hover img {
    fill: rgb(106,174,157);
}
.head_edu .main_tutor {
    font-size: 15px;
    color: #000000;
    margin-left: 20px;
    position: relative;
    padding-left: 15px;
}
.head_edu .main_tutor::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background-color: rgb(154,202,186);
}
.head_edu .nav_teach {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.head_edu .nav_teach a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    font-size: 14px;
    transition: color 0.3s ease;
}
.head_edu .nav_teach a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(154,202,186);
    transition: width 0.3s ease;
}
.head_edu .nav_teach a:hover,
.head_edu .nav_teach a:focus {
    color: rgb(154,202,186);
}
.head_edu .nav_teach a:hover::after,
.head_edu .nav_teach a:focus::after {
    width: 100%;
}
@media (max-width: 1200px) {
    .head_edu .header_nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .head_edu .head_primary {
        margin-bottom: 15px;
    }
    .head_edu .main_tutor {
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 0;
        padding-top: 15px;
    }
    .head_edu .main_tutor::before {
        left: 0;
        top: 0;
        transform: none;
        width: 50px;
        height: 3px;
    }
    .head_edu .nav_teach {
        flex-direction: column;
        width: 100%;
    }
    .head_edu .nav_teach a {
        padding: 10px 0;
        border-bottom: 1px solid rgb(106,174,157,0.5);
    }
    .head_edu .nav_teach a:last-child {
        border-bottom: none;
    }
    .head_edu .nav_teach a::after {
        display: none;
    }
}
.head_edu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgb(154,202,186);
}
@media (prefers-reduced-motion: reduce) {
    .head_edu,
    .head_edu *,
    .head_edu *::before,
    .head_edu *::after {
        transition: none !important;
    }
}