* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Playfair Display, sans-serif;
    color: #000000;
}
.wrapping-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(165,209,247);
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.secure_enclosure {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);

    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.secure_enclosure h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 47px;
    font-weight: 700;
    color: rgb(131,166,196);
    border-bottom: 4px solid rgb(131,166,196);
    padding-bottom: 10px;
}

.secure_enclosure h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(97,123,145);
    border-left: 6px solid rgb(97,123,145);
    padding-left: 20px;
}

.secure_enclosure ul {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.secure_enclosure ul li::before {
    content: "•";
    color: rgb(131,166,196);
    font-size: 1.5em;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.secure_enclosure li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.8;
    padding-left: 10px;
    border-left: 2px solid rgb(131,166,196,0.5);
}

.secure_enclosure p, .secure_enclosure span, .secure_enclosure div {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
    color: #ffffff;
}

.secure_enclosure h3, .secure_enclosure h4, .secure_enclosure h5, .secure_enclosure h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: rgb(131,166,196);
    border-left: 5px solid rgb(131,166,196);
    padding-left: 15px;
}

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

    .secure_enclosure h1 {
        font-size: calc(18px - 4px);
    }

    .secure_enclosure h2 {
        font-size: calc(18px - 3px);
    }

    .secure_enclosure h3, .secure_enclosure h4, .secure_enclosure h5, .secure_enclosure h6 {
        font-size: calc(18px - 2px);
    }

    .secure_enclosure p, .secure_enclosure span, .secure_enclosure div, .secure_enclosure li {
        font-size: calc(17px - 2px);
    }
}.wrapping-container .program_information {
    padding: 80px 0;
    background: rgb(131,166,196);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.wrapping-container .program_information::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(131,166,196,0.5), rgb(97,123,145,0.5));
    z-index: 0;
    opacity: 0.1;
}
.wrapping-container .program_information .container {
    position: relative;
    z-index: 2;
}
.wrapping-container .program_information .items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.wrapping-container .program_information .items .course {
    width: 100%;
    max-width: 1000px;
    margin: 20px;
    position: relative;
    background: rgb(165,209,247);
    border: 1px solid rgb(131,166,196);
    box-shadow: 0 0 20px rgb(131,166,196,0.5);
    border-radius: 29px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wrapping-container .program_information .items .course .content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
}
.wrapping-container .program_information .items .course .photo {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease;
}

.wrapping-container .program_information .text_holder {
    padding: 30px;
    background-color: rgb(97,123,145,0.5);
    text-align: left;
    color: #ffffff;
}
.wrapping-container .program_information .text_holder h3 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgb(131,166,196);
}
.wrapping-container .program_information .text_holder p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.6;
}
.wrapping-container .program_information .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(131,166,196);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgb(131,166,196,0.5);
}
.wrapping-container .program_information .button:hover {
    background: rgb(97,123,145);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(97,123,145,0.5);
}

@media only screen and (max-width: 800px) {
    .wrapping-container .program_information {
        padding: 40px 0;
    }
    .wrapping-container .program_information .items .course {
        flex-direction: column;
        margin: 0;
    }
    .wrapping-container .program_information .items .course .content {
        flex-direction: column;
        padding: 0;
    }
    .wrapping-container .program_information .photo {
        height: 200px;
    }
    .wrapping-container .program_information .text_holder {
        padding: 20px;
        text-align: center;
    }
    .wrapping-container .program_information .text_holder h3 {
        font-size: 21px;
    }
    .wrapping-container .program_information .text_holder p {
        font-size: 12px;
    }
    .wrapping-container .program_information .button {
        font-size: 20px;
    }
}.leadership_profile {
    padding: 100px 20px;
    background: rgb(97,123,145);
    position: relative;
    overflow: hidden;
}

.leadership_profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(131,166,196,0.5) 25%, rgb(97,123,145,0.5) 75%);
    opacity: 0.7;
    z-index: 0;
}

.leadership_profile .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.leadership_profile .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
}

.leadership_profile .review {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin: 20px;
    flex: 1 1 calc(33.333% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.leadership_profile .review:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5);
}

.leadership_profile .photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 20px;
}

.leadership_profile .worker_description {
    padding: 0 20px;
}

.leadership_profile .review .name {
    font-family: Playfair Display, sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}

.leadership_profile .review span {
    font-size: 15px;
    color: rgb(131,166,196);
    font-weight: 400;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}

.leadership_profile .review .quote {
    font-size: 15px;
    font-style: italic;
    color: #ffffff;
    border-left: 4px solid rgb(131,166,196);
    padding-left: 10px;
    margin: 10px 0;
    line-height: 1.5;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
}

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

    .leadership_profile {
        padding: 70px 10px;
    }

    .leadership_profile .review {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .leadership_profile .review {
        padding: 20px;
    }

    .leadership_profile .photo {
        height: 200px;
    }

    .leadership_profile {
        padding: 50px 5px;
    }
}

.wrapping-container .leadership_profile .holder {
    justify-content: space-between;
}

.wrapping-container .leadership_profile .review {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 20px;
    margin: 20px 0;
}

.wrapping-container .leadership_profile .photo {
    width: 200px;
    height: 200px;
    margin-right: 20px;
    flex-shrink: 0;
}

.wrapping-container .worker_description {
    width: calc(100% - 240px);
}

.wrapping-container .leadership_profile .review::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: rgb(131,166,196);
    border-radius: 50%;
    box-shadow: 0 0 20px rgb(131,166,196);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@media only screen and (max-width: 1200px) {
    .wrapping-container .leadership_profile .review {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wrapping-container .leadership_profile .photo {
        width: 150px;
        height: 150px;
        margin: 0 0 20px 0;
    }

    .wrapping-container .worker_description {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .wrapping-container .leadership_profile .review {
        padding: 10px;
    }

    .wrapping-container .leadership_profile .photo {
        width: 100px;
        height: 100px;
    }

    .wrapping-container .worker_description {
        padding: 10px;
    }
}
@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgb(131,166,196), 0 0 20px rgb(131,166,196), 0 0 50px rgb(131,166,196), 0 0 100px rgb(131,166,196);
    }
    50% {
        box-shadow: 0 0 10px rgb(97,123,145), 0 0 30px rgb(97,123,145), 0 0 60px rgb(97,123,145), 0 0 120px rgb(97,123,145);
    }
}
@keyframes background-shift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}
.contact_box {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(97,123,145), rgb(131,166,196,0.5));
    font-family: Playfair Display, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgb(131,166,196,0.5);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.contact_box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(131,166,196), transparent);
    opacity: 0.1;
    animation: background-shift 10s linear infinite;
    z-index: 0;
}
.contact_box h3 {
    color: rgb(131,166,196);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(131,166,196);
    z-index: 1;
}
.contact_box .form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 0 20px rgb(97,123,145,0.5);
    flex: 1;
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.contact_box .info {
    flex: 1;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: inset 0 0 10px rgb(97,123,145,0.5);
    position: relative;
    z-index: 1;
}
.contact_box .contact_info {
    width: 100%;
}
.contact_box .info h5 {
    color: rgb(131,166,196);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgb(97,123,145);
    z-index: 1;
}
.contact_box .info svg, .contact_box .info svg path {
    fill: rgb(131,166,196);
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgb(131,166,196));
    z-index: 1;
}
.contact_box .info span {
    color: #ffffff;
    font-size: 12px;
    z-index: 1;
}
.contact_box .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    z-index: 1;
}
.contact_box .info .contact_info > div svg {
    margin-right: 10px;
}
.contact_box form {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.contact_box form input {
    color: #ffffff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(131,166,196,0.5);
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 5px rgb(131,166,196,0.5);
    width: 100%;
}
.contact_box form input:focus {
    border-color: rgb(131,166,196);
    box-shadow: 0 0 10px rgb(131,166,196);
}
.contact_box form .button {
    background: rgb(131,166,196);
    color: #ffffff;
    border-radius: 22px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgb(131,166,196);
    text-transform: uppercase;
    animation: neon-pulse 1.5s infinite alternate;
}
.contact_box form .button:hover {
    background: rgb(97,123,145);
    box-shadow: 0 0 15px rgb(97,123,145);
}
.contact_box .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.contact_box .logo_holder {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.contact_box .logo_holder svg, .contact_box .logo_holder img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgb(131,166,196));
    z-index: 1;
}
.contact_box .name_holder {
    display: flex;
    gap: 20px;
    z-index: 1;
}
.contact_box .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #ffffff;
    z-index: 1;
}
.contact_box .agree input[type=checkbox] {
    margin-right: 10px;
    margin-bottom: 0;
    width: auto;
}
.contact_box .agree label {
    font-size: 12px;
}
.contact_box .agree a {
    color: rgb(131,166,196);
    text-decoration: underline;
    margin-left: 5px;
}
@media only screen and (max-width: 800px) {
    .contact_box {
        padding: 40px 10px;
    }
    .contact_box .holder {
        flex-direction: column;
    }
    .contact_box .info {
        padding: 20px;
        border-radius: 10px;
        box-shadow: none;
    }
    .contact_box .form {
        padding: 20px;
        border-radius: 10px;
        box-shadow: none;
    }
    .contact_box .name_holder {
        flex-wrap: wrap;
        gap: unset;
    }
}
.who_we_are {
    padding: 60px 0;
    background-color: rgb(165,209,247);
    color: #000000;
    font-family: Playfair Display, sans-serif;
}

.wrapping-container .who_we_are .holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wrapping-container .who_we_are .caption_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid rgb(97,123,145,0.5);
}

.wrapping-container .who_we_are .photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.wrapping-container .who_we_are .style_element {
    flex: 1;
    padding: 20px;
}

.wrapping-container .who_we_are h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(131,166,196);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.wrapping-container .who_we_are p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .wrapping-container .who_we_are .caption_holder {
        flex-direction: column;
    }

    .wrapping-container .who_we_are .photo {
        height: 200px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .wrapping-container .who_we_are .style_element {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .wrapping-container .who_we_are .holder {
        padding: 10px;
    }

    .wrapping-container .who_we_are h2 {
        font-size: calc(36px - 4px);
    }

    .wrapping-container .who_we_are p {
        font-size: calc(16px - 2px);
    }
}
footer {
    background: rgb(97,123,145);
    color: #ffffff;
}

footer .copyright {
    background: rgb(131,166,196);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(131,166,196);
}

footer h5 {
    color: rgb(131,166,196);
}

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: 19px;
    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: 13px;
}

@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;
    }

}

.wrapping-container footer .footer {
    padding: 0;
}

.wrapping-container footer .footer_info {
    flex-direction: row;
    align-items: center;
    min-height: 100px;
}

.wrapping-container footer .menu_holder {
    flex-direction: row;
    justify-content: flex-end;
}

.wrapping-container footer .menu a {
    margin: 0;
    padding: 5px 10px;
    font-size: 20px;
    color: rgb(131,166,196);
}

.wrapping-container footer .copyright {
    background: rgb(131,166,196,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

.wrapping-container footer .copyright_info {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .wrapping-container footer .menu_holder {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .wrapping-container footer .menu a {
        padding-left: 0;
        font-size: 18px
    }

    .wrapping-container footer .menu a:first-child {

        margin-bottom: 10px;
    }

    .wrapping-container footer .footer_info {
        padding: 20px 10px;
    }

    .wrapping-container footer .copyright_info {
        text-align: center;
    }

    .wrapping-container footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
.potential_learners {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.potential_learners::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: rgb(165,209,247);
}

.potential_learners .container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
        "title title title title"
        "list list list list"
        "photo photo photo photo";
    gap: 40px;
}

.potential_learners .who_needs_text {
    grid-area: title;
}

.potential_learners .who_needs_text h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(131,166,196);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.potential_learners .who_needs_text h2::before,
.potential_learners .who_needs_text h2::after {
    content: '';
    height: 2px;
    width: 100px;
    background: rgb(131,166,196);
    opacity: 0.3;
}

.potential_learners .who_needs_list {
    grid-area: list;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.potential_learners .who_needs_list div {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 22px;
    font-size: 18px;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgb(131,166,196,0.5);
}

.potential_learners .who_needs_list svg {
    width: 40px;
    height: 40px;
    fill: rgb(131,166,196);
}

.potential_learners .who_needs_photo {
    grid-area: photo;
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.potential_learners .who_needs_photo::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(30%);
    border: 1px solid rgb(131,166,196,0.5);
    border-radius: inherit;
}

@media (max-width: 1024px) {
    .potential_learners .who_needs_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .potential_learners {
        padding: 60px 0;
    }

    .potential_learners .who_needs_list {
        grid-template-columns: 1fr;
    }

    .potential_learners .who_needs_text h2::before,
    .potential_learners .who_needs_text h2::after {
        width: 50px;
    }

    .potential_learners .who_needs_list div {
        padding: 20px;
    }
}.greeting_page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
}
.greeting_page .title_page_holder {
    width: 100%;
    min-height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}
.greeting_page .style_element {
    background: rgb(131,166,196,0.5);
    width: 80%;
    max-width: 800px;
    padding: 60px 40px;
    border-radius: 18px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.greeting_page .style_element h1 {
    font-family: Playfair Display, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: rgb(97,123,145);
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
.greeting_page .style_element h3 {
    font-family: Playfair Display, sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: rgb(97,123,145,0.5);
    margin-bottom: 24px;
}
.greeting_page .style_element p {
    font-family: Playfair Display, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 32px;
}
@media only screen and (max-width: 800px) {
    .greeting_page .title_page_holder {
        min-height: 400px;
        padding: 0 10px;
    }
    .greeting_page .style_element {
        width: 90%;
        padding: 40px 20px;
    }
    .greeting_page .style_element h1 {
        font-size: 23px;
    }
    .greeting_page .style_element h3 {
        font-size: 18px;
    }
    .greeting_page .style_element p {
        font-size: 15px;
    }
}
.wrapping-container .greeting_page .title_page_holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}
.wrapping-container .greeting_page .style_element {
    width: 90%;
    max-width: 700px;
    padding: 50px;
    background: rgb(131,166,196,0.5);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}
.wrapping-container .greeting_page .style_element h1 {
    font-size: 36px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}
.wrapping-container .greeting_page .style_element h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
}
.wrapping-container .greeting_page .style_element p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 800px) {
    .wrapping-container .greeting_page .title_page_holder {
        height: auto;
        min-height: 400px;
    }
    .wrapping-container .greeting_page .style_element {
        padding: 40px 20px;
        width: 95%;
    }
    .wrapping-container .greeting_page .style_element h1 {
        font-size: 28px;
    }
    .wrapping-container .greeting_page .style_element h3 {
        font-size: 20px;
    }
    .wrapping-container .greeting_page .style_element p {
        font-size: 18px;
    }
}.newsletter_subscription {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

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

.newsletter_subscription input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(97,123,145,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.newsletter_subscription h2 {
    margin-bottom: 20px;
    text-align: center;
}

.newsletter_subscription .button {
    background: rgb(97,123,145);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.newsletter_subscription .input_holder {
    display: flex;
    align-items: center;
}

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

    .newsletter_subscription {
        padding: 30px 20px;
    }

    .newsletter_subscription input {
        min-width: unset;
    }

    .newsletter_subscription .button {
        flex-shrink: unset;
    }

    .newsletter_subscription .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .newsletter_subscription input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrapping-container .newsletter_subscription .holder h2 {
        font-size: 20px;
    }
}

.wrapping-container .newsletter_subscription .holder {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 50%;
    width: 80%;
    border-radius: 100px;
    background: rgb(165,209,247);
    margin: auto;
    padding: 40px 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapping-container .newsletter_subscription .holder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wrapping-container .newsletter_subscription h2 {
    grid-column: span 2;
    color: rgb(131,166,196);
    margin: 0 0 20px;
    font-size: 34px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wrapping-container .newsletter_subscription .input_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 50%;
}

.wrapping-container .newsletter_subscription input {
    border-radius: 12px;
    background: #ffffff;
    color: #000000;
    margin-bottom: 15px;
    border: 2px solid rgb(131,166,196);
    padding: 15px 20px;
    font-size: 16px;
    width: 100%;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.wrapping-container .newsletter_subscription input:focus {
    border: 2px solid rgb(97,123,145);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wrapping-container .newsletter_subscription .button {
    background: rgb(131,166,196);
    border-radius: 12px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.wrapping-container .newsletter_subscription .button:hover {
    background: rgb(97,123,145);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wrapping-container .newsletter_subscription::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(131,166,196,0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.9;
}

@media only screen and (max-width: 800px) {
    .wrapping-container .newsletter_subscription {
        padding: 30px 20px;
    }

    .wrapping-container .newsletter_subscription .holder {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 30px;
    }

    .wrapping-container .newsletter_subscription h2 {
        margin-bottom: 20px;
    }

    .wrapping-container .newsletter_subscription .input_holder {
        width: 100%;
    }

    .wrapping-container .newsletter_subscription input {
        width: 100%;
    }

    .wrapping-container .newsletter_subscription .button {
        width: 100%;
        padding: 15px 0;
    }
}header {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(131,166,196), rgb(97,123,145));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.main_header {
    border-top: 5px solid rgb(131,166,196);
    border-bottom: 2px solid rgb(131,166,196);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}
.main_header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}
.main_header .header_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    position: relative;
    z-index: 1;
}
.main_header .header_holder .logo_holder {
    margin: 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgb(131,166,196);
    border-radius: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgb(131,166,196,0.5);
}
.main_header .header_holder .logo_holder svg, .main_header .header_holder .logo_holder img {
    width: 80px;
    height: 80px;
    fill: rgb(131,166,196);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.main_header .header_holder .logo_holder:hover svg, .main_header .header_holder .logo_holder:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgb(131,166,196,0.5));
}
.main_header .header_description {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 10px;
    flex-grow: 1;
    text-align: center;
    border-left: 2px solid rgb(131,166,196);
    text-shadow: 0 0 10px rgb(131,166,196,0.5);
}
.main_header .header_menu {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    margin-top: 0;
    position: relative;
    z-index: 11;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(97,123,145));
    padding: 10px;
    border-radius: 26px;
    box-shadow: 0 0 10px rgb(131,166,196,0.5);
}
.main_header .header_menu a {
    padding: 10px 16px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    border-right: 2px solid rgb(131,166,196);
    text-shadow: 0 0 10px rgb(131,166,196,0.5);
    display: flex;
    align-items: center;
}
.main_header .header_menu a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(131,166,196);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
    box-shadow: 0 0 10px rgb(131,166,196,0.5);
}
.main_header .header_menu a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}
.main_header .header_menu a:first-child {
    color: rgb(131,166,196);
}
.main_header .header_menu a:last-child {
   border-right: none;
}
@media only screen and (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        border-bottom: none;
    }
    .main_header .header_description {
        margin: 10px 0;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    .main_header .header_menu {
        justify-content: center;
        flex-direction: column;
        border-radius: 0;
    }
    .main_header .header_menu a {
        margin: 5px 0;
        border-right: none;
        border-bottom: 2px solid rgb(131,166,196);
    }
}.pricing_grid_item {
    position: relative;
    background: rgb(165,209,247);
    padding: 120px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pricing_grid_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 45deg at 50% 50%, rgb(97,123,145,0.5) 0deg, transparent 60deg, transparent 300deg, rgb(131,166,196,0.5) 360deg);
    opacity: 0.15;
    z-index: 1;
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing_grid_item .container {
    position: relative;
    z-index: 2;
    width: 90vw;
}

.pricing_grid_item .price_info_holder {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.pricing_grid_item .photo {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pricing_grid_item h2 {
    font-size: calc(38px * 1.2);
    color: #000000;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: -0.03em;
}

.pricing_grid_item h3 {
    font-size: 21px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 3rem 0;
    max-width: 600px;
}

.pricing_grid_item .price_items {
    display: flex;
    gap: 0;
    width: 100%;
    position: relative;
}

.pricing_grid_item .price_item {
    flex: 1;
    background: #ffffff;
    min-height: 500px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing_grid_item .price_item:not(:last-child) {
    border-right: 1px solid rgb(97,123,145,0.5);
}

.pricing_grid_item .price_item:first-child {
    border-radius: 20px 0 0 20px;
}

.pricing_grid_item .price_item:last-child {
    border-radius: 0 20px 20px 0;
}

.pricing_grid_item .price_item:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    border-right-color: transparent;
    z-index: 1;
}

.pricing_grid_item .price_item h3 {
    all: unset;
    font-size: calc(21px * 1.1);
    color: rgb(131,166,196);
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
    margin: 0;
}

.pricing_grid_item .price_item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: currentColor;
}

.pricing_grid_item .price_item .price_amount {
    font-size: calc(36px * 1.2);
    font-weight: 700;
    color: #000000;
    position: relative;
    margin: 0;
}

.pricing_grid_item .price_item .price_amount::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 5px;
    left: 0;
    background: rgb(131,166,196,0.5);
    z-index: -1;
    transition: height 0.3s ease;
}

.pricing_grid_item .price_item:hover .price_amount::before {
    height: 50%;
}

.pricing_grid_item .price_item span {
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
    flex-grow: 1;
}

.pricing_grid_item .price_item .button {
    margin-top: auto;
    background: none;
    color: rgb(131,166,196);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 0.5rem 0;
    border: 0;
    position: relative;
    transition: color 0.3s ease;
    width: fit-content;
}

.pricing_grid_item .price_item .button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing_grid_item .price_item .button:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

@media (min-width: 992px) {
    .pricing_grid_item .price_items:has(.price_item:nth-child(2)) .price_item {
        width: 50%;
    }
    
    .pricing_grid_item .price_items:has(.price_item:nth-child(3)) .price_item {
        width: 33.333%;
    }
    
    .pricing_grid_item .price_items:has(.price_item:nth-child(4)) .price_item {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .pricing_grid_item .price_items {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing_grid_item .price_item {
        width: 100% !important;
        min-height: auto;
        border-radius: 20px !important;
        border: none !important;
    }

    .pricing_grid_item .price_item:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 479px) {
    .pricing_grid_item {
        padding: 60px 0;
    }

    .pricing_grid_item .container {
        width: 100vw;
        padding: 0 1rem;
    }

    .pricing_grid_item .price_info_holder {
        gap: 2rem;
    }

    .pricing_grid_item .photo {
        height: 250px;
    }

    .pricing_grid_item .price_item {
        padding: 1.5rem;
    }

    .pricing_grid_item h2 {
        font-size: 36px;
    }
}.training_structure {
    position: relative;
    width: 100%;
    background: rgb(165,209,247);
}

.training_structure .work_holder {
    position: relative;
    padding: 4.5rem 0;
    min-height: 470px;
}

.training_structure .work_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 30%,
        rgb(131,166,196,0.5) 0%,
        transparent 60%
    );
    z-index: 1;
}

.training_structure .work_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 30px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 30px
        );
    z-index: 2;
}

.training_structure .container {
    position: relative;
    z-index: 3;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.training_structure .text_holder {
    max-width: 580px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transform-origin: left center;
}

.training_structure .text_holder::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        45deg,
        rgb(131,166,196),
        transparent,
        rgb(97,123,145)
    );
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
}

.training_structure .text_holder h4 {
    color: #ffffff;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: Playfair Display, sans-serif;
}

.training_structure .text_holder p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgb(131,166,196,0.5);
}

@media (max-width: 991px) {
    .training_structure .container {
        justify-content: center;
    }

    .training_structure .text_holder {
        transform: none;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .training_structure .work_holder {
        padding: 3rem 1rem;
    }

    .training_structure .text_holder {
        padding: 2rem;
    }

    .training_structure .text_holder h4 {
        font-size: calc(33px * 0.85);
    }

    .training_structure .text_holder p {
        font-size: calc(16px * 0.95);
        padding-left: 1rem;
    }
}
.benefits_overview .advantages_content h2 {
    color: rgb(97,123,145);
}

.benefits_overview .advantage_item svg, .benefits_overview .advantage_item svg path {
    fill: rgb(131,166,196);
}

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

.benefits_overview .advantage_item b {
    color: rgb(131,166,196);
}

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

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

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

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

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

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

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

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

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

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

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

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

    .wrapping-container .benefits_overview .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapping-container .benefits_overview {
    background: rgb(131,166,196);
}

.wrapping-container .benefits_overview .advantages_content h2 {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
}

.wrapping-container .benefits_overview .advantages_holder {
    width: 100%;
    flex-wrap: wrap;
}

.wrapping-container .benefits_overview .advantage_item {
    padding: 30px;
    width: 270px;
    border: 5px solid #ffffff;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.wrapping-container .benefits_overview .advantages_description {
    color: #ffffff;
}

.wrapping-container .benefits_overview .advantage_item svg, .wrapping-container .benefits_overview .advantage_item svg path, .wrapping-container .benefits_overview .advantage_item img {
    fill: #ffffff;
    width: 95px;
    height: 95px;
}

.wrapping-container .benefits_overview .advantages_content h4 {
    display: inherit;
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.wrapping-container .benefits_overview .advantage_item p {
    font-size: 16px;
    line-height: 25px;
    font-style: italic;
    color: #ffffff;
    margin-top: 16px;
}

.wrapping-container .benefits_overview .advantage_item p b {
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .wrapping-container .benefits_overview .advantage_item {
        width: 100%;
        margin-bottom: 30px;
        min-height: unset;

    }

    .wrapping-container .benefits_overview .advantages_content h2 {
        font-size: 30px;
    }
}.training_results {
    position: relative;
    padding: 150px 0;
    background: rgb(165,209,247);
    overflow: hidden;
}

.training_results::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
        rgb(131,166,196,0.5) 0%,
        transparent 70%);
    animation: rotate 60s linear infinite;
}

.training_results .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.training_results .holder {
    position: relative;
    perspective: 1000px;
}

.training_results .content_holder {
    position: relative;
    padding: 100px 60px;
    min-height: 700px;
    background-attachment: fixed;
    border-radius: 20px;
    overflow: hidden;
}

.training_results .content_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        #000000 0%,
        transparent 100%);
    opacity: 0.85;
}

.training_results .content_holder h3 {
    position: relative;
    color: #ffffff;
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.training_results .content_holder div {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.training_results .content_holder p {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding: 35px;
    background: linear-gradient(135deg,
        rgb(97,123,145,0.5) 0%,
        rgb(131,166,196,0.5) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    transition: transform 0.4s ease-out;
}

.training_results .content_holder p:nth-child(3n+1) {
    transform: translateZ(20px) rotate3d(1, 1, 0, -2deg);
}

.training_results .content_holder p:nth-child(3n+2) {
    transform: translateZ(40px) rotate3d(1, -1, 0, 2deg);
}

.training_results .content_holder p:nth-child(3n) {
    transform: translateZ(30px) rotate3d(-1, 1, 0, -2deg);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 991px) {
    .training_results {
        padding: 100px 0;
    }

    .training_results .content_holder {
        padding: 70px 40px;
        min-height: 600px;
    }

    .training_results .content_holder div {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .training_results .content_holder h3 {
        font-size: calc(41px * 0.85);
        margin-bottom: 40px;
    }

    .training_results .content_holder p {
        padding: 25px;
    }

    .training_results .content_holder p:nth-child(2n+1) {
        transform: translateZ(20px) rotate3d(1, 0, 0, -1deg);
    }

    .training_results .content_holder p:nth-child(2n) {
        transform: translateZ(20px) rotate3d(-1, 0, 0, 1deg);
    }
}

@media screen and (max-width: 767px) {
    .training_results {
        padding: 80px 0;
    }

    .training_results .content_holder {
        padding: 50px 25px;
        min-height: auto;
    }

    .training_results .content_holder div {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .training_results .content_holder h3 {
        font-size: calc(41px * 0.7);
        margin-bottom: 30px;
    }

    .training_results .content_holder p {
        padding: 20px;
        transform: none !important;
    }

    .training_results::before {
        animation: none;
    }
}.tyWrap {
    background-color: rgb(165,209,247);
    color: #000000;
    font-family: Playfair Display, sans-serif;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.tyWrap .container {
    background: linear-gradient(135deg, rgb(131,166,196,0.5), rgb(97,123,145,0.5));
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: auto;
}
.tyWrap .container h2 {
    font-size: 34px;
    font-weight: 700;
    color: rgb(131,166,196);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.tyWrap .container p {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
}
.tyWrap .container p::first-letter {
    font-size: 1.5em;
    font-weight: 600;
    color: rgb(97,123,145);
}
@media only screen and (max-width: 800px) {
    .tyWrap {
        padding: 30px 15px;
    }
    .tyWrap .container {
        padding: 30px;
    }
    .tyWrap .container h2 {
        font-size: 20px;
    }
    .tyWrap .container p {
        font-size: 18px;
    }
}