* {
    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: Roboto, sans-serif;
    color: #000000;
}
.wrapper-capsule-mY {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(243,213,192);
}
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;
    }
}.contact-information-Qq {
    padding: 60px 20px;
    background: #ffffff;
    color: #000000;
    font-family: Roboto, sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-information-Qq .container {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.contact-information-Qq .holder {
    width: 100%;
}
.contact-information-Qq .info {
    flex: 1 1 40%;
    background: rgb(136,158,175,0.5);
    padding: 30px;
    position: relative;
}
.contact-information-Qq .info::before,
.contact-information-Qq .info::after {
    content: '';
    position: absolute;
    background: rgb(80,109,132);
    border-radius: 50%;
}
.contact-information-Qq .info::before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    opacity: 0.1;
}
.contact-information-Qq .info::after {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
    opacity: 0.1;
}
.contact-information-Qq .info h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgb(136,158,175);
    margin-bottom: 20px;
    position: relative;
}
.contact-information-Qq .info h3::after {
    content: '';
    width: 50px;
    height: 4px;
    background: rgb(80,109,132);
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}
.contact-information-Qq .info .logo_holder {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.contact-information-Qq .info .logo_holder img, .contact-information-Qq .info .logo_holder svg {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgb(136,158,175);
    fill: rgb(136,158,175);
}
.contact-information-Qq .info .logo_holder span {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}
.contact-information-Qq .info .contact_info {
    margin-top: 20px;
}
.contact-information-Qq .info .contact_info h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}
.contact-information-Qq .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.contact-information-Qq .info .contact_info svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(136,158,175);
}
.contact-information-Qq .info .contact_info span {
    font-size: 1rem;
    color: #000000;
}
.contact-information-Qq .form {
    flex: 1 1 60%;
    background: #ffffff;
    padding: 30px;
}
.contact-information-Qq .form h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}
.contact-information-Qq .form h3::after {
    content: '';
    width: 70px;
    height: 4px;
    background: rgb(136,158,175);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
.contact-information-Qq .form form {
    display: flex;
    flex-direction: column;
}
.contact-information-Qq .form form input,
.contact-information-Qq .form form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #ffffff;
    font-size: 1rem;
    color: #000000;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.contact-information-Qq .form form .button {
    width: 100%;
    padding: 15px;
    background: rgb(136,158,175);
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}
.contact-information-Qq .form form .button:hover {
    background: rgb(80,109,132);
}
.contact-information-Qq .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-information-Qq .agree input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
    margin-bottom: 0;
}
.contact-information-Qq .agree label {
    font-size: 1rem;
    color: #000000;
}
.contact-information-Qq .agree a {
    color: rgb(136,158,175);
    text-decoration: none;
    margin-left: 5px;
}
.contact-information-Qq .agree a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .contact-information-Qq {
        padding: 30px 10px;
    }
    .contact-information-Qq .container {
        flex-direction: column;
    }
    .contact-information-Qq .info {
        border-radius: 10px 10px 0 0;
        padding: 20px;
    }
    .contact-information-Qq .form {
        border-radius: 0 0 10px 10px;
        padding: 20px;
    }
    .contact-information-Qq .info::before,
    .contact-information-Qq .info::after {
        display: none;
    }
}
.secure-safehouse-hj {
    padding: 40px;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: Roboto, sans-serif;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.secure-safehouse-hj:before, .secure-safehouse-hj:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgb(136,158,175,0.5);
    z-index: 0;
}

.secure-safehouse-hj:before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.secure-safehouse-hj:after {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
}

.secure-safehouse-hj h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 38px;
    color: #000000;
    font-weight: 700;
    border-bottom: 2px solid rgb(136,158,175);
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 37px;
    color: rgb(80,109,132);
    font-weight: 600;
    border-bottom: 1px solid rgb(80,109,132,0.5);
    padding-bottom: 5px;
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj ul, .secure-safehouse-hj ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.secure-safehouse-hj li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(136,158,175);
    font-size: 1.2em;
    line-height: 1;
}

.secure-safehouse-hj div {
    margin-bottom: 20px;
    line-height: 1.8;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj .container {
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj h3, .secure-safehouse-hj h4, .secure-safehouse-hj h5, .secure-safehouse-hj h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 24px;
    color: rgb(136,158,175);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj p, .secure-safehouse-hj span {
    margin-bottom: 10px;
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj a {
    color: rgb(80,109,132);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid rgb(80,109,132,0.5);
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj a:hover {
    color: rgb(136,158,175);
    border-bottom: 1px solid rgb(136,158,175);
}

.secure-safehouse-hj button {
    background: rgb(80,109,132);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.secure-safehouse-hj button:hover {
    background: rgb(136,158,175);
}

@media only screen and (max-width: 800px) {
    .secure-safehouse-hj {
        padding: 20px;
        width: 90%;
    }

    .secure-safehouse-hj h1 {
        font-size: calc(24px - 5px);
    }

    .secure-safehouse-hj h2 {
        font-size: calc(24px - 3px);
    }

    .secure-safehouse-hj ul, .secure-safehouse-hj ol {
        padding-left: 10px;
    }

    .secure-safehouse-hj li {
        padding-left: 15px;
    }

    .secure-safehouse-hj li:before {
        left: -10px;
    }

    .secure-safehouse-hj button {
        padding: 8px 15px;
    }
}.stay-informed-xT {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.stay-informed-xT .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stay-informed-xT input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(80,109,132,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.stay-informed-xT h2 {
    margin-bottom: 20px;
    text-align: center;
}

.stay-informed-xT .button {
    background: rgb(80,109,132);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.stay-informed-xT .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .stay-informed-xT .holder {
        flex-direction: column;
    }

    .stay-informed-xT {
        padding: 30px 20px;
    }

    .stay-informed-xT input {
        min-width: unset;
    }

    .stay-informed-xT .button {
        flex-shrink: unset;
    }

    .stay-informed-xT .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .stay-informed-xT input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrapper-capsule-mY .stay-informed-xT .holder h2 {
        font-size: 20px;
    }
}

.wrapper-capsule-mY .stay-informed-xT {
    background: rgb(136,158,175);
    padding: 20px 0;
}

.wrapper-capsule-mY .stay-informed-xT .holder {
    flex-direction: row;
    width: 80%;
    margin: auto;
}

.wrapper-capsule-mY .stay-informed-xT h2 {
    text-align: left;
    margin: 0;
    margin-right: 30px;
    color: #ffffff;
    font-size: 18px;
    line-height: 27px;
}

.wrapper-capsule-mY .stay-informed-xT input {
    margin: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    color: #ffffff;
    background: rgb(136,158,175);
    border: 2px solid #ffffff;
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    padding: 6px 12px;
    line-height: 24px;
    height: 50px;
}

.wrapper-capsule-mY .stay-informed-xT input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.wrapper-capsule-mY .stay-informed-xT input::-ms-input-placeholder {
    color: #ffffff;
}

.wrapper-capsule-mY .stay-informed-xT .button {
    border-radius: 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 2px solid #ffffff;
    font-weight: 300;
    font-size: 16px;
    padding: 6px 12px;
    background: #ffffff;
    color: rgb(136,158,175);
    line-height: 24px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule-mY .stay-informed-xT .holder {
        flex-direction: column;
        width: 100%;
    }

    .wrapper-capsule-mY .stay-informed-xT .input_holder {
        flex-direction: row;
    }

    .wrapper-capsule-mY .stay-informed-xT h2 {
        margin: 0;
        margin-bottom: 16px;
        text-align: center;
    }

    .wrapper-capsule-mY .stay-informed-xT .button {
        padding-right: 24px;
    }
}
.advantages-summary-wC .advantages_content h2 {
    color: rgb(80,109,132);
}

.advantages-summary-wC .advantage_item svg, .advantages-summary-wC .advantage_item svg path {
    fill: rgb(136,158,175);
}

.advantages-summary-wC .advantage_item p {
    color: #000000;
}

.advantages-summary-wC .advantage_item b {
    color: rgb(136,158,175);
}

.advantages-summary-wC {
    padding-top: 80px;
    padding-bottom: 80px;
}

.advantages-summary-wC .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.advantages-summary-wC .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.advantages-summary-wC .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 31px;
    font-weight: 600;
}

.advantages-summary-wC .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.advantages-summary-wC .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.advantages-summary-wC .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.advantages-summary-wC .advantage_item svg, .advantages-summary-wC .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-capsule-mY .advantages-summary-wC .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .advantages-summary-wC .advantages_content h2 {
        font-size: 30px;
    }

    .advantages-summary-wC .advantages_holder {
        flex-direction: column;
    }

    .advantages-summary-wC {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-capsule-mY .advantages-summary-wC .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-capsule-mY .advantages-summary-wC {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(243,213,192);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.wrapper-capsule-mY .advantages-summary-wC:hover {
    background-color: rgb(136,158,175,0.5);
}

.wrapper-capsule-mY .advantages-summary-wC .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.wrapper-capsule-mY .advantages-summary-wC .advantages_content h2 {
    font-size: 31px;
    font-weight: 600;
    color: rgb(80,109,132);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.wrapper-capsule-mY .advantages-summary-wC .advantages_description {
    font-size: 16px;
    color: #000000;
    margin-bottom: 40px;
    max-width: 800px;
}

.wrapper-capsule-mY .advantages-summary-wC .advantages_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-capsule-mY .advantages-summary-wC .advantage_item {
    background-color: #ffffff;
    padding: 30px;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    flex: 1 1 22%;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wrapper-capsule-mY .advantages-summary-wC .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.wrapper-capsule-mY .advantages-summary-wC .advantage_image {
    margin-bottom: 20px;
}

.wrapper-capsule-mY .advantages-summary-wC .advantage_item img,
.wrapper-capsule-mY .advantages-summary-wC .advantage_item svg {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease-in-out;
}

.wrapper-capsule-mY .advantages-summary-wC .advantage_item:hover img,
.wrapper-capsule-mY .advantages-summary-wC .advantage_item:hover svg {
    transform: scale(1.1);
}

.wrapper-capsule-mY .advantages-summary-wC .advantages_content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.wrapper-capsule-mY .advantages-summary-wC .advantage_item:hover h4 {
    color: rgb(80,109,132);
}

@media only screen and (max-width: 1200px) {
    .wrapper-capsule-mY .advantages-summary-wC .advantage_item {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule-mY .advantages-summary-wC {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-capsule-mY .advantages-summary-wC .advantages_content h2 {
        font-size: 44px;
    }

    .wrapper-capsule-mY .advantages-summary-wC .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .wrapper-capsule-mY .advantages-summary-wC .advantage_item {
        width: 90%;
        margin-bottom: 20px;
    }
}.instructional-approach-l2 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.instructional-approach-l2 .work_holder {
    padding: 55px 0;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1500px;
}

.instructional-approach-l2 .work_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, 
            rgba(0,0,0,0.8) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            transparent 70%
        );
    z-index: 1;
}

.instructional-approach-l2 .work_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            transparent 49.5%, 
            rgba(255,255,255,0.05) 50%, 
            transparent 50.5%
        ),
        linear-gradient(0deg, 
            transparent 49.5%, 
            rgba(255,255,255,0.05) 50%, 
            transparent 50.5%
        );
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    z-index: 2;
    opacity: 0.5;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

.instructional-approach-l2 .container {
    position: relative;
    z-index: 3;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.instructional-approach-l2 .text_holder {
    width: 75%;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.98) 100%
    );
    border-radius: 11px;
    padding: 45px;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 25px 50px -12px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.1);
}

.instructional-approach-l2 .text_holder::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        rgb(136,158,175) 0%,
        rgb(80,109,132) 50%,
        rgb(136,158,175) 100%
    );
    border-radius: calc(11px + 2px);
    z-index: -1;
    animation: borderFlow 6s linear infinite;
    opacity: 0.7;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.instructional-approach-l2 .text_holder::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgb(80,109,132) 90deg,
        transparent 180deg,
        rgb(136,158,175) 270deg,
        transparent 360deg
    );
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.instructional-approach-l2 .text_holder h4 {
    color: #000000;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid rgb(80,109,132);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.instructional-approach-l2 .text_holder div {
    position: relative;
    padding: 25px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0) 100%
    );
    border-radius: 10px;
}

.instructional-approach-l2 .text_holder p {
    color: #000000;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: Roboto, sans-serif;
    position: relative;
    padding-left: 25px;
}

.instructional-approach-l2 .text_holder p::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgb(80,109,132);
    font-weight: 700;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .instructional-approach-l2 .text_holder {
        width: 85%;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .instructional-approach-l2 .text_holder {
        width: 100%;
        padding: 30px;
    }
    
    .instructional-approach-l2 .work_holder {
        padding: 40px 0;
    }
    
    .instructional-approach-l2 .text_holder h4 {
        font-size: calc(29px * 0.9);
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .instructional-approach-l2 .work_holder {
        padding: 30px 0;
    }
    
    .instructional-approach-l2 .text_holder {
        padding: 25px;
    }
    
    .instructional-approach-l2 .text_holder div {
        padding: 15px;
    }
    
    .instructional-approach-l2 .text_holder h4 {
        font-size: calc(29px * 0.8);
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .instructional-approach-l2 .text_holder p {
        font-size: calc(13px * 0.95);
        padding-left: 20px;
        line-height: 1.6;
    }
}.thanksHub-0O {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, rgb(136,158,175), rgb(80,109,132));
    padding: 50px 20px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}
.thanksHub-0O .container {
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgb(136,158,175,0.5);
    background: linear-gradient(145deg, #ffffff, rgb(243,213,192));
}
.thanksHub-0O h2 {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    color: rgb(136,158,175);
    border-bottom: 2px solid rgb(80,109,132);
    padding-bottom: 10px;
    width: 100%;
    background: linear-gradient(145deg, rgb(136,158,175,0.5), rgb(80,109,132,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.thanksHub-0O p {
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    background: linear-gradient(145deg, #ffffff, rgb(243,213,192));
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(136,158,175,0.5);
}
@media only screen and (max-width: 800px) {
    .thanksHub-0O {
        padding: 30px 10px;
    }
    .thanksHub-0O .container {
        padding: 30px;
    }
    .thanksHub-0O h2 {
        font-size: 38px;
        padding-bottom: 8px;
    }
    .thanksHub-0O p {
        font-size: 18px;
        padding: 15px;
    }
}
.course-description-zu {
    padding: 60px 20px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.course-description-zu::before,
.course-description-zu::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgb(136,158,175,0.5);
    z-index: -1;
}

.course-description-zu::before {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
}

.course-description-zu::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.course-description-zu h2 {
    color: rgb(136,158,175);
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.course-description-zu h2::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(80,109,132);
}

.course-description-zu .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.course-description-zu .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.course-description-zu .course {
    max-width: 900px;
    width: 100%;
    padding: 20px;
    background: rgb(80,109,132,0.5);
    border: 1px solid rgb(136,158,175,0.5);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-description-zu .course .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
}

.course-description-zu .photo {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgb(136,158,175,0.5);
}

.course-description-zu h3 {
    color: rgb(136,158,175);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    width: 100%;
}

.course-description-zu p {
    color: #000000;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.course-description-zu .button {
    display: inline-block;
    padding: 10px 20px;
    background: rgb(136,158,175);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgb(136,158,175,0.5);
}

.course-description-zu .button:hover {
    background: rgb(80,109,132);
}

.wrapper-capsule-mY .course-description-zu .container {
    width: 100%;
    padding: 0 20px;
}

.wrapper-capsule-mY .course-description-zu .items {
    width: 100%;
}

.wrapper-capsule-mY .course-description-zu .items .course {
    width: 100%;
    margin-bottom: 20px;
}

.wrapper-capsule-mY .course-description-zu .photo {
    height: 200px;
}

.wrapper-capsule-mY .course-description-zu .course .content {
    padding: 15px;
}

.wrapper-capsule-mY .course-description-zu .text_holder {
    max-width: 100%;
    margin: 20px 0;
    justify-content: flex-start;
    align-items: flex-start;
}

.wrapper-capsule-mY .course-description-zu p {
    text-align: left;
    margin-top: 10px;
}

.wrapper-capsule-mY .course-description-zu .button {
    margin-top: 10px;
    width: auto;
}

.wrapper-capsule-mY .course-description-zu h3 {
    text-align: left;
}
@media only screen and (max-width: 900px) {
    .course-description-zu {
        padding: 40px 0;
    }
    .wrapper-capsule-mY .course-description-zu .items .course {
        padding: 10px;
    }
}.testimonials-5q {
    background: linear-gradient(135deg, #000000, rgb(80,109,132));
    padding: 100px 5vw;
    position: relative;
    overflow: hidden;
}

.testimonials-5q::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(136,158,175,0.5) 10%, transparent 10%);
    background-size: 50px 50px;
    transform: rotate(30deg);
    opacity: 0.1;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: rotate(30deg) translateY(0); }
    100% { transform: rotate(30deg) translateY(-50px); }
}

.testimonials-5q .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testimonials-5q h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.testimonials-5q h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgb(136,158,175);
    border-radius: 2px;
}

.testimonials-5q .reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.testimonials-5q .reviews:has(.review:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.testimonials-5q .review {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-5q .review:hover {
    transform: rotateY(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonials-5q .photo {
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials-5q .photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.testimonials-5q .text {
    padding: 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-5q .text::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 100px;
    color: rgb(136,158,175);
    opacity: 0.2;
    font-family: Roboto, sans-serif;
}

.testimonials-5q .text p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.testimonials-5q .text span {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #000000;
    display: block;
}

.testimonials-5q .review::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, rgb(136,158,175), rgb(80,109,132));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonials-5q .review:hover::after {
    transform: scaleX(1);
}

@media (max-width: 1200px) {
    .testimonials-5q .reviews {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonials-5q .reviews:has(.review:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-5q {
        padding: 80px 5vw;
    }

    .testimonials-5q h3 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .testimonials-5q .reviews,
    .testimonials-5q .reviews:has(.review:nth-child(4):last-child) {
        grid-template-columns: 1fr;
    }

    .testimonials-5q .review:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .testimonials-5q {
        padding: 60px 5vw;
    }

    .testimonials-5q h3 {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .testimonials-5q .text {
        padding: 20px;
    }
}.leadership-experience-pX {
    padding: 100px 0;
    background: rgb(136,158,175,0.5);
    font-family: Roboto, sans-serif;
}

.leadership-experience-pX .holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.leadership-experience-pX .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 100%;
    width: 100%;
}

.leadership-experience-pX .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

.leadership-experience-pX .photo {
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    border-radius: 26px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.leadership-experience-pX .review:hover .photo {
    transform: scale(1.05);
}

.leadership-experience-pX .worker_description {
    text-align: center;
}

.leadership-experience-pX .review .name {
    font-size: 41px;
    color: rgb(80,109,132);
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.4s ease;
}

.leadership-experience-pX .review:hover .name {
    color: rgb(136,158,175);
}

.leadership-experience-pX .review span {
    font-size: 17px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 400;
}

.leadership-experience-pX .review .quote {
    font-size: 14px;
    color: #000000;
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
}

@media only screen and (max-width: 1200px) {
    .leadership-experience-pX .review {
        max-width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .leadership-experience-pX {
        padding: 50px 20px;
    }

    .leadership-experience-pX .holder {
        grid-template-columns: 1fr;
    }

    .leadership-experience-pX .review {
        width: 100%;
    }

    .leadership-experience-pX .photo {
        height: 300px;
    }
}

.wrapper-capsule-mY .leadership-experience-pX {
    padding: 80px 0;
    background: rgb(80,109,132,0.5);
}

.wrapper-capsule-mY .leadership-experience-pX .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 26px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.wrapper-capsule-mY .leadership-experience-pX .review {
    flex-direction: row;
    width: 100%;
    max-width: none;
    box-shadow: none;
    border-radius: 26px;
}

.wrapper-capsule-mY .leadership-experience-pX .photo {
    width: 40%;
    min-height: 300px;
    border-radius: 26px 0 0 26px;
    margin: 0;
}

.wrapper-capsule-mY .worker_description {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.wrapper-capsule-mY .leadership-experience-pX .review .name {
    font-size: 37px;
    color: rgb(136,158,175);
    margin-bottom: 20px;
    font-weight: 700;
}

.wrapper-capsule-mY .leadership-experience-pX .review span {
    font-size: 22px;
    color: rgb(80,109,132);
    margin-bottom: 20px;
}

.wrapper-capsule-mY .leadership-experience-pX .review .quote {
    font-size: 14px;
    color: #000000;
    font-style: normal;
    text-align: left;
}

@media only screen and (max-width: 1000px) {
    .wrapper-capsule-mY .leadership-experience-pX .review {
        flex-direction: column;
        padding: 10px;
    }

    .wrapper-capsule-mY .worker_description {
        width: 100%;
        text-align: center;
        padding: 10px;
        align-items: center;
    }

    .wrapper-capsule-mY .leadership-experience-pX .photo {
        width: 100%;
        height: 300px;
        border-radius: 26px;
    }

    .wrapper-capsule-mY .leadership-experience-pX .review .name,
    .wrapper-capsule-mY .leadership-experience-pX .review span,
    .wrapper-capsule-mY .leadership-experience-pX .review .quote {
        text-align: center;
    }
}
footer {
    background: linear-gradient(135deg, rgb(80,109,132) 0%, #000000 100%);
    color: #ffffff;
    font-family: Roboto, sans-serif;
    padding: 40px 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgb(136,158,175);
}
footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    padding: 0 20px;
}
footer .logo_holder {
    display: flex;
    align-items: center;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
    fill: rgb(136,158,175);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.5));
}
footer .menu {
    display: flex;
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    background: linear-gradient(135deg, rgb(136,158,175) 0%, rgb(80,109,132) 100%);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
footer .menu a:hover {
    background: linear-gradient(135deg, rgb(80,109,132) 0%, rgb(136,158,175) 100%);
}
footer .copyright {
    background: rgb(136,158,175,0.5);
    padding: 15px 0;
    width: 100%;
    text-align: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
footer .copyright_info {
    color: #ffffff;
    font-size: 14px;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
@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;
        text-align: center;
    }
    footer .menu_holder {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
.learning-outcomes-tu {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(243,213,192) 0%, rgb(80,109,132,0.5) 100%);
    overflow: hidden;
}

.learning-outcomes-tu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgb(136,158,175,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.learning-outcomes-tu .container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.learning-outcomes-tu .holder {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.learning-outcomes-tu .photo {
    position: relative;
    height: 600px;
    border-radius: 23px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.learning-outcomes-tu .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgb(136,158,175,0.5) 0%, transparent 100%);
    border-radius: 23px;
    opacity: 0.6;
}

.learning-outcomes-tu .photo:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.learning-outcomes-tu .text_holder {
    padding: 40px;
    background: #ffffff;
    border-radius: 23px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.learning-outcomes-tu .text_holder h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.learning-outcomes-tu .text_holder ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learning-outcomes-tu .text_holder ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 12px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 15px;
    background: rgb(243,213,192);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.learning-outcomes-tu .text_holder ul li:hover {
    transform: translateX(10px);
}

.learning-outcomes-tu .text_holder ul li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: rgb(136,158,175);
}

@media (max-width: 1200px) {
    .learning-outcomes-tu {
        padding: 90px 0;
    }

    .learning-outcomes-tu .holder {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .learning-outcomes-tu .photo {
        height: 500px;
    }

    .learning-outcomes-tu .text_holder {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .learning-outcomes-tu {
        padding: 70px 0;
    }

    .learning-outcomes-tu .holder {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .learning-outcomes-tu .photo {
        height: 400px;
        transform: perspective(1000px) rotateY(0);
    }

    .learning-outcomes-tu .text_holder {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .learning-outcomes-tu {
        padding: 50px 0;
    }

    .learning-outcomes-tu .photo {
        height: 300px;
    }

    .learning-outcomes-tu .text_holder {
        padding: 25px;
    }

    .learning-outcomes-tu .text_holder h2 {
        font-size: calc(32px * 0.9);
        margin-bottom: 25px;
    }

    .learning-outcomes-tu .text_holder ul li {
        padding: 12px;
        margin-bottom: 15px;
        font-size: calc(12px * 0.95);
    }
}

@media (max-width: 480px) {
    .learning-outcomes-tu {
        padding: 40px 0;
    }

    .learning-outcomes-tu .photo {
        height: 250px;
    }

    .learning-outcomes-tu .text_holder {
        padding: 20px;
    }

    .learning-outcomes-tu .text_holder h2 {
        font-size: calc(32px * 0.8);
        margin-bottom: 20px;
    }

    .learning-outcomes-tu .text_holder ul li {
        padding: 10px;
        margin-bottom: 12px;
        font-size: calc(12px * 0.9);
    }
}.future-members-Pq {
    padding-bottom: 80px;
    padding-top: 80px;
}

.future-members-Pq .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future-members-Pq ul {
    list-style: none;
}

.future-members-Pq ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.future-members-Pq ul svg, .future-members-Pq ul svg path {
    fill: rgb(136,158,175);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.future-members-Pq h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .future-members-Pq {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.wrapper-capsule-mY .future-members-Pq {
    padding: 0;
    background: rgb(80,109,132);
    border: 1px solid rgb(136,158,175);
    color: #ffffff;
    box-shadow: inset 0 0 10px rgb(136,158,175,0.5);
}

.wrapper-capsule-mY .future-members-Pq .holder {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding: 60px 40px;
    position: relative;
}

.wrapper-capsule-mY .future-members-Pq .holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(136,158,175,0.5) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.wrapper-capsule-mY .future-members-Pq ul {
    width: 65%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.wrapper-capsule-mY .future-members-Pq ul li {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 20px;
    border: 1px solid rgb(136,158,175,0.5);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.wrapper-capsule-mY .future-members-Pq ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 100%;
    background: rgb(136,158,175);
    transform: translateY(-50%);
}

.wrapper-capsule-mY .future-members-Pq ul svg, .wrapper-capsule-mY .future-members-Pq ul svg path {
    width: 24px;
    height: 24px;
    fill: rgb(136,158,175);
    position: static;
    margin-right: 10px;
}

.wrapper-capsule-mY .future-members-Pq h2 {
    min-width: 30%;
    font-size: 38px;
    font-weight: 700;
    color: rgb(136,158,175);
    border-left: 5px solid rgb(136,158,175);
    padding-left: 15px;
    margin-right: 15px;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: 20px;
    position: relative;
}

.wrapper-capsule-mY .future-members-Pq h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgb(136,158,175,0.5));
    opacity: 0.3;
    z-index: -1;
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule-mY .future-members-Pq .holder {
        flex-direction: column;
        padding: 30px 20px;
    }

    .wrapper-capsule-mY .future-members-Pq h2 {
        width: 100%;
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
        border-left: none;
        border-bottom: 5px solid rgb(136,158,175);
        padding-left: 0;
        padding-bottom: 10px;
    }

    .wrapper-capsule-mY .future-members-Pq ul {
        width: 100%;
    }

    .wrapper-capsule-mY .future-members-Pq ul li {
        font-size: 12px;
        padding: 10px;
        justify-content: center;
    }

    .wrapper-capsule-mY .future-members-Pq ul svg, .wrapper-capsule-mY .future-members-Pq ul svg path {
        width: 20px;
        height: 20px;
    }
}.offer-list-gC {
    position: relative;
    background: rgb(243,213,192);
    padding: 100px 0;
    overflow: hidden;
}

.offer-list-gC::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgb(136,158,175,0.5) 0%,
        transparent 100%);
    opacity: 0.05;
    z-index: 1;
}

.offer-list-gC .container {
    position: relative;
    z-index: 2;
    perspective: 1200px;
}

.offer-list-gC .price_info_holder {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.offer-list-gC .photo {
    width: 100%;
    height: 500px;
    margin: -50px auto 30px;
    position: relative;
    border-radius: 20px;
    transform: rotateX(25deg) scale(0.9);
    transform-style: preserve-3d;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.offer-list-gC .photo:hover {
    transform: rotateX(15deg) scale(0.95);
}

.offer-list-gC .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgb(136,158,175,0.5) 100%);
    opacity: 0.2;
    border-radius: 20px;
}

.offer-list-gC h2 {
    font-size: calc(35px * 1.2);
    color: #000000;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 20px;
}

.offer-list-gC h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgb(136,158,175);
}

.offer-list-gC h3 {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.offer-list-gC .price_items {
    display: grid;
    gap: 3rem;
    transform-style: preserve-3d;
}

.offer-list-gC .price_items:has(.price_item:only-child) {
    grid-template-columns: minmax(auto, 450px);
    justify-content: center;
}

.offer-list-gC .price_items:has(.price_item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: 4rem;
}

.offer-list-gC .price_items:has(.price_item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-list-gC .price_item {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.offer-list-gC .price_item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(136,158,175);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.offer-list-gC .price_item > * {
    position: relative;
    z-index: 1;
}

.offer-list-gC .price_item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.offer-list-gC .price_item:hover::before {
    transform: scaleY(1);
}

.offer-list-gC .price_item:hover *:not(.button) {
    color: #ffffff;
}

.offer-list-gC .price_item h3 {
    font-size: 24px;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.5s ease;
}

.offer-list-gC .price_item .price_amount {
    font-size: 38px;
    font-weight: 700;
    color: rgb(136,158,175);
    transition: color 0.5s ease;
    margin: 0;
}

.offer-list-gC .price_item span {
    color: #000000;
    transition: color 0.5s ease;
    flex-grow: 1;
    line-height: 1.6;
}

.offer-list-gC .price_item .button {
    background: transparent;
    border: 2px solid rgb(136,158,175);
    color: rgb(136,158,175);
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 19px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 10px;
}

.offer-list-gC .price_item:hover .button {
    background: #ffffff;
    border-color: #ffffff;
    color: rgb(136,158,175);
}

@media (max-width: 1200px) {
    .offer-list-gC .photo {
        height: 400px;
        transform: rotateX(20deg) scale(0.9);
    }
}

@media (max-width: 991px) {
    .offer-list-gC {
        padding: 80px 0;
    }

    .offer-list-gC .photo {
        height: 350px;
        transform: rotateX(15deg) scale(0.95);
    }

    .offer-list-gC .price_items:has(.price_item:nth-child(3):last-child) {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .offer-list-gC .price_item {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .offer-list-gC {
        padding: 60px 0;
    }

    .offer-list-gC .photo {
        height: 300px;
        transform: none;
        margin-top: 0;
    }

    .offer-list-gC h2 {
        font-size: 35px;
    }

    .offer-list-gC h3 {
        font-size: calc(24px * 0.9);
    }

    .offer-list-gC .price_items,
    .offer-list-gC .price_items:has(.price_item:nth-child(2):last-child),
    .offer-list-gC .price_items:has(.price_item:nth-child(3):last-child) {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 2rem;
    }

    .offer-list-gC .price_item {
        padding: 2rem;
    }

    .offer-list-gC .price_item:hover {
        transform: translateY(-10px);
    }
}.main_header {
    background: linear-gradient(135deg, rgb(136,158,175,0.5) 0%, rgb(80,109,132,0.5) 100%);
    padding: 15px 0;
    border-bottom: 2px solid rgb(80,109,132);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main_header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.main_header .header_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at top right, rgb(243,213,192) 0%, var(--white-color_opacity) 100%);
    border-radius: 21px;
    padding: 10px 20px;
    border: 1px solid rgb(80,109,132,0.5);
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(136,158,175);
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
}
.main_header .header_logo:hover {
    transform: scale(1.05);
}
.main_header .header_logo svg,
.main_header .header_logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(136,158,175);
}
.main_header .header_description {
    font-size: 14px;
    color: #000000;
    margin-left: 20px;
    padding: 5px 10px;
    background: linear-gradient(90deg, rgb(136,158,175,0.5) 0%, transparent 100%);
    border-radius: 10px;
}
.main_header .header_menu {
    display: flex;
    gap: 15px;
}
.main_header .header_menu a {
    color: #000000;
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgb(136,158,175,0.5) 0%, rgb(80,109,132,0.5) 100%);
    border: 1px solid transparent;
}
.main_header .header_menu a:hover {
    background: linear-gradient(45deg, rgb(80,109,132,0.5) 0%, rgb(136,158,175,0.5) 100%);
    border-color: rgb(136,158,175);
    box-shadow: 0 0 10px rgb(136,158,175,0.5);
}
@media (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_header .logo_holder {
        margin-bottom: 15px;
    }
    .main_header .header_description {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    .main_header .header_menu {
        flex-direction: column;
        width: 100%;
    }
    .main_header .header_menu a {
        text-align: center;
        margin-bottom: 10px;
    }
}
.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(136,158,175) 0%, rgb(80,109,132) 100%);
}
@media (prefers-reduced-motion: reduce) {
    .main_header,
    .main_header *,
    .main_header *::before,
    .main_header *::after {
        animation: none !important;
        transition: none !important;
    }
}.title-greeting-IS {
    position: relative;
    overflow: hidden;
    background: rgb(243,213,192);
    padding: 100px 0;
}

.title-greeting-IS .holder {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 600px;
    background: #000000;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgb(136,158,175);
    padding: 20px 0;
}

.title-greeting-IS .photo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    filter: grayscale(100%) contrast(120%);
}

.title-greeting-IS .text_holder {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgb(80,109,132), rgba(0, 0, 0, 0.5));
    padding: 60px 40px;
    color: #ffffff;
    width: 45%;
    flex-shrink: 0;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgb(136,158,175);
}

.title-greeting-IS .text_info {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.title-greeting-IS .text_info svg {
    width: 60px;
    height: 60px;
    fill: rgb(136,158,175);
    margin-bottom: 20px;
}

.title-greeting-IS .text_info h2 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(136,158,175);
    position: relative;
}

.title-greeting-IS .text_info h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(136,158,175);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.title-greeting-IS .text_info h2:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.title-greeting-IS .text_info span {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
}

.title-greeting-IS .text_holder .button {
    padding: 15px 30px;
    background: rgb(136,158,175);
    color: #ffffff;
    text-decoration: none;
    width: fit-content;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgb(136,158,175);
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.title-greeting-IS .text_holder .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(80,109,132);
    transition: left 0.5s ease;
}

.title-greeting-IS .text_holder .button:hover {
    background: transparent;
    color: rgb(136,158,175);
}

.title-greeting-IS .text_holder .button:hover::before {
    left: 100%;
}

@media only screen and (max-width: 1200px) {
    .title-greeting-IS .text_holder {
        width: 50%;
    }
}

@media only screen and (max-width: 800px) {
    .title-greeting-IS .text_holder {
        width: 100%;
        border-top-left-radius: 22px;
        border-bottom-left-radius: 22px;
        border-top-right-radius: 22px;
    }
    .title-greeting-IS .holder {
        flex-direction: column;
        min-height: auto;
        padding: 20px;
        overflow: hidden;
    }
    .title-greeting-IS .photo {
        width: 100%;
        height: 100%;
        border-bottom-left-radius: 0;
    }
}.our-mission-YX {
    padding: 60px 0;
    background: rgb(243,213,192);
}

.wrapper-capsule-mY .our-mission-YX .holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-capsule-mY .our-mission-YX .holder .photo {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
    border-radius: 19px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wrapper-capsule-mY .our-mission-YX .caption_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 19px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wrapper-capsule-mY .our-mission-YX .style_element {
    width: 100%;
    padding: 20px;
    background: rgb(80,109,132);
    border-radius: 19px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}


.wrapper-capsule-mY .our-mission-YX h2 {
    color: rgb(136,158,175);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wrapper-capsule-mY .our-mission-YX p {
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .wrapper-capsule-mY .our-mission-YX .caption_holder {
        flex-direction: column;
        padding: 15px;
    }
    
    .wrapper-capsule-mY .our-mission-YX .style_element {
        padding: 15px;
    }

    .wrapper-capsule-mY .our-mission-YX h2 {
        font-size: 24px;
    }

    .wrapper-capsule-mY .our-mission-YX p {
        font-size: 13px;
    }
}