* {
    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: Nunito, sans-serif;
    color: #000000;
}
.inner-container-5X {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(171,191,122);
}
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;
    }
}.contact-panel-Gx {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(126,140,90) 0%, rgb(126,140,90,0.5) 100%);
    position: relative;
    overflow: hidden;
}

.contact-panel-Gx::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgb(80,89,57);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(50px);
}

.contact-panel-Gx::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgb(80,89,57);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
}

.contact-panel-Gx h3 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.contact-panel-Gx .form {
    background: #ffffff;
    border-radius: 21px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.contact-panel-Gx form input,
.contact-panel-Gx form textarea {
    color: #000000;
    background: rgb(126,140,90,0.5);
    border-radius: 10px;
    border: 1px solid rgb(80,89,57,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.contact-panel-Gx form input:focus,
.contact-panel-Gx form textarea:focus {
    border-color: rgb(126,140,90);
    box-shadow: 0 0 10px rgb(126,140,90,0.5);
    outline: none;
}

.contact-panel-Gx form .button {
    background: rgb(126,140,90);
    color: #ffffff;
    border: none;
    border-radius: 21px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.contact-panel-Gx form .button:hover {
    background: rgb(80,89,57);
}

.contact-panel-Gx .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-panel-Gx .holder > div {
    width: 48%;
    padding: 10px;
}

.contact-panel-Gx .name_holder {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contact-panel-Gx .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-panel-Gx .agree label {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.contact-panel-Gx .agree a {
    color: rgb(126,140,90);
    margin-left: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-panel-Gx .agree a:hover {
    color: rgb(80,89,57);
}

.contact-panel-Gx .form_text {
    margin-bottom: 30px;
    font-size: 13px;
    text-align: center;
    color: #ffffff;
}

.contact-panel-Gx .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

@media only screen and (max-width: 800px) {
    .contact-panel-Gx {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-panel-Gx .holder {
        flex-direction: column;
    }

    .contact-panel-Gx .holder > div {
        width: 100%;
    }

    .contact-panel-Gx form .button {
        width: 100%;
    }

    .contact-panel-Gx h3 {
        font-size: 33px;
    }
}

.inner-container-5X .contact-panel-Gx {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.inner-container-5X .contact-panel-Gx .form {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 21px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.inner-container-5X .contact-panel-Gx .holder {
    justify-content: center;
    position: relative;
}


.inner-container-5X .contact-panel-Gx .form_text {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 13px;
    color: #000000;
}

.inner-container-5X .contact-panel-Gx h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 33px;
    font-weight: 700;
    color: #000000;
}

.inner-container-5X .contact-panel-Gx .agree a {
    text-decoration: none;
    color: rgb(126,140,90);
}

.inner-container-5X .contact-panel-Gx form .button {
    background: rgb(126,140,90);
    border: none;
    font-size: 18px;
    font-weight: 600;
    width: auto;
    margin: 20px auto 0;
    display: block;
    text-align: center;
}.our-team-1t .holder {
    background-size: cover;
}

.our-team-1t .style_element {
    background: #ffffff;
}

.our-team-1t {
    padding-bottom: 80px;
    padding-top: 80px;
}

.our-team-1t h2 {
    color: rgb(80,89,57);
}

.our-team-1t span {
    color: rgb(126,140,90);
}

.our-team-1t p {
    color: #000000;
}

.our-team-1t .holder {
    display: flex;
    justify-content: flex-end;
    padding: 40px;
    height: auto;
}

.our-team-1t .style_element {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    min-width: 400px;
    padding: 20px;
}

.our-team-1t .caption_holder {
    display: flex;
    justify-content: flex-end;
}

.our-team-1t h2 {
    margin-bottom: 8px;
    font-size: 37px;
    font-weight: 600;
}

.our-team-1t span {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.our-team-1t p {
    font-size: 17px;
    font-weight: 300;
}

@media only screen and (max-width: 600px) {
    .our-team-1t .holder {
        padding: 0px;
    }

    .our-team-1t .style_element {
        width: 100%;
        min-width: unset;
    }

    .our-team-1t {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .our-team-1t h2 {
        font-size: 30px;
    }
}

.inner-container-5X .our-team-1t {
    background: #ffffff;
    padding: 60px 0;
}

.inner-container-5X .our-team-1t .holder {
    padding: 0;
    height: auto;
}

.inner-container-5X .our-team-1t .holder .photo {
    width: calc(45% - 20px);
    min-height: 300px;
    position: relative;
    z-index: 1;

}

.inner-container-5X .our-team-1t .caption_holder::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 70px;
    background: rgb(126,140,90);
    width: calc(45% - 65px);
    height: 300px;
    z-index: 0;
}

.inner-container-5X .our-team-1t .caption_holder {
    display: flex;
    padding: 50px;
    background: rgb(171,191,122);
    position: relative;
    justify-content: space-between;
}

.inner-container-5X .our-team-1t .style_element {
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
}

.inner-container-5X .our-team-1t h2 {
    font-size: 46px;
    padding-top: 20px;
    border-top: 10px solid rgb(126,140,90);
    margin-bottom: 25px;
}

@media only screen and (max-width: 800px) {
    .inner-container-5X .our-team-1t .caption_holder {
        flex-direction: column;
        padding: 30px;
    }

    .inner-container-5X .our-team-1t .holder .photo {
        width: 100%;
        margin-bottom: 30px;
    }

    .inner-container-5X .our-team-1t .caption_holder::before {
        width: calc(100% - 60px);
        top: 45px;
        left: 45px;
    }

    .inner-container-5X .our-team-1t .style_element {
        width: 100%;
    }

    .inner-container-5X .our-team-1t h2 {
        font-size: 30px;
    }
}.program-details-X9 {
    padding-top: 90px;
    padding-bottom: 90px;
    font-family: Nunito, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.program-details-X9 h2 {
    color: rgb(126,140,90);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.program-details-X9 .content {
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #ffffff;
}
.program-details-X9 .content:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}
.program-details-X9 h3 {
    color: rgb(80,89,57);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}
.program-details-X9 p {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
}
.program-details-X9 .button {
    background: rgb(126,140,90);
    color: #ffffff;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}
.program-details-X9 .button:hover {
    background: rgb(80,89,57);
    transform: translateY(-5px);
}
.program-details-X9 .holder {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.program-details-X9 .items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.program-details-X9 .course {
    padding: 20px;
    margin-bottom: 40px;
}
.program-details-X9 .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
}
.program-details-X9 .text_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}
.program-details-X9 .photo {
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 11px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
@media only screen and (max-width: 800px) {
    .program-details-X9 .items {
        flex-direction: column;
    }
    .program-details-X9 h2 {
        font-size: 23px;
    }
    .program-details-X9 h3 {
        font-size: 16px;
    }
    .program-details-X9 .course {
        max-width: 100%;
        flex-basis: 100%;
        padding: 0;
    }
    .program-details-X9 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .inner-container-5X .program-details-X9 .content {
        padding: 10px;
    }
}
.inner-container-5X .program-details-X9 {
    position: relative;
    overflow: hidden;
    background: rgb(171,191,122);
}
.inner-container-5X .program-details-X9 .items {
    width: 100%;
}
.inner-container-5X .program-details-X9 .content {
    border-radius: 10px;
    box-shadow: none;
}
.inner-container-5X .program-details-X9 .text_holder {
    position: relative;
    z-index: 3;
    background: none;
    width: 100%;
    min-height: unset;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: #000000;
    border: none;
}
.inner-container-5X .program-details-X9 h3 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(80,89,57);
    margin: 0;
}
.inner-container-5X .program-details-X9 p {
    padding: 0 40px 0 0;
    margin-top: 20px;
    font-size: 13px;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
}
.inner-container-5X .program-details-X9 .button {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    background: rgb(126,140,90);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.inner-container-5X .program-details-X9 .button:hover {
    background: rgb(80,89,57);
    transform: translateY(-5px);
}
@media only screen and (max-width: 800px) {
    .inner-container-5X .program-details-X9 .text_holder {
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .inner-container-5X .program-details-X9 p {
        padding: 0;
        font-size: 13px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .inner-container-5X .program-details-X9 h3 {
        font-size: 16px;
    }
    .inner-container-5X .program-details-X9 .button {
        margin-top: 20px;
    }
}footer {
    background: rgb(80,89,57);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
footer .footer {
    padding: 70px 0;
    background: rgb(80,89,57,0.5);
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}
footer .menu_holder {
    display: flex;
    flex-direction: column;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 5px;
    transition: color 0.3s;
}
footer .menu a:hover {
    color: rgb(126,140,90);
}
footer .copyright {
    background: rgb(126,140,90);
    padding: 25px 0;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
footer .copyright_info {
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s;
}
footer .copyright_info a:hover {
    color: rgb(80,89,57);
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .logo_holder {
        margin-bottom: 20px;
    }
    footer .menu_holder {
        flex-direction: column;
        width: 100%;
    }
    footer .menu a {
        font-size: 18px;
        margin-right: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
        width: 100%;
        text-align: left;
    }
    footer .copyright_info {
        text-align: center;
    }
}
.inner-container-5X footer .footer {
    padding: 50px 0;
    background: rgb(171,191,122);
    border-top: 5px solid rgb(126,140,90);
}
.inner-container-5X footer .footer_info {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}
.inner-container-5X footer .menu_holder {
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
}
.inner-container-5X footer .menu a {
    padding: 0 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    font-size: 20px;
    color: #ffffff;
}
.inner-container-5X footer .menu a:last-child {
    border-right: none;
}
.inner-container-5X footer .copyright {
    background: rgb(126,140,90,0.5);
    padding: 10px 0;
}
.inner-container-5X footer .copyright_info {
    text-align: right;
    font-weight: 600;
}
@media only screen and (max-width: 1200px) {
    .inner-container-5X footer .footer_info {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    .inner-container-5X footer .menu_holder {
        justify-content: center;
    }
}
@media only screen and (max-width: 800px) {
    .inner-container-5X footer .menu_holder {
        flex-direction: column;
        align-items: center;
    }
    .inner-container-5X footer .menu a {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
    .inner-container-5X footer .menu a:last-child {
        border-bottom: none;
    }
    .inner-container-5X footer .footer_info {
        padding: 20px 10px;
    }
    .inner-container-5X footer .copyright_info {
        text-align: center;
    }
}.title-page-Gz {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}
.title-page-Gz .title_page_holder {
    width: 100%;
    min-height: 700px;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.title-page-Gz .title_page_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(126,140,90,0.5), rgb(80,89,57,0.5));
    z-index: 1;
    backdrop-filter: blur(5px);
}
.title-page-Gz .style_element {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 60px;
    border-radius: 17px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.title-page-Gz .style_element h1 {
    font-family: Nunito, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: rgb(126,140,90);
    margin-bottom: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.title-page-Gz .style_element h3 {
    font-family: Nunito, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: rgb(80,89,57);
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.title-page-Gz .style_element p {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {
    .title-page-Gz .title_page_holder {
        min-height: 400px;
    }
    .title-page-Gz .style_element {
        padding: 20px 30px;
    }
    .title-page-Gz .style_element h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .title-page-Gz .style_element h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }
    .title-page-Gz .style_element p {
        font-size: 18px;
    }
}
.inner-container-5X .title-page-Gz {
    position: relative;
    background: rgb(171,191,122);
}
.inner-container-5X .title-page-Gz .title_page_holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(131, 162, 234, 0.2);
    z-index: 0;
    backdrop-filter: blur(6px);
}
.inner-container-5X .title-page-Gz .style_element {
    position: relative;
    clip-path: none;
    margin: auto;
    height: auto;
    background: #ffffff;
    display: flex;
    padding: 30px 60px;
    flex-direction: column;
    min-height: 336px;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 50%;
}
.inner-container-5X .title-page-Gz .title_page_holder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-container-5X .title-page-Gz .style_element h1 {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: rgb(126,140,90);
    margin-top: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.inner-container-5X .title-page-Gz .style_element h3 {
    color: rgb(80,89,57);
    text-align: center;
    z-index: 2;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.inner-container-5X .title-page-Gz .style_element p {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 22px;
    line-height: 32px;
    color: #000000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 800px) {
    .inner-container-5X .title-page-Gz .title_page_holder {
        padding: 20px;
    }
    .inner-container-5X .title-page-Gz .style_element h1 {
        font-size: 28px;
        margin-top: 20px;
    }
    .inner-container-5X .title-page-Gz .style_element {
        padding: 30px 10px;
        min-height: 300px;
        height: auto;
        width: auto;
    }
}.location-info-m3 {
    color: #000000;
    background-color: rgb(171,191,122);
    padding: 80px 0;
    font-family: Nunito, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-info-m3 .contact_holder {
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, rgba(0, 0, 0, 0.5));
    width: 80%;
    margin: auto;
    max-width: 1200px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}
.location-info-m3 .holder .info_holder div.time-of-operation-0l {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.location-info-m3 .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.location-info-m3 .holder .info_holder > div > div {
    margin: 5px 0;
}
.location-info-m3 .contact_holder:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgb(126,140,90);
    border-radius: 14px 14px 0 0;
}
.location-info-m3 .holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.location-info-m3 .holder .contact_description {
    width: 100%;
    margin-bottom: 40px;
    font-size: 12px;
}
.location-info-m3 .holder .photo {
    width: 45%;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, rgba(0, 0, 0, 0.5));
}
.location-info-m3 .holder .info_holder {
    width: 55%;
    padding: 30px;
}
.location-info-m3 .holder .info_holder>div span {
    margin-left: 8px;
}
.location-info-m3 .holder .info_holder > div {
    margin-bottom: 15px;
    font-size: 12px;
}
.location-info-m3 .holder .info_holder > div a {
    color: rgb(126,140,90);
    text-decoration: none;
    transition: color 0.3s ease;
}
.location-info-m3 .holder .info_holder > div a:hover {
    color: rgb(80,89,57);
}
.location-info-m3 .contact_politics {
    margin-top: 40px;
    font-size: 12px;
}
.location-info-m3 .contact_politics > div {
    margin-bottom: 10px;
}
.location-info-m3 .contact_politics > div h4 {
    font-weight: 700;
    margin-bottom: 5px;
}
.location-info-m3 .info_holder svg {
    width: 25px;
    height: 25px;
    fill: rgb(126,140,90);
    margin-right: 10px;
}
.location-info-m3 h2 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
@media only screen and (max-width: 800px) {
    .location-info-m3 .contact_holder {
        width: 100%;
    }
    .location-info-m3 .holder .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    .location-info-m3 .holder .info_holder {
        width: 100%;
    }
}
.study-method-j8 {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(126,140,90,0.5) 0%, rgb(80,89,57,0.5) 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.study-method-j8::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgb(80,89,57,0.5) 10%, transparent 90%);
    transform: rotate(30deg);
    z-index: 0;
}

.study-method-j8 .container {
    position: relative;
    z-index: 1;
}

.study-method-j8 .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    text-align: center;
}

.study-method-j8 h2 {
    margin-bottom: 30px;
    font-size: 33px;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    color: rgb(126,140,90);
    position: relative;
}

.study-method-j8 h2::after {
    content: "";
    width: 50px;
    height: 5px;
    background: rgb(126,140,90);
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

.study-method-j8 p {
    font-size: 16px;
    font-family: Nunito, sans-serif;
    font-weight: 300;
    color: #000000;
    margin: 0 auto;
    line-height: 1.6;
}

@media only screen and (max-width: 800px) {
    .study-method-j8 {
        padding: 50px 0;
    }

    .study-method-j8 .holder {
        width: 90%;
        padding: 20px;
    }

    .study-method-j8 h2 {
        font-size: 21px;
    }

    .study-method-j8 p {
        font-size: 16px;
    }
}

.inner-container-5X .study-method-j8 .holder {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.inner-container-5X .study-method-j8 h2 {
    font-size: 44px;
    font-weight: 600;
    margin: 0;
    color: rgb(80,89,57);
}

.inner-container-5X .study-method-j8 h2::after {
    width: 100px;
    height: 4px;
    background: rgb(80,89,57);
    margin: 15px 0;
}

.inner-container-5X .study-method-j8 p {
    font-size: 16px;
    color: rgb(80,89,57);
}

@media only screen and (max-width: 800px) {
    .inner-container-5X .study-method-j8 {
        padding: 0;
    }

    .inner-container-5X .study-method-j8 .holder {
        width: 100%;
        padding: 20px;
    }

    .inner-container-5X .study-method-j8 h2 {
        font-size: 21px;
    }
}
.sign-up-for-updates-Jg {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.sign-up-for-updates-Jg .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sign-up-for-updates-Jg input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(80,89,57,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.sign-up-for-updates-Jg h2 {
    margin-bottom: 20px;
    text-align: center;
}

.sign-up-for-updates-Jg .button {
    background: rgb(80,89,57);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.sign-up-for-updates-Jg .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .sign-up-for-updates-Jg .holder {
        flex-direction: column;
    }

    .sign-up-for-updates-Jg {
        padding: 30px 20px;
    }

    .sign-up-for-updates-Jg input {
        min-width: unset;
    }

    .sign-up-for-updates-Jg .button {
        flex-shrink: unset;
    }

    .sign-up-for-updates-Jg .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .sign-up-for-updates-Jg input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .inner-container-5X .sign-up-for-updates-Jg .holder h2 {
        font-size: 20px;
    }
}

.inner-container-5X .sign-up-for-updates-Jg {
    position: relative;
    background: radial-gradient(circle, rgb(126,140,90) 0%, rgb(80,89,57) 100%);
    padding: 100px 40px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;

}


.inner-container-5X .sign-up-for-updates-Jg::before {
    content: "";
    display: block;
    width: 300%;
    height: 300%;
    background: rgb(126,140,90,0.5);
    position: absolute;
    top: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
    animation: pulse 20s infinite alternate;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.inner-container-5X .sign-up-for-updates-Jg .container {
    position: relative;
    z-index: 1;
}

.inner-container-5X .sign-up-for-updates-Jg .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 60px 50px;
    border-radius: 100px;
    backdrop-filter: blur(20px);
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.inner-container-5X .sign-up-for-updates-Jg h2 {
    color: #000000;
    font-size: 35px;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inner-container-5X .sign-up-for-updates-Jg .input_holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.inner-container-5X .sign-up-for-updates-Jg input[type="email"] {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid rgb(80,89,57,0.5);
    border-radius: 30px;
    background: #ffffff;
    color: #000000;
    font-family: Nunito, sans-serif;
    font-size: 18px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.inner-container-5X .sign-up-for-updates-Jg input[type="email"]:focus {
    border-color: rgb(126,140,90);
    box-shadow: 0 0 15px rgb(126,140,90,0.5);
    transform: scale(1.05);
}

.inner-container-5X .sign-up-for-updates-Jg .subscribe_button {
    background: rgb(80,89,57);
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-family: Nunito, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.inner-container-5X .sign-up-for-updates-Jg .subscribe_button:hover {
    background: #000000;
    transform: translateY(-3px);
}

@media only screen and (max-width: 800px) {
    .inner-container-5X .sign-up-for-updates-Jg {
        padding: 40px 20px;
    }

    .inner-container-5X .sign-up-for-updates-Jg .holder {
        padding: 40px;
    }

    .inner-container-5X .sign-up-for-updates-Jg .input_holder {
        flex-direction: column;
    }

    .inner-container-5X .sign-up-for-updates-Jg h2 {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .inner-container-5X .sign-up-for-updates-Jg input {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
    }
}
.benefits-summary-lp .advantages_content h2 {
    color: rgb(80,89,57);
}

.benefits-summary-lp .advantage_item svg, .benefits-summary-lp .advantage_item svg path {
    fill: rgb(126,140,90);
}

.benefits-summary-lp .advantage_item p {
    color: #000000;
}

.benefits-summary-lp .advantage_item b {
    color: rgb(126,140,90);
}

.benefits-summary-lp {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits-summary-lp .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits-summary-lp .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits-summary-lp .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    font-weight: 600;
}

.benefits-summary-lp .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits-summary-lp .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits-summary-lp .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits-summary-lp .advantage_item svg, .benefits-summary-lp .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .inner-container-5X .benefits-summary-lp .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
        justify-content: center;
    }
}

@media only screen and (max-width: 800px) {
    .benefits-summary-lp .advantages_content h2 {
        font-size: 30px;
    }

    .benefits-summary-lp .advantages_holder {
        flex-direction: column;
    }

    .benefits-summary-lp {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .inner-container-5X .benefits-summary-lp .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.inner-container-5X .benefits-summary-lp .advantages_content h2 {
    font-size: 32px;
    font-weight: 600;
    color: rgb(80,89,57);
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, rgb(126,140,90), rgb(80,89,57));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: #ffffff -2px -2px;
}

.inner-container-5X .benefits-summary-lp {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(171,191,122);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(126,140,90,0.5) 100%);
}

.inner-container-5X .benefits-summary-lp .advantages_content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.inner-container-5X .benefits-summary-lp .advantages_description {
    font-size: 17px;
    margin-bottom: 30px;
    color: #000000;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 17px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.inner-container-5X .benefits-summary-lp .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1%;
}

.inner-container-5X .benefits-summary-lp .advantage_item {
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    transition: all 0.3s ease-in-out;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 23%;
    text-align: center;
}

.inner-container-5X .benefits-summary-lp .advantage_item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.inner-container-5X .benefits-summary-lp .advantage_image img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid rgb(126,140,90);
    padding: 10px;
    background: rgb(126,140,90,0.5);
}

.inner-container-5X .benefits-summary-lp .advantage_item h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
    .inner-container-5X .benefits-summary-lp .advantage_item {
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .inner-container-5X .benefits-summary-lp .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .inner-container-5X .benefits-summary-lp .advantage_item {
        width: 80%;
        margin-bottom: 20px;
    }

    .inner-container-5X .benefits-summary-lp .advantages_content h2 {
        font-size: 28px;
    }

    .inner-container-5X .benefits-summary-lp {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}.ty-sidebar-J9 {
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(126,140,90) 0%, rgb(80,89,57) 100%); 
    padding: 40px;
    overflow: hidden;
    box-sizing: border-box;
}
.ty-sidebar-J9 .container {
    background: rgb(126,140,90,0.5); 
    padding: 40px 30px;
    border-radius: 12px; 
    width: 100%;
    max-width: 800px; 
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); 
    text-align: left; 
    box-sizing: border-box;
}
.ty-sidebar-J9 h2 {
    margin-bottom: 20px;
    font-size: 34px;
    color: #ffffff;
    font-family: Nunito, sans-serif;
    font-weight: 700; 
    border-bottom: 3px solid rgb(80,89,57); 
    display: inline-block; 
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.ty-sidebar-J9 p {
    font-size: 16px;
    color: #ffffff; 
    font-family: Nunito, sans-serif;
    font-weight: 300; 
    line-height: 1.8; 
    margin: 0;
}
@media only screen and (max-width: 800px) {
    .ty-sidebar-J9 {
        padding: 20px;
    }
    .ty-sidebar-J9 .container {
        padding: 30px 20px; 
    }
    .ty-sidebar-J9 h2 {
        font-size: 21px; 
    }
}
.offer-selection-YI {
    position: relative;
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.offer-selection-YI .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.offer-selection-YI::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgb(126,140,90,0.5), transparent 70%),
        radial-gradient(circle at 70% 30%, rgb(80,89,57,0.5), transparent 50%);
    z-index: 2;
}

.price_holder {
    position: relative;
    z-index: 3;
}

.offer-selection-YI .price_holder h2 {
    font-size: calc(46px * 1.2);
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.offer-selection-YI .price_holder h2::before,
.offer-selection-YI .price_holder h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: rgb(126,140,90);
}

.offer-selection-YI .price_holder h2::before {
    left: -70px;
}

.offer-selection-YI .price_holder h2::after {
    right: -70px;
}

.offer-selection-YI .price_section_description {
    font-size: calc(16px * 1.1);
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 26px;
}

.offer-selection-YI .price_cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
}

.offer-selection-YI .price_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    min-width: 250px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.offer-selection-YI .price_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(126,140,90,0.5), rgb(80,89,57,0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offer-selection-YI .price_card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offer-selection-YI .price_card:hover::before {
    opacity: 0.2;
}

.offer-selection-YI .price_card > * {
    position: relative;
    z-index: 1;
}

.offer-selection-YI .price_card h3 {
    font-size: 23px;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.offer-selection-YI .price_card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgb(126,140,90);
    transition: width 0.3s ease;
}

.offer-selection-YI .price_card:hover h3::after {
    width: 80px;
}

.offer-selection-YI .price_amount {
    font-size: calc(29px * 1.2);
    color: #ffffff;
    font-weight: 700;
    margin: 20px 0;
    display: block;
    text-align: center;
    text-shadow: 0 0 10px rgb(126,140,90,0.5);
}

.offer-selection-YI .price_card p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: center;
}

.offer-selection-YI .price_card .button {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 12px 25px;
    background: rgb(126,140,90);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.offer-selection-YI .price_card .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.offer-selection-YI .price_card .button:hover::before {
    left: 100%;
}

.offer-selection-YI .price_card .button:hover {
    background: rgb(80,89,57);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .offer-selection-YI .price_card {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 992px) {
    .offer-selection-YI .price_cards {
        flex-wrap: wrap;
    }

    .offer-selection-YI .price_card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .offer-selection-YI {
        padding: 80px 0;
    }

    .offer-selection-YI .price_holder h2 {
        font-size: calc(29px * 1.1);
    }

    .offer-selection-YI .price_holder h2::before,
    .offer-selection-YI .price_holder h2::after {
        width: 30px;
    }

    .offer-selection-YI .price_holder h2::before {
        left: -40px;
    }

    .offer-selection-YI .price_holder h2::after {
        right: -40px;
    }

    .offer-selection-YI .price_section_description {
        font-size: 16px;
        padding: 15px;
    }

    .offer-selection-YI .price_card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .offer-selection-YI {
        padding: 60px 0;
    }

    .offer-selection-YI .price_holder h2 {
        font-size: 29px;
    }

    .offer-selection-YI .price_holder h2::before,
    .offer-selection-YI .price_holder h2::after {
        display: none;
    }

    .offer-selection-YI .price_section_description {
        font-size: calc(16px * 0.9);
    }

    .offer-selection-YI .price_card {
        padding: 30px;
    }
}.client-opinions-er {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(171,191,122);
}

.client-opinions-er .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.client-opinions-er .holder {
    text-align: center;
    margin-bottom: 50px;
}

.client-opinions-er .holder h2 {
    font-size: 45px;
    font-weight: 700;
    color: rgb(80,89,57);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-opinions-er .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.client-opinions-er .review {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 29px;
    padding: 30px;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.client-opinions-er .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.client-opinions-er .photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-opinions-er .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-opinions-er .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgb(126,140,90);
    border-radius: 50%;
    transition: border 0.3s ease;
    z-index: 2;
}

.client-opinions-er .review:hover .photo::after {
    border-color: rgb(80,89,57);
}

.client-opinions-er .text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.client-opinions-er .review span {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
}

.client-opinions-er .review p {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .client-opinions-er .reviews {
        flex-direction: column;
        align-items: center;
    }

    .client-opinions-er .review {
        max-width: 100%;
    }

    .client-opinions-er {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .client-opinions-er .holder h2 {
        font-size: 31px;
    }
}

.inner-container-5X .client-opinions-er .review {
    background: rgb(126,140,90,0.5);
    border-radius: 10px;
}

.inner-container-5X .client-opinions-er .photo {
    width: 140px;
    height: 140px;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 0 15px rgb(126,140,90,0.5);
}

.inner-container-5X .client-opinions-er .photo::before {
    content: "";
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: -15px;
    left: -15px;
    border: 8px solid rgb(80,89,57,0.5);
    border-radius: 50%;
    z-index: 1;
}

.inner-container-5X .client-opinions-er .review span {
    font-size: 22px;
    font-weight: 700;
    color: rgb(80,89,57);
    margin-top: 20px;
}

.inner-container-5X .client-opinions-er .review p {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    line-height: 1.8;
}

.inner-container-5X .client-opinions-er .holder h2 {
    font-size: 31px;
    font-weight: 400;
    color: #000000;
}
header .main_header {
    background: rgb(126,140,90,0.5);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .logo_holder svg,
header .logo_holder svg path,
header .logo_holder img {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

header .menu a {
    color: #ffffff;
    font-family: Nunito, sans-serif;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

header .menu a.active {
    border-bottom: 2px solid rgb(80,89,57);
    color: rgb(80,89,57);
}

header .menu a.active:hover {
    background: rgb(80,89,57,0.5);
    color: #ffffff;
}

header {
    width: 100%;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    background: rgb(80,89,57);
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header .logo_holder {
    display: flex;
    align-items: center;
}

header .logotype svg,
header .logotype img {
    height: 60px;
    width: 60px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

header .logotype:hover svg,
header .logotype:hover img {
    transform: scale(1.1);
}

header .menu {
    display: flex;
    gap: 20px;
}

body .inner-container-5X header .opened {
    display: flex;
}

@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }

    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 20px;
        z-index: 90;
        background: rgb(126,140,90);
        width: 100%;
    }

    header .menu a {
        width: 100%;
        text-align: center;
    }

    header .menu a.active {
        border: none;
    }

    header .main_header {
        position: relative;
        z-index: 99;
    }

    header .logo_holder {
        width: 100%;
        justify-content: space-between;
    }

    header .logotype svg,
    header .logotype img {
        height: 50px;
        width: 50px;
    }

    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.inner-container-5X header .header_content {
    flex-direction: row-reverse;
    justify-content: space-around;
}

.inner-container-5X header .logo_holder {
    justify-content: space-between;
}

.inner-container-5X header .logo_holder .logotype svg,
.inner-container-5X header .logo_holder .logotype img {
    margin-right: 0;
}

.inner-container-5X .menu {
    min-width: 50%;
    justify-content: flex-start;
}

.inner-container-5X header .menu a {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 20px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.inner-container-5X header .logo_caption {
    max-width: 48%;
    align-items: end;
}

.inner-container-5X header .logo_name {
    text-align: right;
}

@media only screen and (max-width: 1200px) {
    .inner-container-5X header .header_content {
        flex-direction: column;
        justify-content: flex-start;
    }

    .inner-container-5X header .logo_holder {
        width: 100%;
        justify-content: center;
    }

    .inner-container-5X header .logo_holder {
        margin: 0;
    }

    .inner-container-5X header .menu {
        width: 100%;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .inner-container-5X header .menu a {
        margin-right: 0;
    }
    .inner-container-5X header .logo_name {
        line-height: 28px;
        margin-bottom: 6px;
        text-align: center;
    }

    .inner-container-5X header .logo_caption {
        max-width: unset;
    }
}

header .logo_caption .logo_desc {
    font-size: 20px;
    font-weight: 300;
    color: rgb(80,89,57,0.5);
}

header .logo_caption .logo_name {
    font-size: 42px;
    font-weight: 700;
}
.future-attendees-fO {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: Nunito, sans-serif;
}

.future-attendees-fO .who_needs_background {
    position: relative;
    padding: 120px 0;
    isolation: isolate;
}

.future-attendees-fO .who_needs_background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%,
        rgb(126,140,90,0.5) 100%);
    z-index: 1;
}

.future-attendees-fO .who_needs_text {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
}

.future-attendees-fO .who_needs_text h3 {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 40px;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInLeft 0.8s forwards;
}

.future-attendees-fO .who_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.future-attendees-fO .who_needs_item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
}

.future-attendees-fO .who_needs_item svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: rgb(80,89,57);
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .future-attendees-fO .who_needs_background {
        padding: 80px 0;
    }

    .future-attendees-fO .who_needs_text h3 {
        font-size: calc(33px * 0.9);
        text-align: center;
        margin-bottom: 30px;
    }

    .future-attendees-fO .who_items {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .future-attendees-fO .who_needs_background {
        padding: 60px 0;
    }

    .future-attendees-fO .who_needs_text h3 {
        font-size: calc(33px * 0.8);
        margin-bottom: 25px;
    }

    .future-attendees-fO .who_items {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }

    .future-attendees-fO .who_needs_item {
        padding: 15px;
        font-size: calc(16px * 0.9);
    }
}

@media (max-width: 480px) {
    .future-attendees-fO .who_needs_background {
        padding: 40px 0;
    }

    .future-attendees-fO .who_needs_text h3 {
        font-size: calc(33px * 0.7);
        margin-bottom: 20px;
    }

    .future-attendees-fO .who_needs_item {
        padding: 12px;
        font-size: calc(16px * 0.85);
    }

    .future-attendees-fO .who_needs_item svg {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}.secure-pantry-za {
    padding: 50px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background: #ffffff;
    border: 2px solid rgb(126,140,90);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.secure-pantry-za h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 46px;
    color: rgb(126,140,90);
    font-weight: 700;
    border-bottom: 3px solid rgb(80,89,57);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

.secure-pantry-za h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 37px;
    color: rgb(80,89,57);
    font-weight: 600;
    border-bottom: 2px solid rgb(126,140,90);
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
}

.secure-pantry-za ul, .secure-pantry-za ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
    text-align: left;
    font-family: Nunito, sans-serif;
    font-size: 12px;
    color: #000000;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

.secure-pantry-za li {
    padding: 10px 0;
    border-bottom: 1px solid rgb(80,89,57,0.5);
}

.secure-pantry-za section {
    background: none;
}

.secure-pantry-za p, .secure-pantry-za span, .secure-pantry-za div {
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: Nunito, sans-serif;
    color: #000000;
    font-size: 12px;
    text-align: left;
    width: 100%;
}

@media only screen and (max-width: 800px) {
    .secure-pantry-za {
        padding: 30px;
        border-radius: 10px;
    }

    .secure-pantry-za h1 {
        font-size: calc(22px - 5px);
    }

    .secure-pantry-za h2 {
        font-size: calc(22px - 3px);
    }

    .secure-pantry-za ul, .secure-pantry-za ol {
        margin: 15px 0;
    }

    .secure-pantry-za li {
        padding: 8px 0;
    }

    .secure-pantry-za p, .secure-pantry-za span, .secure-pantry-za div {
        margin-bottom: 15px;
    }
}