* {
    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: Playfair Display, sans-serif;
    color: #000000;
}
.wrapper-skeleton-2645 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(239,247,211);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.user-testimonials-4396 {
    background: rgb(239,247,211);
    padding: 80px 0;
    border-top: 4px solid rgb(167,185,158);
    border-bottom: 4px solid rgb(167,185,158);
    position: relative;
    overflow: hidden;
}

.user-testimonials-4396::before,
.user-testimonials-4396::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgb(167,185,158,0.5) 8%, transparent 8%);
    background-size: 30px 30px;
    animation: backgroundMove 60s linear infinite;
    z-index: 0;
}

.user-testimonials-4396::after {
    background-size: 20px 20px;
    animation-duration: 40s;
    opacity: 0.5;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.user-testimonials-4396 h3 {
    font-size: clamp(24px, 5vw, 30px);
    color: rgb(167,185,158);
    font-weight: 700;
    text-align: center;
    margin: 0 0 50px 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.user-testimonials-4396 h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(167,185,158), transparent);
}

.user-testimonials-4396 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.user-testimonials-4396 .reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 20px;
    perspective: 1000px;
}

.user-testimonials-4396 .reviews .review {
    flex: 1 1 calc(33.333% - 40px);
    max-width: 320px;
    border-radius: 28px;
    background: #ffffff;
    border: 2px solid rgb(167,185,158,0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.user-testimonials-4396 .reviews .review:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.5);
    border-color: rgb(167,185,158);
}

.user-testimonials-4396 .reviews .photo {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid rgb(167,185,158);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.user-testimonials-4396 .reviews .photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-testimonials-4396 .reviews .review:hover .photo::before {
    opacity: 1;
}

.user-testimonials-4396 .reviews .text {
    padding: 25px 20px 35px;
    text-align: center;
    background: #ffffff;
    position: relative;
    transition: transform 0.3s ease;
}

.user-testimonials-4396 .reviews .text::before,
.user-testimonials-4396 .reviews .text::after {
    content: "\201C";
    font-size: 60px;
    color: rgb(167,185,158,0.5);
    position: absolute;
    z-index: 0;
    transition: all 0.3s ease;
}

.user-testimonials-4396 .reviews .text::before {
    top: 10px;
    left: 10px;
}

.user-testimonials-4396 .reviews .text::after {
    bottom: -10px;
    right: 10px;
    transform: rotate(180deg);
}

.user-testimonials-4396 .reviews .review:hover .text::before {
    transform: translateY(-5px) rotate(-10deg);
}

.user-testimonials-4396 .reviews .review:hover .text::after {
    transform: translateY(5px) rotate(170deg);
}

.user-testimonials-4396 .reviews .text p {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.user-testimonials-4396 .reviews .text span {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.user-testimonials-4396 .reviews .review:hover .text p {
    transform: translateZ(20px);
}

.user-testimonials-4396 .reviews .review:hover .text span {
    transform: translateZ(15px);
}

@media only screen and (max-width: 1200px) {
    .user-testimonials-4396 .reviews {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 20px;
    }
    .user-testimonials-4396 .reviews .review {
        flex: 1 1 calc(50% - 40px);
        max-width: 600px;
    }
}

@media only screen and (max-width: 768px) {
    .user-testimonials-4396 {
        padding: 60px 0;
    }
    .user-testimonials-4396 h3 {
        margin-bottom: 30px;
    }
    .user-testimonials-4396 .reviews {
        gap: 20px;
    }
    .user-testimonials-4396 .reviews .review {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .user-testimonials-4396 .reviews .photo {
        height: 150px;
    }
    .user-testimonials-4396 .reviews .text {
        padding: 20px 15px 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .user-testimonials-4396::before,
    .user-testimonials-4396::after {
        animation: none;
    }
    .user-testimonials-4396 .reviews .review,
    .user-testimonials-4396 .reviews .text::before,
    .user-testimonials-4396 .reviews .text::after,
    .user-testimonials-4396 .reviews .text p,
    .user-testimonials-4396 .reviews .text span {
        transition: none;
    }
    .user-testimonials-4396 .reviews .review:hover {
        transform: none;
        box-shadow: none;
    }
}
.find-contact-8793 {
    background-color: rgb(239,247,211);
    padding: 100px 0;
    color: #000000;
    position: relative;
    overflow: hidden;
}
.find-contact-8793 .holder .info_holder div.open-for-clients-8397 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.find-contact-8793 .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.find-contact-8793 .holder .info_holder > div > div {
    margin: 5px 0;
}
.find-contact-8793 .container {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border: 2px solid rgb(167,185,158);
    transition: border-color 0.3s ease;
}
.find-contact-8793 .container:hover {
    border-color: rgb(101,131,97);
}
.find-contact-8793 .contact_holder {
    display: flex;
    flex-direction: row;
    gap: 30px;
    min-width: 300px;
    max-width: 1200px;
    flex-wrap: wrap;
}
.find-contact-8793 .contact_holder h2 {
    font-size: 2.5em;
    color: rgb(167,185,158);
    margin-bottom: 30px;
    flex: 1;
    border-bottom: 2px dashed rgb(101,131,97);
    padding-bottom: 10px;
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.find-contact-8793 .contact_holder .contact_description {
    font-size: 1.2em;
    color: #000000;
    line-height: 1.6;
    flex: 2;
    border-left: 4px solid rgb(167,185,158);
    padding-left: 20px;
    transition: border-color 0.3s ease;
}
.find-contact-8793 .holder .info_holder>div span {
    margin-left: 8px;
}
.find-contact-8793 .contact_holder .contact_description:hover {
    border-color: rgb(101,131,97);
}
.find-contact-8793 .contact_holder .photo {
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 300px;
    max-height: 500px;
    margin: 25px 0;
    transition: transform 0.3s ease;
}
.find-contact-8793 .info_holder {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.find-contact-8793 .info_holder > div {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background-color: rgb(239,247,211);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(167,185,158);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.find-contact-8793 .info_holder > div:hover {
    border-color: rgb(101,131,97);
    transform: translateY(-5px);
}
.find-contact-8793 .info_holder svg {
    width: 32px;
    height: 32px;
    fill: rgb(167,185,158);
    margin-right: 20px;
}
.find-contact-8793 .info_holder a {
    color: #000000;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}
.find-contact-8793 .info_holder a:hover {
    color: rgb(167,185,158);
}
.find-contact-8793 .contact_politics {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.find-contact-8793 .contact_politics > div {
    background-color: rgb(239,247,211);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(167,185,158);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.find-contact-8793 .contact_politics > div:hover {
    border-color: rgb(101,131,97);
    transform: translateY(-5px);
}
.find-contact-8793 .contact_politics h4 {
    font-size: 1.5em;
    color: rgb(167,185,158);
    margin-bottom: 15px;
    animation: fadeIn 1s ease-in-out;
}
.find-contact-8793 .contact_politics p {
    font-size: 1.1em;
    color: #000000;
    line-height: 1.6;
}
@media only screen and (max-width: 1100px) {
    .find-contact-8793 .contact_holder h2 {
        font-size: 22px;
    }
    .find-contact-8793 .container {
        padding: 40px;
    }
    .find-contact-8793 .contact_holder {
        flex-direction: column;
    }
    .find-contact-8793 .contact_holder .photo {
        height: 300px;
    }
}.mentorship-experience-9074 {
    padding: 80px 20px;
    background-color: rgb(239,247,211);
    color: #ffffff;
}

.mentorship-experience-9074 .holder {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.mentorship-experience-9074 .review {
    background: rgb(101,131,97);
    border: 2px solid rgb(167,185,158);
    border-radius: 10px;
    max-width: 30%;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.mentorship-experience-9074 .photo {
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.mentorship-experience-9074 .worker_description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.mentorship-experience-9074 .worker_description .name {
    font-size: 20px;
    color: rgb(167,185,158);
    margin-bottom: 10px;
    font-weight: 700;
}

.mentorship-experience-9074 .worker_description span {
    font-size: 12px;
    color: rgb(101,131,97,0.5);
    margin-bottom: 20px;
    font-weight: 400;
}

.mentorship-experience-9074 .worker_description .quote {
    font-size: 12px;
    color: #ffffff;
    border-left: 4px solid rgb(167,185,158);
    padding-left: 15px;
}

@media only screen and (max-width: 1200px) {
    .mentorship-experience-9074 .review {
        max-width: 45%;
    }
}

@media only screen and (max-width: 800px) {
    .mentorship-experience-9074 .holder {
        flex-direction: column;
        align-items: center;
    }

    .mentorship-experience-9074 .review {
        max-width: 80%;
    }

    .mentorship-experience-9074 {
        padding: 50px 10px;
    }

    .mentorship-experience-9074 .photo {
        height: 150px;
    }
}
.wrapper-skeleton-2645 .mentorship-experience-9074 .holder {
    justify-content: center;
}

.wrapper-skeleton-2645 .mentorship-experience-9074 .review {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    margin: 20px 0;
    padding: 30px;
    display: flex;
    flex-direction: row;
}

.wrapper-skeleton-2645 .mentorship-experience-9074 .photo {
    width: 40%;
    height: 300px;
    border-radius: 10px;
    margin-right: 30px;
}

.wrapper-skeleton-2645 .worker_description {
    width: 60%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.wrapper-skeleton-2645 .worker_description .name {
    font-size: 28px;
    color: rgb(167,185,158);
    margin-bottom: 10px;
    font-weight: 700;
}

.wrapper-skeleton-2645 .worker_description span {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.wrapper-skeleton-2645 .worker_description .quote {
    font-size: 12px;
    color: #ffffff;
    border-left: 4px solid rgb(167,185,158);
    padding-left: 20px;
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton-2645 .mentorship-experience-9074 .review {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .wrapper-skeleton-2645 .worker_description {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .wrapper-skeleton-2645 .mentorship-experience-9074 .photo {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .wrapper-skeleton-2645 .worker_description .name {
        font-size: 20px;
    }

    .wrapper-skeleton-2645 .worker_description span {
        font-size: 12px;
    }
}
header {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(167,185,158), rgb(101,131,97));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.main_header {
    border-top: 20px solid rgb(167,185,158);
    border-bottom: 2px solid rgb(167,185,158);
    background: #ffffff;
    border-radius: 0 0 26px 26px;
    overflow: hidden;
}
.main_header .header_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.main_header .header_holder .logo_holder {
    margin: 10px 0;
    position: relative;
    z-index: 1;
}
.main_header .header_holder .logo_holder svg, .main_header .header_holder .logo_holder img {
    width: 100px;
    height: 100px;
    fill: rgb(167,185,158);
    transition: transform 0.3s ease;
}
.main_header .header_holder .logo_holder:hover svg, .main_header .header_holder .logo_holder:hover img {
    transform: scale(1.1);
}
.main_header .header_description {
    width: 50%;
    font-size: 24px;
    text-align: center;
    color: rgb(101,131,97);
    font-weight: 600;
    margin-bottom: 20px;
}
.main_header .header_menu {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-bottom: -2px;
    margin-top: 20px;
    position: relative;
    z-index: 11;
}
.main_header .header_menu a {
    border: 2px solid transparent;
    border-bottom: 2px solid rgb(167,185,158);
    padding: 10px 16px;
    color: rgb(101,131,97);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}
.main_header .header_menu a:hover {
    background: rgb(167,185,158,0.5);
    color: #ffffff;
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {
    .main_header .header_description {
        width: 100%;
    }
    .main_header .header_menu {
        flex-direction: column;
    }
    .main_header .header_menu a:first-child:after {
        display: none;
    }
    .main_header .header_menu a:first-child {
        border: 2px solid transparent;
        border-bottom: 2px solid rgb(167,185,158);
    }
}.secure-hideout-8674 {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);

    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.secure-hideout-8674 h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 43px;
    font-weight: 700;
    color: rgb(167,185,158);
    border-bottom: 4px solid rgb(167,185,158);
    padding-bottom: 10px;
}

.secure-hideout-8674 h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(101,131,97);
    border-left: 6px solid rgb(101,131,97);
    padding-left: 20px;
}

.secure-hideout-8674 ul {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.secure-hideout-8674 ul li::before {
    content: "•";
    color: rgb(167,185,158);
    font-size: 1.5em;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.secure-hideout-8674 li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 10px;
    border-left: 2px solid rgb(167,185,158,0.5);
}

.secure-hideout-8674 p, .secure-hideout-8674 span, .secure-hideout-8674 div {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ffffff;
}

.secure-hideout-8674 h3, .secure-hideout-8674 h4, .secure-hideout-8674 h5, .secure-hideout-8674 h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
    color: rgb(167,185,158);
    border-left: 5px solid rgb(167,185,158);
    padding-left: 15px;
}

@media only screen and (max-width: 800px) {
    .secure-hideout-8674 {
        padding: 30px;
    }

    .secure-hideout-8674 h1 {
        font-size: calc(21px - 4px);
    }

    .secure-hideout-8674 h2 {
        font-size: calc(21px - 3px);
    }

    .secure-hideout-8674 h3, .secure-hideout-8674 h4, .secure-hideout-8674 h5, .secure-hideout-8674 h6 {
        font-size: calc(21px - 2px);
    }

    .secure-hideout-8674 p, .secure-hideout-8674 span, .secure-hideout-8674 div, .secure-hideout-8674 li {
        font-size: calc(16px - 2px);
    }
}.contact-9084 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.contact-9084 h3 {
    color: rgb(101,131,97);
}
.contact-9084 .form {
    background:rgb(239,247,211);
    border-radius: 10px;
}
.contact-9084 form input {
    color: #000000;
    border-radius:6px;
    background:  #ffffff;
}
.contact-9084 form  .button {
    background: rgb(101,131,97);
    color:  #ffffff;
    border-radius: 100px;
}
.contact-9084 form  .button:hover {
    background: rgb(167,185,158);
}
.contact-9084 .holder {
    display: flex;
}
.contact-9084 .holder>div {
    width: 50%;
    padding: 40px;
}
.contact-9084 .form form {
    display: flex;
    flex-direction: column;
}
.contact-9084 h3 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 18px;
}
.contact-9084 form input {
    border: none;
    padding: 13px;
    width: 100%;
    margin-bottom: 24px;
    line-height: 24px;
    outline: none;
    border: 1px solid transparent;
}
.contact-9084 form  .button {
    font-weight: 400;
    cursor: pointer;
}
.contact-9084 .name_holder {
    display: flex;
    justify-content: space-between;
}
.contact-9084  .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-9084  .agree label {
    display: block;
}
.contact-9084  .agree a {
    margin-left: 5px;
    color: rgb(167,185,158);
}
.contact-9084 .form_text {
    margin-bottom: 10px;
}
.contact-9084  .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px)  {
    .contact-9084 .holder {
        flex-direction: column;
    }
    .contact-9084 .holder>div {
        width: 100%;
    }
    .contact-9084 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact-9084 h3 {
        font-size: 30px;
    }
}
.wrapper-skeleton-2645 .contact-9084 .holder {
    flex-direction: row-reverse;
}
.wrapper-skeleton-2645 .contact-9084 .holder .form {
    width: calc(70% - 50px);
    margin-right: 50px;
    background: none;
    margin: auto;
}
.wrapper-skeleton-2645 .contact-9084 .logo_holder {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}
.wrapper-skeleton-2645 .contact-9084 .logo_holder svg {
    margin-bottom: 10px;
    margin-right: 0;
}
.wrapper-skeleton-2645 .contact-9084 .info span {
    font-weight: normal;
}
.wrapper-skeleton-2645 .contact-9084 .holder .info {
    width: 30%;
}
.wrapper-skeleton-2645 .contact-9084 form input {
    border-bottom: 1px solid rgb(101,131,97,0.5);
    border-radius: 0 !important;
    font-size: 18px;
    font-weight: 300;
}
.wrapper-skeleton-2645 .contact-9084 h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
}
.wrapper-skeleton-2645 .contact-9084 form .button {
    width: fit-content;
    background: rgb(101,131,97);
    color: #ffffff;
    margin-top: 24px;
}
.contact-9084 .info .contact_info svg, .contact-9084 .info .contact_info svg path {
    flex-shrink: 0;
}
@media only screen and (max-width: 800px)  {
    .wrapper-skeleton-2645 .contact-9084 .holder {
        flex-direction: column-reverse;
    }
    .wrapper-skeleton-2645 .contact-9084 .holder .form, .wrapper-skeleton-2645 .contact-9084 .holder .info {
        width: 100%;
    }
    .wrapper-skeleton-2645 .contact-9084 .name_holder  {
        flex-direction: column;
    }
    .wrapper-skeleton-2645 .contact-9084 .name_holder #surname {
        margin-left: 0;
    }
}
.benefits-overview-3802 .advantages_content h2 {
    color: rgb(101,131,97);
}

.benefits-overview-3802 .advantage_item svg, .benefits-overview-3802 .advantage_item svg path {
    fill: rgb(167,185,158);
}

.benefits-overview-3802 .advantage_item p {
    color: #000000;
}

.benefits-overview-3802 .advantage_item b {
    color: rgb(167,185,158);
}

.benefits-overview-3802 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits-overview-3802 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits-overview-3802 .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits-overview-3802 .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    font-weight: 600;
}

.benefits-overview-3802 .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits-overview-3802 .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits-overview-3802 .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits-overview-3802 .advantage_item svg, .benefits-overview-3802 .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-skeleton-2645 .benefits-overview-3802 .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits-overview-3802 .advantages_content h2 {
        font-size: 30px;
    }

    .benefits-overview-3802 .advantages_holder {
        flex-direction: column;
    }

    .benefits-overview-3802 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-skeleton-2645 .benefits-overview-3802 .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-skeleton-2645 .benefits-overview-3802 {
    justify-content: space-between;
}

.wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item {
    padding: 30px;
    align-items: flex-start;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    justify-content: center;
    width: 23%;
    box-shadow: 0px 0 60px 0 rgba(0, 0, 0, 0.1);
    height: 250px;
}

.wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item svg {
    transition: all ease-in-out 0.4s;
}

.wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item:hover {
    background: rgb(167,185,158);
}

.wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item:hover svg, .wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item:hover svg path {
    fill: #ffffff;
}

.wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item:hover h4 {
    color: #ffffff;
}

.wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item svg, .wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item img {
    width: 48px;
    height: 48px;
}

.wrapper-skeleton-2645 .benefits-overview-3802 .advantages_content h4 {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    transition: all ease-in-out 0.4s;
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton-2645 .benefits-overview-3802 .advantage_item {
        width: 100%;
    }
}.title-section-3786 {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.title-section-3786 .title_page_holder {
    width: 100%;
    min-height: 700px;
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.title-section-3786 .style_element {
    position: relative;
    background: #ffffff;
    width: 60%;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    z-index: 2;
}
.title-section-3786 .style_element h1 {
    font-size: 45px;
    font-weight: 700;
    color: rgb(167,185,158);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.title-section-3786 .style_element h3 {
    font-size: 34px;
    font-weight: 600;
    color: rgb(101,131,97);
    margin-bottom: 15px;
}
.title-section-3786 .style_element p {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}
.wrapper-skeleton-2645 .title-section-3786 .title_page_holder {
    background: linear-gradient(45deg, rgb(167,185,158,0.5), rgb(101,131,97,0.5));
    background-blend-mode: overlay;
}
.wrapper-skeleton-2645 .title-section-3786 .style_element {
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    width: 70%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.wrapper-skeleton-2645 .title-section-3786 .style_element h1, 
.wrapper-skeleton-2645 .title-section-3786 .style_element h3, 
.wrapper-skeleton-2645 .title-section-3786 .style_element p {
    color: #000000;
    position: relative;
    z-index: 1;
}
.wrapper-skeleton-2645 .title-section-3786 .title_page_holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    z-index: 0;
}
@media only screen and (max-width: 1200px) {
    .title-section-3786 .style_element {
        width: 80%;
        padding: 40px;
    }
    .title-section-3786 .style_element h1 {
        font-size: calc(45px - 10px);
    }
    .title-section-3786 .style_element h3 {
        font-size: calc(34px - 8px);
    }
    .title-section-3786 .style_element p {
        font-size: calc(16px - 2px);
    }
}
@media only screen and (max-width: 800px) {
    .title-section-3786 .title_page_holder {
        min-height: 500px;
    }
    .title-section-3786 .style_element {
        width: 90%;
        padding: 30px;
    }
    .title-section-3786 .style_element h1 {
        font-size: 34px;
    }
    .title-section-3786 .style_element h3 {
        font-size: 24px;
    }
    .title-section-3786 .style_element p {
        font-size: 16px;
    }
}
.wrapper-skeleton-2645 .title-section-3786 .style_element::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgb(167,185,158);
    border-radius: 10px;
    z-index: 0;
}.get-updates-4076 {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.get-updates-4076 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.get-updates-4076 input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(101,131,97,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.get-updates-4076 h2 {
    margin-bottom: 20px;
    text-align: center;
}

.get-updates-4076 .button {
    background: rgb(101,131,97);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.get-updates-4076 .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .get-updates-4076 .holder {
        flex-direction: column;
    }

    .get-updates-4076 {
        padding: 30px 20px;
    }

    .get-updates-4076 input {
        min-width: unset;
    }

    .get-updates-4076 .button {
        flex-shrink: unset;
    }

    .get-updates-4076 .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .get-updates-4076 input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrapper-skeleton-2645 .get-updates-4076 .holder h2 {
        font-size: 20px;
    }
}

.wrapper-skeleton-2645 .get-updates-4076 {
    background: linear-gradient(135deg, rgb(167,185,158) 0%, rgb(101,131,97) 100%);
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.wrapper-skeleton-2645 .get-updates-4076:hover {
    background: linear-gradient(135deg, rgb(101,131,97) 0%, rgb(167,185,158) 100%);
}

.wrapper-skeleton-2645 .get-updates-4076 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: auto;
}

.wrapper-skeleton-2645 .get-updates-4076 h2 {
    text-align: center;
    color: #ffffff;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wrapper-skeleton-2645 .get-updates-4076 input {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px auto;
    border-radius: 27px;
    color: #000000;
    background: #ffffff;
    border: 2px solid rgb(101,131,97,0.5);
    text-align: left;
    font-weight: 300;
    font-size: 18px;
    padding: 10px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.wrapper-skeleton-2645 .get-updates-4076 input::placeholder {
    color: rgb(101,131,97,0.5);
}

.wrapper-skeleton-2645 .get-updates-4076 input:focus {
    border-color: rgb(101,131,97);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

.wrapper-skeleton-2645 .get-updates-4076 .button {
    border-radius: 27px;
    border: none;
    font-weight: 600;
    font-size: 20px;
    padding: 12px 20px;
    background: rgb(101,131,97);
    color: #ffffff;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    width: auto;
    margin-left: 10px;
}

.wrapper-skeleton-2645 .get-updates-4076 .button:hover {
    background: rgb(167,185,158);
    transform: translateY(-2px);
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton-2645 .get-updates-4076 {
        padding: 30px 15px;
    }

    .wrapper-skeleton-2645 .get-updates-4076 h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .wrapper-skeleton-2645 .get-updates-4076 input {
        width: 100%;
        margin-bottom: 15px;
    }

    .wrapper-skeleton-2645 .get-updates-4076 .button {
        width: 100%;
        padding: 15px;
        margin-left: 0;
    }
}.thanksBlock-9627 {
    background-color: rgb(167,185,158,0.5);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.thanksBlock-9627 .container {
    background-color: rgb(239,247,211);
    border-radius: 15px;
    border: 2px solid rgb(167,185,158,0.5);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    margin: auto;
    box-shadow: 0 0 20px rgb(167,185,158,0.5);
}
.thanksBlock-9627 .container h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(167,185,158);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(167,185,158,0.5);
}
.thanksBlock-9627 .container p {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgb(101,131,97,0.5);
}
@media only screen and (max-width: 800px) {
    .thanksBlock-9627 {
        padding: 30px 15px;
    }
    .thanksBlock-9627 .container {
        padding: 30px;
    }
    .thanksBlock-9627 .container h2 {
        font-size: 24px;
    }
    .thanksBlock-9627 .container p {
        font-size: 21px;
    }
}footer {
    background: rgb(101,131,97);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding-top: 60px;
    padding-bottom: 40px;
    border-top: 2px solid rgb(167,185,158);
}
footer .copyright {
    background: rgb(101,131,97);
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    border-radius: 10px;
}
footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(167,185,158);
    transition: fill 0.3s ease;
    width: 66px;
    height: 66px;
}
footer .logo_holder img {
    height: 90px;
    width: 90px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}
footer .logo_holder img:hover {
    transform: scale(1.1);
}
footer .contact_info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
footer h5 {
    color: rgb(167,185,158);
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
}
footer h5::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: rgb(167,185,158);
    position: absolute;
    bottom: -8px;
    left: 0;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 10px 20px;
    border-radius: 21px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid rgb(167,185,158);
}
footer .menu a:hover {
    background: rgb(167,185,158);
    color: #ffffff;
}
footer .contact_info {
    display: flex;
    flex-direction: column;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: center;
    font-size: 13px;
    color: #ffffff;
    transition: transform 0.3s ease;
}
footer .contact_info div:hover {
    transform: translateY(-5px);
}
footer .contact_info div svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(167,185,158);
    transition: fill 0.3s ease;
}
footer .footer_agreement {
    text-align: center;
    margin: 20px 0;
    font-size: 13px;
    color: #ffffff;
}
footer .copyright_info {
    color: #ffffff;
    font-size: 12px;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}
footer .copyright_info a:hover {
    color: rgb(167,185,158);
}
footer .footer {
    padding-top: 60px;
    padding-bottom: 60px;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .menu_holder {
    display: flex;
    flex-direction: column;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .contact_info {
        margin-top: 10px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    footer h5 {
        margin-top: 5px;
        text-align: center;
    }
    footer .menu a {
        margin-bottom: 10px;
        padding: 10px 15px;
    }
    footer .contact_info div {
        justify-content: center;
    }
}
footer .footer_info {
    position: relative;
    z-index: 2;
}
footer .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(101,131,97,0.5);
    z-index: 1;
    border-radius: 21px;
}
footer .footer, footer .footer * {
    position: relative;
    z-index: 2;
}
.wrapper-skeleton-2645 .about-this-3650 {
    padding: 100px 0;
    background: rgb(239,247,211);
    position: relative;
    overflow: hidden;
}

.wrapper-skeleton-2645 .about-this-3650::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(167,185,158) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, rgb(167,185,158) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, rgb(167,185,158) 25%, transparent 25%),
                linear-gradient(45deg, rgb(167,185,158) 25%, transparent 25%);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: bg-animation 10s linear infinite;
}

@keyframes bg-animation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.wrapper-skeleton-2645 .about-this-3650 .holder {
    height: auto;
    position: relative;
    z-index: 1;
}

.wrapper-skeleton-2645 .about-this-3650 .holder .photo {
    display: block;
    width: 350px;
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 8px solid rgb(167,185,158);
    background: rgb(101,131,97);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-right: 20px;
}

.wrapper-skeleton-2645 .about-this-3650 .holder .photo:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.05);
}

.wrapper-skeleton-2645 .about-this-3650 .caption_holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 40px;
    background: rgb(101,131,97,0.5);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.wrapper-skeleton-2645 .about-this-3650 .style_element {
    background: rgb(167,185,158,0.5);
    padding: 50px;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 20px;
    position: relative;
}

.wrapper-skeleton-2645 .about-this-3650 .style_element::before,
.wrapper-skeleton-2645 .about-this-3650 .style_element::after {
    content: '';
    position: absolute;
    background: rgb(167,185,158);
    border-radius: 50%;
}

.wrapper-skeleton-2645 .about-this-3650 .style_element::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
}

.wrapper-skeleton-2645 .about-this-3650 .style_element::after {
    width: 40px;
    height: 40px;
    bottom: -20px;
    right: -20px;
}

.wrapper-skeleton-2645 .about-this-3650 h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.wrapper-skeleton-2645 .about-this-3650 h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #ffffff;
    bottom: 0;
    left: 0;
}

.wrapper-skeleton-2645 .about-this-3650 p {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
    margin-top: 20px;
    position: relative;
}

.wrapper-skeleton-2645 .about-this-3650 p::before {
    content: '“';
    font-size: 50px;
    color: rgb(167,185,158);
    position: absolute;
    top: -20px;
    left: -30px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-skeleton-2645 .about-this-3650 .holder .photo {
        width: 300px;
        height: 300px;
    }
    .wrapper-skeleton-2645 .about-this-3650 .style_element {
        width: 85%;
        padding: 40px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton-2645 .about-this-3650 .holder .photo {
        width: 250px;
        height: 250px;
        margin-right: 0;
        margin-top: 20px;
    }
    .wrapper-skeleton-2645 .about-this-3650 .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
        padding: 20px 0;
    }
    .wrapper-skeleton-2645 .about-this-3650 .style_element {
        width: 100%;
        padding: 30px;
    }
    .wrapper-skeleton-2645 .about-this-3650 h2 {
        font-size: 22px;
    }
}.program-overview-4103 {
    padding: 120px 0;
    background: rgb(239,247,211);
    position: relative;
    overflow: hidden;
}

.program-overview-4103 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.program-overview-4103 h2 {
    font-size: 44px;
    font-weight: 700;
    color: rgb(167,185,158);
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.program-overview-4103 h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 5px;
    background: rgb(101,131,97);
    transform: translateX(-50%);
}

.program-overview-4103 .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.program-overview-4103 .course {
    background: #ffffff;
    border: 2px solid rgb(167,185,158,0.5);
    border-radius: 21px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.program-overview-4103 .course::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgb(101,131,97,0.5);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.program-overview-4103 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.program-overview-4103 .photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid rgb(101,131,97,0.5);
}

.program-overview-4103 .text_holder {
    text-align: center;
    width: 100%;
}

.program-overview-4103 h3 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(167,185,158);
    margin-bottom: 15px;
    position: relative;
}

.program-overview-4103 h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 30px;
    height: 3px;
    background: rgb(101,131,97);
    transform: translateX(-50%);
}

.program-overview-4103 p {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-overview-4103 .button {
    display: inline-block;
    padding: 12px 24px;
    background: rgb(167,185,158);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgb(167,185,158);
}

.program-overview-4103 .button:hover {
    background: rgb(101,131,97);
    border-color: rgb(101,131,97);
    color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .program-overview-4103 {
        padding: 80px 0;
    }

    .program-overview-4103 h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .program-overview-4103 .items {
        gap: 20px;
    }

    .program-overview-4103 .course {
        padding: 15px;
    }

    .program-overview-4103 h3 {
        font-size: 17px;
    }

    .program-overview-4103 p {
        font-size: 18px;
        line-height: 1.4;
    }

    .program-overview-4103 .button {
        padding: 10px 20px;
        font-size: 20px;
    }
}