* {
    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: Lato, sans-serif;
    color: #000000;
}
.dev_inner-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(103,198,118);
}
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;
    }
}.dev_title_opener {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dev_title_opener::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgb(76,147,88,0.5) 10%, transparent 10%),
        radial-gradient(circle, rgb(50,96,57,0.5) 10%, transparent 10%);
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
    opacity: 0.1;
    animation: bgShift 20s linear infinite;
}

@keyframes bgShift {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dev_title_opener .holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}

.dev_title_opener .photo {
    position: relative;
    overflow: hidden;
}

.dev_title_opener .photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(76,147,88,0.5), rgb(50,96,57,0.5));
    mix-blend-mode: color-dodge;
}

.dev_title_opener .text_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.dev_title_opener .text_info {
    position: relative;
}

.dev_title_opener .text_info svg {
    width: 80px;
    height: 80px;
    fill: rgb(76,147,88);
    filter: drop-shadow(0 0 5px rgb(76,147,88));
    margin-bottom: 2rem;
}

.dev_title_opener .text_info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgb(76,147,88), 0 0 20px rgb(50,96,57);
}

.dev_title_opener .text_info span {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.6;
    display: block;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 20px;
}

.dev_title_opener .text_info span::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgb(76,147,88);
    font-weight: 700;
}

.dev_title_opener .text_holder .button {
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid rgb(76,147,88);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dev_title_opener .text_holder .button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgb(76,147,88), rgb(50,96,57));
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dev_title_opener .text_holder .button:hover::before {
    opacity: 1;
}

.dev_title_opener .text_holder .button:hover {
    color: #000000;
    background-color: rgb(76,147,88);
    box-shadow: 0 0 20px rgb(76,147,88);
}

@media only screen and (max-width: 1200px) {
    .dev_title_opener .holder {
        grid-template-columns: 1fr;
    }
    
    .dev_title_opener .photo {
        height: 40vh;
    }
}

@media only screen and (max-width: 800px) {
    .dev_title_opener .text_holder {
        padding: 2rem;
    }

    .dev_title_opener .text_info h2 {
        font-size: 24px;
    }

    .dev_title_opener .text_info span {
        font-size: 13px;
    }
}.dev_thxZone {
    background: linear-gradient(135deg, rgb(76,147,88), rgb(50,96,57));
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}
.dev_thxZone .container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: #000000;
}
.dev_thxZone h2 {
    font-family: Lato, sans-serif;
    font-size: 33px;
    margin-bottom: 20px;
    font-weight: 700;
    color: rgb(76,147,88);
}
.dev_thxZone p {
    font-family: Lato, sans-serif;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
}
.dev_thxZone .button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(76,147,88);
    border: 2px solid rgb(76,147,88);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: inset 0 0 0 0 rgb(50,96,57);
    transition: box-shadow 0.2s ease-in-out;
}
.dev_thxZone .button:hover {
    box-shadow: inset 0 -4px 0 0 rgb(50,96,57);
}
@media only screen and (max-width: 800px) {
    .dev_thxZone {
        padding: 40px 10px;
    }
    .dev_thxZone .container {
        padding: 20px;
    }
    .dev_thxZone h2 {
        font-size: 22px;
    }
    .dev_thxZone p {
        font-size: 16px;
    }
}footer {
    background: linear-gradient(135deg, rgb(50,96,57) 0%, rgb(50,96,57,0.5) 100%);
    color: #ffffff;
    font-family: Lato, sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
    fill: rgb(76,147,88);
}
footer h5 {
    color: rgb(76,147,88);
    font-size: 23px;
    margin-bottom: 16px;
    font-weight: 700;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 5px;
}
footer .menu a:hover {
    color: rgb(76,147,88);
    text-decoration: underline;
}
footer .contact_info {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
footer .contact_info div svg, footer .contact_info div img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #ffffff;
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 16px;
    text-align: left;
}
footer .footer_agreement {
    display: flex;
    margin: 10px 0;
    justify-content: flex-start;
    text-align: left;
    color: #ffffff;
    font-size: 16px;
}
footer .copyright {
    background: linear-gradient(135deg, rgb(76,147,88) 0%, rgb(76,147,88,0.5) 100%);
    color: #ffffff;
    font-size: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}
footer .copyright_info {
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
footer .copyright_info a:hover {
    color: rgb(50,96,57);
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
    footer .footer_agreement {
        text-align: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .contact_info {
        margin-top: 10px;
    }
    footer h5 {
        margin-top: 5px;
    }
}
.dev_meet_us {
    padding: 60px 0;
    background: rgb(50,96,57);
    color: #ffffff;
    font-family: Lato, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dev_inner-container .dev_meet_us .holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(76,147,88);
    backdrop-filter: blur(5px);
}

.dev_inner-container .dev_meet_us .caption_holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding: 40px;
    width: 100%;
}

.dev_inner-container .dev_meet_us .holder .photo {
    width: 40%;
    height: auto;
    border-radius: 0;
    border: 1px solid rgb(76,147,88);
    background-position: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.dev_inner-container .dev_meet_us .style_element {
    padding: 0;
    background: none;
    border: none;
    width: 100%;
}

.dev_inner-container .dev_meet_us h2 {
    font-size: 35px;
    font-weight: 700;
    color: rgb(76,147,88);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dev_inner-container .dev_meet_us p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    border-left: 3px solid rgb(76,147,88);
    padding-left: 15px;
}

.dev_inner-container .dev_meet_us::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.5) 75%), linear-gradient(135deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.5) 75%);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.1;
}

@media only screen and (max-width: 1200px) {
    .dev_inner-container .dev_meet_us .caption_holder {
        flex-direction: column;
    }
    .dev_inner-container .dev_meet_us .holder .photo {
        height: 240px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .dev_inner-container .dev_meet_us .holder {
        flex-direction: column;
    }
    .dev_inner-container .dev_meet_us .holder .photo, .dev_inner-container .dev_meet_us .caption_holder {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .dev_inner-container .dev_meet_us .caption_holder {
        padding: 20px;
    }
}

.dev_benefits_overview .advantages_content h2 {
    color: rgb(50,96,57);
}

.dev_benefits_overview .advantage_item svg, .dev_benefits_overview .advantage_item svg path {
    fill: rgb(76,147,88);
}

.dev_benefits_overview .advantage_item p {
    color: #000000;
}

.dev_benefits_overview .advantage_item b {
    color: rgb(76,147,88);
}

.dev_benefits_overview {
    padding-top: 80px;
    padding-bottom: 80px;
}

.dev_benefits_overview .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.dev_benefits_overview .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.dev_benefits_overview .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 37px;
    font-weight: 600;
}

.dev_benefits_overview .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.dev_benefits_overview .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.dev_benefits_overview .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.dev_benefits_overview .advantage_item svg, .dev_benefits_overview .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .dev_inner-container .dev_benefits_overview .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
    .dev_inner-container .dev_benefits_overview .advantages_holder {
        justify-content: center;
    }
}

@media only screen and (max-width: 800px) {
    .dev_benefits_overview .advantages_content h2 {
        font-size: 30px;
    }

    .dev_benefits_overview .advantages_holder {
        flex-direction: column;
    }

    .dev_benefits_overview {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .dev_inner-container .dev_benefits_overview .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.dev_inner-container .dev_benefits_overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 80px 20px;
}

.dev_inner-container .dev_benefits_overview .advantages_content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.dev_inner-container .dev_benefits_overview .advantages_content h2 {
    color: rgb(50,96,57);
    font-size: 37px;
    font-weight: 600;
    margin-bottom: 40px;
}

.dev_inner-container .dev_benefits_overview .advantages_description {
    font-size: 20px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 0 20px;
}

.dev_inner-container .dev_benefits_overview .advantages_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.dev_inner-container .dev_benefits_overview .advantage_item {
    background-color: rgb(76,147,88,0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    width: calc(25% - 20px);
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

.dev_inner-container .dev_benefits_overview .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
    background-color: rgb(76,147,88);
}

.dev_inner-container .dev_benefits_overview .advantage_item:hover h4,
.dev_inner-container .dev_benefits_overview .advantage_item:hover svg,
.dev_inner-container .dev_benefits_overview .advantage_item:hover svg path {
    color: #ffffff;
    fill: #ffffff;
}

.dev_inner-container .dev_benefits_overview .advantage_image {
    width: 128px;
    height: 128px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev_inner-container .dev_benefits_overview .advantage_item svg,
.dev_inner-container .dev_benefits_overview .advantage_item img {
    width: 100%;
    height: 100%;
    transition: fill 0.3s ease-in-out;
}

.dev_inner-container .dev_benefits_overview .advantage_item h4 {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

@media only screen and (max-width: 1200px) {
    .dev_inner-container .dev_benefits_overview .advantage_item {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 800px) {
    .dev_inner-container .dev_benefits_overview {
        padding: 50px 10px;
    }

    .dev_inner-container .dev_benefits_overview .advantages_content h2 {
        font-size: 30px;
    }

    .dev_inner-container .dev_benefits_overview .advantages_holder {
        flex-direction: column;
        gap: 15px;
    }

    .dev_inner-container .dev_benefits_overview .advantage_item {
        width: 100%;
    }
}.main_header {
    background: linear-gradient(135deg, rgb(76,147,88,0.5) 0%, rgb(50,96,57,0.5) 100%);
    padding: 15px 0;
    border-bottom: 2px solid rgb(50,96,57);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.main_header .header_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at top right, rgb(103,198,118) 0%, var(--white-color_opacity) 100%);
    border-radius: 25px;
    padding: 10px 20px;
    border: 1px solid rgb(50,96,57,0.5);
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(76,147,88);
    font-weight: 700;
    font-size: 21px;
    transition: all 0.3s ease;
}
.main_header .header_logo:hover {
    transform: scale(1.05);
}
.main_header .header_logo svg,
.main_header .header_logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(76,147,88);
}
.main_header .header_description {
    font-size: 13px;
    color: #000000;
    margin-left: 20px;
    padding: 5px 10px;
    background: linear-gradient(90deg, rgb(76,147,88,0.5) 0%, transparent 100%);
    border-radius: 10px;
}
.main_header .header_menu {
    display: flex;
    gap: 15px;
}
.main_header .header_menu a {
    color: #000000;
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgb(76,147,88,0.5) 0%, rgb(50,96,57,0.5) 100%);
    border: 1px solid transparent;
}
.main_header .header_menu a:hover {
    background: linear-gradient(45deg, rgb(50,96,57,0.5) 0%, rgb(76,147,88,0.5) 100%);
    border-color: rgb(76,147,88);
    box-shadow: 0 0 10px rgb(76,147,88,0.5);
}
@media (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_header .logo_holder {
        margin-bottom: 15px;
    }
    .main_header .header_description {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    .main_header .header_menu {
        flex-direction: column;
        width: 100%;
    }
    .main_header .header_menu a {
        text-align: center;
        margin-bottom: 10px;
    }
}
.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(76,147,88) 0%, rgb(50,96,57) 100%);
}
@media (prefers-reduced-motion: reduce) {
    .main_header,
    .main_header *,
    .main_header *::before,
    .main_header *::after {
        animation: none !important;
        transition: none !important;
    }
}.dev_join_now {
    padding: 60px 0;
    background: rgb(103,198,118);
}
.dev_join_now .holder{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dev_join_now .holder svg, .dev_join_now .holder svg path {
    fill: rgb(76,147,88);
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}
.dev_join_now .holder h2 {
    font-size: 41px;
    text-align: center;
    margin: 30px 0;
}
.dev_join_now .holder .button {
    padding: 20px 40px;
    background: rgb(76,147,88);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}
.dev_join_now .holder .button:hover {
    text-decoration: underline;
}
@media only screen and (max-width: 800px) {
    .dev_join_now .holder h2 {
        font-size: 18px;
    }
}.dev_inner-container .dev_course_structure {
    padding: 80px 0;
    background: rgb(76,147,88);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.dev_inner-container .dev_course_structure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(76,147,88,0.5), rgb(50,96,57,0.5));
    z-index: 0;
    opacity: 0.1;
}
.dev_inner-container .dev_course_structure .container {
    position: relative;
    z-index: 2;
}
.dev_inner-container .dev_course_structure .items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.dev_inner-container .dev_course_structure .items .course {
    width: 100%;
    max-width: 1000px;
    margin: 20px;
    position: relative;
    background: rgb(103,198,118);
    border: 1px solid rgb(76,147,88);
    box-shadow: 0 0 20px rgb(76,147,88,0.5);
    border-radius: 17px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dev_inner-container .dev_course_structure .items .course .content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
}
.dev_inner-container .dev_course_structure .items .course .photo {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease;
}

.dev_inner-container .dev_course_structure .text_holder {
    padding: 30px;
    background-color: rgb(50,96,57,0.5);
    text-align: left;
    color: #ffffff;
}
.dev_inner-container .dev_course_structure .text_holder h3 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgb(76,147,88);
}
.dev_inner-container .dev_course_structure .text_holder p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.6;
}
.dev_inner-container .dev_course_structure .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(76,147,88);
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgb(76,147,88,0.5);
}
.dev_inner-container .dev_course_structure .button:hover {
    background: rgb(50,96,57);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(50,96,57,0.5);
}

@media only screen and (max-width: 800px) {
    .dev_inner-container .dev_course_structure {
        padding: 40px 0;
    }
    .dev_inner-container .dev_course_structure .items .course {
        flex-direction: column;
        margin: 0;
    }
    .dev_inner-container .dev_course_structure .items .course .content {
        flex-direction: column;
        padding: 0;
    }
    .dev_inner-container .dev_course_structure .photo {
        height: 200px;
    }
    .dev_inner-container .dev_course_structure .text_holder {
        padding: 20px;
        text-align: center;
    }
    .dev_inner-container .dev_course_structure .text_holder h3 {
        font-size: 18px;
    }
    .dev_inner-container .dev_course_structure .text_holder p {
        font-size: 15px;
    }
    .dev_inner-container .dev_course_structure .button {
        font-size: 19px;
    }
}.dev_privacy_fence {
    background: linear-gradient(135deg, #000000 0%, rgb(50,96,57,0.5) 100%);
    padding: 50px 30px;
    font-family: Lato, sans-serif;
    color: #ffffff;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.dev_privacy_fence::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgb(76,147,88), transparent);
    opacity: 0.5;
    transform: rotate(45deg);
    z-index: 0;
}
.dev_privacy_fence::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgb(50,96,57), transparent);
    opacity: 0.5;
    transform: rotate(-45deg);
    z-index: 0;
}
.dev_privacy_fence h1, .dev_privacy_fence h2, .dev_privacy_fence h3, .dev_privacy_fence h4, .dev_privacy_fence h5, .dev_privacy_fence h6 {
    color: rgb(76,147,88);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.dev_privacy_fence h1 {
    font-size: 39px;
    font-weight: 700;
    border-bottom: 1px solid rgb(76,147,88);
    padding-bottom: 10px;
}
.dev_privacy_fence h2 {
    font-size: 31px;
    font-weight: 600;
    border-bottom: 1px solid rgb(50,96,57);
    padding-bottom: 8px;
}
.dev_privacy_fence ul, .dev_privacy_fence ol {
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    list-style: none;
}
.dev_privacy_fence li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    color: #ffffff;
}
.dev_privacy_fence ul li:before, .dev_privacy_fence ol li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background-color: rgb(76,147,88);
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(76,147,88);
}
.dev_privacy_fence ol {
    counter-reset: item;
}
.dev_privacy_fence ol li {
    list-style-type: none;
}
.dev_privacy_fence ol li:before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: rgb(50,96,57);
    border-radius: 50%;
    color: #000000;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}
.dev_privacy_fence p, .dev_privacy_fence span {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}
.dev_privacy_fence div {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 800px) {
    .dev_privacy_fence {
        padding: 30px 20px;
    }
    .dev_privacy_fence h1 {
        font-size: calc(20px - 5px);
    }
    .dev_privacy_fence h2 {
        font-size: calc(20px - 5px);
    }
    .dev_privacy_fence p, .dev_privacy_fence li {
        font-size: calc(18px - 2px);
    }
    .dev_privacy_fence::before, .dev_privacy_fence::after {
        width: 100px;
        height: 100px;
    }
}.dev_educational_yield {
    background: linear-gradient(120deg, rgb(103,198,118) 0%, rgba(0, 0, 0, 0.5) 70%, rgb(76,147,88,0.5) 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.dev_educational_yield::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgb(50,96,57,0.5) 0%,
        rgb(50,96,57,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    transform: rotate(-15deg);
    pointer-events: none;
}

.dev_educational_yield .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.dev_educational_yield .holder {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 0;
    transform: rotate(-5deg);
    position: relative;
}

.dev_educational_yield .text_holder {
    background: #ffffff;
    padding: 80px 100px 80px 80px;
    border-radius: 12px;
    transform: rotate(5deg) translateY(-40px);
    z-index: 2;
    max-width: 1200px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dev_educational_yield .photo {
    height: 800px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 45%;
    transform: rotate(5deg) translateY(-50%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 30px 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.dev_educational_yield .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        220deg,
        rgb(76,147,88,0.5) 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.dev_educational_yield .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #ffffff;
    opacity: 0.1;
    margin: 20px;
    border-radius: calc(12px - 10px);
    z-index: 2;
}

.dev_educational_yield .text_holder h2 {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
    max-width: 800px;
}

.dev_educational_yield .text_holder h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: rgb(76,147,88);
    transform: skewX(-20deg);
}

.dev_educational_yield .text_holder ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev_educational_yield .text_holder li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(
        135deg,
        rgb(103,198,118) 0%,
        transparent 100%
    );
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dev_educational_yield .text_holder li:hover {
    transform: translateX(0);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}

.dev_educational_yield .text_holder li svg {
    width: 26px;
    height: 26px;
    fill: rgb(76,147,88);
    flex-shrink: 0;
    transform: rotate(-5deg);
}

@media (max-width: 1400px) {
    .dev_educational_yield .text_holder {
        padding: 60px 80px 60px 60px;
    }

    .dev_educational_yield .photo {
        width: 50%;
        height: 700px;
    }

    .dev_educational_yield .text_holder ul {
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .dev_educational_yield {
        padding: 120px 0;
    }

    .dev_educational_yield .holder {
        grid-template-columns: 1fr;
        transform: rotate(0);
    }

    .dev_educational_yield .text_holder {
        transform: rotate(0);
        padding: 50px;
        max-width: none;
    }

    .dev_educational_yield .photo {
        position: relative;
        width: 90%;
        height: 500px;
        transform: rotate(0) translateY(0);
        margin: -60px auto 0;
        top: auto;
    }

    .dev_educational_yield .photo::after {
        margin: 15px;
    }
}

@media (max-width: 768px) {
    .dev_educational_yield {
        padding: 80px 0;
    }

    .dev_educational_yield .photo {
        height: 400px;
        width: 100%;
        margin: -40px auto 0;
    }

    .dev_educational_yield .text_holder {
        padding: 35px;
    }

    .dev_educational_yield .text_holder h2 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .dev_educational_yield .text_holder ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dev_educational_yield .text_holder li {
        padding: 20px;
        transform: none;
    }

    .dev_educational_yield .text_holder li:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .dev_educational_yield {
        padding: 60px 0;
    }

    .dev_educational_yield .photo {
        height: 300px;
        margin: -20px auto 0;
    }

    .dev_educational_yield .photo::after {
        margin: 10px;
    }

    .dev_educational_yield .text_holder {
        padding: 25px;
    }

    .dev_educational_yield .text_holder h2 {
        font-size: calc(35px * 0.9);
        padding-bottom: 15px;
    }

    .dev_educational_yield .text_holder h2::after {
        width: 60px;
        height: 3px;
    }

    .dev_educational_yield .text_holder li {
        padding: 15px;
        gap: 15px;
    }

    .dev_educational_yield .text_holder svg {
        width: 22px;
        height: 22px;
    }
}.dev_leadership_experience {
    padding-top: 80px;
    padding-bottom: 80px;
}

.dev_leadership_experience .review .name {
    color: rgb(50,96,57);
}

.dev_leadership_experience .review span {
    color: rgb(76,147,88);
}

.dev_leadership_experience .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dev_leadership_experience .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.dev_leadership_experience .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.dev_leadership_experience .review .name {
    font-size: 20px;
    margin-bottom: 8px;
}

.dev_leadership_experience .review span {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 14px;
}

.dev_leadership_experience .review .quote {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .dev_leadership_experience .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .dev_leadership_experience .holder {
        flex-direction: column;
    }

    .dev_leadership_experience .review {
        max-width: unset;
        width: 100%;
    }

    .dev_leadership_experience {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.dev_inner-container .dev_leadership_experience .holder {
    justify-content: center;
}

.dev_inner-container .dev_leadership_experience .review {
    max-width: unset;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

.dev_inner-container .dev_leadership_experience .photo {
    height: 390px;
    width: 40%;
    border-right: 4px solid rgb(76,147,88);
}

.dev_inner-container .worker_description {
    width: 50%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dev_inner-container .dev_leadership_experience .review .name {
    text-align: left;
    width: 100%;
    border-bottom: none;
    margin-bottom: 0;
    padding: 30px 20px;
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
    color: #000000;
    padding-bottom: 0;
}

.dev_inner-container .dev_leadership_experience .review span {
    text-align: left;
    width: 100%;
    border-top: none;
    padding: 30px 20px;
    padding-top: 25px;
    color: #000000;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.dev_inner-container .dev_leadership_experience .review .quote {
    margin-top: 20px;
    padding: 20px;
    border-left: 4px solid rgb(76,147,88);
    line-height: 25px;
}

@media only screen and (max-width: 800px) {
    .dev_inner-container .dev_leadership_experience .review {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .dev_inner-container .worker_description {
        width: 100%;
    }

    .dev_inner-container .dev_leadership_experience .photo {
        width: 300px;
        height: 300px;
        margin: 20px;
    }

    .dev_inner-container .dev_leadership_experience .review .name {
        font-size: 40px;
        padding: 16px;
    }

    .dev_inner-container .dev_leadership_experience .review span {
        padding: 16px;
    }
}.dev_get_in_touch {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(76,147,88), rgb(50,96,57,0.5));
    font-family: Lato, sans-serif;
}

.dev_get_in_touch h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dev_get_in_touch .form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 19px;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dev_get_in_touch form input, .dev_get_in_touch form textarea {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid rgb(50,96,57,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
    transition: border-color 0.3s;
}

.dev_get_in_touch form input:focus, .dev_get_in_touch form textarea:focus {
    border-color: rgb(76,147,88);
    outline: none;
}

.dev_get_in_touch form .button {
    background: rgb(76,147,88);
    color: #ffffff;
    border-radius: 19px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    align-self: center;
}

.dev_get_in_touch form .button:hover {
    background: rgb(50,96,57);
}

.dev_get_in_touch .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dev_get_in_touch .name_holder {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.dev_get_in_touch .name_holder input {
    flex: 1;
}

.dev_get_in_touch .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.dev_get_in_touch .agree label {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.dev_get_in_touch .agree a {
    margin-left: 5px;
    color: #ffffff;
    text-decoration: underline;
}

.dev_get_in_touch .form_text {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
}

.dev_get_in_touch .agree input[type=checkbox] {
    width: auto;
    margin: 0 10px 0 0;
}

@media only screen and (max-width: 600px) {
    .dev_get_in_touch {
        padding: 60px 0;
    }

    .dev_get_in_touch .holder {
        flex-direction: column;
    }

    .dev_get_in_touch .form {
        width: 100%;
        padding: 20px;
    }

    .dev_get_in_touch .name_holder {
        flex-direction: column;
        gap: 0;
    }

    .dev_get_in_touch h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {
    .dev_get_in_touch {
        padding: 80px 0;
    }

    .dev_get_in_touch .form {
        padding: 30px;
    }

    .dev_get_in_touch h3 {
        font-size: 21px;
    }
}