* {
    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: Arial, sans-serif;
    color: #000000;
}
.core-wrapping-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(234,234,234);
}
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;
    }
}.core-pricing-lineup {
    background: linear-gradient(
        135deg,
        rgb(234,234,234) 0%,
        #ffffff 45%,
        rgb(234,234,234) 100%
    );
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.core-pricing-lineup::before {
    content: '';
    position: absolute;
    width: 200vw;
    height: 200vh;
    top: -100vh;
    left: -100vw;
    background: repeating-linear-gradient(
        45deg,
        rgb(139,160,164,0.5) 0%,
        rgb(139,160,164,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    animation: moveBackground 30s linear infinite;
    opacity: 0.3;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(5deg); }
}

.core-pricing-lineup .container {
    position: relative;
}

.core-pricing-lineup .pricing_holder {
    display: grid;
    gap: 120px;
}

.core-pricing-lineup .price_info {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 18px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.core-pricing-lineup .price_info::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgb(139,160,164,0.5),
        transparent
    );
    opacity: 0.1;
}

.core-pricing-lineup .price_info h2 {
    font-size: calc(43px * 1.2);
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    padding-left: 25px;
}

.core-pricing-lineup .price_info h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: rgb(139,160,164);
    border-radius: 10px;
}

.core-pricing-lineup .price_info .section_description {
    font-size: calc(21px * 0.9);
    color: #000000;
    line-height: 1.8;
    position: relative;
}

.core-pricing-lineup .price_types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.core-pricing-lineup .price_type {
    text-decoration: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.core-pricing-lineup .price_type:nth-child(even) {
    margin-top: 60px;
}

.core-pricing-lineup .price_type_holder {
    position: relative;
    background: #ffffff;
    min-height: 520px;
    display: grid;
    grid-template-rows: 260px 1fr;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
}

.core-pricing-lineup .price_type:hover .price_type_holder {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px -5px rgba(0, 0, 0, 0.2);
}

.core-pricing-lineup .price_type::before,
.core-pricing-lineup .price_type::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    height: 20px;
    background: #ffffff;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.core-pricing-lineup .price_type::before {
    top: -20px;
}

.core-pricing-lineup .price_type::after {
    bottom: -20px;
}

.core-pricing-lineup .price_type:hover::before,
.core-pricing-lineup .price_type:hover::after {
    opacity: 0.5;
}

.core-pricing-lineup .photo {
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.core-pricing-lineup .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5),
        transparent 60%
    );
    z-index: 1;
}

.core-pricing-lineup .price_type_text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #ffffff;
}

.core-pricing-lineup .price_type_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgb(24,62,75,0.5);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.core-pricing-lineup .price_type:hover .price_type_text::before {
    transform: scaleX(1);
}

.core-pricing-lineup .price_type_text h3 {
    font-size: 21px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 15px;
}

.core-pricing-lineup .price_type_text .price_amount {
    font-size: calc(29px * 1.1);
    color: rgb(139,160,164);
    font-weight: 700;
    margin: 15px 0 25px;
    display: inline-flex;
    position: relative;
    padding: 5px 0;
}

.core-pricing-lineup .price_type_text .price_amount::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 45%;
    background: rgb(139,160,164,0.5);
    z-index: -1;
    transform: skewX(-12deg);
}

.core-pricing-lineup .price_type_text p {
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    margin-top: auto;
    position: relative;
}

@media (max-width: 1200px) {
    .core-pricing-lineup {
        padding: 140px 0;
    }
    
    .core-pricing-lineup .price_info {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .core-pricing-lineup {
        padding: 120px 0;
    }

    .core-pricing-lineup .pricing_holder {
        gap: 80px;
    }

    .core-pricing-lineup .price_info {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }

    .core-pricing-lineup .price_info h2 {
        padding-left: 0;
    }

    .core-pricing-lineup .price_info h2::before {
        left: 50%;
        top: -20px;
        bottom: auto;
        width: 60px;
        height: 4px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .core-pricing-lineup {
        padding: 100px 0;
    }

    .core-pricing-lineup .price_type:nth-child(even) {
        margin-top: 0;
    }

    .core-pricing-lineup .price_type_holder {
        min-height: 480px;
        grid-template-rows: 240px 1fr;
    }

    .core-pricing-lineup .price_type_text {
        padding: 30px;
    }
    
    .core-pricing-lineup .price_info {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .core-pricing-lineup {
        padding: 80px 0;
    }

    .core-pricing-lineup .price_types {
        gap: 40px;
    }

    .core-pricing-lineup .price_info h2 {
        font-size: 43px;
    }

    .core-pricing-lineup .price_type_holder {
        min-height: 450px;
        grid-template-rows: 220px 1fr;
    }
    
    .core-pricing-lineup .price_info {
        padding: 30px;
    }
}.core-opening-board .title_page_holder {
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.core-opening-board .style_element {
    background: rgba(0, 0, 0, 0.5);
    width: 40%;
    padding: 60px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.5);
    border-left: 5px solid rgb(139,160,164);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}
.core-opening-board .style_element h1 {
    font-family: Arial, sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
}
.core-opening-board .style_element h3 {
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: rgb(24,62,75);
    margin-bottom: 15px;
    text-align: left;
}
.core-opening-board .style_element p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    line-height: 1.6;
    margin-top: 10px;
}
@media only screen and (max-width: 800px) {
    .core-opening-board .title_page_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .core-opening-board .style_element {
        width: 100%;
        padding: 30px;
        border-left: none;
        border-top: 5px solid rgb(139,160,164);
    }
    .core-opening-board .style_element h1 {
        font-size: 37px;
        text-align: center;
    }
    .core-opening-board .style_element h3 {
        font-size: 22px;
        text-align: center;
    }
    .core-opening-board .style_element p {
        font-size: 15px;
        text-align: center;
    }
}
.core-wrapping-container .core-opening-board {
    position: relative;
    padding: 0;
}
.core-wrapping-container .core-opening-board .title_page_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 500px;
    height: auto;
}
.core-wrapping-container .core-opening-board .style_element {
    min-width: 35%;
    width: auto;
    height: auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.core-wrapping-container .core-opening-board .style_element h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
}
.core-wrapping-container .core-opening-board .style_element h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left;
}
.core-wrapping-container .core-opening-board .style_element p {
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    line-height: 1.6;
    margin-top: 20px;
}
@media only screen and (max-width: 800px) {
    .core-wrapping-container .core-opening-board .title_page_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .core-wrapping-container .core-opening-board .style_element {
        width: 100%;
        padding: 30px;
        border-radius: 10px;
        box-shadow: none;
    }
    .core-wrapping-container .core-opening-board .style_element h1 {
        font-size: 30px;
        text-align: center;
    }
    .core-wrapping-container .core-opening-board .style_element h3 {
        font-size: 18px;
        text-align: center;
    }
    .core-wrapping-container .core-opening-board .style_element p {
        font-size: 14px;
        text-align: center;
    }
}.core-future-learners {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.core-future-learners::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: rgb(234,234,234);
}

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

.core-future-learners .who_needs_text {
    grid-area: title;
}

.core-future-learners .who_needs_text h2 {
    font-size: 36px;
    font-weight: 700;
    color: rgb(139,160,164);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.core-future-learners .who_needs_text h2::before,
.core-future-learners .who_needs_text h2::after {
    content: '';
    height: 2px;
    width: 100px;
    background: rgb(139,160,164);
    opacity: 0.3;
}

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

.core-future-learners .who_needs_list div {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 24px;
    font-size: 17px;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgb(139,160,164,0.5);
}

.core-future-learners .who_needs_list svg {
    width: 40px;
    height: 40px;
    fill: rgb(139,160,164);
}

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

.core-future-learners .who_needs_photo::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: grayscale(30%);
    border: 1px solid rgb(139,160,164,0.5);
    border-radius: inherit;
}

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

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

    .core-future-learners .who_needs_list {
        grid-template-columns: 1fr;
    }

    .core-future-learners .who_needs_text h2::before,
    .core-future-learners .who_needs_text h2::after {
        width: 50px;
    }

    .core-future-learners .who_needs_list div {
        padding: 20px;
    }
}.core-connect {
    color: #000000;
    background-color: rgb(234,234,234);
    padding: 80px 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.core-connect .contact_holder {
    padding: 30px;
    border-radius: 13px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, rgba(0, 0, 0, 0.5));
    width: 80%;
    margin: auto;
    max-width: 1200px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}
.core-connect .holder .info_holder div.core-office-hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.core-connect .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.core-connect .holder .info_holder > div > div {
    margin: 5px 0;
}
.core-connect .contact_holder:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgb(139,160,164);
    border-radius: 13px 13px 0 0;
}
.core-connect .holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.core-connect .holder .contact_description {
    width: 100%;
    margin-bottom: 40px;
    font-size: 17px;
}
.core-connect .holder .photo {
    width: 45%;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 13px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, rgba(0, 0, 0, 0.5));
}
.core-connect .holder .info_holder {
    width: 55%;
    padding: 30px;
}
.core-connect .holder .info_holder>div span {
    margin-left: 8px;
}
.core-connect .holder .info_holder > div {
    margin-bottom: 15px;
    font-size: 17px;
}
.core-connect .holder .info_holder > div a {
    color: rgb(139,160,164);
    text-decoration: none;
    transition: color 0.3s ease;
}
.core-connect .holder .info_holder > div a:hover {
    color: rgb(24,62,75);
}
.core-connect .contact_politics {
    margin-top: 40px;
    font-size: 17px;
}
.core-connect .contact_politics > div {
    margin-bottom: 10px;
}
.core-connect .contact_politics > div h4 {
    font-weight: 700;
    margin-bottom: 5px;
}
.core-connect .info_holder svg {
    width: 25px;
    height: 25px;
    fill: rgb(139,160,164);
    margin-right: 10px;
}
.core-connect h2 {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
@media only screen and (max-width: 800px) {
    .core-connect .contact_holder {
        width: 100%;
    }
    .core-connect .holder .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    .core-connect .holder .info_holder {
        width: 100%;
    }
}
footer {
    background: rgb(24,62,75);
    color: #ffffff;
}

footer .copyright {
    background: rgb(139,160,164);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(139,160,164);
}

footer h5 {
    color: rgb(139,160,164);
}

footer .menu a {
    color: #ffffff;
}

footer .copyright_info {
    color: #ffffff;
}

footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .contact_info div svg, footer .contact_info div svg path {
    fill: #ffffff;
}

footer .contact_info div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 22px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 15px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 15px;
}

@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
    }

    footer .contact_info {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

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

.core-wrapping-container footer .footer_info {
    flex-direction: column;
    align-items: center;
    min-height: 100px;
    justify-content: center;
    padding: 20px;
}

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

.core-wrapping-container footer .menu a {
    margin: 0;
    padding: 5px 20px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}

.core-wrapping-container footer .copyright {
    background: rgb(139,160,164,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

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

.core-wrapping-container footer .logo_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(139,160,164);
    margin-bottom: 20px;
}

.core-wrapping-container footer .logo_holder svg, .core-wrapping-container footer .logo_holder svg path, .core-wrapping-container footer .logo_holder img {
    margin: 0;
    fill: #ffffff;
}

@media only screen and (max-width: 1200px) {
    .core-wrapping-container footer .logo_holder {
        width: 100%;
    }
}

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

    .core-wrapping-container footer .menu a {
        margin-bottom: 5px;
        font-size: 18px
    }

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

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

    .core-wrapping-container footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
.core-gratitudeHub {
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(139,160,164) 0%, rgb(24,62,75) 100%); 
    padding: 40px;
    overflow: hidden;
    box-sizing: border-box;
}
.core-gratitudeHub .container {
    background: rgb(139,160,164,0.5); 
    padding: 40px 30px;
    border-radius: 30px; 
    width: 100%;
    max-width: 800px; 
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); 
    text-align: left; 
    box-sizing: border-box;
}
.core-gratitudeHub h2 {
    margin-bottom: 20px;
    font-size: 31px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-weight: 700; 
    border-bottom: 3px solid rgb(24,62,75); 
    display: inline-block; 
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.core-gratitudeHub p {
    font-size: 13px;
    color: #ffffff; 
    font-family: Arial, sans-serif;
    font-weight: 300; 
    line-height: 1.8; 
    margin: 0;
}
@media only screen and (max-width: 800px) {
    .core-gratitudeHub {
        padding: 20px;
    }
    .core-gratitudeHub .container {
        padding: 30px 20px; 
    }
    .core-gratitudeHub h2 {
        font-size: 22px; 
    }
}
.core-instructor-profile {
    background: linear-gradient(135deg, rgb(139,160,164) 0%, rgb(24,62,75) 100%);
    padding: 50px 0;
    font-family: Arial, sans-serif;
}
.core-instructor-profile .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.core-instructor-profile .holder {
    background-color: #ffffff;
    border: 2px solid rgb(139,160,164);
    border-radius: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.core-instructor-profile .holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
    pointer-events: none;
}
.core-instructor-profile .holder:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.core-instructor-profile .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}
.core-instructor-profile .review .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: rgb(24,62,75);
    transition: box-shadow 0.3s;
    position: relative;
}
.core-instructor-profile .review .photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 15px rgb(139,160,164,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}
.core-instructor-profile .review .photo:hover::after {
    opacity: 1;
}
.core-instructor-profile .worker_description {
    text-align: center;
    margin-bottom: 20px;
}
.core-instructor-profile .worker_description .name {
    font-size: 23px;
    font-weight: 600;
    color: rgb(139,160,164);
}
.core-instructor-profile .worker_description .job {
    font-size: 17px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
}
.core-instructor-profile .worker_info {
    background: linear-gradient(135deg, rgb(139,160,164,0.5) 0%, rgb(24,62,75,0.5) 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.core-instructor-profile .worker_info::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgb(139,160,164);
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: -1;
}
.core-instructor-profile .worker_info .quote {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}
.core-instructor-profile .worker_info .story {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
}
@media only screen and (max-width: 800px) {
    .core-instructor-profile .review {
        padding: 10px;
    }
    .core-instructor-profile .review .photo {
        width: 100px;
        height: 100px;
    }
    .core-instructor-profile .worker_info {
        padding: 10px;
    }
}
.core-privacy-shelter {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.core-privacy-shelter h1 {
    font-family: Arial, sans-serif;
    font-size: 29px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}
.core-privacy-shelter h2 {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 10px 0;
}
.core-privacy-shelter h3, .core-privacy-shelter h4, .core-privacy-shelter h5, .core-privacy-shelter h6 {
    font-size: 20px;
    margin: 1em 0;
    color: #000000;
}
.core-privacy-shelter ul {
    list-style-type: square;
    margin: 20px 0;
    color: #000000;
}
.core-privacy-shelter li {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}
@media only screen and (max-width: 800px) {
    .core-privacy-shelter {
        padding: 20px;
    }
    .core-privacy-shelter h1 {
        font-size: 20px;
    }
    .core-privacy-shelter h2 {
        font-size: 18px;
    }
    .core-privacy-shelter li {
        font-size: 18px;
    }
}header .main_header {
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    z-index: 1000;
}

header .logo_holder {
    margin-right: 16px;
}
header .logo_holder svg,
header .logo_holder svg path,
header .logo_holder img {
    fill: rgb(139,160,164);
    height: 60px;
    width: 60px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

header .logo_holder:hover svg,
header .logo_holder:hover img {
    transform: rotate(360deg);
    fill: rgb(24,62,75);
}

header .menu {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    transition: transform 0.3s ease;
}

header .menu a {
    color: #ffffff;
    text-transform: uppercase;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 23px;
    transition: color 0.3s ease, background 0.3s ease;
}

header .menu a:hover {
    color: rgb(139,160,164);
    background: #ffffff;
}

header .menu a.active {
    border: 2px solid rgb(24,62,75);
    background: rgb(24,62,75,0.5);
}

header .menu a.active:hover {
    color: #ffffff;
    background: rgb(139,160,164);
    border: 2px solid rgb(139,160,164);
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    transition: padding 0.3s ease;
}

header .logo_holder {
    display: flex;
    align-items: center;
}

header .logo_caption {
    display: flex;
    flex-direction: column;
    height: 100%;
}

header .logo_desc {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(24,62,75);
}

@media only screen and (max-width: 1200px) {
    header .logo_holder {
        margin-right: 0;
    }
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 30px;
    }

    header .menu {
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        padding: 20px 0;
        border-radius: 23px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    header .menu.opened {
        transform: translateY(0);
        opacity: 1;
    }

    header .menu a {
        padding: 15px 20px;
        width: auto;
        margin: 10px;
        text-align: right;
    }

    header .logo_holder {
        justify-content: space-between;
        width: 100%;
    }

    header .logo_holder .logotype svg,
    header .logo_holder .logotype img {
        height: 50px;
        width: 50px;
    }

    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.core-wrapping-container header .main_header {
    background: rgb(139,160,164);
}

.core-wrapping-container header .top_plank .top_plank_content {
    border-bottom: 1px solid #ffffff;
}

.core-wrapping-container header .header_content {
    position: relative;
    border-radius: 23px;
    background: rgb(24,62,75);
    padding: 10px 20px;
    justify-content: space-around;
    bottom: -25px;
    z-index: 5;
}

.core-wrapping-container header .logo_holder .logotype svg,
.core-wrapping-container header .logo_holder .logotype img {
    width: 60px;
    height: 60px;
}

.core-wrapping-container header .menu a {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .core-wrapping-container header .logo_holder .logotype svg,
    .core-wrapping-container header .logo_holder .logotype img {
        width: 45px;
        height: 45px;
    }

    .core-wrapping-container header .logo_holder {
        justify-content: center;
        width: 100%;
        margin-bottom: 12px;
        position: relative;
        z-index: 95;
    }

    .core-wrapping-container header .menu {
        padding-top: 35px;
        top: 0;
        border-radius: 40px;
        align-items: center;
    }
}.core-wrapping-container .core-our-story .holder {
    height: auto;
    position: relative;
    overflow: hidden;
}

.core-our-story {
    padding: 80px 0;
    background: rgb(24,62,75);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.core-wrapping-container .core-our-story .holder .photo {
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.9;
    overflow: hidden;
}

.core-wrapping-container .core-our-story .caption_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 20px;
    gap: 20px;
    border-left: 5px solid rgb(139,160,164);
}

.core-wrapping-container .core-our-story .style_element {
    background: rgb(139,160,164,0.5);
    padding: 50px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 368px;
    border-radius: 11px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: background 0.8s ease, transform 0.8s ease;
}

.core-wrapping-container .core-our-story .style_element:hover {
    background: rgb(139,160,164);
    transform: scale(1.02);
}

.core-wrapping-container .core-our-story h2 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 33px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.8s ease;
}

.core-wrapping-container .core-our-story h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgb(24,62,75);
    bottom: -10px;
    left: 0;
    transition: width 0.8s ease;
}

.core-wrapping-container .core-our-story h2:hover::after {
    width: 100%;
}

.core-wrapping-container .core-our-story p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    transition: color 0.8s ease;
}

@media only screen and (max-width: 1200px) {
    .core-wrapping-container .core-our-story .holder .photo {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .core-wrapping-container .core-our-story .style_element {
        width: 100%;
        padding: 30px;
    }
    .core-wrapping-container .core-our-story .holder .photo {
        width: 100%;
        height: 250px;
        margin-top: 10px;
    }
    .core-wrapping-container .core-our-story .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
    }
    .core-wrapping-container .core-our-story h2 {
        font-size: 33px;
    }
}

.core-wrapping-container .core-our-story .style_element::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgb(24,62,75,0.5);
    border-radius: 11px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(15px);
    transition: opacity 0.8s ease;
}

.core-wrapping-container .core-our-story .style_element:hover::before {
    opacity: 0.9;
}


.core-wrapping-container .core-our-story .style_element:hover::after {
    height: 110%;
}.core-course-overview {
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(24,62,75);
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.core-course-overview::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(139,160,164,0.5), transparent);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

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

.core-course-overview h2 {
    color: rgb(139,160,164);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}

.core-course-overview .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1;
    position: relative;
}

.core-course-overview .items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.core-course-overview .course {
    padding: 20px;
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    position: relative;
}

.core-course-overview .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.core-course-overview .photo {
    height: 300px;
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgb(139,160,164,0.5);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, border 0.3s ease;
}


.core-course-overview .text_holder {
    padding: 20px;
}

.core-course-overview h3 {
    font-size: 38px;
    font-weight: 600;
    color: rgb(139,160,164);
    margin-bottom: 16px;
}

.core-course-overview p {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}

.core-course-overview .button {
    background: rgb(139,160,164);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 800px) {
    .core-course-overview {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .core-course-overview .photo {
        height: 200px;
        width: 200px;
    }

    .core-course-overview h3 {
        font-size: 20px;
    }

    .core-course-overview p {
        font-size: 16px;
    }

    .core-course-overview .button {
        padding: 10px 20px;
    }
}

.core-wrapping-container .core-course-overview {
    background: rgb(234,234,234);
    padding: 80px 0;
}

.core-wrapping-container .core-course-overview .items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.core-wrapping-container .core-course-overview .photo {
    width: 250px;
    height: 250px;
    border-radius: 27px;
    overflow: hidden;
    border: 5px solid rgb(139,160,164,0.5);
}

.core-wrapping-container .core-course-overview .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.core-wrapping-container .core-course-overview .text_holder {
    text-align: center;
    padding: 20px;
}

.core-wrapping-container .core-course-overview h3 {
    font-size: 41px;
    font-weight: 700;
    margin-top: 20px;
    color: rgb(139,160,164);
}

.core-wrapping-container .core-course-overview p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.core-wrapping-container .core-course-overview .button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: none;
    border: 2px solid rgb(139,160,164);
    border-radius: 50px;
    color: rgb(139,160,164);
    transition: background 0.3s ease, color 0.3s ease;
}

.core-wrapping-container .core-course-overview .button:hover {
    background: rgb(139,160,164);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .core-wrapping-container .core-course-overview .photo {
        width: 200px;
        height: 200px;
    }
    .core-wrapping-container .core-course-overview .text_holder {
        padding: 0;
    }
    .core-wrapping-container .core-course-overview h3 {
        font-size: 20px;
    }

    .core-wrapping-container .core-course-overview p {
        font-size: 16px;
    }

    .core-wrapping-container .core-course-overview .button {
        padding: 10px 30px;
    }
}

.core-advantages-overview .advantages_content h2 {
    color: rgb(24,62,75);
}

.core-advantages-overview .advantage_item svg, .core-advantages-overview .advantage_item svg path {
    fill: rgb(139,160,164);
}

.core-advantages-overview .advantage_item p {
    color: #000000;
}

.core-advantages-overview .advantage_item b {
    color: rgb(139,160,164);
}

.core-advantages-overview {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

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

.core-advantages-overview .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 37px;
    font-weight: 600;
}

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

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

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

.core-advantages-overview .advantage_item svg, .core-advantages-overview .advantage_item img {
    width: 128px;
    height: 128px;
}

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

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

    .core-advantages-overview .advantages_holder {
        flex-direction: column;
    }

    .core-advantages-overview {
        padding-top: 50px;
        padding-bottom: 50px;
    }

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

.core-wrapping-container .core-advantages-overview .advantages_content h2 {
    font-size: 48px;
    font-weight: 300;
}

.core-wrapping-container .core-advantages-overview {
    justify-content: space-between;
}

.core-wrapping-container .core-advantages-overview .advantage_item {
    padding: 30px;
    align-items: flex-start;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    justify-content: flex-start;
    width: 24%;
}

.core-wrapping-container .core-advantages-overview .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0 60px 0 rgba(0, 0, 0, 0.1);
}

.core-wrapping-container .core-advantages-overview .advantage_item svg, .core-wrapping-container .core-advantages-overview .advantage_item img {
    width: 50px;
    height: 50px;
}

.core-wrapping-container .core-advantages-overview .advantages_content h4 {
    text-align: left;
    font-size: 24px;
    font-weight: 600;

}

@media only screen and (max-width: 800px) {
    .core-wrapping-container .core-advantages-overview .advantage_item {
        width: 100%;
    }

    .core-wrapping-container .core-advantages-overview .advantages_content h2 {
        font-size: 28px;
    }
}