* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Merriweather, sans-serif;
    color: #000000;
}
.wrapper-skeleton {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(77,183,138);
}
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;
    }
}.wrapper-skeleton .our_mission {
    padding: 80px 0;
    background: rgb(77,183,138);
    color: #000000;
    font-family: Merriweather, sans-serif;
}

.wrapper-skeleton .our_mission .holder {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wrapper-skeleton .our_mission .photo {
    width: 100%;
    height: 360px;
    background-size: cover;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 20px;
}

.wrapper-skeleton .our_mission .caption_holder {
    background: #ffffff;
    width: 100%;
    padding: 40px 60px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.wrapper-skeleton .our_mission .caption_holder:hover {
    background: rgb(55,132,100,0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.wrapper-skeleton .our_mission .style_element h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: rgb(55,132,100);
    transition: color 0.5s ease;
}

.wrapper-skeleton .our_mission .style_element p {
    font-size: 13px;
    line-height: 1.8;
    color: #000000;
    transition: color 0.5s ease;
}

.wrapper-skeleton .our_mission .caption_holder:hover h2 {
    color: rgb(34,81,61);
}

.wrapper-skeleton .our_mission .caption_holder:hover p {
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton .our_mission {
        padding: 40px 0;
    }

    .wrapper-skeleton .our_mission .photo {
        height: 200px;
    }

    .wrapper-skeleton .our_mission .caption_holder {
        width: 100%;
        padding: 20px 30px;
    }

    .wrapper-skeleton .our_mission .style_element h2 {
        font-size: 23px;
    }

    .wrapper-skeleton .our_mission .style_element p {
        font-size: 17px;
    }
}
.contact_form_box {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact_form_box h3 {
    color: rgb(34,81,61);
}

.contact_form_box .form {
    background: rgb(77,183,138);
    border-radius: 10px;
}

.contact_form_box .info svg, .contact_form_box .info svg path {
    fill: rgb(55,132,100);
}

.contact_form_box .info .contact_info h5 {
    color: rgb(55,132,100);
}

.contact_form_box .info span {
    color: #000000;
}

.contact_form_box .info .contact_info svg, .contact_form_box .info .contact_info svg path {
    fill: #000000;
}

.contact_form_box form input {
    color: #000000;
    border-radius: 6px;
    background: #ffffff;
}

.contact_form_box form .button {
    background: rgb(34,81,61);
    color: #ffffff;
    border-radius: 100px;
}

.contact_form_box form .button:hover {
    background: rgb(55,132,100);
}


.contact_form_box .holder {
    display: flex;
}

.contact_form_box .holder > div {
    width: 50%;
    padding: 40px;
}

.contact_form_box .form {

}

.contact_form_box .form form {
    display: flex;
    flex-direction: column;
}

.contact_form_box h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact_form_box .info {
    padding-top: 40px;
}

.contact_form_box form input {
    border: none;
    padding: 13px;
    width: 100%;
    margin-bottom: 24px;
    line-height: 24px;
    outline: none;
    border: 1px solid transparent;
}

.contact_form_box form .button {
    font-weight: 400;
    cursor: pointer;
}

.contact_form_box .info .contact_info h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact_form_box .info svg, .contact_form_box .info img {
    margin-right: 16px;
    width: 16px;
    height: 16px;
}

.contact_form_box .info span {
    font-size: 12px;
}

.contact_form_box .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_box .logo_holder svg, .contact_form_box .logo_holder img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    margin-right: 0;
}

.contact_form_box .info .contact_info span {
    font-weight: 300;
}

.contact_form_box .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact_form_box .name_holder {
    display: flex;
    justify-content: space-between;
}

.contact_form_box .name_holder #surname {
    margin-left: 24px;
}

.contact_form_box .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_form_box .agree label {
    display: block;
}

.contact_form_box .agree a {
    margin-left: 5px;
    color: rgb(55,132,100);
}

.contact_form_box .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px) {
    .contact_form_box .holder {
        flex-direction: column;
    }

    .contact_form_box .holder > div {
        width: 100%;
    }

    .contact_form_box {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact_form_box h3 {
        font-size: 30px;
    }
}

.wrapper-skeleton .contact_form_box .holder {
    flex-direction: row-reverse;
}

.wrapper-skeleton .contact_form_box .holder .form {
    width: calc(70% - 50px);
    margin-right: 50px;
    background: none;
    margin: auto;
}

.wrapper-skeleton .contact_form_box .logo_holder {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}

.wrapper-skeleton .contact_form_box .logo_holder svg {
    margin-bottom: 10px;
    margin-right: 0;
}

.wrapper-skeleton .contact_form_box .info span {
    font-weight: normal;
}

.wrapper-skeleton .contact_form_box .holder .info {
    width: 30%;
}

.wrapper-skeleton .contact_form_box form input {
    border-bottom: 1px solid rgb(34,81,61,0.5);
    border-radius: 0 !important;
    font-size: 18px;
    font-weight: 300;
}

.wrapper-skeleton .contact_form_box h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 40px;
}

.wrapper-skeleton .contact_form_box form .button {
    width: fit-content;
    background: rgb(34,81,61);
    color: #ffffff;
    margin-top: 24px;
}

.contact_form_box .info .contact_info svg, .contact_form_box .info .contact_info svg path {
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton .contact_form_box .holder {
        flex-direction: column-reverse;
    }

    .wrapper-skeleton .contact_form_box .holder .form, .wrapper-skeleton .contact_form_box .holder .info {
        width: 100%;
    }

    .wrapper-skeleton .contact_form_box .name_holder {
        flex-direction: column;
    }

    .wrapper-skeleton .contact_form_box .name_holder #surname {
        margin-left: 0;
    }
}.appField {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(55,132,100,0.5);
    padding: 50px 20px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid rgb(55,132,100);
}
.appField .container {
    width: 100%;
    background-color: rgb(77,183,138);
    border-radius: 13px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgb(55,132,100,0.5);
}
.appField h2 {
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 600;
    color: rgb(55,132,100);
    border-bottom: 3px solid rgb(34,81,61);
    padding-bottom: 10px;
    width: 100%;
    text-transform: uppercase;
}
.appField p {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(55,132,100,0.5);
}
@media only screen and (max-width: 800px) {
    .appField {
        padding: 30px 10px;
    }
    .appField .container {
        padding: 30px;
    }
    .appField h2 {
        font-size: 38px;
        padding-bottom: 8px;
    }
    .appField p {
        font-size: 20px;
        padding: 15px;
    }
}
footer {
    background: rgb(34,81,61);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    padding: 60px 20px;
    position: relative;
}
footer .footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .logo_holder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
footer .logo_holder img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}
footer .logo_holder img:hover {
    transform: scale(1.1);
}
footer h5 {
    color: rgb(55,132,100);
    font-size: 23px;
    margin: 20px 0;
    font-weight: 600;
    text-transform: uppercase;
}
footer .menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}
footer .menu a:hover {
    color: rgb(55,132,100);
}
footer .contact_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}
footer .contact_info div svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: rgb(55,132,100);
    transition: fill 0.3s ease-in-out;
}
footer .contact_info div span {
    font-size: 15px;
    font-weight: 400;
}
footer .contact_info div:hover svg {
    fill: rgb(34,81,61);
}
footer .contact_info div:hover span {
    color: rgb(34,81,61);
}
footer .footer_agreement {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: var(--white-color_opacity);
    font-size: 15px;
}
footer .copyright {
    background: rgb(34,81,61);
    padding: 20px 0;
    text-align: center;
    font-size: 15px;
    color: #000000;
    margin-top: 40px;
}
footer .copyright_info {
    color: var(--white-color_opacity);
}
footer .copyright_info a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}
footer .copyright_info a:hover {
    color: rgb(55,132,100);
}

footer .footer_info {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgb(34,81,61,0.5);
}
footer .menu a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: rgb(55,132,100);
    transition: width 0.3s ease-in-out;
    margin-top: 5px;
}
footer .menu a:hover:after {
    width: 100%;
}
footer .contact_info div span {
    transition: color 0.3s ease-in-out;
}
footer .contact_info div:hover span {
    color: rgb(55,132,100);
}
footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(55,132,100);
    width: 125px;
    height: 125px;
    transition: fill 0.3s ease-in-out;
}
footer .logo_holder:hover svg, footer .logo_holder:hover svg path {
    fill: #ffffff;
}
@media only screen and (max-width: 1200px) {
    footer .footer {
        padding: 0 20px;
    }
    footer .footer_agreement {
        text-align: center;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer {
        flex-direction: column;
        align-items: center;
    }
    footer .menu, footer .contact_info {
        align-items: center;
    }
    footer h5 {
        margin-top: 10px;
        text-align: center;
    }
    footer .footer_agreement {
        text-align: center;
        margin-top: 20px;
    }
}.primary_page {
    background-color: rgb(77,183,138);
    font-family: Merriweather, sans-serif;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 85px 0;
}

.primary_page .holder {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.primary_page .photo {
    height: 300px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.primary_page .text_holder {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    background-color: #ffffff;
    position: relative;
}

.primary_page .text_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, rgb(55,132,100), rgb(34,81,61));
    border-radius: 3px;
}

.primary_page .text_info {
    margin-bottom: 2rem;
    text-align: center;
}

.primary_page .text_info svg {
    width: 50px;
    height: 50px;
    fill: rgb(55,132,100);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.primary_page .text_info svg:hover {
    transform: scale(1.1);
}

.primary_page .text_info h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.primary_page .text_info span {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

.primary_page .button {
    align-self: center;
    padding: 0.75rem 2rem;
    background-color: #ffffff;
    color: rgb(55,132,100);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgb(55,132,100);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.primary_page .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgb(55,132,100);
    transition: all 0.3s ease;
    z-index: -1;
}

.primary_page .button:hover {
    color: #ffffff;
}

.primary_page .button:hover::before {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .primary_page .holder {
        flex-direction: row;
        align-items: stretch;
    }

    .primary_page .photo {
        flex: 1;
        height: auto;
    }

    .primary_page .text_holder {
        flex: 1;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .primary_page .text_holder {
        padding: 2rem;
    }

    .primary_page .text_info h2 {
        font-size: 20px;
    }

    .primary_page .text_info span {
        font-size: 12px;
        max-width: 100%;
    }

    .primary_page .button {
        padding: 0.6rem 1.5rem;
        font-size: 12px;
    }
}header .main_header {
    background: rgb(55,132,100);
    color: #ffffff;
    border-bottom: 3px solid rgb(55,132,100);
    position: relative;
    z-index: 1000;
}

header .logo_holder {
    display: flex;
    align-items: center;
    padding: 15px 25px;
}
header .logo_holder a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #ffffff;
}
header .logo_holder svg, header .logo_holder img {
    width: 70px;
    height: 70px;
}

header .menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
header .menu a {
    text-decoration: none;
    padding: 15px 30px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    border-left: 1px solid rgb(34,81,61);
}
header .menu a.active {
    background: rgb(55,132,100);
    color: #ffffff;
}

@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: center;
    }
    header .menu {
        flex-direction: column;
        display: none;
        width: 100%;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border: none;
        border-bottom: 1px solid rgb(34,81,61);
    }
}

body .wrapper-skeleton header .main_header {
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
}
body .wrapper-skeleton header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}
body .wrapper-skeleton .logotype {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
}

body .wrapper-skeleton header .menu a {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    body .wrapper-skeleton header .menu {
        background: none;
        align-items: center;
    }
    body .wrapper-skeleton header .logo_holder .logotype svg,
    body .wrapper-skeleton header .logo_holder .logotype img {
        width: 60px;
        height: 60px;
    }
    body .wrapper-skeleton header .menu a {
        text-align: center;
    }
    body .wrapper-skeleton header .logo_holder {
        justify-content: center;
        align-items: center;
    }
    body .wrapper-skeleton header .menu {
        padding-bottom: 20px;
    }
}.pricing_plan_card {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(to bottom, 
        rgb(34,81,61) 0%,
        rgb(34,81,61) 50%,
        rgb(77,183,138) 50%,
        rgb(77,183,138) 100%
    );
    overflow: hidden;
}

.pricing_plan_card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(34,81,61,0.5) 0px,
        rgb(34,81,61,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    opacity: 0.1;
}

.pricing_plan_card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgb(55,132,100,0.5) 50%,
        transparent 100%
    );
}

.pricing_plan_card .container {
    position: relative;
    z-index: 1;
    width: 94%;
    max-width: 1800px;
    margin: 0 auto;
}

.pricing_plan_card .price_info_holder {
    position: relative;
}

.pricing_plan_card .photo {
    position: absolute;
    width: calc(30% + ((100vw - 100%)/2));
    height: 140%;
    top: -20%;
    right: calc((100vw - 100%)/2 * -1);
    border-radius: 60% 0 0 60%;
    overflow: hidden;
    box-shadow: -30px 0 50px -20px rgb(34,81,61,0.5);
}

.pricing_plan_card h2 {
    font-size: calc(36px * 1.4);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 60%;
    line-height: 1.2;
}

.pricing_plan_card h3 {
    font-size: 19px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 80px;
    max-width: 50%;
    line-height: 1.6;
}

.pricing_plan_card .price_items {
    display: grid;
    gap: 40px;
    width: 65%;
    margin-top: -40px;
}

.pricing_plan_card .price_items:has(.price_item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.pricing_plan_card .price_items:has(.price_item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}

.pricing_plan_card .price_item {
    background: #ffffff;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing_plan_card .price_item:nth-child(2n) {
    margin-top: 0;
}

.pricing_plan_card .price_item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(55,132,100) 0%, rgb(34,81,61) 100%);
    border-radius: 0 0 29px 29px;
    transition: height 0.3s ease;
}

.pricing_plan_card .price_item:hover {
    transform: translateY(-15px);
}

.pricing_plan_card .price_item:hover::before {
    height: 8px;
}

.pricing_plan_card .price_item h3 {
    font-size: 19px;
    color: rgb(34,81,61);
    font-weight: 700;
    margin-bottom: 25px;
    opacity: 1;
}

.pricing_plan_card .price_item .price_amount {
    font-size: calc(38px * 1.2);
    color: rgb(55,132,100);
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
}

.pricing_plan_card .price_item .price_amount::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 8px;
    bottom: 5px;
    left: -10%;
    background: rgb(55,132,100,0.5);
    z-index: -1;
}

.pricing_plan_card .price_item span {
    display: block;
    font-size: 15px;
    color: #000000;
    margin-bottom: 35px;
    line-height: 1.6;
}

.pricing_plan_card .price_item .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: rgb(34,81,61);
    border: 2px solid rgb(34,81,61);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing_plan_card .price_item .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(55,132,100) 0%, rgb(34,81,61) 100%);
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: -1;
}

.pricing_plan_card .price_item .button:hover {
    color: #ffffff;
    border-color: transparent;
}

.pricing_plan_card .price_item .button:hover::before {
    transform: translateX(0);
}

.pricing_plan_card .price_item .button span {
    position: relative;
    z-index: 2;
    margin: 0;
    color: inherit;
}

@media (max-width: 1600px) {
    .pricing_plan_card .photo {
        width: calc(35% + ((100vw - 100%)/2));
    }
    
    .pricing_plan_card .price_items {
        gap: 35px;
    }
    
    .pricing_plan_card .price_item {
        padding: 45px 35px;
    }
}

@media (max-width: 1400px) {
    .pricing_plan_card .photo {
        width: calc(38% + ((100vw - 100%)/2));
        height: 130%;
    }
    
    .pricing_plan_card h2 {
        font-size: calc(36px * 1.2);
        max-width: 65%;
    }
    
    .pricing_plan_card h3 {
        max-width: 55%;
    }
    
    .pricing_plan_card .price_items {
        width: 70%;
    }
}

@media (max-width: 1200px) {
    .pricing_plan_card {
        padding: 120px 0;
    }
    
    .pricing_plan_card .photo {
        width: calc(40% + ((100vw - 100%)/2));
        height: 120%;
    }
    
    .pricing_plan_card h2 {
        font-size: calc(36px * 1.1);
    }
    
    .pricing_plan_card .price_item {
        padding: 40px 30px;
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .pricing_plan_card {
        background: rgb(34,81,61);
        padding: 100px 0;
    }

    .pricing_plan_card .photo {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        right: 0;
        border-radius: 29px;
        margin-bottom: 50px;
    }

    .pricing_plan_card h2,
    .pricing_plan_card h3 {
        max-width: 100%;
        text-align: center;
    }

    .pricing_plan_card .price_items {
        width: 100%;
        margin-top: 0;
    }

    .pricing_plan_card .price_items:has(.price_item:nth-child(3):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing_plan_card .price_item,
    .pricing_plan_card .price_item:nth-child(2n) {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .pricing_plan_card {
        padding: 80px 0;
    }

    .pricing_plan_card .container {
        width: 90%;
    }

    .pricing_plan_card .photo {
        height: 300px;
        margin-bottom: 40px;
    }

    .pricing_plan_card h3 {
        margin-bottom: 50px;
    }

    .pricing_plan_card .price_items,
    .pricing_plan_card .price_items:has(.price_item:nth-child(2):last-child),
    .pricing_plan_card .price_items:has(.price_item:nth-child(3):last-child),
    .pricing_plan_card .price_items:has(.price_item:nth-child(4):last-child) {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 30px;
    }

    .pricing_plan_card .price_item {
        padding: 35px 30px;
    }

    .pricing_plan_card .price_item .button {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .pricing_plan_card {
        padding: 60px 0;
    }

    .pricing_plan_card .photo {
        height: 250px;
    }

    .pricing_plan_card h2 {
        font-size: 36px;
    }

    .pricing_plan_card .price_item {
        padding: 30px 25px;
    }
}.privacy_concealment {
    background: linear-gradient(135deg, #000000 0%, rgb(34,81,61,0.5) 100%);
    padding: 50px 30px;
    font-family: Merriweather, sans-serif;
    color: #ffffff;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.privacy_concealment::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgb(55,132,100), transparent);
    opacity: 0.5;
    transform: rotate(45deg);
    z-index: 0;
}
.privacy_concealment::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgb(34,81,61), transparent);
    opacity: 0.5;
    transform: rotate(-45deg);
    z-index: 0;
}
.privacy_concealment h1, .privacy_concealment h2, .privacy_concealment h3, .privacy_concealment h4, .privacy_concealment h5, .privacy_concealment h6 {
    color: rgb(55,132,100);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.privacy_concealment h1 {
    font-size: 45px;
    font-weight: 700;
    border-bottom: 1px solid rgb(55,132,100);
    padding-bottom: 10px;
}
.privacy_concealment h2 {
    font-size: 35px;
    font-weight: 600;
    border-bottom: 1px solid rgb(34,81,61);
    padding-bottom: 8px;
}
.privacy_concealment ul, .privacy_concealment ol {
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    list-style: none;
}
.privacy_concealment li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #ffffff;
}
.privacy_concealment ul li:before, .privacy_concealment ol li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background-color: rgb(55,132,100);
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(55,132,100);
}
.privacy_concealment ol {
    counter-reset: item;
}
.privacy_concealment ol li {
    list-style-type: none;
}
.privacy_concealment ol li:before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: rgb(34,81,61);
    border-radius: 50%;
    color: #000000;
    text-align: center;
    line-height: 20px;
    font-size: 20px;
}
.privacy_concealment p, .privacy_concealment span {
    font-size: 15px;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}
.privacy_concealment div {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 800px) {
    .privacy_concealment {
        padding: 30px 20px;
    }
    .privacy_concealment h1 {
        font-size: calc(24px - 5px);
    }
    .privacy_concealment h2 {
        font-size: calc(24px - 5px);
    }
    .privacy_concealment p, .privacy_concealment li {
        font-size: calc(15px - 2px);
    }
    .privacy_concealment::before, .privacy_concealment::after {
        width: 100px;
        height: 100px;
    }
}.wrapper-skeleton .teaching_history {
    background: rgb(77,183,138);
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.wrapper-skeleton .teaching_history .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper-skeleton .teaching_history .review {
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    width: 100%;
    background: #ffffff;
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.wrapper-skeleton .teaching_history .photo {
    width: 350px;
    height: 350px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.wrapper-skeleton .worker_description {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.wrapper-skeleton .teaching_history .review .name {
    font-size: 29px;
    font-weight: 700;
    color: rgb(55,132,100);
    margin-bottom: 20px;
}

.wrapper-skeleton .teaching_history .review span {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.wrapper-skeleton .teaching_history .review .quote {
    font-size: 18px;
    font-style: italic;
    color: #000000;
}

@media only screen and (max-width: 1200px) {
    .wrapper-skeleton .teaching_history .review {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wrapper-skeleton .worker_description {
        padding: 30px;
    }

    .wrapper-skeleton .teaching_history .photo {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton .teaching_history .photo {
        width: 200px;
        height: 200px;
    }
}
.course_summary {
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(34,81,61);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}

.course_summary::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(55,132,100,0.5), transparent);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.course_summary h2 {
    color: rgb(55,132,100);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}

.course_summary .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1;
    position: relative;
}

.course_summary .items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.course_summary .course {
    padding: 20px;
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    position: relative;
}

.course_summary .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.course_summary .photo {
    height: 300px;
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgb(55,132,100,0.5);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, border 0.3s ease;
}


.course_summary .text_holder {
    padding: 20px;
}

.course_summary h3 {
    font-size: 38px;
    font-weight: 600;
    color: rgb(55,132,100);
    margin-bottom: 16px;
}

.course_summary p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}

.course_summary .button {
    background: rgb(55,132,100);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 800px) {
    .course_summary {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .course_summary .photo {
        height: 200px;
        width: 200px;
    }

    .course_summary h3 {
        font-size: 19px;
    }

    .course_summary p {
        font-size: 16px;
    }

    .course_summary .button {
        padding: 10px 20px;
    }
}

.wrapper-skeleton .course_summary {
    background: rgb(77,183,138);
    padding: 80px 0;
}

.wrapper-skeleton .course_summary .items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-skeleton .course_summary .photo {
    width: 250px;
    height: 250px;
    border-radius: 19px;
    overflow: hidden;
    border: 5px solid rgb(55,132,100,0.5);
}

.wrapper-skeleton .course_summary .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.wrapper-skeleton .course_summary .text_holder {
    text-align: center;
    padding: 20px;
}

.wrapper-skeleton .course_summary h3 {
    font-size: 46px;
    font-weight: 700;
    margin-top: 20px;
    color: rgb(55,132,100);
}

.wrapper-skeleton .course_summary p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.wrapper-skeleton .course_summary .button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: none;
    border: 2px solid rgb(55,132,100);
    border-radius: 50px;
    color: rgb(55,132,100);
    transition: background 0.3s ease, color 0.3s ease;
}

.wrapper-skeleton .course_summary .button:hover {
    background: rgb(55,132,100);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton .course_summary .photo {
        width: 200px;
        height: 200px;
    }
    .wrapper-skeleton .course_summary .text_holder {
        padding: 0;
    }
    .wrapper-skeleton .course_summary h3 {
        font-size: 19px;
    }

    .wrapper-skeleton .course_summary p {
        font-size: 16px;
    }

    .wrapper-skeleton .course_summary .button {
        padding: 10px 30px;
    }
}
.potential_enrollees {
    padding-bottom: 80px;
    padding-top: 80px;
}

.potential_enrollees .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.potential_enrollees ul {
    list-style: none;
}

.potential_enrollees ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.potential_enrollees ul svg, .potential_enrollees ul svg path {
    fill: rgb(55,132,100);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.potential_enrollees h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .potential_enrollees {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.wrapper-skeleton .potential_enrollees .holder {
    border: 2px solid rgb(55,132,100);
    background-color: #ffffff;
    padding: 50px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper-skeleton .potential_enrollees h2 {
    text-align: left;
    font-size: 29px;
    font-weight: 700;
    color: rgb(55,132,100);
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid rgb(55,132,100);
    padding-bottom: 10px;
}

.wrapper-skeleton .potential_enrollees ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.wrapper-skeleton .potential_enrollees ul li {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    border-bottom: 1px solid rgb(55,132,100,0.5);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.wrapper-skeleton .potential_enrollees ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.wrapper-skeleton .potential_enrollees ul svg, .wrapper-skeleton .potential_enrollees ul svg path {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    fill: rgb(55,132,100);
    position: static;
}

@media only screen and (max-width: 800px) {
    .wrapper-skeleton .potential_enrollees .holder {
        padding: 30px;
    }

    .wrapper-skeleton .potential_enrollees h2 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .wrapper-skeleton .potential_enrollees ul li {
        font-size: 18px;
        padding: 10px 0;
    }
}.training_results {
    position: relative;
    padding: 140px 0;
    background: rgb(77,183,138);
    overflow: hidden;
}

.training_results::before,
.training_results::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.training_results::before {
    background: repeating-linear-gradient(
        45deg,
        rgb(55,132,100,0.5) 0%,
        transparent 2px,
        transparent 8px,
        rgb(55,132,100,0.5) 10px
    );
    opacity: 0.1;
}

.training_results::after {
    background: radial-gradient(
        circle at 0% 0%,
        rgb(55,132,100,0.5) 0%,
        transparent 50%
    ), radial-gradient(
        circle at 100% 100%,
        rgb(34,81,61,0.5) 0%,
        transparent 50%
    );
    mix-blend-mode: overlay;
}

.training_results .container {
    position: relative;
    z-index: 2;
}

.training_results .holder {
    position: relative;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.training_results .content_holder {
    position: relative;
    padding: 80px 60px;
    min-height: 700px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    border-radius: 17px;
    overflow: hidden;
}

.training_results .content_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.training_results .content_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent 0,
        transparent 5px,
        rgba(255, 255, 255, 0.02) 5px,
        rgba(255, 255, 255, 0.02) 10px
    );
    z-index: 2;
}

.training_results h3 {
    grid-column: 1 / -1;
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: slideInTech 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.training_results .content_holder > div {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 3;
}

.training_results .content_holder p {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInTech 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.training_results .content_holder p:nth-child(2) {
    animation-delay: 0.2s;
}

.training_results .content_holder p:nth-child(3) {
    animation-delay: 0.4s;
}

.training_results .content_holder p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgb(55,132,100) 0%,
        rgb(34,81,61) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.training_results .content_holder p:hover::before {
    transform: scaleX(1);
}

.training_results .content_holder p::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    border-right: 2px solid rgb(34,81,61);
    border-bottom: 2px solid rgb(34,81,61);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.training_results .content_holder p:hover::after {
    opacity: 1;
}

@keyframes slideInTech {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .training_results .content_holder {
        padding: 60px 40px;
        min-height: 600px;
    }

    .training_results .content_holder > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .training_results {
        padding: 100px 0;
    }

    .training_results h3 {
        font-size: calc(46px * 0.85);
        margin-bottom: 40px;
    }

    .training_results .content_holder {
        padding: 40px 30px;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .training_results {
        padding: 80px 0;
    }

    .training_results .holder {
        margin: 0 15px;
    }

    .training_results .content_holder {
        padding: 30px 20px;
    }

    .training_results .content_holder > div {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .training_results h3 {
        font-size: calc(46px * 0.7);
        margin-bottom: 30px;
    }

    .training_results .content_holder p {
        padding: 25px;
        font-size: calc(13px * 0.95);
    }
}

@media (max-width: 480px) {
    .training_results {
        padding: 60px 0;
    }

    .training_results .holder {
        margin: 0 10px;
    }

    .training_results .content_holder {
        padding: 25px 15px;
        min-height: 400px;
    }

    .training_results h3 {
        font-size: calc(46px * 0.6);
        margin-bottom: 25px;
    }

    .training_results .content_holder p {
        padding: 20px;
        font-size: calc(13px * 0.9);
    }
}.advantages_benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(77,183,138), rgb(34,81,61,0.5));
    color: #000000;
    font-family: Merriweather, sans-serif;
}
.advantages_benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.advantages_benefits .advantages_content {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}
.advantages_benefits .advantages_content h2 {
    font-size: 28px;
    color: rgb(55,132,100);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}
.advantages_benefits .advantages_content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: rgb(55,132,100);
    margin: 10px auto 0;
}
.advantages_benefits .advantages_photo_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.advantages_benefits .photo {
    flex: 1 1 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.advantages_benefits .advantages_holder {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.advantages_benefits .advantage_item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex: 1 1 auto;
    margin-bottom: 20px;
}
.advantages_benefits .advantage_item:last-child {
    margin-bottom: 0;
}
.advantages_benefits .advantage_image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgb(55,132,100,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.advantages_benefits .advantage_image svg, .advantages_benefits .advantage_image svg path {
    width: 40px;
    height: 40px;
    fill: #000000;
}
.advantages_benefits .advantage_item h4 {
    font-size: 21px;
    color: #000000;
    margin: 0;
}
@media (max-width: 900px) {
    .advantages_benefits .advantages_photo_holder {
        flex-direction: column;
        align-items: center;
    }
    .advantages_benefits .photo {
        width: 100%;
        flex: auto;
        height: 300px;
    }
    .advantages_benefits .advantages_holder {
        width: 100%;
        align-items: center;
    }
    .advantages_benefits .advantage_item {
        width: 100%;
    }
}
