* {
    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;
}
.framework-wraph {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(219,203,189);
}
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;
    }
}.framework-wraph header .main_header {
    background: rgb(136,158,175,0.5);
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.framework-wraph header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.framework-wraph header .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.framework-wraph header .logo_holder .logotype {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.framework-wraph header .logo_holder .logotype svg,
.framework-wraph header .logo_holder .logotype img {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    fill: rgb(80,109,132);
}

.framework-wraph header .logo_caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
}

.framework-wraph header .logo_desc {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
}


.framework-wraph header .menu {
    display: flex;
    align-items: center;
}

.framework-wraph header .menu a {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.framework-wraph header .menu a:hover {
    color: rgb(136,158,175);
}

@media only screen and (max-width: 1200px) {
    .framework-wraph header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .framework-wraph header .logo_holder {
        margin-bottom: 20px;
    }

    .framework-wraph header .logo_holder .logotype svg,
    .framework-wraph header .logo_holder .logotype img {
        width: 60px;
        height: 60px;
        margin: 0;
        margin-bottom: 10px;
    }

    .framework-wraph header .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .framework-wraph header .menu a {
        padding: 10px 0;
        margin-right: 0;
    }
}.welcomeg {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.welcomeg .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}
.welcomeg .style_element {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 29px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    text-align: left;
    z-index: 2;
}
.welcomeg .style_element h1 {
    font-family: Merriweather, sans-serif;
    font-size: calc(46px * 1.2);
    font-weight: 700;
    color: rgb(136,158,175);
    margin-bottom: 16px;
}
.welcomeg .style_element h3 {
    font-family: Merriweather, sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: rgb(80,109,132);
    margin-bottom: 12px;
}
.welcomeg .style_element p {
    font-family: Merriweather, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 24px;
}
.welcomeg .style_element:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.welcomeg .style_element h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: rgb(136,158,175);
    margin-top: 8px;
    transition: width 0.3s ease;
}
.welcomeg .style_element:hover h1::after {
    width: 100px;
}
.framework-wraph .welcomeg {
    position: relative;
}
.framework-wraph .welcomeg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 0;
}
.framework-wraph .welcomeg .title_page_holder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.framework-wraph .welcomeg .style_element {
    width: 90%;
    max-width: 1200px;
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 29px;
    padding: 40px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, padding 0.3s ease;
}
.framework-wraph .welcomeg .style_element h1 {
    font-size: 48px;
    color: #000000;
}
.framework-wraph .welcomeg .style_element h3 {
    font-size: 24px;
    color: rgb(80,109,132);
    margin-bottom: 20px;
}
.framework-wraph .welcomeg .style_element p {
    font-size: 18px;
    color: #000000;
}
@media only screen and (max-width: 1200px) {
    .framework-wraph .welcomeg .style_element {
        padding: 30px 40px;
    }
}
@media only screen and (max-width: 800px) {
    .welcomeg .title_page_holder {
        min-height: 320px;
    }
    .welcomeg .style_element {
        width: 95%;
        padding: 20px 30px;
        text-align: center;
    }
    .welcomeg .style_element h1 {
        font-size: 28px;
    }
    .welcomeg .style_element h3 {
        font-size: 18px;
    }
    .welcomeg .style_element p {
        font-size: 16px;
    }
}.tyCardl {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    height: 100vh;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgb(80,109,132,0.5);
}
.tyCardl .container {
    background-color: rgb(219,203,189);
    padding: 60px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgb(136,158,175,0.5);
}
.tyCardl h2 {
    font-size: 34px;
    font-weight: 600;
    color: rgb(136,158,175);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(136,158,175);
    width: 100%;
    padding-bottom: 10px;
}
.tyCardl p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    background: rgb(80,109,132,0.5);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid rgb(80,109,132);
}
@media only screen and (max-width: 800px) {
    .tyCardl {
        padding: 20px;
        height: auto;
    }
    .tyCardl .container {
        padding: 40px 20px;
    }
    .tyCardl h2 {
        font-size: 39px;
    }
    .tyCardl p {
        font-size: 14px;
    }
}
.framework-wraph .program_informationk {
    padding: 60px 0;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.framework-wraph .program_informationk .items {
    display: flex;
    justify-content: center;
}

.framework-wraph .program_informationk .items .course {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    border: 1px solid rgb(136,158,175,0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-wraph .program_informationk .items .course:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.framework-wraph .program_informationk .photo {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.framework-wraph .program_informationk .course:hover .photo {
    transform: scale(1.05);
}

.framework-wraph .program_informationk .text_holder {
    background: #ffffff;
    padding: 40px;
    width: 100%;
    text-align: left;
}

.framework-wraph .program_informationk .text_holder h3 {
    font-family: Merriweather, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.framework-wraph .program_informationk .text_holder p {
    font-family: Merriweather, sans-serif;
    font-size: 15px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.6;
}

.framework-wraph .program_informationk .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(136,158,175);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.framework-wraph .program_informationk .button:hover {
    background: rgb(80,109,132);
    transform: scale(1.05);
}

@media only screen and (max-width: 800px) {
    .framework-wraph .program_informationk {
        padding: 30px 0;
    }
    .framework-wraph .program_informationk .photo {
        height: 200px;
    }
    .framework-wraph .program_informationk .text_holder {
        padding: 20px;
    }
    .framework-wraph .program_informationk .text_holder h3 {
        font-size: 18px;
    }
    .framework-wraph .program_informationk .text_holder p {
        font-size: 15px;
    }
}
.explore_nowl {
    padding-bottom: 80px;
    padding-top: 80px;
}

.explore_nowl h2 {
    color: rgb(80,109,132);
}

.explore_nowl .button {
    background: rgb(80,109,132);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.explore_nowl .button:hover {
    background: rgb(136,158,175);
}

.explore_nowl .holder {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.explore_nowl h2 {
    font-size: 34px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.explore_nowl .button {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .explore_nowl .holder {
        flex-direction: column;
    }

    .framework-wraph section.explore_nowl h2 {
        font-size: 26px;
    }

    .explore_nowl h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .explore_nowl .button {
        font-size: 24px;
    }

    .explore_nowl {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.framework-wraph .explore_nowl {
    background: linear-gradient(135deg, rgb(136,158,175), rgb(80,109,132));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.framework-wraph .explore_nowl .holder {
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 50px;
    border: 1px solid rgb(80,109,132);
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.framework-wraph .explore_nowl .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.framework-wraph .explore_nowl h2 {
    margin: 0;
    margin-bottom: 40px;
    font-size: 48px;
    width: 100%;
    color: #000000;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-right: 0;
}

.framework-wraph .explore_nowl h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: rgb(80,109,132);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.framework-wraph .explore_nowl .button {
    padding: 15px 25px;
    border-radius: 13px;
    background: rgb(80,109,132);
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.framework-wraph .explore_nowl .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: left 0.3s;
    z-index: -1;
}

.framework-wraph .explore_nowl .button:hover::before {
    left: 100%;
}

.framework-wraph .explore_nowl .button:hover {
    background: rgb(136,158,175);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .framework-wraph .explore_nowl {
        padding: 60px 0;
    }

    .framework-wraph .explore_nowl h2 {
        font-size: 23px;
    }

    .framework-wraph .explore_nowl .holder {
        width: 100%;
        flex-direction: column;
    }

    .framework-wraph .explore_nowl .button {
        font-size: 14px;
    }
}.contact_usR {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact_usR h3 {
    color: rgb(80,109,132);
}

.contact_usR .form {
    background: rgb(219,203,189);
    border-radius: 10px;
}

.contact_usR .info svg, .contact_usR .info svg path {
    fill: rgb(136,158,175);
}

.contact_usR .info .contact_info h5 {
    color: rgb(136,158,175);
}

.contact_usR .info span {
    color: #000000;
}

.contact_usR .info .contact_info svg, .contact_usR .info .contact_info svg path {
    fill: #000000;
}

.contact_usR form input {
    color: #000000;
    border-radius: 6px;
    background: #ffffff;
}

.contact_usR form .button {
    background: rgb(80,109,132);
    color: #ffffff;
    border-radius: 100px;
}

.contact_usR form .button:hover {
    background: rgb(136,158,175);
}


.contact_usR .holder {
    display: flex;
}

.contact_usR .holder > div {
    width: 50%;
    padding: 40px;
}

.contact_usR .form {

}

.contact_usR .form form {
    display: flex;
    flex-direction: column;
}

.contact_usR h3 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact_usR .info {
    padding-top: 40px;
}

.contact_usR form input {
    border: none;
    padding: 13px;
    width: 100%;
    margin-bottom: 24px;
    line-height: 24px;
    outline: none;
    border: 1px solid transparent;
}

.contact_usR form .button {
    font-weight: 400;
    cursor: pointer;
}

.contact_usR .info .contact_info h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact_usR .info svg, .contact_usR .info img {
    margin-right: 16px;
    width: 16px;
    height: 16px;
}

.contact_usR .info span {
    font-size: 16px;
}

.contact_usR .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_usR .logo_holder svg, .contact_usR .logo_holder img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    margin-right: 0;
}

.contact_usR .info .contact_info span {
    font-weight: 300;
}

.contact_usR .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact_usR .name_holder {
    display: flex;
    justify-content: space-between;
}

.contact_usR .name_holder #surname {
    margin-left: 24px;
}

.contact_usR .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_usR .agree label {
    display: block;
}

.contact_usR .agree a {
    margin-left: 5px;
    color: rgb(136,158,175);
}

.contact_usR .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 5px;
}

@media only screen and (max-width: 600px) {
    .contact_usR .holder {
        flex-direction: column;
    }

    .contact_usR .holder > div {
        width: 100%;
    }

    .contact_usR {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact_usR h3 {
        font-size: 30px;
    }
}

.framework-wraph .contact_usR .holder {
    justify-content: center;
}

.framework-wraph .contact_usR .form {
    background: none;
    margin: auto;
}

.framework-wraph .contact_usR .form_text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.framework-wraph .contact_usR form input {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.framework-wraph .contact_usR h3 {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
    width: fit-content;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 28px;
    align-self: center;
}

.framework-wraph .contact_usR h3::after {
    content: "";
    width: 50%;
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid rgb(80,109,132,0.5);
}

.framework-wraph .contact_usR form .button {
    background: rgb(136,158,175);
    color: #ffffff;
    border: none;
    border-radius: 0;
    width: fit-content;
    align-self: center;
    padding: 10px 40px;
    margin-bottom: 0;
    margin-top: 10px;
}

.framework-wraph .contact_usR .agree a {
    color: rgb(136,158,175);
}

@media only screen and (max-width: 800px) {
    .contact_usR .holder > div {
        padding: 20px;
    }
}footer {
    background: linear-gradient(145deg, rgb(136,158,175), rgb(80,109,132));
    color: #000000;
    font-family: Merriweather, sans-serif;
    padding: 50px 0;
    border-top: 1px solid rgb(136,158,175,0.5);
    border-bottom: 1px solid rgb(136,158,175,0.5);
    transition: background 0.3s ease-in-out;
}
footer:hover {
    background: linear-gradient(145deg, rgb(136,158,175), rgb(80,109,132));
}
footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
footer .footer_info {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
}
footer .logo_holder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 20px;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
footer .logo_holder:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgb(136,158,175,0.5);
}
footer .logo_holder svg, 
footer .logo_holder img {
    width: 80px;
    height: 80px;
    fill: rgb(136,158,175);
}
footer h5 {
    font-size: 20px;
    color: rgb(136,158,175);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgb(136,158,175,0.5);
    padding-bottom: 5px;
    position: relative;
    text-shadow: 1px 1px var(--white-color_opacity);
}
footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: rgb(136,158,175);
    transition: width 0.3s ease;
}
footer h5:hover::after {
    width: 100%;
}
footer .menu {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    margin: 5px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
}
footer .menu a:hover {
    background: rgb(136,158,175);
    color: #ffffff;
}
footer .contact_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 300px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}
footer .contact_info div svg {
    fill: rgb(136,158,175);
    width: 20px;
    height: 20px;
    margin-right: 10px;
    transition: fill 0.3s;
}
footer .contact_info div:hover svg {
    fill: rgb(80,109,132);
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 14px;
}
footer .footer_agreement {
    text-align: center;
    margin: 30px 0;
    font-size: 19px;
    color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgb(136,158,175,0.5);
    padding-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
footer .copyright {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}
footer .copyright_info {
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}
footer .copyright_info a {
    color: rgb(136,158,175);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease, color 0.3s ease;
}
footer .copyright_info a:hover {
    border-bottom: 1px solid rgb(136,158,175);
    color: rgb(80,109,132);
}
footer .menu_holder {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 800px) {
    footer .logo_holder {
        margin-bottom: 20px;
    }
    footer .menu_holder {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .menu {
        flex-direction: column;
        align-items: center;
    }
    footer .contact_info {
        margin-top: 10px;
        align-items: center;
    }
}
.developer_experienced {
    padding-top: 80px;
    padding-bottom: 80px;
}

.developer_experienced .review .name {
    color: rgb(80,109,132);
}

.developer_experienced .review span {
    color: rgb(136,158,175);
}

.developer_experienced .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.developer_experienced .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.developer_experienced .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.developer_experienced .review .name {
    font-size: 23px;
    margin-bottom: 8px;
}

.developer_experienced .review span {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 14px;
}

.developer_experienced .review .quote {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .developer_experienced .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .developer_experienced .holder {
        flex-direction: column;
    }

    .developer_experienced .review {
        max-width: unset;
        width: 100%;
    }

    .developer_experienced {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.framework-wraph .developer_experienced {
    background: rgb(219,203,189);
}

.framework-wraph .developer_experienced .review {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.framework-wraph .developer_experienced .photo {
    border-radius: 50% !important;
    border: 5px solid #ffffff;
    width: 220px;
    height: 220px;
    margin-right: 25px;
    flex-shrink: 0;
}

.framework-wraph .worker_description {
    display: flex;
    flex-direction: column;
}

.framework-wraph .developer_experienced .review .quote {
    order: -1;
    margin-bottom: 20px;
    color: #000000;
    font-size: 22px;
}

.framework-wraph .developer_experienced .review .name {
    font-size: 16px;
    font-weight: 700;
}

@media only screen and (max-width: 800px) {
    .framework-wraph .developer_experienced .photo {
        width: 160px;
        height: 160px;
    }

    .framework-wraph .developer_experienced .review {
        flex-direction: column;
    }
}
.benefits_summaryF .advantages_content h2 {
    color: rgb(80,109,132);
}

.benefits_summaryF .advantage_item svg, .benefits_summaryF .advantage_item svg path {
    fill: rgb(136,158,175);
}

.benefits_summaryF .advantage_item p {
    color: #000000;
}

.benefits_summaryF .advantage_item b {
    color: rgb(136,158,175);
}

.benefits_summaryF {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_summaryF .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_summaryF .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_summaryF .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 37px;
    font-weight: 600;
}

.benefits_summaryF .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_summaryF .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_summaryF .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_summaryF .advantage_item svg, .benefits_summaryF .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .framework-wraph .benefits_summaryF .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_summaryF .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_summaryF .advantages_holder {
        flex-direction: column;
    }

    .benefits_summaryF {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .framework-wraph .benefits_summaryF .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.framework-wraph .benefits_summaryF {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgb(219,203,189);
}

.framework-wraph .benefits_summaryF .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.framework-wraph .benefits_summaryF .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    color: #000000;
}

.framework-wraph .benefits_summaryF .advantages_content h2 {
    font-size: 37px;
    font-weight: 700;
    color: rgb(136,158,175);
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.framework-wraph .benefits_summaryF .advantages_content h2:hover {
    color: rgb(80,109,132);
}

.framework-wraph .benefits_summaryF .advantages_description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.framework-wraph .benefits_summaryF .advantages_description:hover {
    opacity: 1;
}

.framework-wraph .benefits_summaryF .advantages_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.framework-wraph .benefits_summaryF .advantage_item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.5);
    width: calc(25% - 20px);
    min-height: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.framework-wraph .benefits_summaryF .advantage_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.framework-wraph .benefits_summaryF .advantage_image {
    background-color: rgb(136,158,175,0.5);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.framework-wraph .benefits_summaryF .advantage_image img, .framework-wraph .benefits_summaryF .advantage_image svg {
    width: 70%;
    height: 70%;
    object-fit: cover;
    fill: rgb(136,158,175);
}

.framework-wraph .benefits_summaryF .advantage_item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media only screen and (max-width: 1200px) {
    .framework-wraph .benefits_summaryF .advantages_holder .advantage_item {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 800px) {
    .framework-wraph .benefits_summaryF {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .framework-wraph .benefits_summaryF .advantages_content h2 {
        font-size: 30px;
    }

    .framework-wraph .benefits_summaryF .advantages_holder {
        flex-direction: column;
    }

    .framework-wraph .benefits_summaryF .advantages_holder .advantage_item {
        width: 100%;
    }
}.our_backgroundf {
    padding: 80px 0;
    background: rgb(219,203,189);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
}

.framework-wraph .our_backgroundf .holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.framework-wraph .our_backgroundf .holder .photo {
    flex: 1;
    min-width: 45%;
    height: 600px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgb(136,158,175,0.5);
}

.framework-wraph .our_backgroundf .caption_holder {
    flex: 1;
    min-width: 45%;
    padding: 40px;
    background: rgb(80,109,132);
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(80,109,132,0.5);
}

.framework-wraph .our_backgroundf .style_element {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.framework-wraph .our_backgroundf h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(136,158,175);
    padding-bottom: 10px;
    width: 100%;
}

.framework-wraph .our_backgroundf p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 20px;
}

@media only screen and (max-width: 800px) {
    .our_backgroundf {
        padding: 40px 0;
    }
    .framework-wraph .our_backgroundf .holder {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .framework-wraph .our_backgroundf .holder .photo,
    .framework-wraph .our_backgroundf .caption_holder {
        min-width: 100%;
        height: auto;
    }

    .framework-wraph .our_backgroundf .holder .photo {
        height: 300px;
        margin-bottom: 10px;
    }

    .framework-wraph .our_backgroundf .caption_holder {
        margin-top: 20px;
        padding: 20px;
    }

    .framework-wraph .our_backgroundf h2 {
        font-size: 21px;
    }

    .framework-wraph .our_backgroundf p {
        font-size: 12px;
    }
}.secure_boltW {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);

    color: #000000;
    font-family: Merriweather, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.secure_boltW h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    color: rgb(136,158,175);
    border-bottom: 2px solid rgb(136,158,175);
    padding-bottom: 10px;
}

.secure_boltW h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
    color: rgb(80,109,132);
    border-left: 4px solid rgb(80,109,132);
    padding-left: 15px;
}

.secure_boltW ul {
    list-style-type: square;
    padding-left: 40px;
    margin: 20px 0;
}

.secure_boltW li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 5px;
}

.secure_boltW p, .secure_boltW span, .secure_boltW div {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
    color: #000000;
}

.secure_boltW h3, .secure_boltW h4, .secure_boltW h5, .secure_boltW h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: rgb(136,158,175);
    border-left: 3px solid rgb(136,158,175);
    padding-left: 10px;
}

@media only screen and (max-width: 800px) {
    .secure_boltW {
        padding: 30px;
    }

    .secure_boltW h1 {
        font-size: calc(24px - 4px);
    }

    .secure_boltW h2 {
        font-size: calc(24px - 3px);
    }

    .secure_boltW h3, .secure_boltW h4, .secure_boltW h5, .secure_boltW h6 {
        font-size: calc(24px - 2px);
    }

    .secure_boltW p, .secure_boltW span, .secure_boltW div, .secure_boltW li {
        font-size: calc(15px - 2px);
    }
}