* {
    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;
}
.onYUa-wrapper-skeleton {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(223,227,208);
}
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;
    }
}.hSzjL-customer-feedback {
    background: rgb(223,227,208);
    padding: 80px 0;
    border-top: 4px solid rgb(85,113,116);
    border-bottom: 4px solid rgb(85,113,116);
    position: relative;
    overflow: hidden;
}

.hSzjL-customer-feedback::before,
.hSzjL-customer-feedback::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgb(85,113,116,0.5) 8%, transparent 8%);
    background-size: 30px 30px;
    animation: backgroundMove 60s linear infinite;
    z-index: 0;
}

.hSzjL-customer-feedback::after {
    background-size: 20px 20px;
    animation-duration: 40s;
    opacity: 0.5;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.hSzjL-customer-feedback h3 {
    font-size: clamp(24px, 5vw, 29px);
    color: rgb(85,113,116);
    font-weight: 700;
    text-align: center;
    margin: 0 0 50px 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hSzjL-customer-feedback h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(85,113,116), transparent);
}

.hSzjL-customer-feedback .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hSzjL-customer-feedback .reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 20px;
    perspective: 1000px;
}

.hSzjL-customer-feedback .reviews .review {
    flex: 1 1 calc(33.333% - 40px);
    max-width: 320px;
    border-radius: 28px;
    background: #ffffff;
    border: 2px solid rgb(85,113,116,0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.hSzjL-customer-feedback .reviews .review:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.5);
    border-color: rgb(85,113,116);
}

.hSzjL-customer-feedback .reviews .photo {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid rgb(85,113,116);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hSzjL-customer-feedback .reviews .photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hSzjL-customer-feedback .reviews .review:hover .photo::before {
    opacity: 1;
}

.hSzjL-customer-feedback .reviews .text {
    padding: 25px 20px 35px;
    text-align: center;
    background: #ffffff;
    position: relative;
    transition: transform 0.3s ease;
}

.hSzjL-customer-feedback .reviews .text::before,
.hSzjL-customer-feedback .reviews .text::after {
    content: "\201C";
    font-size: 60px;
    color: rgb(85,113,116,0.5);
    position: absolute;
    z-index: 0;
    transition: all 0.3s ease;
}

.hSzjL-customer-feedback .reviews .text::before {
    top: 10px;
    left: 10px;
}

.hSzjL-customer-feedback .reviews .text::after {
    bottom: -10px;
    right: 10px;
    transform: rotate(180deg);
}

.hSzjL-customer-feedback .reviews .review:hover .text::before {
    transform: translateY(-5px) rotate(-10deg);
}

.hSzjL-customer-feedback .reviews .review:hover .text::after {
    transform: translateY(5px) rotate(170deg);
}

.hSzjL-customer-feedback .reviews .text p {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hSzjL-customer-feedback .reviews .text span {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.hSzjL-customer-feedback .reviews .review:hover .text p {
    transform: translateZ(20px);
}

.hSzjL-customer-feedback .reviews .review:hover .text span {
    transform: translateZ(15px);
}

@media only screen and (max-width: 1200px) {
    .hSzjL-customer-feedback .reviews {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 20px;
    }
    .hSzjL-customer-feedback .reviews .review {
        flex: 1 1 calc(50% - 40px);
        max-width: 600px;
    }
}

@media only screen and (max-width: 768px) {
    .hSzjL-customer-feedback {
        padding: 60px 0;
    }
    .hSzjL-customer-feedback h3 {
        margin-bottom: 30px;
    }
    .hSzjL-customer-feedback .reviews {
        gap: 20px;
    }
    .hSzjL-customer-feedback .reviews .review {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .hSzjL-customer-feedback .reviews .photo {
        height: 150px;
    }
    .hSzjL-customer-feedback .reviews .text {
        padding: 20px 15px 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hSzjL-customer-feedback::before,
    .hSzjL-customer-feedback::after {
        animation: none;
    }
    .hSzjL-customer-feedback .reviews .review,
    .hSzjL-customer-feedback .reviews .text::before,
    .hSzjL-customer-feedback .reviews .text::after,
    .hSzjL-customer-feedback .reviews .text p,
    .hSzjL-customer-feedback .reviews .text span {
        transition: none;
    }
    .hSzjL-customer-feedback .reviews .review:hover {
        transform: none;
        box-shadow: none;
    }
}
.vuOSb-company-info {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(85,113,116) 0%, rgb(54,71,73) 100%);
    color: #000000;
    font-family: Playfair Display, sans-serif;
}
.onYUa-wrapper-skeleton .vuOSb-company-info .holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.onYUa-wrapper-skeleton .vuOSb-company-info .holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}
.onYUa-wrapper-skeleton .vuOSb-company-info .caption_holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}
.onYUa-wrapper-skeleton .vuOSb-company-info .caption_holder .photo {
    width: 100%;
    max-width: 600px;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.onYUa-wrapper-skeleton .vuOSb-company-info .caption_holder .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.onYUa-wrapper-skeleton .vuOSb-company-info .style_element {
    background: #ffffff;
    border-radius: 19px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.onYUa-wrapper-skeleton .vuOSb-company-info h2 {
    color: #000000;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 20px;
}
.onYUa-wrapper-skeleton .vuOSb-company-info p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}
@media (max-width: 1200px) {
    .onYUa-wrapper-skeleton .vuOSb-company-info .caption_holder {
        grid-template-columns: 1fr;
    }
    .onYUa-wrapper-skeleton .vuOSb-company-info .caption_holder .photo {
        max-width: 400px;
        height: 400px;
        margin: auto;
    }
    .onYUa-wrapper-skeleton .vuOSb-company-info .style_element {
        padding: 30px;
    }
}
@media (max-width: 800px) {
    .onYUa-wrapper-skeleton .vuOSb-company-info .caption_holder {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .onYUa-wrapper-skeleton .vuOSb-company-info .caption_holder .photo {
        max-width: 300px;
        height: 300px;
    }
    .onYUa-wrapper-skeleton .vuOSb-company-info .style_element {
        padding: 20px;
    }
}.WHqYD-tyNote {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, rgb(85,113,116), rgb(54,71,73));
    padding: 40px;
    color: #ffffff;
}
.WHqYD-tyNote .container {
    max-width: 900px;
    width: 100%;
    padding: 50px;
    background: rgb(223,227,208);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.WHqYD-tyNote h2 {
    margin-bottom: 20px;
    font-size: 45px;
    font-family: Playfair Display, sans-serif;
    font-weight: 700;
    color: rgb(85,113,116);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.WHqYD-tyNote p {
    font-size: 14px;
    font-family: Playfair Display, sans-serif;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
    .WHqYD-tyNote .container {
        padding: 40px;
    }
    .WHqYD-tyNote h2 {
        font-size: 35px;
    }
    .WHqYD-tyNote p {
        font-size: 22px;
    }
}
@media only screen and (max-width: 800px) {
    .WHqYD-tyNote {
        padding: 20px;
    }
    .WHqYD-tyNote .container {
        padding: 30px;
    }
    .WHqYD-tyNote h2 {
        font-size: 22px;
    }
    .WHqYD-tyNote p {
        font-size: 14px;
    }
}
.ILEFZ-program-outcomes {
    padding-bottom: 80px;
    padding-top: 80px;
}

.ILEFZ-program-outcomes .holder {
    display: flex;
    width: 100%;
}

.ILEFZ-program-outcomes h2 {
    text-align: left;
    margin-bottom: 20px;
}

.ILEFZ-program-outcomes .photo {
    width: 50%;
    flex-shrink: 0;
}

.ILEFZ-program-outcomes .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.ILEFZ-program-outcomes ul {
    list-style: none;
}

.ILEFZ-program-outcomes li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ILEFZ-program-outcomes svg, .ILEFZ-program-outcomes path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(85,113,116);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .ILEFZ-program-outcomes {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .ILEFZ-program-outcomes .holder {
        flex-direction: column;
    }

    .ILEFZ-program-outcomes .text_holder {
        width: 100%;
    }

    .ILEFZ-program-outcomes .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes {
    background: linear-gradient(135deg, rgb(85,113,116,0.5) 0%, rgb(54,71,73,0.5) 100%);
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgb(85,113,116) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
    opacity: 0.3;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes .holder {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes .photo {
    flex: 1;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes .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: 13px;
    border-bottom-left-radius: 13px;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes .text_holder {
    flex: 1;
    padding: 60px;
    background: #ffffff;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes .text_holder::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px dashed rgb(85,113,116);
    border-radius: 10px;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes h2 {
    font-size: 37px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes svg,
.onYUa-wrapper-skeleton .ILEFZ-program-outcomes path {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    fill: rgb(54,71,73);
    transition: fill 0.3s ease;
}

.onYUa-wrapper-skeleton .ILEFZ-program-outcomes li:hover svg,
.onYUa-wrapper-skeleton .ILEFZ-program-outcomes li:hover path {
    fill: rgb(85,113,116);
}

@media only screen and (max-width: 1200px) {
    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes .container {
        flex-direction: column;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes .photo {
        min-height: 400px;
        border-radius: 13px 13px 0 0;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes .text_holder {
        border-radius: 0 0 13px 13px;
        padding: 40px;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes h2 {
        font-size: 37px;
    }
}

@media only screen and (max-width: 800px) {
    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes {
        padding: 60px 10px;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes .holder {
        flex-direction: column;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes .photo {
        min-height: 250px;
        border-radius: 10px 10px 0 0;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes .text_holder {
        padding: 20px;
        border-radius: 0 0 10px 10px;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes h2 {
        font-size: 23px;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes li {
        font-size: 12px;
    }

    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes svg,
    .onYUa-wrapper-skeleton .ILEFZ-program-outcomes path {
        width: 30px;
        height: 30px;
    }
}.iICFq-secure-habitat {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background-color: rgb(54,71,73,0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: Playfair Display, sans-serif;
    color: #000000;
}

.iICFq-secure-habitat h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 38px;
    font-weight: 700;
    color: rgb(85,113,116);
    border-bottom: 2px solid rgb(85,113,116,0.5);
    padding-bottom: 10px;
}

.iICFq-secure-habitat h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 31px;
    font-weight: 600;
    color: rgb(54,71,73);
}

.iICFq-secure-habitat h3, .iICFq-secure-habitat h4, .iICFq-secure-habitat h5, .iICFq-secure-habitat h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 400;
    color: rgb(85,113,116);
}

.iICFq-secure-habitat ul, .iICFq-secure-habitat ol {
    list-style-position: inside;
    padding-left: 20px;
    padding: 15px 0;
    font-size: 12px;
    line-height: 1.6;
}

.iICFq-secure-habitat li {
    margin-bottom: 12px;
    padding-left: 5px;
    border-left: 3px solid rgb(85,113,116);
}

.iICFq-secure-habitat section {
    background: rgb(223,227,208);
    padding: 20px;
    border-radius: 10px;
}

.iICFq-secure-habitat p, .iICFq-secure-habitat span, .iICFq-secure-habitat div {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 12px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .iICFq-secure-habitat {
        padding: 20px;
    }
    .iICFq-secure-habitat h1 {
        font-size: calc(21px - 10px);
    }
    .iICFq-secure-habitat h2 {
        font-size: calc(21px - 8px);
    }
    .iICFq-secure-habitat h3, .iICFq-secure-habitat h4, .iICFq-secure-habitat h5, .iICFq-secure-habitat h6 {
        font-size: calc(21px - 6px);
    }
    .iICFq-secure-habitat ul, .iICFq-secure-habitat ol {
        padding-left: 10px;
    }
}

.iICFq-secure-habitat a {
    color: rgb(85,113,116);
    text-decoration: none;
    border-bottom: 1px solid rgb(85,113,116,0.5);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.iICFq-secure-habitat a:hover {
    color: rgb(54,71,73);
    border-bottom-color: rgb(54,71,73,0.5);
}footer {
    background: rgb(54,71,73);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding: 50px 0;
    position: relative;
    border-top: 3px solid rgb(85,113,116);
}
footer::before,
footer::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, rgb(85,113,116), rgb(54,71,73));
}
footer::before {
    left: 0;
    border-radius: 10px 10px 0 0;
}
footer::after {
    right: 0;
    border-radius: 0 0 10px 10px;
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
footer .footer_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
footer .logo_holder {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
footer .logo_holder svg,
footer .logo_holder img {
    height: 60px;
    width: auto;
    fill: rgb(85,113,116);
}
footer h5 {
    color: rgb(85,113,116);
    font-size: 21px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: rgb(54,71,73);
    border-radius: 10px;
}
footer .menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .menu a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    padding: 5px 0;
    border-bottom: 1px solid rgb(54,71,73,0.5);
}
footer .menu a:hover {
    color: rgb(85,113,116);
    border-bottom-color: rgb(85,113,116);
}
footer .contact_info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
}
footer .contact_info div svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}
footer .footer_agreement {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    margin: 10px 0;
}
footer .copyright {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
footer .copyright_info {
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    margin: 0;
}
footer .copyright a {
    color: #ffffff;
    text-decoration: underline;
}
footer .copyright a:hover {
    color: rgb(85,113,116);
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        gap: 15px;
    }
    footer .container {
        padding: 0 15px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .menu {
        text-align: center;
    }
    footer .contact_info {
        align-items: center;
        text-align: center;
    }
    footer .footer_agreement {
        text-align: center;
    }
}
.onYUa-wrapper-skeleton footer {
    background: rgb(223,227,208);
    padding: 40px 0;
}
.onYUa-wrapper-skeleton footer .menu a {
    color: rgba(0, 0, 0, 0.5);
    border-bottom: none;
}
.onYUa-wrapper-skeleton footer .menu_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.onYUa-wrapper-skeleton footer .copyright_info {
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 800px) {
    .onYUa-wrapper-skeleton footer .menu_holder {
        flex-direction: column;
        align-items: center;
    }
}
.jfOBE-course-offering {
    padding: 120px 0;
    background: rgb(223,227,208);
    position: relative;
    overflow: hidden;
}

.jfOBE-course-offering .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.jfOBE-course-offering h2 {
    font-size: 41px;
    font-weight: 700;
    color: rgb(85,113,116);
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.jfOBE-course-offering h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 5px;
    background: rgb(54,71,73);
    transform: translateX(-50%);
}

.jfOBE-course-offering .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.jfOBE-course-offering .course {
    background: #ffffff;
    border: 2px solid rgb(85,113,116,0.5);
    border-radius: 19px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.jfOBE-course-offering .course::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgb(54,71,73,0.5);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.jfOBE-course-offering .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.jfOBE-course-offering .photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid rgb(54,71,73,0.5);
}

.jfOBE-course-offering .text_holder {
    text-align: center;
    width: 100%;
}

.jfOBE-course-offering h3 {
    font-size: 38px;
    font-weight: 600;
    color: rgb(85,113,116);
    margin-bottom: 15px;
    position: relative;
}

.jfOBE-course-offering h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 30px;
    height: 3px;
    background: rgb(54,71,73);
    transform: translateX(-50%);
}

.jfOBE-course-offering p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.jfOBE-course-offering .button {
    display: inline-block;
    padding: 12px 24px;
    background: rgb(85,113,116);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgb(85,113,116);
}

.jfOBE-course-offering .button:hover {
    background: rgb(54,71,73);
    border-color: rgb(54,71,73);
    color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .jfOBE-course-offering {
        padding: 80px 0;
    }

    .jfOBE-course-offering h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .jfOBE-course-offering .items {
        gap: 20px;
    }

    .jfOBE-course-offering .course {
        padding: 15px;
    }

    .jfOBE-course-offering h3 {
        font-size: 20px;
    }

    .jfOBE-course-offering p {
        font-size: 13px;
        line-height: 1.4;
    }

    .jfOBE-course-offering .button {
        padding: 10px 20px;
        font-size: 15px;
    }
}.WXmHq-learning-process {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.WXmHq-learning-process .work_holder {
    padding: 60px 0;
    position: relative;
}

.WXmHq-learning-process .work_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.WXmHq-learning-process .container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.WXmHq-learning-process .text_holder {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 27px;
    padding: 40px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 650px;
    margin-left: auto;
}

.WXmHq-learning-process .text_holder h4 {
    color: rgb(85,113,116);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.WXmHq-learning-process .text_holder p {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: Playfair Display, sans-serif;
    font-weight: 400;
}

.WXmHq-learning-process .text_holder div {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgb(54,71,73);
}

@media (max-width: 1024px) {
    .WXmHq-learning-process .text_holder {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .WXmHq-learning-process .work_holder {
        padding: 50px 0;
    }
    
    .WXmHq-learning-process .text_holder h4 {
        font-size: calc(34px * 0.9);
    }
}

@media (max-width: 768px) {
    .WXmHq-learning-process .work_holder {
        padding: 40px 0;
    }
    
    .WXmHq-learning-process .text_holder {
        padding: 30px;
    }
    
    .WXmHq-learning-process .text_holder h4 {
        font-size: calc(34px * 0.8);
        margin-bottom: 20px;
    }
    
    .WXmHq-learning-process .text_holder p {
        font-size: calc(18px * 0.95);
    }
}

@media (max-width: 480px) {
    .WXmHq-learning-process .work_holder {
        padding: 30px 0;
    }
    
    .WXmHq-learning-process .text_holder {
        padding: 25px;
    }
    
    .WXmHq-learning-process .text_holder div {
        padding-left: 15px;
    }
    
    .WXmHq-learning-process .text_holder h4 {
        font-size: calc(34px * 0.7);
        margin-bottom: 15px;
    }
}.vgyFo-teaching-history {
    position: relative;
    background: linear-gradient(135deg, rgb(85,113,116), rgb(54,71,73));
    padding: 150px 0;
    overflow: hidden;
}

.vgyFo-teaching-history::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgb(85,113,116,0.5) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgb(54,71,73,0.5) 0%, transparent 60%);
    opacity: 0.1;
}

.vgyFo-teaching-history .holder {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

.vgyFo-teaching-history .review {
    display: flex;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, rgb(223,227,208) 100%);
    border: 1px solid rgb(85,113,116,0.5);
    border-radius: 29px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.vgyFo-teaching-history .photo {
    flex: 0 0 45%;
    min-height: 600px;
    position: relative;
    border-right: 1px solid rgb(85,113,116,0.5);
}

.vgyFo-teaching-history .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgb(85,113,116,0.5) 0%, transparent 70%);
    mix-blend-mode: multiply;
}

.vgyFo-teaching-history .worker_description {
    width: 45%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-left: 3px solid rgb(85,113,116);
}

.vgyFo-teaching-history .name {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.vgyFo-teaching-history .job {
    font-size: 17px;
    font-weight: 600;
    color: rgb(85,113,116);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vgyFo-teaching-history .worker_info {
    flex: 1;
    padding: 60px;
    background: linear-gradient(45deg, transparent 0%, #ffffff 100%);
}

.vgyFo-teaching-history .quote {
    font-size: 18px;
    font-weight: 300;
    color: rgb(85,113,116);
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(to right, rgb(223,227,208) 0%, transparent 100%);
    border-radius: 10px;
    border-left: 2px solid rgb(54,71,73);
}

.vgyFo-teaching-history .story {
    font-size: 18px;
    color: #000000;
    padding: 30px;
    background: linear-gradient(to bottom, #ffffff 0%, rgb(223,227,208) 100%);
    border-radius: 10px;
    border: 1px solid rgb(85,113,116,0.5);
}

@media (max-width: 1200px) {
    .vgyFo-teaching-history {
        padding: 100px 0;
    }

    .vgyFo-teaching-history .review {
        margin: 0 20px;
    }

    .vgyFo-teaching-history .photo {
        flex: 0 0 40%;
        min-height: 500px;
    }

    .vgyFo-teaching-history .worker_description {
        width: 40%;
    }

    .vgyFo-teaching-history .worker_info {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .vgyFo-teaching-history {
        padding: 80px 0;
    }

    .vgyFo-teaching-history .review {
        flex-direction: column;
        padding-bottom: 200px;
    }

    .vgyFo-teaching-history .photo {
        width: 100%;
        min-height: 400px;
        border-right: none;
        border-bottom: 1px solid rgb(85,113,116,0.5);
    }

    .vgyFo-teaching-history .worker_description {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 60px);
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        border-left: none;
        border-top: 3px solid rgb(85,113,116);
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .vgyFo-teaching-history {
        padding: 60px 0;
    }

    .vgyFo-teaching-history .review {
        margin: 0 15px;
    }

    .vgyFo-teaching-history .photo {
        min-height: 350px;
    }

    .vgyFo-teaching-history .worker_description {
        width: calc(100% - 30px);
        padding: 15px;
        bottom: 20px;
    }

    .vgyFo-teaching-history .name {
        font-size: calc(36px * 0.8);
    }

    .vgyFo-teaching-history .worker_info {
        padding: 30px 20px;
    }

    .vgyFo-teaching-history .quote {
        padding: 20px;
        margin-bottom: 30px;
        font-size: calc(18px * 0.9);
    }

    .vgyFo-teaching-history .story {
        padding: 20px;
    }
}.CJswa-connect-with-us {
    padding: 60px 0;
    background-color: rgb(223,227,208);
    font-family: Playfair Display, sans-serif;
}
.CJswa-connect-with-us h3 {
    color: rgb(85,113,116);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.CJswa-connect-with-us .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.CJswa-connect-with-us .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.CJswa-connect-with-us .info {
    flex: 1 1 45%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 19px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.CJswa-connect-with-us .info h5 {
    color: rgb(85,113,116);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}
.CJswa-connect-with-us .info span {
    display: block;
    color: #000000;
    font-size: 12px;
}
.CJswa-connect-with-us .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.CJswa-connect-with-us .info .contact_info svg {
    fill: rgb(85,113,116);
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.CJswa-connect-with-us .logo_holder {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.CJswa-connect-with-us .logo_holder svg, .CJswa-connect-with-us .logo_holder img {
    width: 50px;
    height: 50px;
    fill: rgb(85,113,116);
    flex-shrink: 0;
}
.CJswa-connect-with-us .form {
    flex: 1 1 45%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 19px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.CJswa-connect-with-us .form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(54,71,73);
}
.CJswa-connect-with-us form input,
.CJswa-connect-with-us form select,
.CJswa-connect-with-us form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgb(85,113,116,0.5);
    background-color: rgb(223,227,208);
    color: #000000;
    font-size: 12px;
    transition: border-color 0.3s ease;
}
.CJswa-connect-with-us form input:focus,
.CJswa-connect-with-us form select:focus,
.CJswa-connect-with-us form textarea:focus {
    border-color: rgb(85,113,116);
    outline: none;
    box-shadow: 0 0 5px rgb(85,113,116,0.5);
}
.CJswa-connect-with-us form .button {
    background-color: rgb(85,113,116);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 19px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}
.CJswa-connect-with-us form .button:hover {
    background-color: rgb(54,71,73);
}
.CJswa-connect-with-us .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.CJswa-connect-with-us .agree input[type=checkbox] {
    margin-right: 10px;
    width: auto;
    margin-bottom: 0;
}
.CJswa-connect-with-us .agree label {
    font-size: 12px;
    font-weight: 400;
}
.CJswa-connect-with-us .agree a {
    color: rgb(85,113,116);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .CJswa-connect-with-us .holder {
        flex-direction: column;
    }
    .CJswa-connect-with-us .holder > div {
        width: 100%;
    }
}
.UirfM-catalog-wall {
    background: rgb(223,227,208);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.UirfM-catalog-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgb(85,113,116,0.5) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgb(85,113,116,0.5) 75%),
        linear-gradient(45deg, 
            rgb(85,113,116,0.5) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgb(85,113,116,0.5) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: backgroundMove 20s linear infinite;
    opacity: 0.1;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 30px 30px;
    }
    100% {
        background-position: 60px 60px, 90px 90px;
    }
}

.UirfM-catalog-wall .gallery_content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.UirfM-catalog-wall .gallery_content h2 {
    font-size: 38px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.UirfM-catalog-wall .gallery_content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(85,113,116), 
        transparent);
}

.UirfM-catalog-wall .gallery_holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.UirfM-catalog-wall .gallery_holder .gallery_image {
    position: relative;
    overflow: hidden;
    border-radius: 19px;
    aspect-ratio: 16/9;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.UirfM-catalog-wall .gallery_holder .gallery_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.UirfM-catalog-wall .gallery_holder .gallery_image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgb(85,113,116,0.5),
        rgb(54,71,73,0.5)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.UirfM-catalog-wall .gallery_holder .gallery_image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #ffffff;
    border-radius: 19px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(1.1);
    z-index: 2;
}

.UirfM-catalog-wall .gallery_holder .gallery_image:hover::before {
    opacity: 0.7;
}

.UirfM-catalog-wall .gallery_holder .gallery_image:hover::after {
    opacity: 1;
    transform: scale(0.95);
}

.UirfM-catalog-wall .gallery_holder .gallery_image:hover img {
    transform: scale(1.1) rotateY(5deg);
}

@media (min-width: 768px) {
    .UirfM-catalog-wall .gallery_holder {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .UirfM-catalog-wall .gallery_holder {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .UirfM-catalog-wall .gallery_holder:has(.gallery_image:nth-child(4)) {
        grid-template-columns: repeat(2, 1fr);
    }

    .UirfM-catalog-wall .gallery_holder:has(.gallery_image:nth-child(6)) {
        grid-template-columns: repeat(3, 1fr);
    }

    .UirfM-catalog-wall .gallery_holder:has(.gallery_image:nth-child(8)) {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .UirfM-catalog-wall {
        padding: 40px 0;
    }

    .UirfM-catalog-wall .gallery_content h2 {
        font-size: calc(38px * 0.8);
        margin-bottom: 30px;
    }

    .UirfM-catalog-wall .gallery_holder {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
}
.SxZmU-advantages-summary .advantages_content h2 {
    color: rgb(54,71,73);
}

.SxZmU-advantages-summary .advantage_item svg, .SxZmU-advantages-summary .advantage_item svg path {
    fill: rgb(85,113,116);
}

.SxZmU-advantages-summary .advantage_item p {
    color: #000000;
}

.SxZmU-advantages-summary .advantage_item b {
    color: rgb(85,113,116);
}

.SxZmU-advantages-summary {
    padding-top: 80px;
    padding-bottom: 80px;
}

.SxZmU-advantages-summary .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.SxZmU-advantages-summary .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.SxZmU-advantages-summary .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 28px;
    font-weight: 600;
}

.SxZmU-advantages-summary .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.SxZmU-advantages-summary .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.SxZmU-advantages-summary .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.SxZmU-advantages-summary .advantage_item svg, .SxZmU-advantages-summary .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .SxZmU-advantages-summary .advantages_content h2 {
        font-size: 30px;
    }

    .SxZmU-advantages-summary .advantages_holder {
        flex-direction: column;
    }

    .SxZmU-advantages-summary {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantages_content h2 {
    font-size: 48px;
    font-weight: 300;
}

.onYUa-wrapper-skeleton .SxZmU-advantages-summary {
    justify-content: space-between;
}

.onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantage_item {
    padding: 30px;
    align-items: flex-start;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    justify-content: flex-start;
    width: 24%;
}

.onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0 60px 0 rgba(0, 0, 0, 0.1);
}

.onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantage_item svg, .onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantage_item img {
    width: 50px;
    height: 50px;
}

.onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantages_content h4 {
    text-align: left;
    font-size: 24px;
    font-weight: 600;

}

@media only screen and (max-width: 800px) {
    .onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantage_item {
        width: 100%;
    }

    .onYUa-wrapper-skeleton .SxZmU-advantages-summary .advantages_content h2 {
        font-size: 28px;
    }
}.XpEdu-welcome-board {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}
.XpEdu-welcome-board .title_page_holder {
    width: 100%;
    min-height: 800px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    border: 5px solid rgb(85,113,116);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
}
.XpEdu-welcome-board .style_element {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    width: 80%;
    max-width: 1000px;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1;
    border: 2px solid rgb(54,71,73);
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.XpEdu-welcome-board .style_element h1 {
    font-size: 44px;
    font-weight: 700;
    color: rgb(85,113,116);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(54,71,73);
    padding-bottom: 10px;
    transition: color 0.5s ease-in-out;
}
.XpEdu-welcome-board .style_element h3 {
    font-size: 34px;
    color: rgb(54,71,73);
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.5s ease-in-out;
}
.XpEdu-welcome-board .style_element p {
    font-size: 17px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.5s ease-in-out;
}
.XpEdu-welcome-board .style_element::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px dashed rgb(85,113,116);
    border-radius: 28px;
    z-index: -1;
    transition: border-color 0.5s ease-in-out;
}
.XpEdu-welcome-board .style_element::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px dotted rgb(54,71,73);
    border-radius: 28px;
    z-index: -2;
    transition: border-color 0.5s ease-in-out;
}
.XpEdu-welcome-board .title_page_holder:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgb(54,71,73);
}
.XpEdu-welcome-board .style_element:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.9);
}
.XpEdu-welcome-board .style_element h1:hover,
.XpEdu-welcome-board .style_element h3:hover,
.XpEdu-welcome-board .style_element p:hover {
    color: rgb(85,113,116);
}
.XpEdu-welcome-board .style_element::before:hover,
.XpEdu-welcome-board .style_element::after:hover {
    border-color: rgb(85,113,116);
}
.onYUa-wrapper-skeleton .XpEdu-welcome-board {
    position: relative;
    padding: 0;
    background: rgb(223,227,208);
}
.onYUa-wrapper-skeleton .XpEdu-welcome-board::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    z-index: 0;
}
.onYUa-wrapper-skeleton .XpEdu-welcome-board .title_page_holder {
    border: 8px solid rgb(85,113,116);
    box-shadow: inset 0 0 10px rgb(54,71,73,0.5);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.onYUa-wrapper-skeleton .XpEdu-welcome-board .style_element {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgb(85,113,116,0.5) 0%, #ffffff 100%);
    padding: 60px;
    text-align: left;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.onYUa-wrapper-skeleton .XpEdu-welcome-board .style_element h1 {
    text-align: left;
    color: #000000;
    font-size: 44px;
    margin-bottom: 20px;
    z-index: 1;
    border-bottom: 2px solid rgb(85,113,116);
    padding-bottom: 15px;
    transition: color 0.5s ease-in-out;
}
.onYUa-wrapper-skeleton .XpEdu-welcome-board .style_element h3 {
    text-align: left;
    font-size: 34px;
    color: #000000;
    margin-bottom: 15px;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}
.onYUa-wrapper-skeleton .XpEdu-welcome-board .style_element p {
    text-align: left;
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}
@media only screen and (max-width: 1200px) {
    .XpEdu-welcome-board .style_element {
        width: 95%;
        padding: 30px;
    }
    .onYUa-wrapper-skeleton .XpEdu-welcome-board .style_element {
        padding: 50px 30px;
    }
}
@media only screen and (max-width: 800px) {
    .XpEdu-welcome-board .style_element {
        width: 100%;
        padding: 20px;
    }
    .onYUa-wrapper-skeleton .XpEdu-welcome-board .style_element {
        padding: 40px 20px;
    }
    .XpEdu-welcome-board .style_element h1 {
        font-size: calc(44px - 10px);
    }
    .XpEdu-welcome-board .style_element h3 {
        font-size: calc(34px - 5px);
    }
    .XpEdu-welcome-board .style_element p {
        font-size: 17px;
    }
}header .main_header {
    background: rgb(85,113,116,0.5);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
}

header .logo_holder svg, header .logo_holder svg path, header .logo_holder img {
    fill: rgb(54,71,73);
}

header .menu a {
    color: #ffffff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
}

header .menu a:hover {
    border-bottom: 3px solid rgb(54,71,73);
}

header .menu a.active {
    border-bottom: 3px solid rgb(54,71,73);
}

header {
    border-bottom: 2px solid rgb(54,71,73,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 .logo_caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}

header .logo_desc {
    font-size: 15px;
    font-weight: 600;
    color: rgb(54,71,73);
}

header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 50px;
    width: 50px;
}

header .menu {
    display: flex;
    gap: 20px;
}

body .onYUa-wrapper-skeleton header .opened {
    display: flex;
}

@media only screen and (max-width: 1200px) {
    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;
        background: rgb(85,113,116);
        width: 100%;
        box-shadow: none;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
    header .menu a.active {
        border-bottom: 3px solid rgb(54,71,73);
    }
    header .main_header {
        position: relative;
        z-index: 99;
        padding: 10px 0;
    }
    header .logo_holder {
        width: 100%;
        justify-content: center;
    }
    header .logo_holder .logotype {
        margin-right: 5px;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}.KAObw-plan-deck {
    position: relative;
    overflow: hidden;
    background: #000000;
    padding: 120px 0;
}

.KAObw-plan-deck .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    filter: grayscale(100%) contrast(120%);
    mix-blend-mode: luminosity;
}

.KAObw-plan-deck::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(85,113,116,0.5), rgb(54,71,73,0.5));
    z-index: 1;
}

.KAObw-plan-deck .price_holder {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.KAObw-plan-deck .price_holder h2 {
    font-size: calc(42px * 1.5);
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.KAObw-plan-deck .price_section_description {
    font-size: 21px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
    opacity: 0.9;
}

.KAObw-plan-deck .price_cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    perspective: 1000px;
}

.KAObw-plan-deck .price_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transform-style: preserve-3d;
}

.KAObw-plan-deck .price_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(85,113,116,0.5), transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
}

.KAObw-plan-deck .price_card:hover::before {
    opacity: 0.5;
    transform: translate(25%, 25%);
}

.KAObw-plan-deck .price_card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    transform: translateZ(30px);
}

.KAObw-plan-deck .price_card .KAObw-plan-deck .price_amount {
    font-size: calc(30px * 1.2);
    color: rgb(85,113,116);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    transform: translateZ(50px);
    text-shadow: 0 0 10px rgb(85,113,116,0.5);
}

.KAObw-plan-deck .price_card p {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    transform: translateZ(20px);
    opacity: 0.9;
}

.KAObw-plan-deck .price_card .button {
    display: inline-block;
    padding: 15px 40px;
    background: rgb(85,113,116);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(40px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.KAObw-plan-deck .price_card .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.KAObw-plan-deck .price_card .button:hover::before {
    left: 100%;
}

.KAObw-plan-deck .price_card:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .KAObw-plan-deck .price_cards {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .KAObw-plan-deck {
        padding: 80px 0;
    }

    .KAObw-plan-deck .price_holder h2 {
        font-size: calc(30px * 1.2);
    }

    .KAObw-plan-deck .price_section_description {
        font-size: 12px;
    }

    .KAObw-plan-deck .price_card {
        min-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .KAObw-plan-deck {
        padding: 60px 0;
    }

    .KAObw-plan-deck .price_holder h2 {
        font-size: 30px;
    }

    .KAObw-plan-deck .price_card {
        padding: 40px 30px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.KAObw-plan-deck .price_card:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.KAObw-plan-deck .price_card:nth-child(2) {
    animation: float 6s ease-in-out infinite 1s;
}

.KAObw-plan-deck .price_card:nth-child(3) {
    animation: float 6s ease-in-out infinite 2s;
}

.KAObw-plan-deck .price_card:nth-child(4) {
    animation: float 6s ease-in-out infinite 3s;
}