* {
    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: Nunito, sans-serif;
    color: #000000;
}
.viewport-container-v {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(185,234,245);
}
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;
    }
}.meet-us-e {
    position: relative;
    padding: 80px 0;
    background: rgb(125,188,200);
    overflow: hidden;
}

.viewport-container-v .meet-us-e .holder {
    height: auto;
    position: relative;
    z-index: 2;
}

.viewport-container-v .meet-us-e .caption_holder {
    display: flex;
    min-height: 700px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.viewport-container-v .meet-us-e .holder .photo {
    display: block;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: rgb(109,115,157);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    margin-right: 20px;
}

.viewport-container-v .meet-us-e .style_element {
    position: relative;
    z-index: 3;
    background: #ffffff;
    border-radius: 11px;
    min-height: 500px;
    width: 55%;
    padding: 40px 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.viewport-container-v .meet-us-e h2 {
    color: #000000;
    margin-top: 20px;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.2;
}

.viewport-container-v .meet-us-e p {
    color: #000000;
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
}

.meet-us-e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(109,115,157,0.5), transparent);
    transform: translateX(-50%);
    z-index: 1;
    animation: rotateBackground 10s linear infinite;
}

@keyframes rotateBackground {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@media only screen and (max-width: 1200px) {
    .viewport-container-v .meet-us-e .holder .photo {
        width: 450px;
        height: 450px;
    }

    .viewport-container-v .meet-us-e .style_element {
        width: 70%;
        padding: 30px 40px;
    }
}

@media only screen and (max-width: 800px) {
    .viewport-container-v .meet-us-e .caption_holder {
        flex-direction: column;
        min-height: unset;
        text-align: center;
    }

    .viewport-container-v .meet-us-e .style_element {
        width: 90%;
        padding: 30px;
        height: auto;
    }

    .viewport-container-v .meet-us-e .holder .photo {
        width: 300px;
        height: 300px;
        margin: 0 auto 20px auto;
    }
}.customer-comments-E {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgb(109,115,157);
    font-family: Nunito, sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.customer-comments-E::before,
.customer-comments-E::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1) 25%, transparent 25%), 
                linear-gradient(135deg, rgba(0, 255, 255, 0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(0, 255, 255, 0.1) 75%), 
                linear-gradient(135deg, transparent 75%, rgba(0, 255, 255, 0.1) 75%);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.customer-comments-E::before {
    top: 0;
    left: 0;
}

.customer-comments-E::after {
    bottom: 0;
    right: 0;
}

.customer-comments-E h2 {
    color: rgb(125,188,200);
    font-size: 41px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.customer-comments-E .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.customer-comments-E .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.customer-comments-E .review {
    background: rgb(125,188,200);
    border-radius: 10px;
    border: 1px solid rgb(125,188,200,0.5);
    padding: 30px;
    flex-basis: calc(25% - 40px);
    box-shadow: 0 0 15px rgb(125,188,200,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.customer-comments-E .review::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid rgb(109,115,157);
    pointer-events: none;
}

.customer-comments-E .photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #000000;
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
    border: 3px solid rgb(125,188,200);
    box-shadow: 0 0 10px rgb(125,188,200,0.5);
    position: relative;
}

.customer-comments-E .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgb(109,115,157);
    box-shadow: 0 0 10px rgb(125,188,200,0.5);
    pointer-events: none;
}

.customer-comments-E .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.customer-comments-E .text span {
    color: rgb(109,115,157);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.customer-comments-E .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0 10px;
    border-left: 2px solid rgb(125,188,200,0.5);
    border-right: 2px solid rgb(125,188,200,0.5);
}

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

    .customer-comments-E h2 {
        font-size: 33px;
    }

    .customer-comments-E .reviews {
        flex-direction: column;
        gap: 20px;
    }

    .customer-comments-E .review {
        flex-basis: 100%;
    }

    .customer-comments-E .photo {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .customer-comments-E .review span {
        font-size: 19px;
    }
}

.viewport-container-v .customer-comments-E .photo {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.viewport-container-v .customer-comments-E .review {
    padding: 0;
    border-radius: 10px;
}

.viewport-container-v .customer-comments-E .review span {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

.viewport-container-v .customer-comments-E .review span::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: rgb(109,115,157);
    margin: 0 auto 10px auto;
}

.viewport-container-v .customer-comments-E .review p {
    padding: 20px;
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    text-align: center;
}
footer {
    background: rgb(109,115,157);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    padding: 60px 0;
}
footer .footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
footer .logo_holder {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .logo_holder svg, footer .logo_holder img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
    fill: rgb(125,188,200);
}
footer .logo_holder svg:hover, footer .logo_holder img:hover {
    transform: scale(1.1);
}
footer h5 {
    color: rgb(125,188,200);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}
footer .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
footer .menu_holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .menu a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}
footer .menu a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgb(125,188,200);
    left: 0;
    bottom: -4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
footer .menu a:hover {
    color: rgb(125,188,200);
}
footer .menu a:hover::after {
    transform: scaleX(1);
}
footer .contact_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}
footer .contact_info div svg {
    width: 20px;
    height: 20px;
    fill: rgb(125,188,200);
}
footer .contact_info div span {
    font-size: 14px;
}
footer .footer_agreement {
    margin-top: 30px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 16px;
}
footer .copyright {
    background: rgb(125,188,200,0.5);
    padding: 10px 0;
    text-align: center;
}
footer .copyright_info {
    color: #ffffff;
    font-size: 16px;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s;
}
footer .copyright_info a:hover {
    color: rgb(109,115,157);
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .contact_info {
        margin-top: 20px;
        align-items: center;
    }
    footer .logo_holder {
        margin-bottom: 20px;
    }
}
footer .menu a::before {
    content: '• ';
    color: rgb(125,188,200);
    font-size: 1.2em;
}
footer .contact_info div {
    position: relative;
    padding-left: 20px;
}
footer .contact_info div::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgb(125,188,200);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.viewport-container-v footer {
    background: linear-gradient(130deg, rgb(125,188,200,0.5) 0%, rgb(109,115,157,0.5) 100%);
}
.viewport-container-v footer .footer {
    padding-top: 30px;
}
.viewport-container-v footer .menu a {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
}
.viewport-container-v footer .logo_holder svg, .viewport-container-v footer .logo_holder img {
    width: 80px;
    height: 80px;
    margin: 0;
}
@media only screen and (max-width: 800px) {
    .viewport-container-v footer .footer_info {
        flex-direction: column;
    }
    .viewport-container-v footer .footer_info {
        padding: 0;
    }
    .viewport-container-v footer .logo_holder {
        margin-bottom: 16px;
    }
}
.privacy-redoubt-o {
    padding: 40px;
    width: 100%;
    height: auto;
    background: rgb(109,115,157);
    border: 2px solid rgb(125,188,200);
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #ffffff;
    box-shadow: 0 0 10px rgb(125,188,200,0.5), inset 0 0 15px rgba(0, 0, 0, 0.5);
}
.privacy-redoubt-o h1 {
    font-size: 48px;
    font-family: Nunito, sans-serif;
    color: rgb(125,188,200);
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(109,115,157);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.privacy-redoubt-o h2 {
    font-size: 32px;
    font-family: Nunito, sans-serif;
    color: rgb(109,115,157);
    font-weight: 600;
    text-align: left;
    margin: 0;
    padding-left: 15px;
    border-left: 4px solid rgb(125,188,200);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.privacy-redoubt-o h3, .privacy-redoubt-o h4, .privacy-redoubt-o h5 {
    font-size: 24px;
    color: #ffffff;
}
.privacy-redoubt-o ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}
.privacy-redoubt-o li {
    margin-bottom: 10px;
    font-size: 17px;
    font-family: Nunito, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background: rgb(109,115,157,0.5);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(125,188,200);
}
.privacy-redoubt-o div {
    line-height: 1.8;
    font-size: 17px;
    font-family: Nunito, sans-serif;
    color: #000000;
    padding: 20px;
    background: rgb(125,188,200,0.5);
    border-radius: 11px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(109,115,157);
}
.privacy-redoubt-o p, .privacy-redoubt-o span {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 17px;
    color: #ffffff;
    font-family: Nunito, sans-serif;
}
@media only screen and (max-width: 800px) {
    .privacy-redoubt-o {
        padding: 20px;
    }
    .privacy-redoubt-o h1 {
        font-size: calc(24px - 4px);
        margin-bottom: 15px;
    }
    .privacy-redoubt-o h2 {
        font-size: calc(24px - 2px);
        margin-bottom: 10px;
    }
    .privacy-redoubt-o ul {
        padding-left: 15px;
    }
    .privacy-redoubt-o li {
        padding: 8px;
        margin-bottom: 8px;
    }
    .privacy-redoubt-o div {
        padding: 15px;
    }
}.title-opener-p {
    width: 100%;
    padding: 0;
    background: #000000;
    color: #ffffff;
    font-family: Nunito, sans-serif;
    position: relative;
    overflow: hidden;
}
.title-opener-p .title_page_holder {
    width: 100%;
    margin: 0 auto;
    min-height: 600px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px;
    border: 1px solid rgb(125,188,200);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    overflow: hidden;
}
.title-opener-p .style_element {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: left;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.title-opener-p .style_element h1 {
    color: rgb(125,188,200);
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(109,115,157);
    padding-bottom: 10px;
    letter-spacing: 1px;
}
.title-opener-p .style_element h3 {
    color: rgb(109,115,157);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(125,188,200);
    padding-bottom: 8px;
    letter-spacing: 1px;
}
.title-opener-p .style_element p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(125,188,200);
}
.title-opener-p .title_page_holder:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: 0;
}
.title-opener-p .style_element:before,
.title-opener-p .style_element:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(125,188,200), rgb(109,115,157));
    animation: neon-glow 3s infinite alternate;
}
.title-opener-p .style_element:before {
    left: -2px;
    top: 0;
}
.title-opener-p .style_element:after {
    right: -2px;
    bottom: 0;
}
@keyframes neon-glow {
    from {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.8);
    }
}
.title-opener-p .style_element ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.title-opener-p .style_element ul li {
    margin-bottom: 10px;
    list-style: none;
    color: rgb(125,188,200);
    position: relative;
    padding-left: 20px;
}
.title-opener-p .style_element ul li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgb(109,115,157);
}
@media (max-width: 992px) {
    .title-opener-p {
        padding: 60px 0;
    }
    .title-opener-p .title_page_holder {
        padding: 30px;
    }
    .title-opener-p .style_element {
        padding: 30px;
    }
    .title-opener-p .style_element h1 {
        font-size: 1.8rem;
    }
    .title-opener-p .style_element h3 {
        font-size: 1.5rem;
    }
    .title-opener-p .style_element p {
        font-size: 0.875rem;
    }
    .title-opener-p .title_page_holder:before {
        width: 800px;
        height: 800px;
    }
}
@media (max-width: 576px) {
    .title-opener-p {
        padding: 40px 0;
    }
    .title-opener-p .title_page_holder {
        padding: 20px;
    }
    .title-opener-p .style_element {
        padding: 20px;
    }
    .title-opener-p .style_element h1 {
        font-size: 1.5rem;
    }
    .title-opener-p .style_element h3 {
        font-size: 1.25rem;
    }
    .title-opener-p .style_element p {
        font-size: 0.75rem;
    }
    .title-opener-p .title_page_holder:before {
        width: 600px;
        height: 600px;
    }
}.tySpotlight-Z {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(125,188,200,0.5);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.tySpotlight-Z::before,
.tySpotlight-Z::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgb(125,188,200,0.5);
    z-index: 1;
}
.tySpotlight-Z::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}
.tySpotlight-Z::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}
.tySpotlight-Z .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    max-width: 1000px;
    padding: 40px;
    z-index: 2;
    position: relative;
}
.tySpotlight-Z h2 {
    margin-bottom: 20px;
    font-size: 46px;
    font-weight: 700;
    color: rgb(125,188,200);
    border-bottom: 2px solid rgb(125,188,200);
    padding-bottom: 10px;
    width: 100%;
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px #ffffff;
}

.tySpotlight-Z p {
    font-size: 17px;
    color: #000000;
    font-weight: 400;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}
.tySpotlight-Z p + p {
    margin-top: 20px;
}
.tySpotlight-Z p::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: rgb(125,188,200);
    border-radius: 50%;
    margin-bottom: 10px;
}
@media only screen and (max-width: 800px) {
    .tySpotlight-Z {
        padding: 10px;
    }
    .tySpotlight-Z .container {
        padding: 20px;
        width: 100%;
    }
    .tySpotlight-Z h2 {
        font-size: 31px;
    }
    .tySpotlight-Z p {
        font-size: 14px;
    }
}
.program-structure-E {
    padding-top: 90px;
    padding-bottom: 90px;
    font-family: Nunito, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.program-structure-E h2 {
    color: rgb(125,188,200);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.program-structure-E .content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #ffffff;
}
.program-structure-E .content:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}
.program-structure-E h3 {
    color: rgb(109,115,157);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}
.program-structure-E p {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
}
.program-structure-E .button {
    background: rgb(125,188,200);
    color: #ffffff;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}
.program-structure-E .button:hover {
    background: rgb(109,115,157);
    transform: translateY(-5px);
}
.program-structure-E .holder {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.program-structure-E .items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.program-structure-E .course {
    padding: 20px;
    margin-bottom: 40px;
}
.program-structure-E .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
}
.program-structure-E .text_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}
.program-structure-E .photo {
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
@media only screen and (max-width: 800px) {
    .program-structure-E .items {
        flex-direction: column;
    }
    .program-structure-E h2 {
        font-size: 23px;
    }
    .program-structure-E h3 {
        font-size: 22px;
    }
    .program-structure-E .course {
        max-width: 100%;
        flex-basis: 100%;
        padding: 0;
    }
    .program-structure-E {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .viewport-container-v .program-structure-E .content {
        padding: 10px;
    }
}
.viewport-container-v .program-structure-E {
    position: relative;
    overflow: hidden;
    background: rgb(185,234,245);
}
.viewport-container-v .program-structure-E .items {
    width: 100%;
}
.viewport-container-v .program-structure-E .content {
    border-radius: 10px;
    box-shadow: none;
}
.viewport-container-v .program-structure-E .text_holder {
    position: relative;
    z-index: 3;
    background: none;
    width: 100%;
    min-height: unset;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: #000000;
    border: none;
}
.viewport-container-v .program-structure-E h3 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(109,115,157);
    margin: 0;
}
.viewport-container-v .program-structure-E p {
    padding: 0 40px 0 0;
    margin-top: 20px;
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
}
.viewport-container-v .program-structure-E .button {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    background: rgb(125,188,200);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.viewport-container-v .program-structure-E .button:hover {
    background: rgb(109,115,157);
    transform: translateY(-5px);
}
@media only screen and (max-width: 800px) {
    .viewport-container-v .program-structure-E .text_holder {
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .viewport-container-v .program-structure-E p {
        padding: 0;
        font-size: 18px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .viewport-container-v .program-structure-E h3 {
        font-size: 22px;
    }
    .viewport-container-v .program-structure-E .button {
        margin-top: 20px;
    }
}.advantages-outline-D {
    padding: 70px 0;
    background: rgb(185,234,245);
    position: relative;
    overflow: hidden;
}
.advantages-outline-D:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(125,188,200,0.5) 0%, rgb(109,115,157,0.5) 100%);
    opacity: 0.2;
    z-index: 1;
}
.advantages-outline-D .advantages_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 20px;
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
}
.advantages-outline-D .advantages_photo_holder {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}
.advantages-outline-D .advantages_photo_holder .photo {
    flex: 1;
    height: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantages-outline-D .advantages_holder {
    display: flex;
    flex-direction: column;
    flex: 2;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.advantages-outline-D .advantages_holder .advantage_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}
.advantages-outline-D .advantages_holder .advantage_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.advantages-outline-D .advantages_holder .advantage_item .advantage_image {
    margin-right: 15px;
}
.advantages-outline-D .advantages_holder .advantage_item svg, .advantages-outline-D .advantages_holder .advantage_item svg path {
    width: 50px;
    height: 50px;
    fill: rgb(125,188,200);
}
.advantages-outline-D .advantages_holder .advantage_item h4 {
    font-size: 20px;
    color: rgb(125,188,200);
    font-weight: 600;
}
.advantages-outline-D .advantages_content h2 {
    font-size: 31px;
    color: rgb(125,188,200);
    text-align: center;
    margin: 20px 0;
    width: 100%;
}
@media only screen and (max-width: 800px) {
    .advantages-outline-D {
        padding: 50px 0;
    }
    .advantages-outline-D .advantages_content {
        flex-direction: column;
        padding: 20px;
    }
    .advantages-outline-D .advantages_photo_holder {
        flex-direction: column;
    }
    .advantages-outline-D .advantages_photo_holder .photo {
        height: 250px;
        flex: auto;
    }
    .advantages-outline-D .advantages_holder {
        flex-direction: column;
        gap: 10px;
    }
    .advantages-outline-D .advantages_holder .advantage_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .advantages-outline-D .advantages_holder .advantage_item .advantage_image {
        margin: 0 0 15px 0;
    }
    .advantages-outline-D .advantages_content h2 {
        font-size: 20px;
    }
}
.prospective-students-t {
    position: relative;
    width: 100%;
}

.prospective-students-t .who_needs_background {
    position: relative;
    padding: 140px 0;
    isolation: isolate;
}

.prospective-students-t .who_needs_background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgb(125,188,200,0.5) 0%,
        rgba(0, 0, 0, 0.5) 70%
    );
    z-index: 1;
}

.prospective-students-t .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.prospective-students-t .who_needs_text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prospective-students-t .who_needs_text h3 {
    color: #ffffff;
    font-size: 41px;
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    margin-bottom: 80px;
    line-height: 1.3;
    position: relative;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000,
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.prospective-students-t .who_needs_text h3::before,
.prospective-students-t .who_needs_text h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: rgb(125,188,200);
    bottom: -20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.prospective-students-t .who_needs_text h3::before {
    left: 50%;
    transform: translateX(-70px);
}

.prospective-students-t .who_needs_text h3::after {
    left: 50%;
    transform: translateX(10px);
}

.prospective-students-t .who_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    perspective: 1000px;
}

.prospective-students-t .who_needs_item {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform-style: preserve-3d;
    transition: transform 0.4s ease-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.prospective-students-t .who_needs_item * {
    color: #ffffff !important;
}

.prospective-students-t .who_needs_item:nth-child(3n-1) {
    transform: translateY(40px);
}

.prospective-students-t .who_needs_item:nth-child(3n) {
    transform: translateY(80px);
}

.prospective-students-t .who_needs_item svg {
    width: 32px;
    height: 32px;
    fill: rgb(125,188,200);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: translateZ(20px);
}

.prospective-students-t .who_needs_item span {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    transform: translateZ(10px);
    text-shadow: 
        -1px -1px 1px rgba(0, 0, 0, 0.8),
        1px -1px 1px rgba(0, 0, 0, 0.8),
        -1px 1px 1px rgba(0, 0, 0, 0.8),
        1px 1px 1px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

.prospective-students-t .who_needs_item:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(10px);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.prospective-students-t .who_needs_item:nth-child(3n-1):hover {
    transform: translateY(40px) rotateX(5deg) rotateY(-5deg) translateZ(10px);
}

.prospective-students-t .who_needs_item:nth-child(3n):hover {
    transform: translateY(80px) rotateX(5deg) rotateY(-5deg) translateZ(10px);
}

@media (max-width: 1400px) {
    .prospective-students-t .container {
        padding: 0 40px;
    }

    .prospective-students-t .who_items {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .prospective-students-t .who_needs_text h3 {
        font-size: calc(41px * 0.9);
        margin-bottom: 70px;
    }

    .prospective-students-t .who_needs_item {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .prospective-students-t .who_items {
        grid-template-columns: repeat(2, 1fr);
    }

    .prospective-students-t .who_needs_item:nth-child(3n-1),
    .prospective-students-t .who_needs_item:nth-child(3n) {
        transform: none;
    }

    .prospective-students-t .who_needs_item:nth-child(even) {
        transform: translateY(40px);
    }

    .prospective-students-t .who_needs_text h3 {
        font-size: calc(41px * 0.8);
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .prospective-students-t .who_needs_background {
        padding: 100px 0;
    }

    .prospective-students-t .who_needs_text h3 {
        font-size: calc(41px * 0.7);
        margin-bottom: 50px;
    }

    .prospective-students-t .who_items {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .prospective-students-t .who_needs_item,
    .prospective-students-t .who_needs_item:nth-child(even) {
        transform: none;
    }

    .prospective-students-t .who_needs_item span {
        font-size: calc(19px * 0.9);
    }
}

@media (max-width: 576px) {
    .prospective-students-t .who_needs_background {
        padding: 80px 0;
    }

    .prospective-students-t .container {
        padding: 0 20px;
    }

    .prospective-students-t .who_needs_text h3 {
        font-size: calc(41px * 0.6);
        margin-bottom: 40px;
    }

    .prospective-students-t .who_needs_text h3::before,
    .prospective-students-t .who_needs_text h3::after {
        width: 40px;
        bottom: -15px;
    }

    .prospective-students-t .who_needs_text h3::before {
        transform: translateX(-50px);
    }

    .prospective-students-t .who_needs_text h3::after {
        transform: translateX(10px);
    }

    .prospective-students-t .who_needs_item {
        padding: 25px;
    }

    .prospective-students-t .who_needs_item svg {
        width: 28px;
        height: 28px;
    }
}.get-in-touch-L {
    padding: 60px 0;
    background-color: rgb(185,234,245);
    font-family: Nunito, sans-serif;
}
.get-in-touch-L .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.get-in-touch-L .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.get-in-touch-L .info, .get-in-touch-L .form {
    flex: 1 1 48%;
    padding: 30px;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.get-in-touch-L .info {
    color: #000000;
}
.get-in-touch-L h3, .get-in-touch-L h5 {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(125,188,200);
    padding-bottom: 10px;
}
.get-in-touch-L .info h3 {
    font-size: 31px;
    color: rgb(125,188,200);
}
.get-in-touch-L .info .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.get-in-touch-L .info .logo_holder svg, .get-in-touch-L .info .logo_holder img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
    fill:rgb(125,188,200);
}
.get-in-touch-L .info .logo_holder span {
    color: rgb(109,115,157);
    font-size: 13px;
}
.get-in-touch-L .info .contact_info {
    margin-top: 20px;
}
.get-in-touch-L .info .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.get-in-touch-L .info .contact_info svg {
    fill: rgb(125,188,200);
    margin-right: 10px;
    width: 24px;
    height: 24px;
}
.get-in-touch-L .info .contact_info span {
    font-size: 13px;
    color: #000000;
}
.get-in-touch-L .form h3 {
    font-size: 31px;
    color: rgb(109,115,157);
    margin-bottom: 30px;
    text-align: center;
}
.get-in-touch-L .form input, .get-in-touch-L .form select, .get-in-touch-L .form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    font-size: 13px;
    color: #000000;
    background: #ffffff;
    outline: none;
}
.get-in-touch-L .form .button {
    padding: 15px 30px;
    border: none;
    border-radius: 13px;
    background: rgb(125,188,200);
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: center;
}
.get-in-touch-L .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.get-in-touch-L .agree input[type="checkbox"] {
    margin-right: 10px;
    margin-bottom: 0;
    width: auto;
}
.get-in-touch-L .agree label {
    font-size: 13px;
    color: #000000;
}
.get-in-touch-L .agree a {
    color: rgb(125,188,200);
    text-decoration: underline;
}
@media (max-width: 900px) {
    .get-in-touch-L .holder {
        flex-direction: column;
    }
    .get-in-touch-L .info, .get-in-touch-L .form {
        flex: 1 1 100%;
    }
    .get-in-touch-L .form h3,.get-in-touch-L .info h3 {
        font-size: 28px;
        text-align: center;
    }
}
.education-framework-Q {
    position: relative;
    background: linear-gradient(180deg, 
        rgb(185,234,245) 0%,
        rgb(125,188,200,0.5) 100%);
    padding: 150px 0;
    overflow: hidden;
}

.education-framework-Q::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 50%, rgb(125,188,200,0.5) 100%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 1px,
            rgb(125,188,200,0.5) 2px,
            transparent 3px
        );
    opacity: 0.1;
    animation: scanlines 8s linear infinite;
}

.education-framework-Q::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
        transparent 0%,
        rgb(125,188,200,0.5) 25%,
        transparent 50%);
    transform-origin: center;
    animation: rotateGradient 30s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

@keyframes rotateGradient {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.education-framework-Q .work_holder {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.education-framework-Q .container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 80px;
    transform-style: preserve-3d;
}

.education-framework-Q .photo {
    flex: 0 0 45%;
    height: 700px;
    position: relative;
    transform: rotateY(-15deg) translateZ(50px);
    transition: transform 0.6s ease;
}

.education-framework-Q .photo:hover {
    transform: rotateY(0) translateZ(0);
}

.education-framework-Q .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgb(125,188,200,0.5);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 0);
    animation: borderPulse 4s infinite;
}

.education-framework-Q .photo::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: linear-gradient(45deg,
        rgb(125,188,200,0.5) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.education-framework-Q .photo:hover::after {
    opacity: 0.2;
}

@keyframes borderPulse {
    0%, 100% { border-color: rgb(125,188,200,0.5); }
    50% { border-color: rgb(109,115,157,0.5); }
}

.education-framework-Q .holder {
    flex: 0 0 55%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.education-framework-Q .holder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at center,
        rgb(125,188,200,0.5) 0%,
        transparent 70%
    );
    opacity: 0.1;
    animation: pulseGlow 10s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

.education-framework-Q .holder h3 {
    color: #ffffff;
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-right: 40px;
    display: inline-block;
}

.education-framework-Q .holder h3::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: rgb(125,188,200);
    transform: translateY(-50%);
}

.education-framework-Q .holder span {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
    display: block;
    position: relative;
    padding-left: 20px;
}

.education-framework-Q .holder span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        rgb(125,188,200) 0%,
        transparent 100%);
}

@media (max-width: 1200px) {
    .education-framework-Q .container {
        gap: 60px;
    }
    
    .education-framework-Q .photo {
        flex: 0 0 40%;
        height: 600px;
    }
}

@media (max-width: 1024px) {
    .education-framework-Q {
        padding: 100px 0;
    }

    .education-framework-Q .container {
        flex-direction: column;
        gap: 40px;
    }

    .education-framework-Q .photo {
        flex: 0 0 auto;
        width: 100%;
        height: 500px;
        transform: rotateY(0) translateZ(0);
    }

    .education-framework-Q .holder {
        width: 100%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .education-framework-Q {
        padding: 80px 0;
    }

    .education-framework-Q .photo {
        height: 400px;
    }

    .education-framework-Q .holder {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .education-framework-Q {
        padding: 60px 0;
    }

    .education-framework-Q .container {
        padding: 0 20px;
    }

    .education-framework-Q .photo {
        height: 300px;
    }

    .education-framework-Q .holder {
        padding: 25px;
    }

    .education-framework-Q .holder h3 {
        font-size: calc(47px * 0.7);
        margin-bottom: 20px;
    }

    .education-framework-Q .holder span {
        font-size: calc(15px * 0.9);
    }
}header .main_header {
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
header .logo_holder {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-right: 26px;
}
header .logo_holder .logotype {
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .logo_holder svg, header .logo_holder img {
    height: 60px;
    width: 60px;
    fill: rgb(125,188,200);
    transition: transform 0.3s ease-in-out;
}
header .logo_holder svg:hover, header .logo_holder img:hover {
    transform: scale(1.1);
}
header .menu {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}
header .menu a {
    color: rgb(109,115,157);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 10px;
    position: relative;
}
header .menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: rgb(109,115,157);
    transition: width 0.3s ease;
}
header .menu a:hover::before {
    width: 100%;
}
header .menu a.active {
    color: rgb(125,188,200);
}
header .menu a.active::before {
    background: rgb(125,188,200);
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-bottom: 1px solid rgb(109,115,157);
}
@media (max-width: 1200px) {
    header .logo_holder {
        margin-right: 0;
    }
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        width: 100%;
        padding: 20px;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 15px;
        width: 100%;
        text-align: left;
    }
    header .logo_holder {
        width: 100%;
        justify-content: center;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        height: 40px;
        width: 40px;
    }
}
.viewport-container-v header .main_header {
    background: rgb(185,234,245);
}
.viewport-container-v header .header_content {
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    position: relative;
}
.viewport-container-v header .logo_holder .logotype svg, .viewport-container-v header .logo_holder .logotype img {
    width: 65px;
    height: 65px;
}
.viewport-container-v header .menu a {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}.pricing-column-D {
    position: relative;
    background: rgb(185,234,245);
    padding: 100px 0;
    overflow: hidden;
}

.pricing-column-D::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgb(125,188,200,0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgb(109,115,157,0.5) 0%, transparent 50%);
    transform: rotate(-45deg);
    z-index: 1;
}

.pricing-column-D .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    mix-blend-mode: multiply;
    z-index: 2;
}

.pricing-column-D .price_holder {
    position: relative;
    z-index: 3;
}

.pricing-column-D .price_holder h2 {
    font-size: 44px;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pricing-column-D .price_section_description {
    font-size: 19px;
    color: #000000;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.pricing-column-D .price_cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.pricing-column-D .price_card {
    background: #ffffff;
    width: calc(33.333% - 40px);
    min-width: 280px;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.pricing-column-D .price_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(125,188,200,0.5), rgb(109,115,157,0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-column-D .price_card:hover::before {
    opacity: 1;
}

.pricing-column-D .price_card > * {
    position: relative;
    z-index: 2;
}

.pricing-column-D .price_card h3 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.pricing-column-D .price_card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(125,188,200);
    transition: width 0.3s ease;
}

.pricing-column-D .price_card:hover h3::after {
    width: 100%;
}

.pricing-column-D .price_card .price_amount {
    font-size: 38px;
    color: rgb(125,188,200);
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pricing-column-D .price_card p {
    font-size: 13px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 15px;
    border-radius: 10px;
}

.pricing-column-D .price_card .button {
    display: inline-block;
    padding: 12px 30px;
    background: rgb(125,188,200);
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgb(125,188,200);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.pricing-column-D .price_card .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(109,115,157);
    transition: all 0.3s ease;
    z-index: -1;
}

.pricing-column-D .price_card .button:hover {
    color: #ffffff;
    border-color: rgb(109,115,157);
}

.pricing-column-D .price_card .button:hover::before {
    left: 0;
}

@media (max-width: 1024px) {
    .pricing-column-D .price_card {
        width: calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .pricing-column-D {
        padding: 80px 0;
    }

    .pricing-column-D .price_holder h2 {
        font-size: calc(44px * 0.9);
    }

    .pricing-column-D .price_section_description {
        font-size: calc(19px * 0.9);
        max-width: 90%;
    }

    .pricing-column-D .price_cards {
        gap: 30px;
    }

    .pricing-column-D .price_card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .pricing-column-D {
        padding: 60px 0;
    }

    .pricing-column-D .price_holder h2 {
        font-size: calc(44px * 0.8);
        letter-spacing: 2px;
    }

    .pricing-column-D .price_section_description {
        font-size: calc(19px * 0.8);
        padding: 15px;
    }

    .pricing-column-D .price_card {
        padding: 30px;
    }

    .pricing-column-D .price_card h3 {
        font-size: calc(22px * 0.9);
    }

    .pricing-column-D .price_card .price_amount {
        font-size: calc(38px * 0.9);
    }

    .pricing-column-D .price_card p {
        font-size: calc(13px * 0.9);
        padding: 10px;
    }

    .pricing-column-D .price_card .button {
        font-size: calc(17px * 0.9);
        padding: 10px 25px;
    }
}