* {
    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: Nunito, sans-serif;
    color: #000000;
}
.wrapper-holder4921 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(245,245,245);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.wrapper-holder4921 .course_features7326 {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.wrapper-holder4921 .course_features7326::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(149,232,215,0.5) 0%, rgb(125,172,228,0.5) 100%);
    background-size: 400% 400%;
    z-index: 0;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.wrapper-holder4921 .course_features7326 .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wrapper-holder4921 .course_features7326 .items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.wrapper-holder4921 .course_features7326 .items .course {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.wrapper-holder4921 .course_features7326 .items .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.wrapper-holder4921 .course_features7326 .items .course .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper-holder4921 .course_features7326 .items .course .photo {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.wrapper-holder4921 .course_features7326 .items .course .photo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.wrapper-holder4921 .course_features7326 .text_holder {
    padding: 30px;
    text-align: center;
    background: #ffffff;
    width: 100%;
}

.wrapper-holder4921 .course_features7326 h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.wrapper-holder4921 .course_features7326 p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.wrapper-holder4921 .course_features7326 .button {
    display: inline-block;
    background: rgb(149,232,215);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s, transform 0.3s;
}

.wrapper-holder4921 .course_features7326 .button:hover {
    background: rgb(125,172,228);
    transform: translateY(-3px);
}

@media only screen and (max-width: 800px) {
    .wrapper-holder4921 .course_features7326 .items {
        flex-direction: column;
    }
    .wrapper-holder4921 .course_features7326 .photo {
        height: 200px;
    }
    .wrapper-holder4921 .course_features7326 h3 {
        font-size: 22px;
    }
    .wrapper-holder4921 .course_features7326 p {
        font-size: 16px;
    }
}header .main_header {
    background: rgb(125,172,228);
    color: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid rgb(149,232,215);
}

header .logo_holder svg,
header .logo_holder svg path,
header .logo_holder img {
    fill: rgb(149,232,215);
    width: 70px;
    height: 70px;
}

header .menu a {
    color: #ffffff;
    font-size: 12px;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}

header .menu a:hover {
    color: rgb(149,232,215);
    border-bottom: 2px solid rgb(149,232,215);
}

header .menu a.active {
    color: rgb(125,172,228);
    border-bottom: 2px solid rgb(125,172,228);
}

header {
    width: 100%;
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

header .logo_holder {
    display: flex;
    align-items: center;
}

header .logo_caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .logo_desc {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(149,232,215);
}

header .menu {
    display: flex;
    gap: 15px;
}

.wrapper-holder4921 header .main_header {
    background: rgb(125,172,228);
    padding: 10px 30px;
}

.wrapper-holder4921 header .header_content {
    border-radius: 14px;
    padding: 10px 20px;
    background: rgb(125,172,228);
    border: 1px solid rgb(149,232,215);
}

.wrapper-holder4921 header .logo_holder .logotype svg,
.wrapper-holder4921 header .logo_holder .logotype img {
    width: 60px;
    height: 60px;
}

.wrapper-holder4921 header .menu a {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    header .menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 20px;
        width: 100%;
    }

    header .menu.opened {
        display: flex;
    }

    header .menu a {
        padding: 10px 20px;
        border-bottom: 1px solid rgb(149,232,215,0.5);
        width: 100%;
    }

    header .menu a.active {
        border: none;
        background: rgb(149,232,215,0.5);
    }

    header .main_header {
        position: relative;
        z-index: 99;
    }

    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    header .logo_holder .logotype svg,
    header .logo_holder .logotype img {
        margin: 0;
        width: 50px;
        height: 50px;
    }

    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-holder4921 header .logo_holder .logotype svg,
    .wrapper-holder4921 header .logo_holder .logotype img {
        width: 40px;
        height: 40px;
    }

    .wrapper-holder4921 header .logo_holder {
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 95;
    }

    .wrapper-holder4921 header .menu {
        padding-top: 20px;
        top: 0;
        border-radius: 14px;
        align-items: center;
    }
    .wrapper-holder4921 header .main_header {
        padding: 20px;
    }
}.instructor_profile4127 {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(149,232,215,0.5), rgb(125,172,228,0.5));
    border-top: 10px solid rgb(125,172,228);
    border-bottom: 10px solid rgb(149,232,215);
}

.instructor_profile4127 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.instructor_profile4127 .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
}

.instructor_profile4127 .review {
    position: relative;
    width: calc(33.333% - 40px);
    background-color: #ffffff;
    border-radius: 11px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.instructor_profile4127 .photo {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    border-bottom: 5px solid rgb(125,172,228);
    background-position: center;
}

.instructor_profile4127 .worker_description {
    padding: 20px;
    background: rgb(149,232,215,0.5);
    border-radius: 0 0 11px 11px;
}

.instructor_profile4127 .review .name {
    font-size: 18px;
    color: rgb(125,172,228);
    font-weight: 600;
    margin-bottom: 5px;
    border-bottom: 2px solid rgb(149,232,215);
    display: inline-block;
    padding-bottom: 5px;
}

.instructor_profile4127 .review span {
    font-size: 15px;
    color: rgb(149,232,215);
    font-weight: 400;
    background: rgb(125,172,228,0.5);
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.instructor_profile4127 .review .quote {
    font-size: 15px;
    color: #000000;
    font-style: italic;
    line-height: 1.8;
    border-left: 4px solid rgb(125,172,228);
    padding-left: 10px;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    .instructor_profile4127 .review {
        width: calc(50% - 40px);
    }
}

@media only screen and (max-width: 800px) {
    .instructor_profile4127 {
        padding: 40px 10px;
    }

    .instructor_profile4127 .review {
        width: 100%;
    }

    .instructor_profile4127 .holder {
        flex-direction: column;
    }
}

.wrapper-holder4921 .instructor_profile4127 .holder {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wrapper-holder4921 .instructor_profile4127 .review {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    border-radius: 11px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.wrapper-holder4921 .instructor_profile4127 .photo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgb(125,172,228);
    margin-right: 20px;
    background-position: center;
}

.wrapper-holder4921 .worker_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper-holder4921 .instructor_profile4127 .review .name {
    font-size: 18px;
    color: rgb(125,172,228);
    font-weight: 600;
    margin-bottom: 5px;
    border-bottom: 2px solid rgb(149,232,215);
    display: inline-block;
    padding-bottom: 5px;
}

.wrapper-holder4921 .instructor_profile4127 .review span {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    background: rgb(125,172,228,0.5);
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.wrapper-holder4921 .instructor_profile4127 .review .quote {
    font-size: 15px;
    color: #000000;
    font-style: italic;
    line-height: 1.8;
    border-left: 4px solid rgb(125,172,228);
    padding-left: 10px;
    position: relative;
}

@media only screen and (max-width: 800px) {
    .wrapper-holder4921 .instructor_profile4127 .review {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .wrapper-holder4921 .instructor_profile4127 .photo {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .wrapper-holder4921 .worker_description {
        padding: 0;
    }
    .instructor_profile4127 .worker_description {
        background: none;
    }
}
.gratNote2759 {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.gratNote2759 .container {
    max-width: 1000px;
    padding: 40px;
    border: 1px solid rgb(149,232,215);
    border-radius: 29px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    background: rgb(245,245,245);
}
.gratNote2759 h2 {
    font-family: Nunito, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: rgb(149,232,215);
    margin-bottom: 20px;
    position: relative;
}
.gratNote2759 h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: rgb(149,232,215);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.gratNote2759 p {
    font-family: Nunito, sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.gratNote2759 .btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: Nunito, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    background-color: rgb(149,232,215);
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.gratNote2759 .btn:hover {
    background-color: rgb(125,172,228);
}
@media only screen and (max-width: 800px) {
    .gratNote2759 {
        padding: 40px 0;
    }
    .gratNote2759 h2 {
        font-size: 23px;
    }
    .gratNote2759 p {
        font-size: 13px;
    }
    .gratNote2759 .btn {
        font-size: 20px;
        padding: 10px 20px;
    }
}
.gratNote2759 .container {
    position: relative;
    padding: 40px;
}
.gratNote2759 .container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 29px;
    z-index: -1;
}
.gratNote2759 h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background-color: rgb(125,172,228);
    margin: 20px auto 0;
}
.title_portal7238 .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.title_portal7238 .style_element h1 {
    color: rgb(125,172,228);
}

.title_portal7238 .style_element h3 {
    color: rgb(125,172,228);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.title_portal7238 .style_element p {
    color: #000000;
    text-align: right;
}

.title_portal7238 {
    width: 100%;
}

.title_portal7238 .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.title_portal7238 .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;
}

.title_portal7238 .style_element h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.title_portal7238 .style_element p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .title_portal7238 .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .title_portal7238 .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;
    }

    .title_portal7238 .style_element h1 {
        font-size: 18px;
    }

    .title_portal7238 .style_element h3 {
        font-size: 16px;
    }

    .title_portal7238 .style_element p {
        font-size: 14px;
    }


}

.wrapper-holder4921 .title_portal7238 {
    padding: 70px 0px;
    position: relative;
}

.wrapper-holder4921 .title_portal7238 .title_page_holder {
    height: auto;
    min-height: 500px;
    position: static;
}

.wrapper-holder4921 .title_portal7238 .style_element {
    clip-path: none;
    height: 605px;
    top: 0;
    padding: 50px;
    justify-content: center;
    align-items: center;
    background: rgb(149,232,215);
    width: 500px;
    min-width: unset;
    right: 20%;
}

.wrapper-holder4921 .title_portal7238 .style_element h1 {
    text-align: center;
    color: #ffffff;
    font-size: 36px;
}

.wrapper-holder4921 .title_portal7238 .style_element h3 {
    color: #ffffff;
    text-align: center;
    z-index: 2;
}

.wrapper-holder4921 .title_portal7238 .style_element p {
    text-align: center;
    color: #ffffff;
    margin-top: 30px;
    font-size: 20px;
    line-height: 22px;
    font-style: italic;
}

@media only screen and (max-width: 800px) {
    .wrapper-holder4921 .title_portal7238 {
        padding: 50px 0;
    }

    .wrapper-holder4921 .title_portal7238 .style_element {
        width: 90%;
        right: 5%;
        margin: auto;
        margin-top: 0;
        min-height: 480px;
        height: auto;
    }

    .wrapper-holder4921 .title_portal7238 .title_page_holder {
        min-height: 400px;
        height: auto;
    }

    .wrapper-holder4921 .title_portal7238 .style_element h1 {

        font-size: 30px;
    }

    .wrapper-holder4921 .title_portal7238 .style_element p {
        font-size: 16px;
    }
}footer {
    background: #000000;
    color: #ffffff;
    font-family: Nunito, sans-serif;
    padding: 50px 0;
    border-top: 3px solid rgb(149,232,215);
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(125,172,228,0.5);
    padding-bottom: 40px;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 100px;
    width: 100px;
    fill: rgb(149,232,215);
    margin-bottom: 20px;
}
footer h5 {
    color: rgb(149,232,215);
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
footer .menu a {
    color: rgb(125,172,228,0.5);
    text-decoration: none;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}
footer .menu a:hover {
    color: rgb(149,232,215);
}
footer .contact_info {
    display: flex;
    flex-direction: column;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
footer .contact_info div svg {
    width: 20px;
    height: 20px;
    fill: rgb(149,232,215);
    margin-right: 10px;
}
footer .contact_info div span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
}
footer .footer_agreement {
    text-align: center;
    font-size: 12px;
    color: rgb(125,172,228,0.5);
}
footer .copyright {
    background: rgb(149,232,215);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
}
footer .copyright_info {
    color: #ffffff;
}
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 .logo_holder {
        margin-bottom: 30px;
    }
    footer .menu, footer .contact_info {
        margin-top: 20px;
    }
    footer .footer_agreement {
        text-align: center;
        margin-top: 20px;
    }
}
.wrapper-holder4921 footer {
    background: rgb(245,245,245);
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.wrapper-holder4921 footer .logo_holder {
    display: none;
}
.wrapper-holder4921 footer .footer {
    padding: 32px 0;
}
.wrapper-holder4921 footer .menu a {
    color: rgba(0, 0, 0, 0.5);
    margin-right: 0;
}
.wrapper-holder4921 footer .footer_info {
    flex-direction: row;
    justify-content: space-around;
}
.wrapper-holder4921 footer .menu_holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.wrapper-holder4921 footer .menu a:after {
    content: "/";
    margin-left: 5px;
    margin-right: 5px;
    color: rgba(0, 0, 0, 0.5);
}
.wrapper-holder4921 footer .menu a:hover {
    color: rgb(149,232,215);
}
.wrapper-holder4921 footer .copyright {
    padding: 16px 0;
    background: none;
    text-align: center;
}
.wrapper-holder4921 footer .copyright_info {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
@media only screen and (max-width: 800px) {
    .wrapper-holder4921 footer .menu_holder {
        flex-direction: column;
        align-items: center;
    }
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .contact_info {
        margin-top: 10px;
        align-items: center;
    }
}
.privacy_space3695 {
    background-color: rgb(245,245,245);
    color: #000000;
    font-family: Nunito, sans-serif;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.privacy_space3695 h1 {
    font-size: 46px;
    font-weight: 700;
    color: rgb(149,232,215);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgb(149,232,215);
    padding-bottom: 0.5rem;
}
.privacy_space3695 h2 {
    font-size: 29px;
    font-weight: 600;
    color: rgb(125,172,228);
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.privacy_space3695 ul,
.privacy_space3695 ol {
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    list-style: none;
}
.privacy_space3695 li {
    font-size: 16px;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.2rem;
}
.privacy_space3695 li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(149,232,215);
    font-size: 1.2rem;
    line-height: 1.2;
}
.privacy_space3695 p {
    font-size: 16px;
    margin-bottom: 1rem;
    line-height: 1.8;
}
.privacy_space3695 span {
    font-weight: 400;
    color: #000000;
}
.privacy_space3695 div {
    margin-bottom: 1.5rem;
}
@media only screen and (max-width: 800px) {
    .privacy_space3695 {
        padding: 1rem;
        border-radius: 10px;
    }
    .privacy_space3695 h1 {
        font-size: calc(46px - 0.5rem);
    }
    .privacy_space3695 h2 {
        font-size: calc(29px - 0.5rem);
    }
    .privacy_space3695 p,
    .privacy_space3695 li {
        font-size: calc(16px - 0.2rem);
    }
}
.benefits0213 .advantages_content h2 {
    color: rgb(125,172,228);
}

.benefits0213 .advantage_item svg, .benefits0213 .advantage_item svg path {
    fill: rgb(149,232,215);
}

.benefits0213 .advantage_item p {
    color: #000000;
}

.benefits0213 .advantage_item b {
    color: rgb(149,232,215);
}

.benefits0213 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits0213 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits0213 .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits0213 .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    font-weight: 600;
}

.benefits0213 .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits0213 .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits0213 .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits0213 .advantage_item svg, .benefits0213 .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-holder4921 .benefits0213 .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits0213 .advantages_content h2 {
        font-size: 30px;
    }

    .benefits0213 .advantages_holder {
        flex-direction: column;
    }

    .benefits0213 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-holder4921 .benefits0213 .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-holder4921 .benefits0213 {
    padding: 100px 0;
    background: rgb(245,245,245);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    overflow: hidden;
}

.wrapper-holder4921 .benefits0213 .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wrapper-holder4921 .benefits0213 .advantages_content h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(125,172,228);
    margin-bottom: 40px;
    background: linear-gradient(to right, rgb(149,232,215), rgb(125,172,228));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.wrapper-holder4921 .benefits0213 .advantages_content h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, rgb(149,232,215), rgb(125,172,228));
    bottom: -10px;
    left: 0;
}

.wrapper-holder4921 .benefits0213 .advantages_description {
    font-size: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
    color: rgb(125,172,228);
    border-left: 4px solid rgb(125,172,228);
    border-right: 4px solid rgb(125,172,228);
    position: relative;
    z-index: 1;
}

.wrapper-holder4921 .benefits0213 .advantages_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.wrapper-holder4921 .benefits0213 .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 30px);
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wrapper-holder4921 .benefits0213 .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.wrapper-holder4921 .benefits0213 .advantage_image {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(149,232,215), rgb(125,172,228));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.wrapper-holder4921 .benefits0213 .advantage_image img, .wrapper-holder4921 .benefits0213 .advantage_image svg {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.wrapper-holder4921 .benefits0213 .advantage_item h4 {
    font-weight: 700;
    font-size: 23px;
    margin-top: 20px;
    color: rgb(125,172,228);
}

@media only screen and (max-width: 1200px) {
    .wrapper-holder4921 .benefits0213 .advantages_holder .advantage_item {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-holder4921 .benefits0213 {
        padding: 50px 0;
    }

    .wrapper-holder4921 .benefits0213 .advantages_content h2 {
        font-size: 23px;
    }

    .wrapper-holder4921 .benefits0213 .advantages_holder {
        flex-direction: column;
    }

    .wrapper-holder4921 .benefits0213 .advantages_holder .advantage_item {
        width: 100%;
    }
}.our_background0329 {
    padding: 80px 0;
    background: #ffffff;
    color: #000000;
    font-family: Nunito, sans-serif;
}

.wrapper-holder4921 .our_background0329 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgb(149,232,215,0.5);
    border-radius: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapper-holder4921 .our_background0329 .holder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.wrapper-holder4921 .our_background0329 .caption_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    padding: 40px;
    background: rgb(125,172,228,0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.wrapper-holder4921 .our_background0329 .photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
    transition: box-shadow 0.3s ease;
}


.wrapper-holder4921 .our_background0329 .style_element {
    flex: 1;
    padding: 20px;
    transition: color 0.3s ease;
}

.wrapper-holder4921 .our_background0329 h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(149,232,215);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(125,172,228);
    padding-bottom: 10px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}


.wrapper-holder4921 .our_background0329 p {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

@media (max-width: 992px) {
    .wrapper-holder4921 .our_background0329 .caption_holder {
        flex-direction: column;
    }

    .wrapper-holder4921 .our_background0329 .photo {
        height: 200px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .wrapper-holder4921 .our_background0329 .style_element {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .wrapper-holder4921 .our_background0329 .holder {
        padding: 10px;
    }

    .wrapper-holder4921 .our_background0329 h2 {
        font-size: calc(30px - 4px);
    }

    .wrapper-holder4921 .our_background0329 p {
        font-size: calc(17px - 2px);
    }
}.contact_form_section9712 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact_form_section9712 h3 {
    color: rgb(125,172,228);
}

.contact_form_section9712 .form {
    background: rgb(245,245,245);
    border-radius: 10px;
}

.contact_form_section9712 .info svg, .contact_form_section9712 .info svg path {
    fill: rgb(149,232,215);
}

.contact_form_section9712 .info .contact_info h5 {
    color: rgb(149,232,215);
}

.contact_form_section9712 .info span {
    color: #000000;
}

.contact_form_section9712 .info .contact_info svg, .contact_form_section9712 .info .contact_info svg path {
    fill: #000000;
}

.contact_form_section9712 form input {
    color: #000000;
    border-radius: 6px;
    background: #ffffff;
}

.contact_form_section9712 form .button {
    background: rgb(125,172,228);
    color: #ffffff;
    border-radius: 100px;
}

.contact_form_section9712 form .button:hover {
    background: rgb(149,232,215);
}


.contact_form_section9712 .holder {
    display: flex;
}

.contact_form_section9712 .holder > div {
    width: 50%;
    padding: 40px;
}

.contact_form_section9712 .form {

}

.contact_form_section9712 .form form {
    display: flex;
    flex-direction: column;
}

.contact_form_section9712 h3 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact_form_section9712 .info {
    padding-top: 40px;
}

.contact_form_section9712 form input {
    border: none;
    padding: 13px;
    width: 100%;
    margin-bottom: 24px;
    line-height: 24px;
    outline: none;
    border: 1px solid transparent;
}

.contact_form_section9712 form .button {
    font-weight: 400;
    cursor: pointer;
}

.contact_form_section9712 .info .contact_info h5 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact_form_section9712 .info svg, .contact_form_section9712 .info img {
    margin-right: 16px;
    width: 16px;
    height: 16px;
}

.contact_form_section9712 .info span {
    font-size: 13px;
}

.contact_form_section9712 .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;
}

.contact_form_section9712 .logo_holder svg, .contact_form_section9712 .logo_holder img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    margin-right: 0;
}

.contact_form_section9712 .info .contact_info span {
    font-weight: 300;
}

.contact_form_section9712 .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact_form_section9712 .name_holder {
    display: flex;
    justify-content: space-between;
}

.contact_form_section9712 .name_holder #surname {
    margin-left: 24px;
}

.contact_form_section9712 .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_form_section9712 .agree label {
    display: block;
}

.contact_form_section9712 .agree a {
    margin-left: 5px;
    color: rgb(149,232,215);
}

.contact_form_section9712 .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px) {
    .contact_form_section9712 .holder {
        flex-direction: column;
    }

    .contact_form_section9712 .holder > div {
        width: 100%;
    }

    .contact_form_section9712 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact_form_section9712 h3 {
        font-size: 30px;
    }
}

.wrapper-holder4921 .contact_form_section9712 .holder {
    flex-direction: row-reverse;
}

.wrapper-holder4921 .contact_form_section9712 {
    background: rgb(149,232,215);
    background: rgb(125,172,228);
    padding: 0;
}

.wrapper-holder4921 .contact_form_section9712 .form {
    background: none;
    width: 60%;
    padding-top: 80px;
    padding-bottom: 80px;
    margin: auto;
}

.wrapper-holder4921 .contact_form_section9712 .form_text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #ffffff;
}

.wrapper-holder4921 .contact_form_section9712 form input {
    background: rgba(255, 255, 255, 0.5);
    padding: 0 18px;
    height: 50px;
    border-radius: 0;
}

.wrapper-holder4921 .contact_form_section9712 form label {
    display: flex;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

.wrapper-holder4921 .contact_form_section9712 .info .contact_info svg, .wrapper-holder4921 .contact_form_section9712 .info .contact_info svg path {
    fill: #ffffff;
}

.wrapper-holder4921 .contact_form_section9712 .info .contact_info span {
    color: #ffffff;
}

.wrapper-holder4921 .contact_form_section9712 .info {
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 !important;
    padding: 0;
    width: 40%;
}

.wrapper-holder4921 .contact_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.wrapper-holder4921 .contact_form_section9712 .agree input[type=checkbox] {
    height: auto;
}

.wrapper-holder4921 .contact_form_section9712 .agree label {
    margin-bottom: 0;
    text-transform: none;
}

.wrapper-holder4921 .contact_form_section9712 form .name_holder {
    position: relative;
}

.wrapper-holder4921 .contact_form_section9712 form .name_holder input {
    width: 50%;
    margin-top: 30px;
}

.wrapper-holder4921 .contact_form_section9712 form .name_holder label {
    position: absolute;
}

.wrapper-holder4921 .contact_form_section9712 form .name_holder label:nth-child(3) {
    left: calc(50% + 14px);
}

.wrapper-holder4921 .contact_form_section9712 .agree a {
    color: rgb(149,232,215);
}

body .wrapper-holder4921 .contact_form_section9712 form .button {
    border-radius: 0;
    background: #ffffff;
    color: rgb(125,172,228);
    border: none;
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 40px;
    height: auto;
}

body .wrapper-holder4921 .contact_form_section9712 form .button:hover {
    background: rgb(149,232,215);
    color: rgb(125,172,228);
}

.contact_form_section9712 .info .contact_info > div {
    height: 50%;
    width: 100%;
    padding: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.contact_form_section9712 .info .contact_info > div:nth-child(3), .contact_form_section9712 .info .contact_info > div:nth-child(2) {
    border-bottom: none;
    margin-bottom: 0;
}

.wrapper-holder4921 .contact_form_section9712 .info .contact_info svg, .wrapper-holder4921 .contact_form_section9712 .info .contact_info svg path {
    background: #ffffff;
    fill: rgb(125,172,228);
    padding: 6px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
}

@media only screen and (max-width: 800px) {
    .wrapper-holder4921 .contact_form_section9712 .holder {
        flex-direction: column-reverse;
    }

    .wrapper-holder4921 .contact_form_section9712 .holder > div {
        width: 100%;
        border: none;
    }

    .wrapper-holder4921 .contact_form_section9712 .form {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
}.course_candidates3961 {
    padding-bottom: 80px;
    padding-top: 80px;
}

.course_candidates3961 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course_candidates3961 ul {
    list-style: none;
}

.course_candidates3961 ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.course_candidates3961 ul svg, .course_candidates3961 ul svg path {
    fill: rgb(149,232,215);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.course_candidates3961 h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .course_candidates3961 {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.wrapper-holder4921 .course_candidates3961 .holder {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-top: 25px solid rgb(149,232,215);
    padding: 40px;
    justify-content: flex-start;
    align-items: flex-start;
}

.wrapper-holder4921 .course_candidates3961 h2 {
    text-align: left;
    font-size: 54px;
    margin-bottom: 16px;
    font-weight: 400;
}

.wrapper-holder4921 .course_candidates3961 ul {
    text-align: left;
}

.wrapper-holder4921 .course_candidates3961 ul li {
    padding: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
}

.wrapper-holder4921 .course_candidates3961 ul svg, .wrapper-holder4921 .course_candidates3961 ul svg path {
    position: static;
    margin-right: 20px;
    width: 36px;
    height: 36px;
}

@media only screen and (max-width: 800px) {
    .wrapper-holder4921 .course_candidates3961 .holder {
        padding: 20px;
    }

    .wrapper-holder4921 .course_candidates3961 h2 {
        font-size: 30px;
    }
}