* {
    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: Merriweather, sans-serif;
    color: #000000;
}
.core-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(158,162,163);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.sign_up_for_updates {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

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

.sign_up_for_updates input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(78,82,83,0.5);
    margin-right: 10px;
    min-width: 200px;
}

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

.sign_up_for_updates .button {
    background: rgb(78,82,83);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

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

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

    .sign_up_for_updates {
        padding: 30px 20px;
    }

    .sign_up_for_updates input {
        min-width: unset;
    }

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

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

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

    .core-container .sign_up_for_updates .holder h2 {
        font-size: 20px;
    }
}

.core-container .sign_up_for_updates {
    background: rgb(78,82,83);
    border: 2px solid rgb(111,117,143);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-container .sign_up_for_updates::before,
.core-container .sign_up_for_updates::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
    z-index: 1;
    background: radial-gradient(circle, rgb(111,117,143), transparent);
    animation: pulse 3s infinite;
}

.core-container .sign_up_for_updates::after {
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.9);
    }
}

.core-container .sign_up_for_updates .input_holder {
    flex-direction: row;
    width: 80%;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.core-container .sign_up_for_updates input {
    border-radius: 12px;
    background: rgb(111,117,143,0.5);
    color: #ffffff;
    padding: 20px;
    margin: 0;
    margin-right: 10px;
    width: 60%;
    border: 2px solid rgb(111,117,143);
    font-family: Merriweather, sans-serif;
    font-size: 12px;
    transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.core-container .sign_up_for_updates input:focus {
    background: rgb(111,117,143);
    border: 2px solid rgb(78,82,83);
    box-shadow: 0 0 10px rgb(78,82,83);
    outline: none;
}

.core-container .sign_up_for_updates h2 {
    font-size: 35px;
    color: rgb(111,117,143);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.core-container .sign_up_for_updates .button {
    border-radius: 12px;
    background: rgb(78,82,83);
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.core-container .sign_up_for_updates .button:hover {
    background: rgb(111,117,143);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgb(111,117,143);
}

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

    .core-container .sign_up_for_updates h2 {
        font-size: 24px;
    }

    .core-container .sign_up_for_updates input {
        width: 100%;
        margin-bottom: 10px;
    }

    .core-container .sign_up_for_updates .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .core-container .sign_up_for_updates .button {
        width: 100%;
        padding: 12px;
        text-align: center;
    }
}.leadership_experience {
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgb(78,82,83);
    color: #ffffff;
    position: relative;
}

.leadership_experience .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.leadership_experience .review {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 30%;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership_experience .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.leadership_experience .photo {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.leadership_experience .review:hover .photo {
    transform: scale(1.05);
}

.leadership_experience .worker_description {
    text-align: left;
}

.leadership_experience .review .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.leadership_experience .review span {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.leadership_experience .review .quote {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    border-left: 4px solid rgb(111,117,143);
    padding-left: 15px;
}

@media only screen and (max-width: 1200px) {
    .leadership_experience .review {
        max-width: 45%;
    }
}

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

    .leadership_experience .review {
        max-width: 90%;
        width: 100%;
        margin-bottom: 20px;
    }

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

.core-container .leadership_experience {
    padding: 80px 0;
    background: rgb(158,162,163);
    overflow: hidden;
}

.core-container .leadership_experience .holder {
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.core-container .leadership_experience .review {
    max-width: unset;
    width: 80%;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.core-container .leadership_experience .photo {
    margin-right: 30px;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    flex-shrink: 0;
}

.core-container .worker_description {
    margin-left: 30px;
}

.core-container .leadership_experience .review .name {
    color: #000000;
    margin-bottom: 5px;
}

.core-container .leadership_experience .review .quote {
    color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    font-style: normal;
}

.core-container .leadership_experience .review span {
    font-size: 18px;
}

@media only screen and (max-width: 800px) {
    .core-container .leadership_experience .review {
        flex-direction: column;
    }

    .core-container .leadership_experience .photo {
        margin-bottom: 10px;
        margin-right: 0;
        width: 200px;
        height: 200px;
    }

    .core-container .leadership_experience .holder {
        padding: 20px;
    }

    .core-container .worker_description {
        margin-left: 0;
        text-align: center;
    }
}
.privacy_sanctum {
    background-color: rgb(158,162,163);
    padding: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    font-family: Merriweather, sans-serif;
}
.privacy_sanctum h1 {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    margin: 20px 0;
}
.privacy_sanctum h2 {
    font-size: 31px;
    color: rgb(111,117,143);
    font-weight: 600;
    margin: 15px 0;
}
.privacy_sanctum h3, .privacy_sanctum h4, .privacy_sanctum h5, .privacy_sanctum h6 {
    margin: 1rem 0;
}
.privacy_sanctum ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}
.privacy_sanctum ul li {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 10px;
}
.privacy_sanctum div {
    margin-top: 30px;
}
@media only screen and (max-width: 800px) {
    .privacy_sanctum {
        padding: 30px;
    }
    .privacy_sanctum h1 {
        font-size: 31px;
    }
    .privacy_sanctum h2 {
        font-size: 24px;
    }
}.thxDiv {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, rgb(111,117,143), rgb(78,82,83));
    padding: 40px;
    color: #ffffff;
}
.thxDiv .container {
    max-width: 900px;
    width: 100%;
    padding: 50px;
    background: rgb(158,162,163);
    border-radius: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.thxDiv h2 {
    margin-bottom: 20px;
    font-size: 38px;
    font-family: Merriweather, sans-serif;
    font-weight: 700;
    color: rgb(111,117,143);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.thxDiv p {
    font-size: 18px;
    font-family: Merriweather, sans-serif;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
    .thxDiv .container {
        padding: 40px;
    }
    .thxDiv h2 {
        font-size: 29px;
    }
    .thxDiv p {
        font-size: 22px;
    }
}
@media only screen and (max-width: 800px) {
    .thxDiv {
        padding: 20px;
    }
    .thxDiv .container {
        padding: 30px;
    }
    .thxDiv h2 {
        font-size: 22px;
    }
    .thxDiv p {
        font-size: 18px;
    }
}
.info_details {
    color: #000000;
    background: radial-gradient(circle at top left, rgb(78,82,83), rgb(158,162,163));
    padding: 10vh 0;
    overflow: hidden;
    position: relative;
}
.info_details .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
    border: 2px solid rgb(111,117,143);
    max-width: 90vw;
    min-width: 320px;
    margin: 0 auto;
    position: relative;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    background: rgba(0, 0, 0, 0.5);
}
.info_details .holder .info_holder div.working_hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.info_details .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.info_details .holder .info_holder > div > div {
    margin: 5px 0;
}
.info_details .holder .info_holder>div span {
    margin-left: 8px;
}
.info_details .contact_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 5vw;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.info_details .contact_holder h2 {
    font-size: 28px;
    color: rgb(111,117,143);
    margin-bottom: 1.5vw;
    text-shadow: 0 0 15px rgb(111,117,143);
    position: relative;
    z-index: 2;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}
.info_details .contact_holder h2:hover {
    color: rgb(78,82,83);
    text-shadow: 0 0 25px rgb(78,82,83);
}
.info_details .contact_holder .contact_description {
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    margin: 2vw 0;
    padding: 2vw;
    border: 2px solid rgb(111,117,143);
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(111,117,143);
    max-width: 90vw;
    min-width: 280px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.info_details .contact_holder .contact_description:hover {
    box-shadow: 0 0 20px rgb(111,117,143);
}
.info_details .contact_holder .photo {
    width: 100%;
    height: 50vh;
    border-radius: 30px;
    margin-bottom: 2vw;
    position: relative;
    transition: filter 0.4s ease, transform 0.4s ease;
    border: 2px solid rgb(111,117,143);
}
@keyframes hoverEffect {
    0% {
        filter: brightness(100%);
    }
    50% {
        filter: brightness(120%);
    }
    100% {
        filter: brightness(100%);
    }
}
.info_details .photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 255, 255, 0.3), rgba(0, 255, 255, 0));
    border-radius: 30px;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.info_details .photo:hover::before {
    opacity: 0.7;
}
.info_details .info_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2vw;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border: 2px solid rgb(111,117,143);
    position: relative;
    transition: box-shadow 0.4s ease, background 0.4s ease;
}
@keyframes infoHover {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 1);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }
}
.info_details .info_holder:hover {
    animation: infoHover 0.6s ease;
}
.info_details .info_holder > div {
    display: flex;
    align-items: center;
    margin-bottom: 1.5vw;
    font-size: 15px;
    color: #ffffff;
    position: relative;
}
.info_details .info_holder svg {
    width: 24px;
    height: 24px;
    fill: rgb(111,117,143);
    margin-right: 12px;
    transition: fill 0.4s ease;
}
.info_details .info_holder svg:hover {
    fill: rgb(78,82,83);
}
.info_details .info_holder a {
    color: rgb(111,117,143);
    text-decoration: none;
    transition: color 0.4s ease, text-shadow 0.4s ease;
    position: relative;
}
.info_details .info_holder a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(111,117,143);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}
.info_details .info_holder a:hover {
    color: rgb(78,82,83);
    text-shadow: 0 0 10px rgb(78,82,83);
}
.info_details .info_holder a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.info_details .contact_politics {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2vw;
    margin-top: 25px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    border: 2px solid rgb(111,117,143);
    position: relative;
}
.info_details .contact_politics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgb(111,117,143);
    border-radius: 30px 30px 0 0;
    z-index: -1;
}
.info_details .contact_politics > div {
    margin-bottom: 2vw;
}
.info_details .contact_politics > div h4 {
    font-weight: 600;
    font-size: 18px;
    color: rgb(111,117,143);
    margin-bottom: 1vw;
    text-shadow: 0 0 10px rgb(111,117,143);
}
.info_details .contact_politics > div p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}
@media only screen and (max-width: 768px) {
    .info_details .container {
        max-width: 100vw;
        padding: 4vw;
    }
    .info_details .contact_holder {
        padding: 6vw;
    }
    .info_details .contact_holder .photo {
        height: 40vh;
    }
    .info_details .contact_description {
        padding: 3vw;
    }
    
    .info_details .contact_politics {
        padding: 4vw;
    }
}
@media only screen and (max-width: 480px) {
    .info_details .container {
        padding: 2vw;
    }
    .info_details .contact_holder {
        padding: 4vw;
    }
    .info_details .contact_holder .photo {
        height: 30vh;
    }
    .info_details .contact_description {
        padding: 2vw;
        font-size: 15px;
    }
    .info_details .contact_politics {
        padding: 3vw;
    }
}
footer {
    background: rgb(78,82,83);
    color: #ffffff;
}

footer .copyright {
    background: rgb(111,117,143);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(111,117,143);
}

footer h5 {
    color: rgb(111,117,143);
}

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: 21px;
    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: 18px;
    margin-right: 10px;
    margin-bottom: 5px;
}

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

@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-container footer .footer {
    padding: 0;
}

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

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

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

.core-container footer .copyright {
    background: rgb(111,117,143,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

    .core-container footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
.about_this {
    padding: 100px 0;
    background: rgb(158,162,163);
    font-family: Merriweather, sans-serif;
}

.core-container .about_this .holder {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.core-container .about_this .photo {
    width: 50%;
    max-width: 600px;
    height: 300px;
    border-radius: 0;
    position: relative;
    box-shadow: inset 0 0 0 1000px rgb(78,82,83,0.5);
    margin-bottom: 20px;
}

.core-container .about_this .caption_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #ffffff;
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.5);
    border-left: 10px solid rgb(111,117,143);
    position: relative;
    z-index: 1;
}

.core-container .about_this .style_element {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.core-container .about_this h2 {
    font-size: 37px;
    font-weight: 700;
    color: rgb(111,117,143);
    margin-bottom: 20px;
    text-align: center;
}

.core-container .about_this p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    text-align: center;
}

@media only screen and (max-width: 1200px) {
    .core-container .about_this .holder {
        flex-direction: column;
    }

    .core-container .about_this .photo,
    .core-container .about_this .caption_holder {
        width: 100%;
        max-width: 100%;
    }

    .core-container .about_this .caption_holder {
        box-shadow: none;
        border-left: 0;
        border-top: 10px solid rgb(111,117,143);
    }
}

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

    .core-container .about_this .caption_holder {
        padding: 20px;
    }
}
.course_features {
    padding: 60px 20px;
    background: #ffffff;
    font-family: Merriweather, sans-serif;
}

.course_features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.course_features h2 {
    color: #000000;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.course_features .content {
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 28px;
    overflow: hidden;
    background: rgb(111,117,143,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course_features h3 {
    color: rgb(111,117,143);
    font-size: 38px;
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course_features p {
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 0 20px;
}

.course_features .button {
    background: rgb(78,82,83);
    color: #ffffff;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.course_features .button:hover {
    background: rgb(111,117,143);
    color: #ffffff;
}

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

.course_features .items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.course_features .course {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.course_features .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.course_features .photo {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.course_features .text_holder {
    padding: 20px;
    background: #ffffff;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-container .course_features .items {
    width: 100%;
}

.core-container .course_features .items .course .content {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.core-container .course_features .photo {
    border-radius: 0;
    height: 300px;
    width: 100%;
    margin: 0;
}

.core-container .course_features .text_holder {
    border-radius: 0;
    width: 80%;
    background: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.core-container .course_features h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.core-container .course_features .button {
    display: inline-block;
    width: fit-content;
    margin-top: 35px;
    padding: 20px 45px;
    border-radius: 10px;
    background: rgb(111,117,143);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
}

.core-container .course_features .button:hover {
    background: rgb(78,82,83);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .course_features {
        padding: 20px 0;
    }
    .core-container .course_features .photo {
        width: 100%;
        height: 200px;
    }

    .core-container .course_features .text_holder {
        width: 90%;
        padding: 20px;
    }

    .core-container .course_features .items .course {
        padding: 0;
        margin: 0;
    }

    .core-container .course_features h3 {
        font-size: 20px;
    }
    .course_features p {
        padding: 0;
    }
}

@media only screen and (max-width: 600px) {
    .course_features .items {
        flex-direction: column;
    }

    .course_features h2 {
        font-size: 30px;
    }

    .course_features h3 {
        font-size: 26px;
    }

    .course_features .course {
        max-width: unset;
        width: 100%;
    }

    .course_features {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}.get_in_touch {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(111,117,143) 0%, rgb(78,82,83) 100%);
    position: relative;
    overflow: hidden;
}

.get_in_touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.get_in_touch h3 {
    color: rgb(111,117,143);
    font-size: 43px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.get_in_touch .form {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 50px;
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.get_in_touch form input,
.get_in_touch form textarea {
    color: #000000;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid rgb(111,117,143,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: Merriweather, sans-serif;
    transition: border-color 0.3s, background-color 0.3s, transform 0.3s;
}

.get_in_touch form input:focus,
.get_in_touch form textarea:focus {
    border-color: rgb(78,82,83);
    outline: none;
    background: #ffffff;
    transform: scale(1.02);
}

.get_in_touch form .button {
    background: rgb(111,117,143);
    color: #ffffff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 30px;
    text-transform: uppercase;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.get_in_touch form .button:hover {
    background: rgb(78,82,83);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.get_in_touch .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.get_in_touch .name_holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.get_in_touch .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.get_in_touch .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

.get_in_touch .agree label {
    display: block;
    font-family: Merriweather, sans-serif;
    color: #000000;
}

.get_in_touch .agree a {
    margin-left: 5px;
    color: rgb(111,117,143);
    text-decoration: underline;
    transition: color 0.3s;
}

.get_in_touch .agree a:hover {
    color: rgb(78,82,83);
}

.get_in_touch .form_text {
    margin-bottom: 30px;
    font-size: 12px;
    color: #000000;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    .get_in_touch {
        padding: 60px 0;
    }
    .get_in_touch h3 {
        font-size: 32px;
    }
    .get_in_touch .form {
        padding: 30px;
    }
}

.core-container .get_in_touch .holder {
    flex-direction: column-reverse;
}

.core-container .get_in_touch .form {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}header .main_header {
    background:  #ffffff;
    color:  #000000;
}
header .logo_holder svg,header .logo_holder svg path, header .logo_holder img {
    fill: rgb(111,117,143);
}
header .menu a {
    color: rgb(78,82,83);
}
header .menu a:hover {
    color: rgb(111,117,143);
}
header .menu a.active {
    border: 2px solid rgb(78,82,83);
    border-radius: 100px;
}
header .menu a.active:hover {
    color: #ffffff;
    background: rgb(111,117,143);
    border: 2px solid rgb(111,117,143);
}
header {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .175);
}
header .main_header {
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo_holder {
    padding: 5px 0;
    display: flex;
    align-items: center;
    text-decoration: none;

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

}
header .logo_desc {
    font-size: 15px;
    font-weight: 700;
}
header .logo_holder .logo_desc {
    text-transform: uppercase;
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}
header .menu {
    display: flex;
}
header .menu a {
    text-decoration: none;
    padding: 12px 25px;
    font-size: 17px;
}
body .core-container header .opened {
    display: flex;
}
@media only screen and (max-width: 1200px)  {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 30px;
        position: static;
        top:100%;
        left:0;
        z-index: 90;
        width: 100%;
    }
    header .menu a.active {
        border: none;
    }
    header .menu a.active:hover {
        color: rgb(111,117,143);
        background: none;
        border: none;
    }
    header .main_header {
        position: relative;
        z-index: 99;
    }
    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype {
        margin-right: 5px;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.core-container .logotype {
    background: #ffffff;
    padding: 10px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-right: 10px;
}
.core-container header .main_header {
    background: rgb(111,117,143);
    padding-bottom: 5px;
    position: relative;
}
.core-container header .main_header::before {
    position: absolute;
    content: "";
    top:0;
    height: 20px;
    width: 100%;
    background: rgb(78,82,83);
    z-index: 0;
}
.core-container header .logo_holder .logotype svg, .core-container header .logo_holder .logotype img {
    margin: 0;
}
.core-container header .logo_holder {
    padding: 0;
}
.core-container header .menu {
    padding-top: 20px;
}
.core-container header .menu a {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}
.core-container header .menu a:hover {
    color: rgb(78,82,83);
}
.core-container header .header_content {
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 800px)  {
    .core-container header .menu {
        background: none;
        align-items: center;
    }
    .core-container header .logo_holder .logotype svg,.core-container header .logo_holder .logotype img {
        width: 60px;
        height: 60px;
    }
    .core-container header .menu a {
        text-align: center;
    }
    .core-container header .logo_holder {
        justify-content: center;
        align-items: center;
    }
    .core-container header .menu {
        padding-bottom: 20px;
    }
}.future_learners {
    padding-bottom: 80px;
    padding-top: 80px;
}

.future_learners .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future_learners ul {
    list-style: none;
}

.future_learners ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.future_learners ul svg, .future_learners ul svg path {
    fill: rgb(111,117,143);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

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

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

.core-container .future_learners {
    background: linear-gradient(135deg, rgb(111,117,143) 0%, rgb(78,82,83) 100%);
    padding: 50px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.core-container .future_learners .holder {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.core-container .future_learners h2 {
    color: #ffffff;
    font-size: 29px;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.core-container .future_learners ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.core-container .future_learners ul li {
    width: 30%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    background: rgb(111,117,143,0.5);
    display: flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.core-container .future_learners ul li:hover {
    background: rgb(78,82,83,0.5);
    transform: translateY(-5px);
}

.core-container .future_learners ul svg, .core-container .future_learners ul svg path {
    position: static;
    fill: #ffffff;
    margin-right: 5px;
    margin-left: 5px;
    width: 24px;
    height: 24px;
}

@media only screen and (max-width: 800px) {
    .core-container .future_learners ul li {
        width: 100%;
        margin-bottom: 0;
    }

    .core-container .future_learners h2 {
        font-size: 29px;
        margin-bottom: 20px;
    }

    .core-container .future_learners ul {
        flex-direction: column;
        align-items: center;
    }
}

.core-container .future_learners .holder::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: #ffffff;
    margin: 30px auto 0;
    border-radius: 10px;
}

.core-container .future_learners ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px dashed #ffffff;
    border-radius: 10px;
    opacity: 0.5;
}

.core-container .future_learners ul li:hover::before {
    border-color: rgb(78,82,83);
    opacity: 1;
}

.core-container .future_learners ul li::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: rgb(78,82,83);
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(78,82,83,0.5);
}.register_now {
    padding: 60px 0;
    background: linear-gradient(135deg, rgb(111,117,143), rgb(78,82,83));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.register_now::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        linear-gradient(45deg, #ffffff 25%, transparent 25%),
        linear-gradient(-45deg, #ffffff 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ffffff 75%),
        linear-gradient(-45deg, transparent 75%, #ffffff 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.05;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.register_now .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 40px;
    background: rgb(158,162,163);
    border: 1px solid #000000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.register_now .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(111,117,143,0.5), rgb(78,82,83,0.5));
    opacity: 0.1;
    backdrop-filter: blur(10px);
}

.register_now .holder {
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgb(111,117,143,0.5), rgb(78,82,83,0.5));
    border: 2px solid rgb(78,82,83);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.register_now .holder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #ffffff 10%, transparent 10.01%) 50% 50% / 5em 5em;
    opacity: 0.1;
    animation: ripple 15s linear infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0) rotate(0deg);
    }
    100% {
        transform: scale(4) rotate(360deg);
    }
}

.register_now .holder svg {
    padding: 15px;
    background: #ffffff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register_now .holder svg path {
    fill: rgb(111,117,143);
    transition: fill 0.3s ease;
}

.register_now .holder svg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.register_now .holder svg:hover path {
    fill: rgb(78,82,83);
}

.register_now .holder h2 {
    font-size: 36px;
    color: #000000;
    text-transform: uppercase;
    margin: 0 30px;
    flex: 1;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.register_now .holder h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, rgb(111,117,143), rgb(78,82,83));
}

.register_now .holder .button {
    padding: 12px 25px;
    background: rgb(78,82,83);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.register_now .holder .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(111,117,143), rgb(78,82,83));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.register_now .holder .button:hover::before {
    opacity: 1;
}

.register_now .holder .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1024px) {
    .register_now .container {
        padding: 30px;
    }

    .register_now .holder {
        padding: 25px;
    }

    .register_now .holder svg {
        width: 100px;
        height: 100px;
    }

    .register_now .holder h2 {
        font-size: calc(36px * 0.9);
        margin: 0 20px;
    }

    .register_now .holder .button {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .register_now .container {
        padding: 20px;
    }

    .register_now .holder {
        flex-direction: column;
        padding: 20px;
    }

    .register_now .holder svg {
        margin-bottom: 20px;
    }

    .register_now .holder h2 {
        font-size: 23px;
        margin: 0 0 20px 0;
    }

    .register_now .holder .button {
        width: 100%;
        text-align: center;
    }
}.training_results {
    padding-bottom: 80px;
    padding-top: 80px;
}

.training_results .holder {
    display: flex;
    width: 100%;
}

.training_results h2 {
    text-align: left;
    margin-bottom: 20px;
}

.training_results .photo {
    width: 50%;
    flex-shrink: 0;
}

.training_results .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.training_results ul {
    list-style: none;
}

.training_results li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.training_results svg, .training_results path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(111,117,143);
    flex-shrink: 0;
}

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

    .training_results .holder {
        flex-direction: column;
    }

    .training_results .text_holder {
        width: 100%;
    }

    .training_results .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.core-container .training_results {
    background: rgb(111,117,143,0.5);
    position: relative;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Merriweather, sans-serif;
    overflow: hidden;
}

.core-container .training_results::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, rgb(78,82,83,0.5), rgb(111,117,143,0.5));
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    z-index: 0;
}

.core-container .training_results .holder {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-container .training_results .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.3);
}

.core-container .training_results .photo {
    width: 50%;
    height: auto;
    background-size: cover;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.core-container .training_results .photo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.core-container .training_results .text_holder {
    padding: 40px 60px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #ffffff 50%, rgb(111,117,143,0.5) 100%);
}

.core-container .training_results h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(111,117,143);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.core-container .training_results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-container .training_results li {
    margin-bottom: 20px;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
}

.core-container .training_results svg,
.core-container .training_results path {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    fill: rgb(78,82,83);
    transition: fill 0.3s ease;
}

.core-container .training_results li:hover svg,
.core-container .training_results li:hover path {
    fill: rgb(111,117,143);
}

@media only screen and (max-width: 1200px) {
    .core-container .training_results .holder {
        flex-direction: column;
    }

    .core-container .training_results .photo {
        width: 100%;
        height: 300px;
        clip-path: none;
    }

    .core-container .training_results .text_holder {
        width: 100%;
        padding: 40px 20px;
        background: #ffffff;
    }
}

@media only screen and (max-width: 800px) {
    .core-container .training_results {
        padding: 40px 10px;
    }

    .core-container .training_results .text_holder {
        padding: 30px 20px;
    }

    .core-container .training_results h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .core-container .training_results li {
        margin-bottom: 10px;
        font-size: 15px;
    }
}.welcome {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: rgb(111,117,143);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.welcome .title_page_holder {
    width: 70%;
    min-height: 800px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 2;
}
.welcome .style_element {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgb(78,82,83);
}
.welcome .style_element::before,
.welcome .style_element::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgb(78,82,83);
}
.welcome .style_element::before {
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
}
.welcome .style_element::after {
    width: 30px;
    height: 30px;
    bottom: -15px;
    right: -15px;
}
.welcome .style_element h1 {
    color: rgb(78,82,83);
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}
.welcome .style_element h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: rgb(78,82,83);
    margin: 10px auto 0;
    border-radius: 2px;
}
.welcome .style_element h3 {
    color: rgb(78,82,83);
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}
.welcome .style_element p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

@media only screen and (max-width: 1200px) {
    .welcome .title_page_holder {
        width: 80%;
        min-height: 700px;
        padding: 30px;
    }
    .welcome .style_element {
        padding: 30px;
    }
    .welcome .style_element h1 {
        font-size: 30px;
    }
    .welcome .style_element h3 {
        font-size: 19px;
    }
    .welcome .style_element p {
        font-size: 19px;
    }
}
@media only screen and (max-width: 800px) {
    .welcome {
        padding: 30px 10px;
    }
    .welcome .title_page_holder {
        width: 90%;
        min-height: 600px;
    }
    .welcome .style_element {
        padding: 20px;
        gap: 15px;
    }
    .welcome .style_element h1 {
        font-size: 19px;
    }
    .welcome .style_element h3 {
        font-size: 16px;
    }
    .welcome .style_element p {
        font-size: 14px;
    }
}
.core-container .welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgb(158,162,163);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.core-container .welcome .title_page_holder {
    width: 100%;
    min-height: 700px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 1;
}
.core-container .welcome .style_element {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    text-align: left;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 1px solid #000000;
}
.core-container .welcome .style_element::before,
.core-container .welcome .style_element::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #000000;
}
.core-container .welcome .style_element::before {
    width: 25px;
    height: 25px;
    top: -12px;
    left: -12px;
}
.core-container .welcome .style_element::after {
    width: 35px;
    height: 35px;
    bottom: -18px;
    right: -18px;
}
.core-container .welcome .style_element h1 {
    color: #000000;
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 3;
}
.core-container .welcome .style_element h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 12px 0 0;
    border-radius: 2px;
}
.core-container .welcome .style_element h3 {
    color: #000000;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}
.core-container .welcome .style_element p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 3;
}


@media only screen and (max-width: 1200px) {
    .core-container .welcome .title_page_holder {
        width: 85%;
        min-height: 600px;
        padding: 30px;
    }
    .core-container .welcome .style_element {
        padding: 30px;
    }
    .core-container .welcome .style_element h1 {
        font-size: 30px;
    }
    .core-container .welcome .style_element h3 {
        font-size: 19px;
    }
    .core-container .welcome .style_element p {
        font-size: 19px;
    }
}
@media only screen and (max-width: 800px) {
    .core-container .welcome {
        padding: 30px 10px;
    }
    .core-container .welcome .title_page_holder {
        width: 90%;
        min-height: 500px;
    }
    .core-container .welcome .style_element {
        padding: 20px;
        gap: 20px;
    }
    .core-container .welcome .style_element h1 {
        font-size: 19px;
    }
    .core-container .welcome .style_element h3 {
        font-size: 16px;
    }
    .core-container .welcome .style_element p {
        font-size: 14px;
    }
}
.advantages_summary .advantages_content h2 {
    color: rgb(78,82,83);
}

.advantages_summary .advantage_item svg, .advantages_summary .advantage_item svg path {
    fill: rgb(111,117,143);
}

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

.advantages_summary .advantage_item b {
    color: rgb(111,117,143);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.core-container .advantages_summary {
    background: linear-gradient(135deg, rgb(111,117,143) 0%, rgb(78,82,83) 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.core-container .advantages_summary .advantages_content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.core-container .advantages_summary .advantages_description {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgb(111,117,143,0.5);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.core-container .advantages_summary .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.core-container .advantages_summary .advantage_item {
    background: #ffffff;
    padding: 20px;
    width: 270px;
    border: 1px solid rgb(111,117,143,0.5);
    border-radius: 17px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-container .advantages_summary .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.core-container .advantages_summary .advantage_image img,
.core-container .advantages_summary .advantage_image svg {
    width: 128px;
    height: 128px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.core-container .advantages_summary .advantages_content h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: rgb(111,117,143);
    margin-top: 20px;
}

.core-container .advantages_summary .advantage_item p {
    font-size: 16px;
    line-height: 25px;
    font-style: italic;
    color: #000000;
    margin-top: 16px;
    text-align: center;
}

.core-container .advantages_summary .advantage_item p b {
    color: rgb(111,117,143);
}

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

@media only screen and (max-width: 800px) {
    .core-container .advantages_summary .advantage_item {
        width: 100%;
        margin-bottom: 30px;
    }

    .core-container .advantages_summary .advantages_content h2 {
        font-size: 30px;
    }

    .core-container .advantages_summary {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}