* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Merriweather, sans-serif;
    color: #000000;
}
.style-wrapper-canvas {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(158,204,136);
}
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;
    }
}.style-thxNote {
    background-color: rgb(118,153,102,0.5);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.style-thxNote .container {
    background-color: rgb(118,153,102,0.5);
    border: 1px solid rgb(118,153,102,0.5);
    border-radius: 21px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 20px rgb(118,153,102,0.5);
    position: relative;
    z-index: 2;
}
.style-thxNote .container h2 {
    font-family: Merriweather, sans-serif;
    font-size: 42px;
    color: rgb(118,153,102);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgb(118,153,102,0.5);
}
.style-thxNote .container p {
    font-family: Merriweather, sans-serif;
    font-size: 13px;
    color: rgb(79,102,68);
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 3px rgb(79,102,68,0.5);
}
.style-thxNote .container .decorative-line {
    width: 100px;
    height: 2px;
    background-color: rgb(118,153,102);
    margin: 20px auto 30px;
    box-shadow: 0 0 5px rgb(118,153,102,0.5);
}
.style-thxNote .container .info-block {
    background-color: rgb(158,204,136);
    border: 1px solid rgb(79,102,68,0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}
.style-thxNote .container .info-block h5 {
    font-family: Merriweather, sans-serif;
    font-size: 23px;
    color: rgb(118,153,102);
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 3px rgb(118,153,102,0.5);
    text-transform: uppercase;
}
.style-thxNote .container .info-block p {
    font-family: Merriweather, sans-serif;
    font-size: 13px;
    color: #000000;
    margin-bottom: 0;
}
.style-thxNote .container .btn {
    background-color: rgb(118,153,102);
    color: #000000;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-family: Merriweather, sans-serif;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 5px rgb(118,153,102,0.5);
    transition: background-color 0.2s ease;
}
.style-thxNote .container .btn:hover {
    background-color: rgb(79,102,68);
}
@media only screen and (max-width: 800px) {
    .style-thxNote {
        padding: 30px 10px;
    }
    .style-thxNote .container {
        padding: 30px 20px;
    }
    .style-thxNote .container h2 {
        font-size: calc(42px - 6px);
    }
    .style-thxNote .container p {
        font-size: calc(13px - 2px);
    }
    .style-thxNote .container .btn {
        font-size: calc(17px - 2px);
        padding: 10px 20px;
    }
    .style-thxNote .container .decorative-line {
        width: 80px;
    }
}
header .main_header {
    background: rgb(79,102,68);
    color: #ffffff;
    border-bottom: 2px solid rgb(118,153,102);
    padding: 20px 0;
}
header .logo_holder svg, header .logo_holder svg path, header .logo_holder img {
    fill: rgb(118,153,102);
}
header .menu a {
    color: rgb(79,102,68);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 10px 20px;
    font-size: 15px;
    border-bottom: 2px solid transparent;
}
header .menu a:hover {
    color: rgb(118,153,102);
    border-bottom: 2px solid rgb(118,153,102);
}
header .menu a.active {
    border-bottom: 2px solid rgb(118,153,102);
    color: rgb(118,153,102);
}
header {
    border-bottom: 1px solid rgb(118,153,102);
}
header .main_header {
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
header .logo_holder {
    padding: 5px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .logo_caption {
    display: flex;
    flex-direction: column;
    height: 100%;
}
header .logo_desc {
    font-size: 16px;
    font-weight: 600;
    color: rgb(79,102,68);
}
header .logo_holder .logo_desc {
    text-transform: uppercase;
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
}
header .menu {
    display: flex;
    gap: 15px;
}
body .style-wrapper-canvas header .opened {
    display: flex;
}
@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }
    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: #000000;
        padding: 20px;
    }
    header .menu a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgb(79,102,68,0.5);
    }
    header .menu a.active {
        border: none;
    }
    header .main_header {
        position: relative;
        z-index: 99;
    }
    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype {
        margin-right: 5px;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 50px;
        height: 50px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.style-wrapper-canvas header .logotype {
    padding: 10px;
    border-radius: 10px;
}
.style-wrapper-canvas header .main_header {
    background: rgb(79,102,68);
    position: relative;
}
.style-wrapper-canvas header .main_header::before {
    position: absolute;
    content: "";
    top: 0;
    height: 4px;
    width: 100%;
    background: rgb(118,153,102);
    z-index: 0;
}
.style-wrapper-canvas header .logo_holder .logotype svg, .style-wrapper-canvas header .logo_holder .logotype img {
    margin: 0;
}
.style-wrapper-canvas header .logo_holder {
    padding: 0;
}
.style-wrapper-canvas header .menu {
    padding-top: 10px;
}
.style-wrapper-canvas header .menu a {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}
.style-wrapper-canvas header .menu a:hover {
    color: rgb(118,153,102);
}
.style-wrapper-canvas header .header_content {
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 800px) {
    .style-wrapper-canvas header .menu {
        background: none;
        align-items: center;
    }
    .style-wrapper-canvas header .logo_holder .logotype svg, .style-wrapper-canvas header .logo_holder .logotype img {
        width: 50px;
        height: 50px;
    }
    .style-wrapper-canvas header .menu a {
        text-align: center;
    }
    .style-wrapper-canvas header .logo_holder {
        justify-content: center;
        align-items: center;
    }
    .style-wrapper-canvas header .menu {
        padding-bottom: 20px;
    }
}
.style-interested-learners {
    padding-bottom: 80px;
    padding-top: 80px;
}

.style-interested-learners .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.style-interested-learners ul {
    list-style: none;
}

.style-interested-learners ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.style-interested-learners ul svg, .style-interested-learners ul svg path {
    fill: rgb(118,153,102);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.style-interested-learners h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .style-interested-learners {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.style-wrapper-canvas .style-interested-learners {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.style-wrapper-canvas .style-interested-learners .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    padding: 60px 80px;
    background: #ffffff;
    border-radius: 21px;
    border: 2px solid rgb(118,153,102,0.5);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    margin: auto;
}

.style-wrapper-canvas .style-interested-learners h2 {
    font-family: Merriweather, sans-serif;
    font-size: 37px;
    font-weight: 600;
    color: rgb(118,153,102);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(118,153,102,0.5);
    padding-bottom: 10px;
    width: 100%;
}

.style-wrapper-canvas .style-interested-learners ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
}

.style-wrapper-canvas .style-interested-learners ul li {
    font-family: Merriweather, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgb(118,153,102,0.5);
    display: flex;
    align-items: center;
    position: relative;
}

.style-wrapper-canvas .style-interested-learners ul svg, .style-wrapper-canvas .style-interested-learners ul svg path {
    margin-right: 12px;
    width: 25px;
    height: 25px;
    fill: rgb(118,153,102);
    position: static;
}

@media only screen and (max-width: 800px) {
    .style-wrapper-canvas .style-interested-learners {
        padding: 40px 0;
    }

    .style-wrapper-canvas .style-interested-learners .holder {
        padding: 30px 20px;
        width: 90%;
    }

    .style-wrapper-canvas .style-interested-learners h2 {
        font-size: calc(37px - 4px);
        margin-bottom: 20px;
    }

    .style-wrapper-canvas .style-interested-learners ul li {
        font-size: calc(13px - 2px);
        padding: 10px 0;
    }

    .style-wrapper-canvas .style-interested-learners ul svg, .style-wrapper-canvas .style-interested-learners ul svg path {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
}

.style-wrapper-canvas .style-interested-learners::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px solid rgb(118,153,102,0.5);
    border-radius: 21px;
    z-index: -1;
}

.style-wrapper-canvas .style-interested-learners .holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgb(79,102,68,0.5);
    transform: translateX(-50%);
    z-index: -2;
}.style-contact-form-box {
    padding: 60px 20px;
    background: rgb(158,204,136);
    font-family: Merriweather, sans-serif;
    color: #000000;
}
.style-contact-form-box .container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.style-contact-form-box h3 {
    color: rgb(118,153,102);
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgb(118,153,102);
    padding-bottom: 10px;
}
.style-contact-form-box .holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.style-contact-form-box .info, .style-contact-form-box .form {
    padding: 20px;
    border-radius: 10px;
    background: rgb(158,204,136);
}
.style-contact-form-box .info {
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.style-contact-form-box .info h5 {
    color: rgb(118,153,102);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.style-contact-form-box .info span {
    color: #000000;
    font-size: 18px;
    display: block;
}
.style-contact-form-box .info svg {
    fill: rgb(118,153,102);
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.style-contact-form-box .info .contact_info>div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.style-contact-form-box .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.style-contact-form-box .logo_holder svg, .style-contact-form-box .logo_holder img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}
.style-contact-form-box .form {
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.style-contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.style-contact-form-box .name_holder {
    display: flex;
    flex-direction: column;
    gap:20px;
}
.style-contact-form-box form input, .style-contact-form-box form textarea {
    color: #000000;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    font-size: 18px;
    outline: none;
    width: 100%;
    transition: border-color 0.3s;
}
.style-contact-form-box form input:focus, .style-contact-form-box form textarea:focus {
    border-color: rgb(118,153,102);
}
.style-contact-form-box form .button {
    background: rgb(118,153,102);
    color: #ffffff;
    border-radius: 24px;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    width: 100%;
}
.style-contact-form-box .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.style-contact-form-box .agree input[type=checkbox] {
    width: auto;
    margin: 0 10px 0 0;
}
.style-contact-form-box .agree label {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}
.style-contact-form-box .agree a {
    color: rgb(118,153,102);
    margin-left: 5px;
    text-decoration: none;
    border-bottom: 1px solid rgb(118,153,102);
}
@media only screen and (max-width: 768px) {
    .style-contact-form-box .holder {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .style-contact-form-box {
        padding: 40px 20px;
    }
    .style-contact-form-box h3 {
        font-size: 37px;
    }
    .style-contact-form-box .container {
        padding: 10px;
    }
}
.style-wrapper-canvas .style-our-story .holder {
    height: auto;
    position: relative;
    overflow: hidden;
}

.style-our-story {
    padding: 80px 0;
    background: rgb(79,102,68);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.style-wrapper-canvas .style-our-story .holder .photo {
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.9;
    overflow: hidden;
}

.style-wrapper-canvas .style-our-story .caption_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 20px;
    gap: 20px;
    border-left: 5px solid rgb(118,153,102);
}

.style-wrapper-canvas .style-our-story .style_element {
    background: rgb(118,153,102,0.5);
    padding: 50px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 368px;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: background 0.8s ease, transform 0.8s ease;
}

.style-wrapper-canvas .style-our-story .style_element:hover {
    background: rgb(118,153,102);
    transform: scale(1.02);
}

.style-wrapper-canvas .style-our-story h2 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.8s ease;
}

.style-wrapper-canvas .style-our-story h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgb(79,102,68);
    bottom: -10px;
    left: 0;
    transition: width 0.8s ease;
}

.style-wrapper-canvas .style-our-story h2:hover::after {
    width: 100%;
}

.style-wrapper-canvas .style-our-story p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.8s ease;
}

@media only screen and (max-width: 1200px) {
    .style-wrapper-canvas .style-our-story .holder .photo {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .style-wrapper-canvas .style-our-story .style_element {
        width: 100%;
        padding: 30px;
    }
    .style-wrapper-canvas .style-our-story .holder .photo {
        width: 100%;
        height: 250px;
        margin-top: 10px;
    }
    .style-wrapper-canvas .style-our-story .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
    }
    .style-wrapper-canvas .style-our-story h2 {
        font-size: 36px;
    }
}

.style-wrapper-canvas .style-our-story .style_element::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgb(79,102,68,0.5);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(15px);
    transition: opacity 0.8s ease;
}

.style-wrapper-canvas .style-our-story .style_element:hover::before {
    opacity: 0.9;
}


.style-wrapper-canvas .style-our-story .style_element:hover::after {
    height: 110%;
}
.style-benefits-outline .advantages_content h2 {
    color: rgb(79,102,68);
}

.style-benefits-outline .advantage_item svg, .style-benefits-outline .advantage_item svg path {
    fill: rgb(118,153,102);
}

.style-benefits-outline .advantage_item p {
    color: #000000;
}

.style-benefits-outline .advantage_item b {
    color: rgb(118,153,102);
}

.style-benefits-outline {
    padding-top: 80px;
    padding-bottom: 80px;
}

.style-benefits-outline .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.style-benefits-outline .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.style-benefits-outline .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 35px;
    font-weight: 600;
}

.style-benefits-outline .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.style-benefits-outline .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.style-benefits-outline .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.style-benefits-outline .advantage_item svg, .style-benefits-outline .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .style-wrapper-canvas .style-benefits-outline .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .style-benefits-outline .advantages_content h2 {
        font-size: 30px;
    }

    .style-benefits-outline .advantages_holder {
        flex-direction: column;
    }

    .style-benefits-outline {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .style-wrapper-canvas .style-benefits-outline .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.style-wrapper-canvas .style-benefits-outline {
    position: relative;
    background: rgb(158,204,136);
}

.style-wrapper-canvas .style-benefits-outline::after {
    content: "";
    width: 100%;
    height: calc(50% + 60px);
    background: rgb(118,153,102);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.style-benefits-outline .advantages_content {
    position: relative;
    z-index: 1;
}

.style-wrapper-canvas .style-benefits-outline .advantages_content h2 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.style-wrapper-canvas .style-benefits-outline .advantages_holder {
    width: 100%;
    flex-wrap: wrap;
}

.style-wrapper-canvas .style-benefits-outline .advantage_item {
    padding: 30px;
    width: 270px;
    border-radius: 20px;
    background: #ffffff;
    align-items: center;
    padding: 60px;
    box-shadow: 0 16px 48px rgb(0 0 0 / 18%);
}

.style-wrapper-canvas .style-benefits-outline .advantages_description {
    color: #ffffff;
}

.style-wrapper-canvas .style-benefits-outline .advantage_item svg, .style-wrapper-canvas .style-benefits-outline .advantage_item svg path, .style-wrapper-canvas .style-benefits-outline .advantage_item img {
    fill: rgb(118,153,102);
    width: 60px;
    height: 60px;
}

.style-wrapper-canvas .style-benefits-outline .advantages_content h4 {
    display: inherit;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .style-wrapper-canvas .style-benefits-outline .advantage_item {
        width: 100%;
        margin-bottom: 30px;
    }

    .style-wrapper-canvas .style-benefits-outline .advantages_content h2 {
        font-size: 36px;
    }
}.style-customer-feedback {
    padding-top: 80px;
    padding-bottom: 80px;
}

.style-customer-feedback h2 {
    color: rgb(79,102,68);
}

.style-customer-feedback .review {
    background: #ffffff;
    border-radius: 20px;
}

.style-customer-feedback .review span {
    color: rgb(118,153,102);
}

.style-customer-feedback .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.style-customer-feedback .holder h2 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 32px;
    font-weight: 600;
}

.style-customer-feedback .reviews {
    display: flex;
    justify-content: center;
    width: 100%;
}

.style-customer-feedback .review {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 10px;
    max-width: 25%;
    width: calc(25% - 20px);
    justify-content: flex-start;
    align-items: center;
    margin: 10px;
}

.style-customer-feedback .review span {
    text-align: center;
}

.style-customer-feedback .review p {
    text-align: center;
}

.style-customer-feedback .photo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.style-customer-feedback .text {
    display: flex;
    flex-direction: column;
}

.style-customer-feedback .review span {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}

@media only screen and (max-width: 800px) {
    .style-customer-feedback .reviews {
        flex-direction: column;
    }

    .style-customer-feedback .review {
        max-width: unset;
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

    .style-customer-feedback {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .style-customer-feedback .holder h2 {
        font-size: 30px;
    }
}

.style-wrapper-canvas .style-customer-feedback .review {
    background: none;
    border-radius: 0;

}

.style-wrapper-canvas .style-customer-feedback .photo {
    width: 125px;
    height: 125px;
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    margin-top: 40px;
}

.style-wrapper-canvas .style-customer-feedback .photo::before {
    content: "";
    position: absolute;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    top: -40px;
    left: -40px;
    border: 10px solid rgb(118,153,102);
    border-radius: 50%;
    z-index: 1;

}

.style-wrapper-canvas .style-customer-feedback .review span {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-top: 20px;
}

.style-wrapper-canvas .style-customer-feedback .review p {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.style-wrapper-canvas .style-customer-feedback .holder h2 {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
}.style-primary-page .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.style-primary-page .style_element h1 {
    color: rgb(79,102,68);
}

.style-primary-page .style_element h3 {
    color: rgb(79,102,68);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.style-primary-page .style_element p {
    color: #000000;
    text-align: right;
}

.style-primary-page {
    width: 100%;
}

.style-primary-page .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.style-primary-page .style_element {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.style-primary-page .style_element h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.style-primary-page .style_element p {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .style-primary-page .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .style-primary-page .style_element {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .style-primary-page .style_element h1 {
        font-size: 18px;
    }

    .style-primary-page .style_element h3 {
        font-size: 16px;
    }

    .style-primary-page .style_element p {
        font-size: 14px;
    }


}

.style-wrapper-canvas .style-primary-page .style_element {
    position: static;
    background: none;
    clip-path: none;
    padding: 30px;
    padding-left: calc(50% - 600px);
    justify-content: center;
    align-items: flex-start;
}

.style-wrapper-canvas .style-primary-page .title_page_holder {
    min-height: unset;
    padding-top: 80px;
    padding-bottom: 80px;
}

.style-wrapper-canvas .style-primary-page .style_element h1 {
    text-align: left;
    font-size: 36px;
    color: #ffffff;
    background: rgb(118,153,102);
    padding: 15px 35px;
    margin: 0;
    max-width: 50%;
}

.style-wrapper-canvas .style-primary-page .style_element h3 {
    text-align: left;
    font-size: 26px;
    color: #ffffff;
    background: rgb(79,102,68);
    padding: 15px 35px;
    margin: 0;
    margin-left: 40px;
    max-width: 50%;
}

.style-wrapper-canvas .style-primary-page .style_element p {
    text-align: left;
    font-size: 26px;
    color: #ffffff;
    background: rgb(118,153,102,0.5);
    padding: 15px 35px;
    margin: 0;
    margin-left: 80px;
    max-width: 50%;

}

@media only screen and (max-width: 1200px) {
    .style-wrapper-canvas .style-primary-page .style_element {
        padding: 30px;
        height: 400px;
    }
}

@media only screen and (max-width: 800px) {
    .style-wrapper-canvas .style-primary-page .style_element {
        padding: 30px;
        height: 400px;
    }

    .style-wrapper-canvas .style-primary-page .style_element h1,
    .style-wrapper-canvas .style-primary-page .style_element h3,
    .style-wrapper-canvas .style-primary-page .style_element p {
        max-width: unset;
        width: 100%;
        margin-left: 0;
        font-size: 24px;
        text-align: center;
    }

    .style-wrapper-canvas .style-primary-page .title_page_holder {
        padding: 0;
    }
}footer {
  background-color: #f0f0f0;
  padding: 40px 0;
  color: #333;
  font-family: 'Arial', sans-serif;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .logo_holder {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
footer .logo_holder svg{
  width: 80px;
  height: 80px;
}
footer .logo_holder img {
  width: 80px;
  height: auto;
  margin-right: 10px;
}
footer .logo_holder h3 {
  font-size: 24px;
  margin: 0;
  color: #555;
}
footer .menu {
  margin-bottom: 30px;
}
footer .menu h5 {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .menu li {
  margin-bottom: 10px;
}
footer .menu a {
  color: #777;
  text-decoration: none;
  font-size: 16px;
}
footer .menu a:hover {
  text-decoration: underline;
}
footer .contact_info {
  margin-bottom: 30px;
}
footer .contact_info h5 {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .contact_info p {
  margin: 0;
  font-size: 16px;
}
footer .contact_info svg {
  width: 20px;
  height: 20px;
  fill: #888;
  margin-right: 10px;
}
footer .footer_agreement {
  color: #555;
  font-size: 14px;
}
footer .footer_agreement a {
  color: #777;
  text-decoration: none;
}
footer .footer_agreement a:hover {
  text-decoration: underline;
}
footer .copyright_info {
  color: #777;
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  
  footer .logo_holder {
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
  }
  footer .menu ul {
    text-align: center;
  }
  footer .menu li {
    display: inline-block;
    margin-right: 20px;
  }
}
.style-educational-yield {
    padding-bottom: 80px;
    padding-top: 80px;
}

.style-educational-yield .holder {
    display: flex;
    width: 100%;
}

.style-educational-yield h2 {
    text-align: left;
    margin-bottom: 20px;
}

.style-educational-yield .photo {
    width: 50%;
    flex-shrink: 0;
}

.style-educational-yield .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.style-educational-yield ul {
    list-style: none;
}

.style-educational-yield li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.style-educational-yield svg, .style-educational-yield path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(118,153,102);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .style-educational-yield {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .style-educational-yield .holder {
        flex-direction: column;
    }

    .style-educational-yield .text_holder {
        width: 100%;
    }

    .style-educational-yield .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.style-wrapper-canvas .style-educational-yield {
    background: rgb(79,102,68,0.5);
    position: relative;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.style-wrapper-canvas .style-educational-yield::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 0;
}

.style-wrapper-canvas .style-educational-yield .holder {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.style-wrapper-canvas .style-educational-yield .photo {
    flex: 1;
    min-height: 450px;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.style-wrapper-canvas .style-educational-yield .text_holder {
    flex: 1;
    padding: 60px;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgb(79,102,68,0.5);
}

.style-wrapper-canvas .style-educational-yield h2 {
    font-family: Merriweather, sans-serif;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(118,153,102);
    border-bottom: 2px solid rgb(118,153,102);
    padding-bottom: 10px;
}

.style-wrapper-canvas .style-educational-yield ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.style-wrapper-canvas .style-educational-yield li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid rgb(79,102,68,0.5);
}

.style-wrapper-canvas .style-educational-yield li:last-child {
    border-bottom: none;
}

.style-wrapper-canvas .style-educational-yield svg,
.style-wrapper-canvas .style-educational-yield path {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    fill: rgb(118,153,102);
}

@media only screen and (max-width: 800px) {
    .style-wrapper-canvas .style-educational-yield {
        padding: 40px 10px;
    }

    .style-wrapper-canvas .style-educational-yield::before {
        clip-path: none;
        width: 100%;
    }

    .style-wrapper-canvas .style-educational-yield .holder {
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .style-wrapper-canvas .style-educational-yield .photo {
        min-height: 250px;
        border-radius: 16px 16px 0 0;
    }

    .style-wrapper-canvas .style-educational-yield .text_holder {
        padding: 30px 20px;
        border-left: none;
        border-top: 1px solid rgb(79,102,68,0.5);
    }

    .style-wrapper-canvas .style-educational-yield h2 {
        font-size: 19px;
    }

    .style-wrapper-canvas .style-educational-yield ul {
        gap: 15px;
    }

    .style-wrapper-canvas .style-educational-yield li {
        font-size: 13px;
        padding: 10px 0;
    }

    .style-wrapper-canvas .style-educational-yield svg,
    .style-wrapper-canvas .style-educational-yield path {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}.style-academic-expertise {
    padding-top: 80px;
    padding-bottom: 80px;
}

.style-academic-expertise .review .name {
    color: rgb(79,102,68);
}

.style-academic-expertise .review span {
    color: rgb(118,153,102);
}

.style-academic-expertise .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.style-academic-expertise .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.style-academic-expertise .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.style-academic-expertise .review .name {
    font-size: 24px;
    margin-bottom: 8px;
}

.style-academic-expertise .review span {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 14px;
}

.style-academic-expertise .review .quote {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .style-academic-expertise .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .style-academic-expertise .holder {
        flex-direction: column;
    }

    .style-academic-expertise .review {
        max-width: unset;
        width: 100%;
    }

    .style-academic-expertise {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.style-wrapper-canvas .style-academic-expertise .holder {
    justify-content: center;
}

.style-wrapper-canvas .style-academic-expertise .review {
    max-width: unset;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    position: relative;
}

.style-wrapper-canvas .style-academic-expertise .photo {
    width: 400px;
    height: 400px;
    position: relative;
    z-index: 2;
    margin: 0;
    margin-top: 30px;
}

.style-wrapper-canvas .style-academic-expertise .review::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgb(79,102,68);
    z-index: 0;
    left: 100px;
    top: 0;
}

.style-wrapper-canvas .worker_description {
    width: 50%;
    padding: 30px;
}

.style-wrapper-canvas .style-academic-expertise .review .name {
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    color: #000000;
}

.style-wrapper-canvas .style-academic-expertise .review span {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

.style-wrapper-canvas .style-academic-expertise .review .quote {
    margin-top: 45px;
    padding: 20px;
    border-left: 15px solid rgb(118,153,102);
    line-height: 25px;
}

@media only screen and (max-width: 1200px) {
    .style-wrapper-canvas .style-academic-expertise .photo {
        width: 300px;
        height: 300px;
        margin: 20px;
    }

    .style-wrapper-canvas .style-academic-expertise .review::after {
        left: 50px;
        height: 300px;
        width: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .style-wrapper-canvas .style-academic-expertise .review {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .style-wrapper-canvas .worker_description {
        width: 100%;
    }


}.style-course-summary {
    padding: 100px 0;
    background-color: rgb(79,102,68,0.5);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}

.style-course-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, rgb(118,153,102,0.5) 20%, rgb(79,102,68,0.5) 80%);
    animation: rotateBg 15s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.style-course-summary h2 {
    color: rgb(118,153,102);
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.style-course-summary .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
    position: relative;
}

.style-course-summary .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.style-course-summary .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.style-course-summary .course {
    padding: 15px;
    max-width: 45%;
    margin: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    box-shadow: 0 0 20px rgb(118,153,102,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-course-summary .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(118,153,102,0.5);
}

.style-course-summary .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.style-course-summary .photo {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.style-course-summary .text_holder {
    text-align: center;
    z-index: 1;
    position: relative;
}

.style-course-summary h3 {
    color: rgb(79,102,68);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(79,102,68,0.5);
}

.style-course-summary p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.style-course-summary .button {
    display: inline-block;
    background: rgb(118,153,102);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 20px rgb(118,153,102,0.5);
}

.style-course-summary .button:hover {
    background: rgb(79,102,68);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgb(79,102,68,0.5);
}

@media (max-width: 768px) {
    .style-course-summary .course {
        max-width: 90%;
        margin: 10px;
    }

    .style-course-summary h2 {
        font-size: 35px;
        margin-bottom: 30px;
    }
}

.style-wrapper-canvas .style-course-summary {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.style-wrapper-canvas .style-course-summary .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.style-wrapper-canvas .style-course-summary .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.style-wrapper-canvas .style-course-summary .course {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    box-shadow: 0 0 20px rgb(118,153,102,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: 100%;
}

.style-wrapper-canvas .style-course-summary .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.style-wrapper-canvas .style-course-summary .photo {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.style-wrapper-canvas .style-course-summary .text_holder {
    text-align: center;
    z-index: 1;
    position: relative;
}

.style-wrapper-canvas .style-course-summary h3 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(79,102,68,0.5);
}

.style-wrapper-canvas .style-course-summary p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.style-wrapper-canvas .style-course-summary .button {
    display: inline-block;
    background: rgb(118,153,102);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 20px rgb(118,153,102,0.5);
}

.style-wrapper-canvas .style-course-summary .button:hover {
    background: rgb(79,102,68);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgb(79,102,68,0.5);
}

@media (max-width: 908px) {
    .style-wrapper-canvas .style-course-summary .course {
        max-width: 90%;
        margin: 10px;
    }

    .style-wrapper-canvas .style-course-summary h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}.style-privacy-hub {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Merriweather, sans-serif;
    color: #000000;
}

.style-privacy-hub h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 47px;
    font-weight: 700;
    color: rgb(118,153,102);
    border-bottom: 3px solid rgb(118,153,102);
    padding-bottom: 15px;
}

.style-privacy-hub h2 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 29px;
    font-weight: 600;
    color: rgb(79,102,68);
    border-bottom: 2px solid rgb(79,102,68);
    padding-bottom: 10px;
}

.style-privacy-hub ul, .style-privacy-hub ol {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
}

.style-privacy-hub ul li, .style-privacy-hub ol li {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
}

.style-privacy-hub ul li::before, .style-privacy-hub ol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: rgb(118,153,102);
    border-radius: 50%;
}

.style-privacy-hub p, .style-privacy-hub span, .style-privacy-hub div {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .style-privacy-hub {
        padding: 25px;
    }

    .style-privacy-hub h1 {
        font-size: 29px;
        margin-bottom: 20px;
    }

    .style-privacy-hub h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .style-privacy-hub ul li, .style-privacy-hub ol li {
        font-size: 14px;
    }
}

.style-privacy-hub h3, .style-privacy-hub h4, .style-privacy-hub h5, .style-privacy-hub h6 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 5px;
}

.style-privacy-hub section {
    background: rgb(118,153,102);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.style-privacy-hub a {
    color: rgb(118,153,102);
    text-decoration: none;
    border-bottom: 2px solid rgb(118,153,102,0.5);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.style-privacy-hub a:hover {
    color: rgb(79,102,68);
    border-bottom-color: rgb(79,102,68,0.5);
}