* {
    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: Arial, sans-serif;
    color: #000000;
}
.wrapper-template {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(136,201,151);
}
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;
    }
}.advantages_outline {
    padding: 80px 0;
    background: rgb(67,99,74,0.5);
}
.advantages_outline .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.advantages_outline .advantages_photo_holder {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.advantages_outline .advantages_photo_holder .photo {
    width: 50%;
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.advantages_outline .advantages_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
}
.advantages_outline .advantages_holder .advantage_item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.advantages_outline .advantages_holder .advantage_item svg, .advantages_outline .advantages_holder .advantage_item svg path {
    width: 55px;
    height: 55px;
    fill: rgb(102,150,112);
    margin-right: 20px;
}
.advantages_outline .advantages_content h2 {
    font-size: 37px;
    color: rgb(102,150,112);
    text-align: center;
    margin: 20px 0;
    margin-bottom: 40px;
}
@media only screen and (max-width: 800px) {
    .advantages_outline .advantages_photo_holder {
        flex-direction: column;
    }
    .advantages_outline .advantages_photo_holder .photo {
        width: 100%;
        height: 200px;
    }
    .advantages_outline .advantages_content h2 {
        font-size: 21px;
    }
    .advantages_outline .advantages_holder {
        width: 100%;
        margin-bottom: 20px;
        align-items: center;
    }
}header .main_header {
    min-height: 100px;
    background: rgb(67,99,74);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 2px solid rgb(102,150,112);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.main_header .header_holder {
    display: flex;
    align-items: center;
}
.main_header .header_holder .logo_holder {
    margin-right: 30px;
    border-right: 2px solid rgb(102,150,112);
    padding-right: 30px;
}
.main_header .header_holder .logo_holder svg, 
.main_header .header_holder .logo_holder img {
    height: 50px;
    width: auto;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-size: 16px;
    font-weight: 600;
    margin-right: auto;
    position: relative;
}
.main_header .header_menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main_header .header_menu a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    header .main_header {
        flex-direction: column;
        align-items: flex-start;
        min-height: 80px;
        padding: 20px;
    }
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main_header .header_holder .logo_holder {
        margin-right: 0;
        border-right: none;
        padding-right: 0;
        margin-bottom: 10px;
    }
    .main_header .header_holder .logo_holder svg, 
    .main_header .header_holder .logo_holder img {
        height: 40px;
    }
    .main_header .header_description {
        margin-bottom: 10px;
        font-size: 17px;
    }
    .main_header .header_description::before {
        width: 8px;
        height: 8px;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main_header .header_menu a {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgb(102,150,112);
        padding: 10px 15px;
    }
    .main_header .header_menu a:last-child {
        border-bottom: none;
    }
}footer {
    background: rgb(67,99,74);
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 50px 0;
}
footer .footer {
    background: rgb(67,99,74);
    padding: 60px 20px;
    border-top: 1px solid rgb(102,150,112);
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(67,99,74);
    padding-bottom: 20px;
}
footer .logo_holder svg, 
footer .logo_holder img {
    height: 60px;
    width: auto;
    fill: rgb(102,150,112);
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
footer .menu a {
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: border 0.3s ease;
}
footer .menu a:hover {
    border: 1px solid rgb(102,150,112);
}
footer .copyright {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 16px;
}
footer .copyright_info a {
    color: rgb(102,150,112);
    text-decoration: none;
    font-weight: 600;
}
footer .copyright_info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
        padding-bottom: 30px;
    }
    footer .footer_info > * {
        margin-bottom: 15px;
    }
    footer .footer_info > *:last-child {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        padding: 0 10px;
    }
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .menu a {
        margin-right: 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    footer .menu_holder {
        width: 100%;
    }
}
.aspiring_learners {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 120px 0;
}

.aspiring_learners .who_needs_background {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.aspiring_learners .who_needs_background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%,
        rgb(67,99,74,0.5) 70%);
    z-index: 1;
}

.aspiring_learners .container {
    position: relative;
    z-index: 2;
}

.aspiring_learners .who_needs_text {
    max-width: 800px;
    margin-left: auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.aspiring_learners .who_needs_text h3 {
    color: #000000;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.aspiring_learners .who_needs_text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(102,150,112);
    border-radius: 10px;
}

.aspiring_learners .who_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.aspiring_learners .who_needs_item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 10px;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgb(136,201,151);
}

.aspiring_learners .who_needs_item svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
    fill: rgb(102,150,112);
}

.aspiring_learners .who_needs_item:hover {
    transform: translateY(-3px);
    background: rgb(136,201,151);
    border-color: rgb(102,150,112);
}

@media (max-width: 1200px) {
    .aspiring_learners {
        padding: 80px 0;
    }

    .aspiring_learners .who_needs_text {
        max-width: 700px;
        padding: 40px;
    }

    .aspiring_learners .who_items {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .aspiring_learners .who_needs_background {
        min-height: 500px;
    }

    .aspiring_learners .who_needs_text {
        max-width: 600px;
        margin: 0 auto;
    }

    .aspiring_learners .who_needs_text h3 {
        font-size: calc(34px * 0.9);
    }
}

@media (max-width: 768px) {
    .aspiring_learners {
        padding: 60px 0;
    }

    .aspiring_learners .who_needs_background {
        min-height: auto;
    }

    .aspiring_learners .who_needs_text {
        padding: 30px;
        margin: 0 15px;
    }

    .aspiring_learners .who_items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .aspiring_learners .who_needs_item {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .aspiring_learners {
        padding: 40px 0;
    }

    .aspiring_learners .who_needs_text {
        padding: 25px;
    }

    .aspiring_learners .who_needs_text h3 {
        font-size: calc(34px * 0.8);
        margin-bottom: 20px;
    }

    .aspiring_learners .who_needs_item {
        font-size: calc(15px * 0.95);
    }
}.landing_page {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(102,150,112));
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.landing_page .holder {
    display: flex;
    border: 2px solid rgb(67,99,74);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.landing_page .photo {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgb(67,99,74,0.5);
}

.landing_page .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgb(102,150,112,0.5) 100%);
}

.landing_page .text_holder {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(45deg, rgb(102,150,112,0.5), rgb(67,99,74,0.5));
    position: relative;
    border-left: 1px solid rgb(67,99,74,0.5);
}

.landing_page .text_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(67,99,74), transparent);
}

.landing_page .text_info {
    margin-bottom: 2rem;
    border: 1px solid rgb(67,99,74,0.5);
    border-radius: 10px;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.landing_page .text_info svg {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgb(67,99,74));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.landing_page .text_info svg text {
    fill: #ffffff;
}
.landing_page .text_info h2 {
    font-size: 28px;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, rgb(102,150,112));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgb(67,99,74,0.5);
}

.landing_page .text_info span {
    font-size: 17px;
    line-height: 1.6;
    display: block;
    text-shadow: 0 0 5px rgb(102,150,112);
}

.landing_page .button {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, rgb(67,99,74), rgb(102,150,112));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(67,99,74);
    box-shadow: 0 0 10px rgb(67,99,74,0.5);
}

.landing_page .button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(67,99,74) 10%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

@media only screen and (max-width: 1024px) {
    .landing_page .photo {
        flex: unset;
    }
    .landing_page .holder {
        flex-direction: column;
    }

    .landing_page .photo {
        height: 40vh;
        border-right: none;
        border-bottom: 1px solid rgb(67,99,74,0.5);
    }

    .landing_page .text_holder {
        border-left: none;
    }
}

@media only screen and (max-width: 768px) {
    .landing_page .text_holder {
        padding: 2rem;
    }

    .landing_page .text_info h2 {
        font-size: 20px;
    }

    .landing_page .text_info span {
        font-size: 13px;
    }

    .landing_page .button {
        padding: 0.6rem 1.2rem;
        font-size: 13px;
    }
}.customer_opinions {
    background-color: rgb(136,201,151);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.customer_opinions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(102,150,112,0.5) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, rgb(102,150,112,0.5) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, rgb(102,150,112,0.5) 25%, transparent 25%),
                linear-gradient(45deg, rgb(102,150,112,0.5) 25%, transparent 25%);
    background-size: 100px 100px;
    opacity: 0.1;
}

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

.customer_opinions .holder {
    text-align: center;
}

.customer_opinions h3 {
    font-size: 29px;
    color: #000000;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.customer_opinions h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, rgb(102,150,112), rgb(67,99,74));
}

.customer_opinions .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.customer_opinions .review {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: calc(33.333% - 20px);
    max-width: 350px;
}

.customer_opinions .review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgb(102,150,112), rgb(67,99,74));
}

.customer_opinions .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.customer_opinions .photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid rgb(67,99,74);
}

.customer_opinions .text {
    text-align: left;
}

.customer_opinions .text p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.customer_opinions .text span {
    font-size: 15px;
    color: #000000;
    display: block;
}

@media (max-width: 992px) {
    .customer_opinions .review {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .customer_opinions {
        padding: 60px 0;
    }

    .customer_opinions h3 {
        font-size: 19px;
        margin-bottom: 40px;
    }

    .customer_opinions .review {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .customer_opinions {
        padding: 40px 0;
    }

    .customer_opinions h3 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .customer_opinions .review {
        padding: 20px;
    }

    .customer_opinions .photo {
        width: 60px;
        height: 60px;
    }

    .customer_opinions .text p {
        font-size: 15px;
    }

    .customer_opinions .text span {
        font-size: 12px;
    }
}.find_support {
    background-color: rgb(136,201,151);
    padding: 2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}
.find_support .info_holder svg {
    fill: rgb(102,150,112);
    width: 2em;
    height: 2em;
    vertical-align: middle;
    margin-right: 0.5em;
    transition: fill 0.3s ease;
}
.find_support .holder .info_holder div.accessible_hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.find_support .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.find_support .holder .info_holder > div > div {
    margin: 5px 0;
}
.find_support .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.find_support .info_holder svg:hover {
    fill: rgb(67,99,74);
}
.find_support .contact_holder {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
}
.find_support .contact_holder h2 {
    font-size: 38px;
    color: rgb(102,150,112);
    margin-bottom: 1em;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.find_support .contact_holder .contact_description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 1em;
    text-align: center;
    width: 100%;
    opacity: 0.8;
}
.find_support .contact_holder .photo {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.find_support .holder .info_holder>div span {
    margin-left: 8px;
}
.find_support .info_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    width: 100%;
    padding: 1em;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.find_support .info_holder>div {
    font-size: 18px;
    color: #000000;
    display: flex;
    align-items: center;
    width: 100%;
}
.find_support .contact_politics {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
}
.find_support .contact_politics>div {
    background-color: #ffffff;
    padding: 1em;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.find_support .contact_politics>div h4 {
    font-size: 21px;
    color: rgb(102,150,112);
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.find_support .contact_politics>div p {
    font-size: 18px;
    color: #000000;
    opacity: 0.8;
}
@media only screen and (max-width: 900px) {
    .find_support {
        padding: 1em;
    }
    .find_support .contact_holder {
        width: 100%;
    }
    .find_support .contact_holder .photo {
        width: 150px;
        height: 150px;
    }
    .find_support .contact_holder h2 {
        font-size: 21px;
    }
    .find_support .contact_holder .contact_description {
        font-size: 16px;
    }
    .find_support .info_holder svg {
        width: 1.5em;
        height: 1.5em;
    }
    .find_support .info_holder,
    .find_support .contact_politics>div {
        padding: 0.5em;
    }
}
.price_combo {
    background: rgb(136,201,151);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.price_combo::before,
.price_combo::after {
    content: '';
    position: absolute;
    inset: -50%;
    animation: gradientMove 25s linear infinite;
}

.price_combo::before {
    background: 
        radial-gradient(circle at 20% 20%, rgb(102,150,112,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(67,99,74,0.5) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgb(102,150,112,0.5) 0%, transparent 60%);
    opacity: 0.4;
    filter: blur(80px);
    mix-blend-mode: soft-light;
}

.price_combo::after {
    background: 
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, transparent 1px),
        repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.5) 0%, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    animation: patternMove 20s linear infinite;
    z-index: 1;
}

.price_combo .pricing_holder {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
    z-index: 2;
}

.price_combo .price_info {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.price_combo .price_info h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.price_combo .price_info h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: rgb(102,150,112);
    bottom: -10px;
    left: 25%;
}

.price_combo .section_description {
    font-size: 16px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}

.price_combo .price_types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.price_combo .price_type {
    flex: 1 1 380px;
    max-width: calc(100% - 30px);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

@supports (width: min(450px, 100%)) {
    .price_combo .price_type {
        flex: 1 1 min(450px, 100%);
    }
}

.price_combo .price_type:hover .price_type_holder {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price_combo .price_type_holder {
    background: #ffffff;
    border-radius: 21px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price_combo .price_type_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(102,150,112), rgb(67,99,74));
}

.price_combo .photo {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.price_combo .photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, #ffffff, transparent);
}

.price_combo .price_type_text {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.price_combo .price_type_text h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.price_combo .price_type_text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgb(102,150,112);
}

.price_combo .price_amount {
    font-size: 17px;
    font-weight: 700;
    color: rgb(102,150,112);
    margin-bottom: 20px;
    display: block;
}

.price_combo .price_type_text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price_combo .price_type_holder::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: rgb(67,99,74,0.5);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

@keyframes gradientMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-2%, 2%) rotate(120deg);
    }
    66% {
        transform: translate(2%, -2%) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@media (max-width: 1600px) {
    .price_combo .price_types {
        max-width: 1200px;
    }
}

@media (min-width: 992px) {
    .price_combo .price_types:has(.price_type:nth-child(4)) .price_type {
        flex: 1 1 360px;
    }
}

@media (max-width: 991px) {
    .price_combo .price_type {
        flex: 1 1 340px;
    }
}

@media (max-width: 767px) {
    .price_combo {
        padding: 60px 0;
    }
    .price_combo .price_info {
        margin-bottom: 40px;
    }
    .price_combo .price_type {
        flex: 1 1 100%;
    }
    .price_combo .photo {
        height: 180px;
    }
    .price_combo .price_type_text {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .price_combo .pricing_holder {
        padding: 0 15px;
    }
    .price_combo .price_types {
        padding: 0 20px;
    }
    .price_combo .price_info h2 {
        font-size: calc(28px * 0.8);
    }
    .price_combo .section_description {
        font-size: calc(16px * 0.9);
    }
    .price_combo .photo {
        height: 150px;
    }
}.company_overview {
    padding: 70px 0;
    background: rgb(136,201,151);
    position: relative;
    overflow: hidden;
}

.company_overview::before, .company_overview::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(102,150,112,0.5);
    opacity: 0.3;
    z-index: 0;
}

.company_overview::before {
    top: -50px;
    left: -50px;
}

.company_overview::after {
    bottom: -50px;
    right: -50px;
}

.wrapper-template .company_overview .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: unset;
    background: rgb(102,150,112,0.5);
    border-radius: 22px;
    padding: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wrapper-template .company_overview .holder::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed rgb(67,99,74);
    border-radius: 22px;
    z-index: -1;
}

.wrapper-template .company_overview .photo {
    position: relative;
    width: 45%;
    min-height: 600px;
    border-radius: 22px;
    background-blend-mode: multiply;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
}

.wrapper-template .company_overview .caption_holder {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 50px;
    background: rgb(67,99,74,0.5);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.wrapper-template .company_overview .caption_holder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: rgb(102,150,112);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.wrapper-template .company_overview .caption_holder::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: rgb(102,150,112);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.wrapper-template .company_overview .style_element {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgb(67,99,74);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.wrapper-template .company_overview .style_element::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgb(102,150,112,0.5);
    border-radius: 22px;
    z-index: -1;
}

.wrapper-template .company_overview h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.wrapper-template .company_overview h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(102,150,112);
    border-radius: 10px;
}

.wrapper-template .company_overview p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.wrapper-template .company_overview p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgb(102,150,112,0.5);
    border-radius: 50%;
}

@media only screen and (max-width: 800px) {
    .company_overview {
        padding: 40px 0;
    }
    .wrapper-template .company_overview .style_element {
        padding: 14px;
    }

    .wrapper-template .company_overview .holder {
        flex-direction: column;
        padding: 10px;
    }

    .wrapper-template .company_overview .photo {
        width: 100%;
        min-height: 300px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .wrapper-template .company_overview .caption_holder {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        margin: 12px 0;
    }

    .wrapper-template .company_overview h2 {
        font-size: 20px;
    }

    .wrapper-template .company_overview p {
        font-size: 14px;
    }
}.course_summary {
    padding: 100px 0;
    background: rgb(136,201,151);
    position: relative;
    overflow: hidden;
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgb(102,150,112), 0 0 30px rgb(102,150,112), 0 0 40px rgb(102,150,112), 0 0 50px rgb(102,150,112), 0 0 60px rgb(102,150,112);
    }
    50% {
        box-shadow: 0 0 10px rgb(102,150,112), 0 0 20px rgb(102,150,112), 0 0 30px rgb(102,150,112), 0 0 40px rgb(102,150,112);
    }
}

.course_summary h2 {
    color: rgb(102,150,112);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: neonGlow 1.5s infinite alternate;
}

.course_summary .content {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.course_summary h3 {
    color: #000000;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.course_summary p {
    color: #000000;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.course_summary .button {
    background: rgb(67,99,74);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 17px;
    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;
}

.course_summary .button:hover {
    background: rgb(102,150,112);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgb(102,150,112);
}

.course_summary .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-15deg);
    transition: left 0.5s;
}

.course_summary .button:hover::before {
    left: 125%;
}

.course_summary .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.course_summary .items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.course_summary .course {
    padding: 20px;
    max-width: 100%;
    flex: 1;
    margin: 0 10px;
}

.course_summary .photo {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.course_summary .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    mix-blend-mode: overlay;
}

.course_summary .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

@media only screen and (max-width: 800px) {
    .course_summary {
        padding: 60px 0;
    }
    .course_summary h2 {
        font-size: 35px;
    }
    .course_summary h3 {
        font-size: 20px;
    }
    .course_summary .course {
        max-width: 100%;
        width: 100%;
        padding: 10px;
    }
    .course_summary .items {
        flex-direction: column;
        padding: 0;
    }
    .course_summary .photo {
        height: 250px;
    }
}

.wrapper-template .course_summary .container {
    width: 100%;
    padding: 0;
}

.wrapper-template .course_summary .items {
    width: 100%;
}

.wrapper-template .course_summary .items .course {
    padding: 0;
    width: 100%;
}

.wrapper-template .course_summary .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 50% !important;
}

.wrapper-template .course_summary .course .content {
    border-radius: 0 !important;
    box-shadow: none;
    background: rgb(136,201,151);
}

.wrapper-template .course_summary .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
    background: none;
    padding: 20px;
}

.wrapper-template .course_summary p {
    margin-top: 20px;
    text-align: center;
}

.wrapper-template .course_summary .button {
    margin-top: 30px;
    width: fit-content;
}

.wrapper-template .course_summary h3 {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .course_summary h2 {
        font-size: 20px;
    }
    .course_summary h3 {
        font-size: 20px;
    }
    .course_summary .photo {
        height: 200px;
    }
    .wrapper-template .course_summary .course .content {
        padding: 20px;
    }
}
.learning_impact {
    position: relative;
    padding: 120px 0;
    background: rgb(67,99,74);
    overflow: hidden;
}

.learning_impact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, 
        rgb(67,99,74,0.5) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgb(67,99,74,0.5) 75%),
    linear-gradient(45deg, 
        rgb(67,99,74,0.5) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgb(67,99,74,0.5) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.1;
}

.learning_impact .container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 1;
}

.learning_impact .holder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    position: relative;
}

.learning_impact .photo {
    position: relative;
    height: 500px;
    border-radius: 29px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.learning_impact .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgb(67,99,74) 0%,
        transparent 20%,
        transparent 80%,
        rgb(67,99,74) 100%
    );
    z-index: 1;
}

.learning_impact .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgb(67,99,74) 100%
    );
    z-index: 1;
}

.learning_impact .text_holder {
    text-align: center;
    position: relative;
}

.learning_impact .text_holder h2 {
    font-size: 41px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 60px;
    display: inline-block;
    position: relative;
    padding: 0 30px;
}

.learning_impact .text_holder h2::before,
.learning_impact .text_holder h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: #ffffff;
    opacity: 0.3;
}

.learning_impact .text_holder h2::before {
    right: 100%;
}

.learning_impact .text_holder h2::after {
    left: 100%;
}

.learning_impact .text_holder ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.learning_impact .text_holder ul li {
    position: relative;
    padding: 40px 30px;
    background: #ffffff;
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.4s ease;
}

.learning_impact .text_holder ul li::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #ffffff;
    z-index: -1;
    clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
}

.learning_impact .text_holder ul li svg {
    width: 40px;
    height: 40px;
    fill: rgb(67,99,74);
    stroke: rgb(67,99,74);
    padding: 8px;
    background: rgb(136,201,151);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.learning_impact .text_holder ul li span {
    color: inherit;
    transition: all 0.3s ease;
}

.learning_impact .text_holder ul li:hover {
    transform: translateY(-10px);
    background: rgb(67,99,74);
}

.learning_impact .text_holder ul li:hover::before {
    background: rgb(136,201,151);
}

.learning_impact .text_holder ul li:hover span {
    color: #ffffff;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.3),
        1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3),
        1px 1px 0 rgba(0, 0, 0, 0.3);
}

.learning_impact .text_holder ul li:hover svg {
    background: #ffffff;
    transform: rotate(10deg);
}

@media (max-width: 1200px) {
    .learning_impact {
        padding: 100px 0;
    }

    .learning_impact .photo {
        height: 450px;
    }

    .learning_impact .text_holder ul li {
        padding: 35px 25px;
    }
}

@media (max-width: 991px) {
    .learning_impact .holder {
        gap: 60px;
    }

    .learning_impact .photo {
        height: 400px;
    }

    .learning_impact .text_holder ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .learning_impact {
        padding: 80px 0;
    }

    .learning_impact .holder {
        gap: 50px;
    }

    .learning_impact .photo {
        height: 350px;
    }

    .learning_impact .text_holder h2 {
        font-size: calc(41px * 0.9);
        margin-bottom: 40px;
    }

    .learning_impact .text_holder h2::before,
    .learning_impact .text_holder h2::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .learning_impact {
        padding: 60px 0;
    }

    .learning_impact .holder {
        gap: 40px;
    }

    .learning_impact .photo {
        height: 280px;
    }

    .learning_impact .text_holder ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .learning_impact .text_holder h2 {
        font-size: calc(41px * 0.8);
    }

    .learning_impact .text_holder h2::before,
    .learning_impact .text_holder h2::after {
        width: 40px;
    }

    .learning_impact .text_holder ul li {
        padding: 30px 20px;
    }
}.confidential_asylum {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    color: #000000;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.confidential_asylum h1 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 46px;
    font-weight: 700;
    color: rgb(102,150,112);
    border-bottom: 2px solid rgb(102,150,112);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.confidential_asylum h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 29px;
    font-weight: 600;
    color: rgb(67,99,74);
    border-bottom: 1px solid rgb(67,99,74);
    padding-bottom: 5px;
}

.confidential_asylum h3, .confidential_asylum h4, .confidential_asylum h5, .confidential_asylum h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 600;
    color: rgb(102,150,112);
}



.confidential_asylum li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.confidential_asylum section {
    background: rgb(136,201,151);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.confidential_asylum p, .confidential_asylum span, .confidential_asylum div {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
    font-weight: 300;
}

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

    .confidential_asylum h1 {
        font-size: calc(19px * 0.8);
    }

    .confidential_asylum h2 {
        font-size: calc(19px * 0.8);
    }

    .confidential_asylum h3, .confidential_asylum h4, .confidential_asylum h5, .confidential_asylum h6 {
        font-size: calc(19px * 0.8);
    }

    .confidential_asylum p, .confidential_asylum span, .confidential_asylum div {
        font-size: calc(14px * 0.9);
    }
}.thanksPanel {
    background-color: rgb(102,150,112,0.5);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.thanksPanel::before, .thanksPanel::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgb(102,150,112,0.5);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}
.thanksPanel::before {
    top: -50px;
    left: -50px;
}
.thanksPanel::after {
    bottom: -50px;
    right: -50px;
}
.thanksPanel .container {
    background-color: #ffffff;
    border-radius: 21px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.thanksPanel .container h2 {
    font-family: Arial, sans-serif;
    font-size: 45px;
    color: rgb(102,150,112);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid rgb(67,99,74);
    padding-bottom: 10px;
}
.thanksPanel .container p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
    text-align: center;
}
.thanksPanel .container .info-block {
    background-color: rgb(136,201,151);
    border: 1px solid rgb(67,99,74,0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.thanksPanel .container .info-block h5 {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid rgb(102,150,112,0.5);
    padding-bottom: 5px;
}
.thanksPanel .container .info-block p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #000000;
    margin-bottom: 0;
    text-align: left;
}
@media only screen and (max-width: 800px) {
    .thanksPanel {
        padding: 40px 10px;
    }
    .thanksPanel .container {
        padding: 30px 20px;
    }
    .thanksPanel .container h2 {
        font-size: calc(45px - 8px);
    }
    .thanksPanel .container p {
        font-size: calc(13px - 2px);
    }
    .thanksPanel::before, .thanksPanel::after {
        width: 70px;
        height: 70px;
    }
}
.academic_experience {
    padding-top: 80px;
    padding-bottom: 80px;
}

.academic_experience .review .name {
    color: rgb(67,99,74);
}

.academic_experience .review span {
    color: rgb(102,150,112);
}

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

.academic_experience .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.academic_experience .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.academic_experience .review .name {
    font-size: 19px;
    margin-bottom: 8px;
}

.academic_experience .review span {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 14px;
}

.academic_experience .review .quote {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .academic_experience .review {
        max-width: unset;
    }
}

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

    .academic_experience .review {
        max-width: unset;
        width: 100%;
    }

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

.wrapper-template .academic_experience {
    padding: 40px;
    background: rgb(102,150,112,0.5);
}

.wrapper-template .academic_experience .container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.wrapper-template .academic_experience .holder {
    background: #ffffff;
}

.wrapper-template .academic_experience .review {
    width: 100%;
    flex-direction: row-reverse;
    max-width: unset;
    padding: 0;
    align-items: center;
}

.wrapper-template .academic_experience .photo {
    height: 500px;
    width: 500px;
    max-width: unset;
    border-radius: 0 !important;
    margin: 0;
}

.wrapper-template .worker_description {
    width: calc(100% - 500px);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    padding-left: 60px;
}

.wrapper-template .academic_experience .review .name {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000000;
    text-align: left;
}

.wrapper-template .academic_experience .review span {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: left;
    color: #000000;
}

.wrapper-template .academic_experience .review .quote {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    font-style: normal;
}

@media only screen and (max-width: 1000px) {
    .wrapper-template .academic_experience .review {
        flex-direction: column;
    }

    .wrapper-template .worker_description {
        width: 100%;
    }

    .wrapper-template .academic_experience .photo {
        width: 100%;
        height: 320px;
    }

    .wrapper-template .academic_experience {
        padding: 20px;
    }

    .wrapper-template .academic_experience .review .name {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .wrapper-template .academic_experience .review span {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .wrapper-template .academic_experience .review .quote {
        font-size: 16px;
    }
}