* {
    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;
}
.corewrapper-section {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(162,193,222);
}
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;
    }
}.corewrapper-section .coreour_background {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corewrapper-section .coreour_background .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.corewrapper-section .coreour_background .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(35,70,102,0.5);
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 40px;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.corewrapper-section .coreour_background .holder .photo {
    width: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 21px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.corewrapper-section .coreour_background .holder .photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(81,118,159,0.5);
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
    opacity: 0.6;
}

.corewrapper-section .coreour_background .holder .photo:hover::after {
    opacity: 0.9;
}

.corewrapper-section .coreour_background .style_element {
    background: #ffffff;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.corewrapper-section .coreour_background h2 {
    font-size: 36px;
    color: rgb(81,118,159);
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.corewrapper-section .coreour_background h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgb(81,118,159);
}

.corewrapper-section .coreour_background p {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.corewrapper-section .coreour_background .style_element p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 800px) {
    .corewrapper-section .coreour_background {
        padding: 60px 0;
    }

    .corewrapper-section .coreour_background .caption_holder {
        padding: 20px;
        transform: translateY(50px);
    }

    .corewrapper-section .coreour_background .holder .photo {
        margin-bottom: 20px;
    }

    .corewrapper-section .coreour_background h2 {
        font-size: 21px;
    }

    .corewrapper-section .coreour_background p {
        font-size: 18px;
    }
    .corewrapper-section .coreour_background .holder {
        padding: 0;
    }
    .corewrapper-section .coreour_background .style_element {
        padding: 10px;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.coreconnect_form {
    padding: 60px 0;
    background-color: rgb(162,193,222);
    font-family: Arial, sans-serif;
}
.coreconnect_form h3 {
    color: rgb(81,118,159);
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.coreconnect_form .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.coreconnect_form .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.coreconnect_form .info {
    flex: 1 1 45%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.coreconnect_form .info h5 {
    color: rgb(81,118,159);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}
.coreconnect_form .info span {
    display: block;
    color: #000000;
    font-size: 17px;
}
.coreconnect_form .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.coreconnect_form .info .contact_info svg {
    fill: rgb(81,118,159);
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.coreconnect_form .logo_holder {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.coreconnect_form .logo_holder svg, .coreconnect_form .logo_holder img {
    width: 50px;
    height: 50px;
    fill: rgb(81,118,159);
    flex-shrink: 0;
}
.coreconnect_form .form {
    flex: 1 1 45%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.coreconnect_form .form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(35,70,102);
}
.coreconnect_form form input,
.coreconnect_form form select,
.coreconnect_form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgb(81,118,159,0.5);
    background-color: rgb(162,193,222);
    color: #000000;
    font-size: 17px;
    transition: border-color 0.3s ease;
}
.coreconnect_form form input:focus,
.coreconnect_form form select:focus,
.coreconnect_form form textarea:focus {
    border-color: rgb(81,118,159);
    outline: none;
    box-shadow: 0 0 5px rgb(81,118,159,0.5);
}
.coreconnect_form form .button {
    background-color: rgb(81,118,159);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 28px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}
.coreconnect_form form .button:hover {
    background-color: rgb(35,70,102);
}
.coreconnect_form .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.coreconnect_form .agree input[type=checkbox] {
    margin-right: 10px;
    width: auto;
    margin-bottom: 0;
}
.coreconnect_form .agree label {
    font-size: 17px;
    font-weight: 400;
}
.coreconnect_form .agree a {
    color: rgb(81,118,159);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .coreconnect_form .holder {
        flex-direction: column;
    }
    .coreconnect_form .holder > div {
        width: 100%;
    }
}
.corecourse_overview {
    padding: 120px 0;
    background-color: rgb(35,70,102,0.5);
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}
.corecourse_overview::before, .corecourse_overview::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgb(81,118,159,0.5);
    border-radius: 50%;
    z-index: 1;
}
.corecourse_overview::before {
    top: -50px;
    left: -50px;
}
.corecourse_overview::after {
    bottom: -50px;
    right: -50px;
}
.corecourse_overview .container {
    position: relative;
    z-index: 2;
}
.corecourse_overview h2 {
    color: rgb(35,70,102);
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.corecourse_overview .content {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
}
.corecourse_overview .course {
    padding: 40px;
    max-width: 80%;
    margin: auto;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.corecourse_overview .photo {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid rgb(81,118,159);
    border-radius: 15px 15px 0 0;
}
.corecourse_overview .text_holder {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 15px 15px;
}
.corecourse_overview h3 {
    color: rgb(81,118,159);
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(35,70,102);
    padding-bottom: 10px;
    width: 100%;
}
.corecourse_overview p {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 30px;
}
.corecourse_overview .button {
    background: rgb(81,118,159);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgb(35,70,102);
}
.corecourse_overview .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.corecourse_overview .items {
    display: flex;
    justify-content: center;
    align-items: center;
}
.corecourse_overview .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.corecourse_overview .photo {
    height: 300px;
    width: 100%;
    margin-top: 20px;
    border-bottom: 2px solid rgb(35,70,102);
}
.corecourse_overview .text_holder {
    padding: 30px;
}
@media only screen and (max-width: 600px) {
    .corecourse_overview .items {
        flex-direction: column;
    }
    .corecourse_overview h2 {
        font-size: 24px;
    }
    .corecourse_overview h3 {
        font-size: 20px;
    }
    .corecourse_overview .course {
        max-width: 100%;
        padding: 20px;
    }
    .corecourse_overview {
        padding: 60px 0;
    }
    .corecourse_overview .photo {
        height: 200px;
    }
}

.corewrapper-section .corecourse_overview .container {
    width: 100%;
    padding: 0;
}
.corewrapper-section .corecourse_overview .items {
    width: 100%;
}
.corewrapper-section .corecourse_overview .items .course {
    padding: 0;
    width: 100%;
}
.corewrapper-section .corecourse_overview .photo {
    height: 250px;
    width: 100%;
    margin: 0;
    border-radius: 0!important;
    background-position: 50% 30% !important;
}
.corewrapper-section .corecourse_overview .course .content {
    border-radius: 0 !important;
    box-shadow: none;
}
.corewrapper-section .corecourse_overview .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
}
.corewrapper-section .corecourse_overview p {
    margin-top: 20px;
    text-align: center;
}
.corewrapper-section .corecourse_overview .button {
    margin-top: 30px;
    width: fit-content;
}
.corewrapper-section .corecourse_overview h3 {
    text-align: center;
}
@media only screen and (max-width: 800px) {
    .corewrapper-section .corecourse_overview .photo {
        height: 200px;
    }
    .corewrapper-section .corecourse_overview h3 {
        font-size: 22px;
    }
    .corewrapper-section .corecourse_overview p {
        font-size: 16px;
    }
    .corewrapper-section .corecourse_overview .button {
        font-size: 14px;
        padding: 10px 20px;
    }
}.coregive_it_a_try {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(162,193,222) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-top: 8px solid rgb(81,118,159);
    border-bottom: 8px solid rgb(81,118,159);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.coregive_it_a_try::before, .coregive_it_a_try::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgb(81,118,159,0.5);
    border-radius: 50%;
    filter: blur(50px);
}

.coregive_it_a_try::before {
    top: -100px;
    left: -100px;
}

.coregive_it_a_try::after {
    bottom: -100px;
    right: -100px;
}

.coregive_it_a_try .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 21px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.coregive_it_a_try .holder {
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: none;
    border-radius: 21px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.coregive_it_a_try .holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(81,118,159,0.5), rgb(35,70,102,0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.coregive_it_a_try .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.coregive_it_a_try .holder:hover::before {
    opacity: 0.2;
}

.coregive_it_a_try .holder svg, .coregive_it_a_try .holder svg path {
    fill: rgb(81,118,159);
    width: 100px;
    height: 100px;
}

.coregive_it_a_try .holder h2 {
    font-size: 43px;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: rgb(81,118,159);
    position: relative;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}

.coregive_it_a_try .holder h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: rgb(35,70,102);
    transition: width 0.5s ease-in-out;
}

.coregive_it_a_try .holder:hover h2 {
    color: rgb(35,70,102);
}

.coregive_it_a_try .holder:hover h2::after {
    width: 100%;
}

.coregive_it_a_try .holder .button {
    padding: 15px 30px;
    background: rgb(81,118,159);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    display: inline-block;
    margin-top: 20px;
}

.coregive_it_a_try .holder .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease-in-out;
}

.coregive_it_a_try .holder .button:hover {
    background: rgb(35,70,102);
    box-shadow: 0 10px 20px rgb(35,70,102,0.5);
    transform: translateY(-3px);
}

.coregive_it_a_try .holder .button:hover::before {
    left: 100%;
}

.coregive_it_a_try .holder .button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1024px) {
    .coregive_it_a_try {
        padding: 80px 0;
    }
    .coregive_it_a_try .holder {
        flex-direction: column;
        padding: 40px;
    }
    .coregive_it_a_try .holder svg, .coregive_it_a_try .holder svg path {
        width: 120px;
        height: 120px;
    }
    .coregive_it_a_try .holder h2 {
        font-size: 34px;
        text-align: center;
    }
    .coregive_it_a_try .holder .button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: calc(16px * 0.95);
        white-space: normal;
    }
}

@media only screen and (max-width: 600px) {
    .coregive_it_a_try {
        padding: 60px 0;
    }
    .coregive_it_a_try .holder {
        padding: 30px;
    }
    .coregive_it_a_try .holder svg, .coregive_it_a_try .holder svg path {
        width: 80px;
        height: 80px;
    }
    .coregive_it_a_try .holder h2 {
        font-size: 22px;
    }
    .coregive_it_a_try .holder .button {
        padding: 12px 24px;
        font-size: calc(16px * 0.9);
    }
}.corethanksPanel {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(81,118,159,0.5);
    padding: 20px;
    color: #ffffff;
}
.corethanksPanel .container {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background: linear-gradient(135deg, rgb(81,118,159) 0%, rgb(35,70,102,0.5) 100%);
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgb(81,118,159,0.5);
    position: relative;
}
.corethanksPanel .container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgb(35,70,102) 0%, rgb(81,118,159,0.5) 100%);
    border-radius: 30px;
    z-index: -1;
    filter: blur(15px);
}
.corethanksPanel h2 {
    margin-bottom: 15px;
    font-size: 32px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: rgb(81,118,159);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px var(--white-color_opacity);
}
.corethanksPanel p {
    font-size: 13px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgb(81,118,159,0.5);
}
@media only screen and (max-width: 1200px) {
    .corethanksPanel .container {
        padding: 30px;
    }
    .corethanksPanel h2 {
        font-size: 20px;
    }
    .corethanksPanel p {
        font-size: 13px;
    }
}
@media only screen and (max-width: 800px) {
    .corethanksPanel {
        padding: 15px;
    }
    .corethanksPanel .container {
        padding: 20px;
    }
    .corethanksPanel h2 {
        font-size: 22px;
    }
    .corethanksPanel p {
        font-size: 13px;
    }
}
.coreprivacy_hideaway {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    height: auto;
    background-color: #ffffff;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    color: #000000;
}

.coreprivacy_hideaway h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 41px;
    font-weight: 700;
    color: rgb(81,118,159);
    border-bottom: 2px solid rgb(81,118,159,0.5);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coreprivacy_hideaway h2 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 29px;
    font-weight: 600;
    color: rgb(35,70,102);
    border-bottom: 1px solid rgb(35,70,102,0.5);
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coreprivacy_hideaway h3, .coreprivacy_hideaway h4, .coreprivacy_hideaway h5, .coreprivacy_hideaway h6 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 400;
    color: rgb(81,118,159,0.5);
    border-bottom: 1px solid rgb(81,118,159,0.5);
    padding-bottom: 5px;
}

.coreprivacy_hideaway ul, .coreprivacy_hideaway ol {
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.coreprivacy_hideaway ol {
    list-style-type: decimal;
}

.coreprivacy_hideaway ul li, .coreprivacy_hideaway ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.coreprivacy_hideaway section {
    background: rgb(35,70,102,0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgb(81,118,159,0.5);
}

.coreprivacy_hideaway p, .coreprivacy_hideaway span, .coreprivacy_hideaway div {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .coreprivacy_hideaway {
        padding: 20px;
    }
    .coreprivacy_hideaway h1 {
        font-size: calc(19px - 5px);
    }
    .coreprivacy_hideaway h2 {
        font-size: calc(19px - 4px);
    }
    .coreprivacy_hideaway h3, .coreprivacy_hideaway h4, .coreprivacy_hideaway h5, .coreprivacy_hideaway h6 {
        font-size: calc(19px - 3px);
    }
    .coreprivacy_hideaway ul, .coreprivacy_hideaway ol {
        padding-left: 15px;
    }
}

.coreprivacy_hideaway a {
    color: rgb(81,118,159);
    text-decoration: none;
    border-bottom: 1px solid rgb(81,118,159,0.5);
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.coreprivacy_hideaway a:hover {
    color: rgb(35,70,102);
    border-bottom-color: rgb(35,70,102);
}
footer {
    background: linear-gradient(135deg, rgb(35,70,102) 0%, rgb(35,70,102,0.5) 100%);
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
    fill: rgb(81,118,159);
}
footer h5 {
    color: rgb(81,118,159);
    font-size: 21px;
    margin-bottom: 16px;
    font-weight: 700;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 5px;
}
footer .menu a:hover {
    color: rgb(81,118,159);
    text-decoration: underline;
}
footer .contact_info {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
footer .contact_info div svg, footer .contact_info div img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #ffffff;
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 12px;
    text-align: left;
}
footer .footer_agreement {
    display: flex;
    margin: 10px 0;
    justify-content: flex-start;
    text-align: left;
    color: #ffffff;
    font-size: 12px;
}
footer .copyright {
    background: linear-gradient(135deg, rgb(81,118,159) 0%, rgb(81,118,159,0.5) 100%);
    color: #ffffff;
    font-size: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}
footer .copyright_info {
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
footer .copyright_info a:hover {
    color: rgb(35,70,102);
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
    footer .footer_agreement {
        text-align: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .contact_info {
        margin-top: 10px;
    }
    footer h5 {
        margin-top: 5px;
    }
}
.corebenefits {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(81,118,159), rgb(35,70,102));
    color: #ffffff;
    font-family: Arial, sans-serif;
}
.corebenefits .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(35,70,102,0.5);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 40px;
    transition: all 0.3s ease-in-out;
}
.corebenefits .advantages_photo_holder {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
}
.corebenefits .advantages_photo_holder .photo {
    width: 100%;
    max-width: 300px;
    min-height: 300px;
    background: rgb(81,118,159,0.5);
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.corebenefits .advantages_photo_holder .photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.corebenefits .advantages_holder {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    background: rgb(35,70,102,0.5);
    border-radius: 25px;
    padding: 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    gap: 20px;
    justify-content: space-between;
}
.corebenefits .advantages_holder .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgb(81,118,159,0.5);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    width: 30%;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}
.corebenefits .advantages_holder .advantage_item:hover {
    background: rgb(35,70,102);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.corebenefits .advantages_holder .advantage_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgb(81,118,159);
    opacity: 0.5;
    transition: height 0.3s ease;
}
.corebenefits .advantages_holder .advantage_item:hover::before {
    height: 100%;
    opacity: 0.2;
}
.corebenefits .advantages_holder .advantage_image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.corebenefits .advantages_holder .advantage_image svg, .corebenefits .advantages_holder .advantage_image svg path {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}
.corebenefits .advantages_content h2 {
    font-size: 31px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.corebenefits .advantages_content h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: rgb(81,118,159);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}
.corebenefits .advantages_content h4 {
    color: #ffffff;
    font-size: 19px;
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
}
@media only screen and (max-width: 1200px) {
    .corebenefits .advantages_content {
        padding: 20px;
    }
    .corebenefits .advantages_photo_holder {
        flex-direction: column;
    }
    .corebenefits .advantages_photo_holder .photo {
        width: 80%;
    }
    .corebenefits .advantages_holder {
        flex-direction: column;
        align-items: stretch;
    }
    .corebenefits .advantages_holder .advantage_item {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 800px) {
    .corebenefits {
        padding: 40px 10px;
    }
    .corebenefits .advantages_content h2 {
        font-size: 23px;
    }
    .corebenefits .advantages_photo_holder .photo {
        width: 100%;
    }
    .corebenefits .advantages_holder {
        padding: 10px;
    }
    .corebenefits .advantages_holder .advantage_item {
        padding: 10px;
    }
    .corebenefits .advantages_holder .advantage_image {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
}
header .main_header {
    background: rgb(162,193,222);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    border-bottom: 1px solid rgb(81,118,159);
}
header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
header .logo_holder {
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 10px;
}
header .logo_holder .logotype img, header .logo_holder .logotype svg {
    height: 60px;
    width: 60px;
    width: auto;
    margin-right: 20px;
    filter: grayscale(100%);
}
header .menu {
    display: flex;
    align-items: stretch;
    gap: 30px;
}
header .menu a {
    text-decoration: none;
    color: rgb(35,70,102);
    padding: 10px 15px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    text-align: left;
}
header .menu a:hover {
    color: rgb(81,118,159);
    border-bottom: 2px solid rgb(81,118,159);
}
header .menu a.active {
    color: rgb(81,118,159);
    border-bottom: 2px solid rgb(81,118,159);
}
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    header .menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        width: 100%;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 15px;
        width: 100%;
        text-align: left;
    }
}
.corewrapper-section header .header_content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.corewrapper-section header .logo_holder .logotype img {
    width: 30px;
    height: 30px;
}
.corewrapper-section header .menu a {
    font-size: 20px;
    font-weight: 700;
}
.corewrapper-section header .logo_caption {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.corewrapper-section header .logo_desc {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    text-transform: uppercase;
}
@media (max-width: 800px) {
    .corewrapper-section header .header_content {
        flex-direction: column;
        align-items: center;
    }
    .corewrapper-section header .logo_holder {
        padding: 0;
        margin-bottom: 20px;
    }
    .corewrapper-section header .menu {
        width: 100%;
        text-align: center;
    }
    .corewrapper-section header .menu a {
        width: 100%;
        padding: 10px 0;
    }
}
header .menu a {
    border-left: 3px solid transparent;
    padding-left: 20px;
}
header .menu a:hover, header .menu a.active {
    border-left: 3px solid rgb(81,118,159);
}.corecustomer_comments {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.corecustomer_comments h2 {
    color: rgb(35,70,102);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.corecustomer_comments h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: rgb(35,70,102);
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

.corecustomer_comments .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.corecustomer_comments .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
}

.corecustomer_comments .review {
    background: rgb(81,118,159,0.5);
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 30%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.corecustomer_comments .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.corecustomer_comments .photo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgb(35,70,102);
}

.corecustomer_comments .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.corecustomer_comments .review span {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.corecustomer_comments .review p {
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
}

@media only screen and (max-width: 1024px) {
    .corecustomer_comments .review {
        flex: 1 1 45%;
    }
}

@media only screen and (max-width: 768px) {
    .corecustomer_comments .review {
        flex: 1 1 100%;
    }
}

.corewrapper-section .corecustomer_comments {
    background: rgb(162,193,222);
    padding: 60px 20px;
}

.corewrapper-section .corecustomer_comments h2 {
    font-size: 34px;
    color: #000000;
}

.corewrapper-section .corecustomer_comments .reviews {
    gap: 15px;
}

.corewrapper-section .corecustomer_comments .review {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: rgb(81,118,159,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.corewrapper-section .corecustomer_comments .review span {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
}

.corewrapper-section .corecustomer_comments .review p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.corewrapper-section .corecustomer_comments .photo {
    width: 100px;
    height: 100px;
    border: 2px solid rgb(35,70,102);
}
.coretariff_list {
    background: rgb(162,193,222);
    padding: 0 0 120px;
    position: relative;
    overflow: hidden;
}

.coretariff_list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(81,118,159,0.5) 0%, rgb(35,70,102,0.5) 100%);
    opacity: 0.85;
    z-index: 1;
}

.coretariff_list .container {
    position: relative;
    z-index: 2;
}

.coretariff_list .price_info_holder {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.coretariff_list .photo {
    height: 400px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px -5px rgba(0, 0, 0, 0.5);
}

.coretariff_list h2 {
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.coretariff_list h3 {
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.coretariff_list .price_items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coretariff_list .price_item {
    background: #ffffff;
    border-radius: 21px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    align-items: center;
    gap: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coretariff_list .price_item h3 {
    font-size: 18px;
    color: rgb(81,118,159);
    margin: 0;
    text-align: left;
}

.coretariff_list .price_item .price_amount {
    font-size: 46px;
    color: #000000;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.coretariff_list .price_item span {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.coretariff_list .price_item .button {
    background: linear-gradient(135deg, rgb(81,118,159) 0%, rgb(35,70,102) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.coretariff_list .price_item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.coretariff_list .price_item .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgb(81,118,159,0.5);
}

@media (max-width: 991px) {
    .coretariff_list {
        padding: 0 0 80px;
    }
    
    .coretariff_list .photo {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .coretariff_list .price_item {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        padding: 30px;
        gap: 20px;
    }
    
    .coretariff_list .price_item h3 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .coretariff_list .price_item .price_amount {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }
    
    .coretariff_list .price_item span {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .coretariff_list .price_item .button {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .coretariff_list {
        padding: 0 0 60px;
    }
    
    .coretariff_list .photo {
        height: 200px;
        margin-bottom: 30px;
    }
    
    .coretariff_list h2 {
        font-size: calc(28px * 0.9);
    }
    
    .coretariff_list h3 {
        font-size: calc(18px * 0.9);
        margin-bottom: 30px;
    }
    
    .coretariff_list .price_item {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        padding: 25px;
        gap: 15px;
    }
    
    .coretariff_list .price_item h3,
    .coretariff_list .price_item .price_amount {
        grid-column: 1;
        text-align: center;
    }
    
    .coretariff_list .price_item h3 {
        grid-row: 1;
    }
    
    .coretariff_list .price_item .price_amount {
        grid-row: 2;
    }
    
    .coretariff_list .price_item span {
        grid-row: 3;
        text-align: center;
    }
    
    .coretariff_list .price_item .button {
        grid-row: 4;
    }
}.corehomepage .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.corehomepage .style_element h1 {
    color: rgb(35,70,102);
}

.corehomepage .style_element h3 {
    color: rgb(35,70,102);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.corehomepage .style_element p {
    color: #000000;
    text-align: right;
}

.corehomepage {
    width: 100%;
}

.corehomepage .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.corehomepage .style_element {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.corehomepage .style_element h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.corehomepage .style_element p {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .corehomepage .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .corehomepage .style_element {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .corehomepage .style_element h1 {
        font-size: 18px;
    }

    .corehomepage .style_element h3 {
        font-size: 16px;
    }

    .corehomepage .style_element p {
        font-size: 14px;
    }
}

.corewrapper-section .corehomepage {
    position: relative;
}

.corewrapper-section .corehomepage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
    z-index: 0;
}

.corewrapper-section .corehomepage .style_element {
    position: relative;
    clip-path: none;
    margin: auto;
    height: auto;
    background: none;
    display: flex;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 336px;
    justify-content: center;
    max-width: 1200px;
}

.corewrapper-section .corehomepage .style_element::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #ffffff;
    opacity: 0.7;
    z-index: 1;
}

.corewrapper-section .corehomepage .title_page_holder {
    display: flex;

}

.corewrapper-section .corehomepage .style_element h1 {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.corewrapper-section .corehomepage .style_element h3 {
    color: #000000;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.corewrapper-section .corehomepage .style_element p {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .corewrapper-section .corehomepage .title_page_holder {
        padding: 20px;
    }

    .corewrapper-section .corehomepage .style_element h1 {
        font-size: 30px;
    }

    .corewrapper-section .corehomepage .style_element {
        padding: 30px 10px;
    }
}