* {
    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: Lato, sans-serif;
    color: #000000;
}
.panel-container_358 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(236,244,243);
}
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;
    }
}footer {
    background-color: rgb(0,106,113);
    color: #ffffff;
    font-family: Lato, sans-serif;
    padding: 60px 0;
    border-top: 4px solid rgb(104,176,171);
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
footer .footer_info {
    flex: 1 1 300px;
}
footer .logo_holder {
    margin-bottom: 20px;
    text-align: center;
}
footer .logo_holder svg, footer .logo_holder img {
    max-height: 100px;
    width: auto;
    fill: rgb(104,176,171);
}
footer .menu {
    margin-bottom: 20px;
}
footer .menu_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
footer .menu a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: rgb(0,106,113);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
footer .menu a:hover {
    background-color: rgb(104,176,171);
    transform: scale(1.05);
}
footer .copyright {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgb(104,176,171);
}
footer .copyright_info {
    font-size: 16px;
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}
footer .copyright_info a:hover {
    color: rgb(0,106,113);
}
@media (max-width: 1200px) {
    footer .container {
        flex-direction: column;
        align-items: center;
    }
    footer .footer_info {
        text-align: center;
    }
    footer .menu_holder {
        justify-content: center;
    }
}
@media (max-width: 800px) {
    footer {
        padding: 40px 0;
    }
    footer .menu a {
        padding: 8px 12px;
        font-size: calc(18px * 0.9);
    }
    footer .copyright_info {
        font-size: calc(16px * 0.9);
    }
}
.contact_form_section_825 {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(104,176,171) 0%, rgb(0,106,113) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact_form_section_825::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgb(104,176,171,0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.contact_form_section_825 h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact_form_section_825 .form {
    background: #ffffff;
    border-radius: 21px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact_form_section_825 form input,
.contact_form_section_825 form textarea {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgb(0,106,113,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 24px;
    outline: none;
    transition: border 0.3s ease, background 0.3s ease;
}

.contact_form_section_825 form input:focus,
.contact_form_section_825 form textarea:focus {
    border: 1px solid rgb(104,176,171);
    background: rgb(104,176,171,0.5);
}

.contact_form_section_825 form .button {
    background: rgb(104,176,171);
    color: #ffffff;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    text-align: center;
    display: inline-block;
}

.contact_form_section_825 form .button:hover {
    background: rgb(0,106,113);
    transform: scale(1.05);
}

.contact_form_section_825 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_form_section_825 .name_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact_form_section_825 .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000000;
}

.contact_form_section_825 .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

.contact_form_section_825 .agree label {
    display: flex;
    align-items: center;
}

.contact_form_section_825 .agree a {
    margin-left: 5px;
    color: rgb(104,176,171);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact_form_section_825 .agree a:hover {
    color: rgb(0,106,113);
}

.contact_form_section_825 .form_text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .contact_form_section_825 {
        padding: 60px 0;
    }

    .contact_form_section_825 .form {
        padding: 30px;
    }

    .contact_form_section_825 h3 {
        font-size: 41px;
    }
}

.panel-container_358 .contact_form_section_825 {
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.panel-container_358 .contact_form_section_825 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.panel-container_358 .contact_form_section_825 .form {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    padding: 50px;
    width: 60%;
    max-width: 800px;
}

.panel-container_358 .contact_form_section_825 .form_text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: #000000;
}

.panel-container_358 .contact_form_section_825 form input {
    background: rgb(104,176,171,0.5);
    border: 1px solid rgb(0,106,113);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.panel-container_358 .contact_form_section_825 form input:focus {
    border-color: rgb(104,176,171);
}

.panel-container_358 .contact_form_section_825 form label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.panel-container_358 .contact_form_section_825 .name_holder {
    flex-direction: column;
    width: 100%;
}

.panel-container_358 .contact_form_section_825 h3 {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.panel-container_358 .contact_form_section_825 .agree {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #000000;
}

.panel-container_358 .contact_form_section_825 .agree a {
    color: rgb(104,176,171);
    text-decoration: underline;
}

.panel-container_358 .contact_form_section_825 form .button {
    background: rgb(0,106,113);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 50%;
    margin: 20px auto 0;
    display: inline-block;
}

.panel-container_358 .contact_form_section_825 form .button:hover {
    background: rgb(104,176,171);
    transform: scale(1.05);
}

@media only screen and (max-width: 800px) {
    .panel-container_358 .contact_form_section_825 .form {
        padding: 30px;
        width: 90%;
    }

    .panel-container_358 .contact_form_section_825 form .button {
        width: 100%;
    }
}.educational_gains_415 {
    padding-bottom: 80px;
    padding-top: 80px;
}

.educational_gains_415 .holder {
    display: flex;
    width: 100%;
}

.educational_gains_415 h2 {
    text-align: left;
    margin-bottom: 20px;
}

.educational_gains_415 .photo {
    width: 50%;
    flex-shrink: 0;
}

.educational_gains_415 .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.educational_gains_415 ul {
    list-style: none;
}

.educational_gains_415 li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.educational_gains_415 svg, .educational_gains_415 path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(104,176,171);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .educational_gains_415 {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .educational_gains_415 .holder {
        flex-direction: column;
    }

    .educational_gains_415 .text_holder {
        width: 100%;
    }

    .educational_gains_415 .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.panel-container_358 .educational_gains_415 {
    background: linear-gradient(135deg, rgb(104,176,171,0.5) 0%, rgb(0,106,113,0.5) 100%);
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.panel-container_358 .educational_gains_415::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgb(104,176,171) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    opacity: 0.3;
}

.panel-container_358 .educational_gains_415 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.panel-container_358 .educational_gains_415 .holder {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 23px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.panel-container_358 .educational_gains_415 .photo {
    flex: 1;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 23px;
    border-bottom-left-radius: 23px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.panel-container_358 .educational_gains_415 .photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.4));
    border-top-left-radius: 23px;
    border-bottom-left-radius: 23px;
}

.panel-container_358 .educational_gains_415 .text_holder {
    flex: 1;
    padding: 60px;
    background: #ffffff;
    border-top-right-radius: 23px;
    border-bottom-right-radius: 23px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.panel-container_358 .educational_gains_415 .text_holder::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px dashed rgb(104,176,171);
    border-radius: 10px;
}

.panel-container_358 .educational_gains_415 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.panel-container_358 .educational_gains_415 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-container_358 .educational_gains_415 li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
}

.panel-container_358 .educational_gains_415 svg,
.panel-container_358 .educational_gains_415 path {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    fill: rgb(0,106,113);
    transition: fill 0.3s ease;
}

.panel-container_358 .educational_gains_415 li:hover svg,
.panel-container_358 .educational_gains_415 li:hover path {
    fill: rgb(104,176,171);
}

@media only screen and (max-width: 1200px) {
    .panel-container_358 .educational_gains_415 .container {
        flex-direction: column;
    }

    .panel-container_358 .educational_gains_415 .photo {
        min-height: 400px;
        border-radius: 23px 23px 0 0;
    }

    .panel-container_358 .educational_gains_415 .text_holder {
        border-radius: 0 0 23px 23px;
        padding: 40px;
    }

    .panel-container_358 .educational_gains_415 h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 800px) {
    .panel-container_358 .educational_gains_415 {
        padding: 60px 10px;
    }

    .panel-container_358 .educational_gains_415 .holder {
        flex-direction: column;
    }

    .panel-container_358 .educational_gains_415 .photo {
        min-height: 250px;
        border-radius: 10px 10px 0 0;
    }

    .panel-container_358 .educational_gains_415 .text_holder {
        padding: 20px;
        border-radius: 0 0 10px 10px;
    }

    .panel-container_358 .educational_gains_415 h2 {
        font-size: 19px;
    }

    .panel-container_358 .educational_gains_415 li {
        font-size: 13px;
    }

    .panel-container_358 .educational_gains_415 svg,
    .panel-container_358 .educational_gains_415 path {
        width: 30px;
        height: 30px;
    }
}.course_demographic_465 {
    padding-bottom: 80px;
    padding-top: 80px;
}

.course_demographic_465 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course_demographic_465 ul {
    list-style: none;
}

.course_demographic_465 ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.course_demographic_465 ul svg, .course_demographic_465 ul svg path {
    fill: rgb(104,176,171);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.course_demographic_465 h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .course_demographic_465 {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.panel-container_358 .course_demographic_465 .holder {
    background: linear-gradient(135deg, rgb(104,176,171), rgb(0,106,113));
    width: 100%;
    padding: 70px 90px;
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.panel-container_358 .course_demographic_465 .holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(104,176,171,0.5);
    opacity: 0.1;
    z-index: 1;
}

.panel-container_358 .course_demographic_465 ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 2;
    position: relative;
}

.panel-container_358 .course_demographic_465 ul li {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    font-size: 14px;
    border-left: 4px solid rgb(104,176,171);
    margin-bottom: 10px;
    transition: background 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.panel-container_358 .course_demographic_465 ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.panel-container_358 .course_demographic_465 ul li:hover {
    background: rgb(104,176,171,0.5);
    border-color: rgb(0,106,113);
}

.panel-container_358 .course_demographic_465 ul li:hover::after {
    opacity: 1;
}

.panel-container_358 .course_demographic_465 ul svg, .panel-container_358 .course_demographic_465 ul svg path {
    width: 28px;
    height: 28px;
    margin-right: 20px;
    position: static;
    flex-shrink: 0;
    fill: rgb(104,176,171);
}

.panel-container_358 .course_demographic_465 h2 {
    font-size: 34px;
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-align: center;
    z-index: 2;
    position: relative;
}

@media only screen and (max-width: 800px) {
    .panel-container_358 .course_demographic_465 .holder {
        padding: 40px 20px;
    }

    .panel-container_358 .course_demographic_465 ul li {
        width: 100%;
        margin-bottom: 10px;
    }

    .panel-container_358 .course_demographic_465 h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}.ty_message_925 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(236,244,243);
    padding: 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}
.ty_message_925 .container {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    display: grid;
    gap: 20px;
    padding: 40px;
}
.ty_message_925 h2 {
    grid-column: span 2;
    font-size: 44px;
    color: rgb(104,176,171);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid rgb(0,106,113);
    padding-bottom: 10px;
}
.ty_message_925 p {
    font-size: 14px;
    color: #000000;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    padding: 10px;
    border-left: 4px solid rgb(104,176,171,0.5);
}
@media only screen and (max-width: 800px) {
    .ty_message_925 .container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .ty_message_925 h2 {
        font-size: 38px;
    }
}
.support_945 {
    color: #000000;
    background-color: rgb(236,244,243);
    padding: 80px 0;
    font-family: Lato, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 28px;
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.support_945 .holder .info_holder div.hours_of_availability_306 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.support_945 .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.support_945 .holder .info_holder > div > div {
    margin: 5px 0;
}
.support_945 .contact_holder {
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 100%;
    min-height: 400px;
    margin: auto;
    animation: slideIn 1s ease-in-out;
}
@keyframes slideIn {
    0% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0);
    }
}
.support_945 .holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    align-items: center;
    height: 100%;
}
.support_945 .holder .contact_description {
    grid-column: span 2;
    font-size: 17px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.support_945 .holder .photo {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}
.support_945 .holder .photo:hover {
    transform: scale(1.05);
    animation: pulse 1s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }
}
.support_945 .holder .info_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    padding-left: 20px;
}
.support_945 .holder .info_holder > div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 17px;
    transition: color 0.3s ease-in-out;
}
.support_945 .holder .info_holder > div:hover {
    color: rgb(104,176,171);
}
.support_945 .holder .info_holder > div a {
    color: rgb(104,176,171);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.support_945 .holder .info_holder > div a:hover {
    color: rgb(0,106,113);
}
.support_945 .holder .info_holder>div span {
    margin-left: 8px;
}
.support_945 .contact_politics {
    grid-column: span 2;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.support_945 .contact_politics > div {
    margin-bottom: 20px;
}
.support_945 .contact_politics > div h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.support_945 .info_holder svg {
    width: 24px;
    height: 24px;
    fill: rgb(104,176,171);
    margin-right: 10px;
}
.support_945 h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media only screen and (max-width: 800px) {
    .support_945 h2 {
        font-size: 22px;
    }
    .support_945 {
        padding: 40px 0;
    }
    .support_945 .contact_holder {
        padding: 20px;
        min-height: 300px;
    }
    .support_945 .holder {
        grid-template-columns: 1fr;
    }
    .support_945 .holder .photo {
        height: 200px;
    }
    .support_945 .holder .info_holder {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }
}
.our_mission_365 {
    padding: 100px 0;
    background: rgb(236,244,243);
    position: relative;
    overflow: hidden;
}

.panel-container_358 .our_mission_365 .holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.panel-container_358 .our_mission_365 .caption_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: rgba(255, 255, 255, rgb(104,176,171,0.5));
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.panel-container_358 .our_mission_365 .photo {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-container_358 .our_mission_365 .photo:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.panel-container_358 .our_mission_365 .style_element {
    position: relative;
    z-index: 2;
    width: 100%;
}

.panel-container_358 .our_mission_365 h2 {
    color: #000000;
    font-family: Lato, sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.panel-container_358 .our_mission_365 h2:hover {
    color: rgb(104,176,171);
}

.panel-container_358 .our_mission_365 p {
    color: #000000;
    font-family: Lato, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.panel-container_358 .our_mission_365 p:hover {
    color: rgb(0,106,113);
}

.panel-container_358 .our_mission_365 .caption_holder::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgb(104,176,171);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.panel-container_358 .our_mission_365 .caption_holder::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgb(0,106,113);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

@media only screen and (max-width: 1200px) {
    .panel-container_358 .our_mission_365 .photo {
        width: 150px;
        height: 150px;
    }
    .panel-container_358 .our_mission_365 .caption_holder {
        padding: 40px;
    }
}

@media only screen and (max-width: 800px) {
    .panel-container_358 .our_mission_365 .photo {
        width: 120px;
        height: 120px;
    }
    .panel-container_358 .our_mission_365 .caption_holder {
        padding: 30px;
    }
}
.learning_system_019 {
    padding: 120px 0;
    background: rgb(0,106,113);
    color: #ffffff;
    font-family: Lato, sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.learning_system_019::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: rgb(104,176,171,0.5);
    transform: translateX(-50%) rotate(15deg);
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.learning_system_019:hover::before {
    transform: translateX(-50%) rotate(25deg);
}

.learning_system_019 .container {
    position: relative;
    z-index: 1;
}

.learning_system_019 .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_system_019 h2 {
    margin-bottom: 30px;
    font-size: 31px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.learning_system_019 p {
    font-size: 17px;
    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_system_019 {
        padding: 60px 20px;
    }

    .learning_system_019 .holder {
        width: 90%;
    }

    .learning_system_019 h2 {
        font-size: 24px;
    }

    .learning_system_019 p {
        font-size: 17px;
    }
}

.panel-container_358 .learning_system_019 .holder {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    animation: none;
}

.panel-container_358 .learning_system_019 h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
}

.panel-container_358 .learning_system_019 p {
    text-align: left;
    font-size: 17px;
    opacity: 1;
    animation: none;
}

@media only screen and (max-width: 800px) {
    .panel-container_358 .learning_system_019 {
        padding: 20px 10px;
    }

    .panel-container_358 .learning_system_019 .holder {
        width: 100%;
        padding: 20px 10px;
    }

    .panel-container_358 .learning_system_019 h2 {
        font-size: 31px;
    }
}
.privacy_parapet_320 {
    padding: 50px;
    width: 100%;
    overflow: hidden;
    height: auto;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);

    font-family: Lato, sans-serif;
    color: #000000;
}

.privacy_parapet_320 h1 {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 47px;
    font-weight: 700;
    color: rgb(104,176,171);
    border-bottom: 3px solid rgb(104,176,171);
    padding-bottom: 15px;
    text-transform: uppercase;
}

.privacy_parapet_320 h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(0,106,113);
    border-bottom: 2px solid rgb(0,106,113);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.privacy_parapet_320 h3, .privacy_parapet_320 h4, .privacy_parapet_320 h5, .privacy_parapet_320 h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    color: rgb(104,176,171);
    border-bottom: 1px solid rgb(104,176,171,0.5);
    padding-bottom: 5px;
}

.privacy_parapet_320 ul, .privacy_parapet_320 ol {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy_parapet_320 ul li::before {
    content: '•';
    color: rgb(0,106,113);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.privacy_parapet_320 ol li {
    counter-increment: list;
}

.privacy_parapet_320 ol li::before {
    content: counter(list) ".";
    color: rgb(0,106,113);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.privacy_parapet_320 li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.privacy_parapet_320 section {
    background: rgb(0,106,113,0.5);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgb(104,176,171,0.5);
}

.privacy_parapet_320 p, .privacy_parapet_320 span, .privacy_parapet_320 div {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .privacy_parapet_320 {
        padding: 25px;
    }
    .privacy_parapet_320 h1 {
        font-size: calc(19px - 10px);
    }
    .privacy_parapet_320 h2 {
        font-size: calc(19px - 8px);
    }
    .privacy_parapet_320 h3, .privacy_parapet_320 h4, .privacy_parapet_320 h5, .privacy_parapet_320 h6 {
        font-size: calc(18px - 6px);
    }
    .privacy_parapet_320 ul, .privacy_parapet_320 ol {
        margin-left: 15px;
    }
}

.privacy_parapet_320 a {
    color: rgb(104,176,171);
    text-decoration: none;
    border-bottom: 2px solid rgb(104,176,171,0.5);
}

.privacy_parapet_320 a:hover {
    text-decoration: underline;
    border-bottom: 2px solid rgb(104,176,171);
}.instructor_history_261 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.instructor_history_261 .review .name {
    color: rgb(0,106,113);
}

.instructor_history_261 .review span {
    color: rgb(104,176,171);
}

.instructor_history_261 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructor_history_261 .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.instructor_history_261 .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.instructor_history_261 .review .name {
    font-size: 21px;
    margin-bottom: 8px;
}

.instructor_history_261 .review span {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 14px;
}

.instructor_history_261 .review .quote {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .instructor_history_261 .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .instructor_history_261 .holder {
        flex-direction: column;
    }

    .instructor_history_261 .review {
        max-width: unset;
        width: 100%;
    }

    .instructor_history_261 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.panel-container_358 .instructor_history_261 {
    padding: 40px;
    background: rgb(0,106,113);
}

.panel-container_358 .instructor_history_261 .container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.panel-container_358 .instructor_history_261 .holder {
    background: rgb(104,176,171,0.5);
}

.panel-container_358 .instructor_history_261 .review {
    width: 100%;
    flex-direction: row;
    max-width: unset;
    padding: 0;
    align-items: center;
}

.panel-container_358 .instructor_history_261 .photo {
    height: 600px;
    width: 600px;
    max-width: unset;
    border-radius: 0 !important;
    margin: 0;
}

.panel-container_358 .worker_description {
    width: 50%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.panel-container_358 .instructor_history_261 .review .name {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.panel-container_358 .instructor_history_261 .review span {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
}

.panel-container_358 .instructor_history_261 .review .quote {
    font-size: 23px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    font-style: normal;
}

@media only screen and (max-width: 1000px) {
    .panel-container_358 .instructor_history_261 .review {
        flex-direction: column;
    }

    .panel-container_358 .worker_description {
        width: 100%;
    }

    .panel-container_358 .instructor_history_261 .photo {
        width: 100%;
        height: 320px;
    }

    .panel-container_358 .instructor_history_261 {
        padding: 20px;
    }

    .panel-container_358 .instructor_history_261 .review .name {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .panel-container_358 .instructor_history_261 .review span {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .panel-container_358 .instructor_history_261 .review .quote {
        font-size: 18px;
    }

}.course_structure_235 {
    padding: 100px 0;
    background-color: rgb(236,244,243);
    color: #000000;
}

.course_structure_235 h2 {
    color: rgb(104,176,171);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.course_structure_235 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.course_structure_235 .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    border-radius: 13px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
}

.course_structure_235 .content:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course_structure_235 .photo {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.course_structure_235 .text_holder {
    text-align: center;
}

.course_structure_235 h3 {
    color: rgb(104,176,171);
    font-size: 37px;
    font-weight: 600;
    margin-bottom: 20px;
}

.course_structure_235 p {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.course_structure_235 .button {
    display: inline-block;
    background: rgb(0,106,113);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.course_structure_235 .button:hover {
    background: rgb(104,176,171);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .course_structure_235 {
        padding: 50px 0;
    }

    .course_structure_235 h2 {
        font-size: 37px;
        margin-bottom: 30px;
    }
}

.panel-container_358 .course_structure_235 {
    padding: 100px 0;
    background-color: rgb(236,244,243);
    color: #000000;
}

.panel-container_358 .course_structure_235 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.panel-container_358 .course_structure_235 .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    border-radius: 13px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
}

.panel-container_358 .course_structure_235 .photo {
    width: 50%;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-right: 20px;
}

.panel-container_358 .course_structure_235 .text_holder {
    width: 50%;
    text-align: left;
}

@media (max-width: 768px) {
    .panel-container_358 .course_structure_235 .content {
        flex-direction: column;
    }

    .panel-container_358 .course_structure_235 .photo {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .panel-container_358 .course_structure_235 .text_holder {
        width: 100%;
        text-align: center;
    }
    .course_structure_235 h3 {
        font-size: 19px;
    }
}
.benefits_879 .advantages_content h2 {
    color: rgb(0,106,113);
}

.benefits_879 .advantage_item svg, .benefits_879 .advantage_item svg path {
    fill: rgb(104,176,171);
}

.benefits_879 .advantage_item p {
    color: #000000;
}

.benefits_879 .advantage_item b {
    color: rgb(104,176,171);
}

.benefits_879 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_879 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_879 .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_879 .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 31px;
    font-weight: 600;
}

.benefits_879 .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_879 .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_879 .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_879 .advantage_item svg, .benefits_879 .advantage_item img {
    width: 128px;
    height: 128px;
}


.panel-container_358 .benefits_879 {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(104,176,171), rgb(0,106,113));
    color: #ffffff;
    font-family: Lato, sans-serif;
    position: relative;
    overflow: hidden;
}

.panel-container_358 .benefits_879::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.panel-container_358 .benefits_879 .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.panel-container_358 .benefits_879 .advantages_content h2 {
    font-size: 31px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.panel-container_358 .benefits_879 .advantages_description {
    font-size: 12px;
    margin-bottom: 40px;
    padding: 0 20px;
    color: #ffffff;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.panel-container_358 .benefits_879 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.panel-container_358 .benefits_879 .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 30px);
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.panel-container_358 .benefits_879 .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.panel-container_358 .benefits_879 .advantage_image {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(104,176,171,0.5);
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid rgb(0,106,113);
    position: relative;
    overflow: hidden;
}

.panel-container_358 .benefits_879 .advantage_image img, .panel-container_358 .benefits_879 .advantage_image svg {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.panel-container_358 .benefits_879 .advantage_item h4 {
    font-weight: 700;
    font-size: 24px;
    margin-top: 10px;
    color: #000000;
}

.panel-container_358 .benefits_879 .advantage_item:hover h4 {
    color: rgb(104,176,171);
}

@media only screen and (max-width: 1200px) {
    .panel-container_358 .benefits_879 .advantage_item {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 800px) {
    .panel-container_358 .benefits_879 {
        padding: 50px 0;
    }

    .panel-container_358 .benefits_879 .advantages_content h2 {
        font-size: 24px;
    }

    .panel-container_358 .benefits_879 .advantages_holder {
        flex-direction: column;
    }

    .panel-container_358 .benefits_879 .advantage_item {
        width: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .panel-container_358 .benefits_879 .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
    .panel-container_358 .benefits_879 .advantages_holder {
        justify-content: center;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_879 .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_879 .advantages_holder {
        flex-direction: column;
    }

    .benefits_879 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .panel-container_358 .benefits_879 .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}header .main_header {
    background: rgb(104,176,171);
    color: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid rgb(0,106,113);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo_holder svg, header .logo_holder svg path, header .logo_holder img {
    fill: rgb(104,176,171);
    height: 60px;
    width: 60px;
}

header .menu a {
    color: #ffffff;
    padding: 15px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    margin: 0 10px;
    transition: border-color 0.3s ease;
    border-radius: 10px;
}

header .menu a:hover {
    color: rgb(0,106,113);
    border-color: rgb(0,106,113);
}

header .menu a.active {
    color: #ffffff;
    border-color: rgb(104,176,171);
    background: rgb(104,176,171,0.5);
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo_holder {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 20px;
}

header .menu {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1200px) {
    .panel-container_358 header .logo_holder {
        margin-right: 0;
    }
    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: 10px 0;
        position: static;
        width: 100%;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 12px;
        width: 100%;
        text-align: left;
        border-radius: 10px;
    }
    header .logo_holder {
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        height: 50px;
        width: 50px;
    }
}

.panel-container_358 .logotype {
    background: rgb(0,106,113);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgb(0,106,113);
}

.panel-container_358 header .main_header {
    padding-bottom: 10px;
    position: relative;
    border-bottom: 2px solid rgb(0,106,113);
}

.panel-container_358 header .main_header::before {
    position: absolute;
    content: "";
    top: 0;
    height: 10px;
    width: 100%;
    background: rgb(0,106,113);
    z-index: 0;
}

.panel-container_358 header .logo_holder .logotype svg, .panel-container_358 header .logo_holder .logotype img {
    margin: 0;
}

.panel-container_358 header .menu a {
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    border-radius: 10px;
}

.panel-container_358 header .menu a:hover {
    color: rgb(0,106,113);
    border-color: rgb(0,106,113);
}

.panel-container_358 header .header_content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media only screen and (max-width: 800px) {
    .panel-container_358 header .menu {
        background: none;
        align-items: center;
    }
    .panel-container_358 header .logo_holder .logotype svg, .panel-container_358 header .logo_holder .logotype img {
        width: 50px;
        height: 50px;
    }
    .panel-container_358 header .menu a {
        text-align: center;
    }
    .panel-container_358 header .logo_holder {
        justify-content: center;
        align-items: center;
    }
    .panel-container_358 header .menu {
        padding-bottom: 20px;
    }
}.opening_page_904 .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.opening_page_904 .style_element h1 {
    color: rgb(0,106,113);
}

.opening_page_904 .style_element h3 {
    color: rgb(0,106,113);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.opening_page_904 .style_element p {
    color: #000000;
    text-align: right;
}

.opening_page_904 {
    width: 100%;
}

.opening_page_904 .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.opening_page_904 .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;
}

.opening_page_904 .style_element h1 {
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.opening_page_904 .style_element p {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .opening_page_904 .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .opening_page_904 .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;
    }

    .opening_page_904 .style_element h1 {
        font-size: 18px;
    }

    .opening_page_904 .style_element h3 {
        font-size: 16px;
    }

    .opening_page_904 .style_element p {
        font-size: 14px;
    }


}

.panel-container_358 .opening_page_904 .title_page_holder {
    position: relative;

}

.panel-container_358 .opening_page_904 .style_element {
    position: relative;
    clip-path: none;
    height: auto;
    background: none;
    display: flex;
    padding: 50px;
    display: flex;
    flex-direction: column;
    min-height: 336px;
    justify-content: center;
    align-items: center;
    background: none;
    width: calc(50% - 50px);
    min-width: unset;
    top: 0;
    z-index: 2;
    height: 90%;
    background: rgb(104,176,171,0.5);
    border-radius: 0 !important;
    left: 50px;

}

.panel-container_358 .opening_page_904 .title_page_holder {
    display: flex;
    height: 550px;
}

.panel-container_358 .opening_page_904 .style_element h1 {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.panel-container_358 .opening_page_904 .style_element h3 {
    color: #ffffff;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.panel-container_358 .opening_page_904 .style_element p {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 25px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 800px) {
    .panel-container_358 .opening_page_904 .title_page_holder {
        padding: 0px;
        flex-direction: column;
        min-height: 400px;
        height: auto;
    }

    .panel-container_358 .opening_page_904 .style_element h1 {
        font-size: 30px;
    }

    .panel-container_358 .opening_page_904 .style_element {
        position: static;
        width: 100%;
        height: auto;
        min-height: unset;
        padding: 20px;
        padding-top: 50px;
        left: 0;
    }
}