* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    height: 100%;
    font-family: Nunito, sans-serif;
    color: #000000;
}
.wrapper-viewport_6 {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(228,252,249);
}
@media only screen and (max-width: 800px)  {
    .container {
        width: 100%;
        padding: 0 12px;
    }
}.company_info_2 .holder {
    background-size: cover;
}

.company_info_2 .style_element {
    background: #ffffff;
}

.company_info_2 {
    padding-bottom: 80px;
    padding-top: 80px;
}

.company_info_2 h2 {
    color: rgb(172,230,246);
}

.company_info_2 span {
    color: rgb(75,137,172);
}

.company_info_2 p {
    color: #000000;
}

.company_info_2 .holder {
    display: flex;
    justify-content: flex-end;
    padding: 40px;
    height: auto;
}

.company_info_2 .style_element {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    min-width: 400px;
    padding: 20px;
}

.company_info_2 .caption_holder {
    display: flex;
    justify-content: flex-end;
}

.company_info_2 h2 {
    margin-bottom: 8px;
    font-size: 33px;
    font-weight: 600;
}

.company_info_2 span {
    margin-bottom: 16px;
    font-size: 19px;
    font-weight: 600;
}

.company_info_2 p {
    font-size: 17px;
    font-weight: 300;
}

@media only screen and (max-width: 600px) {
    .company_info_2 .holder {
        padding: 0px;
    }

    .company_info_2 .style_element {
        width: 100%;
        min-width: unset;
    }

    .company_info_2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .company_info_2 h2 {
        font-size: 30px;
    }
}

.wrapper-viewport_6 .company_info_2 .holder .photo {
    position: absolute;
    right: 0;
    width: 600px;
    height: 500px;
    z-index: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 18px 0px;
}

.wrapper-viewport_6 .company_info_2 .caption_holder {
    position: relative;
    justify-content: flex-start;
    align-items: center;
}

.wrapper-viewport_6 .company_info_2 .holder {
    padding: 0;
}

.wrapper-viewport_6 .company_info_2 .style_element {
    width: 60%;
    position: relative;
    z-index: 1;
    padding: 18px 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 18px 0px;
    border-bottom: 8px solid rgb(75,137,172);
}

.wrapper-viewport_6 .company_info_2 h2 {
    margin: 8px 0;
    font-size: 40px;
}

.wrapper-viewport_6 .company_info_2 p {
    margin-top: 25px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 20px;
}

@media only screen and (max-width: 800px) {
    .wrapper-viewport_6 .company_info_2 .caption_holder {
        flex-direction: column;
    }

    .wrapper-viewport_6 .company_info_2 .style_element {
        width: 90%;
        margin-top: -40px;
        padding: 12px;
    }

    .wrapper-viewport_6 .company_info_2 .holder .photo {
        top: 0;
        width: 100%;
        height: 220px;
        position: relative;
    }
}.learning_process_3 {
    padding: 120px 0;
    background: rgb(172,230,246);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.learning_process_3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: rgb(75,137,172,0.5);
    transform: translateX(-50%) rotate(15deg);
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.learning_process_3:hover::before {
    transform: translateX(-50%) rotate(25deg);
}

.learning_process_3 .container {
    position: relative;
    z-index: 1;
}

.learning_process_3 .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: auto;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

.learning_process_3 h2 {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.learning_process_3 p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 800px) {
    .learning_process_3 {
        padding: 60px 20px;
    }

    .learning_process_3 .holder {
        width: 90%;
    }

    .learning_process_3 h2 {
        font-size: 21px;
    }

    .learning_process_3 p {
        font-size: 15px;
    }
}

.wrapper-viewport_6 .learning_process_3 .holder {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    animation: none;
}

.wrapper-viewport_6 .learning_process_3 h2 {
    font-size: 47px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
}

.wrapper-viewport_6 .learning_process_3 p {
    text-align: left;
    font-size: 15px;
    opacity: 1;
    animation: none;
}

@media only screen and (max-width: 800px) {
    .wrapper-viewport_6 .learning_process_3 {
        padding: 20px 10px;
    }

    .wrapper-viewport_6 .learning_process_3 .holder {
        width: 100%;
        padding: 20px 10px;
    }

    .wrapper-viewport_6 .learning_process_3 h2 {
        font-size: 32px;
    }
}
footer {
    background: rgb(172,230,246);
    color: #ffffff;
}

footer .copyright {
    background: rgb(75,137,172);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(75,137,172);
}

footer h5 {
    color: rgb(75,137,172);
}

footer .menu a {
    color: #ffffff;
}

footer .copyright_info {
    color: #ffffff;
}

footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .contact_info div svg, footer .contact_info div svg path {
    fill: #ffffff;
}

footer .contact_info div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 23px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 14px;
}

@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;
    }

    footer .contact_info {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.wrapper-viewport_6 footer .footer_info {
    flex-direction: column;
    align-items: flex-start;
}

.wrapper-viewport_6 footer .menu_holder {
    flex-direction: row;
}

.wrapper-viewport_6 footer .footer {
    padding: 0;
    padding-top: 48px;
}

.wrapper-viewport_6 footer {
    padding-bottom: 48px;
}

.wrapper-viewport_6 footer .menu {
    margin-top: 24px;
}

.wrapper-viewport_6 footer .menu a {
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    margin-right: 30px;
}

.wrapper-viewport_6 footer .menu a:hover {
    color: rgb(75,137,172);
}

.wrapper-viewport_6 footer .logo_holder svg, .wrapper-viewport_6 footer .logo_holder img {
    width: 56px;
    height: 56px;
    margin: 0;
}

.wrapper-viewport_6 footer .copyright {
    background: rgb(172,230,246);
    padding: 0;
    padding-top: 24px;
}

@media only screen and (max-width: 800px) {
    .wrapper-viewport_6 footer .footer_info {
        padding: 0;
    }

    .wrapper-viewport_6 footer .menu a {
        font-size: 20px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .wrapper-viewport_6 footer .menu {
        margin-top: 16px;
    }

    .wrapper-viewport_6 footer .menu_holder {
        flex-direction: column;
    }
}
header .main_header {
    background: #ffffff;
    color: #000000;
}

header .logo_name {
    color: rgb(75,137,172);
    font-size: 20px;
    font-weight: 700;
}

header .logo_desc {
    color: rgb(172,230,246);
}

header .logo_holder svg, header .logo_holder svg path, header .logo_holder img {
    fill: rgb(75,137,172);
}

header .menu a {
    color: rgb(172,230,246);
}

header .menu a:hover {
    color: rgb(75,137,172);
}

header .menu a.active {
    border: 2px solid rgb(172,230,246);
    border-radius: 100px;
}

header .menu a.active:hover {
    color: #ffffff;
    background: rgb(75,137,172);
    border: 2px solid rgb(75,137,172);
}

header {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .175);
}

header .main_header {
    width: 100%;
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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: 700;
}

header .logo_holder .logo_desc {
    text-transform: uppercase;
}

header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

header .menu {
    display: flex;
}

header .menu a {
    text-decoration: none;
    padding: 12px 25px;
    font-size: 12px;
}

body .wrapper-viewport_6 header .opened {
    display: flex;
}

@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }

    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 30px;
        position: static;
        top: 100%;
        left: 0;
        z-index: 90;
        background: #ffffff;
        width: 100%;
    }

    header .menu a.active {
        border: none;
    }

    header .menu a.active:hover {
        color: rgb(75,137,172);
        background: none;
        border: none;
    }

    header .main_header {
        position: relative;
        z-index: 99;
    }

    header .logo_name {
        line-height: 28px;
    }

    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    header .logo_holder .logo_desc {
        display: none;
    }

    header .logo_holder .logotype {
        margin-right: 5px;
    }

    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 40px;
        height: 40px;
    }

    header .logo_name {
        text-align: left;
        font-size: 20px;
        text-align: center;
    }

    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.wrapper-viewport_6 header .header_content {
    border-radius: 60px;
    box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 99;
}

.wrapper-viewport_6 header .main_header {
    padding: 10px 0;
}

.wrapper-viewport_6 header .logo_holder {
    background: rgb(172,230,246,0.5);
    border-radius: 60px;
}

.wrapper-viewport_6 header .logo_holder .logotype svg, .wrapper-viewport_6 header .logo_holder .logotype img {
    height: 44px;
    width: 44px;
}

.wrapper-viewport_6 .logotype {
    padding: 5px 35px;
}

.wrapper-viewport_6 header .menu {
    padding-right: 35px;
}

.wrapper-viewport_6 header .menu a {
    padding: 18px 0;
    margin: 0 15px;
    position: relative;
}

.wrapper-viewport_6 header .menu a:hover {
    color: rgb(172,230,246);
}

.wrapper-viewport_6 header .menu a:before {
    content: "";
    left: 0;
    bottom: -2px;
    height: 5px;
    width: 0;
    border-radius: 30px;
    background-color: rgb(75,137,172);
    position: absolute;
    display: block;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.wrapper-viewport_6 header .menu a:hover:before {
    width: 100%;
}

@media only screen and (max-width: 800px) {
    .wrapper-viewport_6 header .menu {
        padding: 10px;
        align-items: center;
        border-radius: 10px;
    }

    .wrapper-viewport_6 header .header_content {
        border-radius: 10px;
        align-items: center;
        padding: 0;

    }

    .wrapper-viewport_6 header .logo_holder {
        border-radius: 10px;
        display: flex;
        justify-content: center;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .wrapper-viewport_6 header .menu a {
        padding: 10px 0;
    }
}
.benefits_summary_7 .advantages_content h2 {
    color: rgb(172,230,246);
}

.benefits_summary_7 .advantage_item svg, .benefits_summary_7 .advantage_item svg path {
    fill: rgb(75,137,172);
}

.benefits_summary_7 .advantage_item p {
    color: #000000;
}

.benefits_summary_7 .advantage_item b {
    color: rgb(75,137,172);
}

.benefits_summary_7 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_summary_7 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_summary_7 .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_summary_7 .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 600;
}

.benefits_summary_7 .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_summary_7 .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_summary_7 .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_summary_7 .advantage_item svg, .benefits_summary_7 .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-viewport_6 .benefits_summary_7 .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_summary_7 .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_summary_7 .advantages_holder {
        flex-direction: column;
    }

    .benefits_summary_7 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-viewport_6 .benefits_summary_7 .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-viewport_6 .benefits_summary_7 {
    background: rgb(172,230,246);
    padding: 60px 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.wrapper-viewport_6 .benefits_summary_7 .advantages_content h2 {
    font-size: 36px;
    font-weight: 700;
    color: rgb(75,137,172);
    text-align: left;
    margin-bottom: 40px;
    border-left: 5px solid rgb(75,137,172);
    padding-left: 15px;
}

.wrapper-viewport_6 .benefits_summary_7 .advantages_description {
    color: #ffffff;
    text-align: justify;
    font-size: 17px;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgb(75,137,172,0.5);
    border-radius: 10px;
}

.wrapper-viewport_6 .benefits_summary_7 .advantages_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-viewport_6 .benefits_summary_7 .advantage_item {
    background: #ffffff;
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    border-radius: 10px;
    border: 1px solid rgb(75,137,172,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wrapper-viewport_6 .benefits_summary_7 .advantage_image img,
.wrapper-viewport_6 .benefits_summary_7 .advantage_image svg {
    width: 80px;
    height: 80px;
    display: block;
    margin-bottom: 20px;
}

.wrapper-viewport_6 .benefits_summary_7 .advantages_content h4 {
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    color: rgb(75,137,172);
    margin-top: 10px;
}

.wrapper-viewport_6 .benefits_summary_7 .advantage_item p {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin-top: 10px;
    text-align: center;
}

.wrapper-viewport_6 .benefits_summary_7 .advantage_item p b {
    color: rgb(75,137,172);
}

@media only screen and (max-width: 1200px) {
    .wrapper-viewport_6 .benefits_summary_7 .advantages_holder .advantage_item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-viewport_6 .benefits_summary_7 .advantage_item {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .wrapper-viewport_6 .benefits_summary_7 .advantages_content h2 {
        font-size: 22px;
    }

    .wrapper-viewport_6 .benefits_summary_7 {
        padding: 40px 20px;
    }
}.customer_experience_2 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.customer_experience_2 h2 {
    color: rgb(172,230,246);
}

.customer_experience_2 .review {
    background: #ffffff;
    border-radius: 20px;
}

.customer_experience_2 .review span {
    color: rgb(75,137,172);
}

.customer_experience_2 .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customer_experience_2 .holder h2 {
    text-align: center;
    margin-bottom: 36px;
    font-size: 33px;
    font-weight: 600;
}

.customer_experience_2 .reviews {
    display: flex;
    justify-content: center;
    width: 100%;
}

.customer_experience_2 .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;
}

.customer_experience_2 .review span {
    text-align: center;
}

.customer_experience_2 .review p {
    text-align: center;
}

.customer_experience_2 .photo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.customer_experience_2 .text {
    display: flex;
    flex-direction: column;
}

.customer_experience_2 .review span {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
}

@media only screen and (max-width: 800px) {
    .customer_experience_2 .reviews {
        flex-direction: column;
    }

    .customer_experience_2 .review {
        max-width: unset;
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

    .customer_experience_2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .customer_experience_2 .holder h2 {
        font-size: 30px;
    }
}

.wrapper-viewport_6 .customer_experience_2 .review {
    background: none;
    border-radius: 0;

}

.wrapper-viewport_6 .customer_experience_2 .photo {
    width: 125px;
    height: 125px;
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
    margin-top: 40px;
}

.wrapper-viewport_6 .customer_experience_2 .photo::before {
    content: "";
    position: absolute;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    top: -40px;
    left: -40px;
    border: 10px solid rgb(75,137,172);
    border-radius: 50%;
    z-index: 1;

}

.wrapper-viewport_6 .customer_experience_2 .review span {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-top: 20px;
}

.wrapper-viewport_6 .customer_experience_2 .review p {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.wrapper-viewport_6 .customer_experience_2 .holder h2 {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
}.privacy_guardhouse_8 {
    padding: 30px;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
.privacy_guardhouse_8 h1 {
    margin-top: 30px;
    margin-bottom: 20px;
}
.privacy_guardhouse_8 h2 {
    margin-top: 25px;
    margin-bottom: 15px;
}
.privacy_guardhouse_8 h3, .privacy_guardhouse_8 h4, .privacy_guardhouse_8 h5, .privacy_guardhouse_8 h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}
.privacy_guardhouse_8 ul, .privacy_guardhouse_8 ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 10px 0;
}
.privacy_guardhouse_8 li {
    margin-bottom: 10px;
}
.privacy_guardhouse_8 section {
    background: none;
}
.privacy_guardhouse_8 p, .privacy_guardhouse_8 span, .privacy_guardhouse_8 div {
    line-height: 20px;
    margin-bottom: 5px;
}
@media only screen and (max-width: 800px) {
    .privacy_guardhouse_8 {
        padding: 20px 0;
    }
}.program_information_6 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.program_information_6 h2 {
    color: rgb(172,230,246);
}

.program_information_6 .content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgb(0 0 0 / 18%);
}

.program_information_6 h3 {
    color: rgb(75,137,172);
}

.program_information_6 p {
    color: #000000;
}

.program_information_6 .button {
    background: rgb(172,230,246);
    color: #ffffff;
    margin-top: 30px;
    width: fit-content;
}

.program_information_6 .button:hover {
    background: rgb(75,137,172);
}

.program_information_6 .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.program_information_6 .items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.program_information_6 .course {
    padding: 12px;
    max-width: 100%;
}

.program_information_6 .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
}

.program_information_6 .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.program_information_6 h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
}

.program_information_6 .photo {
    height: 500px;
    width: calc(100% - 60px);
    margin-top: 30px;
}

.program_information_6 .text_holder {
    padding: 30px;
}

.program_information_6 h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.program_information_6 p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
}

.program_information_6 .button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 25px;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .program_information_6 .items {
        flex-direction: column;
    }

    .program_information_6 h2 {
        font-size: 30px;
    }

    .program_information_6 h3 {
        font-size: 26px;
    }

    .program_information_6 .course {
        max-width: unset;
        width: 100%;
    }

    .program_information_6 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wrapper-viewport_6 .program_information_6 .container {
    width: 100%;
    padding: 0;
}

.wrapper-viewport_6 .program_information_6 .items {
    width: 100%;
}

.wrapper-viewport_6 .program_information_6 .items .course {
    padding: 0;
    width: 100%;
}

.wrapper-viewport_6 .program_information_6 .photo {
    height: 250px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 30% !important;
}

.wrapper-viewport_6 .program_information_6 .course .content {
    border-radius: 0 !important;
    box-shadow: none;
}

.wrapper-viewport_6 .program_information_6 .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
}

.wrapper-viewport_6 .program_information_6 p {
    margin-top: 20px;
    text-align: center;
}

.wrapper-viewport_6 .program_information_6 .button {
    margin-top: 30px;
    width: fit-content;
}

.wrapper-viewport_6 .program_information_6 h3 {
    text-align: center;
}

@media only screen and (max-width: 800px) {

}.landing_page_6 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.landing_page_6 .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(75,137,172);
    transition: transform 0.3s ease;
}
.landing_page_6 .style_element {
    position: relative;
    width: 70%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 11px;
    text-align: left;
    transition: background 0.3s ease;
}
.landing_page_6 .style_element h1 {
    font-size: 42px;
    font-weight: 700;
    color: rgb(75,137,172);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgb(75,137,172);
}
.landing_page_6 .style_element h3 {
    font-size: 23px;
    font-weight: 600;
    color: rgb(172,230,246);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgb(172,230,246);
}
.landing_page_6 .style_element p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.landing_page_6 .style_element::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(75,137,172,0.5) 10%, transparent 70%);
    z-index: 0;
    opacity: 0.6;
    filter: blur(10px);
    transition: all 0.3s ease;
}
.landing_page_6 .style_element::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(172,230,246,0.5) 10%, transparent 70%);
    z-index: 0;
    opacity: 0.6;
    filter: blur(10px);
    transition: all 0.3s ease;
}
@media only screen and (max-width: 800px) {
    .landing_page_6 .title_page_holder {
        min-height: 320px;
        height: auto;
    }
    .landing_page_6 .style_element {
        width: 90%;
        padding: 20px;
    }
    .landing_page_6 .style_element h1 {
        font-size: 34px;
    }
    .landing_page_6 .style_element h3 {
        font-size: 20px;
    }
    .landing_page_6 .style_element p {
        font-size: 15px;
    }
}
.wrapper-viewport_6 .landing_page_6 .style_element {
    position: static;
    height: 100%;
    padding: 40px;
    z-index: 1;
    width: 60%;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    padding: 50px 30px;
    top: 0;
    transition: all 0.3s ease;
}

.wrapper-viewport_6 .landing_page_6 .title_page_holder {
    height: 450px;
    min-height: unset;
    background-position: center;
    background-size: cover;
    justify-content: flex-start;
}
.wrapper-viewport_6 .landing_page_6 .style_element h1 {
    text-align: left;
    font-size: 36px;
    position: relative;
    z-index: 1;
    color: rgb(75,137,172);
    text-shadow: 0 0 10px #ffffff;
}
.wrapper-viewport_6 .landing_page_6 .style_element h3 {
    text-align: left;
    font-size: 18px;
    position: relative;
    z-index: 1;
    color: rgb(172,230,246);
    text-shadow: 0 0 10px rgb(172,230,246);
}
.wrapper-viewport_6 .landing_page_6 .style_element p {
    text-align: left;
    font-size: 18px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1200px) {
    .wrapper-viewport_6 .landing_page_6 .style_element {
        padding: 30px;
    }
}
@media only screen and (max-width: 800px) {
    .wrapper-viewport_6 .landing_page_6 .style_element {
        width: 100%;
        padding: 80px 30px;
    }
    .wrapper-viewport_6 .landing_page_6 .style_element::after {
        display: none;
    }
    .wrapper-viewport_6 .landing_page_6 .title_page_holder {
        height: auto;
    }
}.contact_information_0 {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(75,137,172) 0%, rgb(75,137,172,0.5) 100%);
    position: relative;
    overflow: hidden;
}

.contact_information_0::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgb(172,230,246);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(50px);
}

.contact_information_0::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgb(172,230,246);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
}

.contact_information_0 h3 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.contact_information_0 .form {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.contact_information_0 form input,
.contact_information_0 form textarea {
    color: #000000;
    background: rgb(75,137,172,0.5);
    border-radius: 10px;
    border: 1px solid rgb(172,230,246,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.contact_information_0 form input:focus,
.contact_information_0 form textarea:focus {
    border-color: rgb(75,137,172);
    box-shadow: 0 0 10px rgb(75,137,172,0.5);
    outline: none;
}

.contact_information_0 form .button {
    background: rgb(75,137,172);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.contact_information_0 form .button:hover {
    background: rgb(172,230,246);
}

.contact_information_0 .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact_information_0 .holder > div {
    width: 48%;
    padding: 10px;
}

.contact_information_0 .name_holder {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contact_information_0 .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_information_0 .agree label {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.contact_information_0 .agree a {
    color: rgb(75,137,172);
    margin-left: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_information_0 .agree a:hover {
    color: rgb(172,230,246);
}

.contact_information_0 .form_text {
    margin-bottom: 30px;
    font-size: 12px;
    text-align: center;
    color: #ffffff;
}

.contact_information_0 .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

@media only screen and (max-width: 800px) {
    .contact_information_0 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact_information_0 .holder {
        flex-direction: column;
    }

    .contact_information_0 .holder > div {
        width: 100%;
    }

    .contact_information_0 form .button {
        width: 100%;
    }

    .contact_information_0 h3 {
        font-size: 36px;
    }
}

.wrapper-viewport_6 .contact_information_0 {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.wrapper-viewport_6 .contact_information_0 .form {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.wrapper-viewport_6 .contact_information_0 .holder {
    justify-content: center;
    position: relative;
}


.wrapper-viewport_6 .contact_information_0 .form_text {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 12px;
    color: #000000;
}

.wrapper-viewport_6 .contact_information_0 h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.wrapper-viewport_6 .contact_information_0 .agree a {
    text-decoration: none;
    color: rgb(75,137,172);
}

.wrapper-viewport_6 .contact_information_0 form .button {
    background: rgb(75,137,172);
    border: none;
    font-size: 18px;
    font-weight: 600;
    width: auto;
    margin: 20px auto 0;
    display: block;
    text-align: center;
}