* {
    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;
}
.wrapper-padding {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(129,127,125);
}
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;
    }
}.wrapper-padding .about_this .holder {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: rgb(129,127,125);
}

.about_this {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(45,45,44) 30%, rgb(77,76,75,0.5) 100%);
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.wrapper-padding .about_this .holder .photo {
    width: 400px;
    height: 400px;
    border-radius: 13px;
    box-shadow: 0 0 30px rgb(45,45,44,0.5), 0 0 60px rgb(45,45,44,0.5);
    transition: transform 0.3s ease-in-out;
    margin-right: 24px;
}

.wrapper-padding .about_this .caption_holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 520px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.wrapper-padding .about_this .style_element {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(77,76,75);
    padding: 50px 60px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 420px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 20px rgb(77,76,75,0.5);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

}


.wrapper-padding .about_this h2 {
    color: #ffffff;
    margin-top: 10px;
    font-size: 38px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgb(45,45,44);
}

.wrapper-padding .about_this p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 0 5px rgb(77,76,75,0.5);
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding .about_this .holder {
        padding: 0;
    }
    .wrapper-padding .about_this .holder .photo {
        width: 300px;
        height: 300px;
        margin: 20px 0;
    }

    .wrapper-padding .about_this .style_element {
        width: 70%;
        padding: 40px 50px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-padding .about_this {
        padding: 60px 0;
    }

    .wrapper-padding .about_this .style_element {
        width: 100%;
        padding: 30px;
    }

    .wrapper-padding .about_this .holder .photo {
        width: 250px;
        height: 250px;
    }

    .wrapper-padding .about_this .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
    }

    .wrapper-padding .about_this h2 {
        font-size: 24px;
    }
}header .main_header {
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    z-index: 1000;
}


header .logo_holder svg,
header .logo_holder svg path,
header .logo_holder img {
    fill: rgb(77,76,75);
    height: 60px;
    width: 60px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

header .logo_holder:hover svg,
header .logo_holder:hover img {
    transform: rotate(360deg);
    fill: rgb(45,45,44);
}

header .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: transform 0.3s ease;
}

header .menu a {
    color: #ffffff;
    text-transform: uppercase;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 23px;
    transition: color 0.3s ease, background 0.3s ease;
}

header .menu a:hover {
    color: rgb(77,76,75);
    background: #ffffff;
}

header .menu a.active {
    border: 2px solid rgb(45,45,44);
    background: rgb(45,45,44,0.5);
}

header .menu a.active:hover {
    color: #ffffff;
    background: rgb(77,76,75);
    border: 2px solid rgb(77,76,75);
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    transition: padding 0.3s ease;
}

header .logo_holder {
    display: flex;
    align-items: center;
}

header .logo_caption {
    display: flex;
    flex-direction: column;
    height: 100%;
}

header .logo_desc {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(45,45,44);
}

@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 30px;
    }

    header .menu {
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        padding: 20px 0;
        border-radius: 23px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    header .menu.opened {
        transform: translateY(0);
        opacity: 1;
    }

    header .menu a {
        padding: 15px 20px;
        width: auto;
        margin: 10px;
        text-align: right;
    }

    header .logo_holder {
        justify-content: space-between;
        width: 100%;
    }

    header .logo_holder .logotype svg,
    header .logo_holder .logotype img {
        height: 50px;
        width: 50px;
    }

    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.wrapper-padding header .main_header {
    background: rgb(77,76,75);
}

.wrapper-padding header .top_plank .top_plank_content {
    border-bottom: 1px solid #ffffff;
}

.wrapper-padding header .header_content {
    position: relative;
    border-radius: 23px;
    background: rgb(45,45,44);
    padding: 15px 35px;
    justify-content: space-around;
    bottom: -25px;
    z-index: 5;
}

.wrapper-padding header .logo_holder .logotype svg,
.wrapper-padding header .logo_holder .logotype img {
    width: 60px;
    height: 60px;
}

.wrapper-padding header .menu a {
    font-weight: 700;
    font-size: 18px;
}

@media only screen and (max-width: 800px) {
    .wrapper-padding header .logo_holder .logotype svg,
    .wrapper-padding header .logo_holder .logotype img {
        width: 45px;
        height: 45px;
    }

    .wrapper-padding header .logo_holder {
        justify-content: center;
        width: 100%;
        margin-bottom: 12px;
        position: relative;
        z-index: 95;
    }

    .wrapper-padding header .menu {
        padding-top: 35px;
        top: 0;
        border-radius: 40px;
        align-items: center;
    }
}.study_method {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(77,76,75) 0%, rgb(45,45,44) 100%);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}

.study_method .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.study_method h2 {
    margin-bottom: 24px;
    font-size: 38px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.study_method p {
    font-size: 16px;
    color: #000000;
    margin: 0 auto 40px;
    line-height: 1.6;
}

@media only screen and (max-width: 800px) {
    .study_method {
        padding: 30px 0;
    }

    .study_method .holder {
        padding: 20px;
    }

    .study_method h2 {
        font-size: 28px;
    }


}

.wrapper-padding .study_method {
    position: relative;
    border-bottom: 4px solid rgb(77,76,75);
    margin-bottom: 20px;
    padding: 20px;
    background: rgb(129,127,125);
    backdrop-filter: blur(5px);
}

.wrapper-padding .study_method::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 8px;
    background: rgb(45,45,44);
    border-left: 12px solid #ffffff;
    bottom: -4px;
    right: 50%;
    transform: translateX(50%);
}

.wrapper-padding .study_method h2 {
    color: rgb(77,76,75);
    margin-bottom: 40px;
}
.title_greeting {
    width: 100%;
    padding: 40px 20px;
    background: rgb(129,127,125);
}

.title_greeting .title_page_holder {
    width: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center !important;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.title_greeting .style_element {
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    width: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: #ffffff;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px;
}

.title_greeting .style_element h1 {
    font-family: Merriweather, sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: rgb(77,76,75);
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.title_greeting .style_element h3 {
    font-family: Merriweather, sans-serif;
    font-size: 33px;
    font-weight: 600;
    color: rgb(45,45,44);
    margin-bottom: 15px;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.title_greeting .style_element p {
    font-family: Merriweather, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .title_greeting .title_page_holder {
        min-height: 400px;
    }

    .title_greeting .style_element {
        padding: 40px 20px;
    }

    .title_greeting .style_element h1 {
        font-size: 24px;
    }

    .title_greeting .style_element h3 {
        font-size: 18px;
    }

    .title_greeting .style_element p {
        font-size: 14px;
    }
}

.wrapper-padding .title_greeting {
    padding: 0;
}

.wrapper-padding .title_greeting .style_element {
    position: static;
    width: 80%;
    padding: 20px 40px;
    justify-content: center;
    align-items: flex-start;
    height: calc(100% + 20px);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wrapper-padding .title_greeting .title_page_holder {
    background-position: center !important;
    min-height: 500px;
    width: 100%;
    margin: auto;
    padding: 40px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding .title_greeting .title_page_holder {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-padding .title_greeting {
        padding: 0;
    }

    .wrapper-padding .title_greeting .style_element {
        width: 100%;
        height: 100%;
        position: static;
        padding: 30px 20px;
        clip-path: none;
        border-radius: 10px;
    }

    .wrapper-padding .title_greeting .title_page_holder {
        min-height: unset;
        height: auto;
    }
}
.advantages_highlights .advantages_content h2 {
    color: rgb(45,45,44);
}

.advantages_highlights .advantage_item svg, .advantages_highlights .advantage_item svg path {
    fill: rgb(77,76,75);
}

.advantages_highlights .advantage_item p {
    color: #000000;
}

.advantages_highlights .advantage_item b {
    color: rgb(77,76,75);
}

.advantages_highlights {
    padding-top: 80px;
    padding-bottom: 80px;
}

.advantages_highlights .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.advantages_highlights .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.advantages_highlights .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 31px;
    font-weight: 600;
}

.advantages_highlights .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.advantages_highlights .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.advantages_highlights .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.advantages_highlights .advantage_item svg, .advantages_highlights .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding .advantages_highlights .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .advantages_highlights .advantages_content h2 {
        font-size: 30px;
    }

    .advantages_highlights .advantages_holder {
        flex-direction: column;
    }

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

    .wrapper-padding .advantages_highlights .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-padding .advantages_highlights {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(129,127,125);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.wrapper-padding .advantages_highlights:hover {
    background-color: rgb(77,76,75,0.5);
}

.wrapper-padding .advantages_highlights .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.wrapper-padding .advantages_highlights .advantages_content h2 {
    font-size: 31px;
    font-weight: 600;
    color: rgb(45,45,44);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.wrapper-padding .advantages_highlights .advantages_description {
    font-size: 12px;
    color: #000000;
    margin-bottom: 40px;
    max-width: 800px;
}

.wrapper-padding .advantages_highlights .advantages_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-padding .advantages_highlights .advantage_item {
    background-color: #ffffff;
    padding: 30px;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    flex: 1 1 22%;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wrapper-padding .advantages_highlights .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.wrapper-padding .advantages_highlights .advantage_image {
    margin-bottom: 20px;
}

.wrapper-padding .advantages_highlights .advantage_item img,
.wrapper-padding .advantages_highlights .advantage_item svg {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease-in-out;
}

.wrapper-padding .advantages_highlights .advantage_item:hover img,
.wrapper-padding .advantages_highlights .advantage_item:hover svg {
    transform: scale(1.1);
}

.wrapper-padding .advantages_highlights .advantages_content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.wrapper-padding .advantages_highlights .advantage_item:hover h4 {
    color: rgb(45,45,44);
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding .advantages_highlights .advantage_item {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-padding .advantages_highlights {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-padding .advantages_highlights .advantages_content h2 {
        font-size: 46px;
    }

    .wrapper-padding .advantages_highlights .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .wrapper-padding .advantages_highlights .advantage_item {
        width: 90%;
        margin-bottom: 20px;
    }
}.course_description {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgb(77,76,75,0.5) 0%, rgb(45,45,44,0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.course_description h2 {
    color: #000000;
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
}
.course_description .content {
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}
.course_description h3 {
    color: rgb(77,76,75);
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.course_description p {
    color: #000000;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
}
.course_description .button {
    background: rgb(45,45,44);
    color: #ffffff;
    margin-top: 30px;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background 0.5s ease, transform 0.5s ease;
    display: inline-block;
}
.course_description .button:hover {
    background: rgb(77,76,75);
    transform: scale(1.1);
}
.course_description .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.course_description .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.course_description .course {
    padding: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.course_description .course:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(77,76,75,0.5) 0%, rgb(45,45,44,0.5) 100%);
    opacity: 0.2;
    z-index: -1;
    border-radius: 17px;
}
.course_description .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: #ffffff;
}
.course_description .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid rgb(45,45,44,0.5);
    transition: background 0.5s ease, transform 0.5s ease;
}
.course_description .photo {
    height: 350px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 17px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

@media only screen and (max-width: 800px) {
    .course_description .course {
        width: 100%;
    }
    .course_description {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.wrapper-padding .course_description .items {
    width: 100%;
}
.wrapper-padding .course_description .items .course .content {
    border-radius: 17px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.wrapper-padding .course_description .photo {
    border-radius: 17px;
    height: 500px;
    width: 100%;
    margin: 0 0 20px 0;
}
.wrapper-padding .course_description .text_holder {
    border-radius: 10px;
    border: 3px solid rgb(45,45,44);
    width: 80%;
    background: #ffffff;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: -50px;
    z-index: 1;
    position: relative;
}
.wrapper-padding .course_description h3 {
    font-size: 37px;
    font-weight: 700;
    color: rgb(77,76,75);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wrapper-padding .course_description .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-top: 35px;
    padding: 15px 40px;
    border-radius: 50px;
    background: rgb(77,76,75);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background 0.5s ease, transform 0.5s ease;
}
.wrapper-padding .course_description .button:hover {
    background: rgb(45,45,44);
    color: #ffffff;
    transform: scale(1.1);
}
@media only screen and (max-width: 800px) {
    .wrapper-padding .course_description .photo {
        width: 100%;
        height: 300px;
    }
    .wrapper-padding .course_description .text_holder {
        width: 95%;
        margin-top: -30px;
        padding: 20px;
    }
    .wrapper-padding .course_description .items .course {
        padding: 0;
    }
    .wrapper-padding .course_description h3 {
        font-size: 21px;
    }
    .wrapper-padding .course_description .items .course .content {
        padding: 10px;
    }
}
.gratDiv {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(77,76,75,0.5);
    padding: 50px 20px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid rgb(77,76,75);
}
.gratDiv .container {
    width: 100%;
    max-width: 900px;
    background-color: rgb(129,127,125);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgb(77,76,75,0.5);
}
.gratDiv h2 {
    margin-bottom: 30px;
    font-size: 47px;
    font-weight: 600;
    color: rgb(77,76,75);
    border-bottom: 3px solid rgb(45,45,44);
    padding-bottom: 10px;
    width: 100%;
    max-width: 600px;
    text-transform: uppercase;
}
.gratDiv p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    max-width: 700px;
    padding: 20px;
}
@media only screen and (max-width: 800px) {
    .gratDiv {
        padding: 30px 10px;
    }
    .gratDiv .container {
        padding: 30px;
    }
    .gratDiv h2 {
        font-size: 30px;
        padding-bottom: 8px;
    }
    .gratDiv p {
        font-size: 22px;
        padding: 15px;
    }
}
.learning_outcomes {
    padding-bottom: 80px;
    padding-top: 80px;
}

.learning_outcomes .holder {
    display: flex;
    width: 100%;
}

.learning_outcomes h2 {
    text-align: left;
    margin-bottom: 20px;
}

.learning_outcomes .photo {
    width: 50%;
    flex-shrink: 0;
}

.learning_outcomes .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.learning_outcomes ul {
    list-style: none;
}

.learning_outcomes li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.learning_outcomes svg, .learning_outcomes path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(77,76,75);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .learning_outcomes {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .learning_outcomes .holder {
        flex-direction: column;
    }

    .learning_outcomes .text_holder {
        width: 100%;
    }

    .learning_outcomes .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.wrapper-padding .learning_outcomes {
    background: rgb(77,76,75);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wrapper-padding .learning_outcomes::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 50%, rgba(255, 255, 255, 0.1) 75%);
    animation: animateGradient 5s linear infinite;
}

@keyframes animateGradient {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

.wrapper-padding .learning_outcomes .holder {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wrapper-padding .learning_outcomes .photo {
    width: 45%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    min-height: 260px;
}

.wrapper-padding .learning_outcomes .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper-padding .learning_outcomes .text_holder {
    width: 55%;
    padding: 0 40px;
}

.wrapper-padding .learning_outcomes h2 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.wrapper-padding .learning_outcomes ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wrapper-padding .learning_outcomes li {
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.wrapper-padding .learning_outcomes svg,
.wrapper-padding .learning_outcomes path {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-padding .learning_outcomes .holder {
        flex-direction: column;
        text-align: left;
        align-items: center;
    }

    .wrapper-padding .learning_outcomes .photo,
    .wrapper-padding .learning_outcomes .text_holder {
        width: 100%;
        max-width: 500px;
    }

    .wrapper-padding .learning_outcomes .text_holder {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .wrapper-padding .learning_outcomes h2 {
        font-size: calc(29px - 4px);
    }

    .wrapper-padding .learning_outcomes li {
        font-size: calc(14px - 2px);
    }
}

@media only screen and (max-width: 480px) {
    .wrapper-padding .learning_outcomes h2 {
        font-size: calc(29px - 6px);
    }

    .wrapper-padding .learning_outcomes li {
        font-size: calc(14px - 4px);
    }
}.secure_habitat {
    font-family: Merriweather, sans-serif;
    background-color: rgb(129,127,125);
    padding: 30px;
    border: 1px solid #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.secure_habitat h1 {
    font-size: 31px;
    color: #000000;
    font-weight: 700;
    margin: 20px 0;
    text-transform: uppercase;
}
.secure_habitat h2 {
    font-size: 24px;
    color: #000000;
    font-weight: 600;
    margin: 15px 0;
}
.secure_habitat h3, .secure_habitat h4, .secure_habitat h5, .secure_habitat h6 {
    font-size: 24px;
    color: #000000;
    margin: 10px 0;
}
.secure_habitat ul {
    list-style-type: square;
    color: #000000;
    padding-left: 20px;
    margin: 15px 0;
}
.secure_habitat li {
    font-size: 12px;
    line-height: 1.8;
}
@media only screen and (max-width: 800px) {
    .secure_habitat {
        padding: 20px;
    }
    .secure_habitat h1 {
        font-size: 24px;
    }
    .secure_habitat h2 {
        font-size: 20px;
    }
    .secure_habitat ul {
        font-size: 12px;
    }
}
.reach_out {
  position: relative;
  padding: 60px 0;
  background-color: rgb(129,127,125);
  font-family: Merriweather, sans-serif;
  overflow: hidden;
}
.reach_out::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.2) 25%, transparent 25%),
              linear-gradient(-45deg, rgba(0, 123, 255, 0.2) 25%, transparent 25%),
              linear-gradient(45deg, transparent 75%, rgba(0, 123, 255, 0.2) 75%),
              linear-gradient(-45deg, transparent 75%, rgba(0, 123, 255, 0.2) 75%);
  background-size: 50px 50px;
  animation: background-animation 10s linear infinite;
  z-index: 1;
}
@keyframes background-animation {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, -50px -50px, -50px 50px, 50px -50px;
  }
}
.reach_out h3 {
  color: rgb(77,76,75);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.reach_out .info h5 {
  color: rgb(45,45,44);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.reach_out .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.reach_out .holder {
  display: flex;
  justify-content: space-between;
}
.reach_out .info, .reach_out .form {
  background: #ffffff;
  border-radius: 19px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  width: calc(50% - 10px);
}
.reach_out .info .logo_holder {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reach_out .info .logo_holder svg,
.reach_out .info .logo_holder img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  fill: rgb(77,76,75);
}
.reach_out .info span {
  color: #000000;
  font-size: 17px;
}
.reach_out .info .contact_info {
  margin-top: 20px;
}
.reach_out .info .contact_info div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.reach_out .info .contact_info svg,
.reach_out .info .contact_info svg path {
  fill: rgb(77,76,75);
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.reach_out .info .contact_info span {
  color: #000000;
}
.reach_out .form form {
  display: flex;
  flex-direction: column;
}
.reach_out .form form input,
.reach_out .form form .button {
  padding: 10px 15px;
  font-size: 17px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid rgb(77,76,75,0.5);
  outline: none;
}
.reach_out .form form input:focus,
.reach_out .form form .button:hover {
  border-color: rgb(77,76,75);
  box-shadow: 0 0 10px rgb(77,76,75,0.5);
}
.reach_out .form form .button {
  background: rgb(77,76,75);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}
.reach_out .form form .name_holder {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.reach_out .form form .name_holder input {
  width: 50%;
}
.reach_out .agree {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reach_out .agree input[type="checkbox"] {
  margin-right: 10px;
  margin-bottom: 0;
  width: auto;
}
.reach_out .agree label {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 17px;
}
.reach_out .agree a {
  color: rgb(77,76,75);
  text-decoration: underline;
}
@media (max-width: 900px) {
  .reach_out .form form input {
    width: 100%;
  }
  .reach_out .form form .name_holder {
    flex-wrap: wrap;
    gap:unset;
  }
  .reach_out .holder {
    flex-direction: column;
    align-items: center;
  }
  .reach_out .info,
  .reach_out .form {
    margin-bottom: 20px;
    width: 100%;
  }
  .reach_out .info {
    padding: 20px;
  }
  .reach_out .form {
    padding: 20px;
  }
}
footer {
  background-color: #f0f0f0;
  padding: 40px 0;
  color: #333;
  font-family: Merriweather, 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;
  }
}
.client_testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
}

.client_testimonials h2 {
    color: rgb(45,45,44);
}

.client_testimonials .review {
    background: #ffffff;
    border-radius: 20px;
}

.client_testimonials .review span {
    color: rgb(77,76,75);
}

.client_testimonials .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client_testimonials .holder h2 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 35px;
    font-weight: 600;
}

.client_testimonials .reviews {
    display: flex;
    justify-content: center;
    width: 100%;
}

.client_testimonials .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;
}

.client_testimonials .review span {
    text-align: center;
}

.client_testimonials .review p {
    text-align: center;
}

.client_testimonials .photo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.client_testimonials .text {
    display: flex;
    flex-direction: column;
}

.client_testimonials .review span {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}

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

    .client_testimonials .review {
        max-width: unset;
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

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

    .client_testimonials .holder h2 {
        font-size: 30px;
    }
}

.wrapper-padding .client_testimonials .reviews {
    margin-top: 20px;
}

.wrapper-padding .client_testimonials .review {
    border-radius: 0;
    background: none;
    padding: 2px 10px 0;
    margin: 0;
    margin-bottom: 20px;
}

.wrapper-padding .client_testimonials .review p {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.wrapper-padding .client_testimonials .holder h2 {
    font-size: 40px;
    font-weight: 400;
}

.wrapper-padding .client_testimonials .photo {
    width: 120px;
    height: 120px;
}

.wrapper-padding .client_testimonials .review span {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .wrapper-padding .client_testimonials .holder h2 {
        font-size: 36px;
    }
}