* {
    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: Playfair Display, sans-serif;
    color: #000000;
}
.wrapper-capsule_style {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(183,203,224);
}
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;
    }
}.potential_learners_style {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}

.potential_learners_style .who_needs_background {
    padding: 50px 0;
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.potential_learners_style .who_needs_background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgb(61,101,143) 0%,
        rgb(61,101,143,0.5) 25%,
        rgb(88,138,174,0.5) 75%,
        rgb(88,138,174) 100%
    );
    mix-blend-mode: multiply;
}

.potential_learners_style .who_needs_background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 50%,
        transparent 0%,
        rgb(61,101,143,0.5) 50%,
        rgb(88,138,174,0.5) 100%
    );
    mix-blend-mode: overlay;
}

.potential_learners_style .who_needs_text {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.potential_learners_style .who_needs_text h3 {
    color: #ffffff;
    font-size: calc(48px * 1.2);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    padding-left: 40px;
}

.potential_learners_style .who_needs_text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 30px;
    height: 3px;
    background: rgb(61,101,143);
}

.potential_learners_style .who_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

.potential_learners_style .who_items::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    background: #ffffff;
    border-radius: 16px;
    opacity: 0.98;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.potential_learners_style .who_needs_item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 10px;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.potential_learners_style .who_needs_item:nth-child(even) {
    transform: translateY(20px);
}

.potential_learners_style .who_needs_item svg {
    width: 32px;
    height: 32px;
    fill: rgb(88,138,174);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.potential_learners_style .who_needs_item:hover {
    background: rgb(183,203,224);
    transform: scale(1.03);
}

.potential_learners_style .who_needs_item:hover svg {
    transform: scale(1.2) rotate(-10deg);
}

@media (max-width: 1200px) {
    .potential_learners_style .who_needs_text {
        gap: 60px;
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .potential_learners_style {
        padding: 100px 0;
    }

    .potential_learners_style .who_needs_background {
        min-height: auto;
    }

    .potential_learners_style .who_needs_text {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .potential_learners_style .who_needs_text h3 {
        font-size: 48px;
        text-align: center;
        padding-left: 0;
    }

    .potential_learners_style .who_needs_text h3::before {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
        width: 50px;
    }

    .potential_learners_style .who_items::before {
        top: -30px;
        left: -30px;
        width: calc(100% + 60px);
        height: calc(100% + 60px);
    }
}

@media (max-width: 767px) {
    .potential_learners_style {
        padding: 80px 0;
    }

    .potential_learners_style .who_needs_text {
        padding: 0 20px;
        gap: 30px;
    }

    .potential_learners_style .who_items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .potential_learners_style .who_needs_item {
        padding: 20px;
    }

    .potential_learners_style .who_needs_item:nth-child(even) {
        transform: none;
    }

    .potential_learners_style .who_items::before {
        top: -20px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
    }

    .potential_learners_style .who_needs_item svg {
        width: 28px;
        height: 28px;
    }
}.gratPanel_style {
    background-color: rgb(88,138,174,0.5);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.gratPanel_style::before, .gratPanel_style::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgb(88,138,174,0.5);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}
.gratPanel_style::before {
    top: -50px;
    left: -50px;
}
.gratPanel_style::after {
    bottom: -50px;
    right: -50px;
}
.gratPanel_style .container {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.gratPanel_style .container h2 {
    font-family: Playfair Display, sans-serif;
    font-size: 47px;
    color: rgb(88,138,174);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid rgb(61,101,143);
    padding-bottom: 10px;
}
.gratPanel_style .container p {
    font-family: Playfair Display, sans-serif;
    font-size: 17px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
    text-align: center;
}
.gratPanel_style .container .info-block {
    background-color: rgb(183,203,224);
    border: 1px solid rgb(61,101,143,0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.gratPanel_style .container .info-block h5 {
    font-family: Playfair Display, sans-serif;
    font-size: 22px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid rgb(88,138,174,0.5);
    padding-bottom: 5px;
}
.gratPanel_style .container .info-block p {
    font-family: Playfair Display, sans-serif;
    font-size: 17px;
    color: #000000;
    margin-bottom: 0;
    text-align: left;
}
@media only screen and (max-width: 800px) {
    .gratPanel_style {
        padding: 40px 10px;
    }
    .gratPanel_style .container {
        padding: 30px 20px;
    }
    .gratPanel_style .container h2 {
        font-size: calc(47px - 8px);
    }
    .gratPanel_style .container p {
        font-size: calc(17px - 2px);
    }
    .gratPanel_style::before, .gratPanel_style::after {
        width: 70px;
        height: 70px;
    }
}
.test_drive_style {
    padding: 80px 0;
    background: 
        linear-gradient(45deg, rgb(183,203,224) 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, rgb(183,203,224) 25%, transparent 25%) -50px 0,
        linear-gradient(45deg, transparent 75%, rgb(183,203,224) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(183,203,224) 75%);
    background-size: 100px 100px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(88,138,174);
}

.test_drive_style .container {
    position: relative;
    z-index: 2;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 30px;
}

.test_drive_style .holder {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(88,138,174,0.5);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5), -5px -5px 15px #ffffff;
}

.test_drive_style .holder svg, .test_drive_style .holder svg path {
    background: rgb(61,101,143);
    fill: #ffffff;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5), -2px -2px 10px #ffffff;
    padding: 15px;
}

.test_drive_style .holder h2 {
    font-size: 42px;
    text-align: center;
    margin: 20px 0;
    color: #000000;
    text-shadow: 1px 1px 2px #ffffff;
    font-family: Playfair Display, sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    background: rgb(88,138,174,0.5);
    border-radius: 10px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px #ffffff;
}

.test_drive_style .holder .button {
    padding: 15px 35px;
    background: rgb(61,101,143);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    border-radius: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5), -2px -2px 10px #ffffff;
    font-weight: 600;
    margin-top: 20px;
}

.test_drive_style .holder .button:hover {
    background: rgb(88,138,174);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5), -4px -4px 20px #ffffff;
}

@media only screen and (max-width: 1024px) and (min-width: 801px) {
    .test_drive_style {
        padding: 70px 0;
    }
    .test_drive_style .holder {
        padding: 25px;
    }
    .test_drive_style .holder h2 {
        font-size: 35px;
    }
    .test_drive_style .holder .button {
        font-size: 12px;
        padding: 14px 30px;
    }
}

@media only screen and (max-width: 800px) {
    .test_drive_style {
        padding: 60px 0;
    }
    .test_drive_style .holder {
        padding: 20px;
    }
    .test_drive_style .holder h2 {
        font-size: 21px;
        margin: 15px 0;
    }
    .test_drive_style .holder .button {
        font-size: 22px;
        padding: 12px 28px;
    }
}
.advantages_benefits_style .advantages_content h2 {
    color: rgb(61,101,143);
}

.advantages_benefits_style .advantage_item svg, .advantages_benefits_style .advantage_item svg path {
    fill: rgb(88,138,174);
}

.advantages_benefits_style .advantage_item p {
    color: #000000;
}

.advantages_benefits_style .advantage_item b {
    color: rgb(88,138,174);
}

.advantages_benefits_style {
    padding-top: 80px;
    padding-bottom: 80px;
}

.advantages_benefits_style .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.advantages_benefits_style .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.advantages_benefits_style .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 600;
}

.advantages_benefits_style .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.advantages_benefits_style .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.advantages_benefits_style .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.advantages_benefits_style .advantage_item svg, .advantages_benefits_style .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-capsule_style .advantages_benefits_style .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .advantages_benefits_style .advantages_content h2 {
        font-size: 30px;
    }

    .advantages_benefits_style .advantages_holder {
        flex-direction: column;
    }

    .advantages_benefits_style {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-capsule_style .advantages_benefits_style .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-capsule_style .advantages_benefits_style {
    padding: 80px 20px;
    background: rgb(183,203,224);
}

.wrapper-capsule_style .advantages_benefits_style .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wrapper-capsule_style .advantages_benefits_style .advantages_content h2 {
    font-size: 46px;
    font-weight: 700;
    color: rgb(88,138,174);
    margin-bottom: 40px;
    position: relative;
}

.wrapper-capsule_style .advantages_benefits_style .advantages_content h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: rgb(61,101,143);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.wrapper-capsule_style .advantages_benefits_style .advantages_description {
    font-size: 13px;
    color: #000000;
    margin-bottom: 40px;
    max-width: 800px;
}

.wrapper-capsule_style .advantages_benefits_style .advantages_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.wrapper-capsule_style .advantages_benefits_style .advantage_item {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    min-width: 200px;
}

.wrapper-capsule_style .advantages_benefits_style .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.wrapper-capsule_style .advantages_benefits_style .advantage_image {
    margin-bottom: 20px;
}

.wrapper-capsule_style .advantages_benefits_style .advantage_image img, .wrapper-capsule_style .advantages_benefits_style .advantage_image svg {
    width: 100px;
    height: 100px;
    fill: rgb(88,138,174);
}

.wrapper-capsule_style .advantages_benefits_style .advantage_item h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

@media only screen and (max-width: 1200px) {
    .wrapper-capsule_style .advantages_benefits_style .advantage_item {
        width: 45%;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule_style .advantages_benefits_style .advantages_content h2 {
        font-size: 36px;
    }

    .wrapper-capsule_style .advantages_benefits_style {
        padding: 50px 20px;
    }

    .wrapper-capsule_style .advantages_benefits_style .advantage_item {
        width: 100%;
        margin: 10px 0;
    }
}footer {
    background: rgb(61,101,143);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding: 0;
    position: relative;
    background: linear-gradient(135deg, rgb(88,138,174), rgb(61,101,143));
}
footer .container {
    position: relative;
    z-index: 1;
}
.footer {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}
footer .footer_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px;
    margin-bottom: 30px;
}
footer .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 20px;
    fill: #ffffff;
}
footer h5 {
    font-size: 21px;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 5px;
    padding: 8px 15px;
    transition: color 0.3s;
    display: inline-block;
}
footer .menu a:hover {
    color: rgb(61,101,143);
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}
footer .contact_info div svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #ffffff;
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 12px;
}
footer .footer_agreement {
    margin: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    border-top: 1px solid #ffffff;
    padding-top: 20px;
}
footer .copyright {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
}
footer .copyright_info {
    color: #ffffff;
    font-size: 16px;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .menu, footer .contact_info {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer h5 {
        font-size: 19px;
    }
    footer .menu a {
        font-size: 12px;
        padding: 5px 10px;
    }
    footer .contact_info div svg {
        width: 16px;
        height: 16px;
    }
}
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}
.footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}
footer .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
}
.course_info_style {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: rgb(61,101,143);
    position: relative;
    overflow: hidden;
}

.course_info_style::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgb(61,101,143,0.5);
    border-radius: 50%;
    z-index: 0;
}

.course_info_style::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgb(88,138,174,0.5);
    border-radius: 50%;
    z-index: 0;
}

.course_info_style h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.course_info_style .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.course_info_style .items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.course_info_style .course {
    background: rgb(183,203,224);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


.course_info_style .content {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px;
}

.course_info_style .photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-in-out;
}

.course_info_style .text_holder {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.course_info_style h3 {
    color: rgb(88,138,174);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course_info_style p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course_info_style .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(88,138,174);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.course_info_style .button:hover {
    background: rgb(61,101,143);
}

@media only screen and (max-width: 768px) {
    .course_info_style {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .course_info_style h2 {
        font-size: 28px;
    }

    .course_info_style .photo {
        height: 200px;
    }
}

@media only screen and (max-width: 600px) {
    .course_info_style .items {
        flex-direction: column;
        align-items: center;
    }

    .course_info_style h2 {
        font-size: 24px;
    }

    .course_info_style h3 {
        font-size: 20px;
    }

    .course_info_style .course {
        width: 100%;
    }

    .course_info_style .content {
        padding: 20px;
    }
}

.wrapper-capsule_style .course_info_style .items .course {
    background: rgb(183,203,224);
    border-radius: 12px;
    overflow: hidden;
}

.wrapper-capsule_style .course_info_style .items .course .content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
}

.wrapper-capsule_style .course_info_style .photo {
    width: 50%;
    height: auto;
    margin: 0;
    border: none;
    transition: none;
}

.wrapper-capsule_style .course_info_style .text_holder {
    width: 50%;
    background: #ffffff;
    border: none;
    padding: 40px;
}

.wrapper-capsule_style .course_info_style h3 {
    text-align: left;
    margin-bottom: 20px;
}

.wrapper-capsule_style .course_info_style .button {
    margin-top: 20px;
    align-self: flex-start;
}

.wrapper-capsule_style .course_info_style p, .wrapper-capsule_style .course_info_style h3 {
    text-align: left;
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule_style .course_info_style .items .course .content {
        flex-direction: column;
    }

    .wrapper-capsule_style .course_info_style .photo {
        width: 100%;
        height: 300px;
    }

    .wrapper-capsule_style .course_info_style .text_holder {
        width: 100%;
    }
}.title_screen_style {
    width: 100%;
    position: relative;
}
.title_screen_style .title_page_holder {
    width: 100%;
    min-height: 700px;
    height: auto;
    position: relative;
    background-position: center !important;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.title_screen_style .style_element {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 50px;
    max-width: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 23px;
    text-align: right;
    z-index: 1;
}
.title_screen_style .style_element h1 {
    font-size: 41px;
    font-weight: 700;
    color: rgb(88,138,174);
    margin-bottom: 16px;
}
.title_screen_style .style_element h3 {
    font-size: 18px;
    font-weight: 400;
    color: rgb(61,101,143);
    margin-bottom: 12px;
}
.title_screen_style .style_element p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
    .title_screen_style .title_page_holder {
        min-height: 500px;
    }
    .title_screen_style .style_element {
        max-width: 70%;
        padding: 40px;
    }
    .title_screen_style .style_element h1 {
        font-size: 38px;
    }
    .title_screen_style .style_element h3 {
        font-size: 20px;
    }
    .title_screen_style .style_element p {
        font-size: 17px;
    }
}
@media only screen and (max-width: 800px) {
    .title_screen_style .title_page_holder {
        min-height: 400px;
    }
    .title_screen_style .style_element {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        text-align: center;
        padding: 30px;
        box-shadow: none;
    }
    .title_screen_style .style_element h1,
    .title_screen_style .style_element h3,
    .title_screen_style .style_element p {
        text-align: center;
    }
    .title_screen_style .style_element h1 {
        font-size: 24px;
    }
    .title_screen_style .style_element h3 {
        font-size: 18px;
    }
    .title_screen_style .style_element p {
        font-size: 16px;
    }
}
.wrapper-capsule_style .title_screen_style {
    position: relative;
}
.wrapper-capsule_style .title_screen_style::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(88,138,174,0.5);
    opacity: 0.5;
    z-index: 0;
}
.wrapper-capsule_style .title_screen_style .title_page_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    min-height: unset;
}
.wrapper-capsule_style .title_screen_style .style_element {
    position: relative;
    background: linear-gradient(180deg, rgb(88,138,174,0.5) 0%, rgb(61,101,143,0.5) 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    max-width: 60%;
    text-align: left;
}
.wrapper-capsule_style .title_screen_style .style_element h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}
.wrapper-capsule_style .title_screen_style .style_element h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 15px;
}
.wrapper-capsule_style .title_screen_style .style_element p {
    color: #ffffff;
    font-size: 20px;
}
@media only screen and (max-width: 1200px) {
    .wrapper-capsule_style .title_screen_style .style_element {
        padding: 40px;
        max-width: 80%;
    }
    .wrapper-capsule_style .title_screen_style .style_element h1 {
        font-size: 36px;
    }
    .wrapper-capsule_style .title_screen_style .style_element h3 {
        font-size: 24px;
    }
    .wrapper-capsule_style .title_screen_style .style_element p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 800px) {
    .wrapper-capsule_style .title_screen_style .title_page_holder {
        height: auto;
        padding: 20px;
    }
    .wrapper-capsule_style .title_screen_style .style_element {
        width: 100%;
        padding: 30px;
        text-align: center;
    }
    .wrapper-capsule_style .title_screen_style .style_element h1,
    .wrapper-capsule_style .title_screen_style .style_element h3,
    .wrapper-capsule_style .title_screen_style .style_element p {
        text-align: center;
    }
    .wrapper-capsule_style .title_screen_style .style_element h1 {
        font-size: 28px;
    }
    .wrapper-capsule_style .title_screen_style .style_element h3 {
        font-size: 20px;
    }
    .wrapper-capsule_style .title_screen_style .style_element p {
        font-size: 16px;
    }
}.instructor_history_style {
    padding-top: 80px;
    padding-bottom: 80px;
}

.instructor_history_style .review .name {
    color: rgb(61,101,143);
}

.instructor_history_style .review span {
    color: rgb(88,138,174);
}

.instructor_history_style .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructor_history_style .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.instructor_history_style .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.instructor_history_style .review .name {
    font-size: 19px;
    margin-bottom: 8px;
}

.instructor_history_style .review span {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 14px;
}

.instructor_history_style .review .quote {
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .instructor_history_style .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .instructor_history_style .holder {
        flex-direction: column;
    }

    .instructor_history_style .review {
        max-width: unset;
        width: 100%;
    }

    .instructor_history_style {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wrapper-capsule_style .instructor_history_style .holder {
    width: 100%;
}

.wrapper-capsule_style .instructor_history_style .review {
    width: 100%;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    position: relative;
    margin: 10px;
    padding: 35px 130px;
    box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    justify-content: flex-start;
    align-items: center;
}

.wrapper-capsule_style .worker_description {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 20px;
}

.wrapper-capsule_style .instructor_history_style .review span {
    padding-left: 70px;
    font-size: 24px;
    margin-bottom: 0;
}

.wrapper-capsule_style .instructor_history_style .review .name {
    padding-left: 70px;
    font-size: 16px;
}

.wrapper-capsule_style .instructor_history_style .review .quote {
    margin-bottom: 20px;
    font-size: 22px;
}

.wrapper-capsule_style .instructor_history_style .review::before {
    content: "“";
    font-size: 160px;
    line-height: 60px;
    position: absolute;
    left: 30px;
    top: 50%;
}

.wrapper-capsule_style .instructor_history_style .review::after {
    content: "”";
    font-size: 160px;
    line-height: 60px;
    position: absolute;
    right: 30px;
    top: 50%;
}

.wrapper-capsule_style .instructor_history_style .photo {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 150px;
    margin: 0;
    bottom: 30px;
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule_style .instructor_history_style .review {
        padding: 35px 60px;
    }

    .wrapper-capsule_style .instructor_history_style .review::before {
        display: none;
    }

    .wrapper-capsule_style .instructor_history_style .review::after {
        display: none;
    }

    .wrapper-capsule_style .instructor_history_style .photo {
        left: 30px;
    }

    .wrapper-capsule_style .instructor_history_style .review {
        padding: 30px;
    }

    .wrapper-capsule_style .worker_description {
        padding: 0;
    }
}header .top_plank {
    background: rgb(88,138,174);
    color:  #ffffff;
}
header .top_plank .top_plank_content div svg, header .top_plank .top_plank_content div svg path {
    fill: #ffffff;
}
header .top_plank .top_plank_content div span {
    color: #ffffff;
}
header .top_plank .top_plank_content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 14px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .top_plank_content div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .top_plank_content div img, header .top_plank .top_plank_content div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.privacy_safehouse_style {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Playfair Display, sans-serif;
    color: #000000;
}

.privacy_safehouse_style h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 39px;
    font-weight: 700;
    color: rgb(88,138,174);
    border-bottom: 3px solid rgb(88,138,174);
    padding-bottom: 15px;
}

.privacy_safehouse_style h2 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 37px;
    font-weight: 600;
    color: rgb(61,101,143);
    border-bottom: 2px solid rgb(61,101,143);
    padding-bottom: 10px;
}

.privacy_safehouse_style ul, .privacy_safehouse_style ol {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
}

.privacy_safehouse_style ul li, .privacy_safehouse_style ol li {
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
}

.privacy_safehouse_style ul li::before, .privacy_safehouse_style ol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: rgb(88,138,174);
    border-radius: 50%;
}

.privacy_safehouse_style p, .privacy_safehouse_style span, .privacy_safehouse_style div {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 13px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .privacy_safehouse_style {
        padding: 25px;
    }

    .privacy_safehouse_style h1 {
        font-size: 37px;
        margin-bottom: 20px;
    }

    .privacy_safehouse_style h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .privacy_safehouse_style ul li, .privacy_safehouse_style ol li {
        font-size: 13px;
    }
}

.privacy_safehouse_style h3, .privacy_safehouse_style h4, .privacy_safehouse_style h5, .privacy_safehouse_style h6 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 5px;
}

.privacy_safehouse_style section {
    background: rgb(183,203,224);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.privacy_safehouse_style a {
    color: rgb(88,138,174);
    text-decoration: none;
    border-bottom: 2px solid rgb(88,138,174,0.5);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.privacy_safehouse_style a:hover {
    color: rgb(61,101,143);
    border-bottom-color: rgb(61,101,143,0.5);
}header .main_header {
    background: #ffffff;
    width: 100%;
}
header .container {
    max-width: unset;
    width: 100%;
    margin: 0;
    padding: 0;
}
.main_header .header_holder {
    display: flex;
    width: 100%;
    position: relative;
    height: 150px;
    flex-direction: column;
    padding-left: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.main_header .header_holder .logo_holder {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top:0;
    background: rgb(61,101,143);
}
.main_header .header_holder .logo_holder svg, header .header_holder .logo_holder img {
    width: 90px;
    height: 90px;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    padding: 18px 20px;
    background: rgb(88,138,174);
    color: #ffffff;
    width: 100%;
}
.main_header .header_menu {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.main_header .header_menu a {
    padding: 18px;
    text-align: center;
    text-transform: uppercase;
    color: rgb(61,101,143);
    position: relative;
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_header .header_menu a:hover {
    background: rgb(183,203,224);
}
@media only screen and (max-width: 800px) {
    .main_header .header_holder {
        padding: 0;
        height: auto;
        justify-content: center;
        align-items: center;
    }
    .main_header .header_holder .logo_holder {
        position: static;
    }
    .main_header .header_description {
        text-align: center;
    }
    .main_header .header_menu {
        flex-direction: column;
    }
}.customer_reviews_style {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(183,203,224);
}

.customer_reviews_style .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.customer_reviews_style .holder {
    text-align: center;
    margin-bottom: 50px;
}

.customer_reviews_style .holder h2 {
    font-size: 40px;
    font-weight: 700;
    color: rgb(61,101,143);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.customer_reviews_style .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.customer_reviews_style .review {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    padding: 30px;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.customer_reviews_style .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.customer_reviews_style .photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.customer_reviews_style .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer_reviews_style .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgb(88,138,174);
    border-radius: 50%;
    transition: border 0.3s ease;
    z-index: 2;
}

.customer_reviews_style .review:hover .photo::after {
    border-color: rgb(61,101,143);
}

.customer_reviews_style .text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customer_reviews_style .review span {
    font-size: 23px;
    font-weight: 600;
    color: #000000;
}

.customer_reviews_style .review p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .customer_reviews_style .reviews {
        flex-direction: column;
        align-items: center;
    }

    .customer_reviews_style .review {
        max-width: 100%;
    }

    .customer_reviews_style {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .customer_reviews_style .holder h2 {
        font-size: 35px;
    }
}

.wrapper-capsule_style .customer_reviews_style .review {
    background: rgb(88,138,174,0.5);
    border-radius: 10px;
}

.wrapper-capsule_style .customer_reviews_style .photo {
    width: 140px;
    height: 140px;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 0 15px rgb(88,138,174,0.5);
}

.wrapper-capsule_style .customer_reviews_style .photo::before {
    content: "";
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: -15px;
    left: -15px;
    border: 8px solid rgb(61,101,143,0.5);
    border-radius: 50%;
    z-index: 1;
}

.wrapper-capsule_style .customer_reviews_style .review span {
    font-size: 23px;
    font-weight: 700;
    color: rgb(61,101,143);
    margin-top: 20px;
}

.wrapper-capsule_style .customer_reviews_style .review p {
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    line-height: 1.8;
}

.wrapper-capsule_style .customer_reviews_style .holder h2 {
    font-size: 35px;
    font-weight: 400;
    color: #000000;
}
.price_plan_item_style {
    background: linear-gradient(
        135deg,
        #000000 0%,
        rgb(183,203,224) 100%
    );
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.price_plan_item_style::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgb(88,138,174,0.5) 0px,
        rgb(88,138,174,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    transform: rotate(-45deg);
    opacity: 0.03;
}

.price_plan_item_style .container {
    position: relative;
    z-index: 2;
}

.price_plan_item_style .pricing_holder {
    display: grid;
    gap: 120px;
}

.price_plan_item_style .price_info {
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.price_plan_item_style .price_info h2 {
    font-size: calc(38px * 1.4);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgb(88,138,174) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price_plan_item_style .price_info .section_description {
    font-size: 22px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.price_plan_item_style .price_types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.price_plan_item_style .price_type {
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.price_plan_item_style .price_type_holder {
    background: #ffffff;
    min-height: 600px;
    position: relative;
    display: grid;
    grid-template-rows: 280px 1fr;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.price_plan_item_style .price_type:hover .price_type_holder {
    transform: translateY(-15px) scale(1.02);
}

.price_plan_item_style .photo {
    position: relative;
    overflow: hidden;
}

.price_plan_item_style .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price_plan_item_style .price_type:hover .photo::before {
    opacity: 1;
}

.price_plan_item_style .price_type_text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.price_plan_item_style .price_type_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50px;
    height: 3px;
    background: rgb(88,138,174);
    transform-origin: left;
    transform: scaleX(0.6);
    transition: transform 0.4s ease;
}

.price_plan_item_style .price_type:hover .price_type_text::before {
    transform: scaleX(1);
}

.price_plan_item_style .price_type_text h3 {
    font-size: calc(22px * 1.1);
    color: #000000;
    font-weight: 700;
    line-height: 1.3;
}

.price_plan_item_style .price_type_text .price_amount {
    font-size: calc(37px * 1.2);
    color: rgb(88,138,174);
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price_plan_item_style .price_type_text .price_amount::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgb(61,101,143,0.5);
    transform-origin: left;
    transform: scaleX(0.3);
    transition: transform 0.4s ease;
}

.price_plan_item_style .price_type:hover .price_type_text .price_amount::after {
    transform: scaleX(1);
}

.price_plan_item_style .price_type_text p {
    font-size: 13px;
    color: #000000;
    line-height: 1.7;
    margin-top: auto;
}

.price_plan_item_style .price_type::after {
    content: '';
    position: absolute;
    inset: 20px -10px -10px 20px;
    background: rgb(88,138,174,0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price_plan_item_style .price_type:hover::after {
    opacity: 0.1;
}

.price_plan_item_style .price_type:nth-child(3n + 1) {
    transform: translateY(-30px);
}

.price_plan_item_style .price_type:nth-child(3n + 2) {
    transform: translateY(0);
}

.price_plan_item_style .price_type:nth-child(3n + 3) {
    transform: translateY(30px);
}

@media (max-width: 1200px) {
    .price_plan_item_style {
        padding: 130px 0;
    }
    
    .price_plan_item_style .price_type_holder {
        min-height: 550px;
        grid-template-rows: 260px 1fr;
    }
}

@media (max-width: 991px) {
    .price_plan_item_style {
        padding: 110px 0;
    }

    .price_plan_item_style .price_info h2 {
        font-size: calc(38px * 1.2);
    }

    .price_plan_item_style .price_type:nth-child(3n + 1),
    .price_plan_item_style .price_type:nth-child(3n + 2),
    .price_plan_item_style .price_type:nth-child(3n + 3) {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .price_plan_item_style {
        padding: 90px 0;
    }

    .price_plan_item_style .pricing_holder {
        gap: 80px;
    }

    .price_plan_item_style .price_type_holder {
        min-height: 500px;
        grid-template-rows: 240px 1fr;
    }

    .price_plan_item_style .price_type_text {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .price_plan_item_style {
        padding: 70px 0;
    }

    .price_plan_item_style .price_type_holder {
        min-height: 480px;
        grid-template-rows: 220px 1fr;
    }

    .price_plan_item_style .price_type_text {
        padding: 30px;
    }

    .price_plan_item_style .price_info h2 {
        font-size: 38px;
    }
}.wrapper-capsule_style .company_overview_style .holder {
    height: auto;
}

.company_overview_style {
    padding: 80px 0;
    background: rgb(88,138,174,0.5);
    position: relative;
    overflow: hidden;
}

.wrapper-capsule_style .company_overview_style .holder .photo {
    display: block;
    width: 450px;
    height: 450px;
    border-radius: 23px;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.wrapper-capsule_style .company_overview_style .holder .photo:hover {
    transform: translateY(-50%) scale(1.05);
}

.wrapper-capsule_style .company_overview_style .caption_holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 0 50px;
    background: linear-gradient(45deg, rgb(61,101,143), rgb(61,101,143,0.5));
    border-radius: 23px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    padding-right: 0;
}

.wrapper-capsule_style .company_overview_style .style_element {
    background: rgb(88,138,174);
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrapper-capsule_style .company_overview_style h2 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.wrapper-capsule_style .company_overview_style p {
    color: #ffffff;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

@media only screen and (max-width: 1200px) {
    .wrapper-capsule_style .company_overview_style .holder .photo {
        width: 350px;
        height: 350px;
        left: 30px;
        position: static;
        transform: translateY(0);
        margin-top: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule_style .company_overview_style .style_element {
        width: 100%;
        padding: 30px;
        box-shadow: none;
        border-radius: 0;
    }
    .wrapper-capsule_style .company_overview_style .holder .photo {
        width: 280px;
        height: 280px;
    }
    .wrapper-capsule_style .company_overview_style .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
        padding: 20px;
        box-shadow: none;
    }
    .wrapper-capsule_style .company_overview_style h2 {
        font-size: 23px;
    }
}.reach_out_style {
    padding-top: 80px;
    padding-bottom: 80px;
}
.reach_out_style h3 {
    color: rgb(61,101,143);
}
.reach_out_style .form {
    background:rgb(183,203,224);
    border-radius: 10px;
}
.reach_out_style .info svg, .reach_out_style .info svg path {
    fill: rgb(88,138,174);
}
.reach_out_style .info .contact_info h5 {
    color: rgb(88,138,174);
}
.reach_out_style .info span {
    color:  #000000;
}
.reach_out_style .info .contact_info svg, .reach_out_style .info .contact_info svg path {
    fill:  #000000;
}
.reach_out_style form input {
    color: #000000;
    border-radius:6px;
    background:  #ffffff;
}
.reach_out_style form  .button {
    background: rgb(61,101,143);
    color:  #ffffff;
    border-radius: 100px;
}
.reach_out_style form  .button:hover {
    background: rgb(88,138,174);
}


.reach_out_style .holder {
    display: flex;
}
.reach_out_style .holder>div {
    width: 50%;
    padding: 40px;
}
.reach_out_style .form {

}
.reach_out_style .form form {
    display: flex;
    flex-direction: column;
}
.reach_out_style h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}
.reach_out_style .info {
    padding-top: 40px;
}
.reach_out_style form input {
    border: none;
    padding: 13px;
    width: 100%;
    margin-bottom: 24px;
    line-height: 24px;
    outline: none;
    border: 1px solid transparent;
}
.reach_out_style form  .button {
    font-weight: 400;
    cursor: pointer;
}
.reach_out_style .info .contact_info h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
}
.reach_out_style .info svg, .reach_out_style .info img {
    margin-right: 16px;
    width: 16px;
    height: 16px;
}
.reach_out_style .info span {
    font-size: 16px;
}
.reach_out_style .logo_holder {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
    margin-right: 30px;
}
.reach_out_style .logo_holder svg, .reach_out_style .logo_holder img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    margin-right: 0;
}
.reach_out_style .info .contact_info span {
    font-weight: 300;
}
.reach_out_style .info .contact_info>div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.reach_out_style .name_holder {
    display: flex;
    justify-content: space-between;
}
.reach_out_style .name_holder #surname {
    margin-left: 24px;
}
.reach_out_style  .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.reach_out_style  .agree label {
    display: block;
}
.reach_out_style  .agree a {
    margin-left: 5px;
    color: rgb(88,138,174);
}

.reach_out_style  .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px)  {
    .reach_out_style .holder {
        flex-direction: column;
    }
    .reach_out_style .holder>div {
        width: 100%;
    }
    .reach_out_style {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .reach_out_style h3 {
        font-size: 30px;
    }
}

.training_benefits_style {
    position: relative;
    padding: 120px 0;
    background: rgb(183,203,224);
    overflow: hidden;
}

.training_benefits_style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(88,138,174,0.5) 0%, rgb(61,101,143,0.5) 100%);
    z-index: 1;
}

.training_benefits_style .container {
    position: relative;
    z-index: 2;
}

.training_benefits_style .holder {
    margin: -60px -30px;
    padding: 60px 30px;
    perspective: 1000px;
}

.training_benefits_style .content_holder {
    position: relative;
    padding: 60px;
    border-radius: 25px;
    background-blend-mode: overlay;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.training_benefits_style .content_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        #000000 100%
    );
    border-radius: 25px;
    opacity: 0.85;
}

.training_benefits_style .content_holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.training_benefits_style h3 {
    position: relative;
    color: #ffffff;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.training_benefits_style p {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 24px;
    opacity: 0.9;
}

.training_benefits_style p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: rgb(61,101,143);
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .training_benefits_style {
        padding: 90px 0;
    }
    
    .training_benefits_style .content_holder {
        padding: 45px;
    }
    
    .training_benefits_style h3 {
        font-size: calc(33px * 0.9);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .training_benefits_style {
        padding: 60px 0;
    }
    
    .training_benefits_style .holder {
        margin: -30px -15px;
        padding: 30px 15px;
    }
    
    .training_benefits_style .content_holder {
        padding: 30px;
    }
    
    .training_benefits_style h3 {
        font-size: calc(33px * 0.8);
        margin-bottom: 25px;
    }
    
    .training_benefits_style p {
        font-size: calc(18px * 0.95);
        margin-bottom: 15px;
        padding-left: 20px;
    }
    
    .training_benefits_style p::before {
        top: 10px;
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 576px) {
    .training_benefits_style {
        padding: 40px 0;
    }
    
    .training_benefits_style .content_holder {
        padding: 25px;
    }
    
    .training_benefits_style h3 {
        font-size: calc(33px * 0.7);
        margin-bottom: 20px;
    }
    
    .training_benefits_style p {
        font-size: calc(18px * 0.9);
        margin-bottom: 12px;
        padding-left: 16px;
    }
}